Skip to content

Commit ec11010

Browse files
committed
fix(ui): update loading message in progress dialog
* Change loading message to "Loading Essential Info..." * Provide clearer instructions for users on waiting time
1 parent 37e82e1 commit ec11010

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

src/ui/GpgFrontendUIInit.cpp

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,10 @@ void WaitEnvCheckingProcess() {
6161
progress_dialog->setMinimum(0);
6262

6363
auto* waiting_dialog_label = new QLabel(
64-
QCoreApplication::tr("Loading GnuPG Info...") + "<br /><br />" +
64+
QCoreApplication::tr("Loading Essential Info...") + "<br /><br />" +
6565
QCoreApplication::tr(
66-
"If this process is too slow, please set the key "
67-
"server address appropriately in the gnupg configuration "
68-
"file (depending "
69-
"on the network situation in your country or region)."));
66+
"This may take a few seconds or minutes according to your default "
67+
"openpgp engine, please wait patiently."));
7068

7169
waiting_dialog_label->setWordWrap(true);
7270
progress_dialog->setLabel(waiting_dialog_label);

0 commit comments

Comments
 (0)