From 79b1ada8ab3b7bc61eb77c261d2db0fe1ff77676 Mon Sep 17 00:00:00 2001 From: Dart Raiden Date: Mon, 28 Dec 2015 13:10:47 +0000 Subject: AVS: decapitalization git-svn-id: http://svn.miranda-ng.org/main/trunk@15949 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/AVS/src/main.cpp | 2 +- plugins/AVS/src/options.cpp | 2 +- plugins/AVS/src/services.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/AVS') diff --git a/plugins/AVS/src/main.cpp b/plugins/AVS/src/main.cpp index 373f536ed4..faeb65c648 100644 --- a/plugins/AVS/src/main.cpp +++ b/plugins/AVS/src/main.cpp @@ -407,7 +407,7 @@ extern "C" int __declspec(dllexport) Load(void) result = CallService(MS_IMG_GETINTERFACE, FI_IF_VERSION, (LPARAM)&fei); if (fei == NULL || result != S_OK) { - MessageBox(0, TranslateT("Fatal error, image services not found. Avatar services will be disabled."), TranslateT("Avatar Service"), MB_OK); + MessageBox(0, TranslateT("Fatal error, image services not found. Avatar services will be disabled."), TranslateT("Avatar service"), MB_OK); return 1; } LoadACC(); diff --git a/plugins/AVS/src/options.cpp b/plugins/AVS/src/options.cpp index 5909a0d1ea..7aba56ce49 100644 --- a/plugins/AVS/src/options.cpp +++ b/plugins/AVS/src/options.cpp @@ -1072,7 +1072,7 @@ static INT_PTR CALLBACK DlgProcAvatarProtoInfo(HWND hwndDlg, UINT msg, WPARAM wP case IDC_DELETE: if (BST_UNCHECKED == IsDlgButtonChecked(hwndDlg, IDC_PER_PROTO)) { - if (MessageBox(hwndDlg, TranslateT("Are you sure you want to remove your avatar?"), TranslateT("Global Avatar"), MB_YESNO) == IDYES) + if (MessageBox(hwndDlg, TranslateT("Are you sure you want to remove your avatar?"), TranslateT("Global avatar"), MB_YESNO) == IDYES) avSetMyAvatar(NULL, _T("")); } else { diff --git a/plugins/AVS/src/services.cpp b/plugins/AVS/src/services.cpp index da081abf46..1497ebc7a8 100644 --- a/plugins/AVS/src/services.cpp +++ b/plugins/AVS/src/services.cpp @@ -685,10 +685,10 @@ INT_PTR avSetMyAvatar(char* protocol, TCHAR* tszPath) TCHAR title[256]; if (protocol == NULL) - mir_sntprintf(title, TranslateT("Set My Avatar")); + mir_sntprintf(title, TranslateT("Set my avatar")); else { TCHAR* prototmp = mir_a2t(protocol); - mir_sntprintf(title, TranslateT("Set My Avatar for %s"), prototmp); + mir_sntprintf(title, TranslateT("Set my avatar for %s"), prototmp); mir_free(prototmp); } ofn.lpstrTitle = title; -- cgit v1.2.3