Fix Find in Projects replace confirmation message localization problem

This commit is contained in:
Don HO 2021-03-07 17:05:02 +01:00
parent a044cefe7c
commit 68c537f697
No known key found for this signature in database
GPG Key ID: 6C429F1D8D84F46E

View File

@ -3639,7 +3639,7 @@ bool FindReplaceDlg::replaceInProjectsConfirmCheck()
generic_string title = pNativeSpeaker->getLocalizedStrFromID("replace-in-projects-confirm-title", TEXT("Are you sure?"));
generic_string msg = pNativeSpeaker->getLocalizedStrFromID("replace-in-files-confirm-message", TEXT("Do you want to replace all occurrences in all documents in the selected Project Panel(s)?"));
generic_string msg = pNativeSpeaker->getLocalizedStrFromID("replace-in-projects-confirm-message", TEXT("Do you want to replace all occurrences in all documents in the selected Project Panel(s)?"));
int res = ::MessageBox(NULL, msg.c_str(), title.c_str(), MB_OKCANCEL | MB_DEFBUTTON2 | MB_TASKMODAL);
if (res == IDOK)