lib: Add fortnightly as a synonym for biweekly.

This commit is contained in:
Stephen Morgan 2020-06-18 22:37:00 +10:00 committed by Simon Michael
parent e0fab4f882
commit b3cd865786
3 changed files with 4 additions and 1 deletions

View File

@ -984,6 +984,8 @@ reportingintervalp = choice' [
tryinterval "year" "yearly" Years,
do string' "biweekly"
return $ Weeks 2,
do string' "fortnightly"
return $ Weeks 2,
do string' "bimonthly"
return $ Months 2,
do string' "every"

View File

@ -1521,7 +1521,7 @@ T}
.TE
.PP
The following more complex report intervals are also supported:
\f[C]biweekly\f[R], \f[C]bimonthly\f[R],
\f[C]biweekly\f[R], \f[C]fortnightly\f[R], \f[C]bimonthly\f[R],
\f[C]every day|week|month|quarter|year\f[R],
\f[C]every N days|weeks|months|quarters|years\f[R].
.PP

View File

@ -1029,6 +1029,7 @@ For example:
The following more complex report intervals are also supported:
`biweekly`,
`fortnightly`,
`bimonthly`,
`every day|week|month|quarter|year`,
`every N days|weeks|months|quarters|years`.