diff options
author | Dart Raiden <wowemuh@gmail.com> | 2015-12-28 13:10:47 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2015-12-28 13:10:47 +0000 |
commit | 79b1ada8ab3b7bc61eb77c261d2db0fe1ff77676 (patch) | |
tree | 8902d7880a1e4a4432a2d8cebf883b015a9bdcca /plugins | |
parent | 585beea01e6e45ea8ce1464dd92e768b46fb9b55 (diff) |
AVS: decapitalization
git-svn-id: http://svn.miranda-ng.org/main/trunk@15949 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/AVS/src/main.cpp | 2 | ||||
-rw-r--r-- | plugins/AVS/src/options.cpp | 2 | ||||
-rw-r--r-- | plugins/AVS/src/services.cpp | 4 |
3 files changed, 4 insertions, 4 deletions
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;
|