summaryrefslogtreecommitdiff
path: root/plugins/FileAsMessage
diff options
context:
space:
mode:
authorDart Raiden <wowemuh@gmail.com>2016-08-17 21:00:25 +0000
committerDart Raiden <wowemuh@gmail.com>2016-08-17 21:00:25 +0000
commit55c361e8ceefcda79be036e1ee55da8b2206ab6b (patch)
tree15bf7d7e57d8b818d22f6c22a6db2aab740c5e91 /plugins/FileAsMessage
parent912284ebc654d00ea34332a4a119928254be7212 (diff)
FileAsMessage: make this dialog translatable
git-svn-id: http://svn.miranda-ng.org/main/trunk@17192 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FileAsMessage')
-rw-r--r--plugins/FileAsMessage/src/dialog.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/FileAsMessage/src/dialog.cpp b/plugins/FileAsMessage/src/dialog.cpp
index 87fa0b194f..ac13c114d1 100644
--- a/plugins/FileAsMessage/src/dialog.cpp
+++ b/plugins/FileAsMessage/src/dialog.cpp
@@ -2,7 +2,7 @@
char *szFEMode[] =
{
- LPGEN("Recv file"),
+ LPGEN("Receive file"),
LPGEN("Send file")
};
@@ -175,7 +175,7 @@ char *stateMsg[][2] =
(char*)STATE_PRERECV,"PreRecv",
(char*)STATE_OPERATE,"Operate",
(char*)STATE_ACKREQ,"AckReq",
-(char*)STATE_CANCELLED,"Cancelled",
+(char*)STATE_CANCELLED,"Canceled",
(char*)STATE_FINISHED,"Finished",
(char*)STATE_PAUSED,"Paused"
};
@@ -984,6 +984,7 @@ INT_PTR CALLBACK DialogProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam)
switch (uMsg)
{
case WM_INITDIALOG:
+ TranslateDialogDefault(hDlg);
{
dat = (FILEECHO*)lParam;
dat->hDlg = hDlg;