diff options
| author | Tilka <tilkax@gmail.com> | 2024-05-20 04:20:25 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-20 04:20:25 +0100 |
| commit | 2633eaca7a8f919a8297a57ee70408dbfad63c62 (patch) | |
| tree | 8cdd3214570aa056d6377ed83659c3065fa1ec7e /Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp | |
| parent | 131ca83addd6620b49b8dcd6040e9d7bfa4f099c (diff) | |
| parent | 3e046c2b325bb9250e1393372860914841c76463 (diff) | |
Merge pull request #12790 from JosJuice/i18n-infinity-double-arguments
DolphinQt: Fix double argument in Infinity error message
Diffstat (limited to 'Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp index e4c428684f..bba4b7d4f8 100644 --- a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp +++ b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp @@ -175,7 +175,7 @@ void InfinityBaseWindow::LoadFigurePath(u8 slot, const QString& path) { QMessageBox::warning( this, tr("Failed to read the Infinity file!"), - tr("Failed to read the Infinity file(%1):\n%1\n\nThe file was too small.").arg(path), + tr("Failed to read the Infinity file:\n%1\n\nThe file was too small.").arg(path), QMessageBox::Ok); return; } |
