fix mispellings and wrap strings for translation

Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
Rachel Powers 2022-10-30 22:39:12 -07:00
parent e9d4793b1e
commit d2f3dbaa29
2 changed files with 9 additions and 11 deletions

View File

@ -29,7 +29,7 @@ BlockedModsDialog::BlockedModsDialog(QWidget *parent, const QString &title, cons
this->setWindowTitle(title); this->setWindowTitle(title);
ui->label->setText(text); ui->label->setText(text);
ui->labelModsFound->setText("Please download the missing mods."); ui->labelModsFound->setText(tr("Please download the missing mods."));
update(); update();
} }
@ -51,20 +51,20 @@ void BlockedModsDialog::update() {
for (auto &mod : mods) { for (auto &mod : mods) {
if (mod.matched) { if (mod.matched) {
// &#x2714; -> html for HEAVY CHECK MARK : ✔ // &#x2714; -> html for HEAVY CHECK MARK : ✔
span = QString("<span style=\"color:green\"> &#x2714; Found at %1 </span>").arg(mod.localPath); span = QString(tr("<span style=\"color:green\"> &#x2714; Found at %1 </span>")).arg(mod.localPath);
} else { } else {
// &#x2718; -> html for HEAVY BALLOT X : ✘ // &#x2718; -> html for HEAVY BALLOT X : ✘
span = QString("<span style=\"color:red\"> &#x2718; Not Found </span>"); span = QString(tr("<span style=\"color:red\"> &#x2718; Not Found </span>"));
} }
text += QString("%1: <a href='%2'>%2</a> <p>Hash: %3 %4</p> <br/>").arg(mod.name, mod.websiteUrl, mod.hash, span); text += QString(tr("%1: <a href='%2'>%2</a> <p>Hash: %3 %4</p> <br/>")).arg(mod.name, mod.websiteUrl, mod.hash, span);
} }
ui->textBrowser->setText(text); ui->textBrowser->setText(text);
if (allModsMatched()) { if (allModsMatched()) {
ui->labelModsFound->setText("All mods found ✔"); ui->labelModsFound->setText(tr("All mods found ✔"));
} else { } else {
ui->labelModsFound->setText("Please download the missing mods."); ui->labelModsFound->setText(tr("Please download the missing mods."));
} }
} }
@ -124,7 +124,7 @@ void BlockedModsDialog::scanPath(QString path) {
} }
/// @brief check if the conputed hash for the provided path matches a blocked /// @brief check if the computed hash for the provided path matches a blocked
/// mod we are looking for /// mod we are looking for
/// @param hash the computed hash for the provided path /// @param hash the computed hash for the provided path
/// @param path the path to the local file being compared /// @param path the path to the local file being compared
@ -153,7 +153,7 @@ void BlockedModsDialog::checkMatchHash(QString hash, QString path) {
} }
} }
/// @brief Check if the name of the file at path matches the naem of a blocked mod we are searching for /// @brief Check if the name of the file at path matches the name of a blocked mod we are searching for
/// @param path the path to check /// @param path the path to check
/// @return boolean: did the path match the name of a blocked mod? /// @return boolean: did the path match the name of a blocked mod?
bool BlockedModsDialog::checkValidPath(QString path) { bool BlockedModsDialog::checkValidPath(QString path) {
@ -171,8 +171,6 @@ bool BlockedModsDialog::checkValidPath(QString path) {
return false; return false;
} }
/// @brief have we found all the mods we're lookign for?
/// @return boolean
bool BlockedModsDialog::allModsMatched() { bool BlockedModsDialog::allModsMatched() {
for (auto &mod : mods) { for (auto &mod : mods) {
if (!mod.matched) if (!mod.matched)

View File

@ -50,4 +50,4 @@ private:
bool allModsMatched(); bool allModsMatched();
}; };
QDebug operator<<(QDebug debug, const BlockedMod &m); QDebug operator<<(QDebug debug, const BlockedMod &m);