From 30fde2196a2a5545a4a689879c7f6f678e1631b6 Mon Sep 17 00:00:00 2001 From: Ruslan Kabatsayev Date: Sat, 2 Dec 2023 23:53:00 +0400 Subject: [PATCH] Fix overzealous renaming inside text strings --- src/core/StelSkyCultureMgr.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/StelSkyCultureMgr.cpp b/src/core/StelSkyCultureMgr.cpp index bc82efe96fc7f..08fa12031b7ee 100644 --- a/src/core/StelSkyCultureMgr.cpp +++ b/src/core/StelSkyCultureMgr.cpp @@ -64,11 +64,11 @@ StelSkyCultureMgr::StelSkyCultureMgr() const auto boundariesType = boundariesMap.value(boundariesStr.toLower(), StelSkyCulture::BoundariesType::None); if (boundariesStr.contains("generic", Qt::CaseInsensitive)) { - qDebug() << "Skyculture " << dir << "'s boundariesType is given with deprecated 'generic'. Please edit info.ini and change to 'iau'"; + qDebug() << "Skyculture " << dir << "'s boundaries is given with deprecated 'generic'. Please edit info.ini and change to 'iau'"; } else if (!boundariesMap.contains(boundariesStr.toLower())) { - qDebug() << "Skyculture " << dir << "'s boundariesType value unknown:" << boundariesStr; + qDebug() << "Skyculture " << dir << "'s boundaries value unknown:" << boundariesStr; qDebug() << "Please edit info.ini and change to a supported value. For now, this equals 'none'"; } dirToNameEnglish[dir].boundariesType = boundariesType;