diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-07-06 15:42:08 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-07-06 15:42:08 +0000 |
commit | 79a5720cf40a5568784fa30052bea8d4c20cbbb3 (patch) | |
tree | d77eeba26c9cd0c4811de9fbb7fdd8d9db99d256 /plugins/MetaContacts | |
parent | 0db5618a347355245230f25992343febaaec0e43 (diff) |
- translation fixes (patch from dartraiden)
git-svn-id: http://svn.miranda-ng.org/main/trunk@5247 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MetaContacts')
-rw-r--r-- | plugins/MetaContacts/res/MetaContacts.rc | 2 | ||||
-rw-r--r-- | plugins/MetaContacts/src/edit.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MetaContacts/res/MetaContacts.rc b/plugins/MetaContacts/res/MetaContacts.rc index e463679067..3b8c65ca91 100644 --- a/plugins/MetaContacts/res/MetaContacts.rc +++ b/plugins/MetaContacts/res/MetaContacts.rc @@ -101,7 +101,7 @@ CAPTION "Add to Existing MetaContact" FONT 8, "MS Shell Dlg", 0, 0, 0x1
BEGIN
CTEXT "Please select a MetaContact:",IDC_STATIC,27,11,201,14
- DEFPUSHBUTTON "&Ok",IDOK,73,238,48,14
+ DEFPUSHBUTTON "&OK",IDOK,73,238,48,14
PUSHBUTTON "&Cancel",IDCANCEL,133,238,48,14
LISTBOX IDC_METALIST,44,28,168,168,LBS_NOINTEGRALHEIGHT | WS_VSCROLL
CONTROL "Sort Alphabetically",IDC_CHK_SRT,"Button",BS_AUTOCHECKBOX | BS_VCENTER | WS_TABSTOP,78,210,124,13
diff --git a/plugins/MetaContacts/src/edit.cpp b/plugins/MetaContacts/src/edit.cpp index a826e0f046..f3f23c39b9 100644 --- a/plugins/MetaContacts/src/edit.cpp +++ b/plugins/MetaContacts/src/edit.cpp @@ -320,7 +320,7 @@ INT_PTR CALLBACK Meta_EditDialogProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPAR case WM_COMMAND:
switch(HIWORD(wParam)) {
- case BN_CLICKED: // A button ('Remove', 'Ok', 'Cancel' or 'Apply', normally) has been clicked
+ case BN_CLICKED: // A button ('Remove', 'OK', 'Cancel' or 'Apply', normally) has been clicked
switch(LOWORD(wParam)) {
case IDC_VALIDATE: // Apply changes, if there is still one contact attached to the metacontact.
if (changes.num_contacts == 0) { // Otherwise, delete the metacontact.
|