1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-03 00:46:55 +02:00

some spelling fixes

This commit is contained in:
Johannes Schauer Marin Rodrigues
2023-10-18 01:41:02 +02:00
parent a77f332411
commit f9e1b302c7
18 changed files with 30 additions and 30 deletions

View File

@ -198,7 +198,7 @@ ETextAlignment InterfaceObjectConfigurable::readTextAlignment(const JsonNode & c
if(config.String() == "right")
return ETextAlignment::BOTTOMRIGHT;
}
logGlobal->debug("Uknown text alignment attribute");
logGlobal->debug("Unknown text alignment attribute");
return ETextAlignment::CENTER;
}
@ -720,7 +720,7 @@ std::shared_ptr<CIntObject> InterfaceObjectConfigurable::buildWidget(JsonNode co
//overrides from variables
for(auto & item : config["overrides"].Struct())
{
logGlobal->debug("Config attribute %s was overriden by variable %s", item.first, item.second.String());
logGlobal->debug("Config attribute %s was overridden by variable %s", item.first, item.second.String());
config[item.first] = variables[item.second.String()];
}