mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Date: Collapsed 'sunday' and 'sun' into a closeEnough() call
- Removed the STRING_DATE_JANUARY_LONG and STRING_DATE_JANUARY_SHORT, replacing them with STRING_DATE_JANUARY and a call to closeEnough(). This means you can enter 'jan', 'janu', 'janua', 'januar', 'january', instead of only 'jan' or 'january'.
This commit is contained in:
parent
2dd2bd22b8
commit
f1251303de
12 changed files with 225 additions and 408 deletions
|
@ -626,47 +626,26 @@
|
|||
#define STRING_DATE_INVALID_FORMAT "'{1}' non è una data valida nel formato '{2}'."
|
||||
#define STRING_DATE_BAD_WEEKSTART "La variabile di configurazione 'weekstart' può solo contenere 'Domenica' o 'Lunedì'."
|
||||
|
||||
#define STRING_DATE_JANUARY_LONG "gennaio"
|
||||
#define STRING_DATE_FEBRUARY_LONG "febbraio"
|
||||
#define STRING_DATE_MARCH_LONG "marzo"
|
||||
#define STRING_DATE_APRIL_LONG "aprile"
|
||||
#define STRING_DATE_MAY_LONG "maggio"
|
||||
#define STRING_DATE_JUNE_LONG "giugno"
|
||||
#define STRING_DATE_JULY_LONG "luglio"
|
||||
#define STRING_DATE_AUGUST_LONG "agosto"
|
||||
#define STRING_DATE_SEPTEMBER_LONG "settembre"
|
||||
#define STRING_DATE_OCTOBER_LONG "ottobre"
|
||||
#define STRING_DATE_NOVEMBER_LONG "novembre"
|
||||
#define STRING_DATE_DECEMBER_LONG "decembre"
|
||||
#define STRING_DATE_JANUARY "gennaio"
|
||||
#define STRING_DATE_FEBRUARY "febbraio"
|
||||
#define STRING_DATE_MARCH "marzo"
|
||||
#define STRING_DATE_APRIL "aprile"
|
||||
#define STRING_DATE_MAY "maggio"
|
||||
#define STRING_DATE_JUNE "giugno"
|
||||
#define STRING_DATE_JULY "luglio"
|
||||
#define STRING_DATE_AUGUST "agosto"
|
||||
#define STRING_DATE_SEPTEMBER "settembre"
|
||||
#define STRING_DATE_OCTOBER "ottobre"
|
||||
#define STRING_DATE_NOVEMBER "novembre"
|
||||
#define STRING_DATE_DECEMBER "decembre"
|
||||
|
||||
#define STRING_DATE_JANUARY_SHORT "gen"
|
||||
#define STRING_DATE_FEBRUARY_SHORT "feb"
|
||||
#define STRING_DATE_MARCH_SHORT "mar"
|
||||
#define STRING_DATE_APRIL_SHORT "apr"
|
||||
#define STRING_DATE_MAY_SHORT "mag"
|
||||
#define STRING_DATE_JUNE_SHORT "giu"
|
||||
#define STRING_DATE_JULY_SHORT "lug"
|
||||
#define STRING_DATE_AUGUST_SHORT "ago"
|
||||
#define STRING_DATE_SEPTEMBER_SHORT "set"
|
||||
#define STRING_DATE_OCTOBER_SHORT "ott"
|
||||
#define STRING_DATE_NOVEMBER_SHORT "nov"
|
||||
#define STRING_DATE_DECEMBER_SHORT "dic"
|
||||
|
||||
#define STRING_DATE_SUNDAY_LONG "domenica"
|
||||
#define STRING_DATE_MONDAY_LONG "lunedì"
|
||||
#define STRING_DATE_TUESDAY_LONG "martedì"
|
||||
#define STRING_DATE_WEDNESDAY_LONG "mercoledì"
|
||||
#define STRING_DATE_THURSDAY_LONG "giovedì"
|
||||
#define STRING_DATE_FRIDAY_LONG "venerdì"
|
||||
#define STRING_DATE_SATURDAY_LONG "sabato"
|
||||
|
||||
#define STRING_DATE_SUNDAY_SHORT "dom"
|
||||
#define STRING_DATE_MONDAY_SHORT "lun"
|
||||
#define STRING_DATE_TUESDAY_SHORT "mar"
|
||||
#define STRING_DATE_WEDNESDAY_SHORT "mer"
|
||||
#define STRING_DATE_THURSDAY_SHORT "gio"
|
||||
#define STRING_DATE_FRIDAY_SHORT "ven"
|
||||
#define STRING_DATE_SATURDAY_SHORT "sab"
|
||||
#define STRING_DATE_SUNDAY "domenica"
|
||||
#define STRING_DATE_MONDAY "lunedì"
|
||||
#define STRING_DATE_TUESDAY "martedì"
|
||||
#define STRING_DATE_WEDNESDAY "mercoledì"
|
||||
#define STRING_DATE_THURSDAY "giovedì"
|
||||
#define STRING_DATE_FRIDAY "venerdì"
|
||||
#define STRING_DATE_SATURDAY "sabato"
|
||||
|
||||
// dependency
|
||||
#define STRING_DEPEND_BLOCKED "Il task {1} è bloccato da:"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue