aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/SettingsDialog.cpp
diff options
context:
space:
mode:
authorSaturn&Eric <[email protected]>2021-07-19 20:13:05 +0000
committerGitHub <[email protected]>2021-07-19 20:13:05 +0000
commit837e9748bb6bc5b3255b0475b8bbb3106e061b9c (patch)
tree67acd04b79d0ce779fc2ade5bb3e43a872f660cd /src/ui/SettingsDialog.cpp
parentMerge pull request #13 from saturneric/develop (diff)
parentAdd multi-language support. (diff)
downloadGpgFrontend-837e9748bb6bc5b3255b0475b8bbb3106e061b9c.tar.gz
GpgFrontend-837e9748bb6bc5b3255b0475b8bbb3106e061b9c.zip
Merge pull request #14 from saturneric/developv1.2.2
Version 1.2.2
Diffstat (limited to '')
-rwxr-xr-xsrc/ui/SettingsDialog.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/SettingsDialog.cpp b/src/ui/SettingsDialog.cpp
index d0a107c4..1732d718 100755
--- a/src/ui/SettingsDialog.cpp
+++ b/src/ui/SettingsDialog.cpp
@@ -498,7 +498,7 @@ AppearanceTab::AppearanceTab(QWidget *parent)
infoBoardFontSizeSpin->setRange(9, 18);
infoBoardFontSizeSpin->setValue(10);
infoBoardFontSizeSpin->setSingleStep(1);
- infoBoardLayout->addWidget(new QLabel(" Front Size"));
+ infoBoardLayout->addWidget(new QLabel(tr(" Front Size")));
infoBoardLayout->addWidget(infoBoardFontSizeSpin);
infoBoardBox->setLayout(infoBoardLayout);
@@ -604,7 +604,7 @@ KeyserverTab::KeyserverTab(QWidget *parent)
auto *mainLayout = new QVBoxLayout(this);
- auto *label = new QLabel(tr("Default Keyserver for import:"));
+ auto *label = new QLabel(tr("Default Key Server for import:"));
comboBox = new QComboBox;
comboBox->setEditable(false);
comboBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Preferred);