diff --git a/Pdf4QtLibCore/sources/pdfapplicationtranslator.cpp b/Pdf4QtLibCore/sources/pdfapplicationtranslator.cpp index e0f817c..40c8f96 100644 --- a/Pdf4QtLibCore/sources/pdfapplicationtranslator.cpp +++ b/Pdf4QtLibCore/sources/pdfapplicationtranslator.cpp @@ -129,10 +129,33 @@ void PDFApplicationTranslator::setLanguage(ELanguage newLanguage) m_language = newLanguage; } -QString PDFApplicationTranslator::loadLanguageKeyFromSettings() +void PDFApplicationTranslator::saveSettings(QSettings& settings, ELanguage language) { QMetaEnum metaEnum = QMetaEnum::fromType(); + + settings.beginGroup("Language"); + settings.setValue("language", metaEnum.valueToKey(language)); + settings.endGroup(); +} + +PDFApplicationTranslator::ELanguage PDFApplicationTranslator::loadSettings(QSettings& settings) +{ + QMetaEnum metaEnum = QMetaEnum::fromType(); + std::string languageKeyString = loadLanguageKeyFromSettings(settings).toStdString(); + std::optional value = metaEnum.keyToValue(languageKeyString.c_str()); + return static_cast(value.value_or(E_LANGUAGE_AUTOMATIC_SELECTION)); +} + +QString PDFApplicationTranslator::loadLanguageKeyFromSettings() +{ QSettings settings(QSettings::IniFormat, QSettings::UserScope, QCoreApplication::organizationName(), QCoreApplication::applicationName()); + return loadLanguageKeyFromSettings(settings); +} + +QString PDFApplicationTranslator::loadLanguageKeyFromSettings(QSettings& settings) +{ + QMetaEnum metaEnum = QMetaEnum::fromType(); + settings.beginGroup("Language"); QString languageKey = settings.value("language", metaEnum.valueToKey(E_LANGUAGE_AUTOMATIC_SELECTION)).toString(); settings.endGroup(); diff --git a/Pdf4QtLibCore/sources/pdfapplicationtranslator.h b/Pdf4QtLibCore/sources/pdfapplicationtranslator.h index 8c8cd35..a290b10 100644 --- a/Pdf4QtLibCore/sources/pdfapplicationtranslator.h +++ b/Pdf4QtLibCore/sources/pdfapplicationtranslator.h @@ -22,6 +22,8 @@ #include +class QSettings; + namespace pdf { @@ -53,7 +55,12 @@ public: ELanguage getLanguage() const; void setLanguage(ELanguage newLanguage); + static ELanguage loadSettings(QSettings& settings); + static void saveSettings(QSettings& settings, ELanguage language); + private: + static QString loadLanguageKeyFromSettings(QSettings& settings); + QString loadLanguageKeyFromSettings(); QString getLanguageFileName() const; diff --git a/Pdf4QtLibGui/pdfviewersettings.cpp b/Pdf4QtLibGui/pdfviewersettings.cpp index cea2be8..5072f9d 100644 --- a/Pdf4QtLibGui/pdfviewersettings.cpp +++ b/Pdf4QtLibGui/pdfviewersettings.cpp @@ -112,6 +112,9 @@ void PDFViewerSettings::readSettings(QSettings& settings, const pdf::PDFCMSSetti m_settings.m_colorScheme = static_cast(settings.value("colorScheme", int(defaultSettings.m_colorScheme)).toInt()); settings.endGroup(); + // Language + m_settings.m_language = pdf::PDFApplicationTranslator::loadSettings(settings); + Q_EMIT settingsChanged(); } @@ -188,6 +191,8 @@ void PDFViewerSettings::writeSettings(QSettings& settings) settings.beginGroup("ColorScheme"); settings.setValue("colorScheme", int(m_settings.m_colorScheme)); settings.endGroup(); + + pdf::PDFApplicationTranslator::saveSettings(settings, m_settings.m_language); } QString PDFViewerSettings::getDirectory() const @@ -311,7 +316,8 @@ PDFViewerSettings::Settings::Settings() : m_signatureIgnoreCertificateValidityTime(false), m_signatureUseSystemStore(true), m_autoGenerateBookmarks(true), - m_colorScheme(AutoScheme) + m_colorScheme(AutoScheme), + m_language(pdf::PDFApplicationTranslator::E_LANGUAGE_AUTOMATIC_SELECTION) { } diff --git a/Pdf4QtLibGui/pdfviewersettings.h b/Pdf4QtLibGui/pdfviewersettings.h index a2cea34..f3dfad5 100644 --- a/Pdf4QtLibGui/pdfviewersettings.h +++ b/Pdf4QtLibGui/pdfviewersettings.h @@ -24,6 +24,7 @@ #include "pdfcms.h" #include "pdfexecutionpolicy.h" #include "pdfform.h" +#include "pdfapplicationtranslator.h" #include @@ -105,6 +106,9 @@ public: // UI Dark/Light mode settings ColorScheme m_colorScheme; + + // Language + pdf::PDFApplicationTranslator::ELanguage m_language; }; const Settings& getSettings() const { return m_settings; } diff --git a/Pdf4QtLibGui/pdfviewersettingsdialog.cpp b/Pdf4QtLibGui/pdfviewersettingsdialog.cpp index c21ee29..1019481 100644 --- a/Pdf4QtLibGui/pdfviewersettingsdialog.cpp +++ b/Pdf4QtLibGui/pdfviewersettingsdialog.cpp @@ -138,6 +138,14 @@ PDFViewerSettingsDialog::PDFViewerSettingsDialog(const PDFViewerSettings::Settin ui->colorSchemeCombo->addItem(tr("Light scheme"), static_cast(PDFViewerSettings::LightScheme)); ui->colorSchemeCombo->addItem(tr("Dark scheme"), static_cast(PDFViewerSettings::DarkScheme)); + // Langauges + ui->languageCombo->addItem(tr("Automatic detection"), static_cast(pdf::PDFApplicationTranslator::E_LANGUAGE_AUTOMATIC_SELECTION)); + ui->languageCombo->addItem(tr("English"), static_cast(pdf::PDFApplicationTranslator::E_LANGUAGE_ENGLISH)); + ui->languageCombo->addItem(tr("German"), static_cast(pdf::PDFApplicationTranslator::E_LANGUAGE_GERMAN)); + ui->languageCombo->addItem(tr("Korean"), static_cast(pdf::PDFApplicationTranslator::E_LANGUAGE_KOREAN)); + ui->languageCombo->addItem(tr("Spanish"), static_cast(pdf::PDFApplicationTranslator::E_LANGUAGE_SPANISH)); + ui->languageCombo->addItem(tr("Czech"), static_cast(pdf::PDFApplicationTranslator::E_LANGUAGE_CZECH)); + auto fillColorProfileList = [](QComboBox* comboBox, const pdf::PDFColorProfileIdentifiers& identifiers) { for (const pdf::PDFColorProfileIdentifier& identifier : identifiers) @@ -311,6 +319,7 @@ void PDFViewerSettingsDialog::loadData() ui->developerModeCheckBox->setChecked(m_settings.m_allowDeveloperMode); ui->logicalPixelZoomCheckBox->setChecked(m_settings.m_features.testFlag(pdf::PDFRenderer::LogicalSizeZooming)); ui->colorSchemeCombo->setCurrentIndex(ui->colorSchemeCombo->findData(static_cast(m_settings.m_colorScheme))); + ui->languageCombo->setCurrentIndex(ui->languageCombo->findData(static_cast(m_settings.m_language))); // CMS ui->cmsTypeComboBox->setCurrentIndex(ui->cmsTypeComboBox->findData(int(m_cmsSettings.system))); @@ -402,7 +411,11 @@ void PDFViewerSettingsDialog::saveData() QObject* sender = this->sender(); - if (sender == ui->colorSchemeCombo) + if (sender == ui->languageCombo) + { + m_settings.m_language = static_cast(ui->languageCombo->currentData().toInt()); + } + else if (sender == ui->colorSchemeCombo) { m_settings.m_colorScheme = static_cast(ui->colorSchemeCombo->currentData().toInt()); } diff --git a/Pdf4QtLibGui/pdfviewersettingsdialog.ui b/Pdf4QtLibGui/pdfviewersettingsdialog.ui index 9393031..c46c993 100644 --- a/Pdf4QtLibGui/pdfviewersettingsdialog.ui +++ b/Pdf4QtLibGui/pdfviewersettingsdialog.ui @@ -35,7 +35,7 @@ - 0 + 8 @@ -928,45 +928,87 @@ li.checked::marker { content: "\2612"; } - - - - - - - Enable - - - - + Maximum redo steps - - - - Magnifier size + + + + 20 - + + + + Enable + + + + + + + 20 + + + + + + + Magnifier zoom + + + + Use logical pixels when zooming - + + + + Magnifier size + + + + + + + 1.000000000000000 + + + 10.000000000000000 + + + + + + + Maximum undo steps + + + + + + + Maximum count of recent files + + + + Enable - + px @@ -979,68 +1021,36 @@ li.checked::marker { content: "\2612"; } - - - - 1.000000000000000 - - - 10.000000000000000 - - - - - - - 20 - - - - - - - Maximum undo steps - - - - - - - Magnifier zoom - - - - - - - 20 - - + + - + - Maximum count of recent files + Color Scheme (GUI) - + + + + Developer mode - - - - + - Color Scheme (GUI) + Language + + + diff --git a/translations/PDF4QT_cs.ts b/translations/PDF4QT_cs.ts index 3a98969..b487f4a 100644 --- a/translations/PDF4QT_cs.ts +++ b/translations/PDF4QT_cs.ts @@ -55,7 +55,7 @@ Overwrite existing files - + Přepsat existující soubory @@ -65,12 +65,12 @@ Generate into directory - + Vytvořit v adresáři Outline Mode - + Režim obsahu @@ -78,7 +78,7 @@ Text Stream for Audio Book - + Proud textu pro audioknihu @@ -86,52 +86,52 @@ Create Redacted Document - + Vytvořit redigovaný dokument Redacted document - + Redigovaný dokument Output file name - + Výstupní soubor ... - + Appearance - + Vzhled Fill redacted area with color: - + Vyplnit redigovanou plochu barvou: Options - + Možnosti Copy document title into redacted document - + Kopírovat nadpis dokumentu do redigovaného dokumentu Copy document metadata into redacted document - + Kopírovat metadata dokumentu do redigovaného dokumentu Copy outline into redacted document - + Kopírovat obsah do redigovaného dokumentu @@ -147,12 +147,12 @@ pt - + in - + @@ -162,37 +162,37 @@ cm - + sq. pt - + sq. in - + sq. mm - + sq. cm - + ° - + rad - + @@ -205,7 +205,7 @@ Remove - + Smazat @@ -240,7 +240,7 @@ Name - + Jméno @@ -275,7 +275,7 @@ File - + Soubor @@ -404,17 +404,17 @@ Form - Formulář + Formulář Title - + Titulek TextLabel - + @@ -422,57 +422,57 @@ Launch Application - + Spustit Aplikaci Editor - + Editor Viewer - + Prohlížeč Diff - + Porovnávač PageMaster - + Úprava Stránek 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. - + Tento nástroj nabízí širokou škálu pokročilých funkcí, včetně šifrování, čtení dokumentů, ověřování digitálních podpisů, úprav anotací a dokonce i podpory vyhledávání textu pomocí regulárních výrazů. Převádějte stránky na obrázky a vylepšete práci s PDF díky množství dostupných pluginů. Simplify your viewing experience. This lightweight viewer offers essential viewing functions in a clean, user-friendly interface. - + Tento jednoduchý prohlížeč nabízí základní funkce prohlížení v přehledném a uživatelsky přívětivém rozhraní. 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. - + Tento nástroj umožňuje otevřít dva dokumenty a získat podrobný seznam rozdílů. Rozdíly jsou přehledně zvýrazněny v okně se zobrazením strana po straně. Výsledky lze uložit do XML souboru pro pozdější použití. 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. - + Spravujte celé dokumenty nebo jednotlivé stránky s lehkostí. Sloučte více dokumentů do jednoho souboru, nebo je rozdělte na několik částí. Stránky můžete také přesouvat, kopírovat nebo přidávat několika kliknutími – vše v přehledném a intuitivním rozhraní. Error - Chyba + Chyba Failed to start process '%1' - + Nepodařilo se spustit proces '%1' @@ -490,7 +490,7 @@ File - + Soubor @@ -501,142 +501,142 @@ Ctrl+O - + Clear - Vyčistit + Vyčistit Ctrl+W - + Add JBIG2 image - + Přidat JBIG2 obrázek Ctrl+J - + Error - Chyba + Chyba Open image - + Otevřít obrázek Workspace - + Pracovní prostor &File - Soubor + &Soubor &Edit - Úpravy + &Úpravy &Insert - + Vloži&t &View - + &Zobrazit &Make - + V&ytvořit &Help - + &Nápověda &Toolbars - + Lišty nástro&jů &Regroup - + Přes&kupit &Add Documents... - + Přidat dokum&enty... Add Documents - + Přidat dokumenty C&lose - + Za&vřít Alt+F4 - + Clone &Selection - + Zdvojit &Selekci Ctrl+L - + Re&move Selection - + &Odstranit Selekci Del - + Delete Restore Removed &Items - + O&bnovit Smazané Položky Ctrl+Shift+R - + @@ -646,12 +646,12 @@ Insert PDF - + Vložit PDF Ctrl+I - + @@ -661,7 +661,7 @@ Ctrl+Alt+I - + @@ -671,37 +671,37 @@ Ctrl+Shift+I - + Cu&t - + Vyj&mout Ctrl+X - + &Copy - + &Kopírovat Ctrl+C - + &Paste - + V&ložit Ctrl+V - + @@ -711,7 +711,7 @@ Ctrl+Alt+R - + @@ -721,7 +721,7 @@ Ctrl+N - + @@ -731,7 +731,7 @@ Ctrl+A - + @@ -741,7 +741,7 @@ F9 - + @@ -751,7 +751,7 @@ F10 - + @@ -761,7 +761,7 @@ F11 - + @@ -771,7 +771,7 @@ F12 - + @@ -781,7 +781,7 @@ F4 - + @@ -791,7 +791,7 @@ Shift+F4 - + @@ -801,7 +801,7 @@ Ctrl++ - + @@ -811,7 +811,7 @@ Ctrl+- - + @@ -829,7 +829,7 @@ F1 - + @@ -840,7 +840,7 @@ F5 - + @@ -851,7 +851,7 @@ F6 - + @@ -861,7 +861,7 @@ F7 - + @@ -871,7 +871,7 @@ Ctrl+G - + @@ -881,7 +881,7 @@ Ctrl+Shift+G - + @@ -931,7 +931,7 @@ Ctrl+Z - + @@ -941,7 +941,7 @@ Ctrl+Y - + @@ -958,12 +958,12 @@ &Compare - + &Porovnat &Filter - + &Filtrovat @@ -978,27 +978,27 @@ &Close - + Za&vřít Ctrl+F4 - + &Previous Difference - + Předchozí ro&zdíl Shift+F6 - + &Next Difference - + &Následující rozdíl @@ -1033,22 +1033,22 @@ View &Differences - + Zobrazit roz&díly View &Left - + Zobrazit &levý View &Right - + Zobrazit &pravý View &Overlay - + Zobrazit pře&kryv @@ -1104,7 +1104,7 @@ Object Statistics - + Statistika objektů @@ -1112,7 +1112,7 @@ Form - Formulář + Formulář @@ -1127,27 +1127,27 @@ Information - + Informace Reference - + Odkaz Type - + Typ Description - Popis + Popis Contents - + Obsah @@ -1246,7 +1246,7 @@ Select - + Vybrat @@ -1361,12 +1361,12 @@ Certificate Manager - + Správce Certifikátů Certificates - + Certifikáty @@ -1397,52 +1397,52 @@ Create Certificate - + Vytvořit certifikát Create Self Signed Certificate - + Vytvořit samopodepsaný certifikát Name - + Jméno Organization - + Organizace Organization Unit - + Organizační jednotka Email - + Email Country - + Stát Key length - + Délka klíče Valid till - + Platné do Certificate file - + Soubor certifikátu @@ -1450,40 +1450,40 @@ Document Properties - + Vlastnosti dokumentu Properties - + Vlastnosti File Information - + Informace o souboru Security - + Zabezpečení Fonts - + Fonty Display && Print - + Zobrazení && Tisk Display && Print Settings - + Nastavení - Zobrazení && Tisk @@ -1491,12 +1491,12 @@ PDF Editor - + &File - Soubor + &Soubor @@ -1511,7 +1511,7 @@ &View - + &Zobrazit @@ -1532,7 +1532,7 @@ &Help - + &Nápověda @@ -1542,13 +1542,13 @@ &Edit - Úpravy + &Úpravy &Insert - + Vloži&t @@ -1558,7 +1558,7 @@ &Stamp - + Raz&ítko @@ -1573,7 +1573,7 @@ &Close - + Za&vřít @@ -2201,17 +2201,17 @@ Encryption Settings - + Nastavení zabezpečení Encryption Method - + Metoda šifrování Encryption algorithm - + Šifrovací algoritmus @@ -2221,87 +2221,87 @@ Certificate - + Certifikát Passwords - + Hesla Password (document open) - + Heslo (otevření dokumentu) Password (owner access) - + Heslo (veškerý přístup) Encrypt Contents - + Zašifrovat obsah Encrypt all document contents, including document metadata - + Zašifrovat všechny druhy obsahu, včetně metadat Encrypt all document contets except metadata - + Zašifrovat všechny druhy obsahu kromě metadat Encrypt file attachments only - + Zašifrovat pouze přílohy Permissions - + Práva Print (low resolution) - + Tísk (nízké rozlišení) Fill interactive forms - + Vyplnění interaktivních formulářů Print (high resolution) - + Tisk (vysoké rozlišení) Accessibility - + Usnadnění Modify document contents - + Změnit obsah dokumentu Assemble document (insert, rotate, delete pages...) - + Sestavit doument (vložit, rotovat, smazat stránky...) Edit interactive items (annotations, forms, ...) - + Upravit interaktivní prvky (anotace, formuláře, ...) Copy/extract document content - + Kopírování a vyjmutí obsahu dokumetu @@ -2337,7 +2337,7 @@ Image - + Obrázek @@ -2352,7 +2352,7 @@ Width - + Šířka @@ -2518,7 +2518,7 @@ Font - + Font @@ -2636,12 +2636,12 @@ Appearance - + Vzhled Content - + Obsah @@ -2674,7 +2674,7 @@ Generate into directory - + Vytvořit v adresáři @@ -2760,7 +2760,7 @@ Enable - + Povolit @@ -2768,7 +2768,7 @@ Rendering errors - + Chyby vykreslování @@ -2891,7 +2891,7 @@ Help - + Nápověda @@ -3204,7 +3204,7 @@ Name - + Jméno @@ -3236,7 +3236,7 @@ Country - + Stát @@ -3319,7 +3319,7 @@ Certificates - + Certifikáty @@ -3330,41 +3330,41 @@ Type - + Typ Certificate - + Certifikát Organization - + Organizace Valid from - + Platný od Valid to - + Platný do User - + Uživatelský System - + Systémový @@ -3544,7 +3544,7 @@ Page No. - + Číslo Stránky. @@ -3585,7 +3585,7 @@ Info - + Informace @@ -3624,7 +3624,7 @@ Title - + Titulek @@ -3639,7 +3639,7 @@ Author - + Autor @@ -3672,7 +3672,7 @@ Yes - + Ano @@ -3705,7 +3705,7 @@ None - + Žádný @@ -3751,7 +3751,7 @@ Standard - + Standardní @@ -3797,7 +3797,7 @@ Print (low resolution) - + Tísk (nízké rozlišení) @@ -3812,7 +3812,7 @@ Accessibility - + Usnadnění @@ -3842,7 +3842,7 @@ Permissions - + Práva @@ -4076,7 +4076,7 @@ Color - + Barva @@ -4101,7 +4101,7 @@ Context - + Kontext @@ -4146,7 +4146,7 @@ Annotation - + Anotace @@ -4197,7 +4197,7 @@ Left - + Vlevo @@ -4207,7 +4207,7 @@ Right - + Vpravo @@ -4338,7 +4338,7 @@ Hidden - + Skrytý @@ -4353,7 +4353,7 @@ Properties - + Vlastnosti @@ -4662,7 +4662,7 @@ Information - + Informace @@ -4697,12 +4697,12 @@ Statistics by Object Class - + Statistika dle Třídy Objektu Class - + Třída @@ -4724,7 +4724,7 @@ Content Stream - + Proud dat obsahu @@ -4734,42 +4734,42 @@ Color Space - + Barevný prostor Pattern - + Vzor Shading - + Stínování Image - + Obrázek Font - + Font Action - + Akce Other - + Jiné Statistics by Object Type - + Statistika dle Typů Objektů @@ -4799,7 +4799,7 @@ Signature verification - + Ověření podpisu @@ -4820,7 +4820,7 @@ Signature - + Podepisování @@ -4976,7 +4976,7 @@ Email - + Email @@ -5104,7 +5104,7 @@ &View - + &Zobrazit @@ -5124,7 +5124,7 @@ &Help - + &Nápověda @@ -5134,7 +5134,7 @@ &Close - + Za&vřít @@ -5492,7 +5492,7 @@ Options - + Možnosti @@ -5528,16 +5528,16 @@ - - - - - - - - + + + + + + + + Enable - + Povolit @@ -5664,7 +5664,7 @@ li.checked::marker { content: "\2612"; } kB - + @@ -5693,7 +5693,7 @@ li.checked::marker { content: "\2612"; } Shortcuts - Zkratky + Zkratky @@ -5713,7 +5713,7 @@ li.checked::marker { content: "\2612"; } Accuracy - + Přesnost @@ -5792,12 +5792,12 @@ li.checked::marker { content: "\2612"; } Foreground color - + Barva popředí Background color - + Barva pozadí @@ -5826,12 +5826,12 @@ li.checked::marker { content: "\2612"; } Allow URI link launch - + Povolit spuštění URI odkazu Allow application launch - + Povolit spuštění aplikace @@ -5850,55 +5850,60 @@ li.checked::marker { content: "\2612"; } UI Settings - + Nastavení uživatelského rozhraní - + Maximum redo steps - + Magnifier size - + Use logical pixels when zooming - + px - + - + Maximum undo steps - + Magnifier zoom - + Maximum count of recent files - + Developer mode - + Režim pro vývojáře - + Color Scheme (GUI) - + + Language + + + + <!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; } @@ -5912,42 +5917,42 @@ li.checked::marker { content: "\2612"; } - + Speech Settings - + Nastavení čtení - + Voice - + Hlas - + Pitch - + Volume - Hlasitost + Hlasitost - + Rate - Rychlost + Rychlost - + Voice synthetiser - + Syntetizér hlasu - + 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; } @@ -5959,22 +5964,22 @@ li.checked::marker { content: "\2612"; } - + Form Settings - + Nastavení formuláře - + 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; } @@ -5986,49 +5991,49 @@ li.checked::marker { content: "\2612"; } - + Digital Signature Verification - + Ignore expired certificates - + Signature verification - + Ověření podpisu - + Strict mode - + Přísný režim - + Use system certificate store - + <html><head/><body><p><span style=" font-weight:600;">Trusted certificate store</span></p></body></html> - + Remove - + Smazat - + <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 - + Přídavné moduly @@ -6036,7 +6041,7 @@ li.checked::marker { content: "\2612"; } Select Outline - + Vybrat Záložky @@ -6090,27 +6095,27 @@ li.checked::marker { content: "\2612"; } Auto - + Automaticky Perceptual - + Percepční Relative colorimetric - + Relativně kolorimetrický Absolute colorimetric - + Absolutně kolorimetrický Saturation - + Saturační @@ -6139,7 +6144,7 @@ li.checked::marker { content: "\2612"; } Options - + Možnosti @@ -6159,12 +6164,12 @@ li.checked::marker { content: "\2612"; } Colors - + Barvy Remove - + Smazat @@ -6202,7 +6207,7 @@ li.checked::marker { content: "\2612"; } Certificate - + Certifikát @@ -6253,7 +6258,7 @@ li.checked::marker { content: "\2612"; } Dictionary - + Slovník @@ -6271,7 +6276,7 @@ li.checked::marker { content: "\2612"; } Indexing document contents... - + Indexuji obsah dokumentu... @@ -6279,7 +6284,7 @@ li.checked::marker { content: "\2612"; } Files - + Soubory @@ -6365,7 +6370,7 @@ li.checked::marker { content: "\2612"; } Password protected - + Chráněný heslem @@ -6519,7 +6524,7 @@ li.checked::marker { content: "\2612"; } Select Color - + Vybrat Barvu @@ -6540,7 +6545,7 @@ li.checked::marker { content: "\2612"; } Select Image - + Vybrat Obrázek @@ -6561,22 +6566,22 @@ li.checked::marker { content: "\2612"; } Qt - + LGPLv3 - + https://www.qt.io/ - + libjpeg - + @@ -6586,7 +6591,7 @@ li.checked::marker { content: "\2612"; } https://www.ijg.org/ - + @@ -6602,89 +6607,89 @@ li.checked::marker { content: "\2612"; } 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 - + podobné zlib https://zlib.net/ - + Blend2D - + https://blend2d.com/ - + @@ -7016,12 +7021,12 @@ li.checked::marker { content: "\2612"; } Page No. - + Číslo Stránky. Type - + Typ @@ -7037,7 +7042,7 @@ li.checked::marker { content: "\2612"; } Title - + Titulek @@ -7062,7 +7067,7 @@ li.checked::marker { content: "\2612"; } Active - + Aktivní @@ -7091,7 +7096,7 @@ li.checked::marker { content: "\2612"; } Edit Annotation - + Upravit Anotaci @@ -7245,27 +7250,27 @@ li.checked::marker { content: "\2612"; } General - + Obecný Type - + Typ Text - Text + Text Link - + Odkaz @@ -7274,7 +7279,7 @@ li.checked::marker { content: "\2612"; } Free text - + Volný text @@ -7288,7 +7293,7 @@ li.checked::marker { content: "\2612"; } Line - + Čára @@ -7300,7 +7305,7 @@ li.checked::marker { content: "\2612"; } Circle - + Kruh @@ -7322,7 +7327,7 @@ li.checked::marker { content: "\2612"; } Underline - + Podtrhnutí @@ -7345,7 +7350,7 @@ li.checked::marker { content: "\2612"; } Stamp - + Razítko @@ -7356,7 +7361,7 @@ li.checked::marker { content: "\2612"; } File attachment - + Příloha (se souborem) @@ -7366,7 +7371,7 @@ li.checked::marker { content: "\2612"; } Rectangle - + Obdélník @@ -7374,12 +7379,12 @@ li.checked::marker { content: "\2612"; } Contents - + Obsah Author - + Autor @@ -7395,7 +7400,7 @@ li.checked::marker { content: "\2612"; } Info - + Informace @@ -7405,24 +7410,24 @@ li.checked::marker { content: "\2612"; } Created - + Vytvořeno Options - + Možnosti Invisible - + Neviditelný Hidden - + Skrytý @@ -7479,23 +7484,23 @@ li.checked::marker { content: "\2612"; } Appearance - + Vzhled Colors - + Barvy Color - + Barva Interior color - + Barva výplně @@ -7535,18 +7540,18 @@ li.checked::marker { content: "\2612"; } Border - + Rámeček Border Style - + Styl rámečku Width - + Šířka @@ -7576,7 +7581,7 @@ li.checked::marker { content: "\2612"; } Dashed - + Čárkovaný @@ -7605,7 +7610,7 @@ li.checked::marker { content: "\2612"; } None - + Žádný @@ -7621,12 +7626,12 @@ li.checked::marker { content: "\2612"; } Comment - + Komentář Key - + Klíč @@ -7636,7 +7641,7 @@ li.checked::marker { content: "\2612"; } Help - + Nápověda @@ -7705,12 +7710,12 @@ li.checked::marker { content: "\2612"; } Line start - + Začátek čáry Line end - + Konec čáry @@ -7735,7 +7740,7 @@ li.checked::marker { content: "\2612"; } Dimension - + Kóta @@ -7745,7 +7750,7 @@ li.checked::marker { content: "\2612"; } Line dimension - + Liniová kóta @@ -7775,12 +7780,12 @@ li.checked::marker { content: "\2612"; } Name - + Jméno Image - + Obrázek @@ -7832,22 +7837,22 @@ li.checked::marker { content: "\2612"; } Left - + Vlevo Center - + Vycentrovaný Right - + Vpravo Diamond - + Diamant @@ -7857,7 +7862,7 @@ li.checked::marker { content: "\2612"; } Closed arrow - + Uzavřená šipka @@ -7885,7 +7890,7 @@ li.checked::marker { content: "\2612"; } custom - + uživatelská @@ -7893,7 +7898,7 @@ li.checked::marker { content: "\2612"; } Rectangle - + Obdélník @@ -7944,7 +7949,7 @@ li.checked::marker { content: "\2612"; } Item %1 - + Položka %1 @@ -7958,12 +7963,12 @@ li.checked::marker { content: "\2612"; } Dashed - + Čárkovaný Dotted - + Tečkovaný @@ -7983,7 +7988,7 @@ li.checked::marker { content: "\2612"; } Image - + Obrázek @@ -8003,7 +8008,7 @@ li.checked::marker { content: "\2612"; } Select Image - + Vybrat Obrázek @@ -8022,7 +8027,7 @@ li.checked::marker { content: "\2612"; } None - + Žádný @@ -8033,12 +8038,12 @@ li.checked::marker { content: "\2612"; } Dashed - + Čárkovaný Dotted - + Tečkovaný @@ -8053,12 +8058,12 @@ li.checked::marker { content: "\2612"; } Horizontal - + Vodorovný Vertical - + Svislý @@ -8073,27 +8078,27 @@ li.checked::marker { content: "\2612"; } Cross - + Křížový Edit Item - + Upravit Položku Content - + Obsah Appearance - + Vzhled Select Font - + Vybrat Font @@ -8288,7 +8293,7 @@ li.checked::marker { content: "\2612"; } Use key 'C' to show/hide large cross. - + Použijte klávesu 'C' pro zapnutí/vypnutí kříže. @@ -8361,12 +8366,12 @@ li.checked::marker { content: "\2612"; } Error - Chyba + Chyba Selected page range is empty. - + Vybraný rozsah stránek je prázdný. @@ -8374,7 +8379,7 @@ li.checked::marker { content: "\2612"; } Table region was selected. Use left/right mouse buttons to add/remove rows/columns, then use Enter key to copy the table. - + Vybraná oblast tabulky. Použijte levé/pravé tlačítko myši k přidání nebo odstranění řádků/sloupců, poté stiskněte Enter pro zkopírování tabulky. @@ -8400,7 +8405,7 @@ li.checked::marker { content: "\2612"; } Line - + Čára @@ -8415,7 +8420,7 @@ li.checked::marker { content: "\2612"; } Circle - + Kruh @@ -8435,7 +8440,7 @@ li.checked::marker { content: "\2612"; } Underline - + Podtrhnutí @@ -8450,7 +8455,7 @@ li.checked::marker { content: "\2612"; } Stamp - + Razítko @@ -8722,7 +8727,7 @@ li.checked::marker { content: "\2612"; } Difference - + Rozdíl @@ -8737,12 +8742,12 @@ li.checked::marker { content: "\2612"; } Saturation - + Saturační Color - + Barva @@ -8862,7 +8867,7 @@ li.checked::marker { content: "\2612"; } Page %1 - + Page %1 @@ -9183,7 +9188,7 @@ li.checked::marker { content: "\2612"; } Null - + Nic @@ -9193,42 +9198,42 @@ li.checked::marker { content: "\2612"; } Integer - + Celé číslo Real - + Reálné číslo String - + Řetězec Name - + Jméno Array - + Pole Dictionary - + Slovník Stream - + Proud dat Reference - + Odkaz @@ -10541,7 +10546,7 @@ li.checked::marker { content: "\2612"; } Invalid color space of the image. - + Neplatný barevný prostor obrázku. @@ -10825,7 +10830,7 @@ li.checked::marker { content: "\2612"; } Font - + Font @@ -10835,7 +10840,7 @@ li.checked::marker { content: "\2612"; } Yes - + Ano @@ -10886,7 +10891,7 @@ li.checked::marker { content: "\2612"; } None - + Žádný @@ -11042,7 +11047,7 @@ li.checked::marker { content: "\2612"; } Standard - + Standardní @@ -11276,7 +11281,7 @@ li.checked::marker { content: "\2612"; } Info - + Informace @@ -11296,7 +11301,7 @@ li.checked::marker { content: "\2612"; } Rectangle - + Obdélník @@ -11321,7 +11326,7 @@ li.checked::marker { content: "\2612"; } Image - + Obrázek @@ -11349,7 +11354,7 @@ li.checked::marker { content: "\2612"; } Annotation - + Anotace @@ -11443,7 +11448,7 @@ li.checked::marker { content: "\2612"; } Page %1 - + Page %1 @@ -11466,7 +11471,7 @@ li.checked::marker { content: "\2612"; } Difference - + Rozdíl @@ -11474,17 +11479,17 @@ li.checked::marker { content: "\2612"; } &Main - + &Hlavní &Differences - + &Rozdíly &View - + &Zobrazit @@ -11493,68 +11498,68 @@ li.checked::marker { content: "\2612"; } Error - Chyba + Chyba Info - + Informace No differences found between the compared documents. - + Nebyly nalezeny žádné rozdíly mezi zobrazenými dokumenty. Select PDF document - + Vybrat PDF dokument XML file (*.xml) - + XML soubor (*.xml) File '%1' cannot be opened. %2 - + Soubor '%1' není možné otevřít. %2 Save results to XML - + Uložit výsledky do XML Displayed results are empty. Cannot save empty results. - + Zobrazené výsledky jsou prázdné. Není možné uložit prázdné výsledky. Save As - + Uložit Jako Portable Document (*.pdf);;All files (*.*) - + Přenositelný Dokument (*.pdf);;Všechny soubory (*.*) PDF document (*.pdf) - + PDF dokument (*.pdf) Encrypted document - + Zašifrovaný dokument Enter password to access document content - + Vložte heslo pro přístup k obsahu dokumentu @@ -11585,7 +11590,7 @@ li.checked::marker { content: "\2612"; } S&ettings - + Nastav&ení @@ -11593,22 +11598,22 @@ li.checked::marker { content: "\2612"; } No Outline - + Žádný Obsah Join Outlines - + Spojit Obsahy Document Parts - + Části Dokumentů Select output directory - + Výběr výstupního adresáře @@ -11616,32 +11621,32 @@ li.checked::marker { content: "\2612"; } &Main - + &Hlavní &Insert - + Vloži&t &Select - + Vy&brat &Regroup - + Přes&kupit &Zoom - + Přiblížení Ma&ke - + Vy&tvořit @@ -11654,22 +11659,22 @@ li.checked::marker { content: "\2612"; } PDF document (*.pdf) - + PDF dokument (*.pdf) Select - + Vybrat Regroup - + Přeskupit Encrypted document - + Zašifrovaný dokument @@ -11684,7 +11689,7 @@ li.checked::marker { content: "\2612"; } Error - Chyba + Chyba @@ -11694,7 +11699,7 @@ li.checked::marker { content: "\2612"; } No documents to assemble. - + Žádné dokumenty pro sestavení. @@ -11709,12 +11714,12 @@ li.checked::marker { content: "\2612"; } Select Image(s) - + Vybrat obrázek/obrázky Select PDF document - + Vybrat PDF dokument @@ -11722,22 +11727,22 @@ li.checked::marker { content: "\2612"; } Library - Knihovna + Knihovna Version - Verze + Verze License - Licence + Licence URL - Odkaz + Odkaz @@ -11760,12 +11765,12 @@ li.checked::marker { content: "\2612"; } Image - + Obrázek Images - Obrázky + Obrázky @@ -12003,7 +12008,7 @@ li.checked::marker { content: "\2612"; } Audio Book Actions - + Audiokniha Akce @@ -12011,17 +12016,17 @@ li.checked::marker { content: "\2612"; } File Name - + Jméno souboru Error - Chyba + Chyba Cannot convert '%1' to color value. - + Nelze převést '%1' na barvu. @@ -12029,72 +12034,72 @@ li.checked::marker { content: "\2612"; } &Horizontal Dimension - + &Vodorovná kóta &Vertical Dimension - + Svislá &kóta &Linear Dimension - + &Liniová kóta &Perimeter - + &Obvod &Rectangle Perimeter - + Obvod o&bdélníka &Area - + &Plocha R&ectangle Area - + Ploc&ha obdélníka An&gle - + Ú&hel &Show Dimensions - + &Zobrazid kóty &Clear Dimensions - + S&mazat kóty Se&ttings - + &Nastavení &Dimensions - + Kót&y A = %1 %2 - + p = %1 %2 - + @@ -12200,22 +12205,22 @@ li.checked::marker { content: "\2612"; } Total - + Celkem Page Index - + Index Stránky [ mm² ] - + [ % ] - + @@ -12263,12 +12268,12 @@ li.checked::marker { content: "\2612"; } Forms - + Formuláře Fonts - + Fonty @@ -12291,17 +12296,17 @@ li.checked::marker { content: "\2612"; } Object &Inspector - + Proh&lížeč Objektů Object &Statistics - + &Statistika Objektů O&bject Inspector - + Prohlížeč O&bjektů @@ -12309,23 +12314,23 @@ li.checked::marker { content: "\2612"; } Statistics by Object Function - + Statistika dle Funkce Objektu Statistics by Object Type - + Statistika dle Typů Objektů Statistics by Object Class - + Statistika dle Třídy Objektu Class - + Třída @@ -12347,12 +12352,12 @@ li.checked::marker { content: "\2612"; } Page - Stránka + Stránka Content Stream - + Proud dat obsahu @@ -12362,52 +12367,52 @@ li.checked::marker { content: "\2612"; } Color Space - + Barevný prostor Pattern - + Vzor Shading - + Stínování Image - + Obrázek Form - Formulář + Formulář Font - + Font Action - + Akce Annotation - + Anotace Other - + Jiné Type - + Typ @@ -12416,117 +12421,117 @@ li.checked::marker { content: "\2612"; } %1 %2 R - + Part of object %1 - + Část objektu %1 <none> - + <žádný> Null - + Nic Bool - + Boolean Integer - + Celé číslo Real - + Reálné číslo String - + Řetězec Name - + Jméno Array - + Pole Dictionary - + Slovník Stream - + Proud dat Reference - + Odkaz null - + nic true - + ano false - + ne Array [%1 items] - + Pole [%1 položek] Dictionary [%1 items] - + Slovník [%1 položek] Stream [%1 items, %2 data bytes] - + Proud dat [%1 položek, %2 bajtů] Invalid color space of the image. - + Neplatný barevný prostor obrázku. Image Stream [%1 items, %2 data bytes, %3 x %4 pixels, %5 bits per component] - + Obrázek [%1 položek, %2 bajtů, %3 x %4 pixelů, %5 bitů komponenty barvy] [Unknown] - + [Neznámý] %1 (part) - + %1 (část) @@ -12650,32 +12655,32 @@ li.checked::marker { content: "\2612"; } null - + nic true - + ano false - + ne Array [%1 items] - + Pole [%1 položek] Dictionary [%1 items] - + Slovník [%1 položek] Stream [%1 items, %2 data bytes] - + Proud dat [%1 položek, %2 bajtů] @@ -12683,17 +12688,17 @@ li.checked::marker { content: "\2612"; } Redact &Rectangle - + &Redigovat obdélník Redact &Text - + Redigovat &text Redact Text &Selection - + Redigovat výběr te&xtu @@ -12703,17 +12708,17 @@ li.checked::marker { content: "\2612"; } Create Redacted &Document - + Vytvořit redigovaný &dokument Redac&t - + Redigova&t Information - + Informace @@ -12723,7 +12728,7 @@ li.checked::marker { content: "\2612"; } Redact Pages - + Redigovat stránky @@ -12733,7 +12738,7 @@ li.checked::marker { content: "\2612"; } Error - Chyba + Chyba @@ -12752,17 +12757,17 @@ li.checked::marker { content: "\2612"; } Error - Chyba + Chyba Certificate does not exist. - + Certifikát neexistuje. Password to open certificate is invalid. - + Heslo pro otevření certifikátu není platné. @@ -12884,7 +12889,7 @@ li.checked::marker { content: "\2612"; } Portable Document (*.pdf);;All files (*.*) - + Přenositelný Dokument (*.pdf);;Všechny soubory (*.*) @@ -12920,7 +12925,7 @@ li.checked::marker { content: "\2612"; } Toggle this icon to switch image conversion to bitonal format on or off. - + Přepněte tuto ikonu pro zapnutí nebo vypnutí převodu obrázku do dvoubarevného formátu. @@ -12951,7 +12956,7 @@ li.checked::marker { content: "\2612"; } Find action... - + Najít akci... @@ -12959,37 +12964,37 @@ li.checked::marker { content: "\2612"; } Page No. - + Číslo Stránky. Phrase - + Věta Context - + Kontext Search error - + Chyba hledání Search phrase regular expression has error '%1' near symbol %2. - + Regulární výraz hledaného textu je chybný '%1' blízko části %2. Results (%1) - + Výsledky (%1) Results - Výsledky + Výsledky @@ -12997,12 +13002,12 @@ li.checked::marker { content: "\2612"; } Page %1 | Generated - + Stránka %1 | Vytvořeno automaticky Page %1 - + Page %1 @@ -13010,7 +13015,7 @@ li.checked::marker { content: "\2612"; } User bookmark for page %1 - + Uživatelská záložka pro stránku %1 @@ -13018,22 +13023,22 @@ li.checked::marker { content: "\2612"; } ORIGINAL - + ORIGINÁLNÍ BITONAL - + DVOUBAREVNÝ Perform - + Provést Converting images... - + Konvertuji obrázky... @@ -13041,7 +13046,7 @@ li.checked::marker { content: "\2612"; } Properties - + Vlastnosti @@ -13051,7 +13056,7 @@ li.checked::marker { content: "\2612"; } Title - + Nadpis @@ -13061,7 +13066,7 @@ li.checked::marker { content: "\2612"; } Author - + Autor @@ -13097,7 +13102,7 @@ li.checked::marker { content: "\2612"; } Yes - + Ano @@ -13117,7 +13122,7 @@ li.checked::marker { content: "\2612"; } Content - + Obsah @@ -13152,7 +13157,7 @@ li.checked::marker { content: "\2612"; } Name - + Jméno @@ -13167,7 +13172,7 @@ li.checked::marker { content: "\2612"; } Size - + Velikost @@ -13182,19 +13187,19 @@ li.checked::marker { content: "\2612"; } Security - + Zabezpečení None - + Žádný Standard - + Standardní @@ -13239,22 +13244,22 @@ li.checked::marker { content: "\2612"; } Version - Verze + Verze Permissions - + Práva Print (low resolution) - + Tísk (nízké rozlišení) Print (high resolution) - + Tisk (vysoké rozlišení) @@ -13314,7 +13319,7 @@ li.checked::marker { content: "\2612"; } Type - + Typ @@ -13458,12 +13463,12 @@ li.checked::marker { content: "\2612"; } Standard - + Standardní % - + @@ -13473,17 +13478,17 @@ li.checked::marker { content: "\2612"; } Advanced find - + Pokročilé hledání Ad&vanced Find... - + Po&kročilé hledání... / %1 - + @@ -13491,32 +13496,32 @@ li.checked::marker { content: "\2612"; } None - + Žádný RC4 128-bit | R4 - + RC4 128-bitový | R4 AES 128-bit | R4 - + AES 128-bitový | R4 AES 256-bit | R6 - + AES 256-bitový | R6 Certificate Encryption - + Šifrovat certifikátem Error - Chyba + Chyba @@ -13524,27 +13529,27 @@ li.checked::marker { content: "\2612"; } Very weak - + Velmi slabé Weak - + Slabé Moderate - + Průměrné Strong - + Silné Very strong - + Velmi silné @@ -13680,12 +13685,12 @@ li.checked::marker { content: "\2612"; } Save As - + Uložit Jako Portable Document (*.pdf);;All files (*.*) - + Přenositelný Dokument (*.pdf);;Všechny soubory (*.*) @@ -13727,12 +13732,12 @@ li.checked::marker { content: "\2612"; } Encrypted document - + Zašifrovaný dokument Enter password to access document content - + Vložte heslo pro přístup k obsahu dokumentu @@ -13768,7 +13773,7 @@ li.checked::marker { content: "\2612"; } Plugins - + Přídavné moduly @@ -13779,12 +13784,12 @@ li.checked::marker { content: "\2612"; } Select PDF document - + Vybrat PDF dokument PDF document (*.pdf) - + PDF dokument (*.pdf) @@ -13812,12 +13817,12 @@ li.checked::marker { content: "\2612"; } (&%1) %2 - + Recent file dummy &%1 - + Nedávný soubor &%1 @@ -13826,12 +13831,13 @@ li.checked::marker { content: "\2612"; } %1 Page %2: %3 - + %1 +Stránka %2: %3 Select output directory - + Výběr výstupního adresáře @@ -13841,7 +13847,7 @@ Page %2: %3 Error - Chyba + Chyba @@ -14006,12 +14012,12 @@ Page %2: %3 Country - + Stát Organization - + Organizace @@ -14021,7 +14027,7 @@ Page %2: %3 Name - + Jméno @@ -14041,7 +14047,7 @@ Page %2: %3 Title - + Titulek @@ -14071,7 +14077,7 @@ Page %2: %3 Email - + Email @@ -14131,12 +14137,12 @@ Page %2: %3 User - + Uživatelský Page %1 - + Page %1 @@ -14285,12 +14291,12 @@ Page %2: %3 Standard - + Standardní % - + @@ -14300,7 +14306,7 @@ Page %2: %3 / %1 - + @@ -14308,22 +14314,22 @@ Page %2: %3 Engine - + Stroj Rendering - + Vykreslování Shading - + Stínování Cache - + Keš @@ -14333,237 +14339,267 @@ Page %2: %3 Colors | CMS - + Barvy | Správce Colors | Postprocessing - + Barvy | Postprodukce Security - + Bezpečnost UI - + Uživatelské rozhraní Speech - Číst nahlas + Číst nahlas Forms - + Formuláře Signature - + Podepisování Plugins - + Přídavné moduly Software | QPainter - + Software | QPainter Software | Blend2D | Parallel - + Software | Blend2D | Vícevláknový Software | Blend2D | Sequential - + Software | Blend2D | Jednovláknový Single thread - + Jednovláknový Multithreading (load balanced) - + Vícevláknový (balancovaný) Multithreading (maximum threads) - + Vícevláknový (maximální výkon) Auto - + Automaticky Perceptual - + Percepční Relative colorimetric - + Relativně kolorimetrický Absolute colorimetric - + Absolutně kolorimetrický Saturation - + Saturační Low - + Nízká Medium - + Střední High - + Vysoká None - + Žádný XYZ scaling - + XYZ škálování CAT97 matrix - + CAT97 matice CAT02 matrix - + CAT02 matice Bradford method - + Bradforda metoda Automatic (or via command line) - + Automaticky (nebo skrz příkazovou řádku) Light scheme - + Světlé schéma Dark scheme - + Tmavé schéma - + + Automatic detection + Automatická detekce + + + + English + Angličtina + + + + German + Němčina + + + + Korean + Korejština + + + + Spanish + Španělština + + + + Czech + Čeština + + + Type - + Typ - + Certificate - + Certifikát - + Organization - + Organizace - + Valid from - + Platný od - + Valid to - + Platný do - + User - + Uživatelský - + System - + Systémový - + Action - + Akce - + Shortcut - + Zkratka - + Error - Chyba + Chyba - + Shortcut '%1' is invalid for action %2. - + Klávesová zkratka '%1' není platná pro akci %2. - + Active - + Aktivní - + Name - + Jméno - + Author - + Autor - + Version - Verze + Verze - + License Licence - + Select color profile directory - + Vybrat adresář s barevnými profily diff --git a/translations/PDF4QT_de.ts b/translations/PDF4QT_de.ts index e96b2d1..e482266 100644 --- a/translations/PDF4QT_de.ts +++ b/translations/PDF4QT_de.ts @@ -5528,14 +5528,14 @@ - - - - - - - - + + + + + + + + Enable @@ -5853,52 +5853,57 @@ li.checked::marker { content: "\2612"; } - + 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) - + + Language + + + + <!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; } @@ -5912,42 +5917,42 @@ li.checked::marker { content: "\2612"; } - + 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; } @@ -5959,22 +5964,22 @@ li.checked::marker { content: "\2612"; } - + 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; } @@ -5986,47 +5991,47 @@ li.checked::marker { content: "\2612"; } - + 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 @@ -14481,87 +14486,117 @@ Page %2: %3 - + + Automatic detection + + + + + English + + + + + German + + + + + Korean + + + + + Spanish + + + + + Czech + + + + 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 index 268e0b5..f84b0cd 100644 --- a/translations/PDF4QT_en.ts +++ b/translations/PDF4QT_en.ts @@ -5528,14 +5528,14 @@ - - - - - - - - + + + + + + + + Enable @@ -5853,52 +5853,57 @@ li.checked::marker { content: "\2612"; } - + 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) - + + Language + + + + <!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; } @@ -5912,42 +5917,42 @@ li.checked::marker { content: "\2612"; } - + 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; } @@ -5959,22 +5964,22 @@ li.checked::marker { content: "\2612"; } - + 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; } @@ -5986,47 +5991,47 @@ li.checked::marker { content: "\2612"; } - + 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 @@ -14481,87 +14486,117 @@ Page %2: %3 - + + Automatic detection + + + + + English + + + + + German + + + + + Korean + + + + + Spanish + + + + + Czech + + + + 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 index 20450bd..dcff7cb 100644 --- a/translations/PDF4QT_es.ts +++ b/translations/PDF4QT_es.ts @@ -5528,14 +5528,14 @@ - - - - - - - - + + + + + + + + Enable @@ -5853,52 +5853,57 @@ li.checked::marker { content: "\2612"; } - + 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) - + + Language + + + + <!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; } @@ -5912,42 +5917,42 @@ li.checked::marker { content: "\2612"; } - + 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; } @@ -5959,22 +5964,22 @@ li.checked::marker { content: "\2612"; } - + 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; } @@ -5986,47 +5991,47 @@ li.checked::marker { content: "\2612"; } - + 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 @@ -14481,87 +14486,117 @@ Page %2: %3 - + + Automatic detection + + + + + English + + + + + German + + + + + Korean + + + + + Spanish + + + + + Czech + + + + 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 index c08e018..e32de2a 100644 --- a/translations/PDF4QT_ko.ts +++ b/translations/PDF4QT_ko.ts @@ -5528,14 +5528,14 @@ - - - - - - - - + + + + + + + + Enable @@ -5853,52 +5853,57 @@ li.checked::marker { content: "\2612"; } - + 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) - + + Language + + + + <!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; } @@ -5912,42 +5917,42 @@ li.checked::marker { content: "\2612"; } - + 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; } @@ -5959,22 +5964,22 @@ li.checked::marker { content: "\2612"; } - + 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; } @@ -5986,47 +5991,47 @@ li.checked::marker { content: "\2612"; } - + 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 @@ -14481,87 +14486,117 @@ Page %2: %3 - + + Automatic detection + + + + + English + + + + + German + + + + + Korean + + + + + Spanish + + + + + Czech + + + + 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