summaryrefslogtreecommitdiff
path: root/lisp/calendar/cal-french.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-06-28 08:44:25 +0000
committerRichard M. Stallman <rms@gnu.org>1996-06-28 08:44:25 +0000
commit1569c5cf4a7d5db83cc9a8be06535b7609f41028 (patch)
tree5fd989a06b92781ebf0a581d81a4db1ec4762ca5 /lisp/calendar/cal-french.el
parent7b911cb2d81b73b3814a957109e29dbe8a1aab7a (diff)
downloademacs-1569c5cf4a7d5db83cc9a8be06535b7609f41028.tar.gz
(french-calendar-accents): New variable.
(french-calendar-month-name-array): Check that variable. (french-calendar-special-days-array): Likewise. (calendar-french-date-string): Likewise. (calendar-goto-french-date): Likewise.
Diffstat (limited to 'lisp/calendar/cal-french.el')
-rw-r--r--lisp/calendar/cal-french.el51
1 files changed, 35 insertions, 16 deletions
diff --git a/lisp/calendar/cal-french.el b/lisp/calendar/cal-french.el
index c11a7cd0bb4..8f68841d229 100644
--- a/lisp/calendar/cal-french.el
+++ b/lisp/calendar/cal-french.el
@@ -29,10 +29,9 @@
;; diary.el that deal with the French Revolutionary calendar.
;; Technical details of the French Revolutionary calendar can be found in
-;; ``Calendrical Calculations, Part II: Three Historical Calendars''
-;; by E. M. Reingold, N. Dershowitz, and S. M. Clamen,
-;; Software--Practice and Experience, Volume 23, Number 4 (April, 1993),
-;; pages 383-404.
+;; ``Calendrical Calculations, Part II: Three Historical Calendars'' by
+;; E. M. Reingold, N. Dershowitz, and S. M. Clamen, Software--Practice and
+;; Experience, Volume 23, Number 4 (April, 1993), pages 383-404.
;; Comments, corrections, and improvements should be sent to
;; Edward M. Reingold Department of Computer Science
@@ -44,20 +43,31 @@
(require 'calendar)
+(defvar french-calendar-accents
+ (and (char-table-p standard-display-table)
+ (equal (aref standard-display-table 161) [161]))
+ "True if diacritical marks are available.")
+
(defconst french-calendar-epoch (calendar-absolute-from-gregorian '(9 22 1792))
"Absolute date of start of French Revolutionary calendar = September 22, 1792.")
(defconst french-calendar-month-name-array
- ["Vende'miaire" "Brumaire" "Frimaire" "Nivo^se" "Pluvio^se" "Vento^se"
- "Germinal" "Flore'al" "Prairial" "Messidor" "Thermidor" "Fructidor"])
+ (if french-calendar-accents
+ ["Vendémiaire" "Brumaire" "Frimaire" "Nivôse" "Pluviôse" "Ventôse"
+ "Germinal" "Floréal" "Prairial" "Messidor" "Thermidor" "Fructidor"]
+ ["Vende'miaire" "Brumaire" "Frimaire" "Nivo^se" "Pluvio^se" "Vento^se"
+ "Germinal" "Flore'al" "Prairial" "Messidor" "Thermidor" "Fructidor"]))
(defconst french-calendar-day-name-array
["Primidi" "Duodi" "Tridi" "Quartidi" "Quintidi" "Sextidi" "Septidi"
"Octidi" "Nonidi" "Decadi"])
(defconst french-calendar-special-days-array
- ["de la Vertu" "du Genie" "du Labour" "de la Raison" "de la Re'compense"
- "de la Re'volution"])
+ (if french-calendar-accents
+ ["de la Vertu" "du Genie" "du Labour" "de la Raison"
+ "de la Récompense" "de la Révolution"]
+ ["de la Vertu" "du Genie" "du Labour" "de la Raison" "de la Re'compense"
+ "de la Re'volution"]))
(defun french-calendar-leap-year-p (year)
"True if YEAR is a leap year on the French Revolutionary calendar.
@@ -143,14 +153,19 @@ Defaults to today's date if DATE is not given."
(d (extract-calendar-day french-date)))
(cond
((< y 1) "")
- ((= m 13) (format "Jour %s de l'Anne'e %d de la Re'volution"
+ ((= m 13) (format (if french-calendar-accents
+ "Jour %s de l'Année %d de la Révolution"
+ "Jour %s de l'Anne'e %d de la Re'volution")
(aref french-calendar-special-days-array (1- d))
y))
- (t (format "De'cade %s, %s de %s de l'Anne'e %d de la Re'volution"
- (make-string (1+ (/ (1- d) 10)) ?I)
- (aref french-calendar-day-name-array (% (1- d) 10))
- (aref french-calendar-month-name-array (1- m))
- y)))))
+ (t (format
+ (if french-calendar-accents
+ "Décade %s, %s de %s de l'Année %d de la Révolution"
+ "De'cade %s, %s de %s de l'Anne'e %d de la Re'volution")
+ (make-string (1+ (/ (1- d) 10)) ?I)
+ (aref french-calendar-day-name-array (% (1- d) 10))
+ (aref french-calendar-month-name-array (1- m))
+ y)))))
(defun calendar-print-french-date ()
"Show the French Revolutionary calendar equivalent of the selected date."
@@ -165,7 +180,9 @@ Defaults to today's date if DATE is not given."
Echo French Revolutionary date unless NOECHO is t."
(interactive
(let* ((year (calendar-read
- "Anne'e de la Re'volution (>0): "
+ (if french-calendar-accents
+ "Année de la Révolution (>0): "
+ "Anne'e de la Re'volution (>0): ")
'(lambda (x) (> x 0))
(int-to-string
(extract-calendar-year
@@ -199,7 +216,9 @@ Echo French Revolutionary date unless NOECHO is t."
(decade (if (> month 12)
1
(calendar-read
- "De'cade (1-3): "
+ (if french-calendar-accents
+ "Décade (1-3): "
+ "De'cade (1-3): ")
'(lambda (x) (memq x '(1 2 3))))))
(day (if (> month 12)
(- month 12)