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
|
@ -627,47 +627,26 @@
|
|||
#define STRING_DATE_INVALID_FORMAT "'{1}' n'est pas une date au format '{2}'."
|
||||
#define STRING_DATE_BAD_WEEKSTART "La variable de configuration 'weekstart' ne peut contenir que 'dimanche' ou 'lundi'."
|
||||
|
||||
#define STRING_DATE_JANUARY_LONG "janvier"
|
||||
#define STRING_DATE_FEBRUARY_LONG "février"
|
||||
#define STRING_DATE_MARCH_LONG "mars"
|
||||
#define STRING_DATE_APRIL_LONG "avril"
|
||||
#define STRING_DATE_MAY_LONG "mai"
|
||||
#define STRING_DATE_JUNE_LONG "juin"
|
||||
#define STRING_DATE_JULY_LONG "juillet"
|
||||
#define STRING_DATE_AUGUST_LONG "août"
|
||||
#define STRING_DATE_SEPTEMBER_LONG "septembre"
|
||||
#define STRING_DATE_OCTOBER_LONG "octobre"
|
||||
#define STRING_DATE_NOVEMBER_LONG "novembre"
|
||||
#define STRING_DATE_DECEMBER_LONG "décembre"
|
||||
#define STRING_DATE_JANUARY "janvier"
|
||||
#define STRING_DATE_FEBRUARY "février"
|
||||
#define STRING_DATE_MARCH "mars"
|
||||
#define STRING_DATE_APRIL "avril"
|
||||
#define STRING_DATE_MAY "mai"
|
||||
#define STRING_DATE_JUNE "juin"
|
||||
#define STRING_DATE_JULY "juillet"
|
||||
#define STRING_DATE_AUGUST "août"
|
||||
#define STRING_DATE_SEPTEMBER "septembre"
|
||||
#define STRING_DATE_OCTOBER "octobre"
|
||||
#define STRING_DATE_NOVEMBER "novembre"
|
||||
#define STRING_DATE_DECEMBER "décembre"
|
||||
|
||||
#define STRING_DATE_JANUARY_SHORT "jan"
|
||||
#define STRING_DATE_FEBRUARY_SHORT "fév"
|
||||
#define STRING_DATE_MARCH_SHORT "mar"
|
||||
#define STRING_DATE_APRIL_SHORT "avr"
|
||||
#define STRING_DATE_MAY_SHORT "mai"
|
||||
#define STRING_DATE_JUNE_SHORT "jun"
|
||||
#define STRING_DATE_JULY_SHORT "jul"
|
||||
#define STRING_DATE_AUGUST_SHORT "aoû"
|
||||
#define STRING_DATE_SEPTEMBER_SHORT "sep"
|
||||
#define STRING_DATE_OCTOBER_SHORT "oct"
|
||||
#define STRING_DATE_NOVEMBER_SHORT "nov"
|
||||
#define STRING_DATE_DECEMBER_SHORT "déc"
|
||||
|
||||
#define STRING_DATE_SUNDAY_LONG "dimanche"
|
||||
#define STRING_DATE_MONDAY_LONG "lundi"
|
||||
#define STRING_DATE_TUESDAY_LONG "mardi"
|
||||
#define STRING_DATE_WEDNESDAY_LONG "mercredi"
|
||||
#define STRING_DATE_THURSDAY_LONG "jeudi"
|
||||
#define STRING_DATE_FRIDAY_LONG "vendredi"
|
||||
#define STRING_DATE_SATURDAY_LONG "samedi"
|
||||
|
||||
#define STRING_DATE_SUNDAY_SHORT "dim"
|
||||
#define STRING_DATE_MONDAY_SHORT "lun"
|
||||
#define STRING_DATE_TUESDAY_SHORT "mar"
|
||||
#define STRING_DATE_WEDNESDAY_SHORT "mer"
|
||||
#define STRING_DATE_THURSDAY_SHORT "jeu"
|
||||
#define STRING_DATE_FRIDAY_SHORT "ven"
|
||||
#define STRING_DATE_SATURDAY_SHORT "sam"
|
||||
#define STRING_DATE_SUNDAY "dimanche"
|
||||
#define STRING_DATE_MONDAY "lundi"
|
||||
#define STRING_DATE_TUESDAY "mardi"
|
||||
#define STRING_DATE_WEDNESDAY "mercredi"
|
||||
#define STRING_DATE_THURSDAY "jeudi"
|
||||
#define STRING_DATE_FRIDAY "vendredi"
|
||||
#define STRING_DATE_SATURDAY "samedi"
|
||||
|
||||
// dependency
|
||||
#define STRING_DEPEND_BLOCKED "Tâche {1} est bloquée par :"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue