diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-10-09 08:46:25 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-10-09 08:46:25 +0000 |
commit | 2ff607d58d8889248484d3bcd4eb123a13c0a164 (patch) | |
tree | e4d9a9617e0d7d1cfe249d00aa2eaaf85c0c286e /plugins/CSList/src | |
parent | 9aac6d3df840fb35a4798f25929bd7187f1c65a9 (diff) |
English US correction (patch by RMN)
git-svn-id: http://svn.miranda-ng.org/main/trunk@6413 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CSList/src')
-rw-r--r-- | plugins/CSList/src/cslist.cpp | 2 | ||||
-rw-r--r-- | plugins/CSList/src/cslist.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/CSList/src/cslist.cpp b/plugins/CSList/src/cslist.cpp index 067dec2125..75bd6d6ddb 100644 --- a/plugins/CSList/src/cslist.cpp +++ b/plugins/CSList/src/cslist.cpp @@ -598,7 +598,7 @@ CSListView::CSListView(HWND hwnd, CSWindow* parent) lg.cbSize = sizeof(LVGROUP);
lg.mask = LVGF_HEADER | LVGF_GROUPID;
- lg.pszHeader = TranslateT("Favourites");
+ lg.pszHeader = TranslateT("Favorites");
lg.iGroupId = 0;
ListView_InsertGroup( m_handle, -1, &lg );
diff --git a/plugins/CSList/src/cslist.h b/plugins/CSList/src/cslist.h index 35bafb8b4b..1a816acc69 100644 --- a/plugins/CSList/src/cslist.h +++ b/plugins/CSList/src/cslist.h @@ -148,7 +148,7 @@ static struct CSForm { // icons + buttons { IDC_ADD, LPGENT("Add new item"), LPGENT("Add"), "add", IDI_ADD },
{ IDC_MODIFY, LPGENT("Modify selected item"), LPGENT("Modify"), "modify", IDI_MODIFY },
{ IDC_REMOVE, LPGENT("Delete selected item"), LPGENT("Remove"), "remove", IDI_REMOVE },
- { IDC_FAVOURITE, LPGENT("Set/unset current item as favorite"), LPGENT("Favourite"), "favourite", IDI_FAVOURITE },
+ { IDC_FAVOURITE, LPGENT("Set/unset current item as favorite"), LPGENT("Favorite"), "favourite", IDI_FAVOURITE },
{ IDC_UNDO, LPGENT("Undo changes"), LPGENT("Undo changes"), "undo", IDI_UNDO },
{ IDC_IMPORT, LPGENT("Import statuses from database"), LPGENT("Import"), "import", IDI_IMPORT },
{ IDC_FILTER, LPGENT("Filter list"), LPGENT("Filter"), "filter", IDI_FILTER },
|