]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Use RFC822 timezone format.
authorBruno Haible <bruno@clisp.org>
Tue, 15 May 2001 18:24:08 +0000 (18:24 +0000)
committerBruno Haible <bruno@clisp.org>
Sun, 28 Jun 2009 14:35:48 +0000 (16:35 +0200)
misc/ChangeLog
misc/po-mode.el

index a857d0f3d8520dc690c0379b6fb888e54716f643..22c7609330502f332cafd1ba062191a0aa08d649 100644 (file)
@@ -2,6 +2,11 @@
 
        * gettextize.in: Tell the user about glibc21.m4.
 
+2001-05-09  Bruno Haible  <haible@clisp.cons.org>
+
+       * po-mode.el (po-replace-revision-date): For the timezone, use RFC 822
+       format [+/-]HHMM, not [+/-]HH:MM. Reported by Jan D.
+
 2001-04-19  Bruno Haible  <haible@clisp.cons.org>
 
        * gettext-0.10.37 released.
index 2eed6efff7749de42790c4325a05d692fd21c047..9061b0704de8c9bd8b991d94314cd0929bc1cb77 100644 (file)
@@ -1019,7 +1019,7 @@ Position %d/%d; %d translated, %d fuzzy, %d untranslated, %d obsolete")
                       (time (current-time))
                       (seconds (or (car (current-time-zone time)) 0))
                       (minutes (/ (abs seconds) 60))
-                      (zone (format "%c%02d:%02d"
+                      (zone (format "%c%02d%02d"
                                     (if (< seconds 0) ?- ?+)
                                     (/ minutes 60)
                                     (% minutes 60))))