diff --git a/CMakeLists.txt b/CMakeLists.txt index 298cdca..386bfae 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,13 +46,15 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) include(GNUInstallDirs) +find_package(Qt6 REQUIRED COMPONENTS Core LinguistTools) + if(PDF4QT_BUILD_ONLY_CORE_LIBRARY) find_package(Qt6 REQUIRED COMPONENTS Core Gui Svg Xml) else() find_package(Qt6 REQUIRED COMPONENTS Core Gui Widgets Svg Xml PrintSupport TextToSpeech Test) endif() -qt_standard_project_setup() +qt_standard_project_setup(I18N_TRANSLATED_LANGUAGES en de cs es ko) find_package(OpenSSL REQUIRED) find_package(lcms2 REQUIRED) @@ -140,12 +142,33 @@ if(NOT PDF4QT_BUILD_ONLY_CORE_LIBRARY) add_subdirectory(WixInstaller) endif() +qt_collect_translation_source_targets(i18n_targets) +message("CMAKE_TRANSLATION_TARGETS = " ${i18n_targets}) + +set(PDF4QT_TRANSLATION_TS_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/translations) +set(PDF4QT_TRANSLATION_QM_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/${PDF4QT_INSTALL_BIN_DIR}/translations) + +message("PDF4QT_TRANSLATION_TS_OUTPUT_DIRECTORY" ${PDF4QT_TRANSLATION_TS_OUTPUT_DIRECTORY}) +message("PDF4QT_TRANSLATION_QM_OUTPUT_DIRECTORY" ${PDF4QT_TRANSLATION_QM_OUTPUT_DIRECTORY}) + +qt_add_translations(TARGETS Pdf4QtEditor Pdf4QtViewer Pdf4QtPageMaster Pdf4QtDiff PdfTool + SOURCE_TARGETS ${i18n_targets} + MERGE_QT_TRANSLATIONS + TS_OUTPUT_DIRECTORY ${PDF4QT_TRANSLATION_TS_OUTPUT_DIRECTORY} + QM_OUTPUT_DIRECTORY ${PDF4QT_TRANSLATION_QM_OUTPUT_DIRECTORY} + QM_FILES_OUTPUT_VARIABLE pdf4qt_qm_files) + message("CMAKE_PREFIX_PATH = " ${CMAKE_PREFIX_PATH}) message("CMAKE_TOOLCHAIN_FILE = " ${CMAKE_TOOLCHAIN_FILE}) configure_file(version.txt.in version.txt) if(NOT PDF4QT_BUILD_ONLY_CORE_LIBRARY) + install(DIRECTORY ${PDF4QT_TRANSLATION_QM_OUTPUT_DIRECTORY} + RUNTIME DESTINATION ${PDF4QT_INSTALL_BIN_DIR} + FILES_MATCHING + PATTERN *.qm) + if(WIN32) install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/Desktop/44x44/ RUNTIME DESTINATION ${PDF4QT_INSTALL_BIN_DIR}/assets/44x44 diff --git a/Pdf4QtDiff/aboutdialog.ui b/Pdf4QtDiff/aboutdialog.ui index 475cf51..3bff377 100644 --- a/Pdf4QtDiff/aboutdialog.ui +++ b/Pdf4QtDiff/aboutdialog.ui @@ -36,7 +36,7 @@ true - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } @@ -225,10 +225,10 @@ li.checked::marker { content: "\2612"; } - Qt::Horizontal + Qt::Orientation::Horizontal - QDialogButtonBox::Ok + QDialogButtonBox::StandardButton::Ok diff --git a/Pdf4QtDiff/main.cpp b/Pdf4QtDiff/main.cpp index 1eb8053..7aee28d 100644 --- a/Pdf4QtDiff/main.cpp +++ b/Pdf4QtDiff/main.cpp @@ -18,6 +18,7 @@ #include "pdfconstants.h" #include "pdfdocumentreader.h" #include "pdfsecurityhandler.h" +#include "pdfapplicationtranslator.h" #include "mainwindow.h" #include @@ -49,6 +50,9 @@ int main(int argc, char *argv[]) pdf::PDFSecurityHandler::setNoDRMMode(); } + pdf::PDFApplicationTranslator translator; + translator.installTranslator(); + QIcon appIcon(":/app-icon.svg"); QApplication::setWindowIcon(appIcon); diff --git a/Pdf4QtEditor/main.cpp b/Pdf4QtEditor/main.cpp index c829257..720d892 100644 --- a/Pdf4QtEditor/main.cpp +++ b/Pdf4QtEditor/main.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2021-2024 Jakub Melka +// Copyright (C) 2021-2025 Jakub Melka // // This file is part of PDF4QT. // @@ -20,6 +20,7 @@ #include "pdfsecurityhandler.h" #include "pdfwidgetutils.h" #include "pdfviewersettings.h" +#include "pdfapplicationtranslator.h" #include #include @@ -60,6 +61,10 @@ int main(int argc, char *argv[]) pdf::PDFSecurityHandler::setNoDRMMode(); } + pdf::PDFApplicationTranslator translator; + translator.loadSettings(); + translator.installTranslator(); + bool isLightGui = false; bool isDarkGui = false; const pdfviewer::PDFViewerSettings::ColorScheme colorScheme = pdfviewer::PDFViewerSettings::getColorSchemeStatic(); diff --git a/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookcreator.cpp b/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookcreator.cpp index d7210f7..146f5e9 100644 --- a/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookcreator.cpp +++ b/Pdf4QtEditorPlugins/AudioBookPlugin/audiobookcreator.cpp @@ -17,6 +17,8 @@ #include "audiobookcreator.h" +#include + #ifdef Q_OS_WIN #include #include diff --git a/Pdf4QtLibCore/CMakeLists.txt b/Pdf4QtLibCore/CMakeLists.txt index 2ed8e7e..b531532 100644 --- a/Pdf4QtLibCore/CMakeLists.txt +++ b/Pdf4QtLibCore/CMakeLists.txt @@ -153,6 +153,8 @@ add_library(Pdf4QtLibCore SHARED sources/pdfpagecontenteditorprocessor.cpp sources/pdfpagecontenteditorcontentstreambuilder.h sources/pdfpagecontenteditorcontentstreambuilder.cpp + sources/pdfapplicationtranslator.h + sources/pdfapplicationtranslator.cpp ) include(GenerateExportHeader) diff --git a/Pdf4QtLibCore/sources/pdfapplicationtranslator.cpp b/Pdf4QtLibCore/sources/pdfapplicationtranslator.cpp new file mode 100644 index 0000000..e0f817c --- /dev/null +++ b/Pdf4QtLibCore/sources/pdfapplicationtranslator.cpp @@ -0,0 +1,166 @@ +// Copyright (C) 2025-2025 Jakub Melka +// +// This file is part of PDF4QT. +// +// PDF4QT is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// with the written consent of the copyright owner, any later version. +// +// PDF4QT is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public License +// along with PDF4QT. If not, see . + +#include "pdfapplicationtranslator.h" + +#include +#include +#include +#include + +namespace pdf +{ + +PDFApplicationTranslator::PDFApplicationTranslator() +{ + +} + +PDFApplicationTranslator::~PDFApplicationTranslator() +{ + uninstallTranslator(); +} + +PDFApplicationTranslator::ELanguage PDFApplicationTranslator::getLanguage() const +{ + return m_language; +} + +void PDFApplicationTranslator::installTranslator() +{ + QDir applicationDirectory(QCoreApplication::applicationDirPath()); + applicationDirectory.cd("translations"); + QString translationPath = applicationDirectory.absolutePath(); + + Q_ASSERT(!m_translator); + m_translator = new QTranslator(); + + switch (m_language) + { + case E_LANGUAGE_AUTOMATIC_SELECTION: + { + if (m_translator->load(QLocale::system(), "PDF4QT", "_", translationPath)) + { + QCoreApplication::installTranslator(m_translator); + } + else + { + delete m_translator; + m_translator = nullptr; + } + break; + } + + case E_LANGUAGE_ENGLISH: + case E_LANGUAGE_CZECH: + case E_LANGUAGE_GERMAN: + case E_LANGUAGE_KOREAN: + case E_LANGUAGE_SPANISH: + { + QString languageFileName = getLanguageFileName(); + + if (m_translator->load(languageFileName, translationPath)) + { + QCoreApplication::installTranslator(m_translator); + } + else + { + delete m_translator; + m_translator = nullptr; + } + break; + } + + default: + { + delete m_translator; + m_translator = nullptr; + + Q_ASSERT(false); + break; + } + } +} + +void PDFApplicationTranslator::uninstallTranslator() +{ + if (m_translator) + { + QCoreApplication::removeTranslator(m_translator); + + delete m_translator; + m_translator = nullptr; + } +} + +void PDFApplicationTranslator::loadSettings() +{ + QMetaEnum metaEnum = QMetaEnum::fromType(); + std::string languageKeyString = loadLanguageKeyFromSettings().toStdString(); + std::optional value = metaEnum.keyToValue(languageKeyString.c_str()); + m_language = static_cast(value.value_or(E_LANGUAGE_AUTOMATIC_SELECTION)); +} + +void PDFApplicationTranslator::saveSettings() +{ + QMetaEnum metaEnum = QMetaEnum::fromType(); + QSettings settings(QSettings::IniFormat, QSettings::UserScope, QCoreApplication::organizationName(), QCoreApplication::applicationName()); + settings.beginGroup("Language"); + settings.setValue("language", metaEnum.valueToKey(m_language)); + settings.endGroup(); +} + +void PDFApplicationTranslator::setLanguage(ELanguage newLanguage) +{ + m_language = newLanguage; +} + +QString PDFApplicationTranslator::loadLanguageKeyFromSettings() +{ + QMetaEnum metaEnum = QMetaEnum::fromType(); + QSettings settings(QSettings::IniFormat, QSettings::UserScope, QCoreApplication::organizationName(), QCoreApplication::applicationName()); + settings.beginGroup("Language"); + QString languageKey = settings.value("language", metaEnum.valueToKey(E_LANGUAGE_AUTOMATIC_SELECTION)).toString(); + settings.endGroup(); + + return languageKey; +} + +QString PDFApplicationTranslator::getLanguageFileName() const +{ + switch (m_language) + { + case E_LANGUAGE_ENGLISH: + return QLatin1String("PDF4QT_en.qm"); + case E_LANGUAGE_CZECH: + return QLatin1String("PDF4QT_cs.qm"); + case E_LANGUAGE_GERMAN: + return QLatin1String("PDF4QT_de.qm"); + case E_LANGUAGE_KOREAN: + return QLatin1String("PDF4QT_es.qm"); + case E_LANGUAGE_SPANISH: + return QLatin1String("PDF4QT_ko.qm"); + break; + + default: + Q_ASSERT(false); + } + + return QString(); +} + +} // namespace diff --git a/Pdf4QtLibCore/sources/pdfapplicationtranslator.h b/Pdf4QtLibCore/sources/pdfapplicationtranslator.h new file mode 100644 index 0000000..8c8cd35 --- /dev/null +++ b/Pdf4QtLibCore/sources/pdfapplicationtranslator.h @@ -0,0 +1,66 @@ +// Copyright (C) 2025-2025 Jakub Melka +// +// This file is part of PDF4QT. +// +// PDF4QT is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// with the written consent of the copyright owner, any later version. +// +// PDF4QT is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public License +// along with PDF4QT. If not, see . + +#ifndef PDFAPPLICATIONTRANSLATOR_H +#define PDFAPPLICATIONTRANSLATOR_H + +#include "pdfglobal.h" + +#include + +namespace pdf +{ + +class PDF4QTLIBCORESHARED_EXPORT PDFApplicationTranslator +{ + Q_GADGET + +public: + explicit PDFApplicationTranslator(); + ~PDFApplicationTranslator(); + + enum ELanguage + { + E_LANGUAGE_AUTOMATIC_SELECTION, + E_LANGUAGE_ENGLISH, + E_LANGUAGE_CZECH, + E_LANGUAGE_GERMAN, + E_LANGUAGE_KOREAN, + E_LANGUAGE_SPANISH + }; + + Q_ENUM(ELanguage) + + void installTranslator(); + void uninstallTranslator(); + void loadSettings(); + void saveSettings(); + + ELanguage getLanguage() const; + void setLanguage(ELanguage newLanguage); + +private: + QString loadLanguageKeyFromSettings(); + QString getLanguageFileName() const; + + QTranslator* m_translator = nullptr; + ELanguage m_language = E_LANGUAGE_AUTOMATIC_SELECTION; +}; + +} // namespace + +#endif // PDFAPPLICATIONTRANSLATOR_H diff --git a/Pdf4QtLibCore/sources/pdfdocumentsanitizer.cpp b/Pdf4QtLibCore/sources/pdfdocumentsanitizer.cpp index 670591a..7166c10 100644 --- a/Pdf4QtLibCore/sources/pdfdocumentsanitizer.cpp +++ b/Pdf4QtLibCore/sources/pdfdocumentsanitizer.cpp @@ -161,7 +161,7 @@ void PDFDocumentSanitizer::performSanitizeMetadata() PDFExecutionPolicy::execute(PDFExecutionPolicy::Scope::Unknown, objects.begin(), objects.end(), processEntry); m_storage.setObjects(qMove(objects)); - Q_EMIT sanitizationProgress(tr("Metadata streams removed: %1").arg(counter)); + Q_EMIT sanitizationProgress(tr("Metadata streams removed: %1").arg(counter.load())); } void PDFDocumentSanitizer::performSanitizeOutline() diff --git a/Pdf4QtLibCore/sources/pdfoptimizer.cpp b/Pdf4QtLibCore/sources/pdfoptimizer.cpp index d56597c..055da73 100644 --- a/Pdf4QtLibCore/sources/pdfoptimizer.cpp +++ b/Pdf4QtLibCore/sources/pdfoptimizer.cpp @@ -23,8 +23,8 @@ #include "pdfconstants.h" #include "pdfdocumentbuilder.h" #include "pdfstreamfilters.h" -#include "pdfdbgheap.h" #include "pdfdocumentwriter.h" +#include "pdfdbgheap.h" namespace pdf { @@ -194,7 +194,7 @@ bool PDFOptimizer::performDereferenceSimpleObjects() PDFExecutionPolicy::execute(PDFExecutionPolicy::Scope::Unknown, objects.begin(), objects.end(), processEntry); m_storage.setObjects(qMove(objects)); - Q_EMIT optimizationProgress(tr("Simple objects dereferenced and embedded: %1").arg(counter)); + Q_EMIT optimizationProgress(tr("Simple objects dereferenced and embedded: %1").arg(counter.load())); return false; } @@ -213,7 +213,7 @@ bool PDFOptimizer::performRemoveNullObjects() PDFExecutionPolicy::execute(PDFExecutionPolicy::Scope::Unknown, objects.begin(), objects.end(), processEntry); m_storage.setObjects(qMove(objects)); - Q_EMIT optimizationProgress(tr("Null objects entries from dictionaries removed: %1").arg(counter)); + Q_EMIT optimizationProgress(tr("Null objects entries from dictionaries removed: %1").arg(counter.load())); return false; } @@ -238,7 +238,7 @@ bool PDFOptimizer::performRemoveUnusedObjects() PDFExecutionPolicy::execute(PDFExecutionPolicy::Scope::Unknown, range.begin(), range.end(), processEntry); m_storage.setObjects(qMove(objects)); - Q_EMIT optimizationProgress(tr("Unused objects removed: %1").arg(counter)); + Q_EMIT optimizationProgress(tr("Unused objects removed: %1").arg(counter.load())); return counter > 0; } @@ -311,7 +311,7 @@ bool PDFOptimizer::performMergeIdenticalObjects() } m_storage.setObjects(qMove(objects)); - Q_EMIT optimizationProgress(tr("Identical objects merged: %1").arg(counter)); + Q_EMIT optimizationProgress(tr("Identical objects merged: %1").arg(counter.load())); return counter > 0; } @@ -457,7 +457,7 @@ bool PDFOptimizer::performRecompressFlateStreams() PDFExecutionPolicy::execute(PDFExecutionPolicy::Scope::Unknown, objects.begin(), objects.end(), processEntry); m_storage.setObjects(qMove(objects)); - Q_EMIT optimizationProgress(tr("Bytes saved by recompressing stream: %1").arg(bytesSaved)); + Q_EMIT optimizationProgress(tr("Bytes saved by recompressing stream: %1").arg(bytesSaved.load())); return false; } diff --git a/Pdf4QtLibGui/pdfaboutdialog.ui b/Pdf4QtLibGui/pdfaboutdialog.ui index 475cf51..3bff377 100644 --- a/Pdf4QtLibGui/pdfaboutdialog.ui +++ b/Pdf4QtLibGui/pdfaboutdialog.ui @@ -36,7 +36,7 @@ true - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } @@ -225,10 +225,10 @@ li.checked::marker { content: "\2612"; } - Qt::Horizontal + Qt::Orientation::Horizontal - QDialogButtonBox::Ok + QDialogButtonBox::StandardButton::Ok diff --git a/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.cpp b/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.cpp index 17c1842..8a37718 100644 --- a/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.cpp +++ b/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.cpp @@ -101,106 +101,6 @@ void PDFCreateBitonalDocumentPreviewWidget::setImage(QImage image) update(); } -class ImagePreviewDelegate : public QStyledItemDelegate -{ -public: - ImagePreviewDelegate(std::vector* imageConversionInfos, QObject* parent) : - QStyledItemDelegate(parent), - m_imageConversionInfos(imageConversionInfos) - { - m_yesRenderer.load(QString(":/resources/result-ok.svg")); - m_noRenderer.load(QString(":/resources/result-error.svg")); - } - - virtual void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const override - { - QStyledItemDelegate::paint(painter, option, index); - - QRect markRect = getMarkRect(option); - - if (index.isValid()) - { - const PDFCreateBitonalDocumentDialog::ImageConversionInfo& info = m_imageConversionInfos->at(index.row()); - if (info.conversionEnabled) - { - m_yesRenderer.render(painter, markRect); - } - else - { - m_noRenderer.render(painter, markRect); - } - } - } - - virtual bool editorEvent(QEvent* event, - QAbstractItemModel* model, - const QStyleOptionViewItem& option, - const QModelIndex& index) - { - Q_UNUSED(model); - Q_UNUSED(index); - - if (event->type() == QEvent::MouseButtonPress && index.isValid()) - { - QMouseEvent* mouseEvent = dynamic_cast(event); - if (mouseEvent && mouseEvent->button() == Qt::LeftButton) - { - // Do we click on yes/no mark? - QRectF markRect = getMarkRect(option); - if (markRect.contains(mouseEvent->position())) - { - PDFCreateBitonalDocumentDialog::ImageConversionInfo& info = m_imageConversionInfos->at(index.row()); - info.conversionEnabled = !info.conversionEnabled; - return true; - } - } - } - - return false; - } - - virtual bool helpEvent(QHelpEvent* event, - QAbstractItemView* view, - const QStyleOptionViewItem& option, - const QModelIndex& index) override - { - Q_UNUSED(index); - - if (!event || !view) - { - return false; - } - - if (event->type() == QEvent::ToolTip) - { - // Are we hovering over yes/no mark? - QRectF markRect = getMarkRect(option); - if (markRect.contains(event->pos())) - { - event->accept(); - QToolTip::showText(event->globalPos(), tr("Toggle this icon to switch image conversion to bitonal format on or off."), view); - return true; - } - } - - return false; - } - -private: - static constexpr QSize s_iconSize = QSize(24, 24); - - QRect getMarkRect(const QStyleOptionViewItem& option) const - { - QSize markSize = pdf::PDFWidgetUtils::scaleDPI(option.widget, s_iconSize); - QRect markRect(option.rect.left(), option.rect.top(), markSize.width(), markSize.height()); - return markRect; - } - - std::vector* m_imageConversionInfos; - mutable QSvgRenderer m_yesRenderer; - mutable QSvgRenderer m_noRenderer; -}; - PDFCreateBitonalDocumentDialog::PDFCreateBitonalDocumentDialog(const pdf::PDFDocument* document, const pdf::PDFCMS* cms, pdf::PDFProgress* progress, @@ -506,6 +406,89 @@ std::optional PDFCreateBitonalDocumentDialog::getImageFromReferen return pdfImage; } +ImagePreviewDelegate::ImagePreviewDelegate(std::vector* imageConversionInfos, QObject *parent) : + QStyledItemDelegate(parent), + m_imageConversionInfos(imageConversionInfos) +{ + m_yesRenderer.load(QString(":/resources/result-ok.svg")); + m_noRenderer.load(QString(":/resources/result-error.svg")); +} + +void ImagePreviewDelegate::paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const +{ + QStyledItemDelegate::paint(painter, option, index); + + QRect markRect = getMarkRect(option); + + if (index.isValid()) + { + const PDFCreateBitonalDocumentDialog::ImageConversionInfo& info = m_imageConversionInfos->at(index.row()); + if (info.conversionEnabled) + { + m_yesRenderer.render(painter, markRect); + } + else + { + m_noRenderer.render(painter, markRect); + } + } +} + +bool ImagePreviewDelegate::editorEvent(QEvent* event, QAbstractItemModel* model, const QStyleOptionViewItem& option, const QModelIndex& index) +{ + Q_UNUSED(model); + Q_UNUSED(index); + + if (event->type() == QEvent::MouseButtonPress && index.isValid()) + { + QMouseEvent* mouseEvent = dynamic_cast(event); + if (mouseEvent && mouseEvent->button() == Qt::LeftButton) + { + // Do we click on yes/no mark? + QRectF markRect = getMarkRect(option); + if (markRect.contains(mouseEvent->position())) + { + PDFCreateBitonalDocumentDialog::ImageConversionInfo& info = m_imageConversionInfos->at(index.row()); + info.conversionEnabled = !info.conversionEnabled; + return true; + } + } + } + + return false; +} + +bool ImagePreviewDelegate::helpEvent(QHelpEvent* event, QAbstractItemView* view, const QStyleOptionViewItem& option, const QModelIndex& index) +{ + Q_UNUSED(index); + + if (!event || !view) + { + return false; + } + + if (event->type() == QEvent::ToolTip) + { + // Are we hovering over yes/no mark? + QRectF markRect = getMarkRect(option); + if (markRect.contains(event->pos())) + { + event->accept(); + QToolTip::showText(event->globalPos(), tr("Toggle this icon to switch image conversion to bitonal format on or off."), view); + return true; + } + } + + return false; +} + +QRect ImagePreviewDelegate::getMarkRect(const QStyleOptionViewItem& option) const +{ + QSize markSize = pdf::PDFWidgetUtils::scaleDPI(option.widget, s_iconSize); + QRect markRect(option.rect.left(), option.rect.top(), markSize.width(), markSize.height()); + return markRect; +} + } // namespace pdfviewer diff --git a/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.h b/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.h index 7a8b23a..11f66f8 100644 --- a/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.h +++ b/Pdf4QtLibGui/pdfcreatebitonaldocumentdialog.h @@ -27,7 +27,9 @@ #include #include +#include #include +#include namespace Ui { @@ -110,6 +112,34 @@ private: int m_manualThreshold = 128; }; +class ImagePreviewDelegate : public QStyledItemDelegate +{ + Q_OBJECT +public: + ImagePreviewDelegate(std::vector* imageConversionInfos, QObject* parent); + + virtual void paint(QPainter* painter, const QStyleOptionViewItem& option, const QModelIndex& index) const override; + + virtual bool editorEvent(QEvent* event, + QAbstractItemModel* model, + const QStyleOptionViewItem& option, + const QModelIndex& index) override; + + virtual bool helpEvent(QHelpEvent* event, + QAbstractItemView* view, + const QStyleOptionViewItem& option, + const QModelIndex& index) override; + +private: + static constexpr QSize s_iconSize = QSize(24, 24); + + QRect getMarkRect(const QStyleOptionViewItem& option) const; + + std::vector* m_imageConversionInfos; + mutable QSvgRenderer m_yesRenderer; + mutable QSvgRenderer m_noRenderer; +}; + } // namespace pdfviewer #endif // PDFCREATEBITONALDOCUMENTDIALOG_H diff --git a/Pdf4QtPageMaster/aboutdialog.ui b/Pdf4QtPageMaster/aboutdialog.ui index 475cf51..3bff377 100644 --- a/Pdf4QtPageMaster/aboutdialog.ui +++ b/Pdf4QtPageMaster/aboutdialog.ui @@ -36,7 +36,7 @@ true - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> p, li { white-space: pre-wrap; } hr { height: 1px; border-width: 0; } @@ -225,10 +225,10 @@ li.checked::marker { content: "\2612"; } - Qt::Horizontal + Qt::Orientation::Horizontal - QDialogButtonBox::Ok + QDialogButtonBox::StandardButton::Ok diff --git a/Pdf4QtPageMaster/main.cpp b/Pdf4QtPageMaster/main.cpp index b9cf46d..56dd5c3 100644 --- a/Pdf4QtPageMaster/main.cpp +++ b/Pdf4QtPageMaster/main.cpp @@ -18,6 +18,7 @@ #include "pdfconstants.h" #include "pdfsecurityhandler.h" #include "pdfwidgetutils.h" +#include "pdfapplicationtranslator.h" #include "mainwindow.h" #include @@ -54,6 +55,9 @@ int main(int argc, char *argv[]) pdf::PDFWidgetUtils::setDarkTheme(parser.isSet(lightGui), parser.isSet(darkGui)); + pdf::PDFApplicationTranslator translator; + translator.installTranslator(); + QIcon appIcon(":/app-icon.svg"); QApplication::setWindowIcon(appIcon); diff --git a/Pdf4QtViewer/main.cpp b/Pdf4QtViewer/main.cpp index 3381058..557d84d 100644 --- a/Pdf4QtViewer/main.cpp +++ b/Pdf4QtViewer/main.cpp @@ -20,6 +20,7 @@ #include "pdfsecurityhandler.h" #include "pdfwidgetutils.h" #include "pdfviewersettings.h" +#include "pdfapplicationtranslator.h" #include #include @@ -53,6 +54,10 @@ int main(int argc, char *argv[]) pdf::PDFSecurityHandler::setNoDRMMode(); } + pdf::PDFApplicationTranslator translator; + translator.loadSettings(); + translator.installTranslator(); + bool isLightGui = false; bool isDarkGui = false; const pdfviewer::PDFViewerSettings::ColorScheme colorScheme = pdfviewer::PDFViewerSettings::getColorSchemeStatic(); diff --git a/translations/PDF4QT_cs.ts b/translations/PDF4QT_cs.ts new file mode 100644 index 0000000..3a98969 --- /dev/null +++ b/translations/PDF4QT_cs.ts @@ -0,0 +1,14569 @@ + + + + + Application + + + PDF4QT Editor + + + + + PDF4QT Viewer + + + + + PDF4QT PageMaster + + + + + PDF4QT Diff + + + + + PDF4QT LaunchPad + + + + + AssembleOutputSettingsDialog + + + + Assemble Documents + + + + + ... + + + + + File template + + + + + <html><head/><body><p>In a template file name, you can use symbols '#' for output document number (means output document index, not input document) or '@' for page number of input document (if document contains more pages, it is a page number of a original document), or '%' for index of input document. Use more '#' or '@' or '%' for setting minimal number of digits (if number has less digits, the they are padded with zero).</p></body></html> + + + + + Overwrite existing files + + + + + doc-#.pdf + + + + + Generate into directory + + + + + Outline Mode + + + + + AudioTextStreamEditorDockWidget + + + Text Stream for Audio Book + + + + + CreateRedactedDocumentDialog + + + Create Redacted Document + + + + + Redacted document + + + + + Output file name + + + + + ... + + + + + Appearance + + + + + Fill redacted area with color: + + + + + Options + + + + + Copy document title into redacted document + + + + + Copy document metadata into redacted document + + + + + Copy outline into redacted document + + + + + DifferencesDockWidget + + + Differences + Rozdíly + + + + DimensionTool + + + pt + + + + + in + + + + + mm + + + + + cm + + + + + sq. pt + + + + + sq. in + + + + + sq. mm + + + + + sq. cm + + + + + ° + + + + + rad + + + + + GeneratorMainWindow + + + Code Generator + + + + + Remove + + + + + Clone + + + + + New + + + + + Parameters + + + + + Data type + + + + + Value + + + + + Item type + + + + + Name + + + + + Text description / C++ code + + + + + Delete + + + + + Up + + + + + Down + + + + + New Child + + + + + New Sibling + + + + + File + + + + + Code + + + + + XFA + + + + + Load + + + + + Ctrl+O + + + + + Save + + + + + Ctrl+S + + + + + Save As... + + + + + Set code header (*.h) + + + + + Set code source (*.cpp) + + + + + Generate code + + + + + Ctrl+G + + + + + Set code header XFA + + + + + Set code source XFA + + + + + Generate XFA code + + + + + Set XFA description + + + + + + Select XML definition file + + + + + Create function + + + + + Enter function name + + + + + + Select cpp header + + + + + + Select cpp source + + + + + Select xml definition + + + + + InkCoverageDialog + + + Ink Coverage Calculator + Výpočet pokrytí inkoustem + + + + Ink Coverage + Pokrytí inkoustem + + + + LaunchApplicationWidget + + + Form + Formulář + + + + Title + + + + + TextLabel + + + + + LaunchDialog + + + Launch Application + + + + + Editor + + + + + Viewer + + + + + Diff + + + + + PageMaster + + + + + Go beyond basic browsing. This tool packs a punch with a host of advanced features, including encryption, document reading, digital signature verification, annotation editing, and even support for searching text using regular expressions. Turn pages into images, and enhance your PDF interactions with multiple available plugins. + + + + + Simplify your viewing experience. This lightweight viewer offers essential viewing functions in a clean, user-friendly interface. + + + + + Spot differences effortlessly. This tool allows users to open two documents and receive a detailed list of differences. View these differences in a page-to-page window where they are clearly marked. Save these differences into an XML file for future reference. + + + + + Take control of your documents. Manage whole documents or individual pages with ease. Merge documents into a single file, or split them into multiple ones. You can also move, clone, or add pages with a few clicks, all within an intuitive user interface. + + + + + Error + Chyba + + + + Failed to start process '%1' + + + + + MainWindow + + + JBIG2 Image Viewer + + + + + Images + Obrázky + + + + File + + + + + Add image + Přidat obrázek + + + + + Ctrl+O + + + + + Clear + Vyčistit + + + + + Ctrl+W + + + + + Add JBIG2 image + + + + + Ctrl+J + + + + + + + Error + Chyba + + + + + Open image + + + + + + Workspace + + + + + + &File + Soubor + + + + &Edit + Úpravy + + + + &Insert + + + + + + + &View + + + + + &Make + + + + + + &Help + + + + + + &Toolbars + + + + + &Regroup + + + + + &Add Documents... + + + + + Add Documents + + + + + C&lose + + + + + Alt+F4 + + + + + Clone &Selection + + + + + Ctrl+L + + + + + Re&move Selection + + + + + Del + + + + + Restore Removed &Items + + + + + Ctrl+Shift+R + + + + + Insert &PDF + + + + + Insert PDF + + + + + Ctrl+I + + + + + &Insert Image + + + + + Ctrl+Alt+I + + + + + Insert &Empty Page + + + + + Ctrl+Shift+I + + + + + Cu&t + + + + + Ctrl+X + + + + + &Copy + + + + + Ctrl+C + + + + + &Paste + + + + + Ctrl+V + + + + + Repl&ace Selection + + + + + Ctrl+Alt+R + + + + + Select &None + + + + + Ctrl+N + + + + + Select &All + + + + + Ctrl+A + + + + + Select &Even + + + + + F9 + + + + + Select &Odd + + + + + F10 + + + + + Select &Portrait + + + + + F11 + + + + + Select &Landscape + + + + + F12 + + + + + Rotate &Right + + + + + F4 + + + + + Rotate &Left + + + + + Shift+F4 + + + + + &Zoom In + + + + + Ctrl++ + + + + + Zoo&m Out + + + + + Ctrl+- + + + + + + &Get Source + + + + + + &About... + + + + + + F1 + + + + + &United Document... + + + + + + F5 + + + + + &Separate to Multiple Documents... + + + + + + F6 + + + + + Separate to Multiple Documents (&Grouped)... + + + + + F7 + + + + + &Group + + + + + Ctrl+G + + + + + U&ngroup + + + + + Ctrl+Shift+G + + + + + &Clear + + + + + Regroup by &Even/Odd Pages + + + + + Regroup by Re&verse + + + + + Regroup by &Page Pairs + + + + + Regroup by &Outline + + + + + Regroup by &Alternating Pages + + + + + Regroup by Alternating Pages (&Reversed Order) + + + + + &Invert Selection + + + + + &Undo + + + + + Ctrl+Z + + + + + Re&do + + + + + Ctrl+Y + + + + + &Prepare Icon Theme + + + + + + Become a &Sponsor + + + + + + &Compare + + + + + &Filter + + + + + Open &Left... + + + + + Open &Right... + + + + + &Close + + + + + Ctrl+F4 + + + + + &Previous Difference + + + + + Shift+F6 + + + + + &Next Difference + + + + + Create Compare &Report... + + + + + Filter &Text + + + + + Filter &Vector Graphics + + + + + Filter &Images + + + + + Filter &Shading + + + + + Filter &Page Movement + + + + + View &Differences + + + + + View &Left + + + + + View &Right + + + + + View &Overlay + + + + + &Show Pages with Differences + + + + + Show Pages with Differences + + + + + Save Differences to &XML... + + + + + S&ynchronize View with Differences + + + + + Display &Differences + + + + + Display &Markers + + + + + ObjectInspectorDialog + + + Object Inspector + + + + + Objects + + + + + Current Object + + + + + ObjectStatisticsDialog + + + Object Statistics + + + + + ObjectViewerWidget + + + Form + Formulář + + + + Pin + + + + + Unpin + + + + + Information + + + + + Reference + + + + + Type + + + + + Description + Popis + + + + Contents + + + + + OutputPreviewDialog + + + Output Preview + + + + + Settings + + + + + Red + + + + + Blue + + + + + Green + + + + + Simulate separations + + + + + Simulate paper color + + + + + Display + + + + + Images + Obrázky + + + + Text + Text + + + + Vector graphics + + + + + Shading patterns + + + + + Tiling patterns + + + + + Ctrl+S + + + + + Color Warnings + + + + + Alarm color + + + + + + % + + + + + Coverage limit + + + + + Select + + + + + Rich black limit + + + + + Inks + + + + + PDFAboutDialog + + + + + About + O autorovi + + + + + + <html><head/><body><p><span style=" font-weight:600;">PdfForQtViewer</span></p><p>Copyright 2018-2025 Jakub Melka. All rights reserved.</p><p>THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p></body></html> + + + + + + + Used libraries + Použité knihovny + + + + PDFAdvancedFindWidget + + + Form + Formulář + + + + Search for + + + + + Search Settings + Nastavení hledání + + + + Search + Hledat + + + + Whole words only + + + + + Remove soft hyphen at end of line + + + + + Search for: + + + + + Case sensitive + + + + + Use regular expressions + Použít regulární výrazy + + + + Clear + Vyčistit + + + + Regular Expression Settings + + + + + Dot matches everything (including newline characters) + + + + + Multiline matching (enables search using '^' and '$' to mark line beginnings/endings) + + + + + Results + Výsledky + + + + PDFCertificateManagerDialog + + + Certificate Manager + + + + + Certificates + + + + + PDFCreateBitonalDocumentDialog + + + Create Bitonal Document + + + + + Color to Bitonal Conversion Options + + + + + Automatic (Otsu's 1D method) + + + + + User-Defined Intensity Threshold (0-255): + + + + + PDFCreateCertificateDialog + + + Create Certificate + + + + + Create Self Signed Certificate + + + + + Name + + + + + Organization + + + + + Organization Unit + + + + + Email + + + + + Country + + + + + Key length + + + + + Valid till + + + + + Certificate file + + + + + PDFDocumentPropertiesDialog + + + Document Properties + + + + + + Properties + + + + + File Information + + + + + + Security + + + + + + Fonts + + + + + Display && Print + + + + + Display && Print Settings + + + + + PDFEditorMainWindow + + + PDF Editor + + + + + &File + Soubor + + + + &Go To + + + + + Book&mark Settings + + + + + &View + + + + + Page La&yout + + + + + Re&ndering Options + + + + + &Tools + + + + + + &Help + + + + + &Developer + + + + + &Edit + Úpravy + + + + + &Insert + + + + + Sticky &Note + + + + + &Stamp + + + + + Text Hi&ghlight + + + + + &Open... + + + + + &Close + + + + + &Quit + + + + + &Single Page + + + + + Single Page + + + + + Ctrl+1 + + + + + &Continuous + + + + + Continuous + + + + + Ctrl+2 + + + + + Two &Pages + + + + + Two Pages + + + + + Ctrl+3 + + + + + &Two columns + + + + + Two columns + + + + + Ctrl+4 + + + + + &First page on right side + + + + + First page on right side + + + + + Ctrl+5 + + + + + &Rendering Errors... + + + + + Ctrl+E + + + + + &Antialiasing + + + + + Antialiasing + + + + + &Text Antialiasing + + + + + Text Antialiasing + + + + + &Smooth Pictures + + + + + Smooth Pictures + + + + + &Ignore Optional Content Settings + + + + + Ignore Optional Content Settings + + + + + &Options... + + + + + Ctrl+K + + + + + Reset to &Factory Settings + + + + + &Zoom In + + + + + Zoom &Out + + + + + &About... + + + + + Fit &Page + + + + + Fit &Width + + + + + W + + + + + &Fit Height + + + + + H + + + + + Prope&rties... + + + + + Send by &E-Mail... + + + + + Show Text &Blocks + + + + + Show Text &Lines + + + + + &Find + + + + + Fin&d Previous + + + + + Fi&nd Next + + + + + Select te&xt + + + + + Select &table + + + + + Select &All + + + + + Dese&lect + + + + + &Copy text + + + + + Color | &Inverted + + + + + Color | &Grayscale + + + + + Color | &High Contrast + + + + + Color | &Monochromatic + + + + + Color | &Custom + + + + + Rotate &Right + + + + + Rotate &Left + + + + + &Print... + + + + + Render to &Images... + + + + + &Magnifier + + + + + Magnifier Tool + + + + + &Screenshot + + + + + &Extract Image + + + + + &Display Annotations + + + + + Display Annotations + + + + + &Undo + + + + + &Redo + + + + + &Optimize... + + + + + Optimizes document to reduce file size. + + + + + Save &As... + + + + + &Save + + + + + &Comment + + + + + &Key + + + + + &New Paragraph + + + + + No&te + + + + + &Paragraph + + + + + &Hyperlink + + + + + &Inline text + + + + + Str&aight Line + + + + + Pol&yline + + + + + &Rectangle + + + + + &Polygon + + + + + &Ellipse + + + + + &Freehand Curve + + + + + &Highlight + + + + + &Underline + + + + + Stri&keout + + + + + &Squiggly + + + + + Go to document &start + + + + + Go to document &end + + + + + Go to &next page + + + + + Go to &previous page + + + + + Go &to next line + + + + + Go t&o previous line + + + + + &Get Source + + + + + &Encryption... + + + + + &Certificates... + + + + + &Sanitize... + + + + + Sanitize document to remove sensitive information. + + + + + Automatic &Document Refresh + + + + + Automatically reloads the document if a change made by an external program is detected. + + + + + Become a &Sponsor + + + + + Create &Bitonal Document... + + + + + Create Bitonal Document + + + + + Convert the colored images to monochromatic to create a bitonal document. + + + + + &Bookmark Page + + + + + Bookmark Page + + + + + Bookmark page for fast navigation. + + + + + &Go to Next Bookmark + + + + + Go to Next Bookmark + + + + + Navigates to the next bookmarked page. + + + + + Go to Previous Boo&kmark + + + + + Go to Previous Bookmark + + + + + Navigates to the previous bookmarked page. + + + + + &Export Bookmarks + + + + + Export Bookmarks + + + + + Export bookmarks to the file. + + + + + &Import Bookmarks + + + + + Import Bookmarks + + + + + Import bookmarks from the file. + + + + + &Generate Bookmarks Automatically + + + + + Generate Bookmarks Automatically + + + + + If checked, bookmarks for main document chapters are generated automatically. + + + + + Display &Render Times + + + + + Display Render Times + + + + + PDFEncryptionSettingsDialog + + + Encryption Settings + + + + + Encryption Method + + + + + Encryption algorithm + + + + + <html><head/><body><p>Select encryption algorithm. AES-256 is strongly recommended, because older encryption algorithm can be potentially broken. Select older algorithms (as AES-128 or RC4) only, if you need backward compatibility. Also, choose a strong password to ensure strong encryption.</p><p>Public key security using certificate is also supported. In that case, you must select a certificate with private key, and this certificate is then used to encrypt data. User, which wants to open document encrypted with certificate, must have a private key to the certificae.</p></body></html> + + + + + Certificate + + + + + Passwords + + + + + Password (document open) + + + + + Password (owner access) + + + + + Encrypt Contents + + + + + Encrypt all document contents, including document metadata + + + + + Encrypt all document contets except metadata + + + + + Encrypt file attachments only + + + + + Permissions + + + + + Print (low resolution) + + + + + Fill interactive forms + + + + + Print (high resolution) + + + + + Accessibility + + + + + Modify document contents + + + + + Assemble document (insert, rotate, delete pages...) + + + + + Edit interactive items (annotations, forms, ...) + + + + + Copy/extract document content + + + + + PDFOptimizeDocumentDialog + + + Document optimization + Optimalizace dokumentu + + + + Optimization Settings + Nastavení optimalizace + + + + PDFPageContentEditorEditedItemSettings + + + Dialog + + + + + Text + Text + + + + Text Content + + + + + Image + + + + + Image Content + + + + + Height + + + + + Width + + + + + Ratio + + + + + Load Image + + + + + Style + + + + + + ... + + + + + Pen Style + + + + + Pen Color + + + + + Brush Style + + + + + Pen Width + + + + + Stroke path + + + + + Brush Color + + + + + Fill path + + + + + Transformation + + + + + Translation in Y + + + + + Translation in X + + + + + Scale in X + + + + + Scale in Y + + + + + Shear factor + + + + + <html><head/><body><p>Rotation angle</p></body></html> + + + + + φ + + + + + <html><head/><body><p>s<span style=" vertical-align:sub;">x</span></p></body></html> + + + + + <html><head/><body><p>s<span style=" vertical-align:sub;">y</span></p></body></html> + + + + + m + + + + + <html><head/><body><p>t<span style=" vertical-align:sub;">x</span></p></body></html> + + + + + <html><head/><body><p>t<span style=" vertical-align:sub;">y</span></p></body></html> + + + + + PDFPageContentEditorStyleSettings + + + Style Settings + + + + + Text Alignment + + + + + Pen Style + + + + + Pen Width + + + + + Brush Color + + + + + + + ... + + + + + Pen Color + + + + + Font + + + + + Text Angle + + + + + Brush Style + + + + + PDFPageContentEditorWidget + + + Content editor + + + + + Toolbox + + + + + Geometry Tools + + + + + Align to Top + + + + + Align to Vertical Center + + + + + Align to Bottom + + + + + Set Same Width + + + + + Set Same Height + + + + + Set Same Size + + + + + Align to Left + + + + + Align to Horizontal Center + + + + + Align to Right + + + + + Center Horizontally + + + + + Center Vertically + + + + + Center to Page Media Box + + + + + Layout Tools + + + + + Make Horizontal Layout + + + + + Make Vertical Layout + + + + + Make Form Layout + + + + + Make Grid Layout + + + + + Appearance + + + + + Content + + + + + PDFRenderToImagesDialog + + + Render Document to Images + + + + + Output Files Settings + + + + + Pages to render + + + + + File template + + + + + All + + + + + Generate into directory + + + + + ... + + + + + Pages: + + + + + Image Resolution + + + + + Resolution + + + + + Pixels + + + + + DPI + + + + + dots/inch + + + + + px + + + + + Image Format Settings + + + + + Format + + + + + Subtype + + + + + Gamma + + + + + Optimized write + + + + + Quality + + + + + Compression + + + + + Progressive scan write + + + + + + Enable + + + + + PDFRenderingErrorsWidget + + + Rendering errors + + + + + PDFSanitizeDocumentDialog + + + Document sanitization + + + + + Sanitization Settings + + + + + PDFSelectPagesDialog + + + All pages + + + + + Even pages + + + + + Odd pages + + + + + Custom page range: + + + + + Visible pages + + + + + PDFSidebarWidget + + + Outline + + + + + Thumbnails + + + + + Visibility + Viditelnost + + + + Attachments + Přílohy + + + + Speech + Číst nahlas + + + + Signatures + Podpisy + + + + Bookmarks + Záložky + + + + Notes + + + + + Ctrl+S + + + + + + Search text or wildcard... + + + + + Synchronize thumbnails with current page + + + + + Volume + Hlasitost + + + + Pitch + + + + + Rate + Rychlost + + + + PDFToolTranslationContext + + + Help + + + + + Show list of all available commands. + + + + + PDFTool help + + + + + List of available commands + + + + + Command + + + + + Tool + + + + + + + + Description + Popis + + + + Text Encoding + + + + + When you redirect console to a file, then specific codec is used to transform output text to target encoding. UTF-8 encoding is used by default. For XML output, you should use only UTF-8 codec. Available codecs: + + + + + Suggested codec: UTF-8 or %1 + + + + + Unknown console format '%1'. Defaulting to text console format. + + + + + Unknown console date/time format '%1'. Defaulting to short date/time format. + + + + + Unknown text layout analysis algorithm '%1'. Defaulting to automatic algorithm selection. + + + + + Unknown audio format '%1'. Defaulting to mp3 audio format. + + + + + Image format '%1' is not supported. Defaulting to png. + + + + + Image format subtype '%1' is not supported. + + + + + Image compression for current format is not supported. + + + + + Invalid compression level '%1'. + + + + + Image quality settings for current format is not supported. + + + + + Invalid image quality '%1'. + + + + + Optimized write is not supported. + + + + + Progressive scan write is not supported. + + + + + Invalid image resolution mode '%1'. Defaulting to dpi. + + + + + Cannot set dpi value, resolution mode must be dpi. + + + + + Dpi must be in range from %1 to %2. Defaulting to %3. + + + + + Invalid image dpi value '%1'. + + + + + Cannot set pixel value, resolution mode must be pixel. + + + + + Pixel value must be in range from %1 to %2. Defaulting to %3. + + + + + Invalid image pixel value '%1'. + + + + + Unknown color management system '%1'. Defaulting to lcms. + + + + + Uknown color management system accuracy '%1'. Defaulting to medium. + + + + + Unknown color adaptation method '%1'. Defaulting to bradford. + + + + + Uknown color management system rendering intent '%1'. Defaulting to auto. + + + + + Uknown bool value '%1'. Default value is used. + + + + + Uknown bool value '%1'. GPU rendering is used as default. + + + + + Uknown MSAA sample count '%1'. 4 samples are used as default. + + + + + Uknown rasterizer count '%1'. %2 rasterizers are used as default. + + + + + Invalid raterizer count: %1. Correcting to use %2 rasterizers. + + + + + Unknown encryption algorithm '%1'. Defaulting to AES-256 encryption. + + + + + Unknown encryption contents mode '%1'. Defaulting to encrypt all contents. + + + + + Invalid password provided. + + + + + + Error occured during document reading. %1 + + + + + + Warning: %1 + + + + + Attachments + Přílohy + + + + Show list or save attached files. + + + + + Attached files of document %1 + + + + + Attached files overview + + + + + + + + + + + + + + + No. + + + + + + File name + + + + + Mime type + + + + + Mime type description + + + + + File description + + + + + Packed size [bytes] + + + + + Target file name must not be specified, if multiple files are being saved. + + + + + + Failed to save attachment to file. %1 + + + + + + + SAPI Error: Cannot enumerate SAPI voices. + + + + + Available voices for given settings: + + + + + Voice list + + + + + + + + + Name + + + + + Gender + + + + + Age + + + + + Lang. Code + + + + + Locale + + + + + + Language + + + + + + Country + + + + + Vendor + + + + + + + Version + Verze + + + + Audio book voices + + + + + List of available voices for audio book conversion. + + + + + Audio book convertor + + + + + Convert your document to a simple audio book. + + + + + No suitable voice found. + + + + + Invalid voice. + + + + + + Cannot create output stream '%1'. + + + + + Cannot create voice. + + + + + Failed to set requested voice. Default voice will be used. + + + + + No text extracted to be converted to audio book. + + + + + Certificate Store + + + + + Certificate store operations (list, add, remove certificates). + + + + + Certificates used in the signature verification + + + + + Certificates + + + + + + + + + + + Type + + + + + + Certificate + + + + + + Organization + + + + + + Valid from + + + + + + Valid to + + + + + User + + + + + System + + + + + Install Certificate + + + + + Install a new user certificate to certificate store. + + + + + Cannot open file '%1'. %2 + + + + + Cannot read certificate from file '%1'. + + + + + Color Profiles List + + + + + Show list of available color profiles. + + + + + Available Color Profiles + + + + + + Identifier + + + + + Output Profiles + + + + + Gray Profiles + + + + + RGB Profiles + + + + + CMYK Profiles + + + + + Decrypt + + + + + Remove encryption from a document (with only owner access only). + + + + + Authorization as owner failed. Encryption removal is not permitted if authorized as user only. + + + + + Document is not encrypted. + + + + + Compare documents + + + + + Compare contents of two documents. + + + + + Exactly two documents must be specified. + + + + + + + Cannot open document '%1'. + + + + + Difference Report + + + + + Differences + Rozdíly + + + + Left Page + + + + + Right Page + + + + + Encrypt + + + + + Encrypt the document (with only owner access only). + + + + + Authorization as owner failed. Encryption change is not permitted if authorized as user only. + + + + + Fetch images + + + + + Fetch image content from document. + + + + + + + Document doesn't allow to copy content. + + + + + Images fetched from document %1 + + + + + + + Overview + + + + + Image No. + + + + + + + + Page No. + + + + + Width [pixels] + + + + + Height [pixels] + + + + + Size [bytes] + + + + + Stored to + + + + + + Cannot write page image to file '%1', because: %2. + + + + + Fetch text + + + + + Fetch text content from document. + + + + + Info + + + + + Retrieve basic informations about a document. + + + + + + Information about document %1 + + + + + Properties: + + + + + + Property + + + + + + + + + + Value + + + + + + + Title + + + + + Subject + + + + + Keywords + + + + + Author + + + + + Creator + + + + + Producer + + + + + Creation date + + + + + Modified date + + + + + + + + + + + + + Yes + + + + + + + + + + + + + + + No + + + + + + + Unknown + + + + + Tagged + + + + + + None + + + + + AcroForm + + + + + XFA + + + + + Form type + + + + + Page count + + + + + Paper format + + + + + Paper size + + + + + File size + + + + + JavaScript + + + + + + Standard + + + + + Public Key + + + + + + Custom + + + + + No authorization required + + + + + Authorized as owner + + + + + Authorized as user + + + + + Encryption + + + + + Authorization + + + + + Metadata encrypted + + + + + Print (low resolution) + + + + + Print + + + + + Copy content + + + + + Accessibility + + + + + Page assembling + + + + + Modify content + + + + + Modify interactive items + + + + + Form filling + + + + + All + + + + + Permissions + + + + + File hashes: + + + + + Algorithm + + + + + Hash + + + + + MD5 + + + + + SHA1 + + + + + SHA256 + + + + + SHA384 + + + + + SHA512 + + + + + Info about used fonts + + + + + Retrieve informations about font usage in a document. + + + + + Type 0 (CID) + + + + + Type 1 (8 bit) + + + + + MM Type 1 (8 bit) + + + + + TrueType (8 bit) + + + + + Type 3 + + + + + MacRoman + + + + + WinAnsi + + + + + PDFDoc + + + + + MacExpert + + + + + Symbol + + + + + ZapfDingbats + + + + + Fonts used in document %1 + + + + + + Font Name + + + + + Font Type + + + + + Encoding + + + + + Pages + + + + + Embedded + + + + + Subset + + + + + + Unicode + + + + + + Object + + + + + + Gen. + + + + + -- + + + + + Substitutions + + + + + Substituted by Font + + + + + Match + + + + + ?? + + + + + Font Character Maps + + + + + Character Map for Font '%1' + + + + + Glyph Index + + + + + Character + + + + + Info about used inks + + + + + Retrieve information about inks used in a document. + + + + + Inks + + + + + Ink list + + + + + Spot + + + + + Color + + + + + Info (JavaScript code) + + + + + Retrieve informations about JavaScript usage in a document. + + + + + JavaScript used in document %1 + + + + + JavaScript Usage Overview + + + + + Context + + + + + + Page Number + + + + + Code Size + + + + + Code Snippet + + + + + Document + + + + + + Named + + + + + + Form + Formulář + + + + + Page + Stránka + + + + + Annotation + + + + + + Details + + + + + JavaScript #%1 + + + + + Extract document metadata + + + + + Extract document metadata (embedded xml stream). + + + + + Metadata not found in document. + + + + + Info (Named Destinations) + + + + + Retrieve informations about named destinations in a document. + + + + + Named destinations used in document %1 + + + + + Named Destinations + + + + + Left + + + + + Top + + + + + Right + + + + + Bottom + + + + + Zoom + + + + + + Invalid + + + + + XYZ + + + + + Fit + + + + + FitH + + + + + FitV + + + + + FitR + + + + + FitB + + + + + FitBH + + + + + FitBV + + + + + Info (page boxes) + + + + + Retrieve informations about page boxes in a document. + + + + + Page boxes in document %1 + + + + + Pages %1 + + + + + Box + + + + + Media + + + + + Crop + + + + + Bleed + + + + + Trim + + + + + Art + + + + + Structure Tree + + + + + Attributes + + + + + Owner + + + + + Revision + + + + + Hidden + + + + + [null] + + + + + [complex type] + + + + + Properties + + + + + Alternative description + + + + + Expanded form + + + + + Actual text + + + + + Phoneme + + + + + Marked Content Reference %1 + + + + + Structure Object Reference [%1 %2 R] + + + + + Info (Structure tree) + + + + + Examine structure tree in tagged document. + + + + + Structure tree in document %1 + + + + + No structure tree found in document. + + + + + Ink coverage + + + + + Calculate ink coverage of the selected pages, or a whole document. + + + + + Ink Coverage + Pokrytí inkoustem + + + + Ink Coverage by Page + + + + + %1 Ratio [%] + + + + + %1 Covered [mm^2] + + + + + Sum + + + + + Optimize + + + + + Optimize document size using various algorithms. + + + + + No optimization option has been set. + + + + + Failed to write optimize document. %1 + + + + + Render document + + + + + Render selected pages of document into image files. + + + + + Render document %1 + + + + + Benchmark rendering + + + + + Benchmark page rendering (measure time, detect errors). + + + + + Benchmark rendering of document %1 + + + + + + Statistics + + + + + Unit + + + + + Pages rendered + + + + + - + + + + + Total compile time + + + + + + + + + + msec + + + + + Total render time + + + + + Total wait time + + + + + Total write time + + + + + Total time + + + + + Wall time + + + + + Rendering speed (per core) + + + + + pages / sec (one core) + + + + + Rendering speed (wall time) + + + + + pages / sec + + + + + Compile time ratio + + + + + + + + % + + + + + Render time ratio + + + + + Wait time ratio + + + + + Write time ratio + + + + + Page Statistics + + + + + Compile Time [msec] + + + + + Render Time [msec] + + + + + Wait Time [msec] + + + + + Write Time [msec] + + + + + Total Time [msec] + + + + + Rendering Errors + + + + + Message + + + + + Error + Chyba + + + + Warning + Varování + + + + Not implemented + Nezapracováno + + + + Not supported + Nepodporováno + + + + Information + + + + + Extract pages + + + + + Separate document into single page documents. + + + + + File template is empty. + + + + + File template must contain character '%' for page number. + + + + + File '%1' already exists. Page %2 was not extracted. + + + + + Compute statistics of internal objects used in a document. + + + + + Statistics by Object Class + + + + + Class + + + + + + Percentage [%] + + + + + + Count [#] + + + + + Space Usage [bytes] + + + + + Content Stream + + + + + Graphic State + + + + + Color Space + + + + + Pattern + + + + + Shading + + + + + Image + + + + + Font + + + + + Action + + + + + Other + + + + + Statistics by Object Type + + + + + Merge documents + Sloučit dokumenty + + + + Merge multiple documents to a single document. + + + + + At least two documents and target (merged) document must be specified. + + + + + Target file '%1' already exists. Document merging not performed. + + + + + Document doesn't allow to assemble pages. + + + + + Signature verification + + + + + Verify signatures and timestamps in pdf document. + + + + + No document specified. + + + + + Digital signatures/timestamps verification of %1 + + + + + + Signature + + + + + Timestamp + + + + + Signed by + + + + + Signing date + + + + + Timestamp date + + + + + Hash alg. + + + + + Handler + + + + + Signed whole + + + + + + Skipped + + + + + %1 #%2 + + + + + Signed by: %1 + + + + + Certificate status: %1 + + + + + Signature status: %1 + + + + + Signing date: %1 + + + + + Timestamp date: %1 + + + + + Hash algorithm: %1 + + + + + Handler: %1 + + + + + Is whole document signed: %1 + + + + + Byte range covered by signature: %1 + + + + + Errors: + + + + + Warnings: + + + + + Certificate No. #%1 + + + + + Org. unit + + + + + State + + + + + Serial number + + + + + Locality + + + + + Surname + + + + + Forename + + + + + Initials + + + + + Pseudonym + + + + + Qualifier + + + + + Email + + + + + RSA method, %1-bit key + + + + + DSA method, %1-bit key + + + + + EC method, %1-bit key + + + + + DH method, %1-bit key + + + + + Unknown method, %1-bit key + + + + + Encryption method + + + + + Digital signatures + + + + + Non-repudiation + + + + + Key encipherement + + + + + Application data encipherement + + + + + Key agreement + + + + + Verify signatures on certificates + + + + + Verify signatures on revocation information + + + + + Encipher data during key agreement + + + + + Decipher data during key agreement + + + + + Trusted timestamping + + + + + Key usage + + + + + No digital signatures or timestamps found in the document. + + + + + XML export + + + + + Export internal data structure to xml. + + + + + PDFViewerMainWindow + + + PDF Viewer + + + + + &File + Soubor + + + + &Go To + + + + + Book&mark Settings + + + + + &View + + + + + Page La&yout + + + + + Re&ndering Options + + + + + &Tools + + + + + &Help + + + + + &Open... + + + + + &Close + + + + + &Quit + + + + + &Single Page + + + + + Ctrl+1 + + + + + &Continuous + + + + + Ctrl+2 + + + + + Two &Pages + + + + + Ctrl+3 + + + + + &Two columns + + + + + Ctrl+4 + + + + + &First page on right side + + + + + First page on right side + + + + + Ctrl+5 + + + + + Rendering &Errors... + + + + + Ctrl+E + + + + + &Antialiasing + + + + + &Text Antialiasing + + + + + &Smooth Pictures + + + + + &Ignore Optional Content Settings + + + + + &Options... + + + + + Ctrl+K + + + + + &Reset to Factory Settings + + + + + &Zoom In + + + + + Zoom &Out + + + + + &About... + + + + + Fit &Page + + + + + Fit &Width + + + + + W + + + + + &Fit Height + + + + + H + + + + + Prope&rties... + + + + + Send by &E-Mail... + + + + + Color | &Inverted + + + + + Color | &Grayscale + + + + + Color | &High Contrast + + + + + Color | &Monochromatic + + + + + Color | &Custom + + + + + Rotate &Right + + + + + Rotate &Left + + + + + &Print... + + + + + &Display Annotations + + + + + Go to document &start + + + + + Go to document &end + + + + + Go to &next page + + + + + Go to &previous page + + + + + Go &to next line + + + + + Go t&o previous line + + + + + &Get Source + + + + + &Certificates... + + + + + Automatic &Document Refresh + + + + + Automatically reloads the document if a change made by an external program is detected. + + + + + Become a &Sponsor + + + + + Become a Sponsor + + + + + &Bookmark Page + + + + + Bookmark Page + + + + + Bookmark page for fast navigation. + + + + + &Go to Next Bookmark + + + + + Go to Next Bookmark + + + + + Navigates to the next bookmarked page. + + + + + Go to Previous Boo&kmark + + + + + Navigates to the previous bookmarked page. + + + + + &Export Bookmarks + + + + + Export Bookmarks + + + + + Export bookmarks to the file. + + + + + &Import Bookmarks + + + + + Import Bookmarks + + + + + Import bookmarks from the file. + + + + + &Generate Bookmarks Automatically + + + + + Generate Bookmarks Automatically + + + + + If checked, bookmarks for main document chapters are generated automatically. + + + + + Display &Render Times + + + + + PDFViewerSettingsDialog + + + Options + + + + + Engine Settings + + + + + Multithreading strategy + + + + + Rendering engine + + + + + Prefetch pages + + + + + + + + + + + + + + + + + + + + + + + + + Enable + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Select a rendering method tailored to your application's requirements. Software Rendering, utilizing QPainter, is a versatile choice that guarantees compatibility across all platforms. It's particularly useful in scenarios where direct access to hardware acceleration isn't crucial. QPainter, part of the Qt framework, excels in rendering 2D graphics with support for various painting styles, image processing, and intricate graphical transformations, making it an excellent tool for applications that require detailed and sophisticated 2D graphics without relying on hardware acceleration.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">On the other hand, for applications that demand high-performance rendering, leveraging the Blend2D library offers a compelling alternative. Blend2D is a high-performance 2D vector graphics engine that utilizes multi-threading to accelerate the rendering process. It does not rely on QPainter or hardware acceleration but instead offers a software-based rendering solution optimized for speed and quality. Blend2D's advanced anti-aliasing techniques ensure crisp and clear image quality, making it suitable for applications where rendering performance and image quality are paramount.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The Prefetch Pages feature is a strategy that can be applied regardless of the rendering method chosen. By pre-rendering pages adjacent to the currently viewed content, this approach minimizes flickering and enhances the smoothness of transitions during scrolling, improving the overall user experience.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">When it comes to optimizing the rendering process, the choice of multithreading strategy plays a crucial role. A Single Thread strategy, where rendering tasks are executed sequentially on a single CPU core, might be preferable in environments where simplicity and predictability are key. For more demanding applications, employing a Multi-threading strategy can significantly improve rendering times. Strategies like Load Balanced distribute the workload evenly across CPU cores without delving into content-specific processing, offering a good performance boost. The Maximum Threads strategy takes full advantage of available CPU resources by allocating as many threads as possible to the rendering tasks, achieving optimal performance and minimizing rendering times.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This delineation between using QPainter for software rendering and Blend2D for high-performance, multi-threaded rendering allows developers to choose the most appropriate rendering pathway based on their specific performance requirements and the graphical complexity of their application.</p></body></html> + + + + + Rendering Settings + + + + + Clip to crop box + + + + + Text antialiasing + + + + + Ignore optional content + + + + + Smooth pictures + + + + + Display page compile/draw time + + + + + Antialiasing + + + + + Display annotations + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The rendering settings control how the rendering engine handles page content and the appearance of displayed graphics. <span style=" font-weight:600;">Antialiasing</span> smooths out the appearance of painted shapes, such as rectangles, vector graphics, and lines, but doesn't affect text. <span style=" font-weight:600;">Text antialiasing</span>, on the other hand, refines the appearance of text characters, leaving other items untouched. Both <span style=" font-weight:600;">Antialiasing </span>and <span style=" font-weight:600;">Text antialiasing </span>are relevant only for the software renderer. If you're using a hardware rendering engine like OpenGL, these settings won't have an impact because OpenGL renders images using MSAA antialiasing (if enabled). </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Smooth pictures</span> option enables pictures to be transformed into device space coordinates using a high-quality image transformation method. This generally results in better image quality. When disabled, a default fast transformation is used, potentially reducing image quality if the source DPI and device DPI differ. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Ignore optional content </span>ignores all optional content settings and renders everything in the content stream. <span style=" font-weight:600;">Clip to crop box</span> restricts the rendering area to the page's crop box, which is usually smaller than the whole page. Graphics outside the crop box aren't drawn, which can be useful for removing printer marks and similar elements. <span style=" font-weight:600;">Display page compile/draw time</span> can be handy for debugging, showing the time taken to compile a page (stored in the cache) and the time taken to render the compiled page contents onto the output device. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Using the <span style=" font-weight:600;">Display annotations</span> setting, you can enable or disable the display of annotations. If annotations are disabled, the user will not be able to interact with them. </p></body></html> + + + + + Shading Settings + + + + + Preferred mesh resolution ratio + + + + + Color tolerance + + + + + Minimal mesh resolution ratio + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shading is executed according to mesh quality criteria, involving <span style=" font-weight:600;">color tolerance</span> and shape tolerance. If the color of the vertices of a triangle in the mesh is too different (exceeding the set color tolerance), then the mesh is refined, and the triangle is subdivided. Some shadings are defined by patterns, such as <span style=" font-style:italic;">Coons patch shading</span> or <span style=" font-style:italic;">Tensor product patch shading</span>, which are also taken into consideration during meshing. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Preferred mesh resolution ratio</span> should be set to optimize the balance between the performance of mesh generation and the quality of the mesh. The optimal triangle size is computed as follows: the total meshing area (typically a page) is multiplied by this ratio to determine the triangle size. For example, if we have an A4 page (210 mm x 297 mm), and the ratio is set to 0.01, then the optimal triangle size is computed as 297 * 0.01 = ~3 mm. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Minimal mesh resolution ratio</span> is a ratio that determines the minimal triangle size. At this boundary, no triangles are subdivided, regardless of color variation or shape quality. This ratio should be set to a value at which a user can barely recognize patterns on the screen (for example, the triangle size should be &lt; 1 mm). However, this also affects performance, as too many triangles can be generated. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Color tolerance</span> is the threshold at which two colors are recognized as different. The comparison is done component-wise, so if at least one color component exceeds this parameter, the colors are treated as different. </p></body></html> + + + + + Cache Settings + + + + + Thumbnail image cache size + + + + + Cached font limit + + + + + + kB + + + + + Compiled page cache size + + + + + Cached instanced font limit + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The rendering engine first compiles the page to enable quick drawing and then stores these compiled pages in a cache. These stored pages usually render much quicker than non-cached pages. The <span style=" font-weight:600;">Compiled Page Cache Size</span> sets the memory limit for these compiled pages, measured in kilobytes. Ideally, this limit should be at least twice as large as the size of the largest compiled page. If a compiled page exceeds this limit, an error will be displayed during rendering. Setting a higher value for this limit can speed up the rendering engine, but it will consume more operating memory. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">There is also a cache for thumbnail images. The <span style=" font-weight:600;">Thumbnail Image Cache Size</span> determines the memory space allocated for these images. This value should be set large enough to accommodate all thumbnail images on the screen. The larger this value is, the quicker thumbnails will display, but at the cost of consuming more operating memory. Please note that thumbnails are stored as bitmaps for rapid drawing, not as precompiled pages. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">During rendering, fonts are cached as well. There are two levels of cache for fonts: one for general fonts and one for instance-specific fonts (fonts at a specific size). The <span style=" font-weight:600;">Cached Font Limit</span> sets the maximum number of fonts that can be stored in the cache. The <span style=" font-weight:600;">Instanced Font Cache Limit</span> sets the maximum number of instance-specific fonts that can be stored. If these cache limits are exceeded, fonts are removed from the cache. However, this only happens when no operation in another thread (like compiling pages) is being performed to avoid race conditions. </p></body></html> + + + + + Shortcuts + Zkratky + + + + Color management system settings + + + + + Black point compensation + + + + + Device gray color profile + + + + + Accuracy + + + + + Additional color profile directory + + + + + White paper color transformed + + + + + Output color profile + + + + + Rendering intent + + + + + Consider document output intents + + + + + Device RGB color profile + + + + + Color management system + + + + + Device CMYK color profile + + + + + ... + + + + + Color adaptation method (XYZ whitepoint) + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Color Management System</span> governs input and output color profiles and color transformations. This system allows for accurate color representation as defined in the PDF document. For faster color transformations, select 'Generic' to disable this functionality. The <span style=" font-weight:600;">Rendering Intent</span> selection influences the way colors are transformed. While rendering intents are often defined within the PDF document's content streams, you have the option to override them by selecting a different intent from 'Auto'. The <span style=" font-weight:600;">Accuracy</span> setting determines the precision of the color transformation, with higher accuracy consuming more memory. The <span style=" font-weight:600;">Black Point Compensation</span> adjusts for black colors that fall outside the gamut. The <span style=" font-weight:600;">White Paper Color Transformed</span> setting affects the color of the underlying white paper - enabling this will transform pure white from the device RGB profile to the output profile. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Output Color Profile</span> specifies the output (target) rendering profile. This profile should align with the color space that your screen uses to display colors. Additionally, you can set the color spaces for <span style=" font-weight:600;">gray/RGB/CMYK</span> device color spaces. These are used to transform gray/RGB/CMYK colors to the output color profile. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A document may contain output intents, which can be used for transforming between color spaces. If the <span style=" font-weight:600;">Consider Document Output Intents</span> option is checked, the color management system will verify whether the document contains output intents. If such intents are present, they will be used for color transformation as device color spaces (gray/RGB/CMYK). </p></body></html> + + + + + Color Postprocessing + + + + + Sigmoid function slope parameter + + + + + Foreground color + + + + + Background color + + + + + Bitonal threshold + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Foreground</span> and <span style=" font-weight:700;">background</span> colors refer to a custom colors rendering mode, where two colors are used - the paper is drawn with the background color, and the foreground color is used for text and graphics. By default, the background is black and the foreground is green, which is easy on the eyes. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Sigmoid function slope parameter</span> is a parameter in high contrast color rendering. This rendering mode displays all graphics in high contrast. This parameter affects the degree of contrast. Set the value from 1 to 5 for a small contrast change, from 5 to 10 for a medium contrast change, and more than 10 for very high contrast rendering. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Bitonal threshold</span> is used in the bitonal rendering color mode. It distinguishes between black and white colors. However, the threshold for images is determined automatically. </p></body></html> + + + + + Security Settings + + + + + Allow URI link launch + + + + + Allow application launch + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If the application launch is permitted, a message box appears after the <span style=" font-weight:600;">Launch</span> action is triggered, asking the user if they want to execute an external application. If the user confirms the dialog, the external application executes (for example, using the Windows function <span style=" font-weight:600;">ShellExecute</span>). When this option is turned off, no dialog appears and the external application never executes. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If the <span style=" font-weight:600;">URI link</span> launch is allowed, a message box appears asking the user if they want to open the URI link. If the user confirms the dialog, the URI link is opened by the default web browser (or default application if the URI links to the file system). </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Users should exercise caution with these settings and only confirm execution if the document is safe and comes from a reliable source. Launching external applications and following URI links can pose risks to the user's computer. </p></body></html> + + + + + UI Settings + + + + + Maximum redo steps + + + + + Magnifier size + + + + + Use logical pixels when zooming + + + + + px + + + + + Maximum undo steps + + + + + Magnifier zoom + + + + + Maximum count of recent files + + + + + Developer mode + + + + + Color Scheme (GUI) + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The 'Maximum count of recent files' setting controls the number of recent files displayed in the menu. When a document is opened, it is added to the top of the recent files list. The list is then truncated from the bottom if the number of recent files exceeds the maximum. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Magnifier tool settings</span> determine the appearance of the magnifier. The magnifier tool enlarges the area under the mouse cursor. You can specify the size of the magnifier (in <span style=" font-weight:600;">logical</span> pixels) and its zoom level. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">By specifying the <span style=" font-weight:600;">undo/redo</span> step count, you control the number of undo/redo steps available during document editing. Setting the maximum undo step count to zero disables the undo/redo function. You can also set a nonzero undo step count and a zero redo step count, which would make only undo actions available, with redo actions disabled. Changes are optimized for memory usage, so each undo/redo step shares unmodified objects with others. This means that, roughly speaking, making 10 modifications to a 50 MB document may consume around 51 MB of memory. Actual memory usage depends on the extent of the changes but is usually minimal as changes typically affect a small number of objects (for example, editing a form field or modifying an annotation). </p></body></html> + + + + + Speech Settings + + + + + Voice + + + + + Pitch + + + + + Volume + Hlasitost + + + + Rate + Rychlost + + + + Voice synthetiser + + + + + Locale + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Configure the speech settings to enable the text-to-speech feature for reading documents. While these settings act as defaults for the text-to-speech function, some can be adjusted later on. The 'Pitch' setting can vary from -1.0 to 1.0, with 0.0 serving as the default value. Similarly, the 'Rate' can range from -1.0 to 1.0, with 0.0 denoting a normal speech flow. Lastly, 'Volume' can be adjusted between 0.0 and 1.0. </p></body></html> + + + + + Form Settings + + + + + Highlight form fields + + + + + Highlight required form fields + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can customize the appearance of form fields using the provided settings, including the option to highlight editable fields. You can separately highlight required form fields in red, while other fields can be emphasized in blue. </p></body></html> + + + + + Digital Signature Verification + + + + + Ignore expired certificates + + + + + Signature verification + + + + + Strict mode + + + + + Use system certificate store + + + + + <html><head/><body><p><span style=" font-weight:600;">Trusted certificate store</span></p></body></html> + + + + + Remove + + + + + <html><head/><body><p>These are the settings for digital signature verification. Digital signatures are verified as strictly as possible to prevent any malicious content or signature manipulation. Verification can also be disabled, if not required. When <span style=" font-weight:600;">Strict mode</span> is enabled, every warning is treated as an error. You have the option to ignore the certificate expiration date, but this should only be done if you fully understand the potential risks involved. Verification uses a list of trusted certificates. System certificates can be added to this list, and you can also manage your own list of trusted certificates. </p></body></html> + + + + + Plugins + + + + + SelectOutlineToRegroupDialog + + + Select Outline + + + + + SettingsDialog + + + Unit Settings + Nastavení jednotek + + + + Units + Jednotky + + + + Lengths + Délky + + + + Areas + Plochy + + + + Angles + Úhly + + + + + Soft Proofing Settings + + + + + Proofing intent + + + + + Proofing profile + + + + + Alarm color + + + + + Auto + + + + + Perceptual + + + + + Relative colorimetric + + + + + Absolute colorimetric + + + + + Saturation + + + + + SettingsDockWidget + + + Settings + + + + + Left Document + + + + + + Page Selection: + + + + + Right Document + + + + + Options + + + + + Compare texts as vector graphics + + + + + Compare text characters instead of words + + + + + Transparency | Overlay View + + + + + Colors + + + + + Remove + + + + + Add + + + + + Replace + + + + + Move + + + + + SignDialog + + + Dialog + + + + + Sign Method + + + + + Method + + + + + Certificate + + + + + Password + + + + + Parameters + + + + + Reason + + + + + Contact Info + + + + + StatisticsGraphWidget + + + Form + Formulář + + + + codegen::GeneratedPDFObject + + + Object + + + + + Array (simple) + + + + + Array (complex) + + + + + Dictionary + + + + + Item (simple), name = '%1' + + + + + Item (complex), name = '%1' + + + + + pdf::PDFAsynchronousTextLayoutCompiler + + + Indexing document contents... + + + + + pdf::PDFAttachmentsTreeItemModel + + + Files + + + + + pdf::PDFCMSManager + + + Generic + + + + + Little CMS %1.%2 + + + + + Gray D65, γ = 2.2 + + + + + Gray D50, γ = 2.2 + + + + + Gray D93, γ = 2.2 + + + + + Gray D65, γ = 1.0 (linear) + + + + + Gray D50, γ = 1.0 (linear) + + + + + Gray D93, γ = 1.0 (linear) + + + + + HDTV (ITU-R BT.709) + + + + + Adobe RGB 1998 + + + + + PAL / SECAM + + + + + NTSC + + + + + Adobe Wide Gamut RGB + + + + + ProPhoto RGB + + + + + sRGB + + + + + pdf::PDFCertificateListHelper + + + Password protected + + + + + pdf::PDFCertificateManagerDialog + + + Create + + + + + Open Directory + + + + + Delete + + + + + Import + + + + + Confirm delete + + + + + Do you want to delete certificate '%1'? + + + + + + Error + Chyba + + + + Cannot delete certificate '%1' + + + + + + + Import Certificate + + + + + Certificate file (*.pfx);;All files (*.*) + + + + + Target file exists. Please rename the certificate file to import. + + + + + Certificate '%1' was successfully imported. + + + + + Error occured during certificate '%1' import. + + + + + pdf::PDFCreateCertificateDialog + + + 1024 bits + 1024 bitů + + + + 2048 bits + 2048 bitů + + + + 4096 bits + + + + + + Certificate Protection + + + + + Enter password to protect your certificate. + + + + + Enter password again to verify password text. + + + + + + + + Error + Chyba + + + + Reentered password is not equal to the first one! + + + + + Please enter a name! + + + + + Please enter an organization name! + + + + + Please enter an email address! + + + + + pdf::PDFCreateFreeTextTool + + + Text + Text + + + + Enter text for free text panel + Zadejte text pro volný textový panel + + + + pdf::PDFCreateHighlightTextTool + + + Select Color + + + + + pdf::PDFCreateHyperlinkTool + + + Hyperlink + + + + + Enter url address of the hyperlink + + + + + pdf::PDFCreatePCElementImageTool + + + Select Image + + + + + pdf::PDFCreateStickyNoteTool + + + Sticky note + + + + + Enter text to be displayed in the sticky note + + + + + pdf::PDFDependentLibraryInfo + + + Qt + + + + + LGPLv3 + + + + + https://www.qt.io/ + + + + + libjpeg + + + + + permissive + ack. + + + + + https://www.ijg.org/ + + + + + %1 + %1 + + + + + %1.%2 + %1.%2 + + + + FreeType + + + + + FTL + + + + + %1.%2.%3 + + + + + https://www.freetype.org/index.html + + + + + OpenJPEG + + + + + + 2-clause MIT license + + + + + https://www.openjpeg.org/ + + + + + OpenSSL + + + + + Apache 2.0 + + + + + https://www.openssl.org/ + + + + + LittleCMS + + + + + http://www.littlecms.com/ + + + + + zlib + + + + + + zlib specific + + + + + https://zlib.net/ + + + + + Blend2D + + + + + https://blend2d.com/ + + + + + pdf::PDFDiff + + + No document to be compared. + + + + + No page to be compared. + + + + + Invalid page range. + + + + + Comparing documents. + + + + + Page no. %1 was moved to a page no. %2. + + + + + Page no. %1 was added. + + + + + Page no. %1 was removed. + + + + + Removed text character from page %1. + + + + + Removed vector graphics from page %1. + + + + + Removed image from page %1. + + + + + Removed shading from page %1. + + + + + Added text character to page %1. + + + + + Added vector graphics to page %1. + + + + + Added image to page %1. + + + + + Added shading to page %1. + + + + + Text '%1' has been added to page %2. + + + + + Text '%1' has been removed from page %2. + + + + + Text '%1' on page %2 has been replaced by text '%3' on page %4. + + + + + Invalid + + + + + Page moved + + + + + Page added + + + + + Page removed + + + + + Removed text character + + + + + Removed vector graphics + + + + + Removed image + + + + + Removed shading + + + + + Added text character + + + + + Added vector graphics + + + + + Added image + + + + + Added shading + + + + + Text added + + + + + Text removed + + + + + Text replaced + + + + + pdf::PDFDocumentManipulator + + + Empty page list. + + + + + + Invalid document. + + + + + + Missing page (%1) in a document. + + + + + + Missing image. + + + + + Error occured during page creation. + + + + + Document %1 + + + + + %1, p. %2 + + + + + %1 Images + + + + + %1 Pages + + + + + pdf::PDFDocumentReader + + + File '%1' cannot be opened for reading. %1 + + + + + File '%1' doesn't exist. + + + + + Device is not opened for reading. + + + + + Can't open device for reading. + + + + + End of file marking was not found. + + + + + Header of PDF file was not found. + + + + + Version of the PDF file is not valid. + + + + + + Start of object reference table not found. + + + + + + + + Can't read object at position %1. + + + + + Invalid trailer dictionary. + + + + + Empty xref table. + + + + + pdf::PDFDocumentSanitizer + + + Document info was removed. + + + + + Metadata streams removed: %1 + + + + + Outline was removed. + + + + + File attachments removed: %1. + + + + + Embedded files were removed. + + + + + Search index was removed. + + + + + Markup annotations removed: %1. + + + + + Page thumbnails removed: %1. + + + + + pdf::PDFDocumentTextFlowEditorModel + + + Page No. + + + + + Type + + + + + State + + + + + + Text + Text + + + + Title + + + + + Language + + + + + Special + + + + + Removed + + + + + Modified + + + + + Active + + + + + pdf::PDFDocumentWriter + + + + Writing of encrypted documents is not supported. + + + + + + + File '%1' can't be opened for writing. %2 + + + + + Device is not writable. + + + + + pdf::PDFEditObjectDialog + + + Edit Annotation + + + + + pdf::PDFExtractImageTool + + + Image of size %1 x %2 pixels was copied to the clipboard. + + + + + pdf::PDFFindTextTool + + + + Find + + + + + Case sensitive + + + + + Whole words only + + + + + Previous + + + + + Next + + + + + Search text + + + + + Find (%1/%2) + + + + + pdf::PDFFormFieldSignatureEditor + + + Signature Unknown + + + + + Signature Valid + + + + + Signature Invalid + + + + + pdf::PDFLexicalAnalyzer + + + Expected a number, but end of stream reached. + + + + + Invalid format of number. Character '%1' appeared. + + + + + Both '+' and '-' appeared in number. Invalid format of number. + + + + + Bad format of number - no digits appeared. + + + + + Real number overflow. + + + + + Hexadecimal number must follow character '#' in the name. + + + + + Invalid character in hexadecimal string. + + + + + Unexpected end of stream reached while scanning hexadecimal string. + + + + + Invalid character '%1' + + + + + + Unexpected character '%1' in the stream. + + + + + Trying to seek stream position to %1 bytes from the start, byte offset is invalid. + + + + + Can't read %1 bytes from the input stream. Input stream end reached. + + + + + Unexpected end of stream reached. + + + + + Error near position %1. %2 + + + + + pdf::PDFObjectEditorAnnotationsModel + + + + + + + + + + General + + + + + + + Type + + + + + + + Text + Text + + + + + Link + + + + + + + + + Free text + + + + + + + + + + + + + + Line + + + + + + Square + + + + + + Circle + + + + + Polygon + + + + + Polyline + + + + + + Highlight + + + + + + Underline + + + + + Squiggly + + + + + Strike Out + + + + + Caret + + + + + + + + Stamp + + + + + Ink + + + + + + File attachment + + + + + Redaction + + + + + Rectangle + + + + + + + + Contents + + + + + Author + + + + + Subject + + + + + Annotation name + + + + + + Info + + + + + Modified + + + + + Created + + + + + + + Options + + + + + Invisible + + + + + Hidden + + + + + Print + + + + + No Zoom + + + + + No Rotate + + + + + No View + + + + + Readonly + + + + + Locked + + + + + Toggle No View + + + + + Locked Contents + + + + + Modify appearance + + + + + + + + + + + + Appearance + + + + + + Colors + + + + + Color + + + + + Interior color + + + + + + + Transparency + + + + + Blend mode + + + + + Fill opacity + + + + + Stroke opacity + + + + + Language + + + + + Modify border + + + + + + + + Border + + + + + + Border Style + + + + + Width + + + + + + + + + + + + + + + + + + + + Style + + + + + Solid + + + + + Dashed + + + + + Beveled + + + + + Inset + + + + + + Border Effect + + + + + Cloudy + + + + + + + + None + + + + + Intensity + + + + + + Sticky note + + + + + Comment + + + + + Key + + + + + Note + + + + + Help + + + + + New Paragraph + + + + + Paragraph + + + + + Insert + + + + + Open + + + + + Invert + + + + + Outline + + + + + Push + + + + + + Alignment + + + + + + + + Intent + + + + + Callout + + + + + Typewriter + + + + + Callout line ending + + + + + Line start + + + + + Line end + + + + + Leader line length + + + + + Leader line extension + + + + + Leader line offset + + + + + Arrow + + + + + Dimension + + + + + Cloud + + + + + Line dimension + + + + + Polygon dimension + + + + + Caption + + + + + Caption position + + + + + Inline + + + + + Top + + + + + Name + + + + + Image + + + + + Snapshot + + + + + Icon + + + + + Graph + + + + + Push-pin + + + + + Paperclip + + + + + Tag + + + + + + + Redact + + + + + Overlay text + + + + + Repeat overlay text + + + + + Left + + + + + Center + + + + + Right + + + + + Diamond + + + + + Open arrow + + + + + Closed arrow + + + + + Butt + + + + + Reversed open arrow + + + + + Reversed closed arrow + + + + + Slash + + + + + pdf::PDFObjectEditorMappedColorAdapter + + + custom + + + + + pdf::PDFObjectEditorWidgetMapper + + + Rectangle + + + + + pdf::PDFOptimizer + + + Stage %1 + + + + + Pass %1 + + + + + Simple objects dereferenced and embedded: %1 + + + + + Null objects entries from dictionaries removed: %1 + + + + + Unused objects removed: %1 + + + + + Identical objects merged: %1 + + + + + Object list shrinked by: %1 + + + + + Bytes saved by recompressing stream: %1 + + + + + pdf::PDFOutlineTreeItemModel + + + Item %1 + + + + + pdf::PDFPageContentEditorEditedItemSettings + + + + Solid + + + + + Dashed + + + + + Dotted + + + + + Dash-dot + + + + + Dash-dot-dot + + + + + Custom + + + + + Image + + + + + Text + Text + + + + Style + + + + + Transformation + + + + + Select Image + + + + + Select Color for Pen + + + + + Select Color for Brush + + + + + pdf::PDFPageContentEditorStyleSettings + + + + None + + + + + + Solid + + + + + Dashed + + + + + Dotted + + + + + Dash-dot + + + + + Dash-dot-dot + + + + + Horizontal + + + + + Vertical + + + + + B-Diagonal + + + + + F-Diagonal + + + + + Cross + + + + + Edit Item + + + + + Content + + + + + Appearance + + + + + Select Font + + + + + Select Color for Pen + + + + + Select Color for Brush + + + + + pdf::PDFParser + + + Stream ended inside array. + + + + + Dictionary key must be a name. + + + + + End of stream inside dictionary reached. + + + + + Streams are not allowed in this context. + + + + + Stream length is not specified. + + + + + Bad value of stream length. It should be an integer number. + + + + + Length of the stream buffer is negative (%1). It must be a positive number. + + + + + Stream data should be in external file, but invalid file name is specified. + + + + + Can't open stream data stored in external file '%1'. + + + + + End of stream should end in keyword 'endstream'. + + + + + Cannot read object. Unexpected token appeared. + + + + + Cannot read object. End of stream reached. + + + + + pdf::PDFParsingContext + + + Cyclical reference found while parsing object %1 %2. + + + + + Function dictionary expected. + + + + + Fuction has invalid domain. + + + + + Fuction has invalid range. + + + + + Sampled function has invalid sample size. + + + + + Sampled function has invalid count of bits per sample. + + + + + Sampled function hasn't any output. + + + + + Sampled function has invalid encode array. + + + + + Sampled function has invalid decode array. + + + + + Not enough samples for sampled function. + + + + + Exponential function can have only one input value. + + + + + + Invalid domain of exponential function. + + + + + Invalid parameter of exponential function (at x = 0.0). + + + + + Invalid parameter of exponential function (at x = 1.0). + + + + + Stitching function can have only one input value. + + + + + Stitching function has different function count. Expected %1, actual %2. + + + + + Stitching function has invalid encode array. Expected %1 items, actual %2. + + + + + Functions in stitching function has different number of output variables. + + + + + Stitching function has invalid functions. + + + + + Stitching function hasn't functions array. + + + + + Empty program in PostScript function. + + + + + Invalid function type: %1. + + + + + pdf::PDFPickTool + + + Use key 'C' to show/hide large cross. + + + + + pdf::PDFRenderingErrorsWidget + + + Page + Stránka + + + + Error type + Typ chyby + + + + Description + Popis + + + + Error + Chyba + + + + Warning + Varování + + + + Not implemented + Nezapracováno + + + + Not supported + Nepodporováno + + + + pdf::PDFScreenshotTool + + + Page contents of size %1 x %2 pixels were copied to the clipboard. + Obsah stránky o rozměrech %1 x %2 pixelů byl zkopírován do schránky. + + + + pdf::PDFSecurityHandlerFactory + + + User password contains invalid characters: %1. + + + + + Owner password contains invalid characters: %1. + + + + + Invalid certificate or password. + Neplatný certifikát nebo heslo. + + + + pdf::PDFSelectPagesDialog + + + + Error + Chyba + + + + Selected page range is empty. + + + + + pdf::PDFSelectTableTool + + + Table region was selected. Use left/right mouse buttons to add/remove rows/columns, then use Enter key to copy the table. + + + + + pdf::PDFTranslationContext + + + Circular dependence in actions found. + + + + + Invalid action. + + + + + + Text + Text + + + + + + Line + + + + + Free Text + + + + + Square + + + + + Circle + + + + + Polygon + + + + + Polyline + + + + + Highlight + + + + + Underline + + + + + Squiggly + + + + + Strike Out + + + + + Stamp + + + + + Caret + + + + + Ink + + + + + Popup + + + + + File Attachment + + + + + Sound + + + + + Movie + + + + + Widget + + + + + + Screen + + + + + Printer Mark + + + + + Trap Net + + + + + Watermark + + + + + Redaction + + + + + Projection + + + + + 3D + + + + + + Rich Media + + + + + Reply + + + + + &Approved + + + + + APPROVED + + + + + As &Is + + + + + AS IS + + + + + &Confidential + + + + + CONFIDENTIAL + + + + + &Departmental + + + + + DEPARTMENTAL + + + + + Dra&ft + + + + + DRAFT + + + + + &Experimental + + + + + EXPERIMENTAL + + + + + E&xpired + + + + + EXPIRED + + + + + Fina&l + + + + + FINAL + + + + + For Co&mment + + + + + FOR COMMENT + + + + + For P&ublic Release + + + + + FOR PUBLIC RELEASE + + + + + Not A&pproved + + + + + NOT APPROVED + + + + + N&ot For Public Release + + + + + NOT FOR PUBLIC RELEASE + + + + + &Sold + + + + + SOLD + + + + + &Top Secret + + + + + TOP SECRET + + + + + Normal + + + + + Multiply + + + + + Overlay + + + + + Darken + + + + + Lighten + + + + + ColorDodge + + + + + ColorBurn + + + + + HardLight + + + + + SoftLight + + + + + Difference + + + + + Exclusion + + + + + Hue + + + + + Saturation + + + + + Color + + + + + Luminosity + + + + + + + Unknown + + + + + Invalid pass encoding data in CCITT stream. + + + + + CCITT b2 index out of range. + + + + + Invalid horizontal encoding data in CCITT stream. + + + + + + + Invalid vertical encoding data in CCITT stream. + + + + + Invalid index of CCITT changing element a1: a1 = %1, columns = %2. + + + + + Invalid CCITT run length code word. + + + + + Invalid CCITT 2D mode. + + + + + + Conversion from gray to output device using CMS failed. + + + + + + Conversion from gray to output device using CMS failed - invalid data format. + + + + + + Conversion from RGB to output device using CMS failed. + + + + + + Conversion from RGB to output device using CMS failed - invalid data format. + + + + + + Conversion from CMYK to output device using CMS failed. + + + + + + Conversion from CMYK to output device using CMS failed - invalid data format. + + + + + + Conversion from XYZ to output device using CMS failed. + + + + + + Conversion from XYZ to output device using CMS failed - invalid data format. + + + + + + Conversion from icc profile space to output device using CMS failed. + + + + + + Conversion from icc profile space to output device using CMS failed - invalid data format. + + + + + Structure tree item for MCID %1 not found. + + + + + + Page %1 + + + + + Valid tagged document required. + + + + + + JBIG2 invalid header - bad referred segments. + + + + + + JBIG2 invalid segment type %1. + + + + + Invalid JBIG2 file header. + + + + + Invalid JBIG2 file header flags. + + + + + Invalid JBIG2 file - unknown number of pages. + + + + + Invalid JBIG2 file - invalid number of pages (%1). + + + + + Invalid JBIG2 file - segment length is not defined. + + + + + JBIG2 bad segment data - handler doesn't process all segment data - %1 bytes left. + + + + + JBIG2 bad segment data - handler reads %1 bytes past segment end. + + + + + + + + + JBIG2 invalid flags for symbol dictionary segment. + + + + + + + + + + + + + + + + + JBIG2 invalid user huffman code table. + + + + + JBIG2 invalid number of huffam code table - %1 unused. + + + + + + JBIG2 trying to use aritmetic decoder context from previous symbol dictionary, but it doesn't exist. + + + + + JBIG2 symbol height class has more symbols, than defined in the symbol dictionary header. + + + + + Trying to use reference bitmap %1, but number of decoded bitmaps is %2. + + + + + JBIG2 - invalid export flags in symbol dictionary. + + + + + JBIG2 - invalid huffman table flags in text region segment. + + + + + JBIG2 no referred symbols in text region segment. + + + + + JBIG2 invalid symbol length code table for text region segment. + + + + + + JBIG2 - invalid bitmap for generic region. + + + + + JBIG2 invalid pattern dictionary flags. + + + + + JBIG2 unknown data length for pattern dictionary. + + + + + JBIG2 invalid pattern dictionary collective bitmap. + + + + + + JBIG2 region segment information - invalid bit operation mode. + + + + + JBIG2 invalid referenced pattern dictionaries for halftone segment. + + + + + JBIG2 invalid patterns for halftone segment. + + + + + JBIG2 halftoning with more than 8 grayscale bit planes not supported (current bitplanes: %1). + + + + + JBIG2 unknown data length for halftone dictionary. + + + + + JBIG2 invalid halftone grayscale bit plane image. + + + + + JBIG2 halftoning pattern index %1 out of bounds [0, %2] + + + + + JBIG2 - invalid bitmap for halftone region. + + + + + JBIG2 - malformed generic region flags. + + + + + JBIG2 - end of data byte sequence not found for generic region. + + + + + JBIG2 - invalid flags for generic refinement region. + + + + + JBIG2 - operation must be REPLACE for generic refinement region. + + + + + JBIG2 - invalid referred segments (%1) for generic refinement region. + + + + + JBIG2 - invalid referred bitmap size [%1 x %2] instead of [%3 x %4] for generic refinement region. + + + + + JBIG2 - invalid bitmap for generic refinement region. + + + + + JBIG2 end-of-page segment shouldn't contain any data, but has extra data of %1 bytes. + + + + + JBIG2 end-of-page segment detected and ignored. + + + + + JBIG2 end-of-file segment shouldn't contain any data, but has extra data of %1 bytes. + + + + + JBIG2 end-of-file segment detected and ignored. + + + + + JBIG2 underflow of the low value in huffman table. + + + + + JBIG2 unknown extension %1 necessary for decoding the image. + + + + + JBIG2 segment with unknown extension has not defined length. + + + + + JBIG2 segment %1 is not a bitmap. + + + + + JBIG2 bitmap segment %1 not found. + + + + + JBIG2 symbol index %1 not found in symbol table of length %2. + + + + + JBIG2 region segment information flags are invalid. + + + + + JBIG2 segment with unknown data length can't be skipped. + + + + + JBIG2 invalid referred segment %1 referenced by segment %2. + + + + + JBIG2 maximum bitmap size exceeded (%1 > %2). + + + + + JBIG2 invalid bitmap size (%1 x %2). + + + + + JBIG2 invalid bit operation. + + + + + JBIG2 can't read integer. + + + + + JBIG2 - invalid bitmap paint operation. + + + + + JBIG2 - invalid bitmap copy row operation. + + + + + JBIG2 overflow of prefix bit values in huffman table. + + + + + Null + + + + + Boolean + + + + + Integer + + + + + Real + + + + + String + + + + + Name + + + + + Array + + + + + Dictionary + + + + + Stream + + + + + Reference + + + + + + Invalid optional content properties. + + + + + + + + Invalid optional content configuration. + + + + + + Invalid optional content group. + + + + + Cyclic reference error in optional content visibility expression. + + + + + + + Invalid optional content visibility expression. + + + + + Invalid number of matrix elements. Expected 6, actual %1. + + + + + Reading contents of document... + + + + + Authorization failed. Bad password provided. + + + + + Decrypting encrypted contents of document... + + + + + Object stream %1 not found. + + + + + + + + Object stream %1 is invalid. + + + + + Trailer dictionary is not valid. + + + + + Invalid tiling pattern - wrong paint type %1. + + + + + Invalid tiling pattern - wrong tiling type %1. + + + + + Invalid tiling pattern - bounding box is invalid. + + + + + Invalid tiling pattern - steps are invalid. + + + + + + + + Invalid pattern. + + + + + Invalid shading. + + + + + Pattern color space is not valid for shading patterns. + + + + + Invalid shading pattern extends. Expected 2, but %1 provided. + + + + + Invalid function shading pattern domain. Expected 4 values, but %1 provided. + + + + + Invalid function shading pattern domain. Invalid domain ranges. + + + + + + Invalid axial shading pattern color functions. Expected %1 functions, but %2 provided. + + + + + Invalid axial shading pattern coordinates. Expected 4, but %1 provided. + + + + + Invalid axial shading pattern domain. Expected 2, but %1 provided. + + + + + Invalid radial shading pattern coordinates. Expected 6, but %1 provided. + + + + + Invalid radial shading pattern domain. Expected 2, but %1 provided. + + + + + Invalid radial shading pattern color functions. Expected %1 functions, but %2 provided. + + + + + Radial shading cannot have negative circle radius. + + + + + Invalid bits per coordinate (%1) for shading. + + + + + Invalid bits per component (%1) for shading. + + + + + Invalid domain for shading. Expected size is 6, actual size is %1. + + + + + Invalid domain for shading. Expected size is %1, actual size is %2. + + + + + Invalid bits per flag (%1) for shading. + + + + + Invalid vertices per row (%1) for lattice-form gourad triangle meshing. + + + + + Invalid shading pattern type (%1). + + + + + + Error occured during mesh generation of shading: %1 + + + + + + + + + + Error occured during mesh creation of shading: %1 + + + + + Invalid free form gourad triangle data stream. + + + + + Invalid lattice form gourad triangle data stream. + + + + + + + Nonzero flag for first patch (flags = %1). + + + + + Invalid data in tensor product patch shading. + + + + + Invalid data in coons patch shading. + + + + + Unknown crypt filter '%1'. + + + + + + + + Revision %1 of standard security handler is not supported. + + + + + Expected %1 characters long string in entry '%2'. Provided length is %3. + + + + + Expected %1 characters long string in entry '%2'. + + + + + Invalid encryption dictionary. + + + + + Unknown security handler. + + + + + Unsupported version of document encryption (V = %1). + + + + + Invalid value for entry '%1' in encryption dictionary. Name expected. + + + + + Invalid value for entry '%1' in encryption dictionary. Boolean expected. + + + + + Invalid value for entry '%1' in encryption dictionary. Integer expected. + + + + + Crypt filter is not a dictionary! + + + + + Unsupported encryption algorithm '%1'. + + + + + Unsupported authorization event '%1'. + + + + + + Crypt filter '%1' not found. + + + + + Permissions entry in the Encryption dictionary is invalid. + + + + + + + Security permissions are manipulated. Can't open the document. + + + + + + Encryption key length (%1) exceeded maximal value of %2. + + + + + No signature handler for signature format '%1'. + + + + + Certificate format is invalid. + + + + + No signatures in certificate data. + + + + + Certificate is missing. + + + + + Generic error occured during certificate validation. + + + + + Certificate has expired. + + + + + Certificate is self-signed. + + + + + Self-signed certificate in chain. + + + + + Trusted certificate not found. + + + + + Certificate has been revoked. + + + + + Certificate validation failed with code %1. + + + + + Signature is invalid. + + + + + No signatures found in certificate. + + + + + Signature certificate is missing. + + + + + Signed data has different hash function digest. + + + + + Signed data are invalid. + + + + + Data covered by signature are not present. + + + + + %1 bytes are not covered by signature. + + + + + Certificate revocation list (CRL) not checked, validity time has expired. + + + + + Qualified certificate statement not verified. + + + + + Unable to get CRL. + + + + + OK + + + + + Warning + Varování + + + + Error + Chyba + + + + Transformation between blending color space failed. + + + + + Invalid clear color - process color %1 was not found in clear color. + + + + + More colors in clear color (%1) than process color channel count (%2). + + + + + + + Transformation of spot color to blend color space failed. + + + + + + + Invalid number bits of image mask (should be 1 bit instead of %1 bits). + + + + + + + + Invalid size of image (%1x%2) + + + + + Invalid image color space. + + + + + Invalid base color space of indexed color space. + + + + + + + Invalid colors for indexed color space. Color space has %1 colors. Provided color count is %4. + + + + + Conversion of indexed image to base color space failed. + + + + + + + + Image masking not implemented! + + + + + + + + + + + Invalid colors for color space. Color space has %1 colors. Provided color count is %4. + + + + + + + + + + Invalid size of the decode array. Expected %1, actual %2. + + + + + Invalid matte color. + + + + + + + Invalid number of color components in color key mask. Expected %1, provided %2. + + + + + + + Invalid size of the decoded array. Expected %1, actual %2. + + + + + + Soft mask can't have masking. + + + + + + Invalid size of soft mask. + + + + + + Soft mask should have only 1 color component (alpha) instead of %1. + + + + + Invalind soft mask. + + + + + Invalid blend color space of soft mask definition. + + + + + Invalid soft mask type. + + + + + Evaulation of soft mask transfer function failed. + + + + + Cannot create shading sampler. + + + + + Image painting not implemented. + + + + + Mesh painting not implemented. + + + + + Invalid source ink index %1. + + + + + Invalid target ink index %1. + + + + + Transformation from source color space to target blending color space failed. + + + + + Gray + + + + + Red + + + + + Green + + + + + Blue + + + + + Cyan + + + + + Magenta + + + + + Yellow + + + + + Black + + + + + Process Generic%1 + + + + + Not enough data to read %1-bit value. + + + + + Can't seek to position %1. + + + + + Can't get substream - remaining %1 bits in buffer. + + + + + + + Can't convert '%1' to a number. + + + + + Closed interval [%1, %2] is invalid. + + + + + Rendering of content type '%1' is not implemented. + + + + + Image encoded by 'package' mode not decoded. + + + + + Image of type '%1' not decoded. + + + + + + XFA: Buttons not implemented. + + + + + XFA: Uknown ui. + + + + + Barcode not implemented! + + + + + XFA: Unknown fill pattern. + + + + + + XFA: special stroke is not supported. + + + + + + Catalog must be a dictionary. + + + + + Required features %1 are unsupported. Document processing can be limited. + + + + + Optional Content User Interaction + + + + + Optional Content Usage + + + + + Acrobat Forms + + + + + Navigation + + + + + Markup Annotations + + + + + Markup of 3D Content + + + + + Multimedia + + + + + U3D Format of PDF 3D + + + + + PRC Format of PDF 3D + + + + + Actions + + + + + JavaScript + + + + + Attached Files + + + + + Attached Files Modification + + + + + Collections of Attached Files + + + + + Collections of Attached Files (editation) + + + + + Digital Signature Validation + + + + + Apply Digital Signature + + + + + Digital Signature Validation (with MDP) + + + + + Geospatial 2D Features + + + + + Geospatial 3D Features + + + + + Navigation for Document Parts + + + + + Separation Simulation + + + + + Transitions/Presentations + + + + + Encryption + + + + + Invalid page rotation. + + + + + + Expected valid kids in page tree. + + + + + Detected cycles in page tree. + + + + + + Expected valid type item in page tree. + + + + + Expected dictionary in page tree. + + + + + Invalid code in the LZW stream. + + + + + Failed to initialize flate compression stream. + + + + + + zlib code: %1 + + + + + Error compressing by flate method: %1 + + + + + Failed to initialize flate decompression stream. + + + + + Error decompressing by flate method: %1 + + + + + Property '%1' should be in range from %2 to %3. + + + + + Invalid property '%1' of the stream predictor parameters. + + + + + Invalid predictor algorithm. + + + + + Security handler required, but not provided. + + + + + Invalid number of color components. Expected number is %1, actual number is %2. + + + + + + Can't load color space, because color space structure is too complex. + + + + + + + + Invalid color space. + + + + + Can't determine alternate color space for ICC based profile. Number of components is %1. + + + + + Can't determine alternate color space for ICC based profile. + + + + + Too much color components for ICC based profile. + + + + + + Operation cancelled! + + + + + Can't determine base color space for indexed color space. + + + + + Invalid colors for indexed color space. Color space has %1 colors, %2 color components and must have %3 size. Provided size is %4. + + + + + Can't determine color name for separation color space. + + + + + Can't determine alternate color space for separation color space. + + + + + Can't determine tint transform for separation color space. + + + + + Pattern doesn't have defined uniform color. + + + + + Invalid colorants for DeviceN color space. + + + + + Can't determine alternate color space for DeviceN color space. + + + + + Can't determine tint transform for DeviceN color space. + + + + + + + Page %1 doesn't exist. + + + + + Start at %1... + + + + + Rendering document into images. + + + + + Page %1 not found. + + + + + Finished at %1... + + + + + %1 miliseconds elapsed to render %2 pages... + + + + + Image_% + + + + + Target directory is empty. + + + + + Target directory '%1' doesn't exist. + + + + + File template is empty. + + + + + File template must contain character '%' for page number. + + + + + Page list is invalid. It should have form such as '1-12,17,24,27-29'. + + + + + Page list contains page, which is not in the document (%1). + + + + + DPI resolution should be in range %1 to %2. + + + + + Pixel resolution should be in range %1 to %2. + + + + + + Invalid page contents. + + + + + Graphic state stack was saved more times, than was restored. + + + + + Transparency group blending color space is invalid. + + + + + Invalid inline image dictionary, ID operator is missing. + + + + + + Expected name in the inline image dictionary stream. + + + + + Invalid inline image stream. + + + + + + Shading pattern graphic state is invalid. + + + + + Uncolored tiling pattern has not underlying color space. + + + + + Unknown operator '%1'. + + + + + Not implemented operator '%1'. + + + + + Current point of path is not set. Path is empty. + + + + + + + Invalid line dash pattern. + + + + + Marked content is not well formed (not enough EMC operators). + + + + + Blend mode '%1' is invalid. + + + + + Graphic state '%1' found, but invalid in resource dictionary. + + + + + Graphic state '%1' not found in resource dictionary. + + + + + Invalid graphic state resource dictionary. + + + + + Trying to restore graphic state more times than it was saved. + + + + + Transformation matrix is not invertible. + + + + + Can't read operand (real number) on index %1. Operand is of type '%2'. + + + + + Can't read operand (real number) on index %1. Only %2 operands provided. + + + + + Can't read operand (integer) on index %1. Operand is of type '%2'. + + + + + Can't read operand (integer) on index %1. Only %2 operands provided. + + + + + Can't read operand (name) on index %1. Operand is of type '%2'. + + + + + Can't read operand (name) on index %1. Only %2 operands provided. + + + + + Can't read operand (string) on index %1. Operand is of type '%2'. + + + + + Can't read operand (string) on index %1. Only %2 operands provided. + + + + + + + Invalid color component count. Provided %1, required %2. + + + + + + + + Invalid pattern for Pattern color space. + + + + + Text object already started. + + + + + Text object ended more than once. + + + + + Font '%1' not found in font dictionary. + + + + + Invalid font dictionary. + + + + + + + + + Invalid font, text can't be printed. + + + + + Invalid parameters of text operator with individual character spacing. + + + + + Invalid operand of text show operator. + + + + + Shading '%1' not found. + + + + + Invalid color space of the image. + + + + + Can't decode the image. + + + + + Color operators are not allowed in uncolored tilling pattern. + + + + + Reference to optional content expected. + + + + + Form of type %1 not supported. + + + + + Unknown XObject type '%1'. + + + + + Invalid format of XObject. Dictionary expected. + + + + + XObject resource dictionary not found. + + + + + Mismatched begin/end of marked content. + + + + + Compatibility operator begin/end mismatch. + + + + + Type 3 font matrix is not invertible. + + + + + Invalid stroking color. + + + + + Invalid filling color. + + + + + Invalid soft mask transfer function. + + + + + Blend mode '%1' not supported. + + + + + Blend mode '%1' is in transparency group, which is not supported. + + + + + Soft masks not supported. + + + + + + + + Invalid number of operands for function. Expected %1, provided %2. + + + + + + + + Invalid number of output variables for function. Expected %1, provided %2. + + + + + Invalid number of operands for identity function. Expected %1, provided %2. + + + + + Invalid instruction pointer. + + + + + + + Division by zero (PostScript engine). + + + + + Number expected for ceil function (PostScript engine). + + + + + Number expected for floor function (PostScript engine). + + + + + Number expected for round function (PostScript engine). + + + + + Number expected for truncate function (PostScript engine). + + + + + Square root of negative value can't be computed (PostScript engine). + + + + + Logarithm's input should be positive value (PostScript engine). + + + + + Logarithm's input should be positive value (PostScript engine). + + + + + Real value expected for conversion to integer (PostScript engine). + + + + + Integer value expected for conversion to real (PostScript engine). + + + + + Can't copy negative number of arguments (PostScript engine). + + + + + Negative index of operand (PostScript engine). + + + + + Negative number of operands (PostScript engine). + + + + + Call stack underflow (PostScript engine). + + + + + Real value expected (PostScript engine). + + + + + Integer value expected (PostScript engine). + + + + + Boolean value expected (PostScript engine). + + + + + Instruction pointer expected (PostScript engine). + + + + + Number expected (PostScript engine). + + + + + Stack overflow occured (PostScript engine). + + + + + Stack underflow occured (PostScript engine). + + + + + Invalid operator (PostScript function) '%1'. + + + + + Invalid program - bad enclosing brackets (PostScript function). + + + + + Invalid program (PostScript function). + + + + + Empty program (PostScript function). + + + + + Stack contains more values, than output size (%1 remains) (PostScript function). + + + + + + Inexact font substitution: font %1 replaced by %2 using font family %3. + + + + + Inexact font substitution: font %1 replaced by %2. + + + + + FontConfig error building pattern for font %1 + + + + + Inexact font substitution: font %1 replaced by standard font Times New Roman. + + + + + Fontconfig error + + + + + Glyph for simple font character code '%1' not found. + + + + + Glyph for composite font character with cid '%1' not found. + + + + + Details + + + + + Font + + + + + Style + + + + + Yes + + + + + No + + + + + Glyph count + + + + + Is CID keyed + + + + + Is bold + + + + + Is italics + + + + + Has vertical writing system + + + + + Has SFNT storage scheme + + + + + Has glyph names + + + + + + Encoding + + + + + None + + + + + Unicode + + + + + MS Symbol + + + + + Japanese Shift JIS + + + + + PRC - Simplified Chinese + + + + + Traditional Chinese + + + + + Korean Extended Wansung + + + + + Korean Standard + + + + + Adobe Standard + + + + + Adobe Expert + + + + + Adobe Custom + + + + + Adobe Latin 1 + + + + + Old Latin 1 + + + + + Apple Roman + + + + + Platform/Encoding = %1 %2 + + + + + FreeType error code %1: %2 + + + + + Can't load system font '%1'. + + + + + Invalid font encoding. + + + + + Font object must be a dictionary. + + + + + Invalid font type. + + + + + + + Invalid differences in encoding entry of the font. + + + + + + Invalid encoding entry of the font. + + + + + Invalid CMAP in CID-keyed font. + + + + + + Invalid descendant font in CID-keyed font. + + + + + Invalid number (%1) of descendant fonts in CID-keyed font - exactly one is required. + + + + + Invalid Type 3 font matrix. + + + + + Invalid Type 3 font character content streams. + + + + + Invalid Type 3 font character range (from %1 to %2). + + + + + + Invalid Type 3 font encoding. + + + + + + Invalid differences in encoding entry of type 3 font. + + + + + Standard + + + + + Mac Roman + + + + + Win Ansi + + + + + PDF Doc + + + + + Mac Expert + + + + + + Symbol + + + + + + Zapf Dingbats + + + + + Mac OS Roman + + + + + Custom + + + + + Times Roman + + + + + Helvetica + + + + + Courier + + + + + Standard font + + + + + Can't load CID font mapping named '%1'. + + + + + Can't fetch code from CMap definition. + + + + + Can't fetch CID from CMap definition. + + + + + Can't use cmap inside cmap file. + + + + + Character count + + + + + Content stream for type 3 font character code '%1' not found. + + + + + Image has not data. + + + + + Soft mask image can't have mask / soft mask itself. + + + + + Regular image can't have Matte entry (used for soft masks). + + + + + Invalid mask image. + + + + + Invalid soft mask object. + + + + + Malformed data while reading JPEG stream. %1 bytes skipped. + + + + + Error reading JPEG (DCT) image: %1. + + + + + JPEG 2000 Warning: %1 + + + + + JPEG 2000 Error: %1 + + + + + Unknown color space for JPEG 2000 image. + + + + + JPEG 2000 image has too much non-alpha channels. Ignoring %1 channels. + + + + + JPEG 2000 image has too much alpha channels. Ignoring %1 alpha channels. + + + + + Incompatible color components for JPEG 2000 image. + + + + + Invalid parameters for filter CCITT fax decode. + + + + + Invalid number of bits per component (%1). + + + + + Invalid XML text. + + + + + Error during converting text to font encoding. Some characters were not converted: '%1'. + + + + + Text font not defined! + + + + + Invalid rendering mode '%1'. Valid values are 0-7. + + + + + + + + + + + + Cannot convert text '%1' to number. + + + + + Text font command requires two attributes - font and size. + + + + + Text translation command requires two attributes - x and y. + + + + + Invalid text matrix parameters. + + + + + Set text matrix command requires six elements - m11, m12, m21, m22, x, y. + + + + + Invalid command '%1'. + + + + + Font '%1' is invalid. + + + + + Info + + + + + %1 (%2 replies) + + + + + #%1: %2 + + + + + Rounded rectangle + + + + + Rectangle + + + + + SVG image + + + + + Dot + + + + + Freehand curve + + + + + Text box '%1' + + + + + Image + + + + + Path + + + + + Compile time: %1 [ms] + + + + + Draw time: %1 [ms] + + + + + Precompiled page size is too high (%1 kB). Cache size is %2 kB. Increase the cache size! + + + + + pdf::PDFWidgetAnnotationManager + + + Annotation + + + + + Show Popup Window + + + + + Copy to Multiple Pages + + + + + Edit + + + + + Delete + + + + + Copy Annotation + + + + + Copy Annotation onto Multiple Pages + + + + + pdf::PDFXRefTable + + + + + + + Invalid format of reference table. + + + + + + + Bad format of reference table entry. + + + + + Trailer dictionary is invalid. + + + + + Offset of previous reference table is invalid. + + + + + + + Invalid format of cross-reference stream. + + + + + Invalid format of cross-reference stream - not enough data in the stream. + + + + + pdfdiff::DifferencesDockWidget + + + Differen&ces + + + + + %1 Differences (+%2 hidden) + + + + + %1 Differences + + + + + Page %1 + + + + + Left %1 + + + + + Right %1 + + + + + No Differences Found! + + + + + pdfdiff::DifferencesDrawInterface + + + Difference + + + + + pdfdiff::MainWindow + + + &Main + + + + + &Differences + + + + + &View + + + + + + + + + Error + Chyba + + + + Info + + + + + No differences found between the compared documents. + + + + + + Select PDF document + + + + + XML file (*.xml) + + + + + File '%1' cannot be opened. %2 + + + + + Save results to XML + + + + + Displayed results are empty. Cannot save empty results. + + + + + Save As + + + + + Portable Document (*.pdf);;All files (*.*) + + + + + PDF document (*.pdf) + + + + + Encrypted document + + + + + Enter password to access document content + + + + + pdfdiff::PDFAboutDialog + + + Library + Knihovna + + + + Version + Verze + + + + License + Licence + + + + URL + Odkaz + + + + pdfdiff::SettingsDockWidget + + + S&ettings + + + + + pdfpagemaster::AssembleOutputSettingsDialog + + + No Outline + + + + + Join Outlines + + + + + Document Parts + + + + + Select output directory + + + + + pdfpagemaster::MainWindow + + + &Main + + + + + &Insert + + + + + &Select + + + + + &Regroup + + + + + &Zoom + + + + + Ma&ke + + + + + + Select PDF document(s) + + + + + + + PDF document (*.pdf) + + + + + Select + + + + + Regroup + + + + + Encrypted document + + + + + Enter password to access document '%1' + + + + + + + + + + Error + Chyba + + + + Document security doesn't permit to organize pages. + + + + + No documents to assemble. + + + + + Document with given filename already exists. + + + + + Images (*.%1) + + + + + Select Image(s) + + + + + Select PDF document + + + + + pdfpagemaster::PDFAboutDialog + + + Library + Knihovna + + + + Version + Verze + + + + License + Licence + + + + URL + Odkaz + + + + pdfpagemaster::PageItemModel + + + Page Group + + + + + Document collection + + + + + Page Count: %1 + + + + + Image + + + + + Images + Obrázky + + + + Blank Page + + + + + Blank Pages + + + + + #BBBB00@Collection + + + + + #D98335@Blank + + + + + #24A5EA@Image + + + + + pdfpagemaster::SelectOutlineToRegroupDialog + + + Select All + + + + + Deselect All + + + + + Invert Selection + + + + + Select Level 1 + + + + + Select Level 2 + + + + + Select subtree + + + + + Deselect subtree + + + + + pdfplugin::AudioBookCreator + + + No suitable voice found. + + + + + + Cannot create output stream '%1'. + + + + + Cannot create voice. + + + + + Failed to set requested voice. + + + + + Audio book plugin is unsupported on your system. + + + + + pdfplugin::AudioBookPlugin + + + &Create Text Stream for Audio Book + + + + + Synchronize Selection from &Table to Graphics + + + + + Synchronize Selection from &Graphics to Table + + + + + &Activate Selection + + + + + &Deactivate Selection + + + + + Select by &Rectangle + + + + + Select by Contained &Text + + + + + Select by Regular &Expression + + + + + Select by Page &List + + + + + Restore &Original Text + + + + + Move Selection &Up + + + + + Move Selection &Down + + + + + Create Audio &Book + + + + + Clear Te&xt Stream + + + + + &Audio Book + + + + + + + + + + Error + Chyba + + + + Cannot select items by text, because text is empty. + + + + + Regular expression is not valid. %1 + + + + + Cannot select items by regular expression, because regular expression definition is empty. + + + + + Cannot select items by page indices, because page indices are invalid. %1 + + + + + Cannot select items by page indices, because page indices are empty. + + + + + Question + + + + + Restore original texts in selected items? All changes will be lost. + + + + + Select Audio File + + + + + Audio stream (*.mp3) + + + + + Audio book creator cannot be initialized. + + + + + pdfplugin::AudioTextStreamEditorDockWidget + + + Audio Book Actions + + + + + pdfplugin::CreateRedactedDocumentDialog + + + File Name + + + + + Error + Chyba + + + + Cannot convert '%1' to color value. + + + + + pdfplugin::DimensionsPlugin + + + &Horizontal Dimension + + + + + &Vertical Dimension + + + + + &Linear Dimension + + + + + &Perimeter + + + + + &Rectangle Perimeter + + + + + &Area + + + + + R&ectangle Area + + + + + An&gle + + + + + &Show Dimensions + + + + + &Clear Dimensions + + + + + Se&ttings + + + + + &Dimensions + + + + + A = %1 %2 + + + + + p = %1 %2 + + + + + pdfplugin::EditorPlugin + + + &Edit page content + + + + + Create &Text Label + + + + + Create &Freehand Curve + + + + + Create &Accept Mark + + + + + Create &Reject Mark + + + + + Create R&ectangle + + + + + &Create Rounded Rectangle + + + + + Create &Horizontal Line + + + + + Create &Vertical Line + + + + + Create L&ine + + + + + Create &Dot + + + + + Create &SVG Image + + + + + Clear A&ll Graphics + + + + + Ed&itor + + + + + Errors (%2) occured while creating content stream on page %3.<br>%1 + + + + + Error + Chyba + + + + Confirm Changes + + + + + The changes to the page content will be written to the document. Do you want to continue? + + + + + Editor Toolbox + + + + + pdfplugin::InkCoverageStatisticsModel + + + Total + + + + + Page Index + + + + + [ mm² ] + + + + + [ % ] + + + + + pdfplugin::ObjectInspectorDialog + + + Document + + + + + Pages + + + + + Content streams + + + + + Graphic states + + + + + Color spaces + + + + + Patterns + + + + + Shadings + + + + + Images + Obrázky + + + + Forms + + + + + Fonts + + + + + Actions + + + + + Annotations + + + + + Object List + + + + + pdfplugin::ObjectInspectorPlugin + + + Object &Inspector + + + + + Object &Statistics + + + + + O&bject Inspector + + + + + pdfplugin::ObjectStatisticsDialog + + + Statistics by Object Function + + + + + + Statistics by Object Type + + + + + Statistics by Object Class + + + + + Class + + + + + + Percentage [%] + + + + + + Count [#] + + + + + Space Usage [bytes] + + + + + Page + Stránka + + + + Content Stream + + + + + Graphic State + + + + + Color Space + + + + + Pattern + + + + + Shading + + + + + Image + + + + + Form + Formulář + + + + Font + + + + + Action + + + + + Annotation + + + + + Other + + + + + Type + + + + + pdfplugin::ObjectViewerWidget + + + + %1 %2 R + + + + + Part of object %1 + + + + + <none> + + + + + Null + + + + + Bool + + + + + Integer + + + + + Real + + + + + String + + + + + Name + + + + + Array + + + + + Dictionary + + + + + Stream + + + + + Reference + + + + + null + + + + + true + + + + + false + + + + + Array [%1 items] + + + + + Dictionary [%1 items] + + + + + Stream [%1 items, %2 data bytes] + + + + + Invalid color space of the image. + + + + + Image Stream [%1 items, %2 data bytes, %3 x %4 pixels, %5 bits per component] + + + + + [Unknown] + + + + + %1 (part) + + + + + pdfplugin::OutputPreviewDialog + + + Separations + + + + + Color Warnings | Ink Coverage + + + + + Color Warnings | Rich Black + + + + + Ink Coverage + Pokrytí inkoustem + + + + Shape Channel + + + + + Opacity Channel + + + + + Process Inks + + + + + Spot Inks + + + + + pdfplugin::OutputPreviewPlugin + + + &Output Preview + + + + + &Ink Coverage + + + + + Output Previe&w + + + + + pdfplugin::OutputPreviewWidget + + + Distribution + + + + + Process Inks + + + + + Spot Inks + + + + + Warning | Ink Coverage + + + + + + OK + + + + + + Failure + + + + + Warning | Rich Black + + + + + Ink Coverage + Pokrytí inkoustem + + + + Shape/Opacity + + + + + Sample Color + + + + + pdfplugin::PDFObjectInspectorTreeItemModel + + + null + + + + + true + + + + + false + + + + + Array [%1 items] + + + + + Dictionary [%1 items] + + + + + Stream [%1 items, %2 data bytes] + + + + + pdfplugin::RedactPlugin + + + Redact &Rectangle + + + + + Redact &Text + + + + + Redact Text &Selection + + + + + Redact &Page(s) + + + + + Create Redacted &Document + + + + + Redac&t + + + + + Information + + + + + Select text via 'Advanced Search' tool, and then redact it using this tool. Select rows in 'Result' table to select particular results. + + + + + Redact Pages + + + + + Page Range to be Redacted + + + + + Error + Chyba + + + + pdfplugin::SignDialog + + + Sign digitally + + + + + Sign digitally (invisible signature) + + + + + + Error + Chyba + + + + Certificate does not exist. + + + + + Password to open certificate is invalid. + + + + + pdfplugin::SignaturePlugin + + + &Activate signature creator + + + + + Create &Text Label + + + + + Create &Freehand Curve + + + + + Create &Accept Mark + + + + + Create Reject &Mark + + + + + Create &Rectangle + + + + + Create R&ounded Rectangle + + + + + Create &Horizontal Line + + + + + Create &Vertical Line + + + + + Create &Line + + + + + Create &Dot + + + + + Create SVG &Image + + + + + Clear All &Graphics + + + + + Sign &Electronically + + + + + Sign Digitally &With Certificate + + + + + Certificates &Manager + + + + + Si&gnature + + + + + Confirm Signature + + + + + Document will be signed electronically. Do you want to continue? + + + + + + + Error + Chyba + + + + + + Failed to create digital signature. + + + + + Save Signed Document + + + + + Portable Document (*.pdf);;All files (*.*) + + + + + Signature Toolbox + + + + + pdfplugin::SoftProofingPlugin + + + &Soft Proofing + + + + + &Gamut Checking + + + + + Soft &Proofing Settings + + + + + Soft &Proofing + + + + + pdfviewer::ImagePreviewDelegate + + + Toggle this icon to switch image conversion to bitonal format on or off. + + + + + pdfviewer::PDFAboutDialog + + + Library + Knihovna + + + + Version + Verze + + + + License + Licence + + + + URL + Odkaz + + + + pdfviewer::PDFActionComboBox + + + Find action... + + + + + pdfviewer::PDFAdvancedFindWidget + + + Page No. + + + + + Phrase + + + + + Context + + + + + Search error + + + + + Search phrase regular expression has error '%1' near symbol %2. + + + + + Results (%1) + + + + + Results + Výsledky + + + + pdfviewer::PDFBookmarkItemDelegate + + + Page %1 | Generated + + + + + Page %1 + + + + + pdfviewer::PDFBookmarkManager + + + User bookmark for page %1 + + + + + pdfviewer::PDFCreateBitonalDocumentDialog + + + ORIGINAL + + + + + BITONAL + + + + + Perform + + + + + Converting images... + + + + + pdfviewer::PDFDocumentPropertiesDialog + + + Properties + + + + + PDF version + + + + + Title + + + + + Subject + + + + + Author + + + + + Keywords + + + + + Creator + + + + + Producer + + + + + Creation date + + + + + + Modified date + + + + + + + + + + Yes + + + + + + + + + + No + + + + + Unknown + + + + + Content + + + + + Page count + + + + + Paper format + + + + + Paper size + + + + + Trapped + + + + + Custom properties + + + + + File information + + + + + Name + + + + + Directory + + + + + Writable + + + + + Size + + + + + Created date + + + + + Last read date + + + + + Security + + + + + + + None + + + + + Standard + + + + + Public Key + + + + + Custom + + + + + No authorization required + + + + + Authorized as owner + + + + + Authorized as user + + + + + Document encryption + + + + + Authorized as + + + + + Metadata encrypted + + + + + Version + Verze + + + + Permissions + + + + + Print (low resolution) + + + + + Print (high resolution) + + + + + Content extraction + + + + + Content extraction (accessibility) + + + + + Page assembling + + + + + Modify content + + + + + Modify interactive items + + + + + Fill form fields + + + + + TrueType + + + + + Type0 (CID keyed) + + + + + Type1 (8 bit keyed) + + + + + MMType1 (8 bit keyed) + + + + + Type3 (content streams for font glyphs) + + + + + Type + + + + + Font family + + + + + Embedded subset + + + + + Viewer settings + + + + + Default printer settings + + + + + Single page + + + + + Continuous column + + + + + Two continuous columns + + + + + Two pages + + + + + Default + + + + + Show outlines + + + + + Show thumbnails + + + + + Fullscreen + + + + + Show optional content + + + + + Show attachments + + + + + Left to right + + + + + Right to left + + + + + Page layout + + + + + View mode + + + + + Writing direction + + + + + Application default + + + + + Scale + + + + + Simplex + + + + + + Duplex (flip long edge) + + + + + Duplex mode + + + + + Pick tray by page size + + + + + Default print page ranges + + + + + Number of copies + + + + + pdfviewer::PDFEditorMainWindow + + + Standard + + + + + % + + + + + &Sidebar + + + + + Advanced find + + + + + Ad&vanced Find... + + + + + / %1 + + + + + pdfviewer::PDFEncryptionSettingsDialog + + + None + + + + + RC4 128-bit | R4 + + + + + AES 128-bit | R4 + + + + + AES 256-bit | R6 + + + + + Certificate Encryption + + + + + Error + Chyba + + + + pdfviewer::PDFEncryptionStrengthHintWidget + + + Very weak + + + + + Weak + + + + + Moderate + + + + + Strong + + + + + Very strong + + + + + pdfviewer::PDFOptimizeDocumentDialog + + + Embed (dereference) simple objects, such as int, bool, real + + + + + Remove null objects from dictionary entries + + + + + Remove unused objects (objects unreachable from document root object) + + + + + Merge identical objects + + + + + Shrink object storage (squeeze free entries) + + + + + Recompress flate streams by maximal compression + + + + + Optimize + + + + + Optimization started! + + + + + Optimization finished! + + + + + Optimized in %1 msecs + + + + + Bytes before optimization: %1 + + + + + Bytes after optimization: %1 + + + + + Bytes saved by optimization: %1 + + + + + Compression ratio: %1 % + + + + + pdfviewer::PDFProgramController + + + Printing document + + + + + Go to action + + + + + Failed to go to destination '%1'. Destination wasn't found. + + + + + Would you like to launch application '%1' in working directory '%2' with parameters '%3'? + + + + + + + + Launch application + + + + + + Executing application failed. Error code is %1. + + + + + Would you like to launch application '%1'? + + + + + Would you like to open URL '%1'? + + + + + + Open URL + + + + + Opening url '%1' failed. + + + + + Save As + + + + + Portable Document (*.pdf);;All files (*.*) + + + + + + Error + Chyba + + + + Save Document + + + + + Do you wish to save modified document before it is closed? + + + + + Error while starting email client occured! + + + + + Permission to change document security is denied. + + + + + Failed to create security handler. + + + + + + Reauthorization is required to change document encryption. + + + + + Encrypted document + + + + + Enter password to access document content + + + + + Document '%1' was successfully loaded! + + + + + Document read error: %1 + + + + + %1 - %2 + + + + + + Reset Settings + + + + + Do you wish to restore the default factory settings of the program? All settings changed by the user will be deleted. Application will be closed. + + + + + Default factory settings were restored. Application will be now closed. + + + + + Plugins + + + + + Plugin on/off state has been changed. Please restart application to apply settings. + + + + + + Select PDF document + + + + + PDF document (*.pdf) + + + + + Export Bookmarks As + + + + + JSON (*.json);;All files (*.*) + + + + + JSON (*.json) + + + + + Rendering of page %1: %2 errors occured. + + + + + pdfviewer::PDFRecentFileManager + + + (&%1) %2 + + + + + Recent file dummy &%1 + + + + + pdfviewer::PDFRenderToImagesDialog + + + %1 +Page %2: %3 + + + + + Select output directory + + + + + Cannot write page image to file '%1', because: %2. + + + + + Error + Chyba + + + + pdfviewer::PDFSanitizeDocumentDialog + + + Remove document info + + + + + Remove all metadata + + + + + Remove outline + + + + + Remove file attachments + + + + + Remove embedded search index + + + + + Remove comments and other markup annotations + + + + + Remove page thumbnails + + + + + Sanitize + + + + + Sanitization started! + + + + + Sanitization finished! + + + + + Sanitized in %1 msecs + + + + + Bytes before sanitization: %1 + + + + + Bytes after sanitization: %1 + + + + + Bytes saved by sanitization: %1 + + + + + Compression ratio: %1 % + + + + + pdfviewer::PDFSidebarWidget + + + + + + + Error + Chyba + + + + Speech feature is unavailable. No speech engines detected. If you're using Linux, please install speech libraries like 'flite' or 'speechd'. + + + + + The speech feature is available, but its options are not properly set. Please check the speech settings in the options dialog. + + + + + Signature - %1 + + + + + Timestamp - %1 + + + + + Unknown + + + + + Certificate is valid. + + + + + Signature is valid. + + + + + Hash algorithm: %1 + + + + + Certificate validation chain + + + + + Protected by RSA method, %1-bit key + + + + + Protected by DSA method, %1-bit key + + + + + Protected by EC method, %1-bit key + + + + + Protected by DH method, %1-bit key + + + + + Unknown protection method, %1-bit key + + + + + Country + + + + + Organization + + + + + Org. unit + + + + + Name + + + + + State + + + + + Serial number + + + + + Locality + + + + + Title + + + + + Surname + + + + + Forename + + + + + Initials + + + + + Pseudonym + + + + + Qualifier + + + + + Email + + + + + Digital signatures + + + + + Non-repudiation + + + + + Key encipherement + + + + + Application data encipherement + + + + + Key agreement + + + + + Verify signatures on certificates + + + + + Verify signatures on revocation information + + + + + Encipher data during key agreement + + + + + Decipher data during key agreement + + + + + Trusted timestamping + + + + + Key usages + + + + + User + + + + + Page %1 + + + + + Save to File... + + + + + Save attachment + + + + + + Failed to save attachment to file. %1 + + + + + Failed to save attachment to file. Attachment is corrupted. + + + + + Add to trusted certificates + + + + + Add to Trusted Certificate Store + + + + + Are you sure want to add '%1' to the trusted certificate store? + + + + + Trusted Certificate Store Error + + + + + Failed to add certificate to the trusted certificate store. + + + + + Follow + + + + + Delete + + + + + Insert + + + + + Rename + + + + + Font Bold + + + + + Font Italic + + + + + Set Target + + + + + Select Named Destination + + + + + OK + + + + + Cancel + + + + + Named Destination + + + + + Fit Page + + + + + Fit Page Horizontally + + + + + Fit Page Vertically + + + + + Fit Rectangle + + + + + Fit Bounding Box + + + + + Fit Bounding Box Horizontally + + + + + Fit Bounding Box Vertically + + + + + XYZ + + + + + pdfviewer::PDFViewerMainWindow + + + Standard + + + + + % + + + + + &Sidebar + + + + + / %1 + + + + + pdfviewer::PDFViewerSettingsDialog + + + Engine + + + + + Rendering + + + + + Shading + + + + + Cache + + + + + Shortcuts + Zkratky + + + + Colors | CMS + + + + + Colors | Postprocessing + + + + + Security + + + + + UI + + + + + Speech + Číst nahlas + + + + Forms + + + + + Signature + + + + + Plugins + + + + + Software | QPainter + + + + + Software | Blend2D | Parallel + + + + + Software | Blend2D | Sequential + + + + + Single thread + + + + + Multithreading (load balanced) + + + + + Multithreading (maximum threads) + + + + + Auto + + + + + Perceptual + + + + + Relative colorimetric + + + + + Absolute colorimetric + + + + + Saturation + + + + + Low + + + + + Medium + + + + + High + + + + + None + + + + + XYZ scaling + + + + + CAT97 matrix + + + + + CAT02 matrix + + + + + Bradford method + + + + + Automatic (or via command line) + + + + + Light scheme + + + + + Dark scheme + + + + + Type + + + + + Certificate + + + + + Organization + + + + + Valid from + + + + + Valid to + + + + + User + + + + + System + + + + + Action + + + + + Shortcut + + + + + Error + Chyba + + + + Shortcut '%1' is invalid for action %2. + + + + + Active + + + + + Name + + + + + Author + + + + + Version + Verze + + + + License + Licence + + + + Select color profile directory + + + + diff --git a/translations/PDF4QT_de.ts b/translations/PDF4QT_de.ts new file mode 100644 index 0000000..e96b2d1 --- /dev/null +++ b/translations/PDF4QT_de.ts @@ -0,0 +1,14569 @@ + + + + + Application + + + PDF4QT Editor + + + + + PDF4QT Viewer + + + + + PDF4QT PageMaster + + + + + PDF4QT Diff + + + + + PDF4QT LaunchPad + + + + + AssembleOutputSettingsDialog + + + + Assemble Documents + + + + + ... + + + + + File template + + + + + <html><head/><body><p>In a template file name, you can use symbols '#' for output document number (means output document index, not input document) or '@' for page number of input document (if document contains more pages, it is a page number of a original document), or '%' for index of input document. Use more '#' or '@' or '%' for setting minimal number of digits (if number has less digits, the they are padded with zero).</p></body></html> + + + + + Overwrite existing files + + + + + doc-#.pdf + + + + + Generate into directory + + + + + Outline Mode + + + + + AudioTextStreamEditorDockWidget + + + Text Stream for Audio Book + + + + + CreateRedactedDocumentDialog + + + Create Redacted Document + + + + + Redacted document + + + + + Output file name + + + + + ... + + + + + Appearance + + + + + Fill redacted area with color: + + + + + Options + + + + + Copy document title into redacted document + + + + + Copy document metadata into redacted document + + + + + Copy outline into redacted document + + + + + DifferencesDockWidget + + + Differences + + + + + DimensionTool + + + pt + + + + + in + + + + + mm + + + + + cm + + + + + sq. pt + + + + + sq. in + + + + + sq. mm + + + + + sq. cm + + + + + ° + + + + + rad + + + + + GeneratorMainWindow + + + Code Generator + + + + + Remove + + + + + Clone + + + + + New + + + + + Parameters + + + + + Data type + + + + + Value + + + + + Item type + + + + + Name + + + + + Text description / C++ code + + + + + Delete + + + + + Up + + + + + Down + + + + + New Child + + + + + New Sibling + + + + + File + + + + + Code + + + + + XFA + + + + + Load + + + + + Ctrl+O + + + + + Save + + + + + Ctrl+S + + + + + Save As... + + + + + Set code header (*.h) + + + + + Set code source (*.cpp) + + + + + Generate code + + + + + Ctrl+G + + + + + Set code header XFA + + + + + Set code source XFA + + + + + Generate XFA code + + + + + Set XFA description + + + + + + Select XML definition file + + + + + Create function + + + + + Enter function name + + + + + + Select cpp header + + + + + + Select cpp source + + + + + Select xml definition + + + + + InkCoverageDialog + + + Ink Coverage Calculator + + + + + Ink Coverage + + + + + LaunchApplicationWidget + + + Form + + + + + Title + + + + + TextLabel + + + + + LaunchDialog + + + Launch Application + + + + + Editor + + + + + Viewer + + + + + Diff + + + + + PageMaster + + + + + Go beyond basic browsing. This tool packs a punch with a host of advanced features, including encryption, document reading, digital signature verification, annotation editing, and even support for searching text using regular expressions. Turn pages into images, and enhance your PDF interactions with multiple available plugins. + + + + + Simplify your viewing experience. This lightweight viewer offers essential viewing functions in a clean, user-friendly interface. + + + + + Spot differences effortlessly. This tool allows users to open two documents and receive a detailed list of differences. View these differences in a page-to-page window where they are clearly marked. Save these differences into an XML file for future reference. + + + + + Take control of your documents. Manage whole documents or individual pages with ease. Merge documents into a single file, or split them into multiple ones. You can also move, clone, or add pages with a few clicks, all within an intuitive user interface. + + + + + Error + + + + + Failed to start process '%1' + + + + + MainWindow + + + JBIG2 Image Viewer + + + + + Images + + + + + File + + + + + Add image + + + + + + Ctrl+O + + + + + Clear + + + + + + Ctrl+W + + + + + Add JBIG2 image + + + + + Ctrl+J + + + + + + + Error + + + + + + Open image + + + + + + Workspace + + + + + + &File + + + + + &Edit + + + + + &Insert + + + + + + + &View + + + + + &Make + + + + + + &Help + + + + + + &Toolbars + + + + + &Regroup + + + + + &Add Documents... + + + + + Add Documents + + + + + C&lose + + + + + Alt+F4 + + + + + Clone &Selection + + + + + Ctrl+L + + + + + Re&move Selection + + + + + Del + + + + + Restore Removed &Items + + + + + Ctrl+Shift+R + + + + + Insert &PDF + + + + + Insert PDF + + + + + Ctrl+I + + + + + &Insert Image + + + + + Ctrl+Alt+I + + + + + Insert &Empty Page + + + + + Ctrl+Shift+I + + + + + Cu&t + + + + + Ctrl+X + + + + + &Copy + + + + + Ctrl+C + + + + + &Paste + + + + + Ctrl+V + + + + + Repl&ace Selection + + + + + Ctrl+Alt+R + + + + + Select &None + + + + + Ctrl+N + + + + + Select &All + + + + + Ctrl+A + + + + + Select &Even + + + + + F9 + + + + + Select &Odd + + + + + F10 + + + + + Select &Portrait + + + + + F11 + + + + + Select &Landscape + + + + + F12 + + + + + Rotate &Right + + + + + F4 + + + + + Rotate &Left + + + + + Shift+F4 + + + + + &Zoom In + + + + + Ctrl++ + + + + + Zoo&m Out + + + + + Ctrl+- + + + + + + &Get Source + + + + + + &About... + + + + + + F1 + + + + + &United Document... + + + + + + F5 + + + + + &Separate to Multiple Documents... + + + + + + F6 + + + + + Separate to Multiple Documents (&Grouped)... + + + + + F7 + + + + + &Group + + + + + Ctrl+G + + + + + U&ngroup + + + + + Ctrl+Shift+G + + + + + &Clear + + + + + Regroup by &Even/Odd Pages + + + + + Regroup by Re&verse + + + + + Regroup by &Page Pairs + + + + + Regroup by &Outline + + + + + Regroup by &Alternating Pages + + + + + Regroup by Alternating Pages (&Reversed Order) + + + + + &Invert Selection + + + + + &Undo + + + + + Ctrl+Z + + + + + Re&do + + + + + Ctrl+Y + + + + + &Prepare Icon Theme + + + + + + Become a &Sponsor + + + + + + &Compare + + + + + &Filter + + + + + Open &Left... + + + + + Open &Right... + + + + + &Close + + + + + Ctrl+F4 + + + + + &Previous Difference + + + + + Shift+F6 + + + + + &Next Difference + + + + + Create Compare &Report... + + + + + Filter &Text + + + + + Filter &Vector Graphics + + + + + Filter &Images + + + + + Filter &Shading + + + + + Filter &Page Movement + + + + + View &Differences + + + + + View &Left + + + + + View &Right + + + + + View &Overlay + + + + + &Show Pages with Differences + + + + + Show Pages with Differences + + + + + Save Differences to &XML... + + + + + S&ynchronize View with Differences + + + + + Display &Differences + + + + + Display &Markers + + + + + ObjectInspectorDialog + + + Object Inspector + + + + + Objects + + + + + Current Object + + + + + ObjectStatisticsDialog + + + Object Statistics + + + + + ObjectViewerWidget + + + Form + + + + + Pin + + + + + Unpin + + + + + Information + + + + + Reference + + + + + Type + + + + + Description + + + + + Contents + + + + + OutputPreviewDialog + + + Output Preview + + + + + Settings + + + + + Red + + + + + Blue + + + + + Green + + + + + Simulate separations + + + + + Simulate paper color + + + + + Display + + + + + Images + + + + + Text + + + + + Vector graphics + + + + + Shading patterns + + + + + Tiling patterns + + + + + Ctrl+S + + + + + Color Warnings + + + + + Alarm color + + + + + + % + + + + + Coverage limit + + + + + Select + + + + + Rich black limit + + + + + Inks + + + + + PDFAboutDialog + + + + + About + + + + + + + <html><head/><body><p><span style=" font-weight:600;">PdfForQtViewer</span></p><p>Copyright 2018-2025 Jakub Melka. All rights reserved.</p><p>THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p></body></html> + + + + + + + Used libraries + + + + + PDFAdvancedFindWidget + + + Form + + + + + Search for + + + + + Search Settings + + + + + Search + + + + + Whole words only + + + + + Remove soft hyphen at end of line + + + + + Search for: + + + + + Case sensitive + + + + + Use regular expressions + + + + + Clear + + + + + Regular Expression Settings + + + + + Dot matches everything (including newline characters) + + + + + Multiline matching (enables search using '^' and '$' to mark line beginnings/endings) + + + + + Results + + + + + PDFCertificateManagerDialog + + + Certificate Manager + + + + + Certificates + + + + + PDFCreateBitonalDocumentDialog + + + Create Bitonal Document + + + + + Color to Bitonal Conversion Options + + + + + Automatic (Otsu's 1D method) + + + + + User-Defined Intensity Threshold (0-255): + + + + + PDFCreateCertificateDialog + + + Create Certificate + + + + + Create Self Signed Certificate + + + + + Name + + + + + Organization + + + + + Organization Unit + + + + + Email + + + + + Country + + + + + Key length + + + + + Valid till + + + + + Certificate file + + + + + PDFDocumentPropertiesDialog + + + Document Properties + + + + + + Properties + + + + + File Information + + + + + + Security + + + + + + Fonts + + + + + Display && Print + + + + + Display && Print Settings + + + + + PDFEditorMainWindow + + + PDF Editor + + + + + &File + + + + + &Go To + + + + + Book&mark Settings + + + + + &View + + + + + Page La&yout + + + + + Re&ndering Options + + + + + &Tools + + + + + + &Help + + + + + &Developer + + + + + &Edit + + + + + + &Insert + + + + + Sticky &Note + + + + + &Stamp + + + + + Text Hi&ghlight + + + + + &Open... + + + + + &Close + + + + + &Quit + + + + + &Single Page + + + + + Single Page + + + + + Ctrl+1 + + + + + &Continuous + + + + + Continuous + + + + + Ctrl+2 + + + + + Two &Pages + + + + + Two Pages + + + + + Ctrl+3 + + + + + &Two columns + + + + + Two columns + + + + + Ctrl+4 + + + + + &First page on right side + + + + + First page on right side + + + + + Ctrl+5 + + + + + &Rendering Errors... + + + + + Ctrl+E + + + + + &Antialiasing + + + + + Antialiasing + + + + + &Text Antialiasing + + + + + Text Antialiasing + + + + + &Smooth Pictures + + + + + Smooth Pictures + + + + + &Ignore Optional Content Settings + + + + + Ignore Optional Content Settings + + + + + &Options... + + + + + Ctrl+K + + + + + Reset to &Factory Settings + + + + + &Zoom In + + + + + Zoom &Out + + + + + &About... + + + + + Fit &Page + + + + + Fit &Width + + + + + W + + + + + &Fit Height + + + + + H + + + + + Prope&rties... + + + + + Send by &E-Mail... + + + + + Show Text &Blocks + + + + + Show Text &Lines + + + + + &Find + + + + + Fin&d Previous + + + + + Fi&nd Next + + + + + Select te&xt + + + + + Select &table + + + + + Select &All + + + + + Dese&lect + + + + + &Copy text + + + + + Color | &Inverted + + + + + Color | &Grayscale + + + + + Color | &High Contrast + + + + + Color | &Monochromatic + + + + + Color | &Custom + + + + + Rotate &Right + + + + + Rotate &Left + + + + + &Print... + + + + + Render to &Images... + + + + + &Magnifier + + + + + Magnifier Tool + + + + + &Screenshot + + + + + &Extract Image + + + + + &Display Annotations + + + + + Display Annotations + + + + + &Undo + + + + + &Redo + + + + + &Optimize... + + + + + Optimizes document to reduce file size. + + + + + Save &As... + + + + + &Save + + + + + &Comment + + + + + &Key + + + + + &New Paragraph + + + + + No&te + + + + + &Paragraph + + + + + &Hyperlink + + + + + &Inline text + + + + + Str&aight Line + + + + + Pol&yline + + + + + &Rectangle + + + + + &Polygon + + + + + &Ellipse + + + + + &Freehand Curve + + + + + &Highlight + + + + + &Underline + + + + + Stri&keout + + + + + &Squiggly + + + + + Go to document &start + + + + + Go to document &end + + + + + Go to &next page + + + + + Go to &previous page + + + + + Go &to next line + + + + + Go t&o previous line + + + + + &Get Source + + + + + &Encryption... + + + + + &Certificates... + + + + + &Sanitize... + + + + + Sanitize document to remove sensitive information. + + + + + Automatic &Document Refresh + + + + + Automatically reloads the document if a change made by an external program is detected. + + + + + Become a &Sponsor + + + + + Create &Bitonal Document... + + + + + Create Bitonal Document + + + + + Convert the colored images to monochromatic to create a bitonal document. + + + + + &Bookmark Page + + + + + Bookmark Page + + + + + Bookmark page for fast navigation. + + + + + &Go to Next Bookmark + + + + + Go to Next Bookmark + + + + + Navigates to the next bookmarked page. + + + + + Go to Previous Boo&kmark + + + + + Go to Previous Bookmark + + + + + Navigates to the previous bookmarked page. + + + + + &Export Bookmarks + + + + + Export Bookmarks + + + + + Export bookmarks to the file. + + + + + &Import Bookmarks + + + + + Import Bookmarks + + + + + Import bookmarks from the file. + + + + + &Generate Bookmarks Automatically + + + + + Generate Bookmarks Automatically + + + + + If checked, bookmarks for main document chapters are generated automatically. + + + + + Display &Render Times + + + + + Display Render Times + + + + + PDFEncryptionSettingsDialog + + + Encryption Settings + + + + + Encryption Method + + + + + Encryption algorithm + + + + + <html><head/><body><p>Select encryption algorithm. AES-256 is strongly recommended, because older encryption algorithm can be potentially broken. Select older algorithms (as AES-128 or RC4) only, if you need backward compatibility. Also, choose a strong password to ensure strong encryption.</p><p>Public key security using certificate is also supported. In that case, you must select a certificate with private key, and this certificate is then used to encrypt data. User, which wants to open document encrypted with certificate, must have a private key to the certificae.</p></body></html> + + + + + Certificate + + + + + Passwords + + + + + Password (document open) + + + + + Password (owner access) + + + + + Encrypt Contents + + + + + Encrypt all document contents, including document metadata + + + + + Encrypt all document contets except metadata + + + + + Encrypt file attachments only + + + + + Permissions + + + + + Print (low resolution) + + + + + Fill interactive forms + + + + + Print (high resolution) + + + + + Accessibility + + + + + Modify document contents + + + + + Assemble document (insert, rotate, delete pages...) + + + + + Edit interactive items (annotations, forms, ...) + + + + + Copy/extract document content + + + + + PDFOptimizeDocumentDialog + + + Document optimization + + + + + Optimization Settings + + + + + PDFPageContentEditorEditedItemSettings + + + Dialog + + + + + Text + + + + + Text Content + + + + + Image + + + + + Image Content + + + + + Height + + + + + Width + + + + + Ratio + + + + + Load Image + + + + + Style + + + + + + ... + + + + + Pen Style + + + + + Pen Color + + + + + Brush Style + + + + + Pen Width + + + + + Stroke path + + + + + Brush Color + + + + + Fill path + + + + + Transformation + + + + + Translation in Y + + + + + Translation in X + + + + + Scale in X + + + + + Scale in Y + + + + + Shear factor + + + + + <html><head/><body><p>Rotation angle</p></body></html> + + + + + φ + + + + + <html><head/><body><p>s<span style=" vertical-align:sub;">x</span></p></body></html> + + + + + <html><head/><body><p>s<span style=" vertical-align:sub;">y</span></p></body></html> + + + + + m + + + + + <html><head/><body><p>t<span style=" vertical-align:sub;">x</span></p></body></html> + + + + + <html><head/><body><p>t<span style=" vertical-align:sub;">y</span></p></body></html> + + + + + PDFPageContentEditorStyleSettings + + + Style Settings + + + + + Text Alignment + + + + + Pen Style + + + + + Pen Width + + + + + Brush Color + + + + + + + ... + + + + + Pen Color + + + + + Font + + + + + Text Angle + + + + + Brush Style + + + + + PDFPageContentEditorWidget + + + Content editor + + + + + Toolbox + + + + + Geometry Tools + + + + + Align to Top + + + + + Align to Vertical Center + + + + + Align to Bottom + + + + + Set Same Width + + + + + Set Same Height + + + + + Set Same Size + + + + + Align to Left + + + + + Align to Horizontal Center + + + + + Align to Right + + + + + Center Horizontally + + + + + Center Vertically + + + + + Center to Page Media Box + + + + + Layout Tools + + + + + Make Horizontal Layout + + + + + Make Vertical Layout + + + + + Make Form Layout + + + + + Make Grid Layout + + + + + Appearance + + + + + Content + + + + + PDFRenderToImagesDialog + + + Render Document to Images + + + + + Output Files Settings + + + + + Pages to render + + + + + File template + + + + + All + + + + + Generate into directory + + + + + ... + + + + + Pages: + + + + + Image Resolution + + + + + Resolution + + + + + Pixels + + + + + DPI + + + + + dots/inch + + + + + px + + + + + Image Format Settings + + + + + Format + + + + + Subtype + + + + + Gamma + + + + + Optimized write + + + + + Quality + + + + + Compression + + + + + Progressive scan write + + + + + + Enable + + + + + PDFRenderingErrorsWidget + + + Rendering errors + + + + + PDFSanitizeDocumentDialog + + + Document sanitization + + + + + Sanitization Settings + + + + + PDFSelectPagesDialog + + + All pages + + + + + Even pages + + + + + Odd pages + + + + + Custom page range: + + + + + Visible pages + + + + + PDFSidebarWidget + + + Outline + + + + + Thumbnails + + + + + Visibility + + + + + Attachments + + + + + Speech + + + + + Signatures + + + + + Bookmarks + + + + + Notes + + + + + Ctrl+S + + + + + + Search text or wildcard... + + + + + Synchronize thumbnails with current page + + + + + Volume + + + + + Pitch + + + + + Rate + + + + + PDFToolTranslationContext + + + Help + + + + + Show list of all available commands. + + + + + PDFTool help + + + + + List of available commands + + + + + Command + + + + + Tool + + + + + + + + Description + + + + + Text Encoding + + + + + When you redirect console to a file, then specific codec is used to transform output text to target encoding. UTF-8 encoding is used by default. For XML output, you should use only UTF-8 codec. Available codecs: + + + + + Suggested codec: UTF-8 or %1 + + + + + Unknown console format '%1'. Defaulting to text console format. + + + + + Unknown console date/time format '%1'. Defaulting to short date/time format. + + + + + Unknown text layout analysis algorithm '%1'. Defaulting to automatic algorithm selection. + + + + + Unknown audio format '%1'. Defaulting to mp3 audio format. + + + + + Image format '%1' is not supported. Defaulting to png. + + + + + Image format subtype '%1' is not supported. + + + + + Image compression for current format is not supported. + + + + + Invalid compression level '%1'. + + + + + Image quality settings for current format is not supported. + + + + + Invalid image quality '%1'. + + + + + Optimized write is not supported. + + + + + Progressive scan write is not supported. + + + + + Invalid image resolution mode '%1'. Defaulting to dpi. + + + + + Cannot set dpi value, resolution mode must be dpi. + + + + + Dpi must be in range from %1 to %2. Defaulting to %3. + + + + + Invalid image dpi value '%1'. + + + + + Cannot set pixel value, resolution mode must be pixel. + + + + + Pixel value must be in range from %1 to %2. Defaulting to %3. + + + + + Invalid image pixel value '%1'. + + + + + Unknown color management system '%1'. Defaulting to lcms. + + + + + Uknown color management system accuracy '%1'. Defaulting to medium. + + + + + Unknown color adaptation method '%1'. Defaulting to bradford. + + + + + Uknown color management system rendering intent '%1'. Defaulting to auto. + + + + + Uknown bool value '%1'. Default value is used. + + + + + Uknown bool value '%1'. GPU rendering is used as default. + + + + + Uknown MSAA sample count '%1'. 4 samples are used as default. + + + + + Uknown rasterizer count '%1'. %2 rasterizers are used as default. + + + + + Invalid raterizer count: %1. Correcting to use %2 rasterizers. + + + + + Unknown encryption algorithm '%1'. Defaulting to AES-256 encryption. + + + + + Unknown encryption contents mode '%1'. Defaulting to encrypt all contents. + + + + + Invalid password provided. + + + + + + Error occured during document reading. %1 + + + + + + Warning: %1 + + + + + Attachments + + + + + Show list or save attached files. + + + + + Attached files of document %1 + + + + + Attached files overview + + + + + + + + + + + + + + + No. + + + + + + File name + + + + + Mime type + + + + + Mime type description + + + + + File description + + + + + Packed size [bytes] + + + + + Target file name must not be specified, if multiple files are being saved. + + + + + + Failed to save attachment to file. %1 + + + + + + + SAPI Error: Cannot enumerate SAPI voices. + + + + + Available voices for given settings: + + + + + Voice list + + + + + + + + + Name + + + + + Gender + + + + + Age + + + + + Lang. Code + + + + + Locale + + + + + + Language + + + + + + Country + + + + + Vendor + + + + + + + Version + + + + + Audio book voices + + + + + List of available voices for audio book conversion. + + + + + Audio book convertor + + + + + Convert your document to a simple audio book. + + + + + No suitable voice found. + + + + + Invalid voice. + + + + + + Cannot create output stream '%1'. + + + + + Cannot create voice. + + + + + Failed to set requested voice. Default voice will be used. + + + + + No text extracted to be converted to audio book. + + + + + Certificate Store + + + + + Certificate store operations (list, add, remove certificates). + + + + + Certificates used in the signature verification + + + + + Certificates + + + + + + + + + + + Type + + + + + + Certificate + + + + + + Organization + + + + + + Valid from + + + + + + Valid to + + + + + User + + + + + System + + + + + Install Certificate + + + + + Install a new user certificate to certificate store. + + + + + Cannot open file '%1'. %2 + + + + + Cannot read certificate from file '%1'. + + + + + Color Profiles List + + + + + Show list of available color profiles. + + + + + Available Color Profiles + + + + + + Identifier + + + + + Output Profiles + + + + + Gray Profiles + + + + + RGB Profiles + + + + + CMYK Profiles + + + + + Decrypt + + + + + Remove encryption from a document (with only owner access only). + + + + + Authorization as owner failed. Encryption removal is not permitted if authorized as user only. + + + + + Document is not encrypted. + + + + + Compare documents + + + + + Compare contents of two documents. + + + + + Exactly two documents must be specified. + + + + + + + Cannot open document '%1'. + + + + + Difference Report + + + + + Differences + + + + + Left Page + + + + + Right Page + + + + + Encrypt + + + + + Encrypt the document (with only owner access only). + + + + + Authorization as owner failed. Encryption change is not permitted if authorized as user only. + + + + + Fetch images + + + + + Fetch image content from document. + + + + + + + Document doesn't allow to copy content. + + + + + Images fetched from document %1 + + + + + + + Overview + + + + + Image No. + + + + + + + + Page No. + + + + + Width [pixels] + + + + + Height [pixels] + + + + + Size [bytes] + + + + + Stored to + + + + + + Cannot write page image to file '%1', because: %2. + + + + + Fetch text + + + + + Fetch text content from document. + + + + + Info + + + + + Retrieve basic informations about a document. + + + + + + Information about document %1 + + + + + Properties: + + + + + + Property + + + + + + + + + + Value + + + + + + + Title + + + + + Subject + + + + + Keywords + + + + + Author + + + + + Creator + + + + + Producer + + + + + Creation date + + + + + Modified date + + + + + + + + + + + + + Yes + + + + + + + + + + + + + + + No + + + + + + + Unknown + + + + + Tagged + + + + + + None + + + + + AcroForm + + + + + XFA + + + + + Form type + + + + + Page count + + + + + Paper format + + + + + Paper size + + + + + File size + + + + + JavaScript + + + + + + Standard + + + + + Public Key + + + + + + Custom + + + + + No authorization required + + + + + Authorized as owner + + + + + Authorized as user + + + + + Encryption + + + + + Authorization + + + + + Metadata encrypted + + + + + Print (low resolution) + + + + + Print + + + + + Copy content + + + + + Accessibility + + + + + Page assembling + + + + + Modify content + + + + + Modify interactive items + + + + + Form filling + + + + + All + + + + + Permissions + + + + + File hashes: + + + + + Algorithm + + + + + Hash + + + + + MD5 + + + + + SHA1 + + + + + SHA256 + + + + + SHA384 + + + + + SHA512 + + + + + Info about used fonts + + + + + Retrieve informations about font usage in a document. + + + + + Type 0 (CID) + + + + + Type 1 (8 bit) + + + + + MM Type 1 (8 bit) + + + + + TrueType (8 bit) + + + + + Type 3 + + + + + MacRoman + + + + + WinAnsi + + + + + PDFDoc + + + + + MacExpert + + + + + Symbol + + + + + ZapfDingbats + + + + + Fonts used in document %1 + + + + + + Font Name + + + + + Font Type + + + + + Encoding + + + + + Pages + + + + + Embedded + + + + + Subset + + + + + + Unicode + + + + + + Object + + + + + + Gen. + + + + + -- + + + + + Substitutions + + + + + Substituted by Font + + + + + Match + + + + + ?? + + + + + Font Character Maps + + + + + Character Map for Font '%1' + + + + + Glyph Index + + + + + Character + + + + + Info about used inks + + + + + Retrieve information about inks used in a document. + + + + + Inks + + + + + Ink list + + + + + Spot + + + + + Color + + + + + Info (JavaScript code) + + + + + Retrieve informations about JavaScript usage in a document. + + + + + JavaScript used in document %1 + + + + + JavaScript Usage Overview + + + + + Context + + + + + + Page Number + + + + + Code Size + + + + + Code Snippet + + + + + Document + + + + + + Named + + + + + + Form + + + + + + Page + + + + + + Annotation + + + + + + Details + + + + + JavaScript #%1 + + + + + Extract document metadata + + + + + Extract document metadata (embedded xml stream). + + + + + Metadata not found in document. + + + + + Info (Named Destinations) + + + + + Retrieve informations about named destinations in a document. + + + + + Named destinations used in document %1 + + + + + Named Destinations + + + + + Left + + + + + Top + + + + + Right + + + + + Bottom + + + + + Zoom + + + + + + Invalid + + + + + XYZ + + + + + Fit + + + + + FitH + + + + + FitV + + + + + FitR + + + + + FitB + + + + + FitBH + + + + + FitBV + + + + + Info (page boxes) + + + + + Retrieve informations about page boxes in a document. + + + + + Page boxes in document %1 + + + + + Pages %1 + + + + + Box + + + + + Media + + + + + Crop + + + + + Bleed + + + + + Trim + + + + + Art + + + + + Structure Tree + + + + + Attributes + + + + + Owner + + + + + Revision + + + + + Hidden + + + + + [null] + + + + + [complex type] + + + + + Properties + + + + + Alternative description + + + + + Expanded form + + + + + Actual text + + + + + Phoneme + + + + + Marked Content Reference %1 + + + + + Structure Object Reference [%1 %2 R] + + + + + Info (Structure tree) + + + + + Examine structure tree in tagged document. + + + + + Structure tree in document %1 + + + + + No structure tree found in document. + + + + + Ink coverage + + + + + Calculate ink coverage of the selected pages, or a whole document. + + + + + Ink Coverage + + + + + Ink Coverage by Page + + + + + %1 Ratio [%] + + + + + %1 Covered [mm^2] + + + + + Sum + + + + + Optimize + + + + + Optimize document size using various algorithms. + + + + + No optimization option has been set. + + + + + Failed to write optimize document. %1 + + + + + Render document + + + + + Render selected pages of document into image files. + + + + + Render document %1 + + + + + Benchmark rendering + + + + + Benchmark page rendering (measure time, detect errors). + + + + + Benchmark rendering of document %1 + + + + + + Statistics + + + + + Unit + + + + + Pages rendered + + + + + - + + + + + Total compile time + + + + + + + + + + msec + + + + + Total render time + + + + + Total wait time + + + + + Total write time + + + + + Total time + + + + + Wall time + + + + + Rendering speed (per core) + + + + + pages / sec (one core) + + + + + Rendering speed (wall time) + + + + + pages / sec + + + + + Compile time ratio + + + + + + + + % + + + + + Render time ratio + + + + + Wait time ratio + + + + + Write time ratio + + + + + Page Statistics + + + + + Compile Time [msec] + + + + + Render Time [msec] + + + + + Wait Time [msec] + + + + + Write Time [msec] + + + + + Total Time [msec] + + + + + Rendering Errors + + + + + Message + + + + + Error + + + + + Warning + + + + + Not implemented + + + + + Not supported + + + + + Information + + + + + Extract pages + + + + + Separate document into single page documents. + + + + + File template is empty. + + + + + File template must contain character '%' for page number. + + + + + File '%1' already exists. Page %2 was not extracted. + + + + + Compute statistics of internal objects used in a document. + + + + + Statistics by Object Class + + + + + Class + + + + + + Percentage [%] + + + + + + Count [#] + + + + + Space Usage [bytes] + + + + + Content Stream + + + + + Graphic State + + + + + Color Space + + + + + Pattern + + + + + Shading + + + + + Image + + + + + Font + + + + + Action + + + + + Other + + + + + Statistics by Object Type + + + + + Merge documents + + + + + Merge multiple documents to a single document. + + + + + At least two documents and target (merged) document must be specified. + + + + + Target file '%1' already exists. Document merging not performed. + + + + + Document doesn't allow to assemble pages. + + + + + Signature verification + + + + + Verify signatures and timestamps in pdf document. + + + + + No document specified. + + + + + Digital signatures/timestamps verification of %1 + + + + + + Signature + + + + + Timestamp + + + + + Signed by + + + + + Signing date + + + + + Timestamp date + + + + + Hash alg. + + + + + Handler + + + + + Signed whole + + + + + + Skipped + + + + + %1 #%2 + + + + + Signed by: %1 + + + + + Certificate status: %1 + + + + + Signature status: %1 + + + + + Signing date: %1 + + + + + Timestamp date: %1 + + + + + Hash algorithm: %1 + + + + + Handler: %1 + + + + + Is whole document signed: %1 + + + + + Byte range covered by signature: %1 + + + + + Errors: + + + + + Warnings: + + + + + Certificate No. #%1 + + + + + Org. unit + + + + + State + + + + + Serial number + + + + + Locality + + + + + Surname + + + + + Forename + + + + + Initials + + + + + Pseudonym + + + + + Qualifier + + + + + Email + + + + + RSA method, %1-bit key + + + + + DSA method, %1-bit key + + + + + EC method, %1-bit key + + + + + DH method, %1-bit key + + + + + Unknown method, %1-bit key + + + + + Encryption method + + + + + Digital signatures + + + + + Non-repudiation + + + + + Key encipherement + + + + + Application data encipherement + + + + + Key agreement + + + + + Verify signatures on certificates + + + + + Verify signatures on revocation information + + + + + Encipher data during key agreement + + + + + Decipher data during key agreement + + + + + Trusted timestamping + + + + + Key usage + + + + + No digital signatures or timestamps found in the document. + + + + + XML export + + + + + Export internal data structure to xml. + + + + + PDFViewerMainWindow + + + PDF Viewer + + + + + &File + + + + + &Go To + + + + + Book&mark Settings + + + + + &View + + + + + Page La&yout + + + + + Re&ndering Options + + + + + &Tools + + + + + &Help + + + + + &Open... + + + + + &Close + + + + + &Quit + + + + + &Single Page + + + + + Ctrl+1 + + + + + &Continuous + + + + + Ctrl+2 + + + + + Two &Pages + + + + + Ctrl+3 + + + + + &Two columns + + + + + Ctrl+4 + + + + + &First page on right side + + + + + First page on right side + + + + + Ctrl+5 + + + + + Rendering &Errors... + + + + + Ctrl+E + + + + + &Antialiasing + + + + + &Text Antialiasing + + + + + &Smooth Pictures + + + + + &Ignore Optional Content Settings + + + + + &Options... + + + + + Ctrl+K + + + + + &Reset to Factory Settings + + + + + &Zoom In + + + + + Zoom &Out + + + + + &About... + + + + + Fit &Page + + + + + Fit &Width + + + + + W + + + + + &Fit Height + + + + + H + + + + + Prope&rties... + + + + + Send by &E-Mail... + + + + + Color | &Inverted + + + + + Color | &Grayscale + + + + + Color | &High Contrast + + + + + Color | &Monochromatic + + + + + Color | &Custom + + + + + Rotate &Right + + + + + Rotate &Left + + + + + &Print... + + + + + &Display Annotations + + + + + Go to document &start + + + + + Go to document &end + + + + + Go to &next page + + + + + Go to &previous page + + + + + Go &to next line + + + + + Go t&o previous line + + + + + &Get Source + + + + + &Certificates... + + + + + Automatic &Document Refresh + + + + + Automatically reloads the document if a change made by an external program is detected. + + + + + Become a &Sponsor + + + + + Become a Sponsor + + + + + &Bookmark Page + + + + + Bookmark Page + + + + + Bookmark page for fast navigation. + + + + + &Go to Next Bookmark + + + + + Go to Next Bookmark + + + + + Navigates to the next bookmarked page. + + + + + Go to Previous Boo&kmark + + + + + Navigates to the previous bookmarked page. + + + + + &Export Bookmarks + + + + + Export Bookmarks + + + + + Export bookmarks to the file. + + + + + &Import Bookmarks + + + + + Import Bookmarks + + + + + Import bookmarks from the file. + + + + + &Generate Bookmarks Automatically + + + + + Generate Bookmarks Automatically + + + + + If checked, bookmarks for main document chapters are generated automatically. + + + + + Display &Render Times + + + + + PDFViewerSettingsDialog + + + Options + + + + + Engine Settings + + + + + Multithreading strategy + + + + + Rendering engine + + + + + Prefetch pages + + + + + + + + + + + + + + + + + + + + + + + + + Enable + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Select a rendering method tailored to your application's requirements. Software Rendering, utilizing QPainter, is a versatile choice that guarantees compatibility across all platforms. It's particularly useful in scenarios where direct access to hardware acceleration isn't crucial. QPainter, part of the Qt framework, excels in rendering 2D graphics with support for various painting styles, image processing, and intricate graphical transformations, making it an excellent tool for applications that require detailed and sophisticated 2D graphics without relying on hardware acceleration.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">On the other hand, for applications that demand high-performance rendering, leveraging the Blend2D library offers a compelling alternative. Blend2D is a high-performance 2D vector graphics engine that utilizes multi-threading to accelerate the rendering process. It does not rely on QPainter or hardware acceleration but instead offers a software-based rendering solution optimized for speed and quality. Blend2D's advanced anti-aliasing techniques ensure crisp and clear image quality, making it suitable for applications where rendering performance and image quality are paramount.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The Prefetch Pages feature is a strategy that can be applied regardless of the rendering method chosen. By pre-rendering pages adjacent to the currently viewed content, this approach minimizes flickering and enhances the smoothness of transitions during scrolling, improving the overall user experience.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">When it comes to optimizing the rendering process, the choice of multithreading strategy plays a crucial role. A Single Thread strategy, where rendering tasks are executed sequentially on a single CPU core, might be preferable in environments where simplicity and predictability are key. For more demanding applications, employing a Multi-threading strategy can significantly improve rendering times. Strategies like Load Balanced distribute the workload evenly across CPU cores without delving into content-specific processing, offering a good performance boost. The Maximum Threads strategy takes full advantage of available CPU resources by allocating as many threads as possible to the rendering tasks, achieving optimal performance and minimizing rendering times.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This delineation between using QPainter for software rendering and Blend2D for high-performance, multi-threaded rendering allows developers to choose the most appropriate rendering pathway based on their specific performance requirements and the graphical complexity of their application.</p></body></html> + + + + + Rendering Settings + + + + + Clip to crop box + + + + + Text antialiasing + + + + + Ignore optional content + + + + + Smooth pictures + + + + + Display page compile/draw time + + + + + Antialiasing + + + + + Display annotations + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The rendering settings control how the rendering engine handles page content and the appearance of displayed graphics. <span style=" font-weight:600;">Antialiasing</span> smooths out the appearance of painted shapes, such as rectangles, vector graphics, and lines, but doesn't affect text. <span style=" font-weight:600;">Text antialiasing</span>, on the other hand, refines the appearance of text characters, leaving other items untouched. Both <span style=" font-weight:600;">Antialiasing </span>and <span style=" font-weight:600;">Text antialiasing </span>are relevant only for the software renderer. If you're using a hardware rendering engine like OpenGL, these settings won't have an impact because OpenGL renders images using MSAA antialiasing (if enabled). </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Smooth pictures</span> option enables pictures to be transformed into device space coordinates using a high-quality image transformation method. This generally results in better image quality. When disabled, a default fast transformation is used, potentially reducing image quality if the source DPI and device DPI differ. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Ignore optional content </span>ignores all optional content settings and renders everything in the content stream. <span style=" font-weight:600;">Clip to crop box</span> restricts the rendering area to the page's crop box, which is usually smaller than the whole page. Graphics outside the crop box aren't drawn, which can be useful for removing printer marks and similar elements. <span style=" font-weight:600;">Display page compile/draw time</span> can be handy for debugging, showing the time taken to compile a page (stored in the cache) and the time taken to render the compiled page contents onto the output device. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Using the <span style=" font-weight:600;">Display annotations</span> setting, you can enable or disable the display of annotations. If annotations are disabled, the user will not be able to interact with them. </p></body></html> + + + + + Shading Settings + + + + + Preferred mesh resolution ratio + + + + + Color tolerance + + + + + Minimal mesh resolution ratio + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shading is executed according to mesh quality criteria, involving <span style=" font-weight:600;">color tolerance</span> and shape tolerance. If the color of the vertices of a triangle in the mesh is too different (exceeding the set color tolerance), then the mesh is refined, and the triangle is subdivided. Some shadings are defined by patterns, such as <span style=" font-style:italic;">Coons patch shading</span> or <span style=" font-style:italic;">Tensor product patch shading</span>, which are also taken into consideration during meshing. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Preferred mesh resolution ratio</span> should be set to optimize the balance between the performance of mesh generation and the quality of the mesh. The optimal triangle size is computed as follows: the total meshing area (typically a page) is multiplied by this ratio to determine the triangle size. For example, if we have an A4 page (210 mm x 297 mm), and the ratio is set to 0.01, then the optimal triangle size is computed as 297 * 0.01 = ~3 mm. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Minimal mesh resolution ratio</span> is a ratio that determines the minimal triangle size. At this boundary, no triangles are subdivided, regardless of color variation or shape quality. This ratio should be set to a value at which a user can barely recognize patterns on the screen (for example, the triangle size should be &lt; 1 mm). However, this also affects performance, as too many triangles can be generated. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Color tolerance</span> is the threshold at which two colors are recognized as different. The comparison is done component-wise, so if at least one color component exceeds this parameter, the colors are treated as different. </p></body></html> + + + + + Cache Settings + + + + + Thumbnail image cache size + + + + + Cached font limit + + + + + + kB + + + + + Compiled page cache size + + + + + Cached instanced font limit + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The rendering engine first compiles the page to enable quick drawing and then stores these compiled pages in a cache. These stored pages usually render much quicker than non-cached pages. The <span style=" font-weight:600;">Compiled Page Cache Size</span> sets the memory limit for these compiled pages, measured in kilobytes. Ideally, this limit should be at least twice as large as the size of the largest compiled page. If a compiled page exceeds this limit, an error will be displayed during rendering. Setting a higher value for this limit can speed up the rendering engine, but it will consume more operating memory. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">There is also a cache for thumbnail images. The <span style=" font-weight:600;">Thumbnail Image Cache Size</span> determines the memory space allocated for these images. This value should be set large enough to accommodate all thumbnail images on the screen. The larger this value is, the quicker thumbnails will display, but at the cost of consuming more operating memory. Please note that thumbnails are stored as bitmaps for rapid drawing, not as precompiled pages. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">During rendering, fonts are cached as well. There are two levels of cache for fonts: one for general fonts and one for instance-specific fonts (fonts at a specific size). The <span style=" font-weight:600;">Cached Font Limit</span> sets the maximum number of fonts that can be stored in the cache. The <span style=" font-weight:600;">Instanced Font Cache Limit</span> sets the maximum number of instance-specific fonts that can be stored. If these cache limits are exceeded, fonts are removed from the cache. However, this only happens when no operation in another thread (like compiling pages) is being performed to avoid race conditions. </p></body></html> + + + + + Shortcuts + + + + + Color management system settings + + + + + Black point compensation + + + + + Device gray color profile + + + + + Accuracy + + + + + Additional color profile directory + + + + + White paper color transformed + + + + + Output color profile + + + + + Rendering intent + + + + + Consider document output intents + + + + + Device RGB color profile + + + + + Color management system + + + + + Device CMYK color profile + + + + + ... + + + + + Color adaptation method (XYZ whitepoint) + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Color Management System</span> governs input and output color profiles and color transformations. This system allows for accurate color representation as defined in the PDF document. For faster color transformations, select 'Generic' to disable this functionality. The <span style=" font-weight:600;">Rendering Intent</span> selection influences the way colors are transformed. While rendering intents are often defined within the PDF document's content streams, you have the option to override them by selecting a different intent from 'Auto'. The <span style=" font-weight:600;">Accuracy</span> setting determines the precision of the color transformation, with higher accuracy consuming more memory. The <span style=" font-weight:600;">Black Point Compensation</span> adjusts for black colors that fall outside the gamut. The <span style=" font-weight:600;">White Paper Color Transformed</span> setting affects the color of the underlying white paper - enabling this will transform pure white from the device RGB profile to the output profile. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Output Color Profile</span> specifies the output (target) rendering profile. This profile should align with the color space that your screen uses to display colors. Additionally, you can set the color spaces for <span style=" font-weight:600;">gray/RGB/CMYK</span> device color spaces. These are used to transform gray/RGB/CMYK colors to the output color profile. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A document may contain output intents, which can be used for transforming between color spaces. If the <span style=" font-weight:600;">Consider Document Output Intents</span> option is checked, the color management system will verify whether the document contains output intents. If such intents are present, they will be used for color transformation as device color spaces (gray/RGB/CMYK). </p></body></html> + + + + + Color Postprocessing + + + + + Sigmoid function slope parameter + + + + + Foreground color + + + + + Background color + + + + + Bitonal threshold + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Foreground</span> and <span style=" font-weight:700;">background</span> colors refer to a custom colors rendering mode, where two colors are used - the paper is drawn with the background color, and the foreground color is used for text and graphics. By default, the background is black and the foreground is green, which is easy on the eyes. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Sigmoid function slope parameter</span> is a parameter in high contrast color rendering. This rendering mode displays all graphics in high contrast. This parameter affects the degree of contrast. Set the value from 1 to 5 for a small contrast change, from 5 to 10 for a medium contrast change, and more than 10 for very high contrast rendering. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Bitonal threshold</span> is used in the bitonal rendering color mode. It distinguishes between black and white colors. However, the threshold for images is determined automatically. </p></body></html> + + + + + Security Settings + + + + + Allow URI link launch + + + + + Allow application launch + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If the application launch is permitted, a message box appears after the <span style=" font-weight:600;">Launch</span> action is triggered, asking the user if they want to execute an external application. If the user confirms the dialog, the external application executes (for example, using the Windows function <span style=" font-weight:600;">ShellExecute</span>). When this option is turned off, no dialog appears and the external application never executes. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If the <span style=" font-weight:600;">URI link</span> launch is allowed, a message box appears asking the user if they want to open the URI link. If the user confirms the dialog, the URI link is opened by the default web browser (or default application if the URI links to the file system). </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Users should exercise caution with these settings and only confirm execution if the document is safe and comes from a reliable source. Launching external applications and following URI links can pose risks to the user's computer. </p></body></html> + + + + + UI Settings + + + + + Maximum redo steps + + + + + Magnifier size + + + + + Use logical pixels when zooming + + + + + px + + + + + Maximum undo steps + + + + + Magnifier zoom + + + + + Maximum count of recent files + + + + + Developer mode + + + + + Color Scheme (GUI) + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The 'Maximum count of recent files' setting controls the number of recent files displayed in the menu. When a document is opened, it is added to the top of the recent files list. The list is then truncated from the bottom if the number of recent files exceeds the maximum. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Magnifier tool settings</span> determine the appearance of the magnifier. The magnifier tool enlarges the area under the mouse cursor. You can specify the size of the magnifier (in <span style=" font-weight:600;">logical</span> pixels) and its zoom level. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">By specifying the <span style=" font-weight:600;">undo/redo</span> step count, you control the number of undo/redo steps available during document editing. Setting the maximum undo step count to zero disables the undo/redo function. You can also set a nonzero undo step count and a zero redo step count, which would make only undo actions available, with redo actions disabled. Changes are optimized for memory usage, so each undo/redo step shares unmodified objects with others. This means that, roughly speaking, making 10 modifications to a 50 MB document may consume around 51 MB of memory. Actual memory usage depends on the extent of the changes but is usually minimal as changes typically affect a small number of objects (for example, editing a form field or modifying an annotation). </p></body></html> + + + + + Speech Settings + + + + + Voice + + + + + Pitch + + + + + Volume + + + + + Rate + + + + + Voice synthetiser + + + + + Locale + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Configure the speech settings to enable the text-to-speech feature for reading documents. While these settings act as defaults for the text-to-speech function, some can be adjusted later on. The 'Pitch' setting can vary from -1.0 to 1.0, with 0.0 serving as the default value. Similarly, the 'Rate' can range from -1.0 to 1.0, with 0.0 denoting a normal speech flow. Lastly, 'Volume' can be adjusted between 0.0 and 1.0. </p></body></html> + + + + + Form Settings + + + + + Highlight form fields + + + + + Highlight required form fields + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can customize the appearance of form fields using the provided settings, including the option to highlight editable fields. You can separately highlight required form fields in red, while other fields can be emphasized in blue. </p></body></html> + + + + + Digital Signature Verification + + + + + Ignore expired certificates + + + + + Signature verification + + + + + Strict mode + + + + + Use system certificate store + + + + + <html><head/><body><p><span style=" font-weight:600;">Trusted certificate store</span></p></body></html> + + + + + Remove + + + + + <html><head/><body><p>These are the settings for digital signature verification. Digital signatures are verified as strictly as possible to prevent any malicious content or signature manipulation. Verification can also be disabled, if not required. When <span style=" font-weight:600;">Strict mode</span> is enabled, every warning is treated as an error. You have the option to ignore the certificate expiration date, but this should only be done if you fully understand the potential risks involved. Verification uses a list of trusted certificates. System certificates can be added to this list, and you can also manage your own list of trusted certificates. </p></body></html> + + + + + Plugins + + + + + SelectOutlineToRegroupDialog + + + Select Outline + + + + + SettingsDialog + + + Unit Settings + + + + + Units + + + + + Lengths + + + + + Areas + + + + + Angles + + + + + + Soft Proofing Settings + + + + + Proofing intent + + + + + Proofing profile + + + + + Alarm color + + + + + Auto + + + + + Perceptual + + + + + Relative colorimetric + + + + + Absolute colorimetric + + + + + Saturation + + + + + SettingsDockWidget + + + Settings + + + + + Left Document + + + + + + Page Selection: + + + + + Right Document + + + + + Options + + + + + Compare texts as vector graphics + + + + + Compare text characters instead of words + + + + + Transparency | Overlay View + + + + + Colors + + + + + Remove + + + + + Add + + + + + Replace + + + + + Move + + + + + SignDialog + + + Dialog + + + + + Sign Method + + + + + Method + + + + + Certificate + + + + + Password + + + + + Parameters + + + + + Reason + + + + + Contact Info + + + + + StatisticsGraphWidget + + + Form + + + + + codegen::GeneratedPDFObject + + + Object + + + + + Array (simple) + + + + + Array (complex) + + + + + Dictionary + + + + + Item (simple), name = '%1' + + + + + Item (complex), name = '%1' + + + + + pdf::PDFAsynchronousTextLayoutCompiler + + + Indexing document contents... + + + + + pdf::PDFAttachmentsTreeItemModel + + + Files + + + + + pdf::PDFCMSManager + + + Generic + + + + + Little CMS %1.%2 + + + + + Gray D65, γ = 2.2 + + + + + Gray D50, γ = 2.2 + + + + + Gray D93, γ = 2.2 + + + + + Gray D65, γ = 1.0 (linear) + + + + + Gray D50, γ = 1.0 (linear) + + + + + Gray D93, γ = 1.0 (linear) + + + + + HDTV (ITU-R BT.709) + + + + + Adobe RGB 1998 + + + + + PAL / SECAM + + + + + NTSC + + + + + Adobe Wide Gamut RGB + + + + + ProPhoto RGB + + + + + sRGB + + + + + pdf::PDFCertificateListHelper + + + Password protected + + + + + pdf::PDFCertificateManagerDialog + + + Create + + + + + Open Directory + + + + + Delete + + + + + Import + + + + + Confirm delete + + + + + Do you want to delete certificate '%1'? + + + + + + Error + + + + + Cannot delete certificate '%1' + + + + + + + Import Certificate + + + + + Certificate file (*.pfx);;All files (*.*) + + + + + Target file exists. Please rename the certificate file to import. + + + + + Certificate '%1' was successfully imported. + + + + + Error occured during certificate '%1' import. + + + + + pdf::PDFCreateCertificateDialog + + + 1024 bits + + + + + 2048 bits + + + + + 4096 bits + + + + + + Certificate Protection + + + + + Enter password to protect your certificate. + + + + + Enter password again to verify password text. + + + + + + + + Error + + + + + Reentered password is not equal to the first one! + + + + + Please enter a name! + + + + + Please enter an organization name! + + + + + Please enter an email address! + + + + + pdf::PDFCreateFreeTextTool + + + Text + + + + + Enter text for free text panel + + + + + pdf::PDFCreateHighlightTextTool + + + Select Color + + + + + pdf::PDFCreateHyperlinkTool + + + Hyperlink + + + + + Enter url address of the hyperlink + + + + + pdf::PDFCreatePCElementImageTool + + + Select Image + + + + + pdf::PDFCreateStickyNoteTool + + + Sticky note + + + + + Enter text to be displayed in the sticky note + + + + + pdf::PDFDependentLibraryInfo + + + Qt + + + + + LGPLv3 + + + + + https://www.qt.io/ + + + + + libjpeg + + + + + permissive + ack. + + + + + https://www.ijg.org/ + + + + + %1 + + + + + + %1.%2 + + + + + FreeType + + + + + FTL + + + + + %1.%2.%3 + + + + + https://www.freetype.org/index.html + + + + + OpenJPEG + + + + + + 2-clause MIT license + + + + + https://www.openjpeg.org/ + + + + + OpenSSL + + + + + Apache 2.0 + + + + + https://www.openssl.org/ + + + + + LittleCMS + + + + + http://www.littlecms.com/ + + + + + zlib + + + + + + zlib specific + + + + + https://zlib.net/ + + + + + Blend2D + + + + + https://blend2d.com/ + + + + + pdf::PDFDiff + + + No document to be compared. + + + + + No page to be compared. + + + + + Invalid page range. + + + + + Comparing documents. + + + + + Page no. %1 was moved to a page no. %2. + + + + + Page no. %1 was added. + + + + + Page no. %1 was removed. + + + + + Removed text character from page %1. + + + + + Removed vector graphics from page %1. + + + + + Removed image from page %1. + + + + + Removed shading from page %1. + + + + + Added text character to page %1. + + + + + Added vector graphics to page %1. + + + + + Added image to page %1. + + + + + Added shading to page %1. + + + + + Text '%1' has been added to page %2. + + + + + Text '%1' has been removed from page %2. + + + + + Text '%1' on page %2 has been replaced by text '%3' on page %4. + + + + + Invalid + + + + + Page moved + + + + + Page added + + + + + Page removed + + + + + Removed text character + + + + + Removed vector graphics + + + + + Removed image + + + + + Removed shading + + + + + Added text character + + + + + Added vector graphics + + + + + Added image + + + + + Added shading + + + + + Text added + + + + + Text removed + + + + + Text replaced + + + + + pdf::PDFDocumentManipulator + + + Empty page list. + + + + + + Invalid document. + + + + + + Missing page (%1) in a document. + + + + + + Missing image. + + + + + Error occured during page creation. + + + + + Document %1 + + + + + %1, p. %2 + + + + + %1 Images + + + + + %1 Pages + + + + + pdf::PDFDocumentReader + + + File '%1' cannot be opened for reading. %1 + + + + + File '%1' doesn't exist. + + + + + Device is not opened for reading. + + + + + Can't open device for reading. + + + + + End of file marking was not found. + + + + + Header of PDF file was not found. + + + + + Version of the PDF file is not valid. + + + + + + Start of object reference table not found. + + + + + + + + Can't read object at position %1. + + + + + Invalid trailer dictionary. + + + + + Empty xref table. + + + + + pdf::PDFDocumentSanitizer + + + Document info was removed. + + + + + Metadata streams removed: %1 + + + + + Outline was removed. + + + + + File attachments removed: %1. + + + + + Embedded files were removed. + + + + + Search index was removed. + + + + + Markup annotations removed: %1. + + + + + Page thumbnails removed: %1. + + + + + pdf::PDFDocumentTextFlowEditorModel + + + Page No. + + + + + Type + + + + + State + + + + + + Text + + + + + Title + + + + + Language + + + + + Special + + + + + Removed + + + + + Modified + + + + + Active + + + + + pdf::PDFDocumentWriter + + + + Writing of encrypted documents is not supported. + + + + + + + File '%1' can't be opened for writing. %2 + + + + + Device is not writable. + + + + + pdf::PDFEditObjectDialog + + + Edit Annotation + + + + + pdf::PDFExtractImageTool + + + Image of size %1 x %2 pixels was copied to the clipboard. + + + + + pdf::PDFFindTextTool + + + + Find + + + + + Case sensitive + + + + + Whole words only + + + + + Previous + + + + + Next + + + + + Search text + + + + + Find (%1/%2) + + + + + pdf::PDFFormFieldSignatureEditor + + + Signature Unknown + + + + + Signature Valid + + + + + Signature Invalid + + + + + pdf::PDFLexicalAnalyzer + + + Expected a number, but end of stream reached. + + + + + Invalid format of number. Character '%1' appeared. + + + + + Both '+' and '-' appeared in number. Invalid format of number. + + + + + Bad format of number - no digits appeared. + + + + + Real number overflow. + + + + + Hexadecimal number must follow character '#' in the name. + + + + + Invalid character in hexadecimal string. + + + + + Unexpected end of stream reached while scanning hexadecimal string. + + + + + Invalid character '%1' + + + + + + Unexpected character '%1' in the stream. + + + + + Trying to seek stream position to %1 bytes from the start, byte offset is invalid. + + + + + Can't read %1 bytes from the input stream. Input stream end reached. + + + + + Unexpected end of stream reached. + + + + + Error near position %1. %2 + + + + + pdf::PDFObjectEditorAnnotationsModel + + + + + + + + + + General + + + + + + + Type + + + + + + + Text + + + + + + Link + + + + + + + + + Free text + + + + + + + + + + + + + + Line + + + + + + Square + + + + + + Circle + + + + + Polygon + + + + + Polyline + + + + + + Highlight + + + + + + Underline + + + + + Squiggly + + + + + Strike Out + + + + + Caret + + + + + + + + Stamp + + + + + Ink + + + + + + File attachment + + + + + Redaction + + + + + Rectangle + + + + + + + + Contents + + + + + Author + + + + + Subject + + + + + Annotation name + + + + + + Info + + + + + Modified + + + + + Created + + + + + + + Options + + + + + Invisible + + + + + Hidden + + + + + Print + + + + + No Zoom + + + + + No Rotate + + + + + No View + + + + + Readonly + + + + + Locked + + + + + Toggle No View + + + + + Locked Contents + + + + + Modify appearance + + + + + + + + + + + + Appearance + + + + + + Colors + + + + + Color + + + + + Interior color + + + + + + + Transparency + + + + + Blend mode + + + + + Fill opacity + + + + + Stroke opacity + + + + + Language + + + + + Modify border + + + + + + + + Border + + + + + + Border Style + + + + + Width + + + + + + + + + + + + + + + + + + + + Style + + + + + Solid + + + + + Dashed + + + + + Beveled + + + + + Inset + + + + + + Border Effect + + + + + Cloudy + + + + + + + + None + + + + + Intensity + + + + + + Sticky note + + + + + Comment + + + + + Key + + + + + Note + + + + + Help + + + + + New Paragraph + + + + + Paragraph + + + + + Insert + + + + + Open + + + + + Invert + + + + + Outline + + + + + Push + + + + + + Alignment + + + + + + + + Intent + + + + + Callout + + + + + Typewriter + + + + + Callout line ending + + + + + Line start + + + + + Line end + + + + + Leader line length + + + + + Leader line extension + + + + + Leader line offset + + + + + Arrow + + + + + Dimension + + + + + Cloud + + + + + Line dimension + + + + + Polygon dimension + + + + + Caption + + + + + Caption position + + + + + Inline + + + + + Top + + + + + Name + + + + + Image + + + + + Snapshot + + + + + Icon + + + + + Graph + + + + + Push-pin + + + + + Paperclip + + + + + Tag + + + + + + + Redact + + + + + Overlay text + + + + + Repeat overlay text + + + + + Left + + + + + Center + + + + + Right + + + + + Diamond + + + + + Open arrow + + + + + Closed arrow + + + + + Butt + + + + + Reversed open arrow + + + + + Reversed closed arrow + + + + + Slash + + + + + pdf::PDFObjectEditorMappedColorAdapter + + + custom + + + + + pdf::PDFObjectEditorWidgetMapper + + + Rectangle + + + + + pdf::PDFOptimizer + + + Stage %1 + + + + + Pass %1 + + + + + Simple objects dereferenced and embedded: %1 + + + + + Null objects entries from dictionaries removed: %1 + + + + + Unused objects removed: %1 + + + + + Identical objects merged: %1 + + + + + Object list shrinked by: %1 + + + + + Bytes saved by recompressing stream: %1 + + + + + pdf::PDFOutlineTreeItemModel + + + Item %1 + + + + + pdf::PDFPageContentEditorEditedItemSettings + + + + Solid + + + + + Dashed + + + + + Dotted + + + + + Dash-dot + + + + + Dash-dot-dot + + + + + Custom + + + + + Image + + + + + Text + + + + + Style + + + + + Transformation + + + + + Select Image + + + + + Select Color for Pen + + + + + Select Color for Brush + + + + + pdf::PDFPageContentEditorStyleSettings + + + + None + + + + + + Solid + + + + + Dashed + + + + + Dotted + + + + + Dash-dot + + + + + Dash-dot-dot + + + + + Horizontal + + + + + Vertical + + + + + B-Diagonal + + + + + F-Diagonal + + + + + Cross + + + + + Edit Item + + + + + Content + + + + + Appearance + + + + + Select Font + + + + + Select Color for Pen + + + + + Select Color for Brush + + + + + pdf::PDFParser + + + Stream ended inside array. + + + + + Dictionary key must be a name. + + + + + End of stream inside dictionary reached. + + + + + Streams are not allowed in this context. + + + + + Stream length is not specified. + + + + + Bad value of stream length. It should be an integer number. + + + + + Length of the stream buffer is negative (%1). It must be a positive number. + + + + + Stream data should be in external file, but invalid file name is specified. + + + + + Can't open stream data stored in external file '%1'. + + + + + End of stream should end in keyword 'endstream'. + + + + + Cannot read object. Unexpected token appeared. + + + + + Cannot read object. End of stream reached. + + + + + pdf::PDFParsingContext + + + Cyclical reference found while parsing object %1 %2. + + + + + Function dictionary expected. + + + + + Fuction has invalid domain. + + + + + Fuction has invalid range. + + + + + Sampled function has invalid sample size. + + + + + Sampled function has invalid count of bits per sample. + + + + + Sampled function hasn't any output. + + + + + Sampled function has invalid encode array. + + + + + Sampled function has invalid decode array. + + + + + Not enough samples for sampled function. + + + + + Exponential function can have only one input value. + + + + + + Invalid domain of exponential function. + + + + + Invalid parameter of exponential function (at x = 0.0). + + + + + Invalid parameter of exponential function (at x = 1.0). + + + + + Stitching function can have only one input value. + + + + + Stitching function has different function count. Expected %1, actual %2. + + + + + Stitching function has invalid encode array. Expected %1 items, actual %2. + + + + + Functions in stitching function has different number of output variables. + + + + + Stitching function has invalid functions. + + + + + Stitching function hasn't functions array. + + + + + Empty program in PostScript function. + + + + + Invalid function type: %1. + + + + + pdf::PDFPickTool + + + Use key 'C' to show/hide large cross. + + + + + pdf::PDFRenderingErrorsWidget + + + Page + + + + + Error type + + + + + Description + + + + + Error + + + + + Warning + + + + + Not implemented + + + + + Not supported + + + + + pdf::PDFScreenshotTool + + + Page contents of size %1 x %2 pixels were copied to the clipboard. + + + + + pdf::PDFSecurityHandlerFactory + + + User password contains invalid characters: %1. + + + + + Owner password contains invalid characters: %1. + + + + + Invalid certificate or password. + + + + + pdf::PDFSelectPagesDialog + + + + Error + + + + + Selected page range is empty. + + + + + pdf::PDFSelectTableTool + + + Table region was selected. Use left/right mouse buttons to add/remove rows/columns, then use Enter key to copy the table. + + + + + pdf::PDFTranslationContext + + + Circular dependence in actions found. + + + + + Invalid action. + + + + + + Text + + + + + + + Line + + + + + Free Text + + + + + Square + + + + + Circle + + + + + Polygon + + + + + Polyline + + + + + Highlight + + + + + Underline + + + + + Squiggly + + + + + Strike Out + + + + + Stamp + + + + + Caret + + + + + Ink + + + + + Popup + + + + + File Attachment + + + + + Sound + + + + + Movie + + + + + Widget + + + + + + Screen + + + + + Printer Mark + + + + + Trap Net + + + + + Watermark + + + + + Redaction + + + + + Projection + + + + + 3D + + + + + + Rich Media + + + + + Reply + + + + + &Approved + + + + + APPROVED + + + + + As &Is + + + + + AS IS + + + + + &Confidential + + + + + CONFIDENTIAL + + + + + &Departmental + + + + + DEPARTMENTAL + + + + + Dra&ft + + + + + DRAFT + + + + + &Experimental + + + + + EXPERIMENTAL + + + + + E&xpired + + + + + EXPIRED + + + + + Fina&l + + + + + FINAL + + + + + For Co&mment + + + + + FOR COMMENT + + + + + For P&ublic Release + + + + + FOR PUBLIC RELEASE + + + + + Not A&pproved + + + + + NOT APPROVED + + + + + N&ot For Public Release + + + + + NOT FOR PUBLIC RELEASE + + + + + &Sold + + + + + SOLD + + + + + &Top Secret + + + + + TOP SECRET + + + + + Normal + + + + + Multiply + + + + + Overlay + + + + + Darken + + + + + Lighten + + + + + ColorDodge + + + + + ColorBurn + + + + + HardLight + + + + + SoftLight + + + + + Difference + + + + + Exclusion + + + + + Hue + + + + + Saturation + + + + + Color + + + + + Luminosity + + + + + + + Unknown + + + + + Invalid pass encoding data in CCITT stream. + + + + + CCITT b2 index out of range. + + + + + Invalid horizontal encoding data in CCITT stream. + + + + + + + Invalid vertical encoding data in CCITT stream. + + + + + Invalid index of CCITT changing element a1: a1 = %1, columns = %2. + + + + + Invalid CCITT run length code word. + + + + + Invalid CCITT 2D mode. + + + + + + Conversion from gray to output device using CMS failed. + + + + + + Conversion from gray to output device using CMS failed - invalid data format. + + + + + + Conversion from RGB to output device using CMS failed. + + + + + + Conversion from RGB to output device using CMS failed - invalid data format. + + + + + + Conversion from CMYK to output device using CMS failed. + + + + + + Conversion from CMYK to output device using CMS failed - invalid data format. + + + + + + Conversion from XYZ to output device using CMS failed. + + + + + + Conversion from XYZ to output device using CMS failed - invalid data format. + + + + + + Conversion from icc profile space to output device using CMS failed. + + + + + + Conversion from icc profile space to output device using CMS failed - invalid data format. + + + + + Structure tree item for MCID %1 not found. + + + + + + Page %1 + + + + + Valid tagged document required. + + + + + + JBIG2 invalid header - bad referred segments. + + + + + + JBIG2 invalid segment type %1. + + + + + Invalid JBIG2 file header. + + + + + Invalid JBIG2 file header flags. + + + + + Invalid JBIG2 file - unknown number of pages. + + + + + Invalid JBIG2 file - invalid number of pages (%1). + + + + + Invalid JBIG2 file - segment length is not defined. + + + + + JBIG2 bad segment data - handler doesn't process all segment data - %1 bytes left. + + + + + JBIG2 bad segment data - handler reads %1 bytes past segment end. + + + + + + + + + JBIG2 invalid flags for symbol dictionary segment. + + + + + + + + + + + + + + + + + JBIG2 invalid user huffman code table. + + + + + JBIG2 invalid number of huffam code table - %1 unused. + + + + + + JBIG2 trying to use aritmetic decoder context from previous symbol dictionary, but it doesn't exist. + + + + + JBIG2 symbol height class has more symbols, than defined in the symbol dictionary header. + + + + + Trying to use reference bitmap %1, but number of decoded bitmaps is %2. + + + + + JBIG2 - invalid export flags in symbol dictionary. + + + + + JBIG2 - invalid huffman table flags in text region segment. + + + + + JBIG2 no referred symbols in text region segment. + + + + + JBIG2 invalid symbol length code table for text region segment. + + + + + + JBIG2 - invalid bitmap for generic region. + + + + + JBIG2 invalid pattern dictionary flags. + + + + + JBIG2 unknown data length for pattern dictionary. + + + + + JBIG2 invalid pattern dictionary collective bitmap. + + + + + + JBIG2 region segment information - invalid bit operation mode. + + + + + JBIG2 invalid referenced pattern dictionaries for halftone segment. + + + + + JBIG2 invalid patterns for halftone segment. + + + + + JBIG2 halftoning with more than 8 grayscale bit planes not supported (current bitplanes: %1). + + + + + JBIG2 unknown data length for halftone dictionary. + + + + + JBIG2 invalid halftone grayscale bit plane image. + + + + + JBIG2 halftoning pattern index %1 out of bounds [0, %2] + + + + + JBIG2 - invalid bitmap for halftone region. + + + + + JBIG2 - malformed generic region flags. + + + + + JBIG2 - end of data byte sequence not found for generic region. + + + + + JBIG2 - invalid flags for generic refinement region. + + + + + JBIG2 - operation must be REPLACE for generic refinement region. + + + + + JBIG2 - invalid referred segments (%1) for generic refinement region. + + + + + JBIG2 - invalid referred bitmap size [%1 x %2] instead of [%3 x %4] for generic refinement region. + + + + + JBIG2 - invalid bitmap for generic refinement region. + + + + + JBIG2 end-of-page segment shouldn't contain any data, but has extra data of %1 bytes. + + + + + JBIG2 end-of-page segment detected and ignored. + + + + + JBIG2 end-of-file segment shouldn't contain any data, but has extra data of %1 bytes. + + + + + JBIG2 end-of-file segment detected and ignored. + + + + + JBIG2 underflow of the low value in huffman table. + + + + + JBIG2 unknown extension %1 necessary for decoding the image. + + + + + JBIG2 segment with unknown extension has not defined length. + + + + + JBIG2 segment %1 is not a bitmap. + + + + + JBIG2 bitmap segment %1 not found. + + + + + JBIG2 symbol index %1 not found in symbol table of length %2. + + + + + JBIG2 region segment information flags are invalid. + + + + + JBIG2 segment with unknown data length can't be skipped. + + + + + JBIG2 invalid referred segment %1 referenced by segment %2. + + + + + JBIG2 maximum bitmap size exceeded (%1 > %2). + + + + + JBIG2 invalid bitmap size (%1 x %2). + + + + + JBIG2 invalid bit operation. + + + + + JBIG2 can't read integer. + + + + + JBIG2 - invalid bitmap paint operation. + + + + + JBIG2 - invalid bitmap copy row operation. + + + + + JBIG2 overflow of prefix bit values in huffman table. + + + + + Null + + + + + Boolean + + + + + Integer + + + + + Real + + + + + String + + + + + Name + + + + + Array + + + + + Dictionary + + + + + Stream + + + + + Reference + + + + + + Invalid optional content properties. + + + + + + + + Invalid optional content configuration. + + + + + + Invalid optional content group. + + + + + Cyclic reference error in optional content visibility expression. + + + + + + + Invalid optional content visibility expression. + + + + + Invalid number of matrix elements. Expected 6, actual %1. + + + + + Reading contents of document... + + + + + Authorization failed. Bad password provided. + + + + + Decrypting encrypted contents of document... + + + + + Object stream %1 not found. + + + + + + + + Object stream %1 is invalid. + + + + + Trailer dictionary is not valid. + + + + + Invalid tiling pattern - wrong paint type %1. + + + + + Invalid tiling pattern - wrong tiling type %1. + + + + + Invalid tiling pattern - bounding box is invalid. + + + + + Invalid tiling pattern - steps are invalid. + + + + + + + + Invalid pattern. + + + + + Invalid shading. + + + + + Pattern color space is not valid for shading patterns. + + + + + Invalid shading pattern extends. Expected 2, but %1 provided. + + + + + Invalid function shading pattern domain. Expected 4 values, but %1 provided. + + + + + Invalid function shading pattern domain. Invalid domain ranges. + + + + + + Invalid axial shading pattern color functions. Expected %1 functions, but %2 provided. + + + + + Invalid axial shading pattern coordinates. Expected 4, but %1 provided. + + + + + Invalid axial shading pattern domain. Expected 2, but %1 provided. + + + + + Invalid radial shading pattern coordinates. Expected 6, but %1 provided. + + + + + Invalid radial shading pattern domain. Expected 2, but %1 provided. + + + + + Invalid radial shading pattern color functions. Expected %1 functions, but %2 provided. + + + + + Radial shading cannot have negative circle radius. + + + + + Invalid bits per coordinate (%1) for shading. + + + + + Invalid bits per component (%1) for shading. + + + + + Invalid domain for shading. Expected size is 6, actual size is %1. + + + + + Invalid domain for shading. Expected size is %1, actual size is %2. + + + + + Invalid bits per flag (%1) for shading. + + + + + Invalid vertices per row (%1) for lattice-form gourad triangle meshing. + + + + + Invalid shading pattern type (%1). + + + + + + Error occured during mesh generation of shading: %1 + + + + + + + + + + Error occured during mesh creation of shading: %1 + + + + + Invalid free form gourad triangle data stream. + + + + + Invalid lattice form gourad triangle data stream. + + + + + + + Nonzero flag for first patch (flags = %1). + + + + + Invalid data in tensor product patch shading. + + + + + Invalid data in coons patch shading. + + + + + Unknown crypt filter '%1'. + + + + + + + + Revision %1 of standard security handler is not supported. + + + + + Expected %1 characters long string in entry '%2'. Provided length is %3. + + + + + Expected %1 characters long string in entry '%2'. + + + + + Invalid encryption dictionary. + + + + + Unknown security handler. + + + + + Unsupported version of document encryption (V = %1). + + + + + Invalid value for entry '%1' in encryption dictionary. Name expected. + + + + + Invalid value for entry '%1' in encryption dictionary. Boolean expected. + + + + + Invalid value for entry '%1' in encryption dictionary. Integer expected. + + + + + Crypt filter is not a dictionary! + + + + + Unsupported encryption algorithm '%1'. + + + + + Unsupported authorization event '%1'. + + + + + + Crypt filter '%1' not found. + + + + + Permissions entry in the Encryption dictionary is invalid. + + + + + + + Security permissions are manipulated. Can't open the document. + + + + + + Encryption key length (%1) exceeded maximal value of %2. + + + + + No signature handler for signature format '%1'. + + + + + Certificate format is invalid. + + + + + No signatures in certificate data. + + + + + Certificate is missing. + + + + + Generic error occured during certificate validation. + + + + + Certificate has expired. + + + + + Certificate is self-signed. + + + + + Self-signed certificate in chain. + + + + + Trusted certificate not found. + + + + + Certificate has been revoked. + + + + + Certificate validation failed with code %1. + + + + + Signature is invalid. + + + + + No signatures found in certificate. + + + + + Signature certificate is missing. + + + + + Signed data has different hash function digest. + + + + + Signed data are invalid. + + + + + Data covered by signature are not present. + + + + + %1 bytes are not covered by signature. + + + + + Certificate revocation list (CRL) not checked, validity time has expired. + + + + + Qualified certificate statement not verified. + + + + + Unable to get CRL. + + + + + OK + + + + + Warning + + + + + Error + + + + + Transformation between blending color space failed. + + + + + Invalid clear color - process color %1 was not found in clear color. + + + + + More colors in clear color (%1) than process color channel count (%2). + + + + + + + Transformation of spot color to blend color space failed. + + + + + + + Invalid number bits of image mask (should be 1 bit instead of %1 bits). + + + + + + + + Invalid size of image (%1x%2) + + + + + Invalid image color space. + + + + + Invalid base color space of indexed color space. + + + + + + + Invalid colors for indexed color space. Color space has %1 colors. Provided color count is %4. + + + + + Conversion of indexed image to base color space failed. + + + + + + + + Image masking not implemented! + + + + + + + + + + + Invalid colors for color space. Color space has %1 colors. Provided color count is %4. + + + + + + + + + + Invalid size of the decode array. Expected %1, actual %2. + + + + + Invalid matte color. + + + + + + + Invalid number of color components in color key mask. Expected %1, provided %2. + + + + + + + Invalid size of the decoded array. Expected %1, actual %2. + + + + + + Soft mask can't have masking. + + + + + + Invalid size of soft mask. + + + + + + Soft mask should have only 1 color component (alpha) instead of %1. + + + + + Invalind soft mask. + + + + + Invalid blend color space of soft mask definition. + + + + + Invalid soft mask type. + + + + + Evaulation of soft mask transfer function failed. + + + + + Cannot create shading sampler. + + + + + Image painting not implemented. + + + + + Mesh painting not implemented. + + + + + Invalid source ink index %1. + + + + + Invalid target ink index %1. + + + + + Transformation from source color space to target blending color space failed. + + + + + Gray + + + + + Red + + + + + Green + + + + + Blue + + + + + Cyan + + + + + Magenta + + + + + Yellow + + + + + Black + + + + + Process Generic%1 + + + + + Not enough data to read %1-bit value. + + + + + Can't seek to position %1. + + + + + Can't get substream - remaining %1 bits in buffer. + + + + + + + Can't convert '%1' to a number. + + + + + Closed interval [%1, %2] is invalid. + + + + + Rendering of content type '%1' is not implemented. + + + + + Image encoded by 'package' mode not decoded. + + + + + Image of type '%1' not decoded. + + + + + + XFA: Buttons not implemented. + + + + + XFA: Uknown ui. + + + + + Barcode not implemented! + + + + + XFA: Unknown fill pattern. + + + + + + XFA: special stroke is not supported. + + + + + + Catalog must be a dictionary. + + + + + Required features %1 are unsupported. Document processing can be limited. + + + + + Optional Content User Interaction + + + + + Optional Content Usage + + + + + Acrobat Forms + + + + + Navigation + + + + + Markup Annotations + + + + + Markup of 3D Content + + + + + Multimedia + + + + + U3D Format of PDF 3D + + + + + PRC Format of PDF 3D + + + + + Actions + + + + + JavaScript + + + + + Attached Files + + + + + Attached Files Modification + + + + + Collections of Attached Files + + + + + Collections of Attached Files (editation) + + + + + Digital Signature Validation + + + + + Apply Digital Signature + + + + + Digital Signature Validation (with MDP) + + + + + Geospatial 2D Features + + + + + Geospatial 3D Features + + + + + Navigation for Document Parts + + + + + Separation Simulation + + + + + Transitions/Presentations + + + + + Encryption + + + + + Invalid page rotation. + + + + + + Expected valid kids in page tree. + + + + + Detected cycles in page tree. + + + + + + Expected valid type item in page tree. + + + + + Expected dictionary in page tree. + + + + + Invalid code in the LZW stream. + + + + + Failed to initialize flate compression stream. + + + + + + zlib code: %1 + + + + + Error compressing by flate method: %1 + + + + + Failed to initialize flate decompression stream. + + + + + Error decompressing by flate method: %1 + + + + + Property '%1' should be in range from %2 to %3. + + + + + Invalid property '%1' of the stream predictor parameters. + + + + + Invalid predictor algorithm. + + + + + Security handler required, but not provided. + + + + + Invalid number of color components. Expected number is %1, actual number is %2. + + + + + + Can't load color space, because color space structure is too complex. + + + + + + + + Invalid color space. + + + + + Can't determine alternate color space for ICC based profile. Number of components is %1. + + + + + Can't determine alternate color space for ICC based profile. + + + + + Too much color components for ICC based profile. + + + + + + Operation cancelled! + + + + + Can't determine base color space for indexed color space. + + + + + Invalid colors for indexed color space. Color space has %1 colors, %2 color components and must have %3 size. Provided size is %4. + + + + + Can't determine color name for separation color space. + + + + + Can't determine alternate color space for separation color space. + + + + + Can't determine tint transform for separation color space. + + + + + Pattern doesn't have defined uniform color. + + + + + Invalid colorants for DeviceN color space. + + + + + Can't determine alternate color space for DeviceN color space. + + + + + Can't determine tint transform for DeviceN color space. + + + + + + + Page %1 doesn't exist. + + + + + Start at %1... + + + + + Rendering document into images. + + + + + Page %1 not found. + + + + + Finished at %1... + + + + + %1 miliseconds elapsed to render %2 pages... + + + + + Image_% + + + + + Target directory is empty. + + + + + Target directory '%1' doesn't exist. + + + + + File template is empty. + + + + + File template must contain character '%' for page number. + + + + + Page list is invalid. It should have form such as '1-12,17,24,27-29'. + + + + + Page list contains page, which is not in the document (%1). + + + + + DPI resolution should be in range %1 to %2. + + + + + Pixel resolution should be in range %1 to %2. + + + + + + Invalid page contents. + + + + + Graphic state stack was saved more times, than was restored. + + + + + Transparency group blending color space is invalid. + + + + + Invalid inline image dictionary, ID operator is missing. + + + + + + Expected name in the inline image dictionary stream. + + + + + Invalid inline image stream. + + + + + + Shading pattern graphic state is invalid. + + + + + Uncolored tiling pattern has not underlying color space. + + + + + Unknown operator '%1'. + + + + + Not implemented operator '%1'. + + + + + Current point of path is not set. Path is empty. + + + + + + + Invalid line dash pattern. + + + + + Marked content is not well formed (not enough EMC operators). + + + + + Blend mode '%1' is invalid. + + + + + Graphic state '%1' found, but invalid in resource dictionary. + + + + + Graphic state '%1' not found in resource dictionary. + + + + + Invalid graphic state resource dictionary. + + + + + Trying to restore graphic state more times than it was saved. + + + + + Transformation matrix is not invertible. + + + + + Can't read operand (real number) on index %1. Operand is of type '%2'. + + + + + Can't read operand (real number) on index %1. Only %2 operands provided. + + + + + Can't read operand (integer) on index %1. Operand is of type '%2'. + + + + + Can't read operand (integer) on index %1. Only %2 operands provided. + + + + + Can't read operand (name) on index %1. Operand is of type '%2'. + + + + + Can't read operand (name) on index %1. Only %2 operands provided. + + + + + Can't read operand (string) on index %1. Operand is of type '%2'. + + + + + Can't read operand (string) on index %1. Only %2 operands provided. + + + + + + + Invalid color component count. Provided %1, required %2. + + + + + + + + Invalid pattern for Pattern color space. + + + + + Text object already started. + + + + + Text object ended more than once. + + + + + Font '%1' not found in font dictionary. + + + + + Invalid font dictionary. + + + + + + + + + Invalid font, text can't be printed. + + + + + Invalid parameters of text operator with individual character spacing. + + + + + Invalid operand of text show operator. + + + + + Shading '%1' not found. + + + + + Invalid color space of the image. + + + + + Can't decode the image. + + + + + Color operators are not allowed in uncolored tilling pattern. + + + + + Reference to optional content expected. + + + + + Form of type %1 not supported. + + + + + Unknown XObject type '%1'. + + + + + Invalid format of XObject. Dictionary expected. + + + + + XObject resource dictionary not found. + + + + + Mismatched begin/end of marked content. + + + + + Compatibility operator begin/end mismatch. + + + + + Type 3 font matrix is not invertible. + + + + + Invalid stroking color. + + + + + Invalid filling color. + + + + + Invalid soft mask transfer function. + + + + + Blend mode '%1' not supported. + + + + + Blend mode '%1' is in transparency group, which is not supported. + + + + + Soft masks not supported. + + + + + + + + Invalid number of operands for function. Expected %1, provided %2. + + + + + + + + Invalid number of output variables for function. Expected %1, provided %2. + + + + + Invalid number of operands for identity function. Expected %1, provided %2. + + + + + Invalid instruction pointer. + + + + + + + Division by zero (PostScript engine). + + + + + Number expected for ceil function (PostScript engine). + + + + + Number expected for floor function (PostScript engine). + + + + + Number expected for round function (PostScript engine). + + + + + Number expected for truncate function (PostScript engine). + + + + + Square root of negative value can't be computed (PostScript engine). + + + + + Logarithm's input should be positive value (PostScript engine). + + + + + Logarithm's input should be positive value (PostScript engine). + + + + + Real value expected for conversion to integer (PostScript engine). + + + + + Integer value expected for conversion to real (PostScript engine). + + + + + Can't copy negative number of arguments (PostScript engine). + + + + + Negative index of operand (PostScript engine). + + + + + Negative number of operands (PostScript engine). + + + + + Call stack underflow (PostScript engine). + + + + + Real value expected (PostScript engine). + + + + + Integer value expected (PostScript engine). + + + + + Boolean value expected (PostScript engine). + + + + + Instruction pointer expected (PostScript engine). + + + + + Number expected (PostScript engine). + + + + + Stack overflow occured (PostScript engine). + + + + + Stack underflow occured (PostScript engine). + + + + + Invalid operator (PostScript function) '%1'. + + + + + Invalid program - bad enclosing brackets (PostScript function). + + + + + Invalid program (PostScript function). + + + + + Empty program (PostScript function). + + + + + Stack contains more values, than output size (%1 remains) (PostScript function). + + + + + + Inexact font substitution: font %1 replaced by %2 using font family %3. + + + + + Inexact font substitution: font %1 replaced by %2. + + + + + FontConfig error building pattern for font %1 + + + + + Inexact font substitution: font %1 replaced by standard font Times New Roman. + + + + + Fontconfig error + + + + + Glyph for simple font character code '%1' not found. + + + + + Glyph for composite font character with cid '%1' not found. + + + + + Details + + + + + Font + + + + + Style + + + + + Yes + + + + + No + + + + + Glyph count + + + + + Is CID keyed + + + + + Is bold + + + + + Is italics + + + + + Has vertical writing system + + + + + Has SFNT storage scheme + + + + + Has glyph names + + + + + + Encoding + + + + + None + + + + + Unicode + + + + + MS Symbol + + + + + Japanese Shift JIS + + + + + PRC - Simplified Chinese + + + + + Traditional Chinese + + + + + Korean Extended Wansung + + + + + Korean Standard + + + + + Adobe Standard + + + + + Adobe Expert + + + + + Adobe Custom + + + + + Adobe Latin 1 + + + + + Old Latin 1 + + + + + Apple Roman + + + + + Platform/Encoding = %1 %2 + + + + + FreeType error code %1: %2 + + + + + Can't load system font '%1'. + + + + + Invalid font encoding. + + + + + Font object must be a dictionary. + + + + + Invalid font type. + + + + + + + Invalid differences in encoding entry of the font. + + + + + + Invalid encoding entry of the font. + + + + + Invalid CMAP in CID-keyed font. + + + + + + Invalid descendant font in CID-keyed font. + + + + + Invalid number (%1) of descendant fonts in CID-keyed font - exactly one is required. + + + + + Invalid Type 3 font matrix. + + + + + Invalid Type 3 font character content streams. + + + + + Invalid Type 3 font character range (from %1 to %2). + + + + + + Invalid Type 3 font encoding. + + + + + + Invalid differences in encoding entry of type 3 font. + + + + + Standard + + + + + Mac Roman + + + + + Win Ansi + + + + + PDF Doc + + + + + Mac Expert + + + + + + Symbol + + + + + + Zapf Dingbats + + + + + Mac OS Roman + + + + + Custom + + + + + Times Roman + + + + + Helvetica + + + + + Courier + + + + + Standard font + + + + + Can't load CID font mapping named '%1'. + + + + + Can't fetch code from CMap definition. + + + + + Can't fetch CID from CMap definition. + + + + + Can't use cmap inside cmap file. + + + + + Character count + + + + + Content stream for type 3 font character code '%1' not found. + + + + + Image has not data. + + + + + Soft mask image can't have mask / soft mask itself. + + + + + Regular image can't have Matte entry (used for soft masks). + + + + + Invalid mask image. + + + + + Invalid soft mask object. + + + + + Malformed data while reading JPEG stream. %1 bytes skipped. + + + + + Error reading JPEG (DCT) image: %1. + + + + + JPEG 2000 Warning: %1 + + + + + JPEG 2000 Error: %1 + + + + + Unknown color space for JPEG 2000 image. + + + + + JPEG 2000 image has too much non-alpha channels. Ignoring %1 channels. + + + + + JPEG 2000 image has too much alpha channels. Ignoring %1 alpha channels. + + + + + Incompatible color components for JPEG 2000 image. + + + + + Invalid parameters for filter CCITT fax decode. + + + + + Invalid number of bits per component (%1). + + + + + Invalid XML text. + + + + + Error during converting text to font encoding. Some characters were not converted: '%1'. + + + + + Text font not defined! + + + + + Invalid rendering mode '%1'. Valid values are 0-7. + + + + + + + + + + + + Cannot convert text '%1' to number. + + + + + Text font command requires two attributes - font and size. + + + + + Text translation command requires two attributes - x and y. + + + + + Invalid text matrix parameters. + + + + + Set text matrix command requires six elements - m11, m12, m21, m22, x, y. + + + + + Invalid command '%1'. + + + + + Font '%1' is invalid. + + + + + Info + + + + + %1 (%2 replies) + + + + + #%1: %2 + + + + + Rounded rectangle + + + + + Rectangle + + + + + SVG image + + + + + Dot + + + + + Freehand curve + + + + + Text box '%1' + + + + + Image + + + + + Path + + + + + Compile time: %1 [ms] + + + + + Draw time: %1 [ms] + + + + + Precompiled page size is too high (%1 kB). Cache size is %2 kB. Increase the cache size! + + + + + pdf::PDFWidgetAnnotationManager + + + Annotation + + + + + Show Popup Window + + + + + Copy to Multiple Pages + + + + + Edit + + + + + Delete + + + + + Copy Annotation + + + + + Copy Annotation onto Multiple Pages + + + + + pdf::PDFXRefTable + + + + + + + Invalid format of reference table. + + + + + + + Bad format of reference table entry. + + + + + Trailer dictionary is invalid. + + + + + Offset of previous reference table is invalid. + + + + + + + Invalid format of cross-reference stream. + + + + + Invalid format of cross-reference stream - not enough data in the stream. + + + + + pdfdiff::DifferencesDockWidget + + + Differen&ces + + + + + %1 Differences (+%2 hidden) + + + + + %1 Differences + + + + + Page %1 + + + + + Left %1 + + + + + Right %1 + + + + + No Differences Found! + + + + + pdfdiff::DifferencesDrawInterface + + + Difference + + + + + pdfdiff::MainWindow + + + &Main + + + + + &Differences + + + + + &View + + + + + + + + + Error + + + + + Info + + + + + No differences found between the compared documents. + + + + + + Select PDF document + + + + + XML file (*.xml) + + + + + File '%1' cannot be opened. %2 + + + + + Save results to XML + + + + + Displayed results are empty. Cannot save empty results. + + + + + Save As + + + + + Portable Document (*.pdf);;All files (*.*) + + + + + PDF document (*.pdf) + + + + + Encrypted document + + + + + Enter password to access document content + + + + + pdfdiff::PDFAboutDialog + + + Library + + + + + Version + + + + + License + + + + + URL + + + + + pdfdiff::SettingsDockWidget + + + S&ettings + + + + + pdfpagemaster::AssembleOutputSettingsDialog + + + No Outline + + + + + Join Outlines + + + + + Document Parts + + + + + Select output directory + + + + + pdfpagemaster::MainWindow + + + &Main + + + + + &Insert + + + + + &Select + + + + + &Regroup + + + + + &Zoom + + + + + Ma&ke + + + + + + Select PDF document(s) + + + + + + + PDF document (*.pdf) + + + + + Select + + + + + Regroup + + + + + Encrypted document + + + + + Enter password to access document '%1' + + + + + + + + + + Error + + + + + Document security doesn't permit to organize pages. + + + + + No documents to assemble. + + + + + Document with given filename already exists. + + + + + Images (*.%1) + + + + + Select Image(s) + + + + + Select PDF document + + + + + pdfpagemaster::PDFAboutDialog + + + Library + + + + + Version + + + + + License + + + + + URL + + + + + pdfpagemaster::PageItemModel + + + Page Group + + + + + Document collection + + + + + Page Count: %1 + + + + + Image + + + + + Images + + + + + Blank Page + + + + + Blank Pages + + + + + #BBBB00@Collection + + + + + #D98335@Blank + + + + + #24A5EA@Image + + + + + pdfpagemaster::SelectOutlineToRegroupDialog + + + Select All + + + + + Deselect All + + + + + Invert Selection + + + + + Select Level 1 + + + + + Select Level 2 + + + + + Select subtree + + + + + Deselect subtree + + + + + pdfplugin::AudioBookCreator + + + No suitable voice found. + + + + + + Cannot create output stream '%1'. + + + + + Cannot create voice. + + + + + Failed to set requested voice. + + + + + Audio book plugin is unsupported on your system. + + + + + pdfplugin::AudioBookPlugin + + + &Create Text Stream for Audio Book + + + + + Synchronize Selection from &Table to Graphics + + + + + Synchronize Selection from &Graphics to Table + + + + + &Activate Selection + + + + + &Deactivate Selection + + + + + Select by &Rectangle + + + + + Select by Contained &Text + + + + + Select by Regular &Expression + + + + + Select by Page &List + + + + + Restore &Original Text + + + + + Move Selection &Up + + + + + Move Selection &Down + + + + + Create Audio &Book + + + + + Clear Te&xt Stream + + + + + &Audio Book + + + + + + + + + + Error + + + + + Cannot select items by text, because text is empty. + + + + + Regular expression is not valid. %1 + + + + + Cannot select items by regular expression, because regular expression definition is empty. + + + + + Cannot select items by page indices, because page indices are invalid. %1 + + + + + Cannot select items by page indices, because page indices are empty. + + + + + Question + + + + + Restore original texts in selected items? All changes will be lost. + + + + + Select Audio File + + + + + Audio stream (*.mp3) + + + + + Audio book creator cannot be initialized. + + + + + pdfplugin::AudioTextStreamEditorDockWidget + + + Audio Book Actions + + + + + pdfplugin::CreateRedactedDocumentDialog + + + File Name + + + + + Error + + + + + Cannot convert '%1' to color value. + + + + + pdfplugin::DimensionsPlugin + + + &Horizontal Dimension + + + + + &Vertical Dimension + + + + + &Linear Dimension + + + + + &Perimeter + + + + + &Rectangle Perimeter + + + + + &Area + + + + + R&ectangle Area + + + + + An&gle + + + + + &Show Dimensions + + + + + &Clear Dimensions + + + + + Se&ttings + + + + + &Dimensions + + + + + A = %1 %2 + + + + + p = %1 %2 + + + + + pdfplugin::EditorPlugin + + + &Edit page content + + + + + Create &Text Label + + + + + Create &Freehand Curve + + + + + Create &Accept Mark + + + + + Create &Reject Mark + + + + + Create R&ectangle + + + + + &Create Rounded Rectangle + + + + + Create &Horizontal Line + + + + + Create &Vertical Line + + + + + Create L&ine + + + + + Create &Dot + + + + + Create &SVG Image + + + + + Clear A&ll Graphics + + + + + Ed&itor + + + + + Errors (%2) occured while creating content stream on page %3.<br>%1 + + + + + Error + + + + + Confirm Changes + + + + + The changes to the page content will be written to the document. Do you want to continue? + + + + + Editor Toolbox + + + + + pdfplugin::InkCoverageStatisticsModel + + + Total + + + + + Page Index + + + + + [ mm² ] + + + + + [ % ] + + + + + pdfplugin::ObjectInspectorDialog + + + Document + + + + + Pages + + + + + Content streams + + + + + Graphic states + + + + + Color spaces + + + + + Patterns + + + + + Shadings + + + + + Images + + + + + Forms + + + + + Fonts + + + + + Actions + + + + + Annotations + + + + + Object List + + + + + pdfplugin::ObjectInspectorPlugin + + + Object &Inspector + + + + + Object &Statistics + + + + + O&bject Inspector + + + + + pdfplugin::ObjectStatisticsDialog + + + Statistics by Object Function + + + + + + Statistics by Object Type + + + + + Statistics by Object Class + + + + + Class + + + + + + Percentage [%] + + + + + + Count [#] + + + + + Space Usage [bytes] + + + + + Page + + + + + Content Stream + + + + + Graphic State + + + + + Color Space + + + + + Pattern + + + + + Shading + + + + + Image + + + + + Form + + + + + Font + + + + + Action + + + + + Annotation + + + + + Other + + + + + Type + + + + + pdfplugin::ObjectViewerWidget + + + + %1 %2 R + + + + + Part of object %1 + + + + + <none> + + + + + Null + + + + + Bool + + + + + Integer + + + + + Real + + + + + String + + + + + Name + + + + + Array + + + + + Dictionary + + + + + Stream + + + + + Reference + + + + + null + + + + + true + + + + + false + + + + + Array [%1 items] + + + + + Dictionary [%1 items] + + + + + Stream [%1 items, %2 data bytes] + + + + + Invalid color space of the image. + + + + + Image Stream [%1 items, %2 data bytes, %3 x %4 pixels, %5 bits per component] + + + + + [Unknown] + + + + + %1 (part) + + + + + pdfplugin::OutputPreviewDialog + + + Separations + + + + + Color Warnings | Ink Coverage + + + + + Color Warnings | Rich Black + + + + + Ink Coverage + + + + + Shape Channel + + + + + Opacity Channel + + + + + Process Inks + + + + + Spot Inks + + + + + pdfplugin::OutputPreviewPlugin + + + &Output Preview + + + + + &Ink Coverage + + + + + Output Previe&w + + + + + pdfplugin::OutputPreviewWidget + + + Distribution + + + + + Process Inks + + + + + Spot Inks + + + + + Warning | Ink Coverage + + + + + + OK + + + + + + Failure + + + + + Warning | Rich Black + + + + + Ink Coverage + + + + + Shape/Opacity + + + + + Sample Color + + + + + pdfplugin::PDFObjectInspectorTreeItemModel + + + null + + + + + true + + + + + false + + + + + Array [%1 items] + + + + + Dictionary [%1 items] + + + + + Stream [%1 items, %2 data bytes] + + + + + pdfplugin::RedactPlugin + + + Redact &Rectangle + + + + + Redact &Text + + + + + Redact Text &Selection + + + + + Redact &Page(s) + + + + + Create Redacted &Document + + + + + Redac&t + + + + + Information + + + + + Select text via 'Advanced Search' tool, and then redact it using this tool. Select rows in 'Result' table to select particular results. + + + + + Redact Pages + + + + + Page Range to be Redacted + + + + + Error + + + + + pdfplugin::SignDialog + + + Sign digitally + + + + + Sign digitally (invisible signature) + + + + + + Error + + + + + Certificate does not exist. + + + + + Password to open certificate is invalid. + + + + + pdfplugin::SignaturePlugin + + + &Activate signature creator + + + + + Create &Text Label + + + + + Create &Freehand Curve + + + + + Create &Accept Mark + + + + + Create Reject &Mark + + + + + Create &Rectangle + + + + + Create R&ounded Rectangle + + + + + Create &Horizontal Line + + + + + Create &Vertical Line + + + + + Create &Line + + + + + Create &Dot + + + + + Create SVG &Image + + + + + Clear All &Graphics + + + + + Sign &Electronically + + + + + Sign Digitally &With Certificate + + + + + Certificates &Manager + + + + + Si&gnature + + + + + Confirm Signature + + + + + Document will be signed electronically. Do you want to continue? + + + + + + + Error + + + + + + + Failed to create digital signature. + + + + + Save Signed Document + + + + + Portable Document (*.pdf);;All files (*.*) + + + + + Signature Toolbox + + + + + pdfplugin::SoftProofingPlugin + + + &Soft Proofing + + + + + &Gamut Checking + + + + + Soft &Proofing Settings + + + + + Soft &Proofing + + + + + pdfviewer::ImagePreviewDelegate + + + Toggle this icon to switch image conversion to bitonal format on or off. + + + + + pdfviewer::PDFAboutDialog + + + Library + + + + + Version + + + + + License + + + + + URL + + + + + pdfviewer::PDFActionComboBox + + + Find action... + + + + + pdfviewer::PDFAdvancedFindWidget + + + Page No. + + + + + Phrase + + + + + Context + + + + + Search error + + + + + Search phrase regular expression has error '%1' near symbol %2. + + + + + Results (%1) + + + + + Results + + + + + pdfviewer::PDFBookmarkItemDelegate + + + Page %1 | Generated + + + + + Page %1 + + + + + pdfviewer::PDFBookmarkManager + + + User bookmark for page %1 + + + + + pdfviewer::PDFCreateBitonalDocumentDialog + + + ORIGINAL + + + + + BITONAL + + + + + Perform + + + + + Converting images... + + + + + pdfviewer::PDFDocumentPropertiesDialog + + + Properties + + + + + PDF version + + + + + Title + + + + + Subject + + + + + Author + + + + + Keywords + + + + + Creator + + + + + Producer + + + + + Creation date + + + + + + Modified date + + + + + + + + + + Yes + + + + + + + + + + No + + + + + Unknown + + + + + Content + + + + + Page count + + + + + Paper format + + + + + Paper size + + + + + Trapped + + + + + Custom properties + + + + + File information + + + + + Name + + + + + Directory + + + + + Writable + + + + + Size + + + + + Created date + + + + + Last read date + + + + + Security + + + + + + + None + + + + + Standard + + + + + Public Key + + + + + Custom + + + + + No authorization required + + + + + Authorized as owner + + + + + Authorized as user + + + + + Document encryption + + + + + Authorized as + + + + + Metadata encrypted + + + + + Version + + + + + Permissions + + + + + Print (low resolution) + + + + + Print (high resolution) + + + + + Content extraction + + + + + Content extraction (accessibility) + + + + + Page assembling + + + + + Modify content + + + + + Modify interactive items + + + + + Fill form fields + + + + + TrueType + + + + + Type0 (CID keyed) + + + + + Type1 (8 bit keyed) + + + + + MMType1 (8 bit keyed) + + + + + Type3 (content streams for font glyphs) + + + + + Type + + + + + Font family + + + + + Embedded subset + + + + + Viewer settings + + + + + Default printer settings + + + + + Single page + + + + + Continuous column + + + + + Two continuous columns + + + + + Two pages + + + + + Default + + + + + Show outlines + + + + + Show thumbnails + + + + + Fullscreen + + + + + Show optional content + + + + + Show attachments + + + + + Left to right + + + + + Right to left + + + + + Page layout + + + + + View mode + + + + + Writing direction + + + + + Application default + + + + + Scale + + + + + Simplex + + + + + + Duplex (flip long edge) + + + + + Duplex mode + + + + + Pick tray by page size + + + + + Default print page ranges + + + + + Number of copies + + + + + pdfviewer::PDFEditorMainWindow + + + Standard + + + + + % + + + + + &Sidebar + + + + + Advanced find + + + + + Ad&vanced Find... + + + + + / %1 + + + + + pdfviewer::PDFEncryptionSettingsDialog + + + None + + + + + RC4 128-bit | R4 + + + + + AES 128-bit | R4 + + + + + AES 256-bit | R6 + + + + + Certificate Encryption + + + + + Error + + + + + pdfviewer::PDFEncryptionStrengthHintWidget + + + Very weak + + + + + Weak + + + + + Moderate + + + + + Strong + + + + + Very strong + + + + + pdfviewer::PDFOptimizeDocumentDialog + + + Embed (dereference) simple objects, such as int, bool, real + + + + + Remove null objects from dictionary entries + + + + + Remove unused objects (objects unreachable from document root object) + + + + + Merge identical objects + + + + + Shrink object storage (squeeze free entries) + + + + + Recompress flate streams by maximal compression + + + + + Optimize + + + + + Optimization started! + + + + + Optimization finished! + + + + + Optimized in %1 msecs + + + + + Bytes before optimization: %1 + + + + + Bytes after optimization: %1 + + + + + Bytes saved by optimization: %1 + + + + + Compression ratio: %1 % + + + + + pdfviewer::PDFProgramController + + + Printing document + + + + + Go to action + + + + + Failed to go to destination '%1'. Destination wasn't found. + + + + + Would you like to launch application '%1' in working directory '%2' with parameters '%3'? + + + + + + + + Launch application + + + + + + Executing application failed. Error code is %1. + + + + + Would you like to launch application '%1'? + + + + + Would you like to open URL '%1'? + + + + + + Open URL + + + + + Opening url '%1' failed. + + + + + Save As + + + + + Portable Document (*.pdf);;All files (*.*) + + + + + + Error + + + + + Save Document + + + + + Do you wish to save modified document before it is closed? + + + + + Error while starting email client occured! + + + + + Permission to change document security is denied. + + + + + Failed to create security handler. + + + + + + Reauthorization is required to change document encryption. + + + + + Encrypted document + + + + + Enter password to access document content + + + + + Document '%1' was successfully loaded! + + + + + Document read error: %1 + + + + + %1 - %2 + + + + + + Reset Settings + + + + + Do you wish to restore the default factory settings of the program? All settings changed by the user will be deleted. Application will be closed. + + + + + Default factory settings were restored. Application will be now closed. + + + + + Plugins + + + + + Plugin on/off state has been changed. Please restart application to apply settings. + + + + + + Select PDF document + + + + + PDF document (*.pdf) + + + + + Export Bookmarks As + + + + + JSON (*.json);;All files (*.*) + + + + + JSON (*.json) + + + + + Rendering of page %1: %2 errors occured. + + + + + pdfviewer::PDFRecentFileManager + + + (&%1) %2 + + + + + Recent file dummy &%1 + + + + + pdfviewer::PDFRenderToImagesDialog + + + %1 +Page %2: %3 + + + + + Select output directory + + + + + Cannot write page image to file '%1', because: %2. + + + + + Error + + + + + pdfviewer::PDFSanitizeDocumentDialog + + + Remove document info + + + + + Remove all metadata + + + + + Remove outline + + + + + Remove file attachments + + + + + Remove embedded search index + + + + + Remove comments and other markup annotations + + + + + Remove page thumbnails + + + + + Sanitize + + + + + Sanitization started! + + + + + Sanitization finished! + + + + + Sanitized in %1 msecs + + + + + Bytes before sanitization: %1 + + + + + Bytes after sanitization: %1 + + + + + Bytes saved by sanitization: %1 + + + + + Compression ratio: %1 % + + + + + pdfviewer::PDFSidebarWidget + + + + + + + Error + + + + + Speech feature is unavailable. No speech engines detected. If you're using Linux, please install speech libraries like 'flite' or 'speechd'. + + + + + The speech feature is available, but its options are not properly set. Please check the speech settings in the options dialog. + + + + + Signature - %1 + + + + + Timestamp - %1 + + + + + Unknown + + + + + Certificate is valid. + + + + + Signature is valid. + + + + + Hash algorithm: %1 + + + + + Certificate validation chain + + + + + Protected by RSA method, %1-bit key + + + + + Protected by DSA method, %1-bit key + + + + + Protected by EC method, %1-bit key + + + + + Protected by DH method, %1-bit key + + + + + Unknown protection method, %1-bit key + + + + + Country + + + + + Organization + + + + + Org. unit + + + + + Name + + + + + State + + + + + Serial number + + + + + Locality + + + + + Title + + + + + Surname + + + + + Forename + + + + + Initials + + + + + Pseudonym + + + + + Qualifier + + + + + Email + + + + + Digital signatures + + + + + Non-repudiation + + + + + Key encipherement + + + + + Application data encipherement + + + + + Key agreement + + + + + Verify signatures on certificates + + + + + Verify signatures on revocation information + + + + + Encipher data during key agreement + + + + + Decipher data during key agreement + + + + + Trusted timestamping + + + + + Key usages + + + + + User + + + + + Page %1 + + + + + Save to File... + + + + + Save attachment + + + + + + Failed to save attachment to file. %1 + + + + + Failed to save attachment to file. Attachment is corrupted. + + + + + Add to trusted certificates + + + + + Add to Trusted Certificate Store + + + + + Are you sure want to add '%1' to the trusted certificate store? + + + + + Trusted Certificate Store Error + + + + + Failed to add certificate to the trusted certificate store. + + + + + Follow + + + + + Delete + + + + + Insert + + + + + Rename + + + + + Font Bold + + + + + Font Italic + + + + + Set Target + + + + + Select Named Destination + + + + + OK + + + + + Cancel + + + + + Named Destination + + + + + Fit Page + + + + + Fit Page Horizontally + + + + + Fit Page Vertically + + + + + Fit Rectangle + + + + + Fit Bounding Box + + + + + Fit Bounding Box Horizontally + + + + + Fit Bounding Box Vertically + + + + + XYZ + + + + + pdfviewer::PDFViewerMainWindow + + + Standard + + + + + % + + + + + &Sidebar + + + + + / %1 + + + + + pdfviewer::PDFViewerSettingsDialog + + + Engine + + + + + Rendering + + + + + Shading + + + + + Cache + + + + + Shortcuts + + + + + Colors | CMS + + + + + Colors | Postprocessing + + + + + Security + + + + + UI + + + + + Speech + + + + + Forms + + + + + Signature + + + + + Plugins + + + + + Software | QPainter + + + + + Software | Blend2D | Parallel + + + + + Software | Blend2D | Sequential + + + + + Single thread + + + + + Multithreading (load balanced) + + + + + Multithreading (maximum threads) + + + + + Auto + + + + + Perceptual + + + + + Relative colorimetric + + + + + Absolute colorimetric + + + + + Saturation + + + + + Low + + + + + Medium + + + + + High + + + + + None + + + + + XYZ scaling + + + + + CAT97 matrix + + + + + CAT02 matrix + + + + + Bradford method + + + + + Automatic (or via command line) + + + + + Light scheme + + + + + Dark scheme + + + + + Type + + + + + Certificate + + + + + Organization + + + + + Valid from + + + + + Valid to + + + + + User + + + + + System + + + + + Action + + + + + Shortcut + + + + + Error + + + + + Shortcut '%1' is invalid for action %2. + + + + + Active + + + + + Name + + + + + Author + + + + + Version + + + + + License + + + + + Select color profile directory + + + + diff --git a/translations/PDF4QT_en.ts b/translations/PDF4QT_en.ts new file mode 100644 index 0000000..268e0b5 --- /dev/null +++ b/translations/PDF4QT_en.ts @@ -0,0 +1,14569 @@ + + + + + Application + + + PDF4QT Editor + + + + + PDF4QT Viewer + + + + + PDF4QT PageMaster + + + + + PDF4QT Diff + + + + + PDF4QT LaunchPad + + + + + AssembleOutputSettingsDialog + + + + Assemble Documents + + + + + ... + + + + + File template + + + + + <html><head/><body><p>In a template file name, you can use symbols '#' for output document number (means output document index, not input document) or '@' for page number of input document (if document contains more pages, it is a page number of a original document), or '%' for index of input document. Use more '#' or '@' or '%' for setting minimal number of digits (if number has less digits, the they are padded with zero).</p></body></html> + + + + + Overwrite existing files + + + + + doc-#.pdf + + + + + Generate into directory + + + + + Outline Mode + + + + + AudioTextStreamEditorDockWidget + + + Text Stream for Audio Book + + + + + CreateRedactedDocumentDialog + + + Create Redacted Document + + + + + Redacted document + + + + + Output file name + + + + + ... + + + + + Appearance + + + + + Fill redacted area with color: + + + + + Options + + + + + Copy document title into redacted document + + + + + Copy document metadata into redacted document + + + + + Copy outline into redacted document + + + + + DifferencesDockWidget + + + Differences + + + + + DimensionTool + + + pt + + + + + in + + + + + mm + + + + + cm + + + + + sq. pt + + + + + sq. in + + + + + sq. mm + + + + + sq. cm + + + + + ° + + + + + rad + + + + + GeneratorMainWindow + + + Code Generator + + + + + Remove + + + + + Clone + + + + + New + + + + + Parameters + + + + + Data type + + + + + Value + + + + + Item type + + + + + Name + + + + + Text description / C++ code + + + + + Delete + + + + + Up + + + + + Down + + + + + New Child + + + + + New Sibling + + + + + File + + + + + Code + + + + + XFA + + + + + Load + + + + + Ctrl+O + + + + + Save + + + + + Ctrl+S + + + + + Save As... + + + + + Set code header (*.h) + + + + + Set code source (*.cpp) + + + + + Generate code + + + + + Ctrl+G + + + + + Set code header XFA + + + + + Set code source XFA + + + + + Generate XFA code + + + + + Set XFA description + + + + + + Select XML definition file + + + + + Create function + + + + + Enter function name + + + + + + Select cpp header + + + + + + Select cpp source + + + + + Select xml definition + + + + + InkCoverageDialog + + + Ink Coverage Calculator + + + + + Ink Coverage + + + + + LaunchApplicationWidget + + + Form + + + + + Title + + + + + TextLabel + + + + + LaunchDialog + + + Launch Application + + + + + Editor + + + + + Viewer + + + + + Diff + + + + + PageMaster + + + + + Go beyond basic browsing. This tool packs a punch with a host of advanced features, including encryption, document reading, digital signature verification, annotation editing, and even support for searching text using regular expressions. Turn pages into images, and enhance your PDF interactions with multiple available plugins. + + + + + Simplify your viewing experience. This lightweight viewer offers essential viewing functions in a clean, user-friendly interface. + + + + + Spot differences effortlessly. This tool allows users to open two documents and receive a detailed list of differences. View these differences in a page-to-page window where they are clearly marked. Save these differences into an XML file for future reference. + + + + + Take control of your documents. Manage whole documents or individual pages with ease. Merge documents into a single file, or split them into multiple ones. You can also move, clone, or add pages with a few clicks, all within an intuitive user interface. + + + + + Error + + + + + Failed to start process '%1' + + + + + MainWindow + + + JBIG2 Image Viewer + + + + + Images + + + + + File + + + + + Add image + + + + + + Ctrl+O + + + + + Clear + + + + + + Ctrl+W + + + + + Add JBIG2 image + + + + + Ctrl+J + + + + + + + Error + + + + + + Open image + + + + + + Workspace + + + + + + &File + + + + + &Edit + + + + + &Insert + + + + + + + &View + + + + + &Make + + + + + + &Help + + + + + + &Toolbars + + + + + &Regroup + + + + + &Add Documents... + + + + + Add Documents + + + + + C&lose + + + + + Alt+F4 + + + + + Clone &Selection + + + + + Ctrl+L + + + + + Re&move Selection + + + + + Del + + + + + Restore Removed &Items + + + + + Ctrl+Shift+R + + + + + Insert &PDF + + + + + Insert PDF + + + + + Ctrl+I + + + + + &Insert Image + + + + + Ctrl+Alt+I + + + + + Insert &Empty Page + + + + + Ctrl+Shift+I + + + + + Cu&t + + + + + Ctrl+X + + + + + &Copy + + + + + Ctrl+C + + + + + &Paste + + + + + Ctrl+V + + + + + Repl&ace Selection + + + + + Ctrl+Alt+R + + + + + Select &None + + + + + Ctrl+N + + + + + Select &All + + + + + Ctrl+A + + + + + Select &Even + + + + + F9 + + + + + Select &Odd + + + + + F10 + + + + + Select &Portrait + + + + + F11 + + + + + Select &Landscape + + + + + F12 + + + + + Rotate &Right + + + + + F4 + + + + + Rotate &Left + + + + + Shift+F4 + + + + + &Zoom In + + + + + Ctrl++ + + + + + Zoo&m Out + + + + + Ctrl+- + + + + + + &Get Source + + + + + + &About... + + + + + + F1 + + + + + &United Document... + + + + + + F5 + + + + + &Separate to Multiple Documents... + + + + + + F6 + + + + + Separate to Multiple Documents (&Grouped)... + + + + + F7 + + + + + &Group + + + + + Ctrl+G + + + + + U&ngroup + + + + + Ctrl+Shift+G + + + + + &Clear + + + + + Regroup by &Even/Odd Pages + + + + + Regroup by Re&verse + + + + + Regroup by &Page Pairs + + + + + Regroup by &Outline + + + + + Regroup by &Alternating Pages + + + + + Regroup by Alternating Pages (&Reversed Order) + + + + + &Invert Selection + + + + + &Undo + + + + + Ctrl+Z + + + + + Re&do + + + + + Ctrl+Y + + + + + &Prepare Icon Theme + + + + + + Become a &Sponsor + + + + + + &Compare + + + + + &Filter + + + + + Open &Left... + + + + + Open &Right... + + + + + &Close + + + + + Ctrl+F4 + + + + + &Previous Difference + + + + + Shift+F6 + + + + + &Next Difference + + + + + Create Compare &Report... + + + + + Filter &Text + + + + + Filter &Vector Graphics + + + + + Filter &Images + + + + + Filter &Shading + + + + + Filter &Page Movement + + + + + View &Differences + + + + + View &Left + + + + + View &Right + + + + + View &Overlay + + + + + &Show Pages with Differences + + + + + Show Pages with Differences + + + + + Save Differences to &XML... + + + + + S&ynchronize View with Differences + + + + + Display &Differences + + + + + Display &Markers + + + + + ObjectInspectorDialog + + + Object Inspector + + + + + Objects + + + + + Current Object + + + + + ObjectStatisticsDialog + + + Object Statistics + + + + + ObjectViewerWidget + + + Form + + + + + Pin + + + + + Unpin + + + + + Information + + + + + Reference + + + + + Type + + + + + Description + + + + + Contents + + + + + OutputPreviewDialog + + + Output Preview + + + + + Settings + + + + + Red + + + + + Blue + + + + + Green + + + + + Simulate separations + + + + + Simulate paper color + + + + + Display + + + + + Images + + + + + Text + + + + + Vector graphics + + + + + Shading patterns + + + + + Tiling patterns + + + + + Ctrl+S + + + + + Color Warnings + + + + + Alarm color + + + + + + % + + + + + Coverage limit + + + + + Select + + + + + Rich black limit + + + + + Inks + + + + + PDFAboutDialog + + + + + About + + + + + + + <html><head/><body><p><span style=" font-weight:600;">PdfForQtViewer</span></p><p>Copyright 2018-2025 Jakub Melka. All rights reserved.</p><p>THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p></body></html> + + + + + + + Used libraries + + + + + PDFAdvancedFindWidget + + + Form + + + + + Search for + + + + + Search Settings + + + + + Search + + + + + Whole words only + + + + + Remove soft hyphen at end of line + + + + + Search for: + + + + + Case sensitive + + + + + Use regular expressions + + + + + Clear + + + + + Regular Expression Settings + + + + + Dot matches everything (including newline characters) + + + + + Multiline matching (enables search using '^' and '$' to mark line beginnings/endings) + + + + + Results + + + + + PDFCertificateManagerDialog + + + Certificate Manager + + + + + Certificates + + + + + PDFCreateBitonalDocumentDialog + + + Create Bitonal Document + + + + + Color to Bitonal Conversion Options + + + + + Automatic (Otsu's 1D method) + + + + + User-Defined Intensity Threshold (0-255): + + + + + PDFCreateCertificateDialog + + + Create Certificate + + + + + Create Self Signed Certificate + + + + + Name + + + + + Organization + + + + + Organization Unit + + + + + Email + + + + + Country + + + + + Key length + + + + + Valid till + + + + + Certificate file + + + + + PDFDocumentPropertiesDialog + + + Document Properties + + + + + + Properties + + + + + File Information + + + + + + Security + + + + + + Fonts + + + + + Display && Print + + + + + Display && Print Settings + + + + + PDFEditorMainWindow + + + PDF Editor + + + + + &File + + + + + &Go To + + + + + Book&mark Settings + + + + + &View + + + + + Page La&yout + + + + + Re&ndering Options + + + + + &Tools + + + + + + &Help + + + + + &Developer + + + + + &Edit + + + + + + &Insert + + + + + Sticky &Note + + + + + &Stamp + + + + + Text Hi&ghlight + + + + + &Open... + + + + + &Close + + + + + &Quit + + + + + &Single Page + + + + + Single Page + + + + + Ctrl+1 + + + + + &Continuous + + + + + Continuous + + + + + Ctrl+2 + + + + + Two &Pages + + + + + Two Pages + + + + + Ctrl+3 + + + + + &Two columns + + + + + Two columns + + + + + Ctrl+4 + + + + + &First page on right side + + + + + First page on right side + + + + + Ctrl+5 + + + + + &Rendering Errors... + + + + + Ctrl+E + + + + + &Antialiasing + + + + + Antialiasing + + + + + &Text Antialiasing + + + + + Text Antialiasing + + + + + &Smooth Pictures + + + + + Smooth Pictures + + + + + &Ignore Optional Content Settings + + + + + Ignore Optional Content Settings + + + + + &Options... + + + + + Ctrl+K + + + + + Reset to &Factory Settings + + + + + &Zoom In + + + + + Zoom &Out + + + + + &About... + + + + + Fit &Page + + + + + Fit &Width + + + + + W + + + + + &Fit Height + + + + + H + + + + + Prope&rties... + + + + + Send by &E-Mail... + + + + + Show Text &Blocks + + + + + Show Text &Lines + + + + + &Find + + + + + Fin&d Previous + + + + + Fi&nd Next + + + + + Select te&xt + + + + + Select &table + + + + + Select &All + + + + + Dese&lect + + + + + &Copy text + + + + + Color | &Inverted + + + + + Color | &Grayscale + + + + + Color | &High Contrast + + + + + Color | &Monochromatic + + + + + Color | &Custom + + + + + Rotate &Right + + + + + Rotate &Left + + + + + &Print... + + + + + Render to &Images... + + + + + &Magnifier + + + + + Magnifier Tool + + + + + &Screenshot + + + + + &Extract Image + + + + + &Display Annotations + + + + + Display Annotations + + + + + &Undo + + + + + &Redo + + + + + &Optimize... + + + + + Optimizes document to reduce file size. + + + + + Save &As... + + + + + &Save + + + + + &Comment + + + + + &Key + + + + + &New Paragraph + + + + + No&te + + + + + &Paragraph + + + + + &Hyperlink + + + + + &Inline text + + + + + Str&aight Line + + + + + Pol&yline + + + + + &Rectangle + + + + + &Polygon + + + + + &Ellipse + + + + + &Freehand Curve + + + + + &Highlight + + + + + &Underline + + + + + Stri&keout + + + + + &Squiggly + + + + + Go to document &start + + + + + Go to document &end + + + + + Go to &next page + + + + + Go to &previous page + + + + + Go &to next line + + + + + Go t&o previous line + + + + + &Get Source + + + + + &Encryption... + + + + + &Certificates... + + + + + &Sanitize... + + + + + Sanitize document to remove sensitive information. + + + + + Automatic &Document Refresh + + + + + Automatically reloads the document if a change made by an external program is detected. + + + + + Become a &Sponsor + + + + + Create &Bitonal Document... + + + + + Create Bitonal Document + + + + + Convert the colored images to monochromatic to create a bitonal document. + + + + + &Bookmark Page + + + + + Bookmark Page + + + + + Bookmark page for fast navigation. + + + + + &Go to Next Bookmark + + + + + Go to Next Bookmark + + + + + Navigates to the next bookmarked page. + + + + + Go to Previous Boo&kmark + + + + + Go to Previous Bookmark + + + + + Navigates to the previous bookmarked page. + + + + + &Export Bookmarks + + + + + Export Bookmarks + + + + + Export bookmarks to the file. + + + + + &Import Bookmarks + + + + + Import Bookmarks + + + + + Import bookmarks from the file. + + + + + &Generate Bookmarks Automatically + + + + + Generate Bookmarks Automatically + + + + + If checked, bookmarks for main document chapters are generated automatically. + + + + + Display &Render Times + + + + + Display Render Times + + + + + PDFEncryptionSettingsDialog + + + Encryption Settings + + + + + Encryption Method + + + + + Encryption algorithm + + + + + <html><head/><body><p>Select encryption algorithm. AES-256 is strongly recommended, because older encryption algorithm can be potentially broken. Select older algorithms (as AES-128 or RC4) only, if you need backward compatibility. Also, choose a strong password to ensure strong encryption.</p><p>Public key security using certificate is also supported. In that case, you must select a certificate with private key, and this certificate is then used to encrypt data. User, which wants to open document encrypted with certificate, must have a private key to the certificae.</p></body></html> + + + + + Certificate + + + + + Passwords + + + + + Password (document open) + + + + + Password (owner access) + + + + + Encrypt Contents + + + + + Encrypt all document contents, including document metadata + + + + + Encrypt all document contets except metadata + + + + + Encrypt file attachments only + + + + + Permissions + + + + + Print (low resolution) + + + + + Fill interactive forms + + + + + Print (high resolution) + + + + + Accessibility + + + + + Modify document contents + + + + + Assemble document (insert, rotate, delete pages...) + + + + + Edit interactive items (annotations, forms, ...) + + + + + Copy/extract document content + + + + + PDFOptimizeDocumentDialog + + + Document optimization + + + + + Optimization Settings + + + + + PDFPageContentEditorEditedItemSettings + + + Dialog + + + + + Text + + + + + Text Content + + + + + Image + + + + + Image Content + + + + + Height + + + + + Width + + + + + Ratio + + + + + Load Image + + + + + Style + + + + + + ... + + + + + Pen Style + + + + + Pen Color + + + + + Brush Style + + + + + Pen Width + + + + + Stroke path + + + + + Brush Color + + + + + Fill path + + + + + Transformation + + + + + Translation in Y + + + + + Translation in X + + + + + Scale in X + + + + + Scale in Y + + + + + Shear factor + + + + + <html><head/><body><p>Rotation angle</p></body></html> + + + + + φ + + + + + <html><head/><body><p>s<span style=" vertical-align:sub;">x</span></p></body></html> + + + + + <html><head/><body><p>s<span style=" vertical-align:sub;">y</span></p></body></html> + + + + + m + + + + + <html><head/><body><p>t<span style=" vertical-align:sub;">x</span></p></body></html> + + + + + <html><head/><body><p>t<span style=" vertical-align:sub;">y</span></p></body></html> + + + + + PDFPageContentEditorStyleSettings + + + Style Settings + + + + + Text Alignment + + + + + Pen Style + + + + + Pen Width + + + + + Brush Color + + + + + + + ... + + + + + Pen Color + + + + + Font + + + + + Text Angle + + + + + Brush Style + + + + + PDFPageContentEditorWidget + + + Content editor + + + + + Toolbox + + + + + Geometry Tools + + + + + Align to Top + + + + + Align to Vertical Center + + + + + Align to Bottom + + + + + Set Same Width + + + + + Set Same Height + + + + + Set Same Size + + + + + Align to Left + + + + + Align to Horizontal Center + + + + + Align to Right + + + + + Center Horizontally + + + + + Center Vertically + + + + + Center to Page Media Box + + + + + Layout Tools + + + + + Make Horizontal Layout + + + + + Make Vertical Layout + + + + + Make Form Layout + + + + + Make Grid Layout + + + + + Appearance + + + + + Content + + + + + PDFRenderToImagesDialog + + + Render Document to Images + + + + + Output Files Settings + + + + + Pages to render + + + + + File template + + + + + All + + + + + Generate into directory + + + + + ... + + + + + Pages: + + + + + Image Resolution + + + + + Resolution + + + + + Pixels + + + + + DPI + + + + + dots/inch + + + + + px + + + + + Image Format Settings + + + + + Format + + + + + Subtype + + + + + Gamma + + + + + Optimized write + + + + + Quality + + + + + Compression + + + + + Progressive scan write + + + + + + Enable + + + + + PDFRenderingErrorsWidget + + + Rendering errors + + + + + PDFSanitizeDocumentDialog + + + Document sanitization + + + + + Sanitization Settings + + + + + PDFSelectPagesDialog + + + All pages + + + + + Even pages + + + + + Odd pages + + + + + Custom page range: + + + + + Visible pages + + + + + PDFSidebarWidget + + + Outline + + + + + Thumbnails + + + + + Visibility + + + + + Attachments + + + + + Speech + + + + + Signatures + + + + + Bookmarks + + + + + Notes + + + + + Ctrl+S + + + + + + Search text or wildcard... + + + + + Synchronize thumbnails with current page + + + + + Volume + + + + + Pitch + + + + + Rate + + + + + PDFToolTranslationContext + + + Help + + + + + Show list of all available commands. + + + + + PDFTool help + + + + + List of available commands + + + + + Command + + + + + Tool + + + + + + + + Description + + + + + Text Encoding + + + + + When you redirect console to a file, then specific codec is used to transform output text to target encoding. UTF-8 encoding is used by default. For XML output, you should use only UTF-8 codec. Available codecs: + + + + + Suggested codec: UTF-8 or %1 + + + + + Unknown console format '%1'. Defaulting to text console format. + + + + + Unknown console date/time format '%1'. Defaulting to short date/time format. + + + + + Unknown text layout analysis algorithm '%1'. Defaulting to automatic algorithm selection. + + + + + Unknown audio format '%1'. Defaulting to mp3 audio format. + + + + + Image format '%1' is not supported. Defaulting to png. + + + + + Image format subtype '%1' is not supported. + + + + + Image compression for current format is not supported. + + + + + Invalid compression level '%1'. + + + + + Image quality settings for current format is not supported. + + + + + Invalid image quality '%1'. + + + + + Optimized write is not supported. + + + + + Progressive scan write is not supported. + + + + + Invalid image resolution mode '%1'. Defaulting to dpi. + + + + + Cannot set dpi value, resolution mode must be dpi. + + + + + Dpi must be in range from %1 to %2. Defaulting to %3. + + + + + Invalid image dpi value '%1'. + + + + + Cannot set pixel value, resolution mode must be pixel. + + + + + Pixel value must be in range from %1 to %2. Defaulting to %3. + + + + + Invalid image pixel value '%1'. + + + + + Unknown color management system '%1'. Defaulting to lcms. + + + + + Uknown color management system accuracy '%1'. Defaulting to medium. + + + + + Unknown color adaptation method '%1'. Defaulting to bradford. + + + + + Uknown color management system rendering intent '%1'. Defaulting to auto. + + + + + Uknown bool value '%1'. Default value is used. + + + + + Uknown bool value '%1'. GPU rendering is used as default. + + + + + Uknown MSAA sample count '%1'. 4 samples are used as default. + + + + + Uknown rasterizer count '%1'. %2 rasterizers are used as default. + + + + + Invalid raterizer count: %1. Correcting to use %2 rasterizers. + + + + + Unknown encryption algorithm '%1'. Defaulting to AES-256 encryption. + + + + + Unknown encryption contents mode '%1'. Defaulting to encrypt all contents. + + + + + Invalid password provided. + + + + + + Error occured during document reading. %1 + + + + + + Warning: %1 + + + + + Attachments + + + + + Show list or save attached files. + + + + + Attached files of document %1 + + + + + Attached files overview + + + + + + + + + + + + + + + No. + + + + + + File name + + + + + Mime type + + + + + Mime type description + + + + + File description + + + + + Packed size [bytes] + + + + + Target file name must not be specified, if multiple files are being saved. + + + + + + Failed to save attachment to file. %1 + + + + + + + SAPI Error: Cannot enumerate SAPI voices. + + + + + Available voices for given settings: + + + + + Voice list + + + + + + + + + Name + + + + + Gender + + + + + Age + + + + + Lang. Code + + + + + Locale + + + + + + Language + + + + + + Country + + + + + Vendor + + + + + + + Version + + + + + Audio book voices + + + + + List of available voices for audio book conversion. + + + + + Audio book convertor + + + + + Convert your document to a simple audio book. + + + + + No suitable voice found. + + + + + Invalid voice. + + + + + + Cannot create output stream '%1'. + + + + + Cannot create voice. + + + + + Failed to set requested voice. Default voice will be used. + + + + + No text extracted to be converted to audio book. + + + + + Certificate Store + + + + + Certificate store operations (list, add, remove certificates). + + + + + Certificates used in the signature verification + + + + + Certificates + + + + + + + + + + + Type + + + + + + Certificate + + + + + + Organization + + + + + + Valid from + + + + + + Valid to + + + + + User + + + + + System + + + + + Install Certificate + + + + + Install a new user certificate to certificate store. + + + + + Cannot open file '%1'. %2 + + + + + Cannot read certificate from file '%1'. + + + + + Color Profiles List + + + + + Show list of available color profiles. + + + + + Available Color Profiles + + + + + + Identifier + + + + + Output Profiles + + + + + Gray Profiles + + + + + RGB Profiles + + + + + CMYK Profiles + + + + + Decrypt + + + + + Remove encryption from a document (with only owner access only). + + + + + Authorization as owner failed. Encryption removal is not permitted if authorized as user only. + + + + + Document is not encrypted. + + + + + Compare documents + + + + + Compare contents of two documents. + + + + + Exactly two documents must be specified. + + + + + + + Cannot open document '%1'. + + + + + Difference Report + + + + + Differences + + + + + Left Page + + + + + Right Page + + + + + Encrypt + + + + + Encrypt the document (with only owner access only). + + + + + Authorization as owner failed. Encryption change is not permitted if authorized as user only. + + + + + Fetch images + + + + + Fetch image content from document. + + + + + + + Document doesn't allow to copy content. + + + + + Images fetched from document %1 + + + + + + + Overview + + + + + Image No. + + + + + + + + Page No. + + + + + Width [pixels] + + + + + Height [pixels] + + + + + Size [bytes] + + + + + Stored to + + + + + + Cannot write page image to file '%1', because: %2. + + + + + Fetch text + + + + + Fetch text content from document. + + + + + Info + + + + + Retrieve basic informations about a document. + + + + + + Information about document %1 + + + + + Properties: + + + + + + Property + + + + + + + + + + Value + + + + + + + Title + + + + + Subject + + + + + Keywords + + + + + Author + + + + + Creator + + + + + Producer + + + + + Creation date + + + + + Modified date + + + + + + + + + + + + + Yes + + + + + + + + + + + + + + + No + + + + + + + Unknown + + + + + Tagged + + + + + + None + + + + + AcroForm + + + + + XFA + + + + + Form type + + + + + Page count + + + + + Paper format + + + + + Paper size + + + + + File size + + + + + JavaScript + + + + + + Standard + + + + + Public Key + + + + + + Custom + + + + + No authorization required + + + + + Authorized as owner + + + + + Authorized as user + + + + + Encryption + + + + + Authorization + + + + + Metadata encrypted + + + + + Print (low resolution) + + + + + Print + + + + + Copy content + + + + + Accessibility + + + + + Page assembling + + + + + Modify content + + + + + Modify interactive items + + + + + Form filling + + + + + All + + + + + Permissions + + + + + File hashes: + + + + + Algorithm + + + + + Hash + + + + + MD5 + + + + + SHA1 + + + + + SHA256 + + + + + SHA384 + + + + + SHA512 + + + + + Info about used fonts + + + + + Retrieve informations about font usage in a document. + + + + + Type 0 (CID) + + + + + Type 1 (8 bit) + + + + + MM Type 1 (8 bit) + + + + + TrueType (8 bit) + + + + + Type 3 + + + + + MacRoman + + + + + WinAnsi + + + + + PDFDoc + + + + + MacExpert + + + + + Symbol + + + + + ZapfDingbats + + + + + Fonts used in document %1 + + + + + + Font Name + + + + + Font Type + + + + + Encoding + + + + + Pages + + + + + Embedded + + + + + Subset + + + + + + Unicode + + + + + + Object + + + + + + Gen. + + + + + -- + + + + + Substitutions + + + + + Substituted by Font + + + + + Match + + + + + ?? + + + + + Font Character Maps + + + + + Character Map for Font '%1' + + + + + Glyph Index + + + + + Character + + + + + Info about used inks + + + + + Retrieve information about inks used in a document. + + + + + Inks + + + + + Ink list + + + + + Spot + + + + + Color + + + + + Info (JavaScript code) + + + + + Retrieve informations about JavaScript usage in a document. + + + + + JavaScript used in document %1 + + + + + JavaScript Usage Overview + + + + + Context + + + + + + Page Number + + + + + Code Size + + + + + Code Snippet + + + + + Document + + + + + + Named + + + + + + Form + + + + + + Page + + + + + + Annotation + + + + + + Details + + + + + JavaScript #%1 + + + + + Extract document metadata + + + + + Extract document metadata (embedded xml stream). + + + + + Metadata not found in document. + + + + + Info (Named Destinations) + + + + + Retrieve informations about named destinations in a document. + + + + + Named destinations used in document %1 + + + + + Named Destinations + + + + + Left + + + + + Top + + + + + Right + + + + + Bottom + + + + + Zoom + + + + + + Invalid + + + + + XYZ + + + + + Fit + + + + + FitH + + + + + FitV + + + + + FitR + + + + + FitB + + + + + FitBH + + + + + FitBV + + + + + Info (page boxes) + + + + + Retrieve informations about page boxes in a document. + + + + + Page boxes in document %1 + + + + + Pages %1 + + + + + Box + + + + + Media + + + + + Crop + + + + + Bleed + + + + + Trim + + + + + Art + + + + + Structure Tree + + + + + Attributes + + + + + Owner + + + + + Revision + + + + + Hidden + + + + + [null] + + + + + [complex type] + + + + + Properties + + + + + Alternative description + + + + + Expanded form + + + + + Actual text + + + + + Phoneme + + + + + Marked Content Reference %1 + + + + + Structure Object Reference [%1 %2 R] + + + + + Info (Structure tree) + + + + + Examine structure tree in tagged document. + + + + + Structure tree in document %1 + + + + + No structure tree found in document. + + + + + Ink coverage + + + + + Calculate ink coverage of the selected pages, or a whole document. + + + + + Ink Coverage + + + + + Ink Coverage by Page + + + + + %1 Ratio [%] + + + + + %1 Covered [mm^2] + + + + + Sum + + + + + Optimize + + + + + Optimize document size using various algorithms. + + + + + No optimization option has been set. + + + + + Failed to write optimize document. %1 + + + + + Render document + + + + + Render selected pages of document into image files. + + + + + Render document %1 + + + + + Benchmark rendering + + + + + Benchmark page rendering (measure time, detect errors). + + + + + Benchmark rendering of document %1 + + + + + + Statistics + + + + + Unit + + + + + Pages rendered + + + + + - + + + + + Total compile time + + + + + + + + + + msec + + + + + Total render time + + + + + Total wait time + + + + + Total write time + + + + + Total time + + + + + Wall time + + + + + Rendering speed (per core) + + + + + pages / sec (one core) + + + + + Rendering speed (wall time) + + + + + pages / sec + + + + + Compile time ratio + + + + + + + + % + + + + + Render time ratio + + + + + Wait time ratio + + + + + Write time ratio + + + + + Page Statistics + + + + + Compile Time [msec] + + + + + Render Time [msec] + + + + + Wait Time [msec] + + + + + Write Time [msec] + + + + + Total Time [msec] + + + + + Rendering Errors + + + + + Message + + + + + Error + + + + + Warning + + + + + Not implemented + + + + + Not supported + + + + + Information + + + + + Extract pages + + + + + Separate document into single page documents. + + + + + File template is empty. + + + + + File template must contain character '%' for page number. + + + + + File '%1' already exists. Page %2 was not extracted. + + + + + Compute statistics of internal objects used in a document. + + + + + Statistics by Object Class + + + + + Class + + + + + + Percentage [%] + + + + + + Count [#] + + + + + Space Usage [bytes] + + + + + Content Stream + + + + + Graphic State + + + + + Color Space + + + + + Pattern + + + + + Shading + + + + + Image + + + + + Font + + + + + Action + + + + + Other + + + + + Statistics by Object Type + + + + + Merge documents + + + + + Merge multiple documents to a single document. + + + + + At least two documents and target (merged) document must be specified. + + + + + Target file '%1' already exists. Document merging not performed. + + + + + Document doesn't allow to assemble pages. + + + + + Signature verification + + + + + Verify signatures and timestamps in pdf document. + + + + + No document specified. + + + + + Digital signatures/timestamps verification of %1 + + + + + + Signature + + + + + Timestamp + + + + + Signed by + + + + + Signing date + + + + + Timestamp date + + + + + Hash alg. + + + + + Handler + + + + + Signed whole + + + + + + Skipped + + + + + %1 #%2 + + + + + Signed by: %1 + + + + + Certificate status: %1 + + + + + Signature status: %1 + + + + + Signing date: %1 + + + + + Timestamp date: %1 + + + + + Hash algorithm: %1 + + + + + Handler: %1 + + + + + Is whole document signed: %1 + + + + + Byte range covered by signature: %1 + + + + + Errors: + + + + + Warnings: + + + + + Certificate No. #%1 + + + + + Org. unit + + + + + State + + + + + Serial number + + + + + Locality + + + + + Surname + + + + + Forename + + + + + Initials + + + + + Pseudonym + + + + + Qualifier + + + + + Email + + + + + RSA method, %1-bit key + + + + + DSA method, %1-bit key + + + + + EC method, %1-bit key + + + + + DH method, %1-bit key + + + + + Unknown method, %1-bit key + + + + + Encryption method + + + + + Digital signatures + + + + + Non-repudiation + + + + + Key encipherement + + + + + Application data encipherement + + + + + Key agreement + + + + + Verify signatures on certificates + + + + + Verify signatures on revocation information + + + + + Encipher data during key agreement + + + + + Decipher data during key agreement + + + + + Trusted timestamping + + + + + Key usage + + + + + No digital signatures or timestamps found in the document. + + + + + XML export + + + + + Export internal data structure to xml. + + + + + PDFViewerMainWindow + + + PDF Viewer + + + + + &File + + + + + &Go To + + + + + Book&mark Settings + + + + + &View + + + + + Page La&yout + + + + + Re&ndering Options + + + + + &Tools + + + + + &Help + + + + + &Open... + + + + + &Close + + + + + &Quit + + + + + &Single Page + + + + + Ctrl+1 + + + + + &Continuous + + + + + Ctrl+2 + + + + + Two &Pages + + + + + Ctrl+3 + + + + + &Two columns + + + + + Ctrl+4 + + + + + &First page on right side + + + + + First page on right side + + + + + Ctrl+5 + + + + + Rendering &Errors... + + + + + Ctrl+E + + + + + &Antialiasing + + + + + &Text Antialiasing + + + + + &Smooth Pictures + + + + + &Ignore Optional Content Settings + + + + + &Options... + + + + + Ctrl+K + + + + + &Reset to Factory Settings + + + + + &Zoom In + + + + + Zoom &Out + + + + + &About... + + + + + Fit &Page + + + + + Fit &Width + + + + + W + + + + + &Fit Height + + + + + H + + + + + Prope&rties... + + + + + Send by &E-Mail... + + + + + Color | &Inverted + + + + + Color | &Grayscale + + + + + Color | &High Contrast + + + + + Color | &Monochromatic + + + + + Color | &Custom + + + + + Rotate &Right + + + + + Rotate &Left + + + + + &Print... + + + + + &Display Annotations + + + + + Go to document &start + + + + + Go to document &end + + + + + Go to &next page + + + + + Go to &previous page + + + + + Go &to next line + + + + + Go t&o previous line + + + + + &Get Source + + + + + &Certificates... + + + + + Automatic &Document Refresh + + + + + Automatically reloads the document if a change made by an external program is detected. + + + + + Become a &Sponsor + + + + + Become a Sponsor + + + + + &Bookmark Page + + + + + Bookmark Page + + + + + Bookmark page for fast navigation. + + + + + &Go to Next Bookmark + + + + + Go to Next Bookmark + + + + + Navigates to the next bookmarked page. + + + + + Go to Previous Boo&kmark + + + + + Navigates to the previous bookmarked page. + + + + + &Export Bookmarks + + + + + Export Bookmarks + + + + + Export bookmarks to the file. + + + + + &Import Bookmarks + + + + + Import Bookmarks + + + + + Import bookmarks from the file. + + + + + &Generate Bookmarks Automatically + + + + + Generate Bookmarks Automatically + + + + + If checked, bookmarks for main document chapters are generated automatically. + + + + + Display &Render Times + + + + + PDFViewerSettingsDialog + + + Options + + + + + Engine Settings + + + + + Multithreading strategy + + + + + Rendering engine + + + + + Prefetch pages + + + + + + + + + + + + + + + + + + + + + + + + + Enable + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Select a rendering method tailored to your application's requirements. Software Rendering, utilizing QPainter, is a versatile choice that guarantees compatibility across all platforms. It's particularly useful in scenarios where direct access to hardware acceleration isn't crucial. QPainter, part of the Qt framework, excels in rendering 2D graphics with support for various painting styles, image processing, and intricate graphical transformations, making it an excellent tool for applications that require detailed and sophisticated 2D graphics without relying on hardware acceleration.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">On the other hand, for applications that demand high-performance rendering, leveraging the Blend2D library offers a compelling alternative. Blend2D is a high-performance 2D vector graphics engine that utilizes multi-threading to accelerate the rendering process. It does not rely on QPainter or hardware acceleration but instead offers a software-based rendering solution optimized for speed and quality. Blend2D's advanced anti-aliasing techniques ensure crisp and clear image quality, making it suitable for applications where rendering performance and image quality are paramount.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The Prefetch Pages feature is a strategy that can be applied regardless of the rendering method chosen. By pre-rendering pages adjacent to the currently viewed content, this approach minimizes flickering and enhances the smoothness of transitions during scrolling, improving the overall user experience.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">When it comes to optimizing the rendering process, the choice of multithreading strategy plays a crucial role. A Single Thread strategy, where rendering tasks are executed sequentially on a single CPU core, might be preferable in environments where simplicity and predictability are key. For more demanding applications, employing a Multi-threading strategy can significantly improve rendering times. Strategies like Load Balanced distribute the workload evenly across CPU cores without delving into content-specific processing, offering a good performance boost. The Maximum Threads strategy takes full advantage of available CPU resources by allocating as many threads as possible to the rendering tasks, achieving optimal performance and minimizing rendering times.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This delineation between using QPainter for software rendering and Blend2D for high-performance, multi-threaded rendering allows developers to choose the most appropriate rendering pathway based on their specific performance requirements and the graphical complexity of their application.</p></body></html> + + + + + Rendering Settings + + + + + Clip to crop box + + + + + Text antialiasing + + + + + Ignore optional content + + + + + Smooth pictures + + + + + Display page compile/draw time + + + + + Antialiasing + + + + + Display annotations + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The rendering settings control how the rendering engine handles page content and the appearance of displayed graphics. <span style=" font-weight:600;">Antialiasing</span> smooths out the appearance of painted shapes, such as rectangles, vector graphics, and lines, but doesn't affect text. <span style=" font-weight:600;">Text antialiasing</span>, on the other hand, refines the appearance of text characters, leaving other items untouched. Both <span style=" font-weight:600;">Antialiasing </span>and <span style=" font-weight:600;">Text antialiasing </span>are relevant only for the software renderer. If you're using a hardware rendering engine like OpenGL, these settings won't have an impact because OpenGL renders images using MSAA antialiasing (if enabled). </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Smooth pictures</span> option enables pictures to be transformed into device space coordinates using a high-quality image transformation method. This generally results in better image quality. When disabled, a default fast transformation is used, potentially reducing image quality if the source DPI and device DPI differ. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Ignore optional content </span>ignores all optional content settings and renders everything in the content stream. <span style=" font-weight:600;">Clip to crop box</span> restricts the rendering area to the page's crop box, which is usually smaller than the whole page. Graphics outside the crop box aren't drawn, which can be useful for removing printer marks and similar elements. <span style=" font-weight:600;">Display page compile/draw time</span> can be handy for debugging, showing the time taken to compile a page (stored in the cache) and the time taken to render the compiled page contents onto the output device. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Using the <span style=" font-weight:600;">Display annotations</span> setting, you can enable or disable the display of annotations. If annotations are disabled, the user will not be able to interact with them. </p></body></html> + + + + + Shading Settings + + + + + Preferred mesh resolution ratio + + + + + Color tolerance + + + + + Minimal mesh resolution ratio + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shading is executed according to mesh quality criteria, involving <span style=" font-weight:600;">color tolerance</span> and shape tolerance. If the color of the vertices of a triangle in the mesh is too different (exceeding the set color tolerance), then the mesh is refined, and the triangle is subdivided. Some shadings are defined by patterns, such as <span style=" font-style:italic;">Coons patch shading</span> or <span style=" font-style:italic;">Tensor product patch shading</span>, which are also taken into consideration during meshing. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Preferred mesh resolution ratio</span> should be set to optimize the balance between the performance of mesh generation and the quality of the mesh. The optimal triangle size is computed as follows: the total meshing area (typically a page) is multiplied by this ratio to determine the triangle size. For example, if we have an A4 page (210 mm x 297 mm), and the ratio is set to 0.01, then the optimal triangle size is computed as 297 * 0.01 = ~3 mm. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Minimal mesh resolution ratio</span> is a ratio that determines the minimal triangle size. At this boundary, no triangles are subdivided, regardless of color variation or shape quality. This ratio should be set to a value at which a user can barely recognize patterns on the screen (for example, the triangle size should be &lt; 1 mm). However, this also affects performance, as too many triangles can be generated. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Color tolerance</span> is the threshold at which two colors are recognized as different. The comparison is done component-wise, so if at least one color component exceeds this parameter, the colors are treated as different. </p></body></html> + + + + + Cache Settings + + + + + Thumbnail image cache size + + + + + Cached font limit + + + + + + kB + + + + + Compiled page cache size + + + + + Cached instanced font limit + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The rendering engine first compiles the page to enable quick drawing and then stores these compiled pages in a cache. These stored pages usually render much quicker than non-cached pages. The <span style=" font-weight:600;">Compiled Page Cache Size</span> sets the memory limit for these compiled pages, measured in kilobytes. Ideally, this limit should be at least twice as large as the size of the largest compiled page. If a compiled page exceeds this limit, an error will be displayed during rendering. Setting a higher value for this limit can speed up the rendering engine, but it will consume more operating memory. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">There is also a cache for thumbnail images. The <span style=" font-weight:600;">Thumbnail Image Cache Size</span> determines the memory space allocated for these images. This value should be set large enough to accommodate all thumbnail images on the screen. The larger this value is, the quicker thumbnails will display, but at the cost of consuming more operating memory. Please note that thumbnails are stored as bitmaps for rapid drawing, not as precompiled pages. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">During rendering, fonts are cached as well. There are two levels of cache for fonts: one for general fonts and one for instance-specific fonts (fonts at a specific size). The <span style=" font-weight:600;">Cached Font Limit</span> sets the maximum number of fonts that can be stored in the cache. The <span style=" font-weight:600;">Instanced Font Cache Limit</span> sets the maximum number of instance-specific fonts that can be stored. If these cache limits are exceeded, fonts are removed from the cache. However, this only happens when no operation in another thread (like compiling pages) is being performed to avoid race conditions. </p></body></html> + + + + + Shortcuts + + + + + Color management system settings + + + + + Black point compensation + + + + + Device gray color profile + + + + + Accuracy + + + + + Additional color profile directory + + + + + White paper color transformed + + + + + Output color profile + + + + + Rendering intent + + + + + Consider document output intents + + + + + Device RGB color profile + + + + + Color management system + + + + + Device CMYK color profile + + + + + ... + + + + + Color adaptation method (XYZ whitepoint) + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Color Management System</span> governs input and output color profiles and color transformations. This system allows for accurate color representation as defined in the PDF document. For faster color transformations, select 'Generic' to disable this functionality. The <span style=" font-weight:600;">Rendering Intent</span> selection influences the way colors are transformed. While rendering intents are often defined within the PDF document's content streams, you have the option to override them by selecting a different intent from 'Auto'. The <span style=" font-weight:600;">Accuracy</span> setting determines the precision of the color transformation, with higher accuracy consuming more memory. The <span style=" font-weight:600;">Black Point Compensation</span> adjusts for black colors that fall outside the gamut. The <span style=" font-weight:600;">White Paper Color Transformed</span> setting affects the color of the underlying white paper - enabling this will transform pure white from the device RGB profile to the output profile. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Output Color Profile</span> specifies the output (target) rendering profile. This profile should align with the color space that your screen uses to display colors. Additionally, you can set the color spaces for <span style=" font-weight:600;">gray/RGB/CMYK</span> device color spaces. These are used to transform gray/RGB/CMYK colors to the output color profile. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A document may contain output intents, which can be used for transforming between color spaces. If the <span style=" font-weight:600;">Consider Document Output Intents</span> option is checked, the color management system will verify whether the document contains output intents. If such intents are present, they will be used for color transformation as device color spaces (gray/RGB/CMYK). </p></body></html> + + + + + Color Postprocessing + + + + + Sigmoid function slope parameter + + + + + Foreground color + + + + + Background color + + + + + Bitonal threshold + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Foreground</span> and <span style=" font-weight:700;">background</span> colors refer to a custom colors rendering mode, where two colors are used - the paper is drawn with the background color, and the foreground color is used for text and graphics. By default, the background is black and the foreground is green, which is easy on the eyes. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Sigmoid function slope parameter</span> is a parameter in high contrast color rendering. This rendering mode displays all graphics in high contrast. This parameter affects the degree of contrast. Set the value from 1 to 5 for a small contrast change, from 5 to 10 for a medium contrast change, and more than 10 for very high contrast rendering. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Bitonal threshold</span> is used in the bitonal rendering color mode. It distinguishes between black and white colors. However, the threshold for images is determined automatically. </p></body></html> + + + + + Security Settings + + + + + Allow URI link launch + + + + + Allow application launch + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If the application launch is permitted, a message box appears after the <span style=" font-weight:600;">Launch</span> action is triggered, asking the user if they want to execute an external application. If the user confirms the dialog, the external application executes (for example, using the Windows function <span style=" font-weight:600;">ShellExecute</span>). When this option is turned off, no dialog appears and the external application never executes. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If the <span style=" font-weight:600;">URI link</span> launch is allowed, a message box appears asking the user if they want to open the URI link. If the user confirms the dialog, the URI link is opened by the default web browser (or default application if the URI links to the file system). </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Users should exercise caution with these settings and only confirm execution if the document is safe and comes from a reliable source. Launching external applications and following URI links can pose risks to the user's computer. </p></body></html> + + + + + UI Settings + + + + + Maximum redo steps + + + + + Magnifier size + + + + + Use logical pixels when zooming + + + + + px + + + + + Maximum undo steps + + + + + Magnifier zoom + + + + + Maximum count of recent files + + + + + Developer mode + + + + + Color Scheme (GUI) + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The 'Maximum count of recent files' setting controls the number of recent files displayed in the menu. When a document is opened, it is added to the top of the recent files list. The list is then truncated from the bottom if the number of recent files exceeds the maximum. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Magnifier tool settings</span> determine the appearance of the magnifier. The magnifier tool enlarges the area under the mouse cursor. You can specify the size of the magnifier (in <span style=" font-weight:600;">logical</span> pixels) and its zoom level. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">By specifying the <span style=" font-weight:600;">undo/redo</span> step count, you control the number of undo/redo steps available during document editing. Setting the maximum undo step count to zero disables the undo/redo function. You can also set a nonzero undo step count and a zero redo step count, which would make only undo actions available, with redo actions disabled. Changes are optimized for memory usage, so each undo/redo step shares unmodified objects with others. This means that, roughly speaking, making 10 modifications to a 50 MB document may consume around 51 MB of memory. Actual memory usage depends on the extent of the changes but is usually minimal as changes typically affect a small number of objects (for example, editing a form field or modifying an annotation). </p></body></html> + + + + + Speech Settings + + + + + Voice + + + + + Pitch + + + + + Volume + + + + + Rate + + + + + Voice synthetiser + + + + + Locale + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Configure the speech settings to enable the text-to-speech feature for reading documents. While these settings act as defaults for the text-to-speech function, some can be adjusted later on. The 'Pitch' setting can vary from -1.0 to 1.0, with 0.0 serving as the default value. Similarly, the 'Rate' can range from -1.0 to 1.0, with 0.0 denoting a normal speech flow. Lastly, 'Volume' can be adjusted between 0.0 and 1.0. </p></body></html> + + + + + Form Settings + + + + + Highlight form fields + + + + + Highlight required form fields + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can customize the appearance of form fields using the provided settings, including the option to highlight editable fields. You can separately highlight required form fields in red, while other fields can be emphasized in blue. </p></body></html> + + + + + Digital Signature Verification + + + + + Ignore expired certificates + + + + + Signature verification + + + + + Strict mode + + + + + Use system certificate store + + + + + <html><head/><body><p><span style=" font-weight:600;">Trusted certificate store</span></p></body></html> + + + + + Remove + + + + + <html><head/><body><p>These are the settings for digital signature verification. Digital signatures are verified as strictly as possible to prevent any malicious content or signature manipulation. Verification can also be disabled, if not required. When <span style=" font-weight:600;">Strict mode</span> is enabled, every warning is treated as an error. You have the option to ignore the certificate expiration date, but this should only be done if you fully understand the potential risks involved. Verification uses a list of trusted certificates. System certificates can be added to this list, and you can also manage your own list of trusted certificates. </p></body></html> + + + + + Plugins + + + + + SelectOutlineToRegroupDialog + + + Select Outline + + + + + SettingsDialog + + + Unit Settings + + + + + Units + + + + + Lengths + + + + + Areas + + + + + Angles + + + + + + Soft Proofing Settings + + + + + Proofing intent + + + + + Proofing profile + + + + + Alarm color + + + + + Auto + + + + + Perceptual + + + + + Relative colorimetric + + + + + Absolute colorimetric + + + + + Saturation + + + + + SettingsDockWidget + + + Settings + + + + + Left Document + + + + + + Page Selection: + + + + + Right Document + + + + + Options + + + + + Compare texts as vector graphics + + + + + Compare text characters instead of words + + + + + Transparency | Overlay View + + + + + Colors + + + + + Remove + + + + + Add + + + + + Replace + + + + + Move + + + + + SignDialog + + + Dialog + + + + + Sign Method + + + + + Method + + + + + Certificate + + + + + Password + + + + + Parameters + + + + + Reason + + + + + Contact Info + + + + + StatisticsGraphWidget + + + Form + + + + + codegen::GeneratedPDFObject + + + Object + + + + + Array (simple) + + + + + Array (complex) + + + + + Dictionary + + + + + Item (simple), name = '%1' + + + + + Item (complex), name = '%1' + + + + + pdf::PDFAsynchronousTextLayoutCompiler + + + Indexing document contents... + + + + + pdf::PDFAttachmentsTreeItemModel + + + Files + + + + + pdf::PDFCMSManager + + + Generic + + + + + Little CMS %1.%2 + + + + + Gray D65, γ = 2.2 + + + + + Gray D50, γ = 2.2 + + + + + Gray D93, γ = 2.2 + + + + + Gray D65, γ = 1.0 (linear) + + + + + Gray D50, γ = 1.0 (linear) + + + + + Gray D93, γ = 1.0 (linear) + + + + + HDTV (ITU-R BT.709) + + + + + Adobe RGB 1998 + + + + + PAL / SECAM + + + + + NTSC + + + + + Adobe Wide Gamut RGB + + + + + ProPhoto RGB + + + + + sRGB + + + + + pdf::PDFCertificateListHelper + + + Password protected + + + + + pdf::PDFCertificateManagerDialog + + + Create + + + + + Open Directory + + + + + Delete + + + + + Import + + + + + Confirm delete + + + + + Do you want to delete certificate '%1'? + + + + + + Error + + + + + Cannot delete certificate '%1' + + + + + + + Import Certificate + + + + + Certificate file (*.pfx);;All files (*.*) + + + + + Target file exists. Please rename the certificate file to import. + + + + + Certificate '%1' was successfully imported. + + + + + Error occured during certificate '%1' import. + + + + + pdf::PDFCreateCertificateDialog + + + 1024 bits + + + + + 2048 bits + + + + + 4096 bits + + + + + + Certificate Protection + + + + + Enter password to protect your certificate. + + + + + Enter password again to verify password text. + + + + + + + + Error + + + + + Reentered password is not equal to the first one! + + + + + Please enter a name! + + + + + Please enter an organization name! + + + + + Please enter an email address! + + + + + pdf::PDFCreateFreeTextTool + + + Text + + + + + Enter text for free text panel + + + + + pdf::PDFCreateHighlightTextTool + + + Select Color + + + + + pdf::PDFCreateHyperlinkTool + + + Hyperlink + + + + + Enter url address of the hyperlink + + + + + pdf::PDFCreatePCElementImageTool + + + Select Image + + + + + pdf::PDFCreateStickyNoteTool + + + Sticky note + + + + + Enter text to be displayed in the sticky note + + + + + pdf::PDFDependentLibraryInfo + + + Qt + + + + + LGPLv3 + + + + + https://www.qt.io/ + + + + + libjpeg + + + + + permissive + ack. + + + + + https://www.ijg.org/ + + + + + %1 + + + + + + %1.%2 + + + + + FreeType + + + + + FTL + + + + + %1.%2.%3 + + + + + https://www.freetype.org/index.html + + + + + OpenJPEG + + + + + + 2-clause MIT license + + + + + https://www.openjpeg.org/ + + + + + OpenSSL + + + + + Apache 2.0 + + + + + https://www.openssl.org/ + + + + + LittleCMS + + + + + http://www.littlecms.com/ + + + + + zlib + + + + + + zlib specific + + + + + https://zlib.net/ + + + + + Blend2D + + + + + https://blend2d.com/ + + + + + pdf::PDFDiff + + + No document to be compared. + + + + + No page to be compared. + + + + + Invalid page range. + + + + + Comparing documents. + + + + + Page no. %1 was moved to a page no. %2. + + + + + Page no. %1 was added. + + + + + Page no. %1 was removed. + + + + + Removed text character from page %1. + + + + + Removed vector graphics from page %1. + + + + + Removed image from page %1. + + + + + Removed shading from page %1. + + + + + Added text character to page %1. + + + + + Added vector graphics to page %1. + + + + + Added image to page %1. + + + + + Added shading to page %1. + + + + + Text '%1' has been added to page %2. + + + + + Text '%1' has been removed from page %2. + + + + + Text '%1' on page %2 has been replaced by text '%3' on page %4. + + + + + Invalid + + + + + Page moved + + + + + Page added + + + + + Page removed + + + + + Removed text character + + + + + Removed vector graphics + + + + + Removed image + + + + + Removed shading + + + + + Added text character + + + + + Added vector graphics + + + + + Added image + + + + + Added shading + + + + + Text added + + + + + Text removed + + + + + Text replaced + + + + + pdf::PDFDocumentManipulator + + + Empty page list. + + + + + + Invalid document. + + + + + + Missing page (%1) in a document. + + + + + + Missing image. + + + + + Error occured during page creation. + + + + + Document %1 + + + + + %1, p. %2 + + + + + %1 Images + + + + + %1 Pages + + + + + pdf::PDFDocumentReader + + + File '%1' cannot be opened for reading. %1 + + + + + File '%1' doesn't exist. + + + + + Device is not opened for reading. + + + + + Can't open device for reading. + + + + + End of file marking was not found. + + + + + Header of PDF file was not found. + + + + + Version of the PDF file is not valid. + + + + + + Start of object reference table not found. + + + + + + + + Can't read object at position %1. + + + + + Invalid trailer dictionary. + + + + + Empty xref table. + + + + + pdf::PDFDocumentSanitizer + + + Document info was removed. + + + + + Metadata streams removed: %1 + + + + + Outline was removed. + + + + + File attachments removed: %1. + + + + + Embedded files were removed. + + + + + Search index was removed. + + + + + Markup annotations removed: %1. + + + + + Page thumbnails removed: %1. + + + + + pdf::PDFDocumentTextFlowEditorModel + + + Page No. + + + + + Type + + + + + State + + + + + + Text + + + + + Title + + + + + Language + + + + + Special + + + + + Removed + + + + + Modified + + + + + Active + + + + + pdf::PDFDocumentWriter + + + + Writing of encrypted documents is not supported. + + + + + + + File '%1' can't be opened for writing. %2 + + + + + Device is not writable. + + + + + pdf::PDFEditObjectDialog + + + Edit Annotation + + + + + pdf::PDFExtractImageTool + + + Image of size %1 x %2 pixels was copied to the clipboard. + + + + + pdf::PDFFindTextTool + + + + Find + + + + + Case sensitive + + + + + Whole words only + + + + + Previous + + + + + Next + + + + + Search text + + + + + Find (%1/%2) + + + + + pdf::PDFFormFieldSignatureEditor + + + Signature Unknown + + + + + Signature Valid + + + + + Signature Invalid + + + + + pdf::PDFLexicalAnalyzer + + + Expected a number, but end of stream reached. + + + + + Invalid format of number. Character '%1' appeared. + + + + + Both '+' and '-' appeared in number. Invalid format of number. + + + + + Bad format of number - no digits appeared. + + + + + Real number overflow. + + + + + Hexadecimal number must follow character '#' in the name. + + + + + Invalid character in hexadecimal string. + + + + + Unexpected end of stream reached while scanning hexadecimal string. + + + + + Invalid character '%1' + + + + + + Unexpected character '%1' in the stream. + + + + + Trying to seek stream position to %1 bytes from the start, byte offset is invalid. + + + + + Can't read %1 bytes from the input stream. Input stream end reached. + + + + + Unexpected end of stream reached. + + + + + Error near position %1. %2 + + + + + pdf::PDFObjectEditorAnnotationsModel + + + + + + + + + + General + + + + + + + Type + + + + + + + Text + + + + + + Link + + + + + + + + + Free text + + + + + + + + + + + + + + Line + + + + + + Square + + + + + + Circle + + + + + Polygon + + + + + Polyline + + + + + + Highlight + + + + + + Underline + + + + + Squiggly + + + + + Strike Out + + + + + Caret + + + + + + + + Stamp + + + + + Ink + + + + + + File attachment + + + + + Redaction + + + + + Rectangle + + + + + + + + Contents + + + + + Author + + + + + Subject + + + + + Annotation name + + + + + + Info + + + + + Modified + + + + + Created + + + + + + + Options + + + + + Invisible + + + + + Hidden + + + + + Print + + + + + No Zoom + + + + + No Rotate + + + + + No View + + + + + Readonly + + + + + Locked + + + + + Toggle No View + + + + + Locked Contents + + + + + Modify appearance + + + + + + + + + + + + Appearance + + + + + + Colors + + + + + Color + + + + + Interior color + + + + + + + Transparency + + + + + Blend mode + + + + + Fill opacity + + + + + Stroke opacity + + + + + Language + + + + + Modify border + + + + + + + + Border + + + + + + Border Style + + + + + Width + + + + + + + + + + + + + + + + + + + + Style + + + + + Solid + + + + + Dashed + + + + + Beveled + + + + + Inset + + + + + + Border Effect + + + + + Cloudy + + + + + + + + None + + + + + Intensity + + + + + + Sticky note + + + + + Comment + + + + + Key + + + + + Note + + + + + Help + + + + + New Paragraph + + + + + Paragraph + + + + + Insert + + + + + Open + + + + + Invert + + + + + Outline + + + + + Push + + + + + + Alignment + + + + + + + + Intent + + + + + Callout + + + + + Typewriter + + + + + Callout line ending + + + + + Line start + + + + + Line end + + + + + Leader line length + + + + + Leader line extension + + + + + Leader line offset + + + + + Arrow + + + + + Dimension + + + + + Cloud + + + + + Line dimension + + + + + Polygon dimension + + + + + Caption + + + + + Caption position + + + + + Inline + + + + + Top + + + + + Name + + + + + Image + + + + + Snapshot + + + + + Icon + + + + + Graph + + + + + Push-pin + + + + + Paperclip + + + + + Tag + + + + + + + Redact + + + + + Overlay text + + + + + Repeat overlay text + + + + + Left + + + + + Center + + + + + Right + + + + + Diamond + + + + + Open arrow + + + + + Closed arrow + + + + + Butt + + + + + Reversed open arrow + + + + + Reversed closed arrow + + + + + Slash + + + + + pdf::PDFObjectEditorMappedColorAdapter + + + custom + + + + + pdf::PDFObjectEditorWidgetMapper + + + Rectangle + + + + + pdf::PDFOptimizer + + + Stage %1 + + + + + Pass %1 + + + + + Simple objects dereferenced and embedded: %1 + + + + + Null objects entries from dictionaries removed: %1 + + + + + Unused objects removed: %1 + + + + + Identical objects merged: %1 + + + + + Object list shrinked by: %1 + + + + + Bytes saved by recompressing stream: %1 + + + + + pdf::PDFOutlineTreeItemModel + + + Item %1 + + + + + pdf::PDFPageContentEditorEditedItemSettings + + + + Solid + + + + + Dashed + + + + + Dotted + + + + + Dash-dot + + + + + Dash-dot-dot + + + + + Custom + + + + + Image + + + + + Text + + + + + Style + + + + + Transformation + + + + + Select Image + + + + + Select Color for Pen + + + + + Select Color for Brush + + + + + pdf::PDFPageContentEditorStyleSettings + + + + None + + + + + + Solid + + + + + Dashed + + + + + Dotted + + + + + Dash-dot + + + + + Dash-dot-dot + + + + + Horizontal + + + + + Vertical + + + + + B-Diagonal + + + + + F-Diagonal + + + + + Cross + + + + + Edit Item + + + + + Content + + + + + Appearance + + + + + Select Font + + + + + Select Color for Pen + + + + + Select Color for Brush + + + + + pdf::PDFParser + + + Stream ended inside array. + + + + + Dictionary key must be a name. + + + + + End of stream inside dictionary reached. + + + + + Streams are not allowed in this context. + + + + + Stream length is not specified. + + + + + Bad value of stream length. It should be an integer number. + + + + + Length of the stream buffer is negative (%1). It must be a positive number. + + + + + Stream data should be in external file, but invalid file name is specified. + + + + + Can't open stream data stored in external file '%1'. + + + + + End of stream should end in keyword 'endstream'. + + + + + Cannot read object. Unexpected token appeared. + + + + + Cannot read object. End of stream reached. + + + + + pdf::PDFParsingContext + + + Cyclical reference found while parsing object %1 %2. + + + + + Function dictionary expected. + + + + + Fuction has invalid domain. + + + + + Fuction has invalid range. + + + + + Sampled function has invalid sample size. + + + + + Sampled function has invalid count of bits per sample. + + + + + Sampled function hasn't any output. + + + + + Sampled function has invalid encode array. + + + + + Sampled function has invalid decode array. + + + + + Not enough samples for sampled function. + + + + + Exponential function can have only one input value. + + + + + + Invalid domain of exponential function. + + + + + Invalid parameter of exponential function (at x = 0.0). + + + + + Invalid parameter of exponential function (at x = 1.0). + + + + + Stitching function can have only one input value. + + + + + Stitching function has different function count. Expected %1, actual %2. + + + + + Stitching function has invalid encode array. Expected %1 items, actual %2. + + + + + Functions in stitching function has different number of output variables. + + + + + Stitching function has invalid functions. + + + + + Stitching function hasn't functions array. + + + + + Empty program in PostScript function. + + + + + Invalid function type: %1. + + + + + pdf::PDFPickTool + + + Use key 'C' to show/hide large cross. + + + + + pdf::PDFRenderingErrorsWidget + + + Page + + + + + Error type + + + + + Description + + + + + Error + + + + + Warning + + + + + Not implemented + + + + + Not supported + + + + + pdf::PDFScreenshotTool + + + Page contents of size %1 x %2 pixels were copied to the clipboard. + + + + + pdf::PDFSecurityHandlerFactory + + + User password contains invalid characters: %1. + + + + + Owner password contains invalid characters: %1. + + + + + Invalid certificate or password. + + + + + pdf::PDFSelectPagesDialog + + + + Error + + + + + Selected page range is empty. + + + + + pdf::PDFSelectTableTool + + + Table region was selected. Use left/right mouse buttons to add/remove rows/columns, then use Enter key to copy the table. + + + + + pdf::PDFTranslationContext + + + Circular dependence in actions found. + + + + + Invalid action. + + + + + + Text + + + + + + + Line + + + + + Free Text + + + + + Square + + + + + Circle + + + + + Polygon + + + + + Polyline + + + + + Highlight + + + + + Underline + + + + + Squiggly + + + + + Strike Out + + + + + Stamp + + + + + Caret + + + + + Ink + + + + + Popup + + + + + File Attachment + + + + + Sound + + + + + Movie + + + + + Widget + + + + + + Screen + + + + + Printer Mark + + + + + Trap Net + + + + + Watermark + + + + + Redaction + + + + + Projection + + + + + 3D + + + + + + Rich Media + + + + + Reply + + + + + &Approved + + + + + APPROVED + + + + + As &Is + + + + + AS IS + + + + + &Confidential + + + + + CONFIDENTIAL + + + + + &Departmental + + + + + DEPARTMENTAL + + + + + Dra&ft + + + + + DRAFT + + + + + &Experimental + + + + + EXPERIMENTAL + + + + + E&xpired + + + + + EXPIRED + + + + + Fina&l + + + + + FINAL + + + + + For Co&mment + + + + + FOR COMMENT + + + + + For P&ublic Release + + + + + FOR PUBLIC RELEASE + + + + + Not A&pproved + + + + + NOT APPROVED + + + + + N&ot For Public Release + + + + + NOT FOR PUBLIC RELEASE + + + + + &Sold + + + + + SOLD + + + + + &Top Secret + + + + + TOP SECRET + + + + + Normal + + + + + Multiply + + + + + Overlay + + + + + Darken + + + + + Lighten + + + + + ColorDodge + + + + + ColorBurn + + + + + HardLight + + + + + SoftLight + + + + + Difference + + + + + Exclusion + + + + + Hue + + + + + Saturation + + + + + Color + + + + + Luminosity + + + + + + + Unknown + + + + + Invalid pass encoding data in CCITT stream. + + + + + CCITT b2 index out of range. + + + + + Invalid horizontal encoding data in CCITT stream. + + + + + + + Invalid vertical encoding data in CCITT stream. + + + + + Invalid index of CCITT changing element a1: a1 = %1, columns = %2. + + + + + Invalid CCITT run length code word. + + + + + Invalid CCITT 2D mode. + + + + + + Conversion from gray to output device using CMS failed. + + + + + + Conversion from gray to output device using CMS failed - invalid data format. + + + + + + Conversion from RGB to output device using CMS failed. + + + + + + Conversion from RGB to output device using CMS failed - invalid data format. + + + + + + Conversion from CMYK to output device using CMS failed. + + + + + + Conversion from CMYK to output device using CMS failed - invalid data format. + + + + + + Conversion from XYZ to output device using CMS failed. + + + + + + Conversion from XYZ to output device using CMS failed - invalid data format. + + + + + + Conversion from icc profile space to output device using CMS failed. + + + + + + Conversion from icc profile space to output device using CMS failed - invalid data format. + + + + + Structure tree item for MCID %1 not found. + + + + + + Page %1 + + + + + Valid tagged document required. + + + + + + JBIG2 invalid header - bad referred segments. + + + + + + JBIG2 invalid segment type %1. + + + + + Invalid JBIG2 file header. + + + + + Invalid JBIG2 file header flags. + + + + + Invalid JBIG2 file - unknown number of pages. + + + + + Invalid JBIG2 file - invalid number of pages (%1). + + + + + Invalid JBIG2 file - segment length is not defined. + + + + + JBIG2 bad segment data - handler doesn't process all segment data - %1 bytes left. + + + + + JBIG2 bad segment data - handler reads %1 bytes past segment end. + + + + + + + + + JBIG2 invalid flags for symbol dictionary segment. + + + + + + + + + + + + + + + + + JBIG2 invalid user huffman code table. + + + + + JBIG2 invalid number of huffam code table - %1 unused. + + + + + + JBIG2 trying to use aritmetic decoder context from previous symbol dictionary, but it doesn't exist. + + + + + JBIG2 symbol height class has more symbols, than defined in the symbol dictionary header. + + + + + Trying to use reference bitmap %1, but number of decoded bitmaps is %2. + + + + + JBIG2 - invalid export flags in symbol dictionary. + + + + + JBIG2 - invalid huffman table flags in text region segment. + + + + + JBIG2 no referred symbols in text region segment. + + + + + JBIG2 invalid symbol length code table for text region segment. + + + + + + JBIG2 - invalid bitmap for generic region. + + + + + JBIG2 invalid pattern dictionary flags. + + + + + JBIG2 unknown data length for pattern dictionary. + + + + + JBIG2 invalid pattern dictionary collective bitmap. + + + + + + JBIG2 region segment information - invalid bit operation mode. + + + + + JBIG2 invalid referenced pattern dictionaries for halftone segment. + + + + + JBIG2 invalid patterns for halftone segment. + + + + + JBIG2 halftoning with more than 8 grayscale bit planes not supported (current bitplanes: %1). + + + + + JBIG2 unknown data length for halftone dictionary. + + + + + JBIG2 invalid halftone grayscale bit plane image. + + + + + JBIG2 halftoning pattern index %1 out of bounds [0, %2] + + + + + JBIG2 - invalid bitmap for halftone region. + + + + + JBIG2 - malformed generic region flags. + + + + + JBIG2 - end of data byte sequence not found for generic region. + + + + + JBIG2 - invalid flags for generic refinement region. + + + + + JBIG2 - operation must be REPLACE for generic refinement region. + + + + + JBIG2 - invalid referred segments (%1) for generic refinement region. + + + + + JBIG2 - invalid referred bitmap size [%1 x %2] instead of [%3 x %4] for generic refinement region. + + + + + JBIG2 - invalid bitmap for generic refinement region. + + + + + JBIG2 end-of-page segment shouldn't contain any data, but has extra data of %1 bytes. + + + + + JBIG2 end-of-page segment detected and ignored. + + + + + JBIG2 end-of-file segment shouldn't contain any data, but has extra data of %1 bytes. + + + + + JBIG2 end-of-file segment detected and ignored. + + + + + JBIG2 underflow of the low value in huffman table. + + + + + JBIG2 unknown extension %1 necessary for decoding the image. + + + + + JBIG2 segment with unknown extension has not defined length. + + + + + JBIG2 segment %1 is not a bitmap. + + + + + JBIG2 bitmap segment %1 not found. + + + + + JBIG2 symbol index %1 not found in symbol table of length %2. + + + + + JBIG2 region segment information flags are invalid. + + + + + JBIG2 segment with unknown data length can't be skipped. + + + + + JBIG2 invalid referred segment %1 referenced by segment %2. + + + + + JBIG2 maximum bitmap size exceeded (%1 > %2). + + + + + JBIG2 invalid bitmap size (%1 x %2). + + + + + JBIG2 invalid bit operation. + + + + + JBIG2 can't read integer. + + + + + JBIG2 - invalid bitmap paint operation. + + + + + JBIG2 - invalid bitmap copy row operation. + + + + + JBIG2 overflow of prefix bit values in huffman table. + + + + + Null + + + + + Boolean + + + + + Integer + + + + + Real + + + + + String + + + + + Name + + + + + Array + + + + + Dictionary + + + + + Stream + + + + + Reference + + + + + + Invalid optional content properties. + + + + + + + + Invalid optional content configuration. + + + + + + Invalid optional content group. + + + + + Cyclic reference error in optional content visibility expression. + + + + + + + Invalid optional content visibility expression. + + + + + Invalid number of matrix elements. Expected 6, actual %1. + + + + + Reading contents of document... + + + + + Authorization failed. Bad password provided. + + + + + Decrypting encrypted contents of document... + + + + + Object stream %1 not found. + + + + + + + + Object stream %1 is invalid. + + + + + Trailer dictionary is not valid. + + + + + Invalid tiling pattern - wrong paint type %1. + + + + + Invalid tiling pattern - wrong tiling type %1. + + + + + Invalid tiling pattern - bounding box is invalid. + + + + + Invalid tiling pattern - steps are invalid. + + + + + + + + Invalid pattern. + + + + + Invalid shading. + + + + + Pattern color space is not valid for shading patterns. + + + + + Invalid shading pattern extends. Expected 2, but %1 provided. + + + + + Invalid function shading pattern domain. Expected 4 values, but %1 provided. + + + + + Invalid function shading pattern domain. Invalid domain ranges. + + + + + + Invalid axial shading pattern color functions. Expected %1 functions, but %2 provided. + + + + + Invalid axial shading pattern coordinates. Expected 4, but %1 provided. + + + + + Invalid axial shading pattern domain. Expected 2, but %1 provided. + + + + + Invalid radial shading pattern coordinates. Expected 6, but %1 provided. + + + + + Invalid radial shading pattern domain. Expected 2, but %1 provided. + + + + + Invalid radial shading pattern color functions. Expected %1 functions, but %2 provided. + + + + + Radial shading cannot have negative circle radius. + + + + + Invalid bits per coordinate (%1) for shading. + + + + + Invalid bits per component (%1) for shading. + + + + + Invalid domain for shading. Expected size is 6, actual size is %1. + + + + + Invalid domain for shading. Expected size is %1, actual size is %2. + + + + + Invalid bits per flag (%1) for shading. + + + + + Invalid vertices per row (%1) for lattice-form gourad triangle meshing. + + + + + Invalid shading pattern type (%1). + + + + + + Error occured during mesh generation of shading: %1 + + + + + + + + + + Error occured during mesh creation of shading: %1 + + + + + Invalid free form gourad triangle data stream. + + + + + Invalid lattice form gourad triangle data stream. + + + + + + + Nonzero flag for first patch (flags = %1). + + + + + Invalid data in tensor product patch shading. + + + + + Invalid data in coons patch shading. + + + + + Unknown crypt filter '%1'. + + + + + + + + Revision %1 of standard security handler is not supported. + + + + + Expected %1 characters long string in entry '%2'. Provided length is %3. + + + + + Expected %1 characters long string in entry '%2'. + + + + + Invalid encryption dictionary. + + + + + Unknown security handler. + + + + + Unsupported version of document encryption (V = %1). + + + + + Invalid value for entry '%1' in encryption dictionary. Name expected. + + + + + Invalid value for entry '%1' in encryption dictionary. Boolean expected. + + + + + Invalid value for entry '%1' in encryption dictionary. Integer expected. + + + + + Crypt filter is not a dictionary! + + + + + Unsupported encryption algorithm '%1'. + + + + + Unsupported authorization event '%1'. + + + + + + Crypt filter '%1' not found. + + + + + Permissions entry in the Encryption dictionary is invalid. + + + + + + + Security permissions are manipulated. Can't open the document. + + + + + + Encryption key length (%1) exceeded maximal value of %2. + + + + + No signature handler for signature format '%1'. + + + + + Certificate format is invalid. + + + + + No signatures in certificate data. + + + + + Certificate is missing. + + + + + Generic error occured during certificate validation. + + + + + Certificate has expired. + + + + + Certificate is self-signed. + + + + + Self-signed certificate in chain. + + + + + Trusted certificate not found. + + + + + Certificate has been revoked. + + + + + Certificate validation failed with code %1. + + + + + Signature is invalid. + + + + + No signatures found in certificate. + + + + + Signature certificate is missing. + + + + + Signed data has different hash function digest. + + + + + Signed data are invalid. + + + + + Data covered by signature are not present. + + + + + %1 bytes are not covered by signature. + + + + + Certificate revocation list (CRL) not checked, validity time has expired. + + + + + Qualified certificate statement not verified. + + + + + Unable to get CRL. + + + + + OK + + + + + Warning + + + + + Error + + + + + Transformation between blending color space failed. + + + + + Invalid clear color - process color %1 was not found in clear color. + + + + + More colors in clear color (%1) than process color channel count (%2). + + + + + + + Transformation of spot color to blend color space failed. + + + + + + + Invalid number bits of image mask (should be 1 bit instead of %1 bits). + + + + + + + + Invalid size of image (%1x%2) + + + + + Invalid image color space. + + + + + Invalid base color space of indexed color space. + + + + + + + Invalid colors for indexed color space. Color space has %1 colors. Provided color count is %4. + + + + + Conversion of indexed image to base color space failed. + + + + + + + + Image masking not implemented! + + + + + + + + + + + Invalid colors for color space. Color space has %1 colors. Provided color count is %4. + + + + + + + + + + Invalid size of the decode array. Expected %1, actual %2. + + + + + Invalid matte color. + + + + + + + Invalid number of color components in color key mask. Expected %1, provided %2. + + + + + + + Invalid size of the decoded array. Expected %1, actual %2. + + + + + + Soft mask can't have masking. + + + + + + Invalid size of soft mask. + + + + + + Soft mask should have only 1 color component (alpha) instead of %1. + + + + + Invalind soft mask. + + + + + Invalid blend color space of soft mask definition. + + + + + Invalid soft mask type. + + + + + Evaulation of soft mask transfer function failed. + + + + + Cannot create shading sampler. + + + + + Image painting not implemented. + + + + + Mesh painting not implemented. + + + + + Invalid source ink index %1. + + + + + Invalid target ink index %1. + + + + + Transformation from source color space to target blending color space failed. + + + + + Gray + + + + + Red + + + + + Green + + + + + Blue + + + + + Cyan + + + + + Magenta + + + + + Yellow + + + + + Black + + + + + Process Generic%1 + + + + + Not enough data to read %1-bit value. + + + + + Can't seek to position %1. + + + + + Can't get substream - remaining %1 bits in buffer. + + + + + + + Can't convert '%1' to a number. + + + + + Closed interval [%1, %2] is invalid. + + + + + Rendering of content type '%1' is not implemented. + + + + + Image encoded by 'package' mode not decoded. + + + + + Image of type '%1' not decoded. + + + + + + XFA: Buttons not implemented. + + + + + XFA: Uknown ui. + + + + + Barcode not implemented! + + + + + XFA: Unknown fill pattern. + + + + + + XFA: special stroke is not supported. + + + + + + Catalog must be a dictionary. + + + + + Required features %1 are unsupported. Document processing can be limited. + + + + + Optional Content User Interaction + + + + + Optional Content Usage + + + + + Acrobat Forms + + + + + Navigation + + + + + Markup Annotations + + + + + Markup of 3D Content + + + + + Multimedia + + + + + U3D Format of PDF 3D + + + + + PRC Format of PDF 3D + + + + + Actions + + + + + JavaScript + + + + + Attached Files + + + + + Attached Files Modification + + + + + Collections of Attached Files + + + + + Collections of Attached Files (editation) + + + + + Digital Signature Validation + + + + + Apply Digital Signature + + + + + Digital Signature Validation (with MDP) + + + + + Geospatial 2D Features + + + + + Geospatial 3D Features + + + + + Navigation for Document Parts + + + + + Separation Simulation + + + + + Transitions/Presentations + + + + + Encryption + + + + + Invalid page rotation. + + + + + + Expected valid kids in page tree. + + + + + Detected cycles in page tree. + + + + + + Expected valid type item in page tree. + + + + + Expected dictionary in page tree. + + + + + Invalid code in the LZW stream. + + + + + Failed to initialize flate compression stream. + + + + + + zlib code: %1 + + + + + Error compressing by flate method: %1 + + + + + Failed to initialize flate decompression stream. + + + + + Error decompressing by flate method: %1 + + + + + Property '%1' should be in range from %2 to %3. + + + + + Invalid property '%1' of the stream predictor parameters. + + + + + Invalid predictor algorithm. + + + + + Security handler required, but not provided. + + + + + Invalid number of color components. Expected number is %1, actual number is %2. + + + + + + Can't load color space, because color space structure is too complex. + + + + + + + + Invalid color space. + + + + + Can't determine alternate color space for ICC based profile. Number of components is %1. + + + + + Can't determine alternate color space for ICC based profile. + + + + + Too much color components for ICC based profile. + + + + + + Operation cancelled! + + + + + Can't determine base color space for indexed color space. + + + + + Invalid colors for indexed color space. Color space has %1 colors, %2 color components and must have %3 size. Provided size is %4. + + + + + Can't determine color name for separation color space. + + + + + Can't determine alternate color space for separation color space. + + + + + Can't determine tint transform for separation color space. + + + + + Pattern doesn't have defined uniform color. + + + + + Invalid colorants for DeviceN color space. + + + + + Can't determine alternate color space for DeviceN color space. + + + + + Can't determine tint transform for DeviceN color space. + + + + + + + Page %1 doesn't exist. + + + + + Start at %1... + + + + + Rendering document into images. + + + + + Page %1 not found. + + + + + Finished at %1... + + + + + %1 miliseconds elapsed to render %2 pages... + + + + + Image_% + + + + + Target directory is empty. + + + + + Target directory '%1' doesn't exist. + + + + + File template is empty. + + + + + File template must contain character '%' for page number. + + + + + Page list is invalid. It should have form such as '1-12,17,24,27-29'. + + + + + Page list contains page, which is not in the document (%1). + + + + + DPI resolution should be in range %1 to %2. + + + + + Pixel resolution should be in range %1 to %2. + + + + + + Invalid page contents. + + + + + Graphic state stack was saved more times, than was restored. + + + + + Transparency group blending color space is invalid. + + + + + Invalid inline image dictionary, ID operator is missing. + + + + + + Expected name in the inline image dictionary stream. + + + + + Invalid inline image stream. + + + + + + Shading pattern graphic state is invalid. + + + + + Uncolored tiling pattern has not underlying color space. + + + + + Unknown operator '%1'. + + + + + Not implemented operator '%1'. + + + + + Current point of path is not set. Path is empty. + + + + + + + Invalid line dash pattern. + + + + + Marked content is not well formed (not enough EMC operators). + + + + + Blend mode '%1' is invalid. + + + + + Graphic state '%1' found, but invalid in resource dictionary. + + + + + Graphic state '%1' not found in resource dictionary. + + + + + Invalid graphic state resource dictionary. + + + + + Trying to restore graphic state more times than it was saved. + + + + + Transformation matrix is not invertible. + + + + + Can't read operand (real number) on index %1. Operand is of type '%2'. + + + + + Can't read operand (real number) on index %1. Only %2 operands provided. + + + + + Can't read operand (integer) on index %1. Operand is of type '%2'. + + + + + Can't read operand (integer) on index %1. Only %2 operands provided. + + + + + Can't read operand (name) on index %1. Operand is of type '%2'. + + + + + Can't read operand (name) on index %1. Only %2 operands provided. + + + + + Can't read operand (string) on index %1. Operand is of type '%2'. + + + + + Can't read operand (string) on index %1. Only %2 operands provided. + + + + + + + Invalid color component count. Provided %1, required %2. + + + + + + + + Invalid pattern for Pattern color space. + + + + + Text object already started. + + + + + Text object ended more than once. + + + + + Font '%1' not found in font dictionary. + + + + + Invalid font dictionary. + + + + + + + + + Invalid font, text can't be printed. + + + + + Invalid parameters of text operator with individual character spacing. + + + + + Invalid operand of text show operator. + + + + + Shading '%1' not found. + + + + + Invalid color space of the image. + + + + + Can't decode the image. + + + + + Color operators are not allowed in uncolored tilling pattern. + + + + + Reference to optional content expected. + + + + + Form of type %1 not supported. + + + + + Unknown XObject type '%1'. + + + + + Invalid format of XObject. Dictionary expected. + + + + + XObject resource dictionary not found. + + + + + Mismatched begin/end of marked content. + + + + + Compatibility operator begin/end mismatch. + + + + + Type 3 font matrix is not invertible. + + + + + Invalid stroking color. + + + + + Invalid filling color. + + + + + Invalid soft mask transfer function. + + + + + Blend mode '%1' not supported. + + + + + Blend mode '%1' is in transparency group, which is not supported. + + + + + Soft masks not supported. + + + + + + + + Invalid number of operands for function. Expected %1, provided %2. + + + + + + + + Invalid number of output variables for function. Expected %1, provided %2. + + + + + Invalid number of operands for identity function. Expected %1, provided %2. + + + + + Invalid instruction pointer. + + + + + + + Division by zero (PostScript engine). + + + + + Number expected for ceil function (PostScript engine). + + + + + Number expected for floor function (PostScript engine). + + + + + Number expected for round function (PostScript engine). + + + + + Number expected for truncate function (PostScript engine). + + + + + Square root of negative value can't be computed (PostScript engine). + + + + + Logarithm's input should be positive value (PostScript engine). + + + + + Logarithm's input should be positive value (PostScript engine). + + + + + Real value expected for conversion to integer (PostScript engine). + + + + + Integer value expected for conversion to real (PostScript engine). + + + + + Can't copy negative number of arguments (PostScript engine). + + + + + Negative index of operand (PostScript engine). + + + + + Negative number of operands (PostScript engine). + + + + + Call stack underflow (PostScript engine). + + + + + Real value expected (PostScript engine). + + + + + Integer value expected (PostScript engine). + + + + + Boolean value expected (PostScript engine). + + + + + Instruction pointer expected (PostScript engine). + + + + + Number expected (PostScript engine). + + + + + Stack overflow occured (PostScript engine). + + + + + Stack underflow occured (PostScript engine). + + + + + Invalid operator (PostScript function) '%1'. + + + + + Invalid program - bad enclosing brackets (PostScript function). + + + + + Invalid program (PostScript function). + + + + + Empty program (PostScript function). + + + + + Stack contains more values, than output size (%1 remains) (PostScript function). + + + + + + Inexact font substitution: font %1 replaced by %2 using font family %3. + + + + + Inexact font substitution: font %1 replaced by %2. + + + + + FontConfig error building pattern for font %1 + + + + + Inexact font substitution: font %1 replaced by standard font Times New Roman. + + + + + Fontconfig error + + + + + Glyph for simple font character code '%1' not found. + + + + + Glyph for composite font character with cid '%1' not found. + + + + + Details + + + + + Font + + + + + Style + + + + + Yes + + + + + No + + + + + Glyph count + + + + + Is CID keyed + + + + + Is bold + + + + + Is italics + + + + + Has vertical writing system + + + + + Has SFNT storage scheme + + + + + Has glyph names + + + + + + Encoding + + + + + None + + + + + Unicode + + + + + MS Symbol + + + + + Japanese Shift JIS + + + + + PRC - Simplified Chinese + + + + + Traditional Chinese + + + + + Korean Extended Wansung + + + + + Korean Standard + + + + + Adobe Standard + + + + + Adobe Expert + + + + + Adobe Custom + + + + + Adobe Latin 1 + + + + + Old Latin 1 + + + + + Apple Roman + + + + + Platform/Encoding = %1 %2 + + + + + FreeType error code %1: %2 + + + + + Can't load system font '%1'. + + + + + Invalid font encoding. + + + + + Font object must be a dictionary. + + + + + Invalid font type. + + + + + + + Invalid differences in encoding entry of the font. + + + + + + Invalid encoding entry of the font. + + + + + Invalid CMAP in CID-keyed font. + + + + + + Invalid descendant font in CID-keyed font. + + + + + Invalid number (%1) of descendant fonts in CID-keyed font - exactly one is required. + + + + + Invalid Type 3 font matrix. + + + + + Invalid Type 3 font character content streams. + + + + + Invalid Type 3 font character range (from %1 to %2). + + + + + + Invalid Type 3 font encoding. + + + + + + Invalid differences in encoding entry of type 3 font. + + + + + Standard + + + + + Mac Roman + + + + + Win Ansi + + + + + PDF Doc + + + + + Mac Expert + + + + + + Symbol + + + + + + Zapf Dingbats + + + + + Mac OS Roman + + + + + Custom + + + + + Times Roman + + + + + Helvetica + + + + + Courier + + + + + Standard font + + + + + Can't load CID font mapping named '%1'. + + + + + Can't fetch code from CMap definition. + + + + + Can't fetch CID from CMap definition. + + + + + Can't use cmap inside cmap file. + + + + + Character count + + + + + Content stream for type 3 font character code '%1' not found. + + + + + Image has not data. + + + + + Soft mask image can't have mask / soft mask itself. + + + + + Regular image can't have Matte entry (used for soft masks). + + + + + Invalid mask image. + + + + + Invalid soft mask object. + + + + + Malformed data while reading JPEG stream. %1 bytes skipped. + + + + + Error reading JPEG (DCT) image: %1. + + + + + JPEG 2000 Warning: %1 + + + + + JPEG 2000 Error: %1 + + + + + Unknown color space for JPEG 2000 image. + + + + + JPEG 2000 image has too much non-alpha channels. Ignoring %1 channels. + + + + + JPEG 2000 image has too much alpha channels. Ignoring %1 alpha channels. + + + + + Incompatible color components for JPEG 2000 image. + + + + + Invalid parameters for filter CCITT fax decode. + + + + + Invalid number of bits per component (%1). + + + + + Invalid XML text. + + + + + Error during converting text to font encoding. Some characters were not converted: '%1'. + + + + + Text font not defined! + + + + + Invalid rendering mode '%1'. Valid values are 0-7. + + + + + + + + + + + + Cannot convert text '%1' to number. + + + + + Text font command requires two attributes - font and size. + + + + + Text translation command requires two attributes - x and y. + + + + + Invalid text matrix parameters. + + + + + Set text matrix command requires six elements - m11, m12, m21, m22, x, y. + + + + + Invalid command '%1'. + + + + + Font '%1' is invalid. + + + + + Info + + + + + %1 (%2 replies) + + + + + #%1: %2 + + + + + Rounded rectangle + + + + + Rectangle + + + + + SVG image + + + + + Dot + + + + + Freehand curve + + + + + Text box '%1' + + + + + Image + + + + + Path + + + + + Compile time: %1 [ms] + + + + + Draw time: %1 [ms] + + + + + Precompiled page size is too high (%1 kB). Cache size is %2 kB. Increase the cache size! + + + + + pdf::PDFWidgetAnnotationManager + + + Annotation + + + + + Show Popup Window + + + + + Copy to Multiple Pages + + + + + Edit + + + + + Delete + + + + + Copy Annotation + + + + + Copy Annotation onto Multiple Pages + + + + + pdf::PDFXRefTable + + + + + + + Invalid format of reference table. + + + + + + + Bad format of reference table entry. + + + + + Trailer dictionary is invalid. + + + + + Offset of previous reference table is invalid. + + + + + + + Invalid format of cross-reference stream. + + + + + Invalid format of cross-reference stream - not enough data in the stream. + + + + + pdfdiff::DifferencesDockWidget + + + Differen&ces + + + + + %1 Differences (+%2 hidden) + + + + + %1 Differences + + + + + Page %1 + + + + + Left %1 + + + + + Right %1 + + + + + No Differences Found! + + + + + pdfdiff::DifferencesDrawInterface + + + Difference + + + + + pdfdiff::MainWindow + + + &Main + + + + + &Differences + + + + + &View + + + + + + + + + Error + + + + + Info + + + + + No differences found between the compared documents. + + + + + + Select PDF document + + + + + XML file (*.xml) + + + + + File '%1' cannot be opened. %2 + + + + + Save results to XML + + + + + Displayed results are empty. Cannot save empty results. + + + + + Save As + + + + + Portable Document (*.pdf);;All files (*.*) + + + + + PDF document (*.pdf) + + + + + Encrypted document + + + + + Enter password to access document content + + + + + pdfdiff::PDFAboutDialog + + + Library + + + + + Version + + + + + License + + + + + URL + + + + + pdfdiff::SettingsDockWidget + + + S&ettings + + + + + pdfpagemaster::AssembleOutputSettingsDialog + + + No Outline + + + + + Join Outlines + + + + + Document Parts + + + + + Select output directory + + + + + pdfpagemaster::MainWindow + + + &Main + + + + + &Insert + + + + + &Select + + + + + &Regroup + + + + + &Zoom + + + + + Ma&ke + + + + + + Select PDF document(s) + + + + + + + PDF document (*.pdf) + + + + + Select + + + + + Regroup + + + + + Encrypted document + + + + + Enter password to access document '%1' + + + + + + + + + + Error + + + + + Document security doesn't permit to organize pages. + + + + + No documents to assemble. + + + + + Document with given filename already exists. + + + + + Images (*.%1) + + + + + Select Image(s) + + + + + Select PDF document + + + + + pdfpagemaster::PDFAboutDialog + + + Library + + + + + Version + + + + + License + + + + + URL + + + + + pdfpagemaster::PageItemModel + + + Page Group + + + + + Document collection + + + + + Page Count: %1 + + + + + Image + + + + + Images + + + + + Blank Page + + + + + Blank Pages + + + + + #BBBB00@Collection + + + + + #D98335@Blank + + + + + #24A5EA@Image + + + + + pdfpagemaster::SelectOutlineToRegroupDialog + + + Select All + + + + + Deselect All + + + + + Invert Selection + + + + + Select Level 1 + + + + + Select Level 2 + + + + + Select subtree + + + + + Deselect subtree + + + + + pdfplugin::AudioBookCreator + + + No suitable voice found. + + + + + + Cannot create output stream '%1'. + + + + + Cannot create voice. + + + + + Failed to set requested voice. + + + + + Audio book plugin is unsupported on your system. + + + + + pdfplugin::AudioBookPlugin + + + &Create Text Stream for Audio Book + + + + + Synchronize Selection from &Table to Graphics + + + + + Synchronize Selection from &Graphics to Table + + + + + &Activate Selection + + + + + &Deactivate Selection + + + + + Select by &Rectangle + + + + + Select by Contained &Text + + + + + Select by Regular &Expression + + + + + Select by Page &List + + + + + Restore &Original Text + + + + + Move Selection &Up + + + + + Move Selection &Down + + + + + Create Audio &Book + + + + + Clear Te&xt Stream + + + + + &Audio Book + + + + + + + + + + Error + + + + + Cannot select items by text, because text is empty. + + + + + Regular expression is not valid. %1 + + + + + Cannot select items by regular expression, because regular expression definition is empty. + + + + + Cannot select items by page indices, because page indices are invalid. %1 + + + + + Cannot select items by page indices, because page indices are empty. + + + + + Question + + + + + Restore original texts in selected items? All changes will be lost. + + + + + Select Audio File + + + + + Audio stream (*.mp3) + + + + + Audio book creator cannot be initialized. + + + + + pdfplugin::AudioTextStreamEditorDockWidget + + + Audio Book Actions + + + + + pdfplugin::CreateRedactedDocumentDialog + + + File Name + + + + + Error + + + + + Cannot convert '%1' to color value. + + + + + pdfplugin::DimensionsPlugin + + + &Horizontal Dimension + + + + + &Vertical Dimension + + + + + &Linear Dimension + + + + + &Perimeter + + + + + &Rectangle Perimeter + + + + + &Area + + + + + R&ectangle Area + + + + + An&gle + + + + + &Show Dimensions + + + + + &Clear Dimensions + + + + + Se&ttings + + + + + &Dimensions + + + + + A = %1 %2 + + + + + p = %1 %2 + + + + + pdfplugin::EditorPlugin + + + &Edit page content + + + + + Create &Text Label + + + + + Create &Freehand Curve + + + + + Create &Accept Mark + + + + + Create &Reject Mark + + + + + Create R&ectangle + + + + + &Create Rounded Rectangle + + + + + Create &Horizontal Line + + + + + Create &Vertical Line + + + + + Create L&ine + + + + + Create &Dot + + + + + Create &SVG Image + + + + + Clear A&ll Graphics + + + + + Ed&itor + + + + + Errors (%2) occured while creating content stream on page %3.<br>%1 + + + + + Error + + + + + Confirm Changes + + + + + The changes to the page content will be written to the document. Do you want to continue? + + + + + Editor Toolbox + + + + + pdfplugin::InkCoverageStatisticsModel + + + Total + + + + + Page Index + + + + + [ mm² ] + + + + + [ % ] + + + + + pdfplugin::ObjectInspectorDialog + + + Document + + + + + Pages + + + + + Content streams + + + + + Graphic states + + + + + Color spaces + + + + + Patterns + + + + + Shadings + + + + + Images + + + + + Forms + + + + + Fonts + + + + + Actions + + + + + Annotations + + + + + Object List + + + + + pdfplugin::ObjectInspectorPlugin + + + Object &Inspector + + + + + Object &Statistics + + + + + O&bject Inspector + + + + + pdfplugin::ObjectStatisticsDialog + + + Statistics by Object Function + + + + + + Statistics by Object Type + + + + + Statistics by Object Class + + + + + Class + + + + + + Percentage [%] + + + + + + Count [#] + + + + + Space Usage [bytes] + + + + + Page + + + + + Content Stream + + + + + Graphic State + + + + + Color Space + + + + + Pattern + + + + + Shading + + + + + Image + + + + + Form + + + + + Font + + + + + Action + + + + + Annotation + + + + + Other + + + + + Type + + + + + pdfplugin::ObjectViewerWidget + + + + %1 %2 R + + + + + Part of object %1 + + + + + <none> + + + + + Null + + + + + Bool + + + + + Integer + + + + + Real + + + + + String + + + + + Name + + + + + Array + + + + + Dictionary + + + + + Stream + + + + + Reference + + + + + null + + + + + true + + + + + false + + + + + Array [%1 items] + + + + + Dictionary [%1 items] + + + + + Stream [%1 items, %2 data bytes] + + + + + Invalid color space of the image. + + + + + Image Stream [%1 items, %2 data bytes, %3 x %4 pixels, %5 bits per component] + + + + + [Unknown] + + + + + %1 (part) + + + + + pdfplugin::OutputPreviewDialog + + + Separations + + + + + Color Warnings | Ink Coverage + + + + + Color Warnings | Rich Black + + + + + Ink Coverage + + + + + Shape Channel + + + + + Opacity Channel + + + + + Process Inks + + + + + Spot Inks + + + + + pdfplugin::OutputPreviewPlugin + + + &Output Preview + + + + + &Ink Coverage + + + + + Output Previe&w + + + + + pdfplugin::OutputPreviewWidget + + + Distribution + + + + + Process Inks + + + + + Spot Inks + + + + + Warning | Ink Coverage + + + + + + OK + + + + + + Failure + + + + + Warning | Rich Black + + + + + Ink Coverage + + + + + Shape/Opacity + + + + + Sample Color + + + + + pdfplugin::PDFObjectInspectorTreeItemModel + + + null + + + + + true + + + + + false + + + + + Array [%1 items] + + + + + Dictionary [%1 items] + + + + + Stream [%1 items, %2 data bytes] + + + + + pdfplugin::RedactPlugin + + + Redact &Rectangle + + + + + Redact &Text + + + + + Redact Text &Selection + + + + + Redact &Page(s) + + + + + Create Redacted &Document + + + + + Redac&t + + + + + Information + + + + + Select text via 'Advanced Search' tool, and then redact it using this tool. Select rows in 'Result' table to select particular results. + + + + + Redact Pages + + + + + Page Range to be Redacted + + + + + Error + + + + + pdfplugin::SignDialog + + + Sign digitally + + + + + Sign digitally (invisible signature) + + + + + + Error + + + + + Certificate does not exist. + + + + + Password to open certificate is invalid. + + + + + pdfplugin::SignaturePlugin + + + &Activate signature creator + + + + + Create &Text Label + + + + + Create &Freehand Curve + + + + + Create &Accept Mark + + + + + Create Reject &Mark + + + + + Create &Rectangle + + + + + Create R&ounded Rectangle + + + + + Create &Horizontal Line + + + + + Create &Vertical Line + + + + + Create &Line + + + + + Create &Dot + + + + + Create SVG &Image + + + + + Clear All &Graphics + + + + + Sign &Electronically + + + + + Sign Digitally &With Certificate + + + + + Certificates &Manager + + + + + Si&gnature + + + + + Confirm Signature + + + + + Document will be signed electronically. Do you want to continue? + + + + + + + Error + + + + + + + Failed to create digital signature. + + + + + Save Signed Document + + + + + Portable Document (*.pdf);;All files (*.*) + + + + + Signature Toolbox + + + + + pdfplugin::SoftProofingPlugin + + + &Soft Proofing + + + + + &Gamut Checking + + + + + Soft &Proofing Settings + + + + + Soft &Proofing + + + + + pdfviewer::ImagePreviewDelegate + + + Toggle this icon to switch image conversion to bitonal format on or off. + + + + + pdfviewer::PDFAboutDialog + + + Library + + + + + Version + + + + + License + + + + + URL + + + + + pdfviewer::PDFActionComboBox + + + Find action... + + + + + pdfviewer::PDFAdvancedFindWidget + + + Page No. + + + + + Phrase + + + + + Context + + + + + Search error + + + + + Search phrase regular expression has error '%1' near symbol %2. + + + + + Results (%1) + + + + + Results + + + + + pdfviewer::PDFBookmarkItemDelegate + + + Page %1 | Generated + + + + + Page %1 + + + + + pdfviewer::PDFBookmarkManager + + + User bookmark for page %1 + + + + + pdfviewer::PDFCreateBitonalDocumentDialog + + + ORIGINAL + + + + + BITONAL + + + + + Perform + + + + + Converting images... + + + + + pdfviewer::PDFDocumentPropertiesDialog + + + Properties + + + + + PDF version + + + + + Title + + + + + Subject + + + + + Author + + + + + Keywords + + + + + Creator + + + + + Producer + + + + + Creation date + + + + + + Modified date + + + + + + + + + + Yes + + + + + + + + + + No + + + + + Unknown + + + + + Content + + + + + Page count + + + + + Paper format + + + + + Paper size + + + + + Trapped + + + + + Custom properties + + + + + File information + + + + + Name + + + + + Directory + + + + + Writable + + + + + Size + + + + + Created date + + + + + Last read date + + + + + Security + + + + + + + None + + + + + Standard + + + + + Public Key + + + + + Custom + + + + + No authorization required + + + + + Authorized as owner + + + + + Authorized as user + + + + + Document encryption + + + + + Authorized as + + + + + Metadata encrypted + + + + + Version + + + + + Permissions + + + + + Print (low resolution) + + + + + Print (high resolution) + + + + + Content extraction + + + + + Content extraction (accessibility) + + + + + Page assembling + + + + + Modify content + + + + + Modify interactive items + + + + + Fill form fields + + + + + TrueType + + + + + Type0 (CID keyed) + + + + + Type1 (8 bit keyed) + + + + + MMType1 (8 bit keyed) + + + + + Type3 (content streams for font glyphs) + + + + + Type + + + + + Font family + + + + + Embedded subset + + + + + Viewer settings + + + + + Default printer settings + + + + + Single page + + + + + Continuous column + + + + + Two continuous columns + + + + + Two pages + + + + + Default + + + + + Show outlines + + + + + Show thumbnails + + + + + Fullscreen + + + + + Show optional content + + + + + Show attachments + + + + + Left to right + + + + + Right to left + + + + + Page layout + + + + + View mode + + + + + Writing direction + + + + + Application default + + + + + Scale + + + + + Simplex + + + + + + Duplex (flip long edge) + + + + + Duplex mode + + + + + Pick tray by page size + + + + + Default print page ranges + + + + + Number of copies + + + + + pdfviewer::PDFEditorMainWindow + + + Standard + + + + + % + + + + + &Sidebar + + + + + Advanced find + + + + + Ad&vanced Find... + + + + + / %1 + + + + + pdfviewer::PDFEncryptionSettingsDialog + + + None + + + + + RC4 128-bit | R4 + + + + + AES 128-bit | R4 + + + + + AES 256-bit | R6 + + + + + Certificate Encryption + + + + + Error + + + + + pdfviewer::PDFEncryptionStrengthHintWidget + + + Very weak + + + + + Weak + + + + + Moderate + + + + + Strong + + + + + Very strong + + + + + pdfviewer::PDFOptimizeDocumentDialog + + + Embed (dereference) simple objects, such as int, bool, real + + + + + Remove null objects from dictionary entries + + + + + Remove unused objects (objects unreachable from document root object) + + + + + Merge identical objects + + + + + Shrink object storage (squeeze free entries) + + + + + Recompress flate streams by maximal compression + + + + + Optimize + + + + + Optimization started! + + + + + Optimization finished! + + + + + Optimized in %1 msecs + + + + + Bytes before optimization: %1 + + + + + Bytes after optimization: %1 + + + + + Bytes saved by optimization: %1 + + + + + Compression ratio: %1 % + + + + + pdfviewer::PDFProgramController + + + Printing document + + + + + Go to action + + + + + Failed to go to destination '%1'. Destination wasn't found. + + + + + Would you like to launch application '%1' in working directory '%2' with parameters '%3'? + + + + + + + + Launch application + + + + + + Executing application failed. Error code is %1. + + + + + Would you like to launch application '%1'? + + + + + Would you like to open URL '%1'? + + + + + + Open URL + + + + + Opening url '%1' failed. + + + + + Save As + + + + + Portable Document (*.pdf);;All files (*.*) + + + + + + Error + + + + + Save Document + + + + + Do you wish to save modified document before it is closed? + + + + + Error while starting email client occured! + + + + + Permission to change document security is denied. + + + + + Failed to create security handler. + + + + + + Reauthorization is required to change document encryption. + + + + + Encrypted document + + + + + Enter password to access document content + + + + + Document '%1' was successfully loaded! + + + + + Document read error: %1 + + + + + %1 - %2 + + + + + + Reset Settings + + + + + Do you wish to restore the default factory settings of the program? All settings changed by the user will be deleted. Application will be closed. + + + + + Default factory settings were restored. Application will be now closed. + + + + + Plugins + + + + + Plugin on/off state has been changed. Please restart application to apply settings. + + + + + + Select PDF document + + + + + PDF document (*.pdf) + + + + + Export Bookmarks As + + + + + JSON (*.json);;All files (*.*) + + + + + JSON (*.json) + + + + + Rendering of page %1: %2 errors occured. + + + + + pdfviewer::PDFRecentFileManager + + + (&%1) %2 + + + + + Recent file dummy &%1 + + + + + pdfviewer::PDFRenderToImagesDialog + + + %1 +Page %2: %3 + + + + + Select output directory + + + + + Cannot write page image to file '%1', because: %2. + + + + + Error + + + + + pdfviewer::PDFSanitizeDocumentDialog + + + Remove document info + + + + + Remove all metadata + + + + + Remove outline + + + + + Remove file attachments + + + + + Remove embedded search index + + + + + Remove comments and other markup annotations + + + + + Remove page thumbnails + + + + + Sanitize + + + + + Sanitization started! + + + + + Sanitization finished! + + + + + Sanitized in %1 msecs + + + + + Bytes before sanitization: %1 + + + + + Bytes after sanitization: %1 + + + + + Bytes saved by sanitization: %1 + + + + + Compression ratio: %1 % + + + + + pdfviewer::PDFSidebarWidget + + + + + + + Error + + + + + Speech feature is unavailable. No speech engines detected. If you're using Linux, please install speech libraries like 'flite' or 'speechd'. + + + + + The speech feature is available, but its options are not properly set. Please check the speech settings in the options dialog. + + + + + Signature - %1 + + + + + Timestamp - %1 + + + + + Unknown + + + + + Certificate is valid. + + + + + Signature is valid. + + + + + Hash algorithm: %1 + + + + + Certificate validation chain + + + + + Protected by RSA method, %1-bit key + + + + + Protected by DSA method, %1-bit key + + + + + Protected by EC method, %1-bit key + + + + + Protected by DH method, %1-bit key + + + + + Unknown protection method, %1-bit key + + + + + Country + + + + + Organization + + + + + Org. unit + + + + + Name + + + + + State + + + + + Serial number + + + + + Locality + + + + + Title + + + + + Surname + + + + + Forename + + + + + Initials + + + + + Pseudonym + + + + + Qualifier + + + + + Email + + + + + Digital signatures + + + + + Non-repudiation + + + + + Key encipherement + + + + + Application data encipherement + + + + + Key agreement + + + + + Verify signatures on certificates + + + + + Verify signatures on revocation information + + + + + Encipher data during key agreement + + + + + Decipher data during key agreement + + + + + Trusted timestamping + + + + + Key usages + + + + + User + + + + + Page %1 + + + + + Save to File... + + + + + Save attachment + + + + + + Failed to save attachment to file. %1 + + + + + Failed to save attachment to file. Attachment is corrupted. + + + + + Add to trusted certificates + + + + + Add to Trusted Certificate Store + + + + + Are you sure want to add '%1' to the trusted certificate store? + + + + + Trusted Certificate Store Error + + + + + Failed to add certificate to the trusted certificate store. + + + + + Follow + + + + + Delete + + + + + Insert + + + + + Rename + + + + + Font Bold + + + + + Font Italic + + + + + Set Target + + + + + Select Named Destination + + + + + OK + + + + + Cancel + + + + + Named Destination + + + + + Fit Page + + + + + Fit Page Horizontally + + + + + Fit Page Vertically + + + + + Fit Rectangle + + + + + Fit Bounding Box + + + + + Fit Bounding Box Horizontally + + + + + Fit Bounding Box Vertically + + + + + XYZ + + + + + pdfviewer::PDFViewerMainWindow + + + Standard + + + + + % + + + + + &Sidebar + + + + + / %1 + + + + + pdfviewer::PDFViewerSettingsDialog + + + Engine + + + + + Rendering + + + + + Shading + + + + + Cache + + + + + Shortcuts + + + + + Colors | CMS + + + + + Colors | Postprocessing + + + + + Security + + + + + UI + + + + + Speech + + + + + Forms + + + + + Signature + + + + + Plugins + + + + + Software | QPainter + + + + + Software | Blend2D | Parallel + + + + + Software | Blend2D | Sequential + + + + + Single thread + + + + + Multithreading (load balanced) + + + + + Multithreading (maximum threads) + + + + + Auto + + + + + Perceptual + + + + + Relative colorimetric + + + + + Absolute colorimetric + + + + + Saturation + + + + + Low + + + + + Medium + + + + + High + + + + + None + + + + + XYZ scaling + + + + + CAT97 matrix + + + + + CAT02 matrix + + + + + Bradford method + + + + + Automatic (or via command line) + + + + + Light scheme + + + + + Dark scheme + + + + + Type + + + + + Certificate + + + + + Organization + + + + + Valid from + + + + + Valid to + + + + + User + + + + + System + + + + + Action + + + + + Shortcut + + + + + Error + + + + + Shortcut '%1' is invalid for action %2. + + + + + Active + + + + + Name + + + + + Author + + + + + Version + + + + + License + + + + + Select color profile directory + + + + diff --git a/translations/PDF4QT_es.ts b/translations/PDF4QT_es.ts new file mode 100644 index 0000000..20450bd --- /dev/null +++ b/translations/PDF4QT_es.ts @@ -0,0 +1,14569 @@ + + + + + Application + + + PDF4QT Editor + + + + + PDF4QT Viewer + + + + + PDF4QT PageMaster + + + + + PDF4QT Diff + + + + + PDF4QT LaunchPad + + + + + AssembleOutputSettingsDialog + + + + Assemble Documents + + + + + ... + + + + + File template + + + + + <html><head/><body><p>In a template file name, you can use symbols '#' for output document number (means output document index, not input document) or '@' for page number of input document (if document contains more pages, it is a page number of a original document), or '%' for index of input document. Use more '#' or '@' or '%' for setting minimal number of digits (if number has less digits, the they are padded with zero).</p></body></html> + + + + + Overwrite existing files + + + + + doc-#.pdf + + + + + Generate into directory + + + + + Outline Mode + + + + + AudioTextStreamEditorDockWidget + + + Text Stream for Audio Book + + + + + CreateRedactedDocumentDialog + + + Create Redacted Document + + + + + Redacted document + + + + + Output file name + + + + + ... + + + + + Appearance + + + + + Fill redacted area with color: + + + + + Options + + + + + Copy document title into redacted document + + + + + Copy document metadata into redacted document + + + + + Copy outline into redacted document + + + + + DifferencesDockWidget + + + Differences + + + + + DimensionTool + + + pt + + + + + in + + + + + mm + + + + + cm + + + + + sq. pt + + + + + sq. in + + + + + sq. mm + + + + + sq. cm + + + + + ° + + + + + rad + + + + + GeneratorMainWindow + + + Code Generator + + + + + Remove + + + + + Clone + + + + + New + + + + + Parameters + + + + + Data type + + + + + Value + + + + + Item type + + + + + Name + + + + + Text description / C++ code + + + + + Delete + + + + + Up + + + + + Down + + + + + New Child + + + + + New Sibling + + + + + File + + + + + Code + + + + + XFA + + + + + Load + + + + + Ctrl+O + + + + + Save + + + + + Ctrl+S + + + + + Save As... + + + + + Set code header (*.h) + + + + + Set code source (*.cpp) + + + + + Generate code + + + + + Ctrl+G + + + + + Set code header XFA + + + + + Set code source XFA + + + + + Generate XFA code + + + + + Set XFA description + + + + + + Select XML definition file + + + + + Create function + + + + + Enter function name + + + + + + Select cpp header + + + + + + Select cpp source + + + + + Select xml definition + + + + + InkCoverageDialog + + + Ink Coverage Calculator + + + + + Ink Coverage + + + + + LaunchApplicationWidget + + + Form + + + + + Title + + + + + TextLabel + + + + + LaunchDialog + + + Launch Application + + + + + Editor + + + + + Viewer + + + + + Diff + + + + + PageMaster + + + + + Go beyond basic browsing. This tool packs a punch with a host of advanced features, including encryption, document reading, digital signature verification, annotation editing, and even support for searching text using regular expressions. Turn pages into images, and enhance your PDF interactions with multiple available plugins. + + + + + Simplify your viewing experience. This lightweight viewer offers essential viewing functions in a clean, user-friendly interface. + + + + + Spot differences effortlessly. This tool allows users to open two documents and receive a detailed list of differences. View these differences in a page-to-page window where they are clearly marked. Save these differences into an XML file for future reference. + + + + + Take control of your documents. Manage whole documents or individual pages with ease. Merge documents into a single file, or split them into multiple ones. You can also move, clone, or add pages with a few clicks, all within an intuitive user interface. + + + + + Error + + + + + Failed to start process '%1' + + + + + MainWindow + + + JBIG2 Image Viewer + + + + + Images + + + + + File + + + + + Add image + + + + + + Ctrl+O + + + + + Clear + + + + + + Ctrl+W + + + + + Add JBIG2 image + + + + + Ctrl+J + + + + + + + Error + + + + + + Open image + + + + + + Workspace + + + + + + &File + + + + + &Edit + + + + + &Insert + + + + + + + &View + + + + + &Make + + + + + + &Help + + + + + + &Toolbars + + + + + &Regroup + + + + + &Add Documents... + + + + + Add Documents + + + + + C&lose + + + + + Alt+F4 + + + + + Clone &Selection + + + + + Ctrl+L + + + + + Re&move Selection + + + + + Del + + + + + Restore Removed &Items + + + + + Ctrl+Shift+R + + + + + Insert &PDF + + + + + Insert PDF + + + + + Ctrl+I + + + + + &Insert Image + + + + + Ctrl+Alt+I + + + + + Insert &Empty Page + + + + + Ctrl+Shift+I + + + + + Cu&t + + + + + Ctrl+X + + + + + &Copy + + + + + Ctrl+C + + + + + &Paste + + + + + Ctrl+V + + + + + Repl&ace Selection + + + + + Ctrl+Alt+R + + + + + Select &None + + + + + Ctrl+N + + + + + Select &All + + + + + Ctrl+A + + + + + Select &Even + + + + + F9 + + + + + Select &Odd + + + + + F10 + + + + + Select &Portrait + + + + + F11 + + + + + Select &Landscape + + + + + F12 + + + + + Rotate &Right + + + + + F4 + + + + + Rotate &Left + + + + + Shift+F4 + + + + + &Zoom In + + + + + Ctrl++ + + + + + Zoo&m Out + + + + + Ctrl+- + + + + + + &Get Source + + + + + + &About... + + + + + + F1 + + + + + &United Document... + + + + + + F5 + + + + + &Separate to Multiple Documents... + + + + + + F6 + + + + + Separate to Multiple Documents (&Grouped)... + + + + + F7 + + + + + &Group + + + + + Ctrl+G + + + + + U&ngroup + + + + + Ctrl+Shift+G + + + + + &Clear + + + + + Regroup by &Even/Odd Pages + + + + + Regroup by Re&verse + + + + + Regroup by &Page Pairs + + + + + Regroup by &Outline + + + + + Regroup by &Alternating Pages + + + + + Regroup by Alternating Pages (&Reversed Order) + + + + + &Invert Selection + + + + + &Undo + + + + + Ctrl+Z + + + + + Re&do + + + + + Ctrl+Y + + + + + &Prepare Icon Theme + + + + + + Become a &Sponsor + + + + + + &Compare + + + + + &Filter + + + + + Open &Left... + + + + + Open &Right... + + + + + &Close + + + + + Ctrl+F4 + + + + + &Previous Difference + + + + + Shift+F6 + + + + + &Next Difference + + + + + Create Compare &Report... + + + + + Filter &Text + + + + + Filter &Vector Graphics + + + + + Filter &Images + + + + + Filter &Shading + + + + + Filter &Page Movement + + + + + View &Differences + + + + + View &Left + + + + + View &Right + + + + + View &Overlay + + + + + &Show Pages with Differences + + + + + Show Pages with Differences + + + + + Save Differences to &XML... + + + + + S&ynchronize View with Differences + + + + + Display &Differences + + + + + Display &Markers + + + + + ObjectInspectorDialog + + + Object Inspector + + + + + Objects + + + + + Current Object + + + + + ObjectStatisticsDialog + + + Object Statistics + + + + + ObjectViewerWidget + + + Form + + + + + Pin + + + + + Unpin + + + + + Information + + + + + Reference + + + + + Type + + + + + Description + + + + + Contents + + + + + OutputPreviewDialog + + + Output Preview + + + + + Settings + + + + + Red + + + + + Blue + + + + + Green + + + + + Simulate separations + + + + + Simulate paper color + + + + + Display + + + + + Images + + + + + Text + + + + + Vector graphics + + + + + Shading patterns + + + + + Tiling patterns + + + + + Ctrl+S + + + + + Color Warnings + + + + + Alarm color + + + + + + % + + + + + Coverage limit + + + + + Select + + + + + Rich black limit + + + + + Inks + + + + + PDFAboutDialog + + + + + About + + + + + + + <html><head/><body><p><span style=" font-weight:600;">PdfForQtViewer</span></p><p>Copyright 2018-2025 Jakub Melka. All rights reserved.</p><p>THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p></body></html> + + + + + + + Used libraries + + + + + PDFAdvancedFindWidget + + + Form + + + + + Search for + + + + + Search Settings + + + + + Search + + + + + Whole words only + + + + + Remove soft hyphen at end of line + + + + + Search for: + + + + + Case sensitive + + + + + Use regular expressions + + + + + Clear + + + + + Regular Expression Settings + + + + + Dot matches everything (including newline characters) + + + + + Multiline matching (enables search using '^' and '$' to mark line beginnings/endings) + + + + + Results + + + + + PDFCertificateManagerDialog + + + Certificate Manager + + + + + Certificates + + + + + PDFCreateBitonalDocumentDialog + + + Create Bitonal Document + + + + + Color to Bitonal Conversion Options + + + + + Automatic (Otsu's 1D method) + + + + + User-Defined Intensity Threshold (0-255): + + + + + PDFCreateCertificateDialog + + + Create Certificate + + + + + Create Self Signed Certificate + + + + + Name + + + + + Organization + + + + + Organization Unit + + + + + Email + + + + + Country + + + + + Key length + + + + + Valid till + + + + + Certificate file + + + + + PDFDocumentPropertiesDialog + + + Document Properties + + + + + + Properties + + + + + File Information + + + + + + Security + + + + + + Fonts + + + + + Display && Print + + + + + Display && Print Settings + + + + + PDFEditorMainWindow + + + PDF Editor + + + + + &File + + + + + &Go To + + + + + Book&mark Settings + + + + + &View + + + + + Page La&yout + + + + + Re&ndering Options + + + + + &Tools + + + + + + &Help + + + + + &Developer + + + + + &Edit + + + + + + &Insert + + + + + Sticky &Note + + + + + &Stamp + + + + + Text Hi&ghlight + + + + + &Open... + + + + + &Close + + + + + &Quit + + + + + &Single Page + + + + + Single Page + + + + + Ctrl+1 + + + + + &Continuous + + + + + Continuous + + + + + Ctrl+2 + + + + + Two &Pages + + + + + Two Pages + + + + + Ctrl+3 + + + + + &Two columns + + + + + Two columns + + + + + Ctrl+4 + + + + + &First page on right side + + + + + First page on right side + + + + + Ctrl+5 + + + + + &Rendering Errors... + + + + + Ctrl+E + + + + + &Antialiasing + + + + + Antialiasing + + + + + &Text Antialiasing + + + + + Text Antialiasing + + + + + &Smooth Pictures + + + + + Smooth Pictures + + + + + &Ignore Optional Content Settings + + + + + Ignore Optional Content Settings + + + + + &Options... + + + + + Ctrl+K + + + + + Reset to &Factory Settings + + + + + &Zoom In + + + + + Zoom &Out + + + + + &About... + + + + + Fit &Page + + + + + Fit &Width + + + + + W + + + + + &Fit Height + + + + + H + + + + + Prope&rties... + + + + + Send by &E-Mail... + + + + + Show Text &Blocks + + + + + Show Text &Lines + + + + + &Find + + + + + Fin&d Previous + + + + + Fi&nd Next + + + + + Select te&xt + + + + + Select &table + + + + + Select &All + + + + + Dese&lect + + + + + &Copy text + + + + + Color | &Inverted + + + + + Color | &Grayscale + + + + + Color | &High Contrast + + + + + Color | &Monochromatic + + + + + Color | &Custom + + + + + Rotate &Right + + + + + Rotate &Left + + + + + &Print... + + + + + Render to &Images... + + + + + &Magnifier + + + + + Magnifier Tool + + + + + &Screenshot + + + + + &Extract Image + + + + + &Display Annotations + + + + + Display Annotations + + + + + &Undo + + + + + &Redo + + + + + &Optimize... + + + + + Optimizes document to reduce file size. + + + + + Save &As... + + + + + &Save + + + + + &Comment + + + + + &Key + + + + + &New Paragraph + + + + + No&te + + + + + &Paragraph + + + + + &Hyperlink + + + + + &Inline text + + + + + Str&aight Line + + + + + Pol&yline + + + + + &Rectangle + + + + + &Polygon + + + + + &Ellipse + + + + + &Freehand Curve + + + + + &Highlight + + + + + &Underline + + + + + Stri&keout + + + + + &Squiggly + + + + + Go to document &start + + + + + Go to document &end + + + + + Go to &next page + + + + + Go to &previous page + + + + + Go &to next line + + + + + Go t&o previous line + + + + + &Get Source + + + + + &Encryption... + + + + + &Certificates... + + + + + &Sanitize... + + + + + Sanitize document to remove sensitive information. + + + + + Automatic &Document Refresh + + + + + Automatically reloads the document if a change made by an external program is detected. + + + + + Become a &Sponsor + + + + + Create &Bitonal Document... + + + + + Create Bitonal Document + + + + + Convert the colored images to monochromatic to create a bitonal document. + + + + + &Bookmark Page + + + + + Bookmark Page + + + + + Bookmark page for fast navigation. + + + + + &Go to Next Bookmark + + + + + Go to Next Bookmark + + + + + Navigates to the next bookmarked page. + + + + + Go to Previous Boo&kmark + + + + + Go to Previous Bookmark + + + + + Navigates to the previous bookmarked page. + + + + + &Export Bookmarks + + + + + Export Bookmarks + + + + + Export bookmarks to the file. + + + + + &Import Bookmarks + + + + + Import Bookmarks + + + + + Import bookmarks from the file. + + + + + &Generate Bookmarks Automatically + + + + + Generate Bookmarks Automatically + + + + + If checked, bookmarks for main document chapters are generated automatically. + + + + + Display &Render Times + + + + + Display Render Times + + + + + PDFEncryptionSettingsDialog + + + Encryption Settings + + + + + Encryption Method + + + + + Encryption algorithm + + + + + <html><head/><body><p>Select encryption algorithm. AES-256 is strongly recommended, because older encryption algorithm can be potentially broken. Select older algorithms (as AES-128 or RC4) only, if you need backward compatibility. Also, choose a strong password to ensure strong encryption.</p><p>Public key security using certificate is also supported. In that case, you must select a certificate with private key, and this certificate is then used to encrypt data. User, which wants to open document encrypted with certificate, must have a private key to the certificae.</p></body></html> + + + + + Certificate + + + + + Passwords + + + + + Password (document open) + + + + + Password (owner access) + + + + + Encrypt Contents + + + + + Encrypt all document contents, including document metadata + + + + + Encrypt all document contets except metadata + + + + + Encrypt file attachments only + + + + + Permissions + + + + + Print (low resolution) + + + + + Fill interactive forms + + + + + Print (high resolution) + + + + + Accessibility + + + + + Modify document contents + + + + + Assemble document (insert, rotate, delete pages...) + + + + + Edit interactive items (annotations, forms, ...) + + + + + Copy/extract document content + + + + + PDFOptimizeDocumentDialog + + + Document optimization + + + + + Optimization Settings + + + + + PDFPageContentEditorEditedItemSettings + + + Dialog + + + + + Text + + + + + Text Content + + + + + Image + + + + + Image Content + + + + + Height + + + + + Width + + + + + Ratio + + + + + Load Image + + + + + Style + + + + + + ... + + + + + Pen Style + + + + + Pen Color + + + + + Brush Style + + + + + Pen Width + + + + + Stroke path + + + + + Brush Color + + + + + Fill path + + + + + Transformation + + + + + Translation in Y + + + + + Translation in X + + + + + Scale in X + + + + + Scale in Y + + + + + Shear factor + + + + + <html><head/><body><p>Rotation angle</p></body></html> + + + + + φ + + + + + <html><head/><body><p>s<span style=" vertical-align:sub;">x</span></p></body></html> + + + + + <html><head/><body><p>s<span style=" vertical-align:sub;">y</span></p></body></html> + + + + + m + + + + + <html><head/><body><p>t<span style=" vertical-align:sub;">x</span></p></body></html> + + + + + <html><head/><body><p>t<span style=" vertical-align:sub;">y</span></p></body></html> + + + + + PDFPageContentEditorStyleSettings + + + Style Settings + + + + + Text Alignment + + + + + Pen Style + + + + + Pen Width + + + + + Brush Color + + + + + + + ... + + + + + Pen Color + + + + + Font + + + + + Text Angle + + + + + Brush Style + + + + + PDFPageContentEditorWidget + + + Content editor + + + + + Toolbox + + + + + Geometry Tools + + + + + Align to Top + + + + + Align to Vertical Center + + + + + Align to Bottom + + + + + Set Same Width + + + + + Set Same Height + + + + + Set Same Size + + + + + Align to Left + + + + + Align to Horizontal Center + + + + + Align to Right + + + + + Center Horizontally + + + + + Center Vertically + + + + + Center to Page Media Box + + + + + Layout Tools + + + + + Make Horizontal Layout + + + + + Make Vertical Layout + + + + + Make Form Layout + + + + + Make Grid Layout + + + + + Appearance + + + + + Content + + + + + PDFRenderToImagesDialog + + + Render Document to Images + + + + + Output Files Settings + + + + + Pages to render + + + + + File template + + + + + All + + + + + Generate into directory + + + + + ... + + + + + Pages: + + + + + Image Resolution + + + + + Resolution + + + + + Pixels + + + + + DPI + + + + + dots/inch + + + + + px + + + + + Image Format Settings + + + + + Format + + + + + Subtype + + + + + Gamma + + + + + Optimized write + + + + + Quality + + + + + Compression + + + + + Progressive scan write + + + + + + Enable + + + + + PDFRenderingErrorsWidget + + + Rendering errors + + + + + PDFSanitizeDocumentDialog + + + Document sanitization + + + + + Sanitization Settings + + + + + PDFSelectPagesDialog + + + All pages + + + + + Even pages + + + + + Odd pages + + + + + Custom page range: + + + + + Visible pages + + + + + PDFSidebarWidget + + + Outline + + + + + Thumbnails + + + + + Visibility + + + + + Attachments + + + + + Speech + + + + + Signatures + + + + + Bookmarks + + + + + Notes + + + + + Ctrl+S + + + + + + Search text or wildcard... + + + + + Synchronize thumbnails with current page + + + + + Volume + + + + + Pitch + + + + + Rate + + + + + PDFToolTranslationContext + + + Help + + + + + Show list of all available commands. + + + + + PDFTool help + + + + + List of available commands + + + + + Command + + + + + Tool + + + + + + + + Description + + + + + Text Encoding + + + + + When you redirect console to a file, then specific codec is used to transform output text to target encoding. UTF-8 encoding is used by default. For XML output, you should use only UTF-8 codec. Available codecs: + + + + + Suggested codec: UTF-8 or %1 + + + + + Unknown console format '%1'. Defaulting to text console format. + + + + + Unknown console date/time format '%1'. Defaulting to short date/time format. + + + + + Unknown text layout analysis algorithm '%1'. Defaulting to automatic algorithm selection. + + + + + Unknown audio format '%1'. Defaulting to mp3 audio format. + + + + + Image format '%1' is not supported. Defaulting to png. + + + + + Image format subtype '%1' is not supported. + + + + + Image compression for current format is not supported. + + + + + Invalid compression level '%1'. + + + + + Image quality settings for current format is not supported. + + + + + Invalid image quality '%1'. + + + + + Optimized write is not supported. + + + + + Progressive scan write is not supported. + + + + + Invalid image resolution mode '%1'. Defaulting to dpi. + + + + + Cannot set dpi value, resolution mode must be dpi. + + + + + Dpi must be in range from %1 to %2. Defaulting to %3. + + + + + Invalid image dpi value '%1'. + + + + + Cannot set pixel value, resolution mode must be pixel. + + + + + Pixel value must be in range from %1 to %2. Defaulting to %3. + + + + + Invalid image pixel value '%1'. + + + + + Unknown color management system '%1'. Defaulting to lcms. + + + + + Uknown color management system accuracy '%1'. Defaulting to medium. + + + + + Unknown color adaptation method '%1'. Defaulting to bradford. + + + + + Uknown color management system rendering intent '%1'. Defaulting to auto. + + + + + Uknown bool value '%1'. Default value is used. + + + + + Uknown bool value '%1'. GPU rendering is used as default. + + + + + Uknown MSAA sample count '%1'. 4 samples are used as default. + + + + + Uknown rasterizer count '%1'. %2 rasterizers are used as default. + + + + + Invalid raterizer count: %1. Correcting to use %2 rasterizers. + + + + + Unknown encryption algorithm '%1'. Defaulting to AES-256 encryption. + + + + + Unknown encryption contents mode '%1'. Defaulting to encrypt all contents. + + + + + Invalid password provided. + + + + + + Error occured during document reading. %1 + + + + + + Warning: %1 + + + + + Attachments + + + + + Show list or save attached files. + + + + + Attached files of document %1 + + + + + Attached files overview + + + + + + + + + + + + + + + No. + + + + + + File name + + + + + Mime type + + + + + Mime type description + + + + + File description + + + + + Packed size [bytes] + + + + + Target file name must not be specified, if multiple files are being saved. + + + + + + Failed to save attachment to file. %1 + + + + + + + SAPI Error: Cannot enumerate SAPI voices. + + + + + Available voices for given settings: + + + + + Voice list + + + + + + + + + Name + + + + + Gender + + + + + Age + + + + + Lang. Code + + + + + Locale + + + + + + Language + + + + + + Country + + + + + Vendor + + + + + + + Version + + + + + Audio book voices + + + + + List of available voices for audio book conversion. + + + + + Audio book convertor + + + + + Convert your document to a simple audio book. + + + + + No suitable voice found. + + + + + Invalid voice. + + + + + + Cannot create output stream '%1'. + + + + + Cannot create voice. + + + + + Failed to set requested voice. Default voice will be used. + + + + + No text extracted to be converted to audio book. + + + + + Certificate Store + + + + + Certificate store operations (list, add, remove certificates). + + + + + Certificates used in the signature verification + + + + + Certificates + + + + + + + + + + + Type + + + + + + Certificate + + + + + + Organization + + + + + + Valid from + + + + + + Valid to + + + + + User + + + + + System + + + + + Install Certificate + + + + + Install a new user certificate to certificate store. + + + + + Cannot open file '%1'. %2 + + + + + Cannot read certificate from file '%1'. + + + + + Color Profiles List + + + + + Show list of available color profiles. + + + + + Available Color Profiles + + + + + + Identifier + + + + + Output Profiles + + + + + Gray Profiles + + + + + RGB Profiles + + + + + CMYK Profiles + + + + + Decrypt + + + + + Remove encryption from a document (with only owner access only). + + + + + Authorization as owner failed. Encryption removal is not permitted if authorized as user only. + + + + + Document is not encrypted. + + + + + Compare documents + + + + + Compare contents of two documents. + + + + + Exactly two documents must be specified. + + + + + + + Cannot open document '%1'. + + + + + Difference Report + + + + + Differences + + + + + Left Page + + + + + Right Page + + + + + Encrypt + + + + + Encrypt the document (with only owner access only). + + + + + Authorization as owner failed. Encryption change is not permitted if authorized as user only. + + + + + Fetch images + + + + + Fetch image content from document. + + + + + + + Document doesn't allow to copy content. + + + + + Images fetched from document %1 + + + + + + + Overview + + + + + Image No. + + + + + + + + Page No. + + + + + Width [pixels] + + + + + Height [pixels] + + + + + Size [bytes] + + + + + Stored to + + + + + + Cannot write page image to file '%1', because: %2. + + + + + Fetch text + + + + + Fetch text content from document. + + + + + Info + + + + + Retrieve basic informations about a document. + + + + + + Information about document %1 + + + + + Properties: + + + + + + Property + + + + + + + + + + Value + + + + + + + Title + + + + + Subject + + + + + Keywords + + + + + Author + + + + + Creator + + + + + Producer + + + + + Creation date + + + + + Modified date + + + + + + + + + + + + + Yes + + + + + + + + + + + + + + + No + + + + + + + Unknown + + + + + Tagged + + + + + + None + + + + + AcroForm + + + + + XFA + + + + + Form type + + + + + Page count + + + + + Paper format + + + + + Paper size + + + + + File size + + + + + JavaScript + + + + + + Standard + + + + + Public Key + + + + + + Custom + + + + + No authorization required + + + + + Authorized as owner + + + + + Authorized as user + + + + + Encryption + + + + + Authorization + + + + + Metadata encrypted + + + + + Print (low resolution) + + + + + Print + + + + + Copy content + + + + + Accessibility + + + + + Page assembling + + + + + Modify content + + + + + Modify interactive items + + + + + Form filling + + + + + All + + + + + Permissions + + + + + File hashes: + + + + + Algorithm + + + + + Hash + + + + + MD5 + + + + + SHA1 + + + + + SHA256 + + + + + SHA384 + + + + + SHA512 + + + + + Info about used fonts + + + + + Retrieve informations about font usage in a document. + + + + + Type 0 (CID) + + + + + Type 1 (8 bit) + + + + + MM Type 1 (8 bit) + + + + + TrueType (8 bit) + + + + + Type 3 + + + + + MacRoman + + + + + WinAnsi + + + + + PDFDoc + + + + + MacExpert + + + + + Symbol + + + + + ZapfDingbats + + + + + Fonts used in document %1 + + + + + + Font Name + + + + + Font Type + + + + + Encoding + + + + + Pages + + + + + Embedded + + + + + Subset + + + + + + Unicode + + + + + + Object + + + + + + Gen. + + + + + -- + + + + + Substitutions + + + + + Substituted by Font + + + + + Match + + + + + ?? + + + + + Font Character Maps + + + + + Character Map for Font '%1' + + + + + Glyph Index + + + + + Character + + + + + Info about used inks + + + + + Retrieve information about inks used in a document. + + + + + Inks + + + + + Ink list + + + + + Spot + + + + + Color + + + + + Info (JavaScript code) + + + + + Retrieve informations about JavaScript usage in a document. + + + + + JavaScript used in document %1 + + + + + JavaScript Usage Overview + + + + + Context + + + + + + Page Number + + + + + Code Size + + + + + Code Snippet + + + + + Document + + + + + + Named + + + + + + Form + + + + + + Page + + + + + + Annotation + + + + + + Details + + + + + JavaScript #%1 + + + + + Extract document metadata + + + + + Extract document metadata (embedded xml stream). + + + + + Metadata not found in document. + + + + + Info (Named Destinations) + + + + + Retrieve informations about named destinations in a document. + + + + + Named destinations used in document %1 + + + + + Named Destinations + + + + + Left + + + + + Top + + + + + Right + + + + + Bottom + + + + + Zoom + + + + + + Invalid + + + + + XYZ + + + + + Fit + + + + + FitH + + + + + FitV + + + + + FitR + + + + + FitB + + + + + FitBH + + + + + FitBV + + + + + Info (page boxes) + + + + + Retrieve informations about page boxes in a document. + + + + + Page boxes in document %1 + + + + + Pages %1 + + + + + Box + + + + + Media + + + + + Crop + + + + + Bleed + + + + + Trim + + + + + Art + + + + + Structure Tree + + + + + Attributes + + + + + Owner + + + + + Revision + + + + + Hidden + + + + + [null] + + + + + [complex type] + + + + + Properties + + + + + Alternative description + + + + + Expanded form + + + + + Actual text + + + + + Phoneme + + + + + Marked Content Reference %1 + + + + + Structure Object Reference [%1 %2 R] + + + + + Info (Structure tree) + + + + + Examine structure tree in tagged document. + + + + + Structure tree in document %1 + + + + + No structure tree found in document. + + + + + Ink coverage + + + + + Calculate ink coverage of the selected pages, or a whole document. + + + + + Ink Coverage + + + + + Ink Coverage by Page + + + + + %1 Ratio [%] + + + + + %1 Covered [mm^2] + + + + + Sum + + + + + Optimize + + + + + Optimize document size using various algorithms. + + + + + No optimization option has been set. + + + + + Failed to write optimize document. %1 + + + + + Render document + + + + + Render selected pages of document into image files. + + + + + Render document %1 + + + + + Benchmark rendering + + + + + Benchmark page rendering (measure time, detect errors). + + + + + Benchmark rendering of document %1 + + + + + + Statistics + + + + + Unit + + + + + Pages rendered + + + + + - + + + + + Total compile time + + + + + + + + + + msec + + + + + Total render time + + + + + Total wait time + + + + + Total write time + + + + + Total time + + + + + Wall time + + + + + Rendering speed (per core) + + + + + pages / sec (one core) + + + + + Rendering speed (wall time) + + + + + pages / sec + + + + + Compile time ratio + + + + + + + + % + + + + + Render time ratio + + + + + Wait time ratio + + + + + Write time ratio + + + + + Page Statistics + + + + + Compile Time [msec] + + + + + Render Time [msec] + + + + + Wait Time [msec] + + + + + Write Time [msec] + + + + + Total Time [msec] + + + + + Rendering Errors + + + + + Message + + + + + Error + + + + + Warning + + + + + Not implemented + + + + + Not supported + + + + + Information + + + + + Extract pages + + + + + Separate document into single page documents. + + + + + File template is empty. + + + + + File template must contain character '%' for page number. + + + + + File '%1' already exists. Page %2 was not extracted. + + + + + Compute statistics of internal objects used in a document. + + + + + Statistics by Object Class + + + + + Class + + + + + + Percentage [%] + + + + + + Count [#] + + + + + Space Usage [bytes] + + + + + Content Stream + + + + + Graphic State + + + + + Color Space + + + + + Pattern + + + + + Shading + + + + + Image + + + + + Font + + + + + Action + + + + + Other + + + + + Statistics by Object Type + + + + + Merge documents + + + + + Merge multiple documents to a single document. + + + + + At least two documents and target (merged) document must be specified. + + + + + Target file '%1' already exists. Document merging not performed. + + + + + Document doesn't allow to assemble pages. + + + + + Signature verification + + + + + Verify signatures and timestamps in pdf document. + + + + + No document specified. + + + + + Digital signatures/timestamps verification of %1 + + + + + + Signature + + + + + Timestamp + + + + + Signed by + + + + + Signing date + + + + + Timestamp date + + + + + Hash alg. + + + + + Handler + + + + + Signed whole + + + + + + Skipped + + + + + %1 #%2 + + + + + Signed by: %1 + + + + + Certificate status: %1 + + + + + Signature status: %1 + + + + + Signing date: %1 + + + + + Timestamp date: %1 + + + + + Hash algorithm: %1 + + + + + Handler: %1 + + + + + Is whole document signed: %1 + + + + + Byte range covered by signature: %1 + + + + + Errors: + + + + + Warnings: + + + + + Certificate No. #%1 + + + + + Org. unit + + + + + State + + + + + Serial number + + + + + Locality + + + + + Surname + + + + + Forename + + + + + Initials + + + + + Pseudonym + + + + + Qualifier + + + + + Email + + + + + RSA method, %1-bit key + + + + + DSA method, %1-bit key + + + + + EC method, %1-bit key + + + + + DH method, %1-bit key + + + + + Unknown method, %1-bit key + + + + + Encryption method + + + + + Digital signatures + + + + + Non-repudiation + + + + + Key encipherement + + + + + Application data encipherement + + + + + Key agreement + + + + + Verify signatures on certificates + + + + + Verify signatures on revocation information + + + + + Encipher data during key agreement + + + + + Decipher data during key agreement + + + + + Trusted timestamping + + + + + Key usage + + + + + No digital signatures or timestamps found in the document. + + + + + XML export + + + + + Export internal data structure to xml. + + + + + PDFViewerMainWindow + + + PDF Viewer + + + + + &File + + + + + &Go To + + + + + Book&mark Settings + + + + + &View + + + + + Page La&yout + + + + + Re&ndering Options + + + + + &Tools + + + + + &Help + + + + + &Open... + + + + + &Close + + + + + &Quit + + + + + &Single Page + + + + + Ctrl+1 + + + + + &Continuous + + + + + Ctrl+2 + + + + + Two &Pages + + + + + Ctrl+3 + + + + + &Two columns + + + + + Ctrl+4 + + + + + &First page on right side + + + + + First page on right side + + + + + Ctrl+5 + + + + + Rendering &Errors... + + + + + Ctrl+E + + + + + &Antialiasing + + + + + &Text Antialiasing + + + + + &Smooth Pictures + + + + + &Ignore Optional Content Settings + + + + + &Options... + + + + + Ctrl+K + + + + + &Reset to Factory Settings + + + + + &Zoom In + + + + + Zoom &Out + + + + + &About... + + + + + Fit &Page + + + + + Fit &Width + + + + + W + + + + + &Fit Height + + + + + H + + + + + Prope&rties... + + + + + Send by &E-Mail... + + + + + Color | &Inverted + + + + + Color | &Grayscale + + + + + Color | &High Contrast + + + + + Color | &Monochromatic + + + + + Color | &Custom + + + + + Rotate &Right + + + + + Rotate &Left + + + + + &Print... + + + + + &Display Annotations + + + + + Go to document &start + + + + + Go to document &end + + + + + Go to &next page + + + + + Go to &previous page + + + + + Go &to next line + + + + + Go t&o previous line + + + + + &Get Source + + + + + &Certificates... + + + + + Automatic &Document Refresh + + + + + Automatically reloads the document if a change made by an external program is detected. + + + + + Become a &Sponsor + + + + + Become a Sponsor + + + + + &Bookmark Page + + + + + Bookmark Page + + + + + Bookmark page for fast navigation. + + + + + &Go to Next Bookmark + + + + + Go to Next Bookmark + + + + + Navigates to the next bookmarked page. + + + + + Go to Previous Boo&kmark + + + + + Navigates to the previous bookmarked page. + + + + + &Export Bookmarks + + + + + Export Bookmarks + + + + + Export bookmarks to the file. + + + + + &Import Bookmarks + + + + + Import Bookmarks + + + + + Import bookmarks from the file. + + + + + &Generate Bookmarks Automatically + + + + + Generate Bookmarks Automatically + + + + + If checked, bookmarks for main document chapters are generated automatically. + + + + + Display &Render Times + + + + + PDFViewerSettingsDialog + + + Options + + + + + Engine Settings + + + + + Multithreading strategy + + + + + Rendering engine + + + + + Prefetch pages + + + + + + + + + + + + + + + + + + + + + + + + + Enable + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Select a rendering method tailored to your application's requirements. Software Rendering, utilizing QPainter, is a versatile choice that guarantees compatibility across all platforms. It's particularly useful in scenarios where direct access to hardware acceleration isn't crucial. QPainter, part of the Qt framework, excels in rendering 2D graphics with support for various painting styles, image processing, and intricate graphical transformations, making it an excellent tool for applications that require detailed and sophisticated 2D graphics without relying on hardware acceleration.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">On the other hand, for applications that demand high-performance rendering, leveraging the Blend2D library offers a compelling alternative. Blend2D is a high-performance 2D vector graphics engine that utilizes multi-threading to accelerate the rendering process. It does not rely on QPainter or hardware acceleration but instead offers a software-based rendering solution optimized for speed and quality. Blend2D's advanced anti-aliasing techniques ensure crisp and clear image quality, making it suitable for applications where rendering performance and image quality are paramount.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The Prefetch Pages feature is a strategy that can be applied regardless of the rendering method chosen. By pre-rendering pages adjacent to the currently viewed content, this approach minimizes flickering and enhances the smoothness of transitions during scrolling, improving the overall user experience.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">When it comes to optimizing the rendering process, the choice of multithreading strategy plays a crucial role. A Single Thread strategy, where rendering tasks are executed sequentially on a single CPU core, might be preferable in environments where simplicity and predictability are key. For more demanding applications, employing a Multi-threading strategy can significantly improve rendering times. Strategies like Load Balanced distribute the workload evenly across CPU cores without delving into content-specific processing, offering a good performance boost. The Maximum Threads strategy takes full advantage of available CPU resources by allocating as many threads as possible to the rendering tasks, achieving optimal performance and minimizing rendering times.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This delineation between using QPainter for software rendering and Blend2D for high-performance, multi-threaded rendering allows developers to choose the most appropriate rendering pathway based on their specific performance requirements and the graphical complexity of their application.</p></body></html> + + + + + Rendering Settings + + + + + Clip to crop box + + + + + Text antialiasing + + + + + Ignore optional content + + + + + Smooth pictures + + + + + Display page compile/draw time + + + + + Antialiasing + + + + + Display annotations + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The rendering settings control how the rendering engine handles page content and the appearance of displayed graphics. <span style=" font-weight:600;">Antialiasing</span> smooths out the appearance of painted shapes, such as rectangles, vector graphics, and lines, but doesn't affect text. <span style=" font-weight:600;">Text antialiasing</span>, on the other hand, refines the appearance of text characters, leaving other items untouched. Both <span style=" font-weight:600;">Antialiasing </span>and <span style=" font-weight:600;">Text antialiasing </span>are relevant only for the software renderer. If you're using a hardware rendering engine like OpenGL, these settings won't have an impact because OpenGL renders images using MSAA antialiasing (if enabled). </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Smooth pictures</span> option enables pictures to be transformed into device space coordinates using a high-quality image transformation method. This generally results in better image quality. When disabled, a default fast transformation is used, potentially reducing image quality if the source DPI and device DPI differ. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Ignore optional content </span>ignores all optional content settings and renders everything in the content stream. <span style=" font-weight:600;">Clip to crop box</span> restricts the rendering area to the page's crop box, which is usually smaller than the whole page. Graphics outside the crop box aren't drawn, which can be useful for removing printer marks and similar elements. <span style=" font-weight:600;">Display page compile/draw time</span> can be handy for debugging, showing the time taken to compile a page (stored in the cache) and the time taken to render the compiled page contents onto the output device. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Using the <span style=" font-weight:600;">Display annotations</span> setting, you can enable or disable the display of annotations. If annotations are disabled, the user will not be able to interact with them. </p></body></html> + + + + + Shading Settings + + + + + Preferred mesh resolution ratio + + + + + Color tolerance + + + + + Minimal mesh resolution ratio + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shading is executed according to mesh quality criteria, involving <span style=" font-weight:600;">color tolerance</span> and shape tolerance. If the color of the vertices of a triangle in the mesh is too different (exceeding the set color tolerance), then the mesh is refined, and the triangle is subdivided. Some shadings are defined by patterns, such as <span style=" font-style:italic;">Coons patch shading</span> or <span style=" font-style:italic;">Tensor product patch shading</span>, which are also taken into consideration during meshing. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Preferred mesh resolution ratio</span> should be set to optimize the balance between the performance of mesh generation and the quality of the mesh. The optimal triangle size is computed as follows: the total meshing area (typically a page) is multiplied by this ratio to determine the triangle size. For example, if we have an A4 page (210 mm x 297 mm), and the ratio is set to 0.01, then the optimal triangle size is computed as 297 * 0.01 = ~3 mm. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Minimal mesh resolution ratio</span> is a ratio that determines the minimal triangle size. At this boundary, no triangles are subdivided, regardless of color variation or shape quality. This ratio should be set to a value at which a user can barely recognize patterns on the screen (for example, the triangle size should be &lt; 1 mm). However, this also affects performance, as too many triangles can be generated. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Color tolerance</span> is the threshold at which two colors are recognized as different. The comparison is done component-wise, so if at least one color component exceeds this parameter, the colors are treated as different. </p></body></html> + + + + + Cache Settings + + + + + Thumbnail image cache size + + + + + Cached font limit + + + + + + kB + + + + + Compiled page cache size + + + + + Cached instanced font limit + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The rendering engine first compiles the page to enable quick drawing and then stores these compiled pages in a cache. These stored pages usually render much quicker than non-cached pages. The <span style=" font-weight:600;">Compiled Page Cache Size</span> sets the memory limit for these compiled pages, measured in kilobytes. Ideally, this limit should be at least twice as large as the size of the largest compiled page. If a compiled page exceeds this limit, an error will be displayed during rendering. Setting a higher value for this limit can speed up the rendering engine, but it will consume more operating memory. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">There is also a cache for thumbnail images. The <span style=" font-weight:600;">Thumbnail Image Cache Size</span> determines the memory space allocated for these images. This value should be set large enough to accommodate all thumbnail images on the screen. The larger this value is, the quicker thumbnails will display, but at the cost of consuming more operating memory. Please note that thumbnails are stored as bitmaps for rapid drawing, not as precompiled pages. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">During rendering, fonts are cached as well. There are two levels of cache for fonts: one for general fonts and one for instance-specific fonts (fonts at a specific size). The <span style=" font-weight:600;">Cached Font Limit</span> sets the maximum number of fonts that can be stored in the cache. The <span style=" font-weight:600;">Instanced Font Cache Limit</span> sets the maximum number of instance-specific fonts that can be stored. If these cache limits are exceeded, fonts are removed from the cache. However, this only happens when no operation in another thread (like compiling pages) is being performed to avoid race conditions. </p></body></html> + + + + + Shortcuts + + + + + Color management system settings + + + + + Black point compensation + + + + + Device gray color profile + + + + + Accuracy + + + + + Additional color profile directory + + + + + White paper color transformed + + + + + Output color profile + + + + + Rendering intent + + + + + Consider document output intents + + + + + Device RGB color profile + + + + + Color management system + + + + + Device CMYK color profile + + + + + ... + + + + + Color adaptation method (XYZ whitepoint) + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Color Management System</span> governs input and output color profiles and color transformations. This system allows for accurate color representation as defined in the PDF document. For faster color transformations, select 'Generic' to disable this functionality. The <span style=" font-weight:600;">Rendering Intent</span> selection influences the way colors are transformed. While rendering intents are often defined within the PDF document's content streams, you have the option to override them by selecting a different intent from 'Auto'. The <span style=" font-weight:600;">Accuracy</span> setting determines the precision of the color transformation, with higher accuracy consuming more memory. The <span style=" font-weight:600;">Black Point Compensation</span> adjusts for black colors that fall outside the gamut. The <span style=" font-weight:600;">White Paper Color Transformed</span> setting affects the color of the underlying white paper - enabling this will transform pure white from the device RGB profile to the output profile. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Output Color Profile</span> specifies the output (target) rendering profile. This profile should align with the color space that your screen uses to display colors. Additionally, you can set the color spaces for <span style=" font-weight:600;">gray/RGB/CMYK</span> device color spaces. These are used to transform gray/RGB/CMYK colors to the output color profile. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A document may contain output intents, which can be used for transforming between color spaces. If the <span style=" font-weight:600;">Consider Document Output Intents</span> option is checked, the color management system will verify whether the document contains output intents. If such intents are present, they will be used for color transformation as device color spaces (gray/RGB/CMYK). </p></body></html> + + + + + Color Postprocessing + + + + + Sigmoid function slope parameter + + + + + Foreground color + + + + + Background color + + + + + Bitonal threshold + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Foreground</span> and <span style=" font-weight:700;">background</span> colors refer to a custom colors rendering mode, where two colors are used - the paper is drawn with the background color, and the foreground color is used for text and graphics. By default, the background is black and the foreground is green, which is easy on the eyes. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Sigmoid function slope parameter</span> is a parameter in high contrast color rendering. This rendering mode displays all graphics in high contrast. This parameter affects the degree of contrast. Set the value from 1 to 5 for a small contrast change, from 5 to 10 for a medium contrast change, and more than 10 for very high contrast rendering. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Bitonal threshold</span> is used in the bitonal rendering color mode. It distinguishes between black and white colors. However, the threshold for images is determined automatically. </p></body></html> + + + + + Security Settings + + + + + Allow URI link launch + + + + + Allow application launch + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If the application launch is permitted, a message box appears after the <span style=" font-weight:600;">Launch</span> action is triggered, asking the user if they want to execute an external application. If the user confirms the dialog, the external application executes (for example, using the Windows function <span style=" font-weight:600;">ShellExecute</span>). When this option is turned off, no dialog appears and the external application never executes. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If the <span style=" font-weight:600;">URI link</span> launch is allowed, a message box appears asking the user if they want to open the URI link. If the user confirms the dialog, the URI link is opened by the default web browser (or default application if the URI links to the file system). </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Users should exercise caution with these settings and only confirm execution if the document is safe and comes from a reliable source. Launching external applications and following URI links can pose risks to the user's computer. </p></body></html> + + + + + UI Settings + + + + + Maximum redo steps + + + + + Magnifier size + + + + + Use logical pixels when zooming + + + + + px + + + + + Maximum undo steps + + + + + Magnifier zoom + + + + + Maximum count of recent files + + + + + Developer mode + + + + + Color Scheme (GUI) + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The 'Maximum count of recent files' setting controls the number of recent files displayed in the menu. When a document is opened, it is added to the top of the recent files list. The list is then truncated from the bottom if the number of recent files exceeds the maximum. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Magnifier tool settings</span> determine the appearance of the magnifier. The magnifier tool enlarges the area under the mouse cursor. You can specify the size of the magnifier (in <span style=" font-weight:600;">logical</span> pixels) and its zoom level. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">By specifying the <span style=" font-weight:600;">undo/redo</span> step count, you control the number of undo/redo steps available during document editing. Setting the maximum undo step count to zero disables the undo/redo function. You can also set a nonzero undo step count and a zero redo step count, which would make only undo actions available, with redo actions disabled. Changes are optimized for memory usage, so each undo/redo step shares unmodified objects with others. This means that, roughly speaking, making 10 modifications to a 50 MB document may consume around 51 MB of memory. Actual memory usage depends on the extent of the changes but is usually minimal as changes typically affect a small number of objects (for example, editing a form field or modifying an annotation). </p></body></html> + + + + + Speech Settings + + + + + Voice + + + + + Pitch + + + + + Volume + + + + + Rate + + + + + Voice synthetiser + + + + + Locale + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Configure the speech settings to enable the text-to-speech feature for reading documents. While these settings act as defaults for the text-to-speech function, some can be adjusted later on. The 'Pitch' setting can vary from -1.0 to 1.0, with 0.0 serving as the default value. Similarly, the 'Rate' can range from -1.0 to 1.0, with 0.0 denoting a normal speech flow. Lastly, 'Volume' can be adjusted between 0.0 and 1.0. </p></body></html> + + + + + Form Settings + + + + + Highlight form fields + + + + + Highlight required form fields + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can customize the appearance of form fields using the provided settings, including the option to highlight editable fields. You can separately highlight required form fields in red, while other fields can be emphasized in blue. </p></body></html> + + + + + Digital Signature Verification + + + + + Ignore expired certificates + + + + + Signature verification + + + + + Strict mode + + + + + Use system certificate store + + + + + <html><head/><body><p><span style=" font-weight:600;">Trusted certificate store</span></p></body></html> + + + + + Remove + + + + + <html><head/><body><p>These are the settings for digital signature verification. Digital signatures are verified as strictly as possible to prevent any malicious content or signature manipulation. Verification can also be disabled, if not required. When <span style=" font-weight:600;">Strict mode</span> is enabled, every warning is treated as an error. You have the option to ignore the certificate expiration date, but this should only be done if you fully understand the potential risks involved. Verification uses a list of trusted certificates. System certificates can be added to this list, and you can also manage your own list of trusted certificates. </p></body></html> + + + + + Plugins + + + + + SelectOutlineToRegroupDialog + + + Select Outline + + + + + SettingsDialog + + + Unit Settings + + + + + Units + + + + + Lengths + + + + + Areas + + + + + Angles + + + + + + Soft Proofing Settings + + + + + Proofing intent + + + + + Proofing profile + + + + + Alarm color + + + + + Auto + + + + + Perceptual + + + + + Relative colorimetric + + + + + Absolute colorimetric + + + + + Saturation + + + + + SettingsDockWidget + + + Settings + + + + + Left Document + + + + + + Page Selection: + + + + + Right Document + + + + + Options + + + + + Compare texts as vector graphics + + + + + Compare text characters instead of words + + + + + Transparency | Overlay View + + + + + Colors + + + + + Remove + + + + + Add + + + + + Replace + + + + + Move + + + + + SignDialog + + + Dialog + + + + + Sign Method + + + + + Method + + + + + Certificate + + + + + Password + + + + + Parameters + + + + + Reason + + + + + Contact Info + + + + + StatisticsGraphWidget + + + Form + + + + + codegen::GeneratedPDFObject + + + Object + + + + + Array (simple) + + + + + Array (complex) + + + + + Dictionary + + + + + Item (simple), name = '%1' + + + + + Item (complex), name = '%1' + + + + + pdf::PDFAsynchronousTextLayoutCompiler + + + Indexing document contents... + + + + + pdf::PDFAttachmentsTreeItemModel + + + Files + + + + + pdf::PDFCMSManager + + + Generic + + + + + Little CMS %1.%2 + + + + + Gray D65, γ = 2.2 + + + + + Gray D50, γ = 2.2 + + + + + Gray D93, γ = 2.2 + + + + + Gray D65, γ = 1.0 (linear) + + + + + Gray D50, γ = 1.0 (linear) + + + + + Gray D93, γ = 1.0 (linear) + + + + + HDTV (ITU-R BT.709) + + + + + Adobe RGB 1998 + + + + + PAL / SECAM + + + + + NTSC + + + + + Adobe Wide Gamut RGB + + + + + ProPhoto RGB + + + + + sRGB + + + + + pdf::PDFCertificateListHelper + + + Password protected + + + + + pdf::PDFCertificateManagerDialog + + + Create + + + + + Open Directory + + + + + Delete + + + + + Import + + + + + Confirm delete + + + + + Do you want to delete certificate '%1'? + + + + + + Error + + + + + Cannot delete certificate '%1' + + + + + + + Import Certificate + + + + + Certificate file (*.pfx);;All files (*.*) + + + + + Target file exists. Please rename the certificate file to import. + + + + + Certificate '%1' was successfully imported. + + + + + Error occured during certificate '%1' import. + + + + + pdf::PDFCreateCertificateDialog + + + 1024 bits + + + + + 2048 bits + + + + + 4096 bits + + + + + + Certificate Protection + + + + + Enter password to protect your certificate. + + + + + Enter password again to verify password text. + + + + + + + + Error + + + + + Reentered password is not equal to the first one! + + + + + Please enter a name! + + + + + Please enter an organization name! + + + + + Please enter an email address! + + + + + pdf::PDFCreateFreeTextTool + + + Text + + + + + Enter text for free text panel + + + + + pdf::PDFCreateHighlightTextTool + + + Select Color + + + + + pdf::PDFCreateHyperlinkTool + + + Hyperlink + + + + + Enter url address of the hyperlink + + + + + pdf::PDFCreatePCElementImageTool + + + Select Image + + + + + pdf::PDFCreateStickyNoteTool + + + Sticky note + + + + + Enter text to be displayed in the sticky note + + + + + pdf::PDFDependentLibraryInfo + + + Qt + + + + + LGPLv3 + + + + + https://www.qt.io/ + + + + + libjpeg + + + + + permissive + ack. + + + + + https://www.ijg.org/ + + + + + %1 + + + + + + %1.%2 + + + + + FreeType + + + + + FTL + + + + + %1.%2.%3 + + + + + https://www.freetype.org/index.html + + + + + OpenJPEG + + + + + + 2-clause MIT license + + + + + https://www.openjpeg.org/ + + + + + OpenSSL + + + + + Apache 2.0 + + + + + https://www.openssl.org/ + + + + + LittleCMS + + + + + http://www.littlecms.com/ + + + + + zlib + + + + + + zlib specific + + + + + https://zlib.net/ + + + + + Blend2D + + + + + https://blend2d.com/ + + + + + pdf::PDFDiff + + + No document to be compared. + + + + + No page to be compared. + + + + + Invalid page range. + + + + + Comparing documents. + + + + + Page no. %1 was moved to a page no. %2. + + + + + Page no. %1 was added. + + + + + Page no. %1 was removed. + + + + + Removed text character from page %1. + + + + + Removed vector graphics from page %1. + + + + + Removed image from page %1. + + + + + Removed shading from page %1. + + + + + Added text character to page %1. + + + + + Added vector graphics to page %1. + + + + + Added image to page %1. + + + + + Added shading to page %1. + + + + + Text '%1' has been added to page %2. + + + + + Text '%1' has been removed from page %2. + + + + + Text '%1' on page %2 has been replaced by text '%3' on page %4. + + + + + Invalid + + + + + Page moved + + + + + Page added + + + + + Page removed + + + + + Removed text character + + + + + Removed vector graphics + + + + + Removed image + + + + + Removed shading + + + + + Added text character + + + + + Added vector graphics + + + + + Added image + + + + + Added shading + + + + + Text added + + + + + Text removed + + + + + Text replaced + + + + + pdf::PDFDocumentManipulator + + + Empty page list. + + + + + + Invalid document. + + + + + + Missing page (%1) in a document. + + + + + + Missing image. + + + + + Error occured during page creation. + + + + + Document %1 + + + + + %1, p. %2 + + + + + %1 Images + + + + + %1 Pages + + + + + pdf::PDFDocumentReader + + + File '%1' cannot be opened for reading. %1 + + + + + File '%1' doesn't exist. + + + + + Device is not opened for reading. + + + + + Can't open device for reading. + + + + + End of file marking was not found. + + + + + Header of PDF file was not found. + + + + + Version of the PDF file is not valid. + + + + + + Start of object reference table not found. + + + + + + + + Can't read object at position %1. + + + + + Invalid trailer dictionary. + + + + + Empty xref table. + + + + + pdf::PDFDocumentSanitizer + + + Document info was removed. + + + + + Metadata streams removed: %1 + + + + + Outline was removed. + + + + + File attachments removed: %1. + + + + + Embedded files were removed. + + + + + Search index was removed. + + + + + Markup annotations removed: %1. + + + + + Page thumbnails removed: %1. + + + + + pdf::PDFDocumentTextFlowEditorModel + + + Page No. + + + + + Type + + + + + State + + + + + + Text + + + + + Title + + + + + Language + + + + + Special + + + + + Removed + + + + + Modified + + + + + Active + + + + + pdf::PDFDocumentWriter + + + + Writing of encrypted documents is not supported. + + + + + + + File '%1' can't be opened for writing. %2 + + + + + Device is not writable. + + + + + pdf::PDFEditObjectDialog + + + Edit Annotation + + + + + pdf::PDFExtractImageTool + + + Image of size %1 x %2 pixels was copied to the clipboard. + + + + + pdf::PDFFindTextTool + + + + Find + + + + + Case sensitive + + + + + Whole words only + + + + + Previous + + + + + Next + + + + + Search text + + + + + Find (%1/%2) + + + + + pdf::PDFFormFieldSignatureEditor + + + Signature Unknown + + + + + Signature Valid + + + + + Signature Invalid + + + + + pdf::PDFLexicalAnalyzer + + + Expected a number, but end of stream reached. + + + + + Invalid format of number. Character '%1' appeared. + + + + + Both '+' and '-' appeared in number. Invalid format of number. + + + + + Bad format of number - no digits appeared. + + + + + Real number overflow. + + + + + Hexadecimal number must follow character '#' in the name. + + + + + Invalid character in hexadecimal string. + + + + + Unexpected end of stream reached while scanning hexadecimal string. + + + + + Invalid character '%1' + + + + + + Unexpected character '%1' in the stream. + + + + + Trying to seek stream position to %1 bytes from the start, byte offset is invalid. + + + + + Can't read %1 bytes from the input stream. Input stream end reached. + + + + + Unexpected end of stream reached. + + + + + Error near position %1. %2 + + + + + pdf::PDFObjectEditorAnnotationsModel + + + + + + + + + + General + + + + + + + Type + + + + + + + Text + + + + + + Link + + + + + + + + + Free text + + + + + + + + + + + + + + Line + + + + + + Square + + + + + + Circle + + + + + Polygon + + + + + Polyline + + + + + + Highlight + + + + + + Underline + + + + + Squiggly + + + + + Strike Out + + + + + Caret + + + + + + + + Stamp + + + + + Ink + + + + + + File attachment + + + + + Redaction + + + + + Rectangle + + + + + + + + Contents + + + + + Author + + + + + Subject + + + + + Annotation name + + + + + + Info + + + + + Modified + + + + + Created + + + + + + + Options + + + + + Invisible + + + + + Hidden + + + + + Print + + + + + No Zoom + + + + + No Rotate + + + + + No View + + + + + Readonly + + + + + Locked + + + + + Toggle No View + + + + + Locked Contents + + + + + Modify appearance + + + + + + + + + + + + Appearance + + + + + + Colors + + + + + Color + + + + + Interior color + + + + + + + Transparency + + + + + Blend mode + + + + + Fill opacity + + + + + Stroke opacity + + + + + Language + + + + + Modify border + + + + + + + + Border + + + + + + Border Style + + + + + Width + + + + + + + + + + + + + + + + + + + + Style + + + + + Solid + + + + + Dashed + + + + + Beveled + + + + + Inset + + + + + + Border Effect + + + + + Cloudy + + + + + + + + None + + + + + Intensity + + + + + + Sticky note + + + + + Comment + + + + + Key + + + + + Note + + + + + Help + + + + + New Paragraph + + + + + Paragraph + + + + + Insert + + + + + Open + + + + + Invert + + + + + Outline + + + + + Push + + + + + + Alignment + + + + + + + + Intent + + + + + Callout + + + + + Typewriter + + + + + Callout line ending + + + + + Line start + + + + + Line end + + + + + Leader line length + + + + + Leader line extension + + + + + Leader line offset + + + + + Arrow + + + + + Dimension + + + + + Cloud + + + + + Line dimension + + + + + Polygon dimension + + + + + Caption + + + + + Caption position + + + + + Inline + + + + + Top + + + + + Name + + + + + Image + + + + + Snapshot + + + + + Icon + + + + + Graph + + + + + Push-pin + + + + + Paperclip + + + + + Tag + + + + + + + Redact + + + + + Overlay text + + + + + Repeat overlay text + + + + + Left + + + + + Center + + + + + Right + + + + + Diamond + + + + + Open arrow + + + + + Closed arrow + + + + + Butt + + + + + Reversed open arrow + + + + + Reversed closed arrow + + + + + Slash + + + + + pdf::PDFObjectEditorMappedColorAdapter + + + custom + + + + + pdf::PDFObjectEditorWidgetMapper + + + Rectangle + + + + + pdf::PDFOptimizer + + + Stage %1 + + + + + Pass %1 + + + + + Simple objects dereferenced and embedded: %1 + + + + + Null objects entries from dictionaries removed: %1 + + + + + Unused objects removed: %1 + + + + + Identical objects merged: %1 + + + + + Object list shrinked by: %1 + + + + + Bytes saved by recompressing stream: %1 + + + + + pdf::PDFOutlineTreeItemModel + + + Item %1 + + + + + pdf::PDFPageContentEditorEditedItemSettings + + + + Solid + + + + + Dashed + + + + + Dotted + + + + + Dash-dot + + + + + Dash-dot-dot + + + + + Custom + + + + + Image + + + + + Text + + + + + Style + + + + + Transformation + + + + + Select Image + + + + + Select Color for Pen + + + + + Select Color for Brush + + + + + pdf::PDFPageContentEditorStyleSettings + + + + None + + + + + + Solid + + + + + Dashed + + + + + Dotted + + + + + Dash-dot + + + + + Dash-dot-dot + + + + + Horizontal + + + + + Vertical + + + + + B-Diagonal + + + + + F-Diagonal + + + + + Cross + + + + + Edit Item + + + + + Content + + + + + Appearance + + + + + Select Font + + + + + Select Color for Pen + + + + + Select Color for Brush + + + + + pdf::PDFParser + + + Stream ended inside array. + + + + + Dictionary key must be a name. + + + + + End of stream inside dictionary reached. + + + + + Streams are not allowed in this context. + + + + + Stream length is not specified. + + + + + Bad value of stream length. It should be an integer number. + + + + + Length of the stream buffer is negative (%1). It must be a positive number. + + + + + Stream data should be in external file, but invalid file name is specified. + + + + + Can't open stream data stored in external file '%1'. + + + + + End of stream should end in keyword 'endstream'. + + + + + Cannot read object. Unexpected token appeared. + + + + + Cannot read object. End of stream reached. + + + + + pdf::PDFParsingContext + + + Cyclical reference found while parsing object %1 %2. + + + + + Function dictionary expected. + + + + + Fuction has invalid domain. + + + + + Fuction has invalid range. + + + + + Sampled function has invalid sample size. + + + + + Sampled function has invalid count of bits per sample. + + + + + Sampled function hasn't any output. + + + + + Sampled function has invalid encode array. + + + + + Sampled function has invalid decode array. + + + + + Not enough samples for sampled function. + + + + + Exponential function can have only one input value. + + + + + + Invalid domain of exponential function. + + + + + Invalid parameter of exponential function (at x = 0.0). + + + + + Invalid parameter of exponential function (at x = 1.0). + + + + + Stitching function can have only one input value. + + + + + Stitching function has different function count. Expected %1, actual %2. + + + + + Stitching function has invalid encode array. Expected %1 items, actual %2. + + + + + Functions in stitching function has different number of output variables. + + + + + Stitching function has invalid functions. + + + + + Stitching function hasn't functions array. + + + + + Empty program in PostScript function. + + + + + Invalid function type: %1. + + + + + pdf::PDFPickTool + + + Use key 'C' to show/hide large cross. + + + + + pdf::PDFRenderingErrorsWidget + + + Page + + + + + Error type + + + + + Description + + + + + Error + + + + + Warning + + + + + Not implemented + + + + + Not supported + + + + + pdf::PDFScreenshotTool + + + Page contents of size %1 x %2 pixels were copied to the clipboard. + + + + + pdf::PDFSecurityHandlerFactory + + + User password contains invalid characters: %1. + + + + + Owner password contains invalid characters: %1. + + + + + Invalid certificate or password. + + + + + pdf::PDFSelectPagesDialog + + + + Error + + + + + Selected page range is empty. + + + + + pdf::PDFSelectTableTool + + + Table region was selected. Use left/right mouse buttons to add/remove rows/columns, then use Enter key to copy the table. + + + + + pdf::PDFTranslationContext + + + Circular dependence in actions found. + + + + + Invalid action. + + + + + + Text + + + + + + + Line + + + + + Free Text + + + + + Square + + + + + Circle + + + + + Polygon + + + + + Polyline + + + + + Highlight + + + + + Underline + + + + + Squiggly + + + + + Strike Out + + + + + Stamp + + + + + Caret + + + + + Ink + + + + + Popup + + + + + File Attachment + + + + + Sound + + + + + Movie + + + + + Widget + + + + + + Screen + + + + + Printer Mark + + + + + Trap Net + + + + + Watermark + + + + + Redaction + + + + + Projection + + + + + 3D + + + + + + Rich Media + + + + + Reply + + + + + &Approved + + + + + APPROVED + + + + + As &Is + + + + + AS IS + + + + + &Confidential + + + + + CONFIDENTIAL + + + + + &Departmental + + + + + DEPARTMENTAL + + + + + Dra&ft + + + + + DRAFT + + + + + &Experimental + + + + + EXPERIMENTAL + + + + + E&xpired + + + + + EXPIRED + + + + + Fina&l + + + + + FINAL + + + + + For Co&mment + + + + + FOR COMMENT + + + + + For P&ublic Release + + + + + FOR PUBLIC RELEASE + + + + + Not A&pproved + + + + + NOT APPROVED + + + + + N&ot For Public Release + + + + + NOT FOR PUBLIC RELEASE + + + + + &Sold + + + + + SOLD + + + + + &Top Secret + + + + + TOP SECRET + + + + + Normal + + + + + Multiply + + + + + Overlay + + + + + Darken + + + + + Lighten + + + + + ColorDodge + + + + + ColorBurn + + + + + HardLight + + + + + SoftLight + + + + + Difference + + + + + Exclusion + + + + + Hue + + + + + Saturation + + + + + Color + + + + + Luminosity + + + + + + + Unknown + + + + + Invalid pass encoding data in CCITT stream. + + + + + CCITT b2 index out of range. + + + + + Invalid horizontal encoding data in CCITT stream. + + + + + + + Invalid vertical encoding data in CCITT stream. + + + + + Invalid index of CCITT changing element a1: a1 = %1, columns = %2. + + + + + Invalid CCITT run length code word. + + + + + Invalid CCITT 2D mode. + + + + + + Conversion from gray to output device using CMS failed. + + + + + + Conversion from gray to output device using CMS failed - invalid data format. + + + + + + Conversion from RGB to output device using CMS failed. + + + + + + Conversion from RGB to output device using CMS failed - invalid data format. + + + + + + Conversion from CMYK to output device using CMS failed. + + + + + + Conversion from CMYK to output device using CMS failed - invalid data format. + + + + + + Conversion from XYZ to output device using CMS failed. + + + + + + Conversion from XYZ to output device using CMS failed - invalid data format. + + + + + + Conversion from icc profile space to output device using CMS failed. + + + + + + Conversion from icc profile space to output device using CMS failed - invalid data format. + + + + + Structure tree item for MCID %1 not found. + + + + + + Page %1 + + + + + Valid tagged document required. + + + + + + JBIG2 invalid header - bad referred segments. + + + + + + JBIG2 invalid segment type %1. + + + + + Invalid JBIG2 file header. + + + + + Invalid JBIG2 file header flags. + + + + + Invalid JBIG2 file - unknown number of pages. + + + + + Invalid JBIG2 file - invalid number of pages (%1). + + + + + Invalid JBIG2 file - segment length is not defined. + + + + + JBIG2 bad segment data - handler doesn't process all segment data - %1 bytes left. + + + + + JBIG2 bad segment data - handler reads %1 bytes past segment end. + + + + + + + + + JBIG2 invalid flags for symbol dictionary segment. + + + + + + + + + + + + + + + + + JBIG2 invalid user huffman code table. + + + + + JBIG2 invalid number of huffam code table - %1 unused. + + + + + + JBIG2 trying to use aritmetic decoder context from previous symbol dictionary, but it doesn't exist. + + + + + JBIG2 symbol height class has more symbols, than defined in the symbol dictionary header. + + + + + Trying to use reference bitmap %1, but number of decoded bitmaps is %2. + + + + + JBIG2 - invalid export flags in symbol dictionary. + + + + + JBIG2 - invalid huffman table flags in text region segment. + + + + + JBIG2 no referred symbols in text region segment. + + + + + JBIG2 invalid symbol length code table for text region segment. + + + + + + JBIG2 - invalid bitmap for generic region. + + + + + JBIG2 invalid pattern dictionary flags. + + + + + JBIG2 unknown data length for pattern dictionary. + + + + + JBIG2 invalid pattern dictionary collective bitmap. + + + + + + JBIG2 region segment information - invalid bit operation mode. + + + + + JBIG2 invalid referenced pattern dictionaries for halftone segment. + + + + + JBIG2 invalid patterns for halftone segment. + + + + + JBIG2 halftoning with more than 8 grayscale bit planes not supported (current bitplanes: %1). + + + + + JBIG2 unknown data length for halftone dictionary. + + + + + JBIG2 invalid halftone grayscale bit plane image. + + + + + JBIG2 halftoning pattern index %1 out of bounds [0, %2] + + + + + JBIG2 - invalid bitmap for halftone region. + + + + + JBIG2 - malformed generic region flags. + + + + + JBIG2 - end of data byte sequence not found for generic region. + + + + + JBIG2 - invalid flags for generic refinement region. + + + + + JBIG2 - operation must be REPLACE for generic refinement region. + + + + + JBIG2 - invalid referred segments (%1) for generic refinement region. + + + + + JBIG2 - invalid referred bitmap size [%1 x %2] instead of [%3 x %4] for generic refinement region. + + + + + JBIG2 - invalid bitmap for generic refinement region. + + + + + JBIG2 end-of-page segment shouldn't contain any data, but has extra data of %1 bytes. + + + + + JBIG2 end-of-page segment detected and ignored. + + + + + JBIG2 end-of-file segment shouldn't contain any data, but has extra data of %1 bytes. + + + + + JBIG2 end-of-file segment detected and ignored. + + + + + JBIG2 underflow of the low value in huffman table. + + + + + JBIG2 unknown extension %1 necessary for decoding the image. + + + + + JBIG2 segment with unknown extension has not defined length. + + + + + JBIG2 segment %1 is not a bitmap. + + + + + JBIG2 bitmap segment %1 not found. + + + + + JBIG2 symbol index %1 not found in symbol table of length %2. + + + + + JBIG2 region segment information flags are invalid. + + + + + JBIG2 segment with unknown data length can't be skipped. + + + + + JBIG2 invalid referred segment %1 referenced by segment %2. + + + + + JBIG2 maximum bitmap size exceeded (%1 > %2). + + + + + JBIG2 invalid bitmap size (%1 x %2). + + + + + JBIG2 invalid bit operation. + + + + + JBIG2 can't read integer. + + + + + JBIG2 - invalid bitmap paint operation. + + + + + JBIG2 - invalid bitmap copy row operation. + + + + + JBIG2 overflow of prefix bit values in huffman table. + + + + + Null + + + + + Boolean + + + + + Integer + + + + + Real + + + + + String + + + + + Name + + + + + Array + + + + + Dictionary + + + + + Stream + + + + + Reference + + + + + + Invalid optional content properties. + + + + + + + + Invalid optional content configuration. + + + + + + Invalid optional content group. + + + + + Cyclic reference error in optional content visibility expression. + + + + + + + Invalid optional content visibility expression. + + + + + Invalid number of matrix elements. Expected 6, actual %1. + + + + + Reading contents of document... + + + + + Authorization failed. Bad password provided. + + + + + Decrypting encrypted contents of document... + + + + + Object stream %1 not found. + + + + + + + + Object stream %1 is invalid. + + + + + Trailer dictionary is not valid. + + + + + Invalid tiling pattern - wrong paint type %1. + + + + + Invalid tiling pattern - wrong tiling type %1. + + + + + Invalid tiling pattern - bounding box is invalid. + + + + + Invalid tiling pattern - steps are invalid. + + + + + + + + Invalid pattern. + + + + + Invalid shading. + + + + + Pattern color space is not valid for shading patterns. + + + + + Invalid shading pattern extends. Expected 2, but %1 provided. + + + + + Invalid function shading pattern domain. Expected 4 values, but %1 provided. + + + + + Invalid function shading pattern domain. Invalid domain ranges. + + + + + + Invalid axial shading pattern color functions. Expected %1 functions, but %2 provided. + + + + + Invalid axial shading pattern coordinates. Expected 4, but %1 provided. + + + + + Invalid axial shading pattern domain. Expected 2, but %1 provided. + + + + + Invalid radial shading pattern coordinates. Expected 6, but %1 provided. + + + + + Invalid radial shading pattern domain. Expected 2, but %1 provided. + + + + + Invalid radial shading pattern color functions. Expected %1 functions, but %2 provided. + + + + + Radial shading cannot have negative circle radius. + + + + + Invalid bits per coordinate (%1) for shading. + + + + + Invalid bits per component (%1) for shading. + + + + + Invalid domain for shading. Expected size is 6, actual size is %1. + + + + + Invalid domain for shading. Expected size is %1, actual size is %2. + + + + + Invalid bits per flag (%1) for shading. + + + + + Invalid vertices per row (%1) for lattice-form gourad triangle meshing. + + + + + Invalid shading pattern type (%1). + + + + + + Error occured during mesh generation of shading: %1 + + + + + + + + + + Error occured during mesh creation of shading: %1 + + + + + Invalid free form gourad triangle data stream. + + + + + Invalid lattice form gourad triangle data stream. + + + + + + + Nonzero flag for first patch (flags = %1). + + + + + Invalid data in tensor product patch shading. + + + + + Invalid data in coons patch shading. + + + + + Unknown crypt filter '%1'. + + + + + + + + Revision %1 of standard security handler is not supported. + + + + + Expected %1 characters long string in entry '%2'. Provided length is %3. + + + + + Expected %1 characters long string in entry '%2'. + + + + + Invalid encryption dictionary. + + + + + Unknown security handler. + + + + + Unsupported version of document encryption (V = %1). + + + + + Invalid value for entry '%1' in encryption dictionary. Name expected. + + + + + Invalid value for entry '%1' in encryption dictionary. Boolean expected. + + + + + Invalid value for entry '%1' in encryption dictionary. Integer expected. + + + + + Crypt filter is not a dictionary! + + + + + Unsupported encryption algorithm '%1'. + + + + + Unsupported authorization event '%1'. + + + + + + Crypt filter '%1' not found. + + + + + Permissions entry in the Encryption dictionary is invalid. + + + + + + + Security permissions are manipulated. Can't open the document. + + + + + + Encryption key length (%1) exceeded maximal value of %2. + + + + + No signature handler for signature format '%1'. + + + + + Certificate format is invalid. + + + + + No signatures in certificate data. + + + + + Certificate is missing. + + + + + Generic error occured during certificate validation. + + + + + Certificate has expired. + + + + + Certificate is self-signed. + + + + + Self-signed certificate in chain. + + + + + Trusted certificate not found. + + + + + Certificate has been revoked. + + + + + Certificate validation failed with code %1. + + + + + Signature is invalid. + + + + + No signatures found in certificate. + + + + + Signature certificate is missing. + + + + + Signed data has different hash function digest. + + + + + Signed data are invalid. + + + + + Data covered by signature are not present. + + + + + %1 bytes are not covered by signature. + + + + + Certificate revocation list (CRL) not checked, validity time has expired. + + + + + Qualified certificate statement not verified. + + + + + Unable to get CRL. + + + + + OK + + + + + Warning + + + + + Error + + + + + Transformation between blending color space failed. + + + + + Invalid clear color - process color %1 was not found in clear color. + + + + + More colors in clear color (%1) than process color channel count (%2). + + + + + + + Transformation of spot color to blend color space failed. + + + + + + + Invalid number bits of image mask (should be 1 bit instead of %1 bits). + + + + + + + + Invalid size of image (%1x%2) + + + + + Invalid image color space. + + + + + Invalid base color space of indexed color space. + + + + + + + Invalid colors for indexed color space. Color space has %1 colors. Provided color count is %4. + + + + + Conversion of indexed image to base color space failed. + + + + + + + + Image masking not implemented! + + + + + + + + + + + Invalid colors for color space. Color space has %1 colors. Provided color count is %4. + + + + + + + + + + Invalid size of the decode array. Expected %1, actual %2. + + + + + Invalid matte color. + + + + + + + Invalid number of color components in color key mask. Expected %1, provided %2. + + + + + + + Invalid size of the decoded array. Expected %1, actual %2. + + + + + + Soft mask can't have masking. + + + + + + Invalid size of soft mask. + + + + + + Soft mask should have only 1 color component (alpha) instead of %1. + + + + + Invalind soft mask. + + + + + Invalid blend color space of soft mask definition. + + + + + Invalid soft mask type. + + + + + Evaulation of soft mask transfer function failed. + + + + + Cannot create shading sampler. + + + + + Image painting not implemented. + + + + + Mesh painting not implemented. + + + + + Invalid source ink index %1. + + + + + Invalid target ink index %1. + + + + + Transformation from source color space to target blending color space failed. + + + + + Gray + + + + + Red + + + + + Green + + + + + Blue + + + + + Cyan + + + + + Magenta + + + + + Yellow + + + + + Black + + + + + Process Generic%1 + + + + + Not enough data to read %1-bit value. + + + + + Can't seek to position %1. + + + + + Can't get substream - remaining %1 bits in buffer. + + + + + + + Can't convert '%1' to a number. + + + + + Closed interval [%1, %2] is invalid. + + + + + Rendering of content type '%1' is not implemented. + + + + + Image encoded by 'package' mode not decoded. + + + + + Image of type '%1' not decoded. + + + + + + XFA: Buttons not implemented. + + + + + XFA: Uknown ui. + + + + + Barcode not implemented! + + + + + XFA: Unknown fill pattern. + + + + + + XFA: special stroke is not supported. + + + + + + Catalog must be a dictionary. + + + + + Required features %1 are unsupported. Document processing can be limited. + + + + + Optional Content User Interaction + + + + + Optional Content Usage + + + + + Acrobat Forms + + + + + Navigation + + + + + Markup Annotations + + + + + Markup of 3D Content + + + + + Multimedia + + + + + U3D Format of PDF 3D + + + + + PRC Format of PDF 3D + + + + + Actions + + + + + JavaScript + + + + + Attached Files + + + + + Attached Files Modification + + + + + Collections of Attached Files + + + + + Collections of Attached Files (editation) + + + + + Digital Signature Validation + + + + + Apply Digital Signature + + + + + Digital Signature Validation (with MDP) + + + + + Geospatial 2D Features + + + + + Geospatial 3D Features + + + + + Navigation for Document Parts + + + + + Separation Simulation + + + + + Transitions/Presentations + + + + + Encryption + + + + + Invalid page rotation. + + + + + + Expected valid kids in page tree. + + + + + Detected cycles in page tree. + + + + + + Expected valid type item in page tree. + + + + + Expected dictionary in page tree. + + + + + Invalid code in the LZW stream. + + + + + Failed to initialize flate compression stream. + + + + + + zlib code: %1 + + + + + Error compressing by flate method: %1 + + + + + Failed to initialize flate decompression stream. + + + + + Error decompressing by flate method: %1 + + + + + Property '%1' should be in range from %2 to %3. + + + + + Invalid property '%1' of the stream predictor parameters. + + + + + Invalid predictor algorithm. + + + + + Security handler required, but not provided. + + + + + Invalid number of color components. Expected number is %1, actual number is %2. + + + + + + Can't load color space, because color space structure is too complex. + + + + + + + + Invalid color space. + + + + + Can't determine alternate color space for ICC based profile. Number of components is %1. + + + + + Can't determine alternate color space for ICC based profile. + + + + + Too much color components for ICC based profile. + + + + + + Operation cancelled! + + + + + Can't determine base color space for indexed color space. + + + + + Invalid colors for indexed color space. Color space has %1 colors, %2 color components and must have %3 size. Provided size is %4. + + + + + Can't determine color name for separation color space. + + + + + Can't determine alternate color space for separation color space. + + + + + Can't determine tint transform for separation color space. + + + + + Pattern doesn't have defined uniform color. + + + + + Invalid colorants for DeviceN color space. + + + + + Can't determine alternate color space for DeviceN color space. + + + + + Can't determine tint transform for DeviceN color space. + + + + + + + Page %1 doesn't exist. + + + + + Start at %1... + + + + + Rendering document into images. + + + + + Page %1 not found. + + + + + Finished at %1... + + + + + %1 miliseconds elapsed to render %2 pages... + + + + + Image_% + + + + + Target directory is empty. + + + + + Target directory '%1' doesn't exist. + + + + + File template is empty. + + + + + File template must contain character '%' for page number. + + + + + Page list is invalid. It should have form such as '1-12,17,24,27-29'. + + + + + Page list contains page, which is not in the document (%1). + + + + + DPI resolution should be in range %1 to %2. + + + + + Pixel resolution should be in range %1 to %2. + + + + + + Invalid page contents. + + + + + Graphic state stack was saved more times, than was restored. + + + + + Transparency group blending color space is invalid. + + + + + Invalid inline image dictionary, ID operator is missing. + + + + + + Expected name in the inline image dictionary stream. + + + + + Invalid inline image stream. + + + + + + Shading pattern graphic state is invalid. + + + + + Uncolored tiling pattern has not underlying color space. + + + + + Unknown operator '%1'. + + + + + Not implemented operator '%1'. + + + + + Current point of path is not set. Path is empty. + + + + + + + Invalid line dash pattern. + + + + + Marked content is not well formed (not enough EMC operators). + + + + + Blend mode '%1' is invalid. + + + + + Graphic state '%1' found, but invalid in resource dictionary. + + + + + Graphic state '%1' not found in resource dictionary. + + + + + Invalid graphic state resource dictionary. + + + + + Trying to restore graphic state more times than it was saved. + + + + + Transformation matrix is not invertible. + + + + + Can't read operand (real number) on index %1. Operand is of type '%2'. + + + + + Can't read operand (real number) on index %1. Only %2 operands provided. + + + + + Can't read operand (integer) on index %1. Operand is of type '%2'. + + + + + Can't read operand (integer) on index %1. Only %2 operands provided. + + + + + Can't read operand (name) on index %1. Operand is of type '%2'. + + + + + Can't read operand (name) on index %1. Only %2 operands provided. + + + + + Can't read operand (string) on index %1. Operand is of type '%2'. + + + + + Can't read operand (string) on index %1. Only %2 operands provided. + + + + + + + Invalid color component count. Provided %1, required %2. + + + + + + + + Invalid pattern for Pattern color space. + + + + + Text object already started. + + + + + Text object ended more than once. + + + + + Font '%1' not found in font dictionary. + + + + + Invalid font dictionary. + + + + + + + + + Invalid font, text can't be printed. + + + + + Invalid parameters of text operator with individual character spacing. + + + + + Invalid operand of text show operator. + + + + + Shading '%1' not found. + + + + + Invalid color space of the image. + + + + + Can't decode the image. + + + + + Color operators are not allowed in uncolored tilling pattern. + + + + + Reference to optional content expected. + + + + + Form of type %1 not supported. + + + + + Unknown XObject type '%1'. + + + + + Invalid format of XObject. Dictionary expected. + + + + + XObject resource dictionary not found. + + + + + Mismatched begin/end of marked content. + + + + + Compatibility operator begin/end mismatch. + + + + + Type 3 font matrix is not invertible. + + + + + Invalid stroking color. + + + + + Invalid filling color. + + + + + Invalid soft mask transfer function. + + + + + Blend mode '%1' not supported. + + + + + Blend mode '%1' is in transparency group, which is not supported. + + + + + Soft masks not supported. + + + + + + + + Invalid number of operands for function. Expected %1, provided %2. + + + + + + + + Invalid number of output variables for function. Expected %1, provided %2. + + + + + Invalid number of operands for identity function. Expected %1, provided %2. + + + + + Invalid instruction pointer. + + + + + + + Division by zero (PostScript engine). + + + + + Number expected for ceil function (PostScript engine). + + + + + Number expected for floor function (PostScript engine). + + + + + Number expected for round function (PostScript engine). + + + + + Number expected for truncate function (PostScript engine). + + + + + Square root of negative value can't be computed (PostScript engine). + + + + + Logarithm's input should be positive value (PostScript engine). + + + + + Logarithm's input should be positive value (PostScript engine). + + + + + Real value expected for conversion to integer (PostScript engine). + + + + + Integer value expected for conversion to real (PostScript engine). + + + + + Can't copy negative number of arguments (PostScript engine). + + + + + Negative index of operand (PostScript engine). + + + + + Negative number of operands (PostScript engine). + + + + + Call stack underflow (PostScript engine). + + + + + Real value expected (PostScript engine). + + + + + Integer value expected (PostScript engine). + + + + + Boolean value expected (PostScript engine). + + + + + Instruction pointer expected (PostScript engine). + + + + + Number expected (PostScript engine). + + + + + Stack overflow occured (PostScript engine). + + + + + Stack underflow occured (PostScript engine). + + + + + Invalid operator (PostScript function) '%1'. + + + + + Invalid program - bad enclosing brackets (PostScript function). + + + + + Invalid program (PostScript function). + + + + + Empty program (PostScript function). + + + + + Stack contains more values, than output size (%1 remains) (PostScript function). + + + + + + Inexact font substitution: font %1 replaced by %2 using font family %3. + + + + + Inexact font substitution: font %1 replaced by %2. + + + + + FontConfig error building pattern for font %1 + + + + + Inexact font substitution: font %1 replaced by standard font Times New Roman. + + + + + Fontconfig error + + + + + Glyph for simple font character code '%1' not found. + + + + + Glyph for composite font character with cid '%1' not found. + + + + + Details + + + + + Font + + + + + Style + + + + + Yes + + + + + No + + + + + Glyph count + + + + + Is CID keyed + + + + + Is bold + + + + + Is italics + + + + + Has vertical writing system + + + + + Has SFNT storage scheme + + + + + Has glyph names + + + + + + Encoding + + + + + None + + + + + Unicode + + + + + MS Symbol + + + + + Japanese Shift JIS + + + + + PRC - Simplified Chinese + + + + + Traditional Chinese + + + + + Korean Extended Wansung + + + + + Korean Standard + + + + + Adobe Standard + + + + + Adobe Expert + + + + + Adobe Custom + + + + + Adobe Latin 1 + + + + + Old Latin 1 + + + + + Apple Roman + + + + + Platform/Encoding = %1 %2 + + + + + FreeType error code %1: %2 + + + + + Can't load system font '%1'. + + + + + Invalid font encoding. + + + + + Font object must be a dictionary. + + + + + Invalid font type. + + + + + + + Invalid differences in encoding entry of the font. + + + + + + Invalid encoding entry of the font. + + + + + Invalid CMAP in CID-keyed font. + + + + + + Invalid descendant font in CID-keyed font. + + + + + Invalid number (%1) of descendant fonts in CID-keyed font - exactly one is required. + + + + + Invalid Type 3 font matrix. + + + + + Invalid Type 3 font character content streams. + + + + + Invalid Type 3 font character range (from %1 to %2). + + + + + + Invalid Type 3 font encoding. + + + + + + Invalid differences in encoding entry of type 3 font. + + + + + Standard + + + + + Mac Roman + + + + + Win Ansi + + + + + PDF Doc + + + + + Mac Expert + + + + + + Symbol + + + + + + Zapf Dingbats + + + + + Mac OS Roman + + + + + Custom + + + + + Times Roman + + + + + Helvetica + + + + + Courier + + + + + Standard font + + + + + Can't load CID font mapping named '%1'. + + + + + Can't fetch code from CMap definition. + + + + + Can't fetch CID from CMap definition. + + + + + Can't use cmap inside cmap file. + + + + + Character count + + + + + Content stream for type 3 font character code '%1' not found. + + + + + Image has not data. + + + + + Soft mask image can't have mask / soft mask itself. + + + + + Regular image can't have Matte entry (used for soft masks). + + + + + Invalid mask image. + + + + + Invalid soft mask object. + + + + + Malformed data while reading JPEG stream. %1 bytes skipped. + + + + + Error reading JPEG (DCT) image: %1. + + + + + JPEG 2000 Warning: %1 + + + + + JPEG 2000 Error: %1 + + + + + Unknown color space for JPEG 2000 image. + + + + + JPEG 2000 image has too much non-alpha channels. Ignoring %1 channels. + + + + + JPEG 2000 image has too much alpha channels. Ignoring %1 alpha channels. + + + + + Incompatible color components for JPEG 2000 image. + + + + + Invalid parameters for filter CCITT fax decode. + + + + + Invalid number of bits per component (%1). + + + + + Invalid XML text. + + + + + Error during converting text to font encoding. Some characters were not converted: '%1'. + + + + + Text font not defined! + + + + + Invalid rendering mode '%1'. Valid values are 0-7. + + + + + + + + + + + + Cannot convert text '%1' to number. + + + + + Text font command requires two attributes - font and size. + + + + + Text translation command requires two attributes - x and y. + + + + + Invalid text matrix parameters. + + + + + Set text matrix command requires six elements - m11, m12, m21, m22, x, y. + + + + + Invalid command '%1'. + + + + + Font '%1' is invalid. + + + + + Info + + + + + %1 (%2 replies) + + + + + #%1: %2 + + + + + Rounded rectangle + + + + + Rectangle + + + + + SVG image + + + + + Dot + + + + + Freehand curve + + + + + Text box '%1' + + + + + Image + + + + + Path + + + + + Compile time: %1 [ms] + + + + + Draw time: %1 [ms] + + + + + Precompiled page size is too high (%1 kB). Cache size is %2 kB. Increase the cache size! + + + + + pdf::PDFWidgetAnnotationManager + + + Annotation + + + + + Show Popup Window + + + + + Copy to Multiple Pages + + + + + Edit + + + + + Delete + + + + + Copy Annotation + + + + + Copy Annotation onto Multiple Pages + + + + + pdf::PDFXRefTable + + + + + + + Invalid format of reference table. + + + + + + + Bad format of reference table entry. + + + + + Trailer dictionary is invalid. + + + + + Offset of previous reference table is invalid. + + + + + + + Invalid format of cross-reference stream. + + + + + Invalid format of cross-reference stream - not enough data in the stream. + + + + + pdfdiff::DifferencesDockWidget + + + Differen&ces + + + + + %1 Differences (+%2 hidden) + + + + + %1 Differences + + + + + Page %1 + + + + + Left %1 + + + + + Right %1 + + + + + No Differences Found! + + + + + pdfdiff::DifferencesDrawInterface + + + Difference + + + + + pdfdiff::MainWindow + + + &Main + + + + + &Differences + + + + + &View + + + + + + + + + Error + + + + + Info + + + + + No differences found between the compared documents. + + + + + + Select PDF document + + + + + XML file (*.xml) + + + + + File '%1' cannot be opened. %2 + + + + + Save results to XML + + + + + Displayed results are empty. Cannot save empty results. + + + + + Save As + + + + + Portable Document (*.pdf);;All files (*.*) + + + + + PDF document (*.pdf) + + + + + Encrypted document + + + + + Enter password to access document content + + + + + pdfdiff::PDFAboutDialog + + + Library + + + + + Version + + + + + License + + + + + URL + + + + + pdfdiff::SettingsDockWidget + + + S&ettings + + + + + pdfpagemaster::AssembleOutputSettingsDialog + + + No Outline + + + + + Join Outlines + + + + + Document Parts + + + + + Select output directory + + + + + pdfpagemaster::MainWindow + + + &Main + + + + + &Insert + + + + + &Select + + + + + &Regroup + + + + + &Zoom + + + + + Ma&ke + + + + + + Select PDF document(s) + + + + + + + PDF document (*.pdf) + + + + + Select + + + + + Regroup + + + + + Encrypted document + + + + + Enter password to access document '%1' + + + + + + + + + + Error + + + + + Document security doesn't permit to organize pages. + + + + + No documents to assemble. + + + + + Document with given filename already exists. + + + + + Images (*.%1) + + + + + Select Image(s) + + + + + Select PDF document + + + + + pdfpagemaster::PDFAboutDialog + + + Library + + + + + Version + + + + + License + + + + + URL + + + + + pdfpagemaster::PageItemModel + + + Page Group + + + + + Document collection + + + + + Page Count: %1 + + + + + Image + + + + + Images + + + + + Blank Page + + + + + Blank Pages + + + + + #BBBB00@Collection + + + + + #D98335@Blank + + + + + #24A5EA@Image + + + + + pdfpagemaster::SelectOutlineToRegroupDialog + + + Select All + + + + + Deselect All + + + + + Invert Selection + + + + + Select Level 1 + + + + + Select Level 2 + + + + + Select subtree + + + + + Deselect subtree + + + + + pdfplugin::AudioBookCreator + + + No suitable voice found. + + + + + + Cannot create output stream '%1'. + + + + + Cannot create voice. + + + + + Failed to set requested voice. + + + + + Audio book plugin is unsupported on your system. + + + + + pdfplugin::AudioBookPlugin + + + &Create Text Stream for Audio Book + + + + + Synchronize Selection from &Table to Graphics + + + + + Synchronize Selection from &Graphics to Table + + + + + &Activate Selection + + + + + &Deactivate Selection + + + + + Select by &Rectangle + + + + + Select by Contained &Text + + + + + Select by Regular &Expression + + + + + Select by Page &List + + + + + Restore &Original Text + + + + + Move Selection &Up + + + + + Move Selection &Down + + + + + Create Audio &Book + + + + + Clear Te&xt Stream + + + + + &Audio Book + + + + + + + + + + Error + + + + + Cannot select items by text, because text is empty. + + + + + Regular expression is not valid. %1 + + + + + Cannot select items by regular expression, because regular expression definition is empty. + + + + + Cannot select items by page indices, because page indices are invalid. %1 + + + + + Cannot select items by page indices, because page indices are empty. + + + + + Question + + + + + Restore original texts in selected items? All changes will be lost. + + + + + Select Audio File + + + + + Audio stream (*.mp3) + + + + + Audio book creator cannot be initialized. + + + + + pdfplugin::AudioTextStreamEditorDockWidget + + + Audio Book Actions + + + + + pdfplugin::CreateRedactedDocumentDialog + + + File Name + + + + + Error + + + + + Cannot convert '%1' to color value. + + + + + pdfplugin::DimensionsPlugin + + + &Horizontal Dimension + + + + + &Vertical Dimension + + + + + &Linear Dimension + + + + + &Perimeter + + + + + &Rectangle Perimeter + + + + + &Area + + + + + R&ectangle Area + + + + + An&gle + + + + + &Show Dimensions + + + + + &Clear Dimensions + + + + + Se&ttings + + + + + &Dimensions + + + + + A = %1 %2 + + + + + p = %1 %2 + + + + + pdfplugin::EditorPlugin + + + &Edit page content + + + + + Create &Text Label + + + + + Create &Freehand Curve + + + + + Create &Accept Mark + + + + + Create &Reject Mark + + + + + Create R&ectangle + + + + + &Create Rounded Rectangle + + + + + Create &Horizontal Line + + + + + Create &Vertical Line + + + + + Create L&ine + + + + + Create &Dot + + + + + Create &SVG Image + + + + + Clear A&ll Graphics + + + + + Ed&itor + + + + + Errors (%2) occured while creating content stream on page %3.<br>%1 + + + + + Error + + + + + Confirm Changes + + + + + The changes to the page content will be written to the document. Do you want to continue? + + + + + Editor Toolbox + + + + + pdfplugin::InkCoverageStatisticsModel + + + Total + + + + + Page Index + + + + + [ mm² ] + + + + + [ % ] + + + + + pdfplugin::ObjectInspectorDialog + + + Document + + + + + Pages + + + + + Content streams + + + + + Graphic states + + + + + Color spaces + + + + + Patterns + + + + + Shadings + + + + + Images + + + + + Forms + + + + + Fonts + + + + + Actions + + + + + Annotations + + + + + Object List + + + + + pdfplugin::ObjectInspectorPlugin + + + Object &Inspector + + + + + Object &Statistics + + + + + O&bject Inspector + + + + + pdfplugin::ObjectStatisticsDialog + + + Statistics by Object Function + + + + + + Statistics by Object Type + + + + + Statistics by Object Class + + + + + Class + + + + + + Percentage [%] + + + + + + Count [#] + + + + + Space Usage [bytes] + + + + + Page + + + + + Content Stream + + + + + Graphic State + + + + + Color Space + + + + + Pattern + + + + + Shading + + + + + Image + + + + + Form + + + + + Font + + + + + Action + + + + + Annotation + + + + + Other + + + + + Type + + + + + pdfplugin::ObjectViewerWidget + + + + %1 %2 R + + + + + Part of object %1 + + + + + <none> + + + + + Null + + + + + Bool + + + + + Integer + + + + + Real + + + + + String + + + + + Name + + + + + Array + + + + + Dictionary + + + + + Stream + + + + + Reference + + + + + null + + + + + true + + + + + false + + + + + Array [%1 items] + + + + + Dictionary [%1 items] + + + + + Stream [%1 items, %2 data bytes] + + + + + Invalid color space of the image. + + + + + Image Stream [%1 items, %2 data bytes, %3 x %4 pixels, %5 bits per component] + + + + + [Unknown] + + + + + %1 (part) + + + + + pdfplugin::OutputPreviewDialog + + + Separations + + + + + Color Warnings | Ink Coverage + + + + + Color Warnings | Rich Black + + + + + Ink Coverage + + + + + Shape Channel + + + + + Opacity Channel + + + + + Process Inks + + + + + Spot Inks + + + + + pdfplugin::OutputPreviewPlugin + + + &Output Preview + + + + + &Ink Coverage + + + + + Output Previe&w + + + + + pdfplugin::OutputPreviewWidget + + + Distribution + + + + + Process Inks + + + + + Spot Inks + + + + + Warning | Ink Coverage + + + + + + OK + + + + + + Failure + + + + + Warning | Rich Black + + + + + Ink Coverage + + + + + Shape/Opacity + + + + + Sample Color + + + + + pdfplugin::PDFObjectInspectorTreeItemModel + + + null + + + + + true + + + + + false + + + + + Array [%1 items] + + + + + Dictionary [%1 items] + + + + + Stream [%1 items, %2 data bytes] + + + + + pdfplugin::RedactPlugin + + + Redact &Rectangle + + + + + Redact &Text + + + + + Redact Text &Selection + + + + + Redact &Page(s) + + + + + Create Redacted &Document + + + + + Redac&t + + + + + Information + + + + + Select text via 'Advanced Search' tool, and then redact it using this tool. Select rows in 'Result' table to select particular results. + + + + + Redact Pages + + + + + Page Range to be Redacted + + + + + Error + + + + + pdfplugin::SignDialog + + + Sign digitally + + + + + Sign digitally (invisible signature) + + + + + + Error + + + + + Certificate does not exist. + + + + + Password to open certificate is invalid. + + + + + pdfplugin::SignaturePlugin + + + &Activate signature creator + + + + + Create &Text Label + + + + + Create &Freehand Curve + + + + + Create &Accept Mark + + + + + Create Reject &Mark + + + + + Create &Rectangle + + + + + Create R&ounded Rectangle + + + + + Create &Horizontal Line + + + + + Create &Vertical Line + + + + + Create &Line + + + + + Create &Dot + + + + + Create SVG &Image + + + + + Clear All &Graphics + + + + + Sign &Electronically + + + + + Sign Digitally &With Certificate + + + + + Certificates &Manager + + + + + Si&gnature + + + + + Confirm Signature + + + + + Document will be signed electronically. Do you want to continue? + + + + + + + Error + + + + + + + Failed to create digital signature. + + + + + Save Signed Document + + + + + Portable Document (*.pdf);;All files (*.*) + + + + + Signature Toolbox + + + + + pdfplugin::SoftProofingPlugin + + + &Soft Proofing + + + + + &Gamut Checking + + + + + Soft &Proofing Settings + + + + + Soft &Proofing + + + + + pdfviewer::ImagePreviewDelegate + + + Toggle this icon to switch image conversion to bitonal format on or off. + + + + + pdfviewer::PDFAboutDialog + + + Library + + + + + Version + + + + + License + + + + + URL + + + + + pdfviewer::PDFActionComboBox + + + Find action... + + + + + pdfviewer::PDFAdvancedFindWidget + + + Page No. + + + + + Phrase + + + + + Context + + + + + Search error + + + + + Search phrase regular expression has error '%1' near symbol %2. + + + + + Results (%1) + + + + + Results + + + + + pdfviewer::PDFBookmarkItemDelegate + + + Page %1 | Generated + + + + + Page %1 + + + + + pdfviewer::PDFBookmarkManager + + + User bookmark for page %1 + + + + + pdfviewer::PDFCreateBitonalDocumentDialog + + + ORIGINAL + + + + + BITONAL + + + + + Perform + + + + + Converting images... + + + + + pdfviewer::PDFDocumentPropertiesDialog + + + Properties + + + + + PDF version + + + + + Title + + + + + Subject + + + + + Author + + + + + Keywords + + + + + Creator + + + + + Producer + + + + + Creation date + + + + + + Modified date + + + + + + + + + + Yes + + + + + + + + + + No + + + + + Unknown + + + + + Content + + + + + Page count + + + + + Paper format + + + + + Paper size + + + + + Trapped + + + + + Custom properties + + + + + File information + + + + + Name + + + + + Directory + + + + + Writable + + + + + Size + + + + + Created date + + + + + Last read date + + + + + Security + + + + + + + None + + + + + Standard + + + + + Public Key + + + + + Custom + + + + + No authorization required + + + + + Authorized as owner + + + + + Authorized as user + + + + + Document encryption + + + + + Authorized as + + + + + Metadata encrypted + + + + + Version + + + + + Permissions + + + + + Print (low resolution) + + + + + Print (high resolution) + + + + + Content extraction + + + + + Content extraction (accessibility) + + + + + Page assembling + + + + + Modify content + + + + + Modify interactive items + + + + + Fill form fields + + + + + TrueType + + + + + Type0 (CID keyed) + + + + + Type1 (8 bit keyed) + + + + + MMType1 (8 bit keyed) + + + + + Type3 (content streams for font glyphs) + + + + + Type + + + + + Font family + + + + + Embedded subset + + + + + Viewer settings + + + + + Default printer settings + + + + + Single page + + + + + Continuous column + + + + + Two continuous columns + + + + + Two pages + + + + + Default + + + + + Show outlines + + + + + Show thumbnails + + + + + Fullscreen + + + + + Show optional content + + + + + Show attachments + + + + + Left to right + + + + + Right to left + + + + + Page layout + + + + + View mode + + + + + Writing direction + + + + + Application default + + + + + Scale + + + + + Simplex + + + + + + Duplex (flip long edge) + + + + + Duplex mode + + + + + Pick tray by page size + + + + + Default print page ranges + + + + + Number of copies + + + + + pdfviewer::PDFEditorMainWindow + + + Standard + + + + + % + + + + + &Sidebar + + + + + Advanced find + + + + + Ad&vanced Find... + + + + + / %1 + + + + + pdfviewer::PDFEncryptionSettingsDialog + + + None + + + + + RC4 128-bit | R4 + + + + + AES 128-bit | R4 + + + + + AES 256-bit | R6 + + + + + Certificate Encryption + + + + + Error + + + + + pdfviewer::PDFEncryptionStrengthHintWidget + + + Very weak + + + + + Weak + + + + + Moderate + + + + + Strong + + + + + Very strong + + + + + pdfviewer::PDFOptimizeDocumentDialog + + + Embed (dereference) simple objects, such as int, bool, real + + + + + Remove null objects from dictionary entries + + + + + Remove unused objects (objects unreachable from document root object) + + + + + Merge identical objects + + + + + Shrink object storage (squeeze free entries) + + + + + Recompress flate streams by maximal compression + + + + + Optimize + + + + + Optimization started! + + + + + Optimization finished! + + + + + Optimized in %1 msecs + + + + + Bytes before optimization: %1 + + + + + Bytes after optimization: %1 + + + + + Bytes saved by optimization: %1 + + + + + Compression ratio: %1 % + + + + + pdfviewer::PDFProgramController + + + Printing document + + + + + Go to action + + + + + Failed to go to destination '%1'. Destination wasn't found. + + + + + Would you like to launch application '%1' in working directory '%2' with parameters '%3'? + + + + + + + + Launch application + + + + + + Executing application failed. Error code is %1. + + + + + Would you like to launch application '%1'? + + + + + Would you like to open URL '%1'? + + + + + + Open URL + + + + + Opening url '%1' failed. + + + + + Save As + + + + + Portable Document (*.pdf);;All files (*.*) + + + + + + Error + + + + + Save Document + + + + + Do you wish to save modified document before it is closed? + + + + + Error while starting email client occured! + + + + + Permission to change document security is denied. + + + + + Failed to create security handler. + + + + + + Reauthorization is required to change document encryption. + + + + + Encrypted document + + + + + Enter password to access document content + + + + + Document '%1' was successfully loaded! + + + + + Document read error: %1 + + + + + %1 - %2 + + + + + + Reset Settings + + + + + Do you wish to restore the default factory settings of the program? All settings changed by the user will be deleted. Application will be closed. + + + + + Default factory settings were restored. Application will be now closed. + + + + + Plugins + + + + + Plugin on/off state has been changed. Please restart application to apply settings. + + + + + + Select PDF document + + + + + PDF document (*.pdf) + + + + + Export Bookmarks As + + + + + JSON (*.json);;All files (*.*) + + + + + JSON (*.json) + + + + + Rendering of page %1: %2 errors occured. + + + + + pdfviewer::PDFRecentFileManager + + + (&%1) %2 + + + + + Recent file dummy &%1 + + + + + pdfviewer::PDFRenderToImagesDialog + + + %1 +Page %2: %3 + + + + + Select output directory + + + + + Cannot write page image to file '%1', because: %2. + + + + + Error + + + + + pdfviewer::PDFSanitizeDocumentDialog + + + Remove document info + + + + + Remove all metadata + + + + + Remove outline + + + + + Remove file attachments + + + + + Remove embedded search index + + + + + Remove comments and other markup annotations + + + + + Remove page thumbnails + + + + + Sanitize + + + + + Sanitization started! + + + + + Sanitization finished! + + + + + Sanitized in %1 msecs + + + + + Bytes before sanitization: %1 + + + + + Bytes after sanitization: %1 + + + + + Bytes saved by sanitization: %1 + + + + + Compression ratio: %1 % + + + + + pdfviewer::PDFSidebarWidget + + + + + + + Error + + + + + Speech feature is unavailable. No speech engines detected. If you're using Linux, please install speech libraries like 'flite' or 'speechd'. + + + + + The speech feature is available, but its options are not properly set. Please check the speech settings in the options dialog. + + + + + Signature - %1 + + + + + Timestamp - %1 + + + + + Unknown + + + + + Certificate is valid. + + + + + Signature is valid. + + + + + Hash algorithm: %1 + + + + + Certificate validation chain + + + + + Protected by RSA method, %1-bit key + + + + + Protected by DSA method, %1-bit key + + + + + Protected by EC method, %1-bit key + + + + + Protected by DH method, %1-bit key + + + + + Unknown protection method, %1-bit key + + + + + Country + + + + + Organization + + + + + Org. unit + + + + + Name + + + + + State + + + + + Serial number + + + + + Locality + + + + + Title + + + + + Surname + + + + + Forename + + + + + Initials + + + + + Pseudonym + + + + + Qualifier + + + + + Email + + + + + Digital signatures + + + + + Non-repudiation + + + + + Key encipherement + + + + + Application data encipherement + + + + + Key agreement + + + + + Verify signatures on certificates + + + + + Verify signatures on revocation information + + + + + Encipher data during key agreement + + + + + Decipher data during key agreement + + + + + Trusted timestamping + + + + + Key usages + + + + + User + + + + + Page %1 + + + + + Save to File... + + + + + Save attachment + + + + + + Failed to save attachment to file. %1 + + + + + Failed to save attachment to file. Attachment is corrupted. + + + + + Add to trusted certificates + + + + + Add to Trusted Certificate Store + + + + + Are you sure want to add '%1' to the trusted certificate store? + + + + + Trusted Certificate Store Error + + + + + Failed to add certificate to the trusted certificate store. + + + + + Follow + + + + + Delete + + + + + Insert + + + + + Rename + + + + + Font Bold + + + + + Font Italic + + + + + Set Target + + + + + Select Named Destination + + + + + OK + + + + + Cancel + + + + + Named Destination + + + + + Fit Page + + + + + Fit Page Horizontally + + + + + Fit Page Vertically + + + + + Fit Rectangle + + + + + Fit Bounding Box + + + + + Fit Bounding Box Horizontally + + + + + Fit Bounding Box Vertically + + + + + XYZ + + + + + pdfviewer::PDFViewerMainWindow + + + Standard + + + + + % + + + + + &Sidebar + + + + + / %1 + + + + + pdfviewer::PDFViewerSettingsDialog + + + Engine + + + + + Rendering + + + + + Shading + + + + + Cache + + + + + Shortcuts + + + + + Colors | CMS + + + + + Colors | Postprocessing + + + + + Security + + + + + UI + + + + + Speech + + + + + Forms + + + + + Signature + + + + + Plugins + + + + + Software | QPainter + + + + + Software | Blend2D | Parallel + + + + + Software | Blend2D | Sequential + + + + + Single thread + + + + + Multithreading (load balanced) + + + + + Multithreading (maximum threads) + + + + + Auto + + + + + Perceptual + + + + + Relative colorimetric + + + + + Absolute colorimetric + + + + + Saturation + + + + + Low + + + + + Medium + + + + + High + + + + + None + + + + + XYZ scaling + + + + + CAT97 matrix + + + + + CAT02 matrix + + + + + Bradford method + + + + + Automatic (or via command line) + + + + + Light scheme + + + + + Dark scheme + + + + + Type + + + + + Certificate + + + + + Organization + + + + + Valid from + + + + + Valid to + + + + + User + + + + + System + + + + + Action + + + + + Shortcut + + + + + Error + + + + + Shortcut '%1' is invalid for action %2. + + + + + Active + + + + + Name + + + + + Author + + + + + Version + + + + + License + + + + + Select color profile directory + + + + diff --git a/translations/PDF4QT_ko.ts b/translations/PDF4QT_ko.ts new file mode 100644 index 0000000..c08e018 --- /dev/null +++ b/translations/PDF4QT_ko.ts @@ -0,0 +1,14569 @@ + + + + + Application + + + PDF4QT Editor + + + + + PDF4QT Viewer + + + + + PDF4QT PageMaster + + + + + PDF4QT Diff + + + + + PDF4QT LaunchPad + + + + + AssembleOutputSettingsDialog + + + + Assemble Documents + + + + + ... + + + + + File template + + + + + <html><head/><body><p>In a template file name, you can use symbols '#' for output document number (means output document index, not input document) or '@' for page number of input document (if document contains more pages, it is a page number of a original document), or '%' for index of input document. Use more '#' or '@' or '%' for setting minimal number of digits (if number has less digits, the they are padded with zero).</p></body></html> + + + + + Overwrite existing files + + + + + doc-#.pdf + + + + + Generate into directory + + + + + Outline Mode + + + + + AudioTextStreamEditorDockWidget + + + Text Stream for Audio Book + + + + + CreateRedactedDocumentDialog + + + Create Redacted Document + + + + + Redacted document + + + + + Output file name + + + + + ... + + + + + Appearance + + + + + Fill redacted area with color: + + + + + Options + + + + + Copy document title into redacted document + + + + + Copy document metadata into redacted document + + + + + Copy outline into redacted document + + + + + DifferencesDockWidget + + + Differences + + + + + DimensionTool + + + pt + + + + + in + + + + + mm + + + + + cm + + + + + sq. pt + + + + + sq. in + + + + + sq. mm + + + + + sq. cm + + + + + ° + + + + + rad + + + + + GeneratorMainWindow + + + Code Generator + + + + + Remove + + + + + Clone + + + + + New + + + + + Parameters + + + + + Data type + + + + + Value + + + + + Item type + + + + + Name + + + + + Text description / C++ code + + + + + Delete + + + + + Up + + + + + Down + + + + + New Child + + + + + New Sibling + + + + + File + + + + + Code + + + + + XFA + + + + + Load + + + + + Ctrl+O + + + + + Save + + + + + Ctrl+S + + + + + Save As... + + + + + Set code header (*.h) + + + + + Set code source (*.cpp) + + + + + Generate code + + + + + Ctrl+G + + + + + Set code header XFA + + + + + Set code source XFA + + + + + Generate XFA code + + + + + Set XFA description + + + + + + Select XML definition file + + + + + Create function + + + + + Enter function name + + + + + + Select cpp header + + + + + + Select cpp source + + + + + Select xml definition + + + + + InkCoverageDialog + + + Ink Coverage Calculator + + + + + Ink Coverage + + + + + LaunchApplicationWidget + + + Form + + + + + Title + + + + + TextLabel + + + + + LaunchDialog + + + Launch Application + + + + + Editor + + + + + Viewer + + + + + Diff + + + + + PageMaster + + + + + Go beyond basic browsing. This tool packs a punch with a host of advanced features, including encryption, document reading, digital signature verification, annotation editing, and even support for searching text using regular expressions. Turn pages into images, and enhance your PDF interactions with multiple available plugins. + + + + + Simplify your viewing experience. This lightweight viewer offers essential viewing functions in a clean, user-friendly interface. + + + + + Spot differences effortlessly. This tool allows users to open two documents and receive a detailed list of differences. View these differences in a page-to-page window where they are clearly marked. Save these differences into an XML file for future reference. + + + + + Take control of your documents. Manage whole documents or individual pages with ease. Merge documents into a single file, or split them into multiple ones. You can also move, clone, or add pages with a few clicks, all within an intuitive user interface. + + + + + Error + + + + + Failed to start process '%1' + + + + + MainWindow + + + JBIG2 Image Viewer + + + + + Images + + + + + File + + + + + Add image + + + + + + Ctrl+O + + + + + Clear + + + + + + Ctrl+W + + + + + Add JBIG2 image + + + + + Ctrl+J + + + + + + + Error + + + + + + Open image + + + + + + Workspace + + + + + + &File + + + + + &Edit + + + + + &Insert + + + + + + + &View + + + + + &Make + + + + + + &Help + + + + + + &Toolbars + + + + + &Regroup + + + + + &Add Documents... + + + + + Add Documents + + + + + C&lose + + + + + Alt+F4 + + + + + Clone &Selection + + + + + Ctrl+L + + + + + Re&move Selection + + + + + Del + + + + + Restore Removed &Items + + + + + Ctrl+Shift+R + + + + + Insert &PDF + + + + + Insert PDF + + + + + Ctrl+I + + + + + &Insert Image + + + + + Ctrl+Alt+I + + + + + Insert &Empty Page + + + + + Ctrl+Shift+I + + + + + Cu&t + + + + + Ctrl+X + + + + + &Copy + + + + + Ctrl+C + + + + + &Paste + + + + + Ctrl+V + + + + + Repl&ace Selection + + + + + Ctrl+Alt+R + + + + + Select &None + + + + + Ctrl+N + + + + + Select &All + + + + + Ctrl+A + + + + + Select &Even + + + + + F9 + + + + + Select &Odd + + + + + F10 + + + + + Select &Portrait + + + + + F11 + + + + + Select &Landscape + + + + + F12 + + + + + Rotate &Right + + + + + F4 + + + + + Rotate &Left + + + + + Shift+F4 + + + + + &Zoom In + + + + + Ctrl++ + + + + + Zoo&m Out + + + + + Ctrl+- + + + + + + &Get Source + + + + + + &About... + + + + + + F1 + + + + + &United Document... + + + + + + F5 + + + + + &Separate to Multiple Documents... + + + + + + F6 + + + + + Separate to Multiple Documents (&Grouped)... + + + + + F7 + + + + + &Group + + + + + Ctrl+G + + + + + U&ngroup + + + + + Ctrl+Shift+G + + + + + &Clear + + + + + Regroup by &Even/Odd Pages + + + + + Regroup by Re&verse + + + + + Regroup by &Page Pairs + + + + + Regroup by &Outline + + + + + Regroup by &Alternating Pages + + + + + Regroup by Alternating Pages (&Reversed Order) + + + + + &Invert Selection + + + + + &Undo + + + + + Ctrl+Z + + + + + Re&do + + + + + Ctrl+Y + + + + + &Prepare Icon Theme + + + + + + Become a &Sponsor + + + + + + &Compare + + + + + &Filter + + + + + Open &Left... + + + + + Open &Right... + + + + + &Close + + + + + Ctrl+F4 + + + + + &Previous Difference + + + + + Shift+F6 + + + + + &Next Difference + + + + + Create Compare &Report... + + + + + Filter &Text + + + + + Filter &Vector Graphics + + + + + Filter &Images + + + + + Filter &Shading + + + + + Filter &Page Movement + + + + + View &Differences + + + + + View &Left + + + + + View &Right + + + + + View &Overlay + + + + + &Show Pages with Differences + + + + + Show Pages with Differences + + + + + Save Differences to &XML... + + + + + S&ynchronize View with Differences + + + + + Display &Differences + + + + + Display &Markers + + + + + ObjectInspectorDialog + + + Object Inspector + + + + + Objects + + + + + Current Object + + + + + ObjectStatisticsDialog + + + Object Statistics + + + + + ObjectViewerWidget + + + Form + + + + + Pin + + + + + Unpin + + + + + Information + + + + + Reference + + + + + Type + + + + + Description + + + + + Contents + + + + + OutputPreviewDialog + + + Output Preview + + + + + Settings + + + + + Red + + + + + Blue + + + + + Green + + + + + Simulate separations + + + + + Simulate paper color + + + + + Display + + + + + Images + + + + + Text + + + + + Vector graphics + + + + + Shading patterns + + + + + Tiling patterns + + + + + Ctrl+S + + + + + Color Warnings + + + + + Alarm color + + + + + + % + + + + + Coverage limit + + + + + Select + + + + + Rich black limit + + + + + Inks + + + + + PDFAboutDialog + + + + + About + + + + + + + <html><head/><body><p><span style=" font-weight:600;">PdfForQtViewer</span></p><p>Copyright 2018-2025 Jakub Melka. All rights reserved.</p><p>THE SOFTWARE IS PROVIDED &quot;AS IS&quot;, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.</p></body></html> + + + + + + + Used libraries + + + + + PDFAdvancedFindWidget + + + Form + + + + + Search for + + + + + Search Settings + + + + + Search + + + + + Whole words only + + + + + Remove soft hyphen at end of line + + + + + Search for: + + + + + Case sensitive + + + + + Use regular expressions + + + + + Clear + + + + + Regular Expression Settings + + + + + Dot matches everything (including newline characters) + + + + + Multiline matching (enables search using '^' and '$' to mark line beginnings/endings) + + + + + Results + + + + + PDFCertificateManagerDialog + + + Certificate Manager + + + + + Certificates + + + + + PDFCreateBitonalDocumentDialog + + + Create Bitonal Document + + + + + Color to Bitonal Conversion Options + + + + + Automatic (Otsu's 1D method) + + + + + User-Defined Intensity Threshold (0-255): + + + + + PDFCreateCertificateDialog + + + Create Certificate + + + + + Create Self Signed Certificate + + + + + Name + + + + + Organization + + + + + Organization Unit + + + + + Email + + + + + Country + + + + + Key length + + + + + Valid till + + + + + Certificate file + + + + + PDFDocumentPropertiesDialog + + + Document Properties + + + + + + Properties + + + + + File Information + + + + + + Security + + + + + + Fonts + + + + + Display && Print + + + + + Display && Print Settings + + + + + PDFEditorMainWindow + + + PDF Editor + + + + + &File + + + + + &Go To + + + + + Book&mark Settings + + + + + &View + + + + + Page La&yout + + + + + Re&ndering Options + + + + + &Tools + + + + + + &Help + + + + + &Developer + + + + + &Edit + + + + + + &Insert + + + + + Sticky &Note + + + + + &Stamp + + + + + Text Hi&ghlight + + + + + &Open... + + + + + &Close + + + + + &Quit + + + + + &Single Page + + + + + Single Page + + + + + Ctrl+1 + + + + + &Continuous + + + + + Continuous + + + + + Ctrl+2 + + + + + Two &Pages + + + + + Two Pages + + + + + Ctrl+3 + + + + + &Two columns + + + + + Two columns + + + + + Ctrl+4 + + + + + &First page on right side + + + + + First page on right side + + + + + Ctrl+5 + + + + + &Rendering Errors... + + + + + Ctrl+E + + + + + &Antialiasing + + + + + Antialiasing + + + + + &Text Antialiasing + + + + + Text Antialiasing + + + + + &Smooth Pictures + + + + + Smooth Pictures + + + + + &Ignore Optional Content Settings + + + + + Ignore Optional Content Settings + + + + + &Options... + + + + + Ctrl+K + + + + + Reset to &Factory Settings + + + + + &Zoom In + + + + + Zoom &Out + + + + + &About... + + + + + Fit &Page + + + + + Fit &Width + + + + + W + + + + + &Fit Height + + + + + H + + + + + Prope&rties... + + + + + Send by &E-Mail... + + + + + Show Text &Blocks + + + + + Show Text &Lines + + + + + &Find + + + + + Fin&d Previous + + + + + Fi&nd Next + + + + + Select te&xt + + + + + Select &table + + + + + Select &All + + + + + Dese&lect + + + + + &Copy text + + + + + Color | &Inverted + + + + + Color | &Grayscale + + + + + Color | &High Contrast + + + + + Color | &Monochromatic + + + + + Color | &Custom + + + + + Rotate &Right + + + + + Rotate &Left + + + + + &Print... + + + + + Render to &Images... + + + + + &Magnifier + + + + + Magnifier Tool + + + + + &Screenshot + + + + + &Extract Image + + + + + &Display Annotations + + + + + Display Annotations + + + + + &Undo + + + + + &Redo + + + + + &Optimize... + + + + + Optimizes document to reduce file size. + + + + + Save &As... + + + + + &Save + + + + + &Comment + + + + + &Key + + + + + &New Paragraph + + + + + No&te + + + + + &Paragraph + + + + + &Hyperlink + + + + + &Inline text + + + + + Str&aight Line + + + + + Pol&yline + + + + + &Rectangle + + + + + &Polygon + + + + + &Ellipse + + + + + &Freehand Curve + + + + + &Highlight + + + + + &Underline + + + + + Stri&keout + + + + + &Squiggly + + + + + Go to document &start + + + + + Go to document &end + + + + + Go to &next page + + + + + Go to &previous page + + + + + Go &to next line + + + + + Go t&o previous line + + + + + &Get Source + + + + + &Encryption... + + + + + &Certificates... + + + + + &Sanitize... + + + + + Sanitize document to remove sensitive information. + + + + + Automatic &Document Refresh + + + + + Automatically reloads the document if a change made by an external program is detected. + + + + + Become a &Sponsor + + + + + Create &Bitonal Document... + + + + + Create Bitonal Document + + + + + Convert the colored images to monochromatic to create a bitonal document. + + + + + &Bookmark Page + + + + + Bookmark Page + + + + + Bookmark page for fast navigation. + + + + + &Go to Next Bookmark + + + + + Go to Next Bookmark + + + + + Navigates to the next bookmarked page. + + + + + Go to Previous Boo&kmark + + + + + Go to Previous Bookmark + + + + + Navigates to the previous bookmarked page. + + + + + &Export Bookmarks + + + + + Export Bookmarks + + + + + Export bookmarks to the file. + + + + + &Import Bookmarks + + + + + Import Bookmarks + + + + + Import bookmarks from the file. + + + + + &Generate Bookmarks Automatically + + + + + Generate Bookmarks Automatically + + + + + If checked, bookmarks for main document chapters are generated automatically. + + + + + Display &Render Times + + + + + Display Render Times + + + + + PDFEncryptionSettingsDialog + + + Encryption Settings + + + + + Encryption Method + + + + + Encryption algorithm + + + + + <html><head/><body><p>Select encryption algorithm. AES-256 is strongly recommended, because older encryption algorithm can be potentially broken. Select older algorithms (as AES-128 or RC4) only, if you need backward compatibility. Also, choose a strong password to ensure strong encryption.</p><p>Public key security using certificate is also supported. In that case, you must select a certificate with private key, and this certificate is then used to encrypt data. User, which wants to open document encrypted with certificate, must have a private key to the certificae.</p></body></html> + + + + + Certificate + + + + + Passwords + + + + + Password (document open) + + + + + Password (owner access) + + + + + Encrypt Contents + + + + + Encrypt all document contents, including document metadata + + + + + Encrypt all document contets except metadata + + + + + Encrypt file attachments only + + + + + Permissions + + + + + Print (low resolution) + + + + + Fill interactive forms + + + + + Print (high resolution) + + + + + Accessibility + + + + + Modify document contents + + + + + Assemble document (insert, rotate, delete pages...) + + + + + Edit interactive items (annotations, forms, ...) + + + + + Copy/extract document content + + + + + PDFOptimizeDocumentDialog + + + Document optimization + + + + + Optimization Settings + + + + + PDFPageContentEditorEditedItemSettings + + + Dialog + + + + + Text + + + + + Text Content + + + + + Image + + + + + Image Content + + + + + Height + + + + + Width + + + + + Ratio + + + + + Load Image + + + + + Style + + + + + + ... + + + + + Pen Style + + + + + Pen Color + + + + + Brush Style + + + + + Pen Width + + + + + Stroke path + + + + + Brush Color + + + + + Fill path + + + + + Transformation + + + + + Translation in Y + + + + + Translation in X + + + + + Scale in X + + + + + Scale in Y + + + + + Shear factor + + + + + <html><head/><body><p>Rotation angle</p></body></html> + + + + + φ + + + + + <html><head/><body><p>s<span style=" vertical-align:sub;">x</span></p></body></html> + + + + + <html><head/><body><p>s<span style=" vertical-align:sub;">y</span></p></body></html> + + + + + m + + + + + <html><head/><body><p>t<span style=" vertical-align:sub;">x</span></p></body></html> + + + + + <html><head/><body><p>t<span style=" vertical-align:sub;">y</span></p></body></html> + + + + + PDFPageContentEditorStyleSettings + + + Style Settings + + + + + Text Alignment + + + + + Pen Style + + + + + Pen Width + + + + + Brush Color + + + + + + + ... + + + + + Pen Color + + + + + Font + + + + + Text Angle + + + + + Brush Style + + + + + PDFPageContentEditorWidget + + + Content editor + + + + + Toolbox + + + + + Geometry Tools + + + + + Align to Top + + + + + Align to Vertical Center + + + + + Align to Bottom + + + + + Set Same Width + + + + + Set Same Height + + + + + Set Same Size + + + + + Align to Left + + + + + Align to Horizontal Center + + + + + Align to Right + + + + + Center Horizontally + + + + + Center Vertically + + + + + Center to Page Media Box + + + + + Layout Tools + + + + + Make Horizontal Layout + + + + + Make Vertical Layout + + + + + Make Form Layout + + + + + Make Grid Layout + + + + + Appearance + + + + + Content + + + + + PDFRenderToImagesDialog + + + Render Document to Images + + + + + Output Files Settings + + + + + Pages to render + + + + + File template + + + + + All + + + + + Generate into directory + + + + + ... + + + + + Pages: + + + + + Image Resolution + + + + + Resolution + + + + + Pixels + + + + + DPI + + + + + dots/inch + + + + + px + + + + + Image Format Settings + + + + + Format + + + + + Subtype + + + + + Gamma + + + + + Optimized write + + + + + Quality + + + + + Compression + + + + + Progressive scan write + + + + + + Enable + + + + + PDFRenderingErrorsWidget + + + Rendering errors + + + + + PDFSanitizeDocumentDialog + + + Document sanitization + + + + + Sanitization Settings + + + + + PDFSelectPagesDialog + + + All pages + + + + + Even pages + + + + + Odd pages + + + + + Custom page range: + + + + + Visible pages + + + + + PDFSidebarWidget + + + Outline + + + + + Thumbnails + + + + + Visibility + + + + + Attachments + + + + + Speech + + + + + Signatures + + + + + Bookmarks + + + + + Notes + + + + + Ctrl+S + + + + + + Search text or wildcard... + + + + + Synchronize thumbnails with current page + + + + + Volume + + + + + Pitch + + + + + Rate + + + + + PDFToolTranslationContext + + + Help + + + + + Show list of all available commands. + + + + + PDFTool help + + + + + List of available commands + + + + + Command + + + + + Tool + + + + + + + + Description + + + + + Text Encoding + + + + + When you redirect console to a file, then specific codec is used to transform output text to target encoding. UTF-8 encoding is used by default. For XML output, you should use only UTF-8 codec. Available codecs: + + + + + Suggested codec: UTF-8 or %1 + + + + + Unknown console format '%1'. Defaulting to text console format. + + + + + Unknown console date/time format '%1'. Defaulting to short date/time format. + + + + + Unknown text layout analysis algorithm '%1'. Defaulting to automatic algorithm selection. + + + + + Unknown audio format '%1'. Defaulting to mp3 audio format. + + + + + Image format '%1' is not supported. Defaulting to png. + + + + + Image format subtype '%1' is not supported. + + + + + Image compression for current format is not supported. + + + + + Invalid compression level '%1'. + + + + + Image quality settings for current format is not supported. + + + + + Invalid image quality '%1'. + + + + + Optimized write is not supported. + + + + + Progressive scan write is not supported. + + + + + Invalid image resolution mode '%1'. Defaulting to dpi. + + + + + Cannot set dpi value, resolution mode must be dpi. + + + + + Dpi must be in range from %1 to %2. Defaulting to %3. + + + + + Invalid image dpi value '%1'. + + + + + Cannot set pixel value, resolution mode must be pixel. + + + + + Pixel value must be in range from %1 to %2. Defaulting to %3. + + + + + Invalid image pixel value '%1'. + + + + + Unknown color management system '%1'. Defaulting to lcms. + + + + + Uknown color management system accuracy '%1'. Defaulting to medium. + + + + + Unknown color adaptation method '%1'. Defaulting to bradford. + + + + + Uknown color management system rendering intent '%1'. Defaulting to auto. + + + + + Uknown bool value '%1'. Default value is used. + + + + + Uknown bool value '%1'. GPU rendering is used as default. + + + + + Uknown MSAA sample count '%1'. 4 samples are used as default. + + + + + Uknown rasterizer count '%1'. %2 rasterizers are used as default. + + + + + Invalid raterizer count: %1. Correcting to use %2 rasterizers. + + + + + Unknown encryption algorithm '%1'. Defaulting to AES-256 encryption. + + + + + Unknown encryption contents mode '%1'. Defaulting to encrypt all contents. + + + + + Invalid password provided. + + + + + + Error occured during document reading. %1 + + + + + + Warning: %1 + + + + + Attachments + + + + + Show list or save attached files. + + + + + Attached files of document %1 + + + + + Attached files overview + + + + + + + + + + + + + + + No. + + + + + + File name + + + + + Mime type + + + + + Mime type description + + + + + File description + + + + + Packed size [bytes] + + + + + Target file name must not be specified, if multiple files are being saved. + + + + + + Failed to save attachment to file. %1 + + + + + + + SAPI Error: Cannot enumerate SAPI voices. + + + + + Available voices for given settings: + + + + + Voice list + + + + + + + + + Name + + + + + Gender + + + + + Age + + + + + Lang. Code + + + + + Locale + + + + + + Language + + + + + + Country + + + + + Vendor + + + + + + + Version + + + + + Audio book voices + + + + + List of available voices for audio book conversion. + + + + + Audio book convertor + + + + + Convert your document to a simple audio book. + + + + + No suitable voice found. + + + + + Invalid voice. + + + + + + Cannot create output stream '%1'. + + + + + Cannot create voice. + + + + + Failed to set requested voice. Default voice will be used. + + + + + No text extracted to be converted to audio book. + + + + + Certificate Store + + + + + Certificate store operations (list, add, remove certificates). + + + + + Certificates used in the signature verification + + + + + Certificates + + + + + + + + + + + Type + + + + + + Certificate + + + + + + Organization + + + + + + Valid from + + + + + + Valid to + + + + + User + + + + + System + + + + + Install Certificate + + + + + Install a new user certificate to certificate store. + + + + + Cannot open file '%1'. %2 + + + + + Cannot read certificate from file '%1'. + + + + + Color Profiles List + + + + + Show list of available color profiles. + + + + + Available Color Profiles + + + + + + Identifier + + + + + Output Profiles + + + + + Gray Profiles + + + + + RGB Profiles + + + + + CMYK Profiles + + + + + Decrypt + + + + + Remove encryption from a document (with only owner access only). + + + + + Authorization as owner failed. Encryption removal is not permitted if authorized as user only. + + + + + Document is not encrypted. + + + + + Compare documents + + + + + Compare contents of two documents. + + + + + Exactly two documents must be specified. + + + + + + + Cannot open document '%1'. + + + + + Difference Report + + + + + Differences + + + + + Left Page + + + + + Right Page + + + + + Encrypt + + + + + Encrypt the document (with only owner access only). + + + + + Authorization as owner failed. Encryption change is not permitted if authorized as user only. + + + + + Fetch images + + + + + Fetch image content from document. + + + + + + + Document doesn't allow to copy content. + + + + + Images fetched from document %1 + + + + + + + Overview + + + + + Image No. + + + + + + + + Page No. + + + + + Width [pixels] + + + + + Height [pixels] + + + + + Size [bytes] + + + + + Stored to + + + + + + Cannot write page image to file '%1', because: %2. + + + + + Fetch text + + + + + Fetch text content from document. + + + + + Info + + + + + Retrieve basic informations about a document. + + + + + + Information about document %1 + + + + + Properties: + + + + + + Property + + + + + + + + + + Value + + + + + + + Title + + + + + Subject + + + + + Keywords + + + + + Author + + + + + Creator + + + + + Producer + + + + + Creation date + + + + + Modified date + + + + + + + + + + + + + Yes + + + + + + + + + + + + + + + No + + + + + + + Unknown + + + + + Tagged + + + + + + None + + + + + AcroForm + + + + + XFA + + + + + Form type + + + + + Page count + + + + + Paper format + + + + + Paper size + + + + + File size + + + + + JavaScript + + + + + + Standard + + + + + Public Key + + + + + + Custom + + + + + No authorization required + + + + + Authorized as owner + + + + + Authorized as user + + + + + Encryption + + + + + Authorization + + + + + Metadata encrypted + + + + + Print (low resolution) + + + + + Print + + + + + Copy content + + + + + Accessibility + + + + + Page assembling + + + + + Modify content + + + + + Modify interactive items + + + + + Form filling + + + + + All + + + + + Permissions + + + + + File hashes: + + + + + Algorithm + + + + + Hash + + + + + MD5 + + + + + SHA1 + + + + + SHA256 + + + + + SHA384 + + + + + SHA512 + + + + + Info about used fonts + + + + + Retrieve informations about font usage in a document. + + + + + Type 0 (CID) + + + + + Type 1 (8 bit) + + + + + MM Type 1 (8 bit) + + + + + TrueType (8 bit) + + + + + Type 3 + + + + + MacRoman + + + + + WinAnsi + + + + + PDFDoc + + + + + MacExpert + + + + + Symbol + + + + + ZapfDingbats + + + + + Fonts used in document %1 + + + + + + Font Name + + + + + Font Type + + + + + Encoding + + + + + Pages + + + + + Embedded + + + + + Subset + + + + + + Unicode + + + + + + Object + + + + + + Gen. + + + + + -- + + + + + Substitutions + + + + + Substituted by Font + + + + + Match + + + + + ?? + + + + + Font Character Maps + + + + + Character Map for Font '%1' + + + + + Glyph Index + + + + + Character + + + + + Info about used inks + + + + + Retrieve information about inks used in a document. + + + + + Inks + + + + + Ink list + + + + + Spot + + + + + Color + + + + + Info (JavaScript code) + + + + + Retrieve informations about JavaScript usage in a document. + + + + + JavaScript used in document %1 + + + + + JavaScript Usage Overview + + + + + Context + + + + + + Page Number + + + + + Code Size + + + + + Code Snippet + + + + + Document + + + + + + Named + + + + + + Form + + + + + + Page + + + + + + Annotation + + + + + + Details + + + + + JavaScript #%1 + + + + + Extract document metadata + + + + + Extract document metadata (embedded xml stream). + + + + + Metadata not found in document. + + + + + Info (Named Destinations) + + + + + Retrieve informations about named destinations in a document. + + + + + Named destinations used in document %1 + + + + + Named Destinations + + + + + Left + + + + + Top + + + + + Right + + + + + Bottom + + + + + Zoom + + + + + + Invalid + + + + + XYZ + + + + + Fit + + + + + FitH + + + + + FitV + + + + + FitR + + + + + FitB + + + + + FitBH + + + + + FitBV + + + + + Info (page boxes) + + + + + Retrieve informations about page boxes in a document. + + + + + Page boxes in document %1 + + + + + Pages %1 + + + + + Box + + + + + Media + + + + + Crop + + + + + Bleed + + + + + Trim + + + + + Art + + + + + Structure Tree + + + + + Attributes + + + + + Owner + + + + + Revision + + + + + Hidden + + + + + [null] + + + + + [complex type] + + + + + Properties + + + + + Alternative description + + + + + Expanded form + + + + + Actual text + + + + + Phoneme + + + + + Marked Content Reference %1 + + + + + Structure Object Reference [%1 %2 R] + + + + + Info (Structure tree) + + + + + Examine structure tree in tagged document. + + + + + Structure tree in document %1 + + + + + No structure tree found in document. + + + + + Ink coverage + + + + + Calculate ink coverage of the selected pages, or a whole document. + + + + + Ink Coverage + + + + + Ink Coverage by Page + + + + + %1 Ratio [%] + + + + + %1 Covered [mm^2] + + + + + Sum + + + + + Optimize + + + + + Optimize document size using various algorithms. + + + + + No optimization option has been set. + + + + + Failed to write optimize document. %1 + + + + + Render document + + + + + Render selected pages of document into image files. + + + + + Render document %1 + + + + + Benchmark rendering + + + + + Benchmark page rendering (measure time, detect errors). + + + + + Benchmark rendering of document %1 + + + + + + Statistics + + + + + Unit + + + + + Pages rendered + + + + + - + + + + + Total compile time + + + + + + + + + + msec + + + + + Total render time + + + + + Total wait time + + + + + Total write time + + + + + Total time + + + + + Wall time + + + + + Rendering speed (per core) + + + + + pages / sec (one core) + + + + + Rendering speed (wall time) + + + + + pages / sec + + + + + Compile time ratio + + + + + + + + % + + + + + Render time ratio + + + + + Wait time ratio + + + + + Write time ratio + + + + + Page Statistics + + + + + Compile Time [msec] + + + + + Render Time [msec] + + + + + Wait Time [msec] + + + + + Write Time [msec] + + + + + Total Time [msec] + + + + + Rendering Errors + + + + + Message + + + + + Error + + + + + Warning + + + + + Not implemented + + + + + Not supported + + + + + Information + + + + + Extract pages + + + + + Separate document into single page documents. + + + + + File template is empty. + + + + + File template must contain character '%' for page number. + + + + + File '%1' already exists. Page %2 was not extracted. + + + + + Compute statistics of internal objects used in a document. + + + + + Statistics by Object Class + + + + + Class + + + + + + Percentage [%] + + + + + + Count [#] + + + + + Space Usage [bytes] + + + + + Content Stream + + + + + Graphic State + + + + + Color Space + + + + + Pattern + + + + + Shading + + + + + Image + + + + + Font + + + + + Action + + + + + Other + + + + + Statistics by Object Type + + + + + Merge documents + + + + + Merge multiple documents to a single document. + + + + + At least two documents and target (merged) document must be specified. + + + + + Target file '%1' already exists. Document merging not performed. + + + + + Document doesn't allow to assemble pages. + + + + + Signature verification + + + + + Verify signatures and timestamps in pdf document. + + + + + No document specified. + + + + + Digital signatures/timestamps verification of %1 + + + + + + Signature + + + + + Timestamp + + + + + Signed by + + + + + Signing date + + + + + Timestamp date + + + + + Hash alg. + + + + + Handler + + + + + Signed whole + + + + + + Skipped + + + + + %1 #%2 + + + + + Signed by: %1 + + + + + Certificate status: %1 + + + + + Signature status: %1 + + + + + Signing date: %1 + + + + + Timestamp date: %1 + + + + + Hash algorithm: %1 + + + + + Handler: %1 + + + + + Is whole document signed: %1 + + + + + Byte range covered by signature: %1 + + + + + Errors: + + + + + Warnings: + + + + + Certificate No. #%1 + + + + + Org. unit + + + + + State + + + + + Serial number + + + + + Locality + + + + + Surname + + + + + Forename + + + + + Initials + + + + + Pseudonym + + + + + Qualifier + + + + + Email + + + + + RSA method, %1-bit key + + + + + DSA method, %1-bit key + + + + + EC method, %1-bit key + + + + + DH method, %1-bit key + + + + + Unknown method, %1-bit key + + + + + Encryption method + + + + + Digital signatures + + + + + Non-repudiation + + + + + Key encipherement + + + + + Application data encipherement + + + + + Key agreement + + + + + Verify signatures on certificates + + + + + Verify signatures on revocation information + + + + + Encipher data during key agreement + + + + + Decipher data during key agreement + + + + + Trusted timestamping + + + + + Key usage + + + + + No digital signatures or timestamps found in the document. + + + + + XML export + + + + + Export internal data structure to xml. + + + + + PDFViewerMainWindow + + + PDF Viewer + + + + + &File + + + + + &Go To + + + + + Book&mark Settings + + + + + &View + + + + + Page La&yout + + + + + Re&ndering Options + + + + + &Tools + + + + + &Help + + + + + &Open... + + + + + &Close + + + + + &Quit + + + + + &Single Page + + + + + Ctrl+1 + + + + + &Continuous + + + + + Ctrl+2 + + + + + Two &Pages + + + + + Ctrl+3 + + + + + &Two columns + + + + + Ctrl+4 + + + + + &First page on right side + + + + + First page on right side + + + + + Ctrl+5 + + + + + Rendering &Errors... + + + + + Ctrl+E + + + + + &Antialiasing + + + + + &Text Antialiasing + + + + + &Smooth Pictures + + + + + &Ignore Optional Content Settings + + + + + &Options... + + + + + Ctrl+K + + + + + &Reset to Factory Settings + + + + + &Zoom In + + + + + Zoom &Out + + + + + &About... + + + + + Fit &Page + + + + + Fit &Width + + + + + W + + + + + &Fit Height + + + + + H + + + + + Prope&rties... + + + + + Send by &E-Mail... + + + + + Color | &Inverted + + + + + Color | &Grayscale + + + + + Color | &High Contrast + + + + + Color | &Monochromatic + + + + + Color | &Custom + + + + + Rotate &Right + + + + + Rotate &Left + + + + + &Print... + + + + + &Display Annotations + + + + + Go to document &start + + + + + Go to document &end + + + + + Go to &next page + + + + + Go to &previous page + + + + + Go &to next line + + + + + Go t&o previous line + + + + + &Get Source + + + + + &Certificates... + + + + + Automatic &Document Refresh + + + + + Automatically reloads the document if a change made by an external program is detected. + + + + + Become a &Sponsor + + + + + Become a Sponsor + + + + + &Bookmark Page + + + + + Bookmark Page + + + + + Bookmark page for fast navigation. + + + + + &Go to Next Bookmark + + + + + Go to Next Bookmark + + + + + Navigates to the next bookmarked page. + + + + + Go to Previous Boo&kmark + + + + + Navigates to the previous bookmarked page. + + + + + &Export Bookmarks + + + + + Export Bookmarks + + + + + Export bookmarks to the file. + + + + + &Import Bookmarks + + + + + Import Bookmarks + + + + + Import bookmarks from the file. + + + + + &Generate Bookmarks Automatically + + + + + Generate Bookmarks Automatically + + + + + If checked, bookmarks for main document chapters are generated automatically. + + + + + Display &Render Times + + + + + PDFViewerSettingsDialog + + + Options + + + + + Engine Settings + + + + + Multithreading strategy + + + + + Rendering engine + + + + + Prefetch pages + + + + + + + + + + + + + + + + + + + + + + + + + Enable + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Select a rendering method tailored to your application's requirements. Software Rendering, utilizing QPainter, is a versatile choice that guarantees compatibility across all platforms. It's particularly useful in scenarios where direct access to hardware acceleration isn't crucial. QPainter, part of the Qt framework, excels in rendering 2D graphics with support for various painting styles, image processing, and intricate graphical transformations, making it an excellent tool for applications that require detailed and sophisticated 2D graphics without relying on hardware acceleration.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">On the other hand, for applications that demand high-performance rendering, leveraging the Blend2D library offers a compelling alternative. Blend2D is a high-performance 2D vector graphics engine that utilizes multi-threading to accelerate the rendering process. It does not rely on QPainter or hardware acceleration but instead offers a software-based rendering solution optimized for speed and quality. Blend2D's advanced anti-aliasing techniques ensure crisp and clear image quality, making it suitable for applications where rendering performance and image quality are paramount.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The Prefetch Pages feature is a strategy that can be applied regardless of the rendering method chosen. By pre-rendering pages adjacent to the currently viewed content, this approach minimizes flickering and enhances the smoothness of transitions during scrolling, improving the overall user experience.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">When it comes to optimizing the rendering process, the choice of multithreading strategy plays a crucial role. A Single Thread strategy, where rendering tasks are executed sequentially on a single CPU core, might be preferable in environments where simplicity and predictability are key. For more demanding applications, employing a Multi-threading strategy can significantly improve rendering times. Strategies like Load Balanced distribute the workload evenly across CPU cores without delving into content-specific processing, offering a good performance boost. The Maximum Threads strategy takes full advantage of available CPU resources by allocating as many threads as possible to the rendering tasks, achieving optimal performance and minimizing rendering times.</p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">This delineation between using QPainter for software rendering and Blend2D for high-performance, multi-threaded rendering allows developers to choose the most appropriate rendering pathway based on their specific performance requirements and the graphical complexity of their application.</p></body></html> + + + + + Rendering Settings + + + + + Clip to crop box + + + + + Text antialiasing + + + + + Ignore optional content + + + + + Smooth pictures + + + + + Display page compile/draw time + + + + + Antialiasing + + + + + Display annotations + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The rendering settings control how the rendering engine handles page content and the appearance of displayed graphics. <span style=" font-weight:600;">Antialiasing</span> smooths out the appearance of painted shapes, such as rectangles, vector graphics, and lines, but doesn't affect text. <span style=" font-weight:600;">Text antialiasing</span>, on the other hand, refines the appearance of text characters, leaving other items untouched. Both <span style=" font-weight:600;">Antialiasing </span>and <span style=" font-weight:600;">Text antialiasing </span>are relevant only for the software renderer. If you're using a hardware rendering engine like OpenGL, these settings won't have an impact because OpenGL renders images using MSAA antialiasing (if enabled). </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Smooth pictures</span> option enables pictures to be transformed into device space coordinates using a high-quality image transformation method. This generally results in better image quality. When disabled, a default fast transformation is used, potentially reducing image quality if the source DPI and device DPI differ. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Ignore optional content </span>ignores all optional content settings and renders everything in the content stream. <span style=" font-weight:600;">Clip to crop box</span> restricts the rendering area to the page's crop box, which is usually smaller than the whole page. Graphics outside the crop box aren't drawn, which can be useful for removing printer marks and similar elements. <span style=" font-weight:600;">Display page compile/draw time</span> can be handy for debugging, showing the time taken to compile a page (stored in the cache) and the time taken to render the compiled page contents onto the output device. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Using the <span style=" font-weight:600;">Display annotations</span> setting, you can enable or disable the display of annotations. If annotations are disabled, the user will not be able to interact with them. </p></body></html> + + + + + Shading Settings + + + + + Preferred mesh resolution ratio + + + + + Color tolerance + + + + + Minimal mesh resolution ratio + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Shading is executed according to mesh quality criteria, involving <span style=" font-weight:600;">color tolerance</span> and shape tolerance. If the color of the vertices of a triangle in the mesh is too different (exceeding the set color tolerance), then the mesh is refined, and the triangle is subdivided. Some shadings are defined by patterns, such as <span style=" font-style:italic;">Coons patch shading</span> or <span style=" font-style:italic;">Tensor product patch shading</span>, which are also taken into consideration during meshing. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Preferred mesh resolution ratio</span> should be set to optimize the balance between the performance of mesh generation and the quality of the mesh. The optimal triangle size is computed as follows: the total meshing area (typically a page) is multiplied by this ratio to determine the triangle size. For example, if we have an A4 page (210 mm x 297 mm), and the ratio is set to 0.01, then the optimal triangle size is computed as 297 * 0.01 = ~3 mm. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Minimal mesh resolution ratio</span> is a ratio that determines the minimal triangle size. At this boundary, no triangles are subdivided, regardless of color variation or shape quality. This ratio should be set to a value at which a user can barely recognize patterns on the screen (for example, the triangle size should be &lt; 1 mm). However, this also affects performance, as too many triangles can be generated. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Color tolerance</span> is the threshold at which two colors are recognized as different. The comparison is done component-wise, so if at least one color component exceeds this parameter, the colors are treated as different. </p></body></html> + + + + + Cache Settings + + + + + Thumbnail image cache size + + + + + Cached font limit + + + + + + kB + + + + + Compiled page cache size + + + + + Cached instanced font limit + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The rendering engine first compiles the page to enable quick drawing and then stores these compiled pages in a cache. These stored pages usually render much quicker than non-cached pages. The <span style=" font-weight:600;">Compiled Page Cache Size</span> sets the memory limit for these compiled pages, measured in kilobytes. Ideally, this limit should be at least twice as large as the size of the largest compiled page. If a compiled page exceeds this limit, an error will be displayed during rendering. Setting a higher value for this limit can speed up the rendering engine, but it will consume more operating memory. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">There is also a cache for thumbnail images. The <span style=" font-weight:600;">Thumbnail Image Cache Size</span> determines the memory space allocated for these images. This value should be set large enough to accommodate all thumbnail images on the screen. The larger this value is, the quicker thumbnails will display, but at the cost of consuming more operating memory. Please note that thumbnails are stored as bitmaps for rapid drawing, not as precompiled pages. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">During rendering, fonts are cached as well. There are two levels of cache for fonts: one for general fonts and one for instance-specific fonts (fonts at a specific size). The <span style=" font-weight:600;">Cached Font Limit</span> sets the maximum number of fonts that can be stored in the cache. The <span style=" font-weight:600;">Instanced Font Cache Limit</span> sets the maximum number of instance-specific fonts that can be stored. If these cache limits are exceeded, fonts are removed from the cache. However, this only happens when no operation in another thread (like compiling pages) is being performed to avoid race conditions. </p></body></html> + + + + + Shortcuts + + + + + Color management system settings + + + + + Black point compensation + + + + + Device gray color profile + + + + + Accuracy + + + + + Additional color profile directory + + + + + White paper color transformed + + + + + Output color profile + + + + + Rendering intent + + + + + Consider document output intents + + + + + Device RGB color profile + + + + + Color management system + + + + + Device CMYK color profile + + + + + ... + + + + + Color adaptation method (XYZ whitepoint) + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Color Management System</span> governs input and output color profiles and color transformations. This system allows for accurate color representation as defined in the PDF document. For faster color transformations, select 'Generic' to disable this functionality. The <span style=" font-weight:600;">Rendering Intent</span> selection influences the way colors are transformed. While rendering intents are often defined within the PDF document's content streams, you have the option to override them by selecting a different intent from 'Auto'. The <span style=" font-weight:600;">Accuracy</span> setting determines the precision of the color transformation, with higher accuracy consuming more memory. The <span style=" font-weight:600;">Black Point Compensation</span> adjusts for black colors that fall outside the gamut. The <span style=" font-weight:600;">White Paper Color Transformed</span> setting affects the color of the underlying white paper - enabling this will transform pure white from the device RGB profile to the output profile. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The <span style=" font-weight:600;">Output Color Profile</span> specifies the output (target) rendering profile. This profile should align with the color space that your screen uses to display colors. Additionally, you can set the color spaces for <span style=" font-weight:600;">gray/RGB/CMYK</span> device color spaces. These are used to transform gray/RGB/CMYK colors to the output color profile. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">A document may contain output intents, which can be used for transforming between color spaces. If the <span style=" font-weight:600;">Consider Document Output Intents</span> option is checked, the color management system will verify whether the document contains output intents. If such intents are present, they will be used for color transformation as device color spaces (gray/RGB/CMYK). </p></body></html> + + + + + Color Postprocessing + + + + + Sigmoid function slope parameter + + + + + Foreground color + + + + + Background color + + + + + Bitonal threshold + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Foreground</span> and <span style=" font-weight:700;">background</span> colors refer to a custom colors rendering mode, where two colors are used - the paper is drawn with the background color, and the foreground color is used for text and graphics. By default, the background is black and the foreground is green, which is easy on the eyes. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Sigmoid function slope parameter</span> is a parameter in high contrast color rendering. This rendering mode displays all graphics in high contrast. This parameter affects the degree of contrast. Set the value from 1 to 5 for a small contrast change, from 5 to 10 for a medium contrast change, and more than 10 for very high contrast rendering. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:700;">Bitonal threshold</span> is used in the bitonal rendering color mode. It distinguishes between black and white colors. However, the threshold for images is determined automatically. </p></body></html> + + + + + Security Settings + + + + + Allow URI link launch + + + + + Allow application launch + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If the application launch is permitted, a message box appears after the <span style=" font-weight:600;">Launch</span> action is triggered, asking the user if they want to execute an external application. If the user confirms the dialog, the external application executes (for example, using the Windows function <span style=" font-weight:600;">ShellExecute</span>). When this option is turned off, no dialog appears and the external application never executes. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">If the <span style=" font-weight:600;">URI link</span> launch is allowed, a message box appears asking the user if they want to open the URI link. If the user confirms the dialog, the URI link is opened by the default web browser (or default application if the URI links to the file system). </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Users should exercise caution with these settings and only confirm execution if the document is safe and comes from a reliable source. Launching external applications and following URI links can pose risks to the user's computer. </p></body></html> + + + + + UI Settings + + + + + Maximum redo steps + + + + + Magnifier size + + + + + Use logical pixels when zooming + + + + + px + + + + + Maximum undo steps + + + + + Magnifier zoom + + + + + Maximum count of recent files + + + + + Developer mode + + + + + Color Scheme (GUI) + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">The 'Maximum count of recent files' setting controls the number of recent files displayed in the menu. When a document is opened, it is added to the top of the recent files list. The list is then truncated from the bottom if the number of recent files exceeds the maximum. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Magnifier tool settings</span> determine the appearance of the magnifier. The magnifier tool enlarges the area under the mouse cursor. You can specify the size of the magnifier (in <span style=" font-weight:600;">logical</span> pixels) and its zoom level. </p> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">By specifying the <span style=" font-weight:600;">undo/redo</span> step count, you control the number of undo/redo steps available during document editing. Setting the maximum undo step count to zero disables the undo/redo function. You can also set a nonzero undo step count and a zero redo step count, which would make only undo actions available, with redo actions disabled. Changes are optimized for memory usage, so each undo/redo step shares unmodified objects with others. This means that, roughly speaking, making 10 modifications to a 50 MB document may consume around 51 MB of memory. Actual memory usage depends on the extent of the changes but is usually minimal as changes typically affect a small number of objects (for example, editing a form field or modifying an annotation). </p></body></html> + + + + + Speech Settings + + + + + Voice + + + + + Pitch + + + + + Volume + + + + + Rate + + + + + Voice synthetiser + + + + + Locale + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">Configure the speech settings to enable the text-to-speech feature for reading documents. While these settings act as defaults for the text-to-speech function, some can be adjusted later on. The 'Pitch' setting can vary from -1.0 to 1.0, with 0.0 serving as the default value. Similarly, the 'Rate' can range from -1.0 to 1.0, with 0.0 denoting a normal speech flow. Lastly, 'Volume' can be adjusted between 0.0 and 1.0. </p></body></html> + + + + + Form Settings + + + + + Highlight form fields + + + + + Highlight required form fields + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><meta charset="utf-8" /><style type="text/css"> +p, li { white-space: pre-wrap; } +hr { height: 1px; border-width: 0; } +li.unchecked::marker { content: "\2610"; } +li.checked::marker { content: "\2612"; } +</style></head><body style=" font-family:'Segoe UI'; font-size:9pt; font-weight:400; font-style:normal;"> +<p style=" margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">You can customize the appearance of form fields using the provided settings, including the option to highlight editable fields. You can separately highlight required form fields in red, while other fields can be emphasized in blue. </p></body></html> + + + + + Digital Signature Verification + + + + + Ignore expired certificates + + + + + Signature verification + + + + + Strict mode + + + + + Use system certificate store + + + + + <html><head/><body><p><span style=" font-weight:600;">Trusted certificate store</span></p></body></html> + + + + + Remove + + + + + <html><head/><body><p>These are the settings for digital signature verification. Digital signatures are verified as strictly as possible to prevent any malicious content or signature manipulation. Verification can also be disabled, if not required. When <span style=" font-weight:600;">Strict mode</span> is enabled, every warning is treated as an error. You have the option to ignore the certificate expiration date, but this should only be done if you fully understand the potential risks involved. Verification uses a list of trusted certificates. System certificates can be added to this list, and you can also manage your own list of trusted certificates. </p></body></html> + + + + + Plugins + + + + + SelectOutlineToRegroupDialog + + + Select Outline + + + + + SettingsDialog + + + Unit Settings + + + + + Units + + + + + Lengths + + + + + Areas + + + + + Angles + + + + + + Soft Proofing Settings + + + + + Proofing intent + + + + + Proofing profile + + + + + Alarm color + + + + + Auto + + + + + Perceptual + + + + + Relative colorimetric + + + + + Absolute colorimetric + + + + + Saturation + + + + + SettingsDockWidget + + + Settings + + + + + Left Document + + + + + + Page Selection: + + + + + Right Document + + + + + Options + + + + + Compare texts as vector graphics + + + + + Compare text characters instead of words + + + + + Transparency | Overlay View + + + + + Colors + + + + + Remove + + + + + Add + + + + + Replace + + + + + Move + + + + + SignDialog + + + Dialog + + + + + Sign Method + + + + + Method + + + + + Certificate + + + + + Password + + + + + Parameters + + + + + Reason + + + + + Contact Info + + + + + StatisticsGraphWidget + + + Form + + + + + codegen::GeneratedPDFObject + + + Object + + + + + Array (simple) + + + + + Array (complex) + + + + + Dictionary + + + + + Item (simple), name = '%1' + + + + + Item (complex), name = '%1' + + + + + pdf::PDFAsynchronousTextLayoutCompiler + + + Indexing document contents... + + + + + pdf::PDFAttachmentsTreeItemModel + + + Files + + + + + pdf::PDFCMSManager + + + Generic + + + + + Little CMS %1.%2 + + + + + Gray D65, γ = 2.2 + + + + + Gray D50, γ = 2.2 + + + + + Gray D93, γ = 2.2 + + + + + Gray D65, γ = 1.0 (linear) + + + + + Gray D50, γ = 1.0 (linear) + + + + + Gray D93, γ = 1.0 (linear) + + + + + HDTV (ITU-R BT.709) + + + + + Adobe RGB 1998 + + + + + PAL / SECAM + + + + + NTSC + + + + + Adobe Wide Gamut RGB + + + + + ProPhoto RGB + + + + + sRGB + + + + + pdf::PDFCertificateListHelper + + + Password protected + + + + + pdf::PDFCertificateManagerDialog + + + Create + + + + + Open Directory + + + + + Delete + + + + + Import + + + + + Confirm delete + + + + + Do you want to delete certificate '%1'? + + + + + + Error + + + + + Cannot delete certificate '%1' + + + + + + + Import Certificate + + + + + Certificate file (*.pfx);;All files (*.*) + + + + + Target file exists. Please rename the certificate file to import. + + + + + Certificate '%1' was successfully imported. + + + + + Error occured during certificate '%1' import. + + + + + pdf::PDFCreateCertificateDialog + + + 1024 bits + + + + + 2048 bits + + + + + 4096 bits + + + + + + Certificate Protection + + + + + Enter password to protect your certificate. + + + + + Enter password again to verify password text. + + + + + + + + Error + + + + + Reentered password is not equal to the first one! + + + + + Please enter a name! + + + + + Please enter an organization name! + + + + + Please enter an email address! + + + + + pdf::PDFCreateFreeTextTool + + + Text + + + + + Enter text for free text panel + + + + + pdf::PDFCreateHighlightTextTool + + + Select Color + + + + + pdf::PDFCreateHyperlinkTool + + + Hyperlink + + + + + Enter url address of the hyperlink + + + + + pdf::PDFCreatePCElementImageTool + + + Select Image + + + + + pdf::PDFCreateStickyNoteTool + + + Sticky note + + + + + Enter text to be displayed in the sticky note + + + + + pdf::PDFDependentLibraryInfo + + + Qt + + + + + LGPLv3 + + + + + https://www.qt.io/ + + + + + libjpeg + + + + + permissive + ack. + + + + + https://www.ijg.org/ + + + + + %1 + + + + + + %1.%2 + + + + + FreeType + + + + + FTL + + + + + %1.%2.%3 + + + + + https://www.freetype.org/index.html + + + + + OpenJPEG + + + + + + 2-clause MIT license + + + + + https://www.openjpeg.org/ + + + + + OpenSSL + + + + + Apache 2.0 + + + + + https://www.openssl.org/ + + + + + LittleCMS + + + + + http://www.littlecms.com/ + + + + + zlib + + + + + + zlib specific + + + + + https://zlib.net/ + + + + + Blend2D + + + + + https://blend2d.com/ + + + + + pdf::PDFDiff + + + No document to be compared. + + + + + No page to be compared. + + + + + Invalid page range. + + + + + Comparing documents. + + + + + Page no. %1 was moved to a page no. %2. + + + + + Page no. %1 was added. + + + + + Page no. %1 was removed. + + + + + Removed text character from page %1. + + + + + Removed vector graphics from page %1. + + + + + Removed image from page %1. + + + + + Removed shading from page %1. + + + + + Added text character to page %1. + + + + + Added vector graphics to page %1. + + + + + Added image to page %1. + + + + + Added shading to page %1. + + + + + Text '%1' has been added to page %2. + + + + + Text '%1' has been removed from page %2. + + + + + Text '%1' on page %2 has been replaced by text '%3' on page %4. + + + + + Invalid + + + + + Page moved + + + + + Page added + + + + + Page removed + + + + + Removed text character + + + + + Removed vector graphics + + + + + Removed image + + + + + Removed shading + + + + + Added text character + + + + + Added vector graphics + + + + + Added image + + + + + Added shading + + + + + Text added + + + + + Text removed + + + + + Text replaced + + + + + pdf::PDFDocumentManipulator + + + Empty page list. + + + + + + Invalid document. + + + + + + Missing page (%1) in a document. + + + + + + Missing image. + + + + + Error occured during page creation. + + + + + Document %1 + + + + + %1, p. %2 + + + + + %1 Images + + + + + %1 Pages + + + + + pdf::PDFDocumentReader + + + File '%1' cannot be opened for reading. %1 + + + + + File '%1' doesn't exist. + + + + + Device is not opened for reading. + + + + + Can't open device for reading. + + + + + End of file marking was not found. + + + + + Header of PDF file was not found. + + + + + Version of the PDF file is not valid. + + + + + + Start of object reference table not found. + + + + + + + + Can't read object at position %1. + + + + + Invalid trailer dictionary. + + + + + Empty xref table. + + + + + pdf::PDFDocumentSanitizer + + + Document info was removed. + + + + + Metadata streams removed: %1 + + + + + Outline was removed. + + + + + File attachments removed: %1. + + + + + Embedded files were removed. + + + + + Search index was removed. + + + + + Markup annotations removed: %1. + + + + + Page thumbnails removed: %1. + + + + + pdf::PDFDocumentTextFlowEditorModel + + + Page No. + + + + + Type + + + + + State + + + + + + Text + + + + + Title + + + + + Language + + + + + Special + + + + + Removed + + + + + Modified + + + + + Active + + + + + pdf::PDFDocumentWriter + + + + Writing of encrypted documents is not supported. + + + + + + + File '%1' can't be opened for writing. %2 + + + + + Device is not writable. + + + + + pdf::PDFEditObjectDialog + + + Edit Annotation + + + + + pdf::PDFExtractImageTool + + + Image of size %1 x %2 pixels was copied to the clipboard. + + + + + pdf::PDFFindTextTool + + + + Find + + + + + Case sensitive + + + + + Whole words only + + + + + Previous + + + + + Next + + + + + Search text + + + + + Find (%1/%2) + + + + + pdf::PDFFormFieldSignatureEditor + + + Signature Unknown + + + + + Signature Valid + + + + + Signature Invalid + + + + + pdf::PDFLexicalAnalyzer + + + Expected a number, but end of stream reached. + + + + + Invalid format of number. Character '%1' appeared. + + + + + Both '+' and '-' appeared in number. Invalid format of number. + + + + + Bad format of number - no digits appeared. + + + + + Real number overflow. + + + + + Hexadecimal number must follow character '#' in the name. + + + + + Invalid character in hexadecimal string. + + + + + Unexpected end of stream reached while scanning hexadecimal string. + + + + + Invalid character '%1' + + + + + + Unexpected character '%1' in the stream. + + + + + Trying to seek stream position to %1 bytes from the start, byte offset is invalid. + + + + + Can't read %1 bytes from the input stream. Input stream end reached. + + + + + Unexpected end of stream reached. + + + + + Error near position %1. %2 + + + + + pdf::PDFObjectEditorAnnotationsModel + + + + + + + + + + General + + + + + + + Type + + + + + + + Text + + + + + + Link + + + + + + + + + Free text + + + + + + + + + + + + + + Line + + + + + + Square + + + + + + Circle + + + + + Polygon + + + + + Polyline + + + + + + Highlight + + + + + + Underline + + + + + Squiggly + + + + + Strike Out + + + + + Caret + + + + + + + + Stamp + + + + + Ink + + + + + + File attachment + + + + + Redaction + + + + + Rectangle + + + + + + + + Contents + + + + + Author + + + + + Subject + + + + + Annotation name + + + + + + Info + + + + + Modified + + + + + Created + + + + + + + Options + + + + + Invisible + + + + + Hidden + + + + + Print + + + + + No Zoom + + + + + No Rotate + + + + + No View + + + + + Readonly + + + + + Locked + + + + + Toggle No View + + + + + Locked Contents + + + + + Modify appearance + + + + + + + + + + + + Appearance + + + + + + Colors + + + + + Color + + + + + Interior color + + + + + + + Transparency + + + + + Blend mode + + + + + Fill opacity + + + + + Stroke opacity + + + + + Language + + + + + Modify border + + + + + + + + Border + + + + + + Border Style + + + + + Width + + + + + + + + + + + + + + + + + + + + Style + + + + + Solid + + + + + Dashed + + + + + Beveled + + + + + Inset + + + + + + Border Effect + + + + + Cloudy + + + + + + + + None + + + + + Intensity + + + + + + Sticky note + + + + + Comment + + + + + Key + + + + + Note + + + + + Help + + + + + New Paragraph + + + + + Paragraph + + + + + Insert + + + + + Open + + + + + Invert + + + + + Outline + + + + + Push + + + + + + Alignment + + + + + + + + Intent + + + + + Callout + + + + + Typewriter + + + + + Callout line ending + + + + + Line start + + + + + Line end + + + + + Leader line length + + + + + Leader line extension + + + + + Leader line offset + + + + + Arrow + + + + + Dimension + + + + + Cloud + + + + + Line dimension + + + + + Polygon dimension + + + + + Caption + + + + + Caption position + + + + + Inline + + + + + Top + + + + + Name + + + + + Image + + + + + Snapshot + + + + + Icon + + + + + Graph + + + + + Push-pin + + + + + Paperclip + + + + + Tag + + + + + + + Redact + + + + + Overlay text + + + + + Repeat overlay text + + + + + Left + + + + + Center + + + + + Right + + + + + Diamond + + + + + Open arrow + + + + + Closed arrow + + + + + Butt + + + + + Reversed open arrow + + + + + Reversed closed arrow + + + + + Slash + + + + + pdf::PDFObjectEditorMappedColorAdapter + + + custom + + + + + pdf::PDFObjectEditorWidgetMapper + + + Rectangle + + + + + pdf::PDFOptimizer + + + Stage %1 + + + + + Pass %1 + + + + + Simple objects dereferenced and embedded: %1 + + + + + Null objects entries from dictionaries removed: %1 + + + + + Unused objects removed: %1 + + + + + Identical objects merged: %1 + + + + + Object list shrinked by: %1 + + + + + Bytes saved by recompressing stream: %1 + + + + + pdf::PDFOutlineTreeItemModel + + + Item %1 + + + + + pdf::PDFPageContentEditorEditedItemSettings + + + + Solid + + + + + Dashed + + + + + Dotted + + + + + Dash-dot + + + + + Dash-dot-dot + + + + + Custom + + + + + Image + + + + + Text + + + + + Style + + + + + Transformation + + + + + Select Image + + + + + Select Color for Pen + + + + + Select Color for Brush + + + + + pdf::PDFPageContentEditorStyleSettings + + + + None + + + + + + Solid + + + + + Dashed + + + + + Dotted + + + + + Dash-dot + + + + + Dash-dot-dot + + + + + Horizontal + + + + + Vertical + + + + + B-Diagonal + + + + + F-Diagonal + + + + + Cross + + + + + Edit Item + + + + + Content + + + + + Appearance + + + + + Select Font + + + + + Select Color for Pen + + + + + Select Color for Brush + + + + + pdf::PDFParser + + + Stream ended inside array. + + + + + Dictionary key must be a name. + + + + + End of stream inside dictionary reached. + + + + + Streams are not allowed in this context. + + + + + Stream length is not specified. + + + + + Bad value of stream length. It should be an integer number. + + + + + Length of the stream buffer is negative (%1). It must be a positive number. + + + + + Stream data should be in external file, but invalid file name is specified. + + + + + Can't open stream data stored in external file '%1'. + + + + + End of stream should end in keyword 'endstream'. + + + + + Cannot read object. Unexpected token appeared. + + + + + Cannot read object. End of stream reached. + + + + + pdf::PDFParsingContext + + + Cyclical reference found while parsing object %1 %2. + + + + + Function dictionary expected. + + + + + Fuction has invalid domain. + + + + + Fuction has invalid range. + + + + + Sampled function has invalid sample size. + + + + + Sampled function has invalid count of bits per sample. + + + + + Sampled function hasn't any output. + + + + + Sampled function has invalid encode array. + + + + + Sampled function has invalid decode array. + + + + + Not enough samples for sampled function. + + + + + Exponential function can have only one input value. + + + + + + Invalid domain of exponential function. + + + + + Invalid parameter of exponential function (at x = 0.0). + + + + + Invalid parameter of exponential function (at x = 1.0). + + + + + Stitching function can have only one input value. + + + + + Stitching function has different function count. Expected %1, actual %2. + + + + + Stitching function has invalid encode array. Expected %1 items, actual %2. + + + + + Functions in stitching function has different number of output variables. + + + + + Stitching function has invalid functions. + + + + + Stitching function hasn't functions array. + + + + + Empty program in PostScript function. + + + + + Invalid function type: %1. + + + + + pdf::PDFPickTool + + + Use key 'C' to show/hide large cross. + + + + + pdf::PDFRenderingErrorsWidget + + + Page + + + + + Error type + + + + + Description + + + + + Error + + + + + Warning + + + + + Not implemented + + + + + Not supported + + + + + pdf::PDFScreenshotTool + + + Page contents of size %1 x %2 pixels were copied to the clipboard. + + + + + pdf::PDFSecurityHandlerFactory + + + User password contains invalid characters: %1. + + + + + Owner password contains invalid characters: %1. + + + + + Invalid certificate or password. + + + + + pdf::PDFSelectPagesDialog + + + + Error + + + + + Selected page range is empty. + + + + + pdf::PDFSelectTableTool + + + Table region was selected. Use left/right mouse buttons to add/remove rows/columns, then use Enter key to copy the table. + + + + + pdf::PDFTranslationContext + + + Circular dependence in actions found. + + + + + Invalid action. + + + + + + Text + + + + + + + Line + + + + + Free Text + + + + + Square + + + + + Circle + + + + + Polygon + + + + + Polyline + + + + + Highlight + + + + + Underline + + + + + Squiggly + + + + + Strike Out + + + + + Stamp + + + + + Caret + + + + + Ink + + + + + Popup + + + + + File Attachment + + + + + Sound + + + + + Movie + + + + + Widget + + + + + + Screen + + + + + Printer Mark + + + + + Trap Net + + + + + Watermark + + + + + Redaction + + + + + Projection + + + + + 3D + + + + + + Rich Media + + + + + Reply + + + + + &Approved + + + + + APPROVED + + + + + As &Is + + + + + AS IS + + + + + &Confidential + + + + + CONFIDENTIAL + + + + + &Departmental + + + + + DEPARTMENTAL + + + + + Dra&ft + + + + + DRAFT + + + + + &Experimental + + + + + EXPERIMENTAL + + + + + E&xpired + + + + + EXPIRED + + + + + Fina&l + + + + + FINAL + + + + + For Co&mment + + + + + FOR COMMENT + + + + + For P&ublic Release + + + + + FOR PUBLIC RELEASE + + + + + Not A&pproved + + + + + NOT APPROVED + + + + + N&ot For Public Release + + + + + NOT FOR PUBLIC RELEASE + + + + + &Sold + + + + + SOLD + + + + + &Top Secret + + + + + TOP SECRET + + + + + Normal + + + + + Multiply + + + + + Overlay + + + + + Darken + + + + + Lighten + + + + + ColorDodge + + + + + ColorBurn + + + + + HardLight + + + + + SoftLight + + + + + Difference + + + + + Exclusion + + + + + Hue + + + + + Saturation + + + + + Color + + + + + Luminosity + + + + + + + Unknown + + + + + Invalid pass encoding data in CCITT stream. + + + + + CCITT b2 index out of range. + + + + + Invalid horizontal encoding data in CCITT stream. + + + + + + + Invalid vertical encoding data in CCITT stream. + + + + + Invalid index of CCITT changing element a1: a1 = %1, columns = %2. + + + + + Invalid CCITT run length code word. + + + + + Invalid CCITT 2D mode. + + + + + + Conversion from gray to output device using CMS failed. + + + + + + Conversion from gray to output device using CMS failed - invalid data format. + + + + + + Conversion from RGB to output device using CMS failed. + + + + + + Conversion from RGB to output device using CMS failed - invalid data format. + + + + + + Conversion from CMYK to output device using CMS failed. + + + + + + Conversion from CMYK to output device using CMS failed - invalid data format. + + + + + + Conversion from XYZ to output device using CMS failed. + + + + + + Conversion from XYZ to output device using CMS failed - invalid data format. + + + + + + Conversion from icc profile space to output device using CMS failed. + + + + + + Conversion from icc profile space to output device using CMS failed - invalid data format. + + + + + Structure tree item for MCID %1 not found. + + + + + + Page %1 + + + + + Valid tagged document required. + + + + + + JBIG2 invalid header - bad referred segments. + + + + + + JBIG2 invalid segment type %1. + + + + + Invalid JBIG2 file header. + + + + + Invalid JBIG2 file header flags. + + + + + Invalid JBIG2 file - unknown number of pages. + + + + + Invalid JBIG2 file - invalid number of pages (%1). + + + + + Invalid JBIG2 file - segment length is not defined. + + + + + JBIG2 bad segment data - handler doesn't process all segment data - %1 bytes left. + + + + + JBIG2 bad segment data - handler reads %1 bytes past segment end. + + + + + + + + + JBIG2 invalid flags for symbol dictionary segment. + + + + + + + + + + + + + + + + + JBIG2 invalid user huffman code table. + + + + + JBIG2 invalid number of huffam code table - %1 unused. + + + + + + JBIG2 trying to use aritmetic decoder context from previous symbol dictionary, but it doesn't exist. + + + + + JBIG2 symbol height class has more symbols, than defined in the symbol dictionary header. + + + + + Trying to use reference bitmap %1, but number of decoded bitmaps is %2. + + + + + JBIG2 - invalid export flags in symbol dictionary. + + + + + JBIG2 - invalid huffman table flags in text region segment. + + + + + JBIG2 no referred symbols in text region segment. + + + + + JBIG2 invalid symbol length code table for text region segment. + + + + + + JBIG2 - invalid bitmap for generic region. + + + + + JBIG2 invalid pattern dictionary flags. + + + + + JBIG2 unknown data length for pattern dictionary. + + + + + JBIG2 invalid pattern dictionary collective bitmap. + + + + + + JBIG2 region segment information - invalid bit operation mode. + + + + + JBIG2 invalid referenced pattern dictionaries for halftone segment. + + + + + JBIG2 invalid patterns for halftone segment. + + + + + JBIG2 halftoning with more than 8 grayscale bit planes not supported (current bitplanes: %1). + + + + + JBIG2 unknown data length for halftone dictionary. + + + + + JBIG2 invalid halftone grayscale bit plane image. + + + + + JBIG2 halftoning pattern index %1 out of bounds [0, %2] + + + + + JBIG2 - invalid bitmap for halftone region. + + + + + JBIG2 - malformed generic region flags. + + + + + JBIG2 - end of data byte sequence not found for generic region. + + + + + JBIG2 - invalid flags for generic refinement region. + + + + + JBIG2 - operation must be REPLACE for generic refinement region. + + + + + JBIG2 - invalid referred segments (%1) for generic refinement region. + + + + + JBIG2 - invalid referred bitmap size [%1 x %2] instead of [%3 x %4] for generic refinement region. + + + + + JBIG2 - invalid bitmap for generic refinement region. + + + + + JBIG2 end-of-page segment shouldn't contain any data, but has extra data of %1 bytes. + + + + + JBIG2 end-of-page segment detected and ignored. + + + + + JBIG2 end-of-file segment shouldn't contain any data, but has extra data of %1 bytes. + + + + + JBIG2 end-of-file segment detected and ignored. + + + + + JBIG2 underflow of the low value in huffman table. + + + + + JBIG2 unknown extension %1 necessary for decoding the image. + + + + + JBIG2 segment with unknown extension has not defined length. + + + + + JBIG2 segment %1 is not a bitmap. + + + + + JBIG2 bitmap segment %1 not found. + + + + + JBIG2 symbol index %1 not found in symbol table of length %2. + + + + + JBIG2 region segment information flags are invalid. + + + + + JBIG2 segment with unknown data length can't be skipped. + + + + + JBIG2 invalid referred segment %1 referenced by segment %2. + + + + + JBIG2 maximum bitmap size exceeded (%1 > %2). + + + + + JBIG2 invalid bitmap size (%1 x %2). + + + + + JBIG2 invalid bit operation. + + + + + JBIG2 can't read integer. + + + + + JBIG2 - invalid bitmap paint operation. + + + + + JBIG2 - invalid bitmap copy row operation. + + + + + JBIG2 overflow of prefix bit values in huffman table. + + + + + Null + + + + + Boolean + + + + + Integer + + + + + Real + + + + + String + + + + + Name + + + + + Array + + + + + Dictionary + + + + + Stream + + + + + Reference + + + + + + Invalid optional content properties. + + + + + + + + Invalid optional content configuration. + + + + + + Invalid optional content group. + + + + + Cyclic reference error in optional content visibility expression. + + + + + + + Invalid optional content visibility expression. + + + + + Invalid number of matrix elements. Expected 6, actual %1. + + + + + Reading contents of document... + + + + + Authorization failed. Bad password provided. + + + + + Decrypting encrypted contents of document... + + + + + Object stream %1 not found. + + + + + + + + Object stream %1 is invalid. + + + + + Trailer dictionary is not valid. + + + + + Invalid tiling pattern - wrong paint type %1. + + + + + Invalid tiling pattern - wrong tiling type %1. + + + + + Invalid tiling pattern - bounding box is invalid. + + + + + Invalid tiling pattern - steps are invalid. + + + + + + + + Invalid pattern. + + + + + Invalid shading. + + + + + Pattern color space is not valid for shading patterns. + + + + + Invalid shading pattern extends. Expected 2, but %1 provided. + + + + + Invalid function shading pattern domain. Expected 4 values, but %1 provided. + + + + + Invalid function shading pattern domain. Invalid domain ranges. + + + + + + Invalid axial shading pattern color functions. Expected %1 functions, but %2 provided. + + + + + Invalid axial shading pattern coordinates. Expected 4, but %1 provided. + + + + + Invalid axial shading pattern domain. Expected 2, but %1 provided. + + + + + Invalid radial shading pattern coordinates. Expected 6, but %1 provided. + + + + + Invalid radial shading pattern domain. Expected 2, but %1 provided. + + + + + Invalid radial shading pattern color functions. Expected %1 functions, but %2 provided. + + + + + Radial shading cannot have negative circle radius. + + + + + Invalid bits per coordinate (%1) for shading. + + + + + Invalid bits per component (%1) for shading. + + + + + Invalid domain for shading. Expected size is 6, actual size is %1. + + + + + Invalid domain for shading. Expected size is %1, actual size is %2. + + + + + Invalid bits per flag (%1) for shading. + + + + + Invalid vertices per row (%1) for lattice-form gourad triangle meshing. + + + + + Invalid shading pattern type (%1). + + + + + + Error occured during mesh generation of shading: %1 + + + + + + + + + + Error occured during mesh creation of shading: %1 + + + + + Invalid free form gourad triangle data stream. + + + + + Invalid lattice form gourad triangle data stream. + + + + + + + Nonzero flag for first patch (flags = %1). + + + + + Invalid data in tensor product patch shading. + + + + + Invalid data in coons patch shading. + + + + + Unknown crypt filter '%1'. + + + + + + + + Revision %1 of standard security handler is not supported. + + + + + Expected %1 characters long string in entry '%2'. Provided length is %3. + + + + + Expected %1 characters long string in entry '%2'. + + + + + Invalid encryption dictionary. + + + + + Unknown security handler. + + + + + Unsupported version of document encryption (V = %1). + + + + + Invalid value for entry '%1' in encryption dictionary. Name expected. + + + + + Invalid value for entry '%1' in encryption dictionary. Boolean expected. + + + + + Invalid value for entry '%1' in encryption dictionary. Integer expected. + + + + + Crypt filter is not a dictionary! + + + + + Unsupported encryption algorithm '%1'. + + + + + Unsupported authorization event '%1'. + + + + + + Crypt filter '%1' not found. + + + + + Permissions entry in the Encryption dictionary is invalid. + + + + + + + Security permissions are manipulated. Can't open the document. + + + + + + Encryption key length (%1) exceeded maximal value of %2. + + + + + No signature handler for signature format '%1'. + + + + + Certificate format is invalid. + + + + + No signatures in certificate data. + + + + + Certificate is missing. + + + + + Generic error occured during certificate validation. + + + + + Certificate has expired. + + + + + Certificate is self-signed. + + + + + Self-signed certificate in chain. + + + + + Trusted certificate not found. + + + + + Certificate has been revoked. + + + + + Certificate validation failed with code %1. + + + + + Signature is invalid. + + + + + No signatures found in certificate. + + + + + Signature certificate is missing. + + + + + Signed data has different hash function digest. + + + + + Signed data are invalid. + + + + + Data covered by signature are not present. + + + + + %1 bytes are not covered by signature. + + + + + Certificate revocation list (CRL) not checked, validity time has expired. + + + + + Qualified certificate statement not verified. + + + + + Unable to get CRL. + + + + + OK + + + + + Warning + + + + + Error + + + + + Transformation between blending color space failed. + + + + + Invalid clear color - process color %1 was not found in clear color. + + + + + More colors in clear color (%1) than process color channel count (%2). + + + + + + + Transformation of spot color to blend color space failed. + + + + + + + Invalid number bits of image mask (should be 1 bit instead of %1 bits). + + + + + + + + Invalid size of image (%1x%2) + + + + + Invalid image color space. + + + + + Invalid base color space of indexed color space. + + + + + + + Invalid colors for indexed color space. Color space has %1 colors. Provided color count is %4. + + + + + Conversion of indexed image to base color space failed. + + + + + + + + Image masking not implemented! + + + + + + + + + + + Invalid colors for color space. Color space has %1 colors. Provided color count is %4. + + + + + + + + + + Invalid size of the decode array. Expected %1, actual %2. + + + + + Invalid matte color. + + + + + + + Invalid number of color components in color key mask. Expected %1, provided %2. + + + + + + + Invalid size of the decoded array. Expected %1, actual %2. + + + + + + Soft mask can't have masking. + + + + + + Invalid size of soft mask. + + + + + + Soft mask should have only 1 color component (alpha) instead of %1. + + + + + Invalind soft mask. + + + + + Invalid blend color space of soft mask definition. + + + + + Invalid soft mask type. + + + + + Evaulation of soft mask transfer function failed. + + + + + Cannot create shading sampler. + + + + + Image painting not implemented. + + + + + Mesh painting not implemented. + + + + + Invalid source ink index %1. + + + + + Invalid target ink index %1. + + + + + Transformation from source color space to target blending color space failed. + + + + + Gray + + + + + Red + + + + + Green + + + + + Blue + + + + + Cyan + + + + + Magenta + + + + + Yellow + + + + + Black + + + + + Process Generic%1 + + + + + Not enough data to read %1-bit value. + + + + + Can't seek to position %1. + + + + + Can't get substream - remaining %1 bits in buffer. + + + + + + + Can't convert '%1' to a number. + + + + + Closed interval [%1, %2] is invalid. + + + + + Rendering of content type '%1' is not implemented. + + + + + Image encoded by 'package' mode not decoded. + + + + + Image of type '%1' not decoded. + + + + + + XFA: Buttons not implemented. + + + + + XFA: Uknown ui. + + + + + Barcode not implemented! + + + + + XFA: Unknown fill pattern. + + + + + + XFA: special stroke is not supported. + + + + + + Catalog must be a dictionary. + + + + + Required features %1 are unsupported. Document processing can be limited. + + + + + Optional Content User Interaction + + + + + Optional Content Usage + + + + + Acrobat Forms + + + + + Navigation + + + + + Markup Annotations + + + + + Markup of 3D Content + + + + + Multimedia + + + + + U3D Format of PDF 3D + + + + + PRC Format of PDF 3D + + + + + Actions + + + + + JavaScript + + + + + Attached Files + + + + + Attached Files Modification + + + + + Collections of Attached Files + + + + + Collections of Attached Files (editation) + + + + + Digital Signature Validation + + + + + Apply Digital Signature + + + + + Digital Signature Validation (with MDP) + + + + + Geospatial 2D Features + + + + + Geospatial 3D Features + + + + + Navigation for Document Parts + + + + + Separation Simulation + + + + + Transitions/Presentations + + + + + Encryption + + + + + Invalid page rotation. + + + + + + Expected valid kids in page tree. + + + + + Detected cycles in page tree. + + + + + + Expected valid type item in page tree. + + + + + Expected dictionary in page tree. + + + + + Invalid code in the LZW stream. + + + + + Failed to initialize flate compression stream. + + + + + + zlib code: %1 + + + + + Error compressing by flate method: %1 + + + + + Failed to initialize flate decompression stream. + + + + + Error decompressing by flate method: %1 + + + + + Property '%1' should be in range from %2 to %3. + + + + + Invalid property '%1' of the stream predictor parameters. + + + + + Invalid predictor algorithm. + + + + + Security handler required, but not provided. + + + + + Invalid number of color components. Expected number is %1, actual number is %2. + + + + + + Can't load color space, because color space structure is too complex. + + + + + + + + Invalid color space. + + + + + Can't determine alternate color space for ICC based profile. Number of components is %1. + + + + + Can't determine alternate color space for ICC based profile. + + + + + Too much color components for ICC based profile. + + + + + + Operation cancelled! + + + + + Can't determine base color space for indexed color space. + + + + + Invalid colors for indexed color space. Color space has %1 colors, %2 color components and must have %3 size. Provided size is %4. + + + + + Can't determine color name for separation color space. + + + + + Can't determine alternate color space for separation color space. + + + + + Can't determine tint transform for separation color space. + + + + + Pattern doesn't have defined uniform color. + + + + + Invalid colorants for DeviceN color space. + + + + + Can't determine alternate color space for DeviceN color space. + + + + + Can't determine tint transform for DeviceN color space. + + + + + + + Page %1 doesn't exist. + + + + + Start at %1... + + + + + Rendering document into images. + + + + + Page %1 not found. + + + + + Finished at %1... + + + + + %1 miliseconds elapsed to render %2 pages... + + + + + Image_% + + + + + Target directory is empty. + + + + + Target directory '%1' doesn't exist. + + + + + File template is empty. + + + + + File template must contain character '%' for page number. + + + + + Page list is invalid. It should have form such as '1-12,17,24,27-29'. + + + + + Page list contains page, which is not in the document (%1). + + + + + DPI resolution should be in range %1 to %2. + + + + + Pixel resolution should be in range %1 to %2. + + + + + + Invalid page contents. + + + + + Graphic state stack was saved more times, than was restored. + + + + + Transparency group blending color space is invalid. + + + + + Invalid inline image dictionary, ID operator is missing. + + + + + + Expected name in the inline image dictionary stream. + + + + + Invalid inline image stream. + + + + + + Shading pattern graphic state is invalid. + + + + + Uncolored tiling pattern has not underlying color space. + + + + + Unknown operator '%1'. + + + + + Not implemented operator '%1'. + + + + + Current point of path is not set. Path is empty. + + + + + + + Invalid line dash pattern. + + + + + Marked content is not well formed (not enough EMC operators). + + + + + Blend mode '%1' is invalid. + + + + + Graphic state '%1' found, but invalid in resource dictionary. + + + + + Graphic state '%1' not found in resource dictionary. + + + + + Invalid graphic state resource dictionary. + + + + + Trying to restore graphic state more times than it was saved. + + + + + Transformation matrix is not invertible. + + + + + Can't read operand (real number) on index %1. Operand is of type '%2'. + + + + + Can't read operand (real number) on index %1. Only %2 operands provided. + + + + + Can't read operand (integer) on index %1. Operand is of type '%2'. + + + + + Can't read operand (integer) on index %1. Only %2 operands provided. + + + + + Can't read operand (name) on index %1. Operand is of type '%2'. + + + + + Can't read operand (name) on index %1. Only %2 operands provided. + + + + + Can't read operand (string) on index %1. Operand is of type '%2'. + + + + + Can't read operand (string) on index %1. Only %2 operands provided. + + + + + + + Invalid color component count. Provided %1, required %2. + + + + + + + + Invalid pattern for Pattern color space. + + + + + Text object already started. + + + + + Text object ended more than once. + + + + + Font '%1' not found in font dictionary. + + + + + Invalid font dictionary. + + + + + + + + + Invalid font, text can't be printed. + + + + + Invalid parameters of text operator with individual character spacing. + + + + + Invalid operand of text show operator. + + + + + Shading '%1' not found. + + + + + Invalid color space of the image. + + + + + Can't decode the image. + + + + + Color operators are not allowed in uncolored tilling pattern. + + + + + Reference to optional content expected. + + + + + Form of type %1 not supported. + + + + + Unknown XObject type '%1'. + + + + + Invalid format of XObject. Dictionary expected. + + + + + XObject resource dictionary not found. + + + + + Mismatched begin/end of marked content. + + + + + Compatibility operator begin/end mismatch. + + + + + Type 3 font matrix is not invertible. + + + + + Invalid stroking color. + + + + + Invalid filling color. + + + + + Invalid soft mask transfer function. + + + + + Blend mode '%1' not supported. + + + + + Blend mode '%1' is in transparency group, which is not supported. + + + + + Soft masks not supported. + + + + + + + + Invalid number of operands for function. Expected %1, provided %2. + + + + + + + + Invalid number of output variables for function. Expected %1, provided %2. + + + + + Invalid number of operands for identity function. Expected %1, provided %2. + + + + + Invalid instruction pointer. + + + + + + + Division by zero (PostScript engine). + + + + + Number expected for ceil function (PostScript engine). + + + + + Number expected for floor function (PostScript engine). + + + + + Number expected for round function (PostScript engine). + + + + + Number expected for truncate function (PostScript engine). + + + + + Square root of negative value can't be computed (PostScript engine). + + + + + Logarithm's input should be positive value (PostScript engine). + + + + + Logarithm's input should be positive value (PostScript engine). + + + + + Real value expected for conversion to integer (PostScript engine). + + + + + Integer value expected for conversion to real (PostScript engine). + + + + + Can't copy negative number of arguments (PostScript engine). + + + + + Negative index of operand (PostScript engine). + + + + + Negative number of operands (PostScript engine). + + + + + Call stack underflow (PostScript engine). + + + + + Real value expected (PostScript engine). + + + + + Integer value expected (PostScript engine). + + + + + Boolean value expected (PostScript engine). + + + + + Instruction pointer expected (PostScript engine). + + + + + Number expected (PostScript engine). + + + + + Stack overflow occured (PostScript engine). + + + + + Stack underflow occured (PostScript engine). + + + + + Invalid operator (PostScript function) '%1'. + + + + + Invalid program - bad enclosing brackets (PostScript function). + + + + + Invalid program (PostScript function). + + + + + Empty program (PostScript function). + + + + + Stack contains more values, than output size (%1 remains) (PostScript function). + + + + + + Inexact font substitution: font %1 replaced by %2 using font family %3. + + + + + Inexact font substitution: font %1 replaced by %2. + + + + + FontConfig error building pattern for font %1 + + + + + Inexact font substitution: font %1 replaced by standard font Times New Roman. + + + + + Fontconfig error + + + + + Glyph for simple font character code '%1' not found. + + + + + Glyph for composite font character with cid '%1' not found. + + + + + Details + + + + + Font + + + + + Style + + + + + Yes + + + + + No + + + + + Glyph count + + + + + Is CID keyed + + + + + Is bold + + + + + Is italics + + + + + Has vertical writing system + + + + + Has SFNT storage scheme + + + + + Has glyph names + + + + + + Encoding + + + + + None + + + + + Unicode + + + + + MS Symbol + + + + + Japanese Shift JIS + + + + + PRC - Simplified Chinese + + + + + Traditional Chinese + + + + + Korean Extended Wansung + + + + + Korean Standard + + + + + Adobe Standard + + + + + Adobe Expert + + + + + Adobe Custom + + + + + Adobe Latin 1 + + + + + Old Latin 1 + + + + + Apple Roman + + + + + Platform/Encoding = %1 %2 + + + + + FreeType error code %1: %2 + + + + + Can't load system font '%1'. + + + + + Invalid font encoding. + + + + + Font object must be a dictionary. + + + + + Invalid font type. + + + + + + + Invalid differences in encoding entry of the font. + + + + + + Invalid encoding entry of the font. + + + + + Invalid CMAP in CID-keyed font. + + + + + + Invalid descendant font in CID-keyed font. + + + + + Invalid number (%1) of descendant fonts in CID-keyed font - exactly one is required. + + + + + Invalid Type 3 font matrix. + + + + + Invalid Type 3 font character content streams. + + + + + Invalid Type 3 font character range (from %1 to %2). + + + + + + Invalid Type 3 font encoding. + + + + + + Invalid differences in encoding entry of type 3 font. + + + + + Standard + + + + + Mac Roman + + + + + Win Ansi + + + + + PDF Doc + + + + + Mac Expert + + + + + + Symbol + + + + + + Zapf Dingbats + + + + + Mac OS Roman + + + + + Custom + + + + + Times Roman + + + + + Helvetica + + + + + Courier + + + + + Standard font + + + + + Can't load CID font mapping named '%1'. + + + + + Can't fetch code from CMap definition. + + + + + Can't fetch CID from CMap definition. + + + + + Can't use cmap inside cmap file. + + + + + Character count + + + + + Content stream for type 3 font character code '%1' not found. + + + + + Image has not data. + + + + + Soft mask image can't have mask / soft mask itself. + + + + + Regular image can't have Matte entry (used for soft masks). + + + + + Invalid mask image. + + + + + Invalid soft mask object. + + + + + Malformed data while reading JPEG stream. %1 bytes skipped. + + + + + Error reading JPEG (DCT) image: %1. + + + + + JPEG 2000 Warning: %1 + + + + + JPEG 2000 Error: %1 + + + + + Unknown color space for JPEG 2000 image. + + + + + JPEG 2000 image has too much non-alpha channels. Ignoring %1 channels. + + + + + JPEG 2000 image has too much alpha channels. Ignoring %1 alpha channels. + + + + + Incompatible color components for JPEG 2000 image. + + + + + Invalid parameters for filter CCITT fax decode. + + + + + Invalid number of bits per component (%1). + + + + + Invalid XML text. + + + + + Error during converting text to font encoding. Some characters were not converted: '%1'. + + + + + Text font not defined! + + + + + Invalid rendering mode '%1'. Valid values are 0-7. + + + + + + + + + + + + Cannot convert text '%1' to number. + + + + + Text font command requires two attributes - font and size. + + + + + Text translation command requires two attributes - x and y. + + + + + Invalid text matrix parameters. + + + + + Set text matrix command requires six elements - m11, m12, m21, m22, x, y. + + + + + Invalid command '%1'. + + + + + Font '%1' is invalid. + + + + + Info + + + + + %1 (%2 replies) + + + + + #%1: %2 + + + + + Rounded rectangle + + + + + Rectangle + + + + + SVG image + + + + + Dot + + + + + Freehand curve + + + + + Text box '%1' + + + + + Image + + + + + Path + + + + + Compile time: %1 [ms] + + + + + Draw time: %1 [ms] + + + + + Precompiled page size is too high (%1 kB). Cache size is %2 kB. Increase the cache size! + + + + + pdf::PDFWidgetAnnotationManager + + + Annotation + + + + + Show Popup Window + + + + + Copy to Multiple Pages + + + + + Edit + + + + + Delete + + + + + Copy Annotation + + + + + Copy Annotation onto Multiple Pages + + + + + pdf::PDFXRefTable + + + + + + + Invalid format of reference table. + + + + + + + Bad format of reference table entry. + + + + + Trailer dictionary is invalid. + + + + + Offset of previous reference table is invalid. + + + + + + + Invalid format of cross-reference stream. + + + + + Invalid format of cross-reference stream - not enough data in the stream. + + + + + pdfdiff::DifferencesDockWidget + + + Differen&ces + + + + + %1 Differences (+%2 hidden) + + + + + %1 Differences + + + + + Page %1 + + + + + Left %1 + + + + + Right %1 + + + + + No Differences Found! + + + + + pdfdiff::DifferencesDrawInterface + + + Difference + + + + + pdfdiff::MainWindow + + + &Main + + + + + &Differences + + + + + &View + + + + + + + + + Error + + + + + Info + + + + + No differences found between the compared documents. + + + + + + Select PDF document + + + + + XML file (*.xml) + + + + + File '%1' cannot be opened. %2 + + + + + Save results to XML + + + + + Displayed results are empty. Cannot save empty results. + + + + + Save As + + + + + Portable Document (*.pdf);;All files (*.*) + + + + + PDF document (*.pdf) + + + + + Encrypted document + + + + + Enter password to access document content + + + + + pdfdiff::PDFAboutDialog + + + Library + + + + + Version + + + + + License + + + + + URL + + + + + pdfdiff::SettingsDockWidget + + + S&ettings + + + + + pdfpagemaster::AssembleOutputSettingsDialog + + + No Outline + + + + + Join Outlines + + + + + Document Parts + + + + + Select output directory + + + + + pdfpagemaster::MainWindow + + + &Main + + + + + &Insert + + + + + &Select + + + + + &Regroup + + + + + &Zoom + + + + + Ma&ke + + + + + + Select PDF document(s) + + + + + + + PDF document (*.pdf) + + + + + Select + + + + + Regroup + + + + + Encrypted document + + + + + Enter password to access document '%1' + + + + + + + + + + Error + + + + + Document security doesn't permit to organize pages. + + + + + No documents to assemble. + + + + + Document with given filename already exists. + + + + + Images (*.%1) + + + + + Select Image(s) + + + + + Select PDF document + + + + + pdfpagemaster::PDFAboutDialog + + + Library + + + + + Version + + + + + License + + + + + URL + + + + + pdfpagemaster::PageItemModel + + + Page Group + + + + + Document collection + + + + + Page Count: %1 + + + + + Image + + + + + Images + + + + + Blank Page + + + + + Blank Pages + + + + + #BBBB00@Collection + + + + + #D98335@Blank + + + + + #24A5EA@Image + + + + + pdfpagemaster::SelectOutlineToRegroupDialog + + + Select All + + + + + Deselect All + + + + + Invert Selection + + + + + Select Level 1 + + + + + Select Level 2 + + + + + Select subtree + + + + + Deselect subtree + + + + + pdfplugin::AudioBookCreator + + + No suitable voice found. + + + + + + Cannot create output stream '%1'. + + + + + Cannot create voice. + + + + + Failed to set requested voice. + + + + + Audio book plugin is unsupported on your system. + + + + + pdfplugin::AudioBookPlugin + + + &Create Text Stream for Audio Book + + + + + Synchronize Selection from &Table to Graphics + + + + + Synchronize Selection from &Graphics to Table + + + + + &Activate Selection + + + + + &Deactivate Selection + + + + + Select by &Rectangle + + + + + Select by Contained &Text + + + + + Select by Regular &Expression + + + + + Select by Page &List + + + + + Restore &Original Text + + + + + Move Selection &Up + + + + + Move Selection &Down + + + + + Create Audio &Book + + + + + Clear Te&xt Stream + + + + + &Audio Book + + + + + + + + + + Error + + + + + Cannot select items by text, because text is empty. + + + + + Regular expression is not valid. %1 + + + + + Cannot select items by regular expression, because regular expression definition is empty. + + + + + Cannot select items by page indices, because page indices are invalid. %1 + + + + + Cannot select items by page indices, because page indices are empty. + + + + + Question + + + + + Restore original texts in selected items? All changes will be lost. + + + + + Select Audio File + + + + + Audio stream (*.mp3) + + + + + Audio book creator cannot be initialized. + + + + + pdfplugin::AudioTextStreamEditorDockWidget + + + Audio Book Actions + + + + + pdfplugin::CreateRedactedDocumentDialog + + + File Name + + + + + Error + + + + + Cannot convert '%1' to color value. + + + + + pdfplugin::DimensionsPlugin + + + &Horizontal Dimension + + + + + &Vertical Dimension + + + + + &Linear Dimension + + + + + &Perimeter + + + + + &Rectangle Perimeter + + + + + &Area + + + + + R&ectangle Area + + + + + An&gle + + + + + &Show Dimensions + + + + + &Clear Dimensions + + + + + Se&ttings + + + + + &Dimensions + + + + + A = %1 %2 + + + + + p = %1 %2 + + + + + pdfplugin::EditorPlugin + + + &Edit page content + + + + + Create &Text Label + + + + + Create &Freehand Curve + + + + + Create &Accept Mark + + + + + Create &Reject Mark + + + + + Create R&ectangle + + + + + &Create Rounded Rectangle + + + + + Create &Horizontal Line + + + + + Create &Vertical Line + + + + + Create L&ine + + + + + Create &Dot + + + + + Create &SVG Image + + + + + Clear A&ll Graphics + + + + + Ed&itor + + + + + Errors (%2) occured while creating content stream on page %3.<br>%1 + + + + + Error + + + + + Confirm Changes + + + + + The changes to the page content will be written to the document. Do you want to continue? + + + + + Editor Toolbox + + + + + pdfplugin::InkCoverageStatisticsModel + + + Total + + + + + Page Index + + + + + [ mm² ] + + + + + [ % ] + + + + + pdfplugin::ObjectInspectorDialog + + + Document + + + + + Pages + + + + + Content streams + + + + + Graphic states + + + + + Color spaces + + + + + Patterns + + + + + Shadings + + + + + Images + + + + + Forms + + + + + Fonts + + + + + Actions + + + + + Annotations + + + + + Object List + + + + + pdfplugin::ObjectInspectorPlugin + + + Object &Inspector + + + + + Object &Statistics + + + + + O&bject Inspector + + + + + pdfplugin::ObjectStatisticsDialog + + + Statistics by Object Function + + + + + + Statistics by Object Type + + + + + Statistics by Object Class + + + + + Class + + + + + + Percentage [%] + + + + + + Count [#] + + + + + Space Usage [bytes] + + + + + Page + + + + + Content Stream + + + + + Graphic State + + + + + Color Space + + + + + Pattern + + + + + Shading + + + + + Image + + + + + Form + + + + + Font + + + + + Action + + + + + Annotation + + + + + Other + + + + + Type + + + + + pdfplugin::ObjectViewerWidget + + + + %1 %2 R + + + + + Part of object %1 + + + + + <none> + + + + + Null + + + + + Bool + + + + + Integer + + + + + Real + + + + + String + + + + + Name + + + + + Array + + + + + Dictionary + + + + + Stream + + + + + Reference + + + + + null + + + + + true + + + + + false + + + + + Array [%1 items] + + + + + Dictionary [%1 items] + + + + + Stream [%1 items, %2 data bytes] + + + + + Invalid color space of the image. + + + + + Image Stream [%1 items, %2 data bytes, %3 x %4 pixels, %5 bits per component] + + + + + [Unknown] + + + + + %1 (part) + + + + + pdfplugin::OutputPreviewDialog + + + Separations + + + + + Color Warnings | Ink Coverage + + + + + Color Warnings | Rich Black + + + + + Ink Coverage + + + + + Shape Channel + + + + + Opacity Channel + + + + + Process Inks + + + + + Spot Inks + + + + + pdfplugin::OutputPreviewPlugin + + + &Output Preview + + + + + &Ink Coverage + + + + + Output Previe&w + + + + + pdfplugin::OutputPreviewWidget + + + Distribution + + + + + Process Inks + + + + + Spot Inks + + + + + Warning | Ink Coverage + + + + + + OK + + + + + + Failure + + + + + Warning | Rich Black + + + + + Ink Coverage + + + + + Shape/Opacity + + + + + Sample Color + + + + + pdfplugin::PDFObjectInspectorTreeItemModel + + + null + + + + + true + + + + + false + + + + + Array [%1 items] + + + + + Dictionary [%1 items] + + + + + Stream [%1 items, %2 data bytes] + + + + + pdfplugin::RedactPlugin + + + Redact &Rectangle + + + + + Redact &Text + + + + + Redact Text &Selection + + + + + Redact &Page(s) + + + + + Create Redacted &Document + + + + + Redac&t + + + + + Information + + + + + Select text via 'Advanced Search' tool, and then redact it using this tool. Select rows in 'Result' table to select particular results. + + + + + Redact Pages + + + + + Page Range to be Redacted + + + + + Error + + + + + pdfplugin::SignDialog + + + Sign digitally + + + + + Sign digitally (invisible signature) + + + + + + Error + + + + + Certificate does not exist. + + + + + Password to open certificate is invalid. + + + + + pdfplugin::SignaturePlugin + + + &Activate signature creator + + + + + Create &Text Label + + + + + Create &Freehand Curve + + + + + Create &Accept Mark + + + + + Create Reject &Mark + + + + + Create &Rectangle + + + + + Create R&ounded Rectangle + + + + + Create &Horizontal Line + + + + + Create &Vertical Line + + + + + Create &Line + + + + + Create &Dot + + + + + Create SVG &Image + + + + + Clear All &Graphics + + + + + Sign &Electronically + + + + + Sign Digitally &With Certificate + + + + + Certificates &Manager + + + + + Si&gnature + + + + + Confirm Signature + + + + + Document will be signed electronically. Do you want to continue? + + + + + + + Error + + + + + + + Failed to create digital signature. + + + + + Save Signed Document + + + + + Portable Document (*.pdf);;All files (*.*) + + + + + Signature Toolbox + + + + + pdfplugin::SoftProofingPlugin + + + &Soft Proofing + + + + + &Gamut Checking + + + + + Soft &Proofing Settings + + + + + Soft &Proofing + + + + + pdfviewer::ImagePreviewDelegate + + + Toggle this icon to switch image conversion to bitonal format on or off. + + + + + pdfviewer::PDFAboutDialog + + + Library + + + + + Version + + + + + License + + + + + URL + + + + + pdfviewer::PDFActionComboBox + + + Find action... + + + + + pdfviewer::PDFAdvancedFindWidget + + + Page No. + + + + + Phrase + + + + + Context + + + + + Search error + + + + + Search phrase regular expression has error '%1' near symbol %2. + + + + + Results (%1) + + + + + Results + + + + + pdfviewer::PDFBookmarkItemDelegate + + + Page %1 | Generated + + + + + Page %1 + + + + + pdfviewer::PDFBookmarkManager + + + User bookmark for page %1 + + + + + pdfviewer::PDFCreateBitonalDocumentDialog + + + ORIGINAL + + + + + BITONAL + + + + + Perform + + + + + Converting images... + + + + + pdfviewer::PDFDocumentPropertiesDialog + + + Properties + + + + + PDF version + + + + + Title + + + + + Subject + + + + + Author + + + + + Keywords + + + + + Creator + + + + + Producer + + + + + Creation date + + + + + + Modified date + + + + + + + + + + Yes + + + + + + + + + + No + + + + + Unknown + + + + + Content + + + + + Page count + + + + + Paper format + + + + + Paper size + + + + + Trapped + + + + + Custom properties + + + + + File information + + + + + Name + + + + + Directory + + + + + Writable + + + + + Size + + + + + Created date + + + + + Last read date + + + + + Security + + + + + + + None + + + + + Standard + + + + + Public Key + + + + + Custom + + + + + No authorization required + + + + + Authorized as owner + + + + + Authorized as user + + + + + Document encryption + + + + + Authorized as + + + + + Metadata encrypted + + + + + Version + + + + + Permissions + + + + + Print (low resolution) + + + + + Print (high resolution) + + + + + Content extraction + + + + + Content extraction (accessibility) + + + + + Page assembling + + + + + Modify content + + + + + Modify interactive items + + + + + Fill form fields + + + + + TrueType + + + + + Type0 (CID keyed) + + + + + Type1 (8 bit keyed) + + + + + MMType1 (8 bit keyed) + + + + + Type3 (content streams for font glyphs) + + + + + Type + + + + + Font family + + + + + Embedded subset + + + + + Viewer settings + + + + + Default printer settings + + + + + Single page + + + + + Continuous column + + + + + Two continuous columns + + + + + Two pages + + + + + Default + + + + + Show outlines + + + + + Show thumbnails + + + + + Fullscreen + + + + + Show optional content + + + + + Show attachments + + + + + Left to right + + + + + Right to left + + + + + Page layout + + + + + View mode + + + + + Writing direction + + + + + Application default + + + + + Scale + + + + + Simplex + + + + + + Duplex (flip long edge) + + + + + Duplex mode + + + + + Pick tray by page size + + + + + Default print page ranges + + + + + Number of copies + + + + + pdfviewer::PDFEditorMainWindow + + + Standard + + + + + % + + + + + &Sidebar + + + + + Advanced find + + + + + Ad&vanced Find... + + + + + / %1 + + + + + pdfviewer::PDFEncryptionSettingsDialog + + + None + + + + + RC4 128-bit | R4 + + + + + AES 128-bit | R4 + + + + + AES 256-bit | R6 + + + + + Certificate Encryption + + + + + Error + + + + + pdfviewer::PDFEncryptionStrengthHintWidget + + + Very weak + + + + + Weak + + + + + Moderate + + + + + Strong + + + + + Very strong + + + + + pdfviewer::PDFOptimizeDocumentDialog + + + Embed (dereference) simple objects, such as int, bool, real + + + + + Remove null objects from dictionary entries + + + + + Remove unused objects (objects unreachable from document root object) + + + + + Merge identical objects + + + + + Shrink object storage (squeeze free entries) + + + + + Recompress flate streams by maximal compression + + + + + Optimize + + + + + Optimization started! + + + + + Optimization finished! + + + + + Optimized in %1 msecs + + + + + Bytes before optimization: %1 + + + + + Bytes after optimization: %1 + + + + + Bytes saved by optimization: %1 + + + + + Compression ratio: %1 % + + + + + pdfviewer::PDFProgramController + + + Printing document + + + + + Go to action + + + + + Failed to go to destination '%1'. Destination wasn't found. + + + + + Would you like to launch application '%1' in working directory '%2' with parameters '%3'? + + + + + + + + Launch application + + + + + + Executing application failed. Error code is %1. + + + + + Would you like to launch application '%1'? + + + + + Would you like to open URL '%1'? + + + + + + Open URL + + + + + Opening url '%1' failed. + + + + + Save As + + + + + Portable Document (*.pdf);;All files (*.*) + + + + + + Error + + + + + Save Document + + + + + Do you wish to save modified document before it is closed? + + + + + Error while starting email client occured! + + + + + Permission to change document security is denied. + + + + + Failed to create security handler. + + + + + + Reauthorization is required to change document encryption. + + + + + Encrypted document + + + + + Enter password to access document content + + + + + Document '%1' was successfully loaded! + + + + + Document read error: %1 + + + + + %1 - %2 + + + + + + Reset Settings + + + + + Do you wish to restore the default factory settings of the program? All settings changed by the user will be deleted. Application will be closed. + + + + + Default factory settings were restored. Application will be now closed. + + + + + Plugins + + + + + Plugin on/off state has been changed. Please restart application to apply settings. + + + + + + Select PDF document + + + + + PDF document (*.pdf) + + + + + Export Bookmarks As + + + + + JSON (*.json);;All files (*.*) + + + + + JSON (*.json) + + + + + Rendering of page %1: %2 errors occured. + + + + + pdfviewer::PDFRecentFileManager + + + (&%1) %2 + + + + + Recent file dummy &%1 + + + + + pdfviewer::PDFRenderToImagesDialog + + + %1 +Page %2: %3 + + + + + Select output directory + + + + + Cannot write page image to file '%1', because: %2. + + + + + Error + + + + + pdfviewer::PDFSanitizeDocumentDialog + + + Remove document info + + + + + Remove all metadata + + + + + Remove outline + + + + + Remove file attachments + + + + + Remove embedded search index + + + + + Remove comments and other markup annotations + + + + + Remove page thumbnails + + + + + Sanitize + + + + + Sanitization started! + + + + + Sanitization finished! + + + + + Sanitized in %1 msecs + + + + + Bytes before sanitization: %1 + + + + + Bytes after sanitization: %1 + + + + + Bytes saved by sanitization: %1 + + + + + Compression ratio: %1 % + + + + + pdfviewer::PDFSidebarWidget + + + + + + + Error + + + + + Speech feature is unavailable. No speech engines detected. If you're using Linux, please install speech libraries like 'flite' or 'speechd'. + + + + + The speech feature is available, but its options are not properly set. Please check the speech settings in the options dialog. + + + + + Signature - %1 + + + + + Timestamp - %1 + + + + + Unknown + + + + + Certificate is valid. + + + + + Signature is valid. + + + + + Hash algorithm: %1 + + + + + Certificate validation chain + + + + + Protected by RSA method, %1-bit key + + + + + Protected by DSA method, %1-bit key + + + + + Protected by EC method, %1-bit key + + + + + Protected by DH method, %1-bit key + + + + + Unknown protection method, %1-bit key + + + + + Country + + + + + Organization + + + + + Org. unit + + + + + Name + + + + + State + + + + + Serial number + + + + + Locality + + + + + Title + + + + + Surname + + + + + Forename + + + + + Initials + + + + + Pseudonym + + + + + Qualifier + + + + + Email + + + + + Digital signatures + + + + + Non-repudiation + + + + + Key encipherement + + + + + Application data encipherement + + + + + Key agreement + + + + + Verify signatures on certificates + + + + + Verify signatures on revocation information + + + + + Encipher data during key agreement + + + + + Decipher data during key agreement + + + + + Trusted timestamping + + + + + Key usages + + + + + User + + + + + Page %1 + + + + + Save to File... + + + + + Save attachment + + + + + + Failed to save attachment to file. %1 + + + + + Failed to save attachment to file. Attachment is corrupted. + + + + + Add to trusted certificates + + + + + Add to Trusted Certificate Store + + + + + Are you sure want to add '%1' to the trusted certificate store? + + + + + Trusted Certificate Store Error + + + + + Failed to add certificate to the trusted certificate store. + + + + + Follow + + + + + Delete + + + + + Insert + + + + + Rename + + + + + Font Bold + + + + + Font Italic + + + + + Set Target + + + + + Select Named Destination + + + + + OK + + + + + Cancel + + + + + Named Destination + + + + + Fit Page + + + + + Fit Page Horizontally + + + + + Fit Page Vertically + + + + + Fit Rectangle + + + + + Fit Bounding Box + + + + + Fit Bounding Box Horizontally + + + + + Fit Bounding Box Vertically + + + + + XYZ + + + + + pdfviewer::PDFViewerMainWindow + + + Standard + + + + + % + + + + + &Sidebar + + + + + / %1 + + + + + pdfviewer::PDFViewerSettingsDialog + + + Engine + + + + + Rendering + + + + + Shading + + + + + Cache + + + + + Shortcuts + + + + + Colors | CMS + + + + + Colors | Postprocessing + + + + + Security + + + + + UI + + + + + Speech + + + + + Forms + + + + + Signature + + + + + Plugins + + + + + Software | QPainter + + + + + Software | Blend2D | Parallel + + + + + Software | Blend2D | Sequential + + + + + Single thread + + + + + Multithreading (load balanced) + + + + + Multithreading (maximum threads) + + + + + Auto + + + + + Perceptual + + + + + Relative colorimetric + + + + + Absolute colorimetric + + + + + Saturation + + + + + Low + + + + + Medium + + + + + High + + + + + None + + + + + XYZ scaling + + + + + CAT97 matrix + + + + + CAT02 matrix + + + + + Bradford method + + + + + Automatic (or via command line) + + + + + Light scheme + + + + + Dark scheme + + + + + Type + + + + + Certificate + + + + + Organization + + + + + Valid from + + + + + Valid to + + + + + User + + + + + System + + + + + Action + + + + + Shortcut + + + + + Error + + + + + Shortcut '%1' is invalid for action %2. + + + + + Active + + + + + Name + + + + + Author + + + + + Version + + + + + License + + + + + Select color profile directory + + + +