[pim/korganizer] plugins/lunarphases: .../lunarphases/configdialog.cpp - fix tooltip for southern hemisphere
Allen Winter <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 94ff2c5e86f308b8c71b3e96a59b58f2c9cc150d by Allen Winter.
Committed on 06/08/2026 at 14:19.
Pushed by winterz into branch 'master'.
.../lunarphases/configdialog.cpp - fix tooltip for southern hemisphere
M +1 -1 plugins/lunarphases/configdialog.cpp
https://invent.kde.org/pim/korganizer/-/commit/94ff2c5e86f308b8c71b3e96a59b58f2c9cc150d
diff --git a/plugins/lunarphases/configdialog.cpp b/plugins/lunarphases/configdialog.cpp
index a6a935489..61556c190 100644
--- a/plugins/lunarphases/configdialog.cpp
+++ b/plugins/lunarphases/configdialog.cpp
@@ -49,7 +49,7 @@ ConfigDialog::ConfigDialog(QWidget *parent)
mLunarPhaseGroup->addButton(btn, int(Lunarphases::NorthernHemisphere));
groupLayout->addWidget(btn);
btn = new QRadioButton(i18nc("@option:radio", "Southern Hemisphere"), lunarPhaseBox);
- btn->setToolTip(i18nc("@info:tooltip", "Show the lunar phases for the northern hemisphere"));
+ btn->setToolTip(i18nc("@info:tooltip", "Show the lunar phases for the southern hemisphere"));
btn->setWhatsThis(i18nc("@info:whatsthis", "Select this option to show the moon phases if you live in the southern hemisphere."));
mLunarPhaseGroup->addButton(btn, int(Lunarphases::SouthernHemisphere));
groupLayout->addWidget(btn);