diff options
author | George Hazan <george.hazan@gmail.com> | 2013-04-11 13:17:15 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-04-11 13:17:15 +0000 |
commit | 8725517f626b8c7c43e3800ad7dcae99cec0649c (patch) | |
tree | bb3be877f6d8192627fc6a8777d5668441a21174 /plugins/SecureIM | |
parent | c9bebf6848647397c70c2e7a1f93e88f052c0efe (diff) |
Unicode, auto-translatable tooltips for Srmm icons
git-svn-id: http://svn.miranda-ng.org/main/trunk@4423 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM')
-rw-r--r-- | plugins/SecureIM/src/svcs_srmm.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/SecureIM/src/svcs_srmm.cpp b/plugins/SecureIM/src/svcs_srmm.cpp index 405206621a..6c05f77bca 100644 --- a/plugins/SecureIM/src/svcs_srmm.cpp +++ b/plugins/SecureIM/src/svcs_srmm.cpp @@ -40,26 +40,26 @@ void InitSRMMIcons() sid.dwId = MODE_NATIVE;
sid.hIcon = mode2icon(MODE_NATIVE|SECURED,3);
sid.hIconDisabled = mode2icon(MODE_NATIVE,3);
- sid.szTooltip = Translate("SecureIM [Native]");
+ sid.szTooltip = LPGEN("SecureIM [Native]");
Srmm_AddIcon(&sid);
// PGP
sid.dwId = MODE_PGP;
sid.hIcon = mode2icon(MODE_PGP|SECURED,3);
sid.hIconDisabled = mode2icon(MODE_PGP,3);
- sid.szTooltip = Translate("SecureIM [PGP]");
+ sid.szTooltip = LPGEN("SecureIM [PGP]");
Srmm_AddIcon(&sid);
// GPG
sid.dwId = MODE_GPG;
sid.hIcon = mode2icon(MODE_GPG|SECURED,3);
sid.hIconDisabled = mode2icon(MODE_GPG,3);
- sid.szTooltip = Translate("SecureIM [GPG]");
+ sid.szTooltip = LPGEN("SecureIM [GPG]");
Srmm_AddIcon(&sid);
// RSAAES
sid.dwId = MODE_RSAAES;
sid.hIcon = mode2icon(MODE_RSAAES|SECURED,3);
sid.hIconDisabled = mode2icon(MODE_RSAAES,3);
- sid.szTooltip = Translate("SecureIM [RSA/AES]");
+ sid.szTooltip = LPGEN("SecureIM [RSA/AES]");
Srmm_AddIcon(&sid);
// hook the window events so that we can can change the status of the icon
|