diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-02-08 07:03:44 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-02-08 07:03:44 +0000 |
commit | 34d07e58e2b137439d1a6985f76c0b8b90bbff44 (patch) | |
tree | ecb6f59c655ce0bdc2fa927d57214ee0ff522940 /plugins/HistorySweeperLight | |
parent | 8b6f18b97aa8465aec439b9182f67d786ae25ae4 (diff) |
- translation fixes (patch from Basil)
git-svn-id: http://svn.miranda-ng.org/main/trunk@3465 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/HistorySweeperLight')
-rw-r--r-- | plugins/HistorySweeperLight/src/options.cpp | 48 |
1 files changed, 24 insertions, 24 deletions
diff --git a/plugins/HistorySweeperLight/src/options.cpp b/plugins/HistorySweeperLight/src/options.cpp index 8cae37d6e5..5ca89ed4c0 100644 --- a/plugins/HistorySweeperLight/src/options.cpp +++ b/plugins/HistorySweeperLight/src/options.cpp @@ -21,30 +21,30 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "historysweeperlight.h"
-// Time Stamps strings
-const char* time_stamp_strings[] =
-{
- "Delete older than 1 day",
- "Delete older than 3 days",
- "Delete older than 7 days",
- "Delete older than 2 weeks (14 days)",
- "Delete older than 1 month (30 days)",
- "Delete older than 3 months (90 days)",
- "Delete older than 6 months (180 days)",
- "Delete older than 1 year (365 days)"
-};
-
-const char* keep_strings[] =
-{
- "Keep 1 last event",
- "Keep 2 last events",
- "Keep 5 last events",
- "Keep 10 last events",
- "Keep 20 last events",
- "Keep 50 last events"
-};
-
-static IconItem iconList[] =
+// Time Stamps strings +const char* time_stamp_strings[] = +{ + LPGEN("Delete older than 1 day"), + LPGEN("Delete older than 3 days"), + LPGEN("Delete older than 7 days"), + LPGEN("Delete older than 2 weeks (14 days)"), + LPGEN("Delete older than 1 month (30 days)"), + LPGEN("Delete older than 3 months (90 days)"), + LPGEN("Delete older than 6 months (180 days)"), + LPGEN("Delete older than 1 year (365 days)") +}; + +const char* keep_strings[] = +{ + LPGEN("Keep 1 last event"), + LPGEN("Keep 2 last events"), + LPGEN("Keep 5 last events"), + LPGEN("Keep 10 last events"), + LPGEN("Keep 20 last events"), + LPGEN("Keep 50 last events") +}; + +static IconItem iconList[] = {
{ "Default Action", "actG", IDI_ACTG },
{ "Action 1", "act1", IDI_ACT1 },
|