diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-15 08:32:47 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-03-15 08:32:47 +0000 |
commit | f4a6ef4a01a6080678c0df1b5d7469d194003a7d (patch) | |
tree | 470d58fdcc275fd4b2922f4ed3d5e1fb65a75f6d /plugins/WhenWasIt/src | |
parent | da939c25c66bb0add8faf47ce005b06b862fe828 (diff) |
- translation fixes (patch from Basil)
git-svn-id: http://svn.miranda-ng.org/main/trunk@4040 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/WhenWasIt/src')
-rw-r--r-- | plugins/WhenWasIt/src/icons.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/WhenWasIt/src/icons.cpp b/plugins/WhenWasIt/src/icons.cpp index edfc7cc8e8..60afbf4fc4 100644 --- a/plugins/WhenWasIt/src/icons.cpp +++ b/plugins/WhenWasIt/src/icons.cpp @@ -61,10 +61,10 @@ int AddIcons() hDTB[1] = AddIcon("DTB1", LPGEN("1 day to birthday"), tszPath, IDI_DTB1);
for (int i = 2; i < cDTB; i++) {
sprintf(name, "DTB%d", i);
- sprintf(description, "%d days to birthday", i);
+ sprintf(description, Translate("%d days to birthday"), i);
hDTB[i] = AddIcon(name, description, tszPath, IDI_DTB0+i);
}
- sprintf(description, "More than %d days to birthday", cDTB - 1);
+ sprintf(description, Translate("More than %d days to birthday"), cDTB - 1);
hDTBMore = AddIcon("DTBMore", description, tszPath, IDI_DTBMORE);
hWWIExtraIcons = ExtraIcon_Register("WhenWasIt", LPGEN("WhenWasIt birthday reminder"), "MenuCheck");
|