Merge remote-tracking branch 'origin/main' into develop
This commit is contained in:
commit
773b06ecc2
@ -33,7 +33,7 @@ GpgFrontend is **PERMANENTLY FREE** of charge. However, you can support us by
|
|||||||
- [Developer Document](#developer-document)
|
- [Developer Document](#developer-document)
|
||||||
- [Language Support](#language-support)
|
- [Language Support](#language-support)
|
||||||
- [Supported Languages](#supported-languages)
|
- [Supported Languages](#supported-languages)
|
||||||
- [Contract](#contract)
|
- [Contact](#contact)
|
||||||
- [Contributing \& Bugs Report](#contributing--bugs-report)
|
- [Contributing \& Bugs Report](#contributing--bugs-report)
|
||||||
- [Project Maintainer](#project-maintainer)
|
- [Project Maintainer](#project-maintainer)
|
||||||
- [Project's Logo](#projects-logo)
|
- [Project's Logo](#projects-logo)
|
||||||
@ -69,9 +69,9 @@ GpgFrontend currently supports an array of languages including:
|
|||||||
|
|
||||||
Contributors: [SHOW](TRANSLATORS)
|
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
|
### Contributing & Bugs Report
|
||||||
|
|
||||||
|
@ -72,15 +72,14 @@ IntroPage::IntroPage(QWidget* parent) : QWizardPage(parent) {
|
|||||||
setSubTitle(tr("... with GpgFrontend"));
|
setSubTitle(tr("... with GpgFrontend"));
|
||||||
|
|
||||||
auto* top_label = new QLabel(
|
auto* top_label = new QLabel(
|
||||||
tr("Welcome to use GpgFrontend for decrypting and signing text or "
|
tr("Welcome to GpgFrontend for decrypting and signing text or files!") +
|
||||||
"file!") +
|
|
||||||
" <br><br><a href='https://gpgfrontend.bktus.com'>GpgFrontend</a> " +
|
" <br><br><a href='https://gpgfrontend.bktus.com'>GpgFrontend</a> " +
|
||||||
tr("is a Powerful, Easy-to-Use, Compact, Cross-Platform, and "
|
tr("is a Powerful, Easy-to-Use, Compact, Cross-Platform, and "
|
||||||
"Installation-Free OpenPGP Crypto Tool.") +
|
"Installation-Free OpenPGP Crypto Tool. ") +
|
||||||
tr("For brief information have a look at the") +
|
tr("To get started, be sure to check out the") +
|
||||||
" <a href='https://gpgfrontend.bktus.com/index.html#/overview'>" +
|
" <a href='https://gpgfrontend.bktus.com/overview/glance'>" +
|
||||||
tr("Overview") + "</a> (" +
|
tr("Overview") + "</a> (" +
|
||||||
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") +
|
||||||
"). <br>");
|
"). <br>");
|
||||||
top_label->setTextFormat(Qt::RichText);
|
top_label->setTextFormat(Qt::RichText);
|
||||||
top_label->setTextInteractionFlags(Qt::TextBrowserInteraction);
|
top_label->setTextInteractionFlags(Qt::TextBrowserInteraction);
|
||||||
@ -111,8 +110,7 @@ ChoosePage::ChoosePage(QWidget* parent) : QWizardPage(parent) {
|
|||||||
auto* keygen_label = new QLabel(
|
auto* keygen_label = new QLabel(
|
||||||
tr("If you have never used GpgFrontend before and also don't own a gpg "
|
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") +
|
"key yet you may possibly want to read how to") +
|
||||||
" <a href=\"https://gpgfrontend.bktus.com/index.html#/basic/"
|
" <a href=\"https://gpgfrontend.bktus.com/guides/generate-key\">" +
|
||||||
"generate-key\">" +
|
|
||||||
tr("Generate Key") + "</a><hr>");
|
tr("Generate Key") + "</a><hr>");
|
||||||
keygen_label->setTextFormat(Qt::RichText);
|
keygen_label->setTextFormat(Qt::RichText);
|
||||||
keygen_label->setTextInteractionFlags(Qt::TextBrowserInteraction);
|
keygen_label->setTextInteractionFlags(Qt::TextBrowserInteraction);
|
||||||
@ -122,13 +120,9 @@ ChoosePage::ChoosePage(QWidget* parent) : QWizardPage(parent) {
|
|||||||
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, "
|
tr("If you want to learn how to encrypt, decrypt, sign and verify text, "
|
||||||
"you can read ") +
|
"you can read ") +
|
||||||
"<a "
|
"<a href=\"https://gpgfrontend.bktus.com/guides/encrypt-decrypt-text\">" +
|
||||||
"href=\"https://gpgfrontend.bktus.com/index.html#/basic/"
|
|
||||||
"encrypt-decrypt-text\">" +
|
|
||||||
tr("Encrypt & Decrypt Text") + "</a> " + tr("or") +
|
tr("Encrypt & Decrypt Text") + "</a> " + tr("or") +
|
||||||
" <a "
|
" <a href=\"https://gpgfrontend.bktus.com/guides/sign-verify-text\">" +
|
||||||
"href=\"https://gpgfrontend.bktus.com/index.html#/basic/"
|
|
||||||
"sign-verify-text\">" +
|
|
||||||
tr("Sign & Verify Text") + "</a><hr>");
|
tr("Sign & Verify Text") + "</a><hr>");
|
||||||
|
|
||||||
encr_decy_text_label->setTextFormat(Qt::RichText);
|
encr_decy_text_label->setTextFormat(Qt::RichText);
|
||||||
@ -136,16 +130,12 @@ ChoosePage::ChoosePage(QWidget* parent) : QWizardPage(parent) {
|
|||||||
encr_decy_text_label->setOpenExternalLinks(true);
|
encr_decy_text_label->setOpenExternalLinks(true);
|
||||||
encr_decy_text_label->setWordWrap(true);
|
encr_decy_text_label->setWordWrap(true);
|
||||||
|
|
||||||
auto* sign_verify_text_label =
|
auto* sign_verify_text_label = new QLabel(
|
||||||
new QLabel(tr("If you want to operate file, you can read ") +
|
tr("If you want to operate file, you can read ") +
|
||||||
"<a "
|
"<a href=\"https://gpgfrontend.bktus.com/guides/encrypt-decrypt-file\">" +
|
||||||
"href=\"https://gpgfrontend.bktus.com/index.html#/basic/"
|
tr("Encrypt & Sign File") + "</a> " + tr("or") +
|
||||||
"encrypt-decrypt-file\">" +
|
" <a href=\"https://gpgfrontend.bktus.com/guides/sign-verify-file\">" +
|
||||||
tr("Encrypt & Sign File") + "</a> " + tr("or") +
|
tr("Sign & Verify File") + "</a><hr>");
|
||||||
" <a "
|
|
||||||
"href=\"https://gpgfrontend.bktus.com/index.html#/basic/"
|
|
||||||
"sign-verify-file\">" +
|
|
||||||
tr("Sign & Verify File") + "</a><hr>");
|
|
||||||
sign_verify_text_label->setTextFormat(Qt::RichText);
|
sign_verify_text_label->setTextFormat(Qt::RichText);
|
||||||
sign_verify_text_label->setTextInteractionFlags(Qt::TextBrowserInteraction);
|
sign_verify_text_label->setTextInteractionFlags(Qt::TextBrowserInteraction);
|
||||||
sign_verify_text_label->setOpenExternalLinks(true);
|
sign_verify_text_label->setOpenExternalLinks(true);
|
||||||
@ -162,9 +152,9 @@ ChoosePage::ChoosePage(QWidget* parent) : QWizardPage(parent) {
|
|||||||
int ChoosePage::nextId() const { return next_page_; }
|
int ChoosePage::nextId() const { return next_page_; }
|
||||||
|
|
||||||
void ChoosePage::slot_jump_page(const QString& page) {
|
void ChoosePage::slot_jump_page(const QString& page) {
|
||||||
QMetaObject qmo = Wizard::staticMetaObject;
|
QMetaObject const qmo = Wizard::staticMetaObject;
|
||||||
int index = qmo.indexOfEnumerator("WizardPages");
|
int const index = qmo.indexOfEnumerator("WizardPages");
|
||||||
QMetaEnum m = qmo.enumerator(index);
|
QMetaEnum const m = qmo.enumerator(index);
|
||||||
|
|
||||||
next_page_ = m.keyToValue(page.toUtf8().data());
|
next_page_ = m.keyToValue(page.toUtf8().data());
|
||||||
wizard()->next();
|
wizard()->next();
|
||||||
@ -216,9 +206,7 @@ ConclusionPage::ConclusionPage(QWidget* parent) : QWizardPage(parent) {
|
|||||||
|
|
||||||
auto* bottom_label = new QLabel(
|
auto* bottom_label = new QLabel(
|
||||||
tr("You are ready to use GpgFrontend now.<br><br>") +
|
tr("You are ready to use GpgFrontend now.<br><br>") +
|
||||||
"<a "
|
"<a href=\"https://gpgfrontend.bktus.com/guides/understand-interface\">" +
|
||||||
"href=\"https://gpgfrontend.bktus.com/basic/understand-interface"
|
|
||||||
"overview\">" +
|
|
||||||
tr("The Online Document") + "</a>" +
|
tr("The Online Document") + "</a>" +
|
||||||
tr(" will get you started with GpgFrontend. Anytime you encounter "
|
tr(" will get you started with GpgFrontend. Anytime you encounter "
|
||||||
"problems, please try to find help from the documentation") +
|
"problems, please try to find help from the documentation") +
|
||||||
@ -232,7 +220,8 @@ ConclusionPage::ConclusionPage(QWidget* parent) : QWizardPage(parent) {
|
|||||||
open_help_check_box_ = new QCheckBox(tr("Open offline help."));
|
open_help_check_box_ = new QCheckBox(tr("Open offline help."));
|
||||||
open_help_check_box_->setChecked(true);
|
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);
|
dont_show_wizard_checkbox_->setChecked(true);
|
||||||
|
|
||||||
registerField("showWizard", dont_show_wizard_checkbox_);
|
registerField("showWizard", dont_show_wizard_checkbox_);
|
||||||
|
Loading…
Reference in New Issue
Block a user