diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-15 14:01:59 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-15 14:01:59 +0000 |
commit | 21e84e8d5012cc0b600f27a4d796d3813b29a16c (patch) | |
tree | c3ca2376488d98d4f7bf30c82f820d6e5f16d227 /plugins | |
parent | 390852097c16fc8c7e5e25a0731adc26feb7615d (diff) |
- translation fixes (patch from Basil)
git-svn-id: http://svn.miranda-ng.org/main/trunk@4055 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/AVS/src/main.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/plugins/AVS/src/main.cpp b/plugins/AVS/src/main.cpp index d6e1b453d3..a357f41c83 100644 --- a/plugins/AVS/src/main.cpp +++ b/plugins/AVS/src/main.cpp @@ -1886,13 +1886,13 @@ static void LoadDefaultInfo() {
protoPicCacheEntry* pce = new protoPicCacheEntry;
if (CreateAvatarInCache(0, pce, AVS_DEFAULT) != 1)
- db_unset(0, PPICT_MODULE, AVS_DEFAULT);
-
- pce->szProtoname = mir_strdup(AVS_DEFAULT);
- pce->tszAccName = mir_tstrdup(TranslateT(AVS_DEFAULT));
- g_ProtoPictures.insert(pce);
-}
-
+ db_unset(0, PPICT_MODULE, AVS_DEFAULT); + + pce->szProtoname = mir_strdup(AVS_DEFAULT); + pce->tszAccName = mir_tstrdup(TranslateT("Global avatar")); + g_ProtoPictures.insert(pce); +} + static void LoadProtoInfo(PROTOCOLDESCRIPTOR* proto)
{
if ( proto->type == PROTOTYPE_PROTOCOL && proto->cbSize == sizeof( *proto ))
|