diff options
| author | Léo Lam <leo@leolam.fr> | 2020-01-27 23:20:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-27 23:20:03 +0100 |
| commit | 57f4837e4de0fccf4a348fed53ea60ac89631cde (patch) | |
| tree | 1b9108c92033098126718eaed5ef9d8a28a7f483 /Source/Core | |
| parent | 1b90b62e6369c87724dc0ab88bdf616f78415f9a (diff) | |
| parent | 7eaa769527cce234a8e05eabcf3c4185094a9015 (diff) | |
Merge pull request #8589 from lioncash/translatable
DolphinQt/GCMemcardManager: Mark string as translatable within GetErrorMessagesForErrorCode()
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/DolphinQt/GCMemcardManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinQt/GCMemcardManager.cpp b/Source/Core/DolphinQt/GCMemcardManager.cpp index bc7684ee9f..fb1b0af4b6 100644 --- a/Source/Core/DolphinQt/GCMemcardManager.cpp +++ b/Source/Core/DolphinQt/GCMemcardManager.cpp @@ -597,7 +597,7 @@ QString GCMemcardManager::GetErrorMessagesForErrorCode(const GCMemcardErrorCode& sl.push_back(tr("Data in area of file that should be unused.")); if (sl.empty()) - return QStringLiteral("No errors."); + return tr("No errors."); - return sl.join(QStringLiteral("\n")); + return sl.join(QLatin1Char{'\n'}); } |
