Ticket #1141 (closed defect: fixed)

Opened 3 years ago

Last modified 3 years ago

german jscalendar translation broken

Reported by: Brian Sutherland <jinty@web.de> Assigned to: lregebro
Priority: P1 Milestone: CPS 3.4.0
Component: CalZope Version: TRUNK
Severity: normal Keywords:
Cc:

Description

Yep, it seems broken when the browser language is set to de. This patch seems fixes it.

Index: calendar-de.js
===================================================================
--- calendar-de.js      (revision 27741)
+++ calendar-de.js      (working copy)
@@ -43,6 +43,11 @@
  "Sa",
  "So");

+
+// First day of the week. "0" means display Sunday first, "1" means display
+// Monday first, etc.
+Calendar._FD = 1;
+
 // full month names
 Calendar._MN = new Array
 ("Januar",

Change History

11/18/05 15:28:16 changed by gracinet

Besides the fact that the first week day in Germany is monday, there's a bug in jscalendar (wrong week number). AFAIK, it affects only years that start on a saturday, if sunday is the first day of the week.

11/21/05 14:57:20 changed by lregebro

  • status changed from new to closed.
  • resolution set to fixed.

Solved in [29670].

06/17/06 20:39:48 changed by fguillaume

  • milestone changed from CPS 3.6.0 to CPS 3.4.0.