Add a French calendar.

PR:		32265
Submitted by:	Thierry Thomas <thierry@pompo.net>
MFC after:	1 week
This commit is contained in:
David Malone 2002-04-28 23:22:13 +00:00
parent 780b1c0997
commit df374705d2
5 changed files with 21 additions and 3 deletions

View File

@ -205,6 +205,8 @@
calendar
de_DE.ISO8859-1
..
fr_FR.ISO_8859-1
..
hr_HR.ISO8859-2
..
ru_RU.KOI8-R

View File

@ -3,7 +3,8 @@
PROG= calendar
SRCS= calendar.c io.c day.c ostern.c paskha.c
INTER= de_DE.ISO8859-1 hr_HR.ISO8859-2 ru_RU.KOI8-R
NO_WERROR= yes
INTER= de_DE.ISO8859-1 fr_FR.ISO_8859-1 hr_HR.ISO8859-2 ru_RU.KOI8-R
DE_LINKS= de_DE.ISO_8859-1 de_DE.ISO8859-15 de_DE.ISO_8859-15
HR_LINKS= hr_HR.ISO_8859-2
TEXTMODE?= 444

View File

@ -208,6 +208,8 @@ Strongly oriented toward rock 'n' roll.
U.S. holidays.
This calendar should be updated yearly by the local system administrator
so that roving holidays are set correctly for the current year.
.It Pa calendar.french
French calendar.
.It Pa calendar.german
German calendar.
.It Pa calendar.russian

View File

@ -8,9 +8,10 @@
#define _calendar_all_
#include <calendar.world>
#include <calendar.german>
#include <calendar.usholiday>
#include <calendar.croatian>
#include <calendar.french>
#include <calendar.german>
#include <calendar.russian>
#include <calendar.usholiday>
#endif /* !_calendar_all_ */

View File

@ -0,0 +1,12 @@
/*
* French calendar file(s)
*
* $FreeBSD$
*/
#ifndef _calendar_french_
#define _calendar_french_
#include <fr_FR.ISO_8859-1/calendar.all>
#endif /* !_calendar_french_ */