diff options
author | slotwin <slotwin@users.noreply.github.com> | 2014-07-01 22:19:54 +0000 |
---|---|---|
committer | slotwin <slotwin@users.noreply.github.com> | 2014-07-01 22:19:54 +0000 |
commit | 30ff9acd5fa8d2897e8f206aef8288aa1ce8aa09 (patch) | |
tree | 175eb28a9b0ae310132914d9044866d22c1561fb /plugins/SimpleStatusMsg/src/utils.cpp | |
parent | 0c585fc454be53dbb02a34227bea7c990a7b14d3 (diff) |
Simple Status Message: proper capitalization (menus and dialogs)
git-svn-id: http://svn.miranda-ng.org/main/trunk@9640 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SimpleStatusMsg/src/utils.cpp')
-rw-r--r-- | plugins/SimpleStatusMsg/src/utils.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/plugins/SimpleStatusMsg/src/utils.cpp b/plugins/SimpleStatusMsg/src/utils.cpp index 39d6e1295a..3880df82a3 100644 --- a/plugins/SimpleStatusMsg/src/utils.cpp +++ b/plugins/SimpleStatusMsg/src/utils.cpp @@ -24,14 +24,14 @@ static LIST<void> arProtoHooks(5); static IconItem iconList[] =
{
- { LPGEN("Delete Selected"), "cross", IDI_CROSS },
- { LPGEN("Recent Message"), "recent", IDI_HISTORY },
- { LPGEN("Predefined Message"), "predef", IDI_MESSAGE },
- { LPGEN("Add to Predefined"), "add", IDI_PLUS },
- { LPGEN("Clear History"), "clear", IDI_CHIST },
- { LPGEN("Copy Away Message"), "copy", IDI_COPY },
- { LPGEN("Change Status Message"), "csmsg", IDI_CSMSG, },
- { LPGEN("Go to URL in Away Message"), "gotourl", IDI_GOTOURL }
+ { LPGEN("Delete selected"), "cross", IDI_CROSS },
+ { LPGEN("Recent message"), "recent", IDI_HISTORY },
+ { LPGEN("Predefined message"), "predef", IDI_MESSAGE },
+ { LPGEN("Add to predefined"), "add", IDI_PLUS },
+ { LPGEN("Clear history"), "clear", IDI_CHIST },
+ { LPGEN("Copy Away message"), "copy", IDI_COPY },
+ { LPGEN("Change status message"), "csmsg", IDI_CSMSG, },
+ { LPGEN("Go to URL in Away message"), "gotourl", IDI_GOTOURL }
};
void IconsInit(void)
|