diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-19 08:29:12 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-19 08:29:12 +0000 |
commit | 7b2fb827ca6b037a595c4dbac2503d18b4bc8048 (patch) | |
tree | f09e3a354e0b7e4cf73855dd21542ac34ddad63c /plugins/FileAsMessage/src | |
parent | 558414628226bc5f5f6a9c6e704fb382ff6cf319 (diff) |
- translation fixes (patch from Basil)
git-svn-id: http://svn.miranda-ng.org/main/trunk@4106 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FileAsMessage/src')
-rw-r--r-- | plugins/FileAsMessage/src/main.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/FileAsMessage/src/main.cpp b/plugins/FileAsMessage/src/main.cpp index 3c6d397aef..a7e7b64350 100644 --- a/plugins/FileAsMessage/src/main.cpp +++ b/plugins/FileAsMessage/src/main.cpp @@ -27,11 +27,11 @@ HICON hIcons[5]; static IconItem iconList[] =
{
- { "Play", "FePlay", IDI_PLAY },
- { "Pause", "FePause", IDI_PAUSE },
- { "Revive", "FeRefresh", IDI_REFRESH },
- { "Stop", "FeStop", IDI_STOP },
- { "Main", "FeMain", IDI_SMALLICON },
+ { LPGEN("Play"), "FePlay", IDI_PLAY },
+ { LPGEN("Pause"), "FePause", IDI_PAUSE },
+ { LPGEN("Revive"), "FeRefresh", IDI_REFRESH },
+ { LPGEN("Stop"), "FeStop", IDI_STOP },
+ { LPGEN("Main"), "FeMain", IDI_SMALLICON },
};
int iIconId[5] = {3,2,4,1,0};
|