Skip to content

Commit

Permalink
Fix overzealous renaming inside text strings
Browse files Browse the repository at this point in the history
  • Loading branch information
10110111 committed Dec 2, 2023
1 parent 97e411d commit 30fde21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/StelSkyCultureMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 30fde21

Please sign in to comment.