mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 07:39:17 +00:00
Merge pull request #8589 from lioncash/translatable
DolphinQt/GCMemcardManager: Mark string as translatable within GetErrorMessagesForErrorCode()
This commit is contained in:
commit
57f4837e4d
1 changed files with 2 additions and 2 deletions
|
@ -597,7 +597,7 @@ QString GCMemcardManager::GetErrorMessagesForErrorCode(const GCMemcardErrorCode&
|
||||||
sl.push_back(tr("Data in area of file that should be unused."));
|
sl.push_back(tr("Data in area of file that should be unused."));
|
||||||
|
|
||||||
if (sl.empty())
|
if (sl.empty())
|
||||||
return QStringLiteral("No errors.");
|
return tr("No errors.");
|
||||||
|
|
||||||
return sl.join(QStringLiteral("\n"));
|
return sl.join(QLatin1Char{'\n'});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue