diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-09-20 19:02:17 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-09-20 19:02:17 +0000 |
commit | 20e207e4e4e3a68a11e46ce9b2b7e0ff5034f960 (patch) | |
tree | 97651320e29224d5e3f8520e760b73e9730cb69d /src/modules/skin | |
parent | e0e9dd5f90f4f5be48a439b310802c4b7443db0b (diff) |
translation fixes (patch by Wishmaster)
git-svn-id: http://svn.miranda-ng.org/main/trunk@6142 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/skin')
-rw-r--r-- | src/modules/skin/skinicons.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/skin/skinicons.cpp b/src/modules/skin/skinicons.cpp index ecd474a1d1..2672446440 100644 --- a/src/modules/skin/skinicons.cpp +++ b/src/modules/skin/skinicons.cpp @@ -109,7 +109,7 @@ const char mainIconsFmt[] = "core_main_"; const char statusIconsFmt[] = "core_status_";
const char protoIconsFmt[] = LPGEN("%s Icons");
-#define PROTOCOLS_PREFIX LPGEN("Status Icons/")
+#define PROTOCOLS_PREFIX LPGEN("Status Icons")
#define GLOBAL_PROTO_NAME "*"
// load small icon (shared) it's not need to be destroyed
@@ -272,7 +272,7 @@ HICON LoadSkinProtoIcon(const char* szProto, int status, bool big) // Queried protocol isn't in list, adding
//
TCHAR tszSection[MAX_PATH];
- mir_sntprintf(tszSection, SIZEOF(tszSection), _T("%s%s"), _T(PROTOCOLS_PREFIX), pa->tszAccountName);
+ mir_sntprintf(tszSection, SIZEOF(tszSection), _T(PROTOCOLS_PREFIX)_T("/%s"), pa->tszAccountName);
SKINICONDESC sid = { sizeof(sid) };
sid.ptszSection = tszSection;
@@ -484,7 +484,7 @@ int LoadSkinIcons(void) //
// Add global icons to list
//
- sid.pszSection = PROTOCOLS_PREFIX LPGEN("Global");
+ sid.pszSection = PROTOCOLS_PREFIX LPGEN("Global") "/";
//
// Asterisk is used, to avoid conflict with proto-plugins
// 'coz users can't rename it to name with '*'
|