diff options
author | Saturneric <[email protected]> | 2021-07-19 19:05:27 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-07-19 19:05:27 +0000 |
commit | b18f63a1463172fbbcc42ed0219fcb8307be5d33 (patch) | |
tree | 6fc577b9305bc8fa603f71cf994b9572155cebcf /src/ui/keypair_details/KeyPairUIDTab.cpp | |
parent | Improved and Modified. (diff) | |
download | GpgFrontend-b18f63a1463172fbbcc42ed0219fcb8307be5d33.tar.gz GpgFrontend-b18f63a1463172fbbcc42ed0219fcb8307be5d33.zip |
Add simplified Chinese translation.
Repair and adjustment.
Diffstat (limited to 'src/ui/keypair_details/KeyPairUIDTab.cpp')
-rw-r--r-- | src/ui/keypair_details/KeyPairUIDTab.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/keypair_details/KeyPairUIDTab.cpp b/src/ui/keypair_details/KeyPairUIDTab.cpp index 2a84cef4..2954aadb 100644 --- a/src/ui/keypair_details/KeyPairUIDTab.cpp +++ b/src/ui/keypair_details/KeyPairUIDTab.cpp @@ -56,7 +56,7 @@ KeyPairUIDTab::KeyPairUIDTab(GpgME::GpgContext *ctx, const GpgKey &key, QWidget auto uidGroupBox = new QGroupBox(); uidGroupBox->setLayout(gridLayout); - uidGroupBox->setTitle("UIDs"); + uidGroupBox->setTitle(tr("UIDs")); auto signGridLayout = new QGridLayout(); signGridLayout->addWidget(sigList, 0, 0); @@ -64,7 +64,7 @@ KeyPairUIDTab::KeyPairUIDTab(GpgME::GpgContext *ctx, const GpgKey &key, QWidget auto signGroupBox = new QGroupBox(); signGroupBox->setLayout(signGridLayout); - signGroupBox->setTitle("Signature of Selected UID"); + signGroupBox->setTitle(tr("Signature of Selected UID")); auto vboxLayout = new QVBoxLayout(); vboxLayout->addWidget(uidGroupBox); |