OSDN Git Service

Fix an issue where the message "The number of automatically merged changes: %1\nThe...
authorJun Tajima <56220423+tjmprm77@users.noreply.github.com>
Fri, 30 Apr 2021 02:51:48 +0000 (11:51 +0900)
committerGitHub <noreply@github.com>
Fri, 30 Apr 2021 02:51:48 +0000 (11:51 +0900)
Src/ImgMergeFrm.cpp
Src/MergeDoc.cpp

index 18e3507..5749f59 100644 (file)
@@ -300,7 +300,7 @@ void CImgMergeFrame::DoAutoMerge(int dstPane)
 
        AfxMessageBox(
                strutils::format_string2(
-                       _T("The number of automatically merged changes: %1\nThe number of unresolved conflicts: %2"), 
+                       _("The number of automatically merged changes: %1\nThe number of unresolved conflicts: %2"), 
                        strutils::format(_T("%d"), autoMergedCount),
                        strutils::format(_T("%d"), m_pImgMergeWindow->GetConflictCount())).c_str(),
                MB_ICONINFORMATION);
index eb941ea..8598cab 100644 (file)
@@ -1126,7 +1126,7 @@ void CMergeDoc::DoAutoMerge(int dstPane)
 
        ShowMessageBox(
                strutils::format_string2(
-                       _T("The number of automatically merged changes: %1\nThe number of unresolved conflicts: %2"), 
+                       _("The number of automatically merged changes: %1\nThe number of unresolved conflicts: %2"), 
                        strutils::format(_T("%d"), autoMergedCount),
                        strutils::format(_T("%d"), unresolvedConflictCount)),
                MB_ICONINFORMATION);