From 4c6ac54dd2ba0f9ac8a0bef48ec35cc123e31471 Mon Sep 17 00:00:00 2001 From: jermanuts <109705802+jermanuts@users.noreply.github.com> Date: Sun, 24 Mar 2024 23:15:28 +0300 Subject: [PATCH 1/3] Rename contract.md to contact.md --- manual/{contract.md => contact.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename manual/{contract.md => contact.md} (100%) diff --git a/manual/contract.md b/manual/contact.md similarity index 100% rename from manual/contract.md rename to manual/contact.md From 0318347d31f848c6e80eb406d1b189283de956c0 Mon Sep 17 00:00:00 2001 From: jermanuts <109705802+jermanuts@users.noreply.github.com> Date: Sun, 24 Mar 2024 23:17:15 +0300 Subject: [PATCH 2/3] fix typo contract -> contact --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ee652366..a24c85c3 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ GpgFrontend is **PERMANENTLY FREE** of charge. However, you can support us by - [Developer Document](#developer-document) - [Language Support](#language-support) - [Supported Languages](#supported-languages) - - [Contract](#contract) + - [Contact](#contact) - [Contributing \& Bugs Report](#contributing--bugs-report) - [Project Maintainer](#project-maintainer) - [Project's Logo](#projects-logo) @@ -69,9 +69,9 @@ GpgFrontend currently supports an array of languages including: Contributors: [SHOW](TRANSLATORS) -## Contract +## Contact -Please refer to [HERE](https://www.gpgfrontend.bktus.com/#/contract) for my contact details. +Please refer to [HERE](https://www.gpgfrontend.bktus.com/contact) for my contact details. ### Contributing & Bugs Report From 4c964ccd8fae018c9f0eb582416215d313a4be05 Mon Sep 17 00:00:00 2001 From: jermanuts <109705802+jermanuts@users.noreply.github.com> Date: Sun, 7 Apr 2024 16:01:31 +0300 Subject: [PATCH 3/3] Update installation wizard links Reflects to the new docs links. Please let me know if it work correctly on your build. --- src/ui/dialog/Wizard.cpp | 39 ++++++++++++++------------------------- 1 file changed, 14 insertions(+), 25 deletions(-) diff --git a/src/ui/dialog/Wizard.cpp b/src/ui/dialog/Wizard.cpp index b6fa53f3..8b15e9b7 100644 --- a/src/ui/dialog/Wizard.cpp +++ b/src/ui/dialog/Wizard.cpp @@ -76,15 +76,15 @@ IntroPage::IntroPage(QWidget* parent) : QWizardPage(parent) { auto* topLabel = new QLabel( QString( - tr("Welcome to use GpgFrontend for decrypting and signing text or " - "file!")) + + tr("Welcome to GpgFrontend for decrypting and signing text or " + "files!")) + "

GpgFrontend " + tr("is a Powerful, Easy-to-Use, Compact, Cross-Platform, and " - "Installation-Free OpenPGP Crypto Tool.") + - tr("For brief information have a look at the") + - " " + + "Installation-Free OpenPGP Crypto Tool. ") + + tr("To get started, be sure to check out the") + + " " + tr("Overview") + " (" + - tr("by clicking the link, the page will open in the web browser") + + tr("by clicking the link, the page will open in your web browser") + ").
"); topLabel->setTextFormat(Qt::RichText); topLabel->setTextInteractionFlags(Qt::TextBrowserInteraction); @@ -115,24 +115,19 @@ ChoosePage::ChoosePage(QWidget* parent) : QWizardPage(parent) { auto* keygen_label = new QLabel( tr("If you have never used GpgFrontend before and also don't own a gpg " "key yet you may possibly want to read how to") + - " " + + " " + tr("Generate Key") + "
"); keygen_label->setTextFormat(Qt::RichText); keygen_label->setTextInteractionFlags(Qt::TextBrowserInteraction); keygen_label->setOpenExternalLinks(true); keygen_label->setWordWrap(true); - auto* encr_decy_text_label = new QLabel( + auto* encr_decy_text_label = new QLabel( tr("If you want to learn how to encrypt, decrypt, sign and verify text, " "you can read ") + - "" + + "" + tr("Encrypt & Decrypt Text") + " " + tr("or") + - " " + + " " + tr("Sign & Verify Text") + "
"); encr_decy_text_label->setTextFormat(Qt::RichText); @@ -142,13 +137,9 @@ ChoosePage::ChoosePage(QWidget* parent) : QWizardPage(parent) { auto* sign_verify_text_label = new QLabel(tr("If you want to operate file, you can read ") + - "" + + "" + tr("Encrypt & Sign File") + " " + tr("or") + - " " + + " " + tr("Sign & Verify File") + "
"); sign_verify_text_label->setTextFormat(Qt::RichText); sign_verify_text_label->setTextInteractionFlags(Qt::TextBrowserInteraction); @@ -220,9 +211,7 @@ ConclusionPage::ConclusionPage(QWidget* parent) : QWizardPage(parent) { auto* bottom_label = new QLabel( tr("You are ready to use GpgFrontend now.

") + - "" + + "" + tr("The Online Document") + "" + tr(" will get you started with GpgFrontend. Anytime you encounter " "problems, please try to find help from the documentation") + @@ -236,7 +225,7 @@ ConclusionPage::ConclusionPage(QWidget* parent) : QWizardPage(parent) { open_help_check_box_ = new QCheckBox(tr("Open offline help.")); open_help_check_box_->setChecked(true); - dont_show_wizard_checkbox_ = new QCheckBox(tr("Dont show the wizard again.")); + dont_show_wizard_checkbox_ = new QCheckBox(tr("Don't show the wizard again.")); dont_show_wizard_checkbox_->setChecked(true); registerField("showWizard", dont_show_wizard_checkbox_);