[Scummvm-git-logs] scummvm master -> c3e152b612b76040dc12aadd9c12a5e1bc26dc41

bgK bastien.bouclet at gmail.com
Mon Feb 3 07:35:46 UTC 2020


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
c3e152b612 ENGINES: Mark the pirated game message as translatable


Commit: c3e152b612b76040dc12aadd9c12a5e1bc26dc41
    https://github.com/scummvm/scummvm/commit/c3e152b612b76040dc12aadd9c12a5e1bc26dc41
Author: Bastien Bouclet (bastien.bouclet at gmail.com)
Date: 2020-02-03T08:33:52+01:00

Commit Message:
ENGINES: Mark the pirated game message as translatable

Changed paths:
    engines/advancedDetector.cpp


diff --git a/engines/advancedDetector.cpp b/engines/advancedDetector.cpp
index 64a1cef..ce940a7 100644
--- a/engines/advancedDetector.cpp
+++ b/engines/advancedDetector.cpp
@@ -136,7 +136,7 @@ bool cleanupPirated(ADDetectedGames &matched) {
 		if (matched.empty()) {
 			warning("Illegitimate game copy detected. We provide no support in such cases");
 			if (GUI::GuiManager::hasInstance()) {
-				GUI::MessageDialog dialog("Illegitimate game copy detected. We provide no support in such cases", "OK");
+				GUI::MessageDialog dialog(_("Illegitimate game copy detected. We provide no support in such cases"));
 				dialog.runModal();
 			};
 			return true;




More information about the Scummvm-git-logs mailing list