mirror of
https://github.com/vcmi/vcmi.git
synced 2025-07-13 01:20:34 +02:00
some spelling fixes
This commit is contained in:
@ -111,7 +111,7 @@ bool handleGarrisonHeroFromPreviousTurn(const CGTownInstance * town, Goals::TGoa
|
|||||||
if(ai->nullkiller->isHeroLocked(town->garrisonHero.get()))
|
if(ai->nullkiller->isHeroLocked(town->garrisonHero.get()))
|
||||||
{
|
{
|
||||||
logAi->trace(
|
logAi->trace(
|
||||||
"Hero %s in garrison of town %s is suposed to defend the town",
|
"Hero %s in garrison of town %s is supposed to defend the town",
|
||||||
town->garrisonHero->getNameTranslated(),
|
town->garrisonHero->getNameTranslated(),
|
||||||
town->getNameTranslated());
|
town->getNameTranslated());
|
||||||
|
|
||||||
|
@ -238,6 +238,6 @@ Goals::TSubgoal PathfindingManager::clearWayTo(HeroPtr hero, int3 firstTileToGet
|
|||||||
|
|
||||||
void PathfindingManager::updatePaths(std::vector<HeroPtr> heroes)
|
void PathfindingManager::updatePaths(std::vector<HeroPtr> heroes)
|
||||||
{
|
{
|
||||||
logAi->debug("AIPathfinder has been reseted.");
|
logAi->debug("AIPathfinder has been reset.");
|
||||||
pathfinder->updatePaths(heroes);
|
pathfinder->updatePaths(heroes);
|
||||||
}
|
}
|
||||||
|
@ -126,7 +126,7 @@ int main(int argc, char * argv[])
|
|||||||
("spectate-battle-speed", po::value<int>(), "battle animation speed for spectator")
|
("spectate-battle-speed", po::value<int>(), "battle animation speed for spectator")
|
||||||
("spectate-skip-battle", "skip battles in spectator view")
|
("spectate-skip-battle", "skip battles in spectator view")
|
||||||
("spectate-skip-battle-result", "skip battle result window")
|
("spectate-skip-battle-result", "skip battle result window")
|
||||||
("onlyAI", "allow to run without human player, all players will be default AI")
|
("onlyAI", "allow one to run without human player, all players will be default AI")
|
||||||
("headless", "runs without GUI, implies --onlyAI")
|
("headless", "runs without GUI, implies --onlyAI")
|
||||||
("ai", po::value<std::vector<std::string>>(), "AI to be used for the player, can be specified several times for the consecutive players")
|
("ai", po::value<std::vector<std::string>>(), "AI to be used for the player, can be specified several times for the consecutive players")
|
||||||
("oneGoodAI", "puts one default AI and the rest will be EmptyAI")
|
("oneGoodAI", "puts one default AI and the rest will be EmptyAI")
|
||||||
|
@ -198,7 +198,7 @@ ETextAlignment InterfaceObjectConfigurable::readTextAlignment(const JsonNode & c
|
|||||||
if(config.String() == "right")
|
if(config.String() == "right")
|
||||||
return ETextAlignment::BOTTOMRIGHT;
|
return ETextAlignment::BOTTOMRIGHT;
|
||||||
}
|
}
|
||||||
logGlobal->debug("Uknown text alignment attribute");
|
logGlobal->debug("Unknown text alignment attribute");
|
||||||
return ETextAlignment::CENTER;
|
return ETextAlignment::CENTER;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -720,7 +720,7 @@ std::shared_ptr<CIntObject> InterfaceObjectConfigurable::buildWidget(JsonNode co
|
|||||||
//overrides from variables
|
//overrides from variables
|
||||||
for(auto & item : config["overrides"].Struct())
|
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()];
|
config[item.first] = variables[item.second.String()];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -860,7 +860,7 @@ static BonusParams convertDeprecatedBonus(const JsonNode &ability)
|
|||||||
params.targetType = BonusSource::SECONDARY_SKILL;
|
params.targetType = BonusSource::SECONDARY_SKILL;
|
||||||
}
|
}
|
||||||
|
|
||||||
logMod->warn("Please, use this bonus:\n%s\nConverted sucessfully!", params.toJson().toJson());
|
logMod->warn("Please, use this bonus:\n%s\nConverted successfully!", params.toJson().toJson());
|
||||||
return params;
|
return params;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -253,7 +253,7 @@ BattleInfo * BattleInfo::setupBattle(const int3 & tile, TerrainId terrain, const
|
|||||||
catch(RangeGenerator::ExhaustedPossibilities &)
|
catch(RangeGenerator::ExhaustedPossibilities &)
|
||||||
{
|
{
|
||||||
//silently ignore, if we can't place absolute obstacle, we'll go with the usual ones
|
//silently ignore, if we can't place absolute obstacle, we'll go with the usual ones
|
||||||
logGlobal->debug("RangeGenerator::ExhaustedPossibilities exception occured - cannot place absolute obstacle");
|
logGlobal->debug("RangeGenerator::ExhaustedPossibilities exception occurred - cannot place absolute obstacle");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -306,7 +306,7 @@ BattleInfo * BattleInfo::setupBattle(const int3 & tile, TerrainId terrain, const
|
|||||||
}
|
}
|
||||||
catch(RangeGenerator::ExhaustedPossibilities &)
|
catch(RangeGenerator::ExhaustedPossibilities &)
|
||||||
{
|
{
|
||||||
logGlobal->debug("RangeGenerator::ExhaustedPossibilities exception occured - cannot place usual obstacle");
|
logGlobal->debug("RangeGenerator::ExhaustedPossibilities exception occurred - cannot place usual obstacle");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ public:
|
|||||||
};
|
};
|
||||||
|
|
||||||
enum Character {
|
enum Character {
|
||||||
COMPLIANT = 0, FRIENDLY = 1, AGRESSIVE = 2, HOSTILE = 3, SAVAGE = 4
|
COMPLIANT = 0, FRIENDLY = 1, AGGRESSIVE = 2, HOSTILE = 3, SAVAGE = 4
|
||||||
};
|
};
|
||||||
|
|
||||||
ui32 identifier; //unique code for this monster (used in missions)
|
ui32 identifier; //unique code for this monster (used in missions)
|
||||||
|
@ -1117,7 +1117,7 @@ CGObjectInstance * CMapLoaderH3M::readMonster(const int3 & mapPosition, const Ob
|
|||||||
|
|
||||||
if(agressionExact != -1 || joinOnlyForMoney || joinPercent != 100 || upgradedStack != -1 || stacksCount != -1)
|
if(agressionExact != -1 || joinOnlyForMoney || joinPercent != 100 || upgradedStack != -1 || stacksCount != -1)
|
||||||
logGlobal->warn(
|
logGlobal->warn(
|
||||||
"Map '%s': Wandering monsters %s settings %d %d %d %d %d are not implemeted!",
|
"Map '%s': Wandering monsters %s settings %d %d %d %d %d are not implemented!",
|
||||||
mapName,
|
mapName,
|
||||||
mapPosition.toString(),
|
mapPosition.toString(),
|
||||||
agressionExact,
|
agressionExact,
|
||||||
|
@ -34,7 +34,7 @@ static QList<std::pair<QString, QVariant>> CharacterIdentifiers
|
|||||||
{
|
{
|
||||||
{QObject::tr("Compliant"), QVariant::fromValue(int(CGCreature::Character::COMPLIANT))},
|
{QObject::tr("Compliant"), QVariant::fromValue(int(CGCreature::Character::COMPLIANT))},
|
||||||
{QObject::tr("Friendly"), QVariant::fromValue(int(CGCreature::Character::FRIENDLY))},
|
{QObject::tr("Friendly"), QVariant::fromValue(int(CGCreature::Character::FRIENDLY))},
|
||||||
{QObject::tr("Agressive"), QVariant::fromValue(int(CGCreature::Character::AGRESSIVE))},
|
{QObject::tr("Aggressive"), QVariant::fromValue(int(CGCreature::Character::AGGRESSIVE))},
|
||||||
{QObject::tr("Hostile"), QVariant::fromValue(int(CGCreature::Character::HOSTILE))},
|
{QObject::tr("Hostile"), QVariant::fromValue(int(CGCreature::Character::HOSTILE))},
|
||||||
{QObject::tr("Savage"), QVariant::fromValue(int(CGCreature::Character::SAVAGE))},
|
{QObject::tr("Savage"), QVariant::fromValue(int(CGCreature::Character::SAVAGE))},
|
||||||
};
|
};
|
||||||
|
@ -105,7 +105,7 @@ void MainWindow::parseCommandLine(ExtractionOptions & extractionOptions)
|
|||||||
{"e", QCoreApplication::translate("main", "Extract original H3 archives into a separate folder.")},
|
{"e", QCoreApplication::translate("main", "Extract original H3 archives into a separate folder.")},
|
||||||
{"s", QCoreApplication::translate("main", "From an extracted archive, it Splits TwCrPort, CPRSMALL, FlagPort, ITPA, ITPt, Un32 and Un44 into individual PNG's.")},
|
{"s", QCoreApplication::translate("main", "From an extracted archive, it Splits TwCrPort, CPRSMALL, FlagPort, ITPA, ITPt, Un32 and Un44 into individual PNG's.")},
|
||||||
{"c", QCoreApplication::translate("main", "From an extracted archive, Converts single Images (found in Images folder) from .pcx to png.")},
|
{"c", QCoreApplication::translate("main", "From an extracted archive, Converts single Images (found in Images folder) from .pcx to png.")},
|
||||||
{"d", QCoreApplication::translate("main", "Delete original files, for the ones splitted / converted.")},
|
{"d", QCoreApplication::translate("main", "Delete original files, for the ones split / converted.")},
|
||||||
});
|
});
|
||||||
|
|
||||||
parser.process(qApp->arguments());
|
parser.process(qApp->arguments());
|
||||||
@ -358,7 +358,7 @@ bool MainWindow::openMap(const QString & filenameSelect)
|
|||||||
catch(const ModIncompatibility & e)
|
catch(const ModIncompatibility & e)
|
||||||
{
|
{
|
||||||
assert(e.whatExcessive().empty());
|
assert(e.whatExcessive().empty());
|
||||||
QMessageBox::warning(this, "Mods are requiered", QString::fromStdString(e.whatMissing()));
|
QMessageBox::warning(this, "Mods are required", QString::fromStdString(e.whatMissing()));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
catch(const std::exception & e)
|
catch(const std::exception & e)
|
||||||
@ -1108,7 +1108,7 @@ void MainWindow::on_actionUpdate_appearance_triggered()
|
|||||||
|
|
||||||
|
|
||||||
if(errors)
|
if(errors)
|
||||||
QMessageBox::warning(this, tr("Update appearance"), QString(tr("Errors occured. %1 objects were not updated")).arg(errors));
|
QMessageBox::warning(this, tr("Update appearance"), QString(tr("Errors occurred. %1 objects were not updated")).arg(errors));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -353,7 +353,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="1191"/>
|
<location filename="../mainwindow.cpp" line="1191"/>
|
||||||
<source>Errors occured. %1 objects were not updated</source>
|
<source>Errors occurred. %1 objects were not updated</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
@ -1011,7 +1011,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="107"/>
|
<location filename="../mainwindow.cpp" line="107"/>
|
||||||
<source>Delete original files, for the ones splitted / converted.</source>
|
<source>Delete original files, for the ones split / converted.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
@ -353,7 +353,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="1191"/>
|
<location filename="../mainwindow.cpp" line="1191"/>
|
||||||
<source>Errors occured. %1 objects were not updated</source>
|
<source>Errors occurred. %1 objects were not updated</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
@ -1015,7 +1015,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="107"/>
|
<location filename="../mainwindow.cpp" line="107"/>
|
||||||
<source>Delete original files, for the ones splitted / converted.</source>
|
<source>Delete original files, for the ones split / converted.</source>
|
||||||
<translation>Supprimer les fichiers d'origine, pour ceux fractionnés/convertis.</translation>
|
<translation>Supprimer les fichiers d'origine, pour ceux fractionnés/convertis.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
@ -363,7 +363,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="1191"/>
|
<location filename="../mainwindow.cpp" line="1191"/>
|
||||||
<source>Errors occured. %1 objects were not updated</source>
|
<source>Errors occurred. %1 objects were not updated</source>
|
||||||
<translation>Fehler sind aufgetreten. %1 Objekte konnten nicht aktualisiert werden</translation>
|
<translation>Fehler sind aufgetreten. %1 Objekte konnten nicht aktualisiert werden</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
@ -1025,7 +1025,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="107"/>
|
<location filename="../mainwindow.cpp" line="107"/>
|
||||||
<source>Delete original files, for the ones splitted / converted.</source>
|
<source>Delete original files, for the ones split / converted.</source>
|
||||||
<translation>Löschen Sie die Originaldateien für die gesplitteten/konvertierten Dateien.</translation>
|
<translation>Löschen Sie die Originaldateien für die gesplitteten/konvertierten Dateien.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
@ -363,7 +363,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="1191"/>
|
<location filename="../mainwindow.cpp" line="1191"/>
|
||||||
<source>Errors occured. %1 objects were not updated</source>
|
<source>Errors occurred. %1 objects were not updated</source>
|
||||||
<translation>Wystąpiły błędy. %1 obiektów nie zostało zaktualizowanych</translation>
|
<translation>Wystąpiły błędy. %1 obiektów nie zostało zaktualizowanych</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
@ -1025,7 +1025,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="107"/>
|
<location filename="../mainwindow.cpp" line="107"/>
|
||||||
<source>Delete original files, for the ones splitted / converted.</source>
|
<source>Delete original files, for the ones split / converted.</source>
|
||||||
<translation>Usuń oryginalne pliki, dla już rozdzielonych / skonwertowanych.</translation>
|
<translation>Usuń oryginalne pliki, dla już rozdzielonych / skonwertowanych.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
@ -353,7 +353,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="1191"/>
|
<location filename="../mainwindow.cpp" line="1191"/>
|
||||||
<source>Errors occured. %1 objects were not updated</source>
|
<source>Errors occurred. %1 objects were not updated</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
@ -1015,7 +1015,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="107"/>
|
<location filename="../mainwindow.cpp" line="107"/>
|
||||||
<source>Delete original files, for the ones splitted / converted.</source>
|
<source>Delete original files, for the ones split / converted.</source>
|
||||||
<translation>Удалить оригиналы для преобразованных файлов.</translation>
|
<translation>Удалить оригиналы для преобразованных файлов.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
@ -353,7 +353,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="1191"/>
|
<location filename="../mainwindow.cpp" line="1191"/>
|
||||||
<source>Errors occured. %1 objects were not updated</source>
|
<source>Errors occurred. %1 objects were not updated</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
@ -1015,7 +1015,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="107"/>
|
<location filename="../mainwindow.cpp" line="107"/>
|
||||||
<source>Delete original files, for the ones splitted / converted.</source>
|
<source>Delete original files, for the ones split / converted.</source>
|
||||||
<translation>Eliminar archivos originales, por los que se han separado / convertido.</translation>
|
<translation>Eliminar archivos originales, por los que se han separado / convertido.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
@ -363,7 +363,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="1191"/>
|
<location filename="../mainwindow.cpp" line="1191"/>
|
||||||
<source>Errors occured. %1 objects were not updated</source>
|
<source>Errors occurred. %1 objects were not updated</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
@ -1021,7 +1021,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="107"/>
|
<location filename="../mainwindow.cpp" line="107"/>
|
||||||
<source>Delete original files, for the ones splitted / converted.</source>
|
<source>Delete original files, for the ones split / converted.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
@ -353,7 +353,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="1191"/>
|
<location filename="../mainwindow.cpp" line="1191"/>
|
||||||
<source>Errors occured. %1 objects were not updated</source>
|
<source>Errors occurred. %1 objects were not updated</source>
|
||||||
<translation>Xảy ra lỗi. %1 mục tiêu không được cập nhật</translation>
|
<translation>Xảy ra lỗi. %1 mục tiêu không được cập nhật</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
@ -1011,7 +1011,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../mainwindow.cpp" line="107"/>
|
<location filename="../mainwindow.cpp" line="107"/>
|
||||||
<source>Delete original files, for the ones splitted / converted.</source>
|
<source>Delete original files, for the ones split / converted.</source>
|
||||||
<translation>Xóa các tập tin gốc đã được phân chia / chuyển đổi.</translation>
|
<translation>Xóa các tập tin gốc đã được phân chia / chuyển đổi.</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
|
Reference in New Issue
Block a user