- Localized 'calendar' command.
- Localized Date object, somewhat.
This commit is contained in:
Paul Beckingham
2011-10-02 23:08:23 -04:00
parent 6e21cc5b2a
commit 83081c87bd
3 changed files with 128 additions and 90 deletions

View File

@@ -434,6 +434,12 @@
#define STRING_CMD_HELP_USAGE_LABEL "Usage:"
#define STRING_CMD_HELP_USAGE_DESC "Runs rc.default.command, if specified."
#define STRING_CMD_HELP_ALIASED "Aliased to '{1}'"
#define STRING_CMD_CAL_USAGE "Shows a calendar, with due tasks marked"
#define STRING_CMD_CAL_BAD_MONTH "Argument '{1}' is not a valid month."
#define STRING_CMD_CAL_BAD_ARG "Could not recognize argument '{1}'."
#define STRING_CMD_CAL_LABEL_DATE "Date"
#define STRING_CMD_CAL_LABEL_HOL "Holiday"
#define STRING_CMD_CAL_SUN_MON "The 'weekstart' configuration variable may only contain 'Sunday' or 'Monday'."
// Config
#define STRING_CONFIG_OVERNEST "Configuration file nested to more than 10 levels deep - this has to be a mistake."
@@ -458,6 +464,48 @@
#define STRING_DATE_INVALID_FORMAT "'{1}' is not a valid date in the '{2}' format."
#define STRING_DATE_BAD_WEEKSTART "The 'weekstart' configuration variable may only contain 'Sunday' or 'Monday'."
#define STRING_DATE_JANUARY_LONG "january"
#define STRING_DATE_FEBRUARY_LONG "february"
#define STRING_DATE_MARCH_LONG "march"
#define STRING_DATE_APRIL_LONG "april"
#define STRING_DATE_MAY_LONG "may"
#define STRING_DATE_JUNE_LONG "june"
#define STRING_DATE_JULY_LONG "july"
#define STRING_DATE_AUGUST_LONG "august"
#define STRING_DATE_SEPTEMBER_LONG "september"
#define STRING_DATE_OCTOBER_LONG "october"
#define STRING_DATE_NOEMBER_LONG "november"
#define STRING_DATE_DECEMBER_LONG "december"
#define STRING_DATE_JANUARY_SHORT "jan"
#define STRING_DATE_FEBRUARY_SHORT "feb"
#define STRING_DATE_MARCH_SHORT "mar"
#define STRING_DATE_APRIL_SHORT "apr"
#define STRING_DATE_MAY_SHORT "may"
#define STRING_DATE_JUNE_SHORT "jun"
#define STRING_DATE_JULY_SHORT "jul"
#define STRING_DATE_AUGUST_SHORT "aug"
#define STRING_DATE_SEPTEMBER_SHORT "sep"
#define STRING_DATE_OCTOBER_SHORT "oct"
#define STRING_DATE_NOEMBER_SHORT "nov"
#define STRING_DATE_DECEMBER_SHORT "dec"
#define STRING_DATE_SUNDAY_LONG "sunday"
#define STRING_DATE_MONDAY_LONG "monday"
#define STRING_DATE_TUESDAY_LONG "tuesday"
#define STRING_DATE_WEDNESDAY_LONG "wednesday"
#define STRING_DATE_THURSDAY_LONG "thursday"
#define STRING_DATE_FRIDAY_LONG "friday"
#define STRING_DATE_SATURDAY_LONG "saturday"
#define STRING_DATE_SUNDAY_SHORT "sun"
#define STRING_DATE_MONDAY_SHORT "mon"
#define STRING_DATE_TUESDAY_SHORT "tue"
#define STRING_DATE_WEDNESDAY_SHORT "wed"
#define STRING_DATE_THURSDAY_SHORT "thu"
#define STRING_DATE_FRIDAY_SHORT "fri"
#define STRING_DATE_SATURDAY_SHORT "sat"
// dependency
#define STRING_DEPEND_BLOCKED "Task {1} is blocked by:"
#define STRING_DEPEND_BLOCKING "and is blocking:"