From: <var...@us...> - 2015-04-16 15:18:50
|
Revision: 9682 http://sourceforge.net/p/phpwiki/code/9682 Author: vargenau Date: 2015-04-16 15:18:43 +0000 (Thu, 16 Apr 2015) Log Message: ----------- jscalendar: make sv work Modified Paths: -------------- trunk/themes/blog/jscalendar/lang/calendar-sv.js Modified: trunk/themes/blog/jscalendar/lang/calendar-sv.js =================================================================== --- trunk/themes/blog/jscalendar/lang/calendar-sv.js 2015-04-16 15:12:23 UTC (rev 9681) +++ trunk/themes/blog/jscalendar/lang/calendar-sv.js 2015-04-16 15:18:43 UTC (rev 9682) @@ -80,8 +80,16 @@ Calendar._TT["SEL_DATE"] = "Välj datum"; Calendar._TT["DRAG_TO_MOVE"] = "Drag för att flytta"; Calendar._TT["PART_TODAY"] = " (idag)"; -Calendar._TT["MON_FIRST"] = "Visa måndag först"; -Calendar._TT["SUN_FIRST"] = "Visa söndag först"; + +// the following is to inform that "%s" is to be the first day of week +// %s will be replaced with the day name. +Calendar._TT["DAY_FIRST"] = "Display %s first"; + +// This may be locale-dependent. It specifies the week-end days, as an array +// of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1 +// means Monday, etc. +Calendar._TT["WEEKEND"] = "0,6"; + Calendar._TT["CLOSE"] = "Stäng"; Calendar._TT["TODAY"] = "Idag"; Calendar._TT["TIME_PART"] = "(Skift-)klicka eller drag för att ändra tid"; @@ -91,3 +99,4 @@ Calendar._TT["TT_DATE_FORMAT"] = "%A %d %b %Y"; Calendar._TT["WK"] = "vecka"; +Calendar._TT["TIME"] = "Tid:"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |