diff options
author | Dart Raiden <wowemuh@gmail.com> | 2015-09-06 22:53:57 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2015-09-06 22:53:57 +0000 |
commit | 5007a3717a24f2f0737dd21600dc76df623c545a (patch) | |
tree | 3428f362f52a8dfbd1af4064fd39e44e51304b66 /protocols/Tox/src/tox_profile.cpp | |
parent | 94b6d7e22023b069ffe7bdc1288fffb21a8f4269 (diff) |
Tox: proper capitalization
git-svn-id: http://svn.miranda-ng.org/main/trunk@15288 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_profile.cpp')
-rw-r--r-- | protocols/Tox/src/tox_profile.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/protocols/Tox/src/tox_profile.cpp b/protocols/Tox/src/tox_profile.cpp index aea5492686..5980118043 100644 --- a/protocols/Tox/src/tox_profile.cpp +++ b/protocols/Tox/src/tox_profile.cpp @@ -32,7 +32,7 @@ bool CToxProto::LoadToxProfile(Tox_Options *options) FILE *profile = _tfopen(profilePath.c_str(), _T("rb"));
if (profile == NULL)
{
- ShowNotification(TranslateT("Unable to open tox profile"), MB_ICONERROR);
+ ShowNotification(TranslateT("Unable to open Tox profile"), MB_ICONERROR);
debugLogA(__FUNCTION__": failed to open tox profile");
return false;
}
@@ -50,7 +50,7 @@ bool CToxProto::LoadToxProfile(Tox_Options *options) if (fread((char*)data, sizeof(char), size, profile) != size)
{
fclose(profile);
- ShowNotification(TranslateT("Unable to read tox profile"), MB_ICONERROR);
+ ShowNotification(TranslateT("Unable to read Tox profile"), MB_ICONERROR);
debugLogA(__FUNCTION__": failed to read tox profile");
mir_free(data);
return false;
@@ -73,7 +73,7 @@ bool CToxProto::LoadToxProfile(Tox_Options *options) TOX_ERR_DECRYPTION coreDecryptError;
if (!tox_pass_decrypt(data, size, (uint8_t*)password, mir_strlen(password), encryptedData, &coreDecryptError))
{
- ShowNotification(TranslateT("Unable to decrypt tox profile"), MB_ICONERROR);
+ ShowNotification(TranslateT("Unable to decrypt Tox profile"), MB_ICONERROR);
debugLogA(__FUNCTION__": failed to decrypt tox profile (%d)", coreDecryptError);
mir_free(data);
return false;
@@ -95,7 +95,7 @@ bool CToxProto::LoadToxProfile(Tox_Options *options) if (initError != TOX_ERR_NEW_OK)
{
debugLogA(__FUNCTION__": failed to load tox profile (%d)", initError);
- ShowNotification(ToxErrorToString(initError), TranslateT("Unable to load tox profile"), MB_ICONERROR);
+ ShowNotification(ToxErrorToString(initError), TranslateT("Unable to load Tox profile"), MB_ICONERROR);
mir_free(data);
return false;
}
|