Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '7zip/FileManager/PanelCopy.cpp')
-rwxr-xr-x7zip/FileManager/PanelCopy.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/7zip/FileManager/PanelCopy.cpp b/7zip/FileManager/PanelCopy.cpp
index 3a5bd74e..df0fd772 100755
--- a/7zip/FileManager/PanelCopy.cpp
+++ b/7zip/FileManager/PanelCopy.cpp
@@ -176,11 +176,12 @@ HRESULT CPanel::CopyFrom(const UString &folderPrefix, const UStringVector &fileP
void CPanel::CopyFrom(const UStringVector &filePaths)
{
- UString message = L"Are you sure you want to copy files to archive\n\'";
+ UString title = LangLoadStringW(IDS_CONFIRM_FILE_COPY, 0x03020222);
+ UString message = LangLoadStringW(IDS_WANT_TO_COPY_FILES, 0x03020223);
+ message += L"\n\'";
message += _currentFolderPrefix;
message += L"\' ?";
- int res = ::MessageBoxW(*(this), message, L"Confirm File Copy",
- MB_YESNOCANCEL | MB_ICONQUESTION | MB_SYSTEMMODAL);
+ int res = ::MessageBoxW(*(this), message, title, MB_YESNOCANCEL | MB_ICONQUESTION | MB_SYSTEMMODAL);
if (res != IDYES)
return;
@@ -197,7 +198,7 @@ void CPanel::CopyFrom(const UStringVector &filePaths)
// For Password:
SetFocusToList();
if (result != E_ABORT)
- MessageBoxError(result, L"Error");
+ MessageBoxError(result);
return;
}