diff options
Diffstat (limited to 'plugins/HistorySweeperLight/src')
-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 },
|