diff options
author | George Hazan <george.hazan@gmail.com> | 2013-03-12 09:19:43 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-03-12 09:19:43 +0000 |
commit | 6c3a2a80239080c022c0adbc66217e0324bdadeb (patch) | |
tree | 8439d48b40103a078e300021a17bb254a8a88af1 /src/modules/skin | |
parent | fc1957a69c0856e216ce8e252829aa5b339ea113 (diff) |
patch for langpack
git-svn-id: http://svn.miranda-ng.org/main/trunk@3983 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/skin')
-rw-r--r-- | src/modules/skin/skinicons.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/skin/skinicons.cpp b/src/modules/skin/skinicons.cpp index fae9cc9d7c..cd959b877a 100644 --- a/src/modules/skin/skinicons.cpp +++ b/src/modules/skin/skinicons.cpp @@ -82,9 +82,9 @@ static struct StandardIconDescription mainIcons[] = { SKINICON_OTHER_LOADEDGRAY, LPGEN("Running core plugin"), -IDI_LOADED_GRAY }, // 44
{ SKINICON_OTHER_NOTLOADEDGRAY, LPGEN("Non-loadable plugin"), -IDI_NOTLOADED_GRAY }, // 45
{ SKINICON_OTHER_FRAME, LPGEN("Frames"), -IDI_FRAME }, // 46
- { SKINICON_OTHER_VISIBLE_ALL, LPGEN("Always visible"), -IDI_ALWAYSVIS, 0, "Contact List" },
- { SKINICON_OTHER_INVISIBLE_ALL, LPGEN("Always invisible"), -IDI_NEVERVIS, 0, "Contact List" },
- { SKINICON_OTHER_STATUS_LOCKED, LPGEN("Locked status"), -IDI_STATUS_LOCKED, 0, "Status Icons" },
+ { SKINICON_OTHER_VISIBLE_ALL, LPGEN("Always visible"), -IDI_ALWAYSVIS, 0, LPGEN("Contact List") },
+ { SKINICON_OTHER_INVISIBLE_ALL, LPGEN("Always invisible"), -IDI_NEVERVIS, 0, LPGEN("Contact List") },
+ { SKINICON_OTHER_STATUS_LOCKED, LPGEN("Locked status"), -IDI_STATUS_LOCKED, 0, LPGEN("Status Icons") },
};
static struct StandardIconDescription statusIcons[] =
@@ -105,7 +105,7 @@ const char mainIconsFmt[] = "core_main_"; const char statusIconsFmt[] = "core_status_";
const char protoIconsFmt[] = LPGEN("%s Icons");
-#define PROTOCOLS_PREFIX "Status Icons/"
+#define PROTOCOLS_PREFIX LPGEN("Status Icons/")
#define GLOBAL_PROTO_NAME "*"
// load small icon (shared) it's not need to be destroyed
@@ -480,7 +480,7 @@ int LoadSkinIcons(void) //
// Add global icons to list
//
- sid.pszSection = PROTOCOLS_PREFIX "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 '*'
|