diff options
| author | Léo Lam <leo@leolam.fr> | 2020-11-17 18:02:39 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-17 18:02:39 +0100 |
| commit | 07be82d64f16d82bb99e29c84de82120eba348bf (patch) | |
| tree | f4e1dde294ede8ee55901a942b8a24cf6ff81c80 /Source/Core/DiscIO/VolumeVerifier.cpp | |
| parent | 4c9b226bd623e12a8269ae869462916e385e647d (diff) | |
| parent | 9a01c3fb9f137b666f27fcf8f1bfc3ac9c42346b (diff) | |
Merge pull request #9253 from JosJuice/positional-arguments
Use positional arguments in all translatable fmt strings
Diffstat (limited to 'Source/Core/DiscIO/VolumeVerifier.cpp')
| -rw-r--r-- | Source/Core/DiscIO/VolumeVerifier.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/Core/DiscIO/VolumeVerifier.cpp b/Source/Core/DiscIO/VolumeVerifier.cpp index 860709448e..c1c9a8ae3b 100644 --- a/Source/Core/DiscIO/VolumeVerifier.cpp +++ b/Source/Core/DiscIO/VolumeVerifier.cpp @@ -312,11 +312,11 @@ std::vector<RedumpVerifier::PotentialMatch> RedumpVerifier::ScanDatfile(const st // so show a panic alert rather than just using ERROR_LOG // i18n: "Serial" refers to serial numbers, e.g. RVL-RSBE-USA - PanicAlertFmtT("Serial and/or version data is missing from {}\n" - "Please append \"{}\" (without the quotes) to the datfile URL when downloading\n" - "Example: {}", - GetPathForSystem(system), "serial,version", - "http://redump.org/datfile/gc/serial,version"); + PanicAlertFmtT( + "Serial and/or version data is missing from {0}\n" + "Please append \"{1}\" (without the quotes) to the datfile URL when downloading\n" + "Example: {2}", + GetPathForSystem(system), "serial,version", "http://redump.org/datfile/gc/serial,version"); m_result = {Status::Error, Common::GetStringT("Failed to parse Redump.org data")}; return {}; } |
