home *** CD-ROM | disk | FTP | other *** search
/ Freelog 117 / FreelogNo117-OctobreNovembre2013.iso / Theme / 8GadgetPack / 8GadgetPackSetup.msi / Gadgets.7z / Gadgets / tweetz.gadget / sv / jquery.glob.sv.js next >
Text File  |  2013-04-09  |  2KB  |  53 lines

  1. (function($) {
  2.     var cultures = $.cultures,
  3.         en = cultures.en,
  4.         standard = en.calendars.standard,
  5.         culture = cultures["sv"] = $.extend(true, {}, en, {
  6.         name: "sv",
  7.         englishName: "Swedish",
  8.         nativeName: "svenska",
  9.         language: "sv",
  10.         numberFormat: {
  11.             ',': "┬á",
  12.             '.': ",",
  13.             percent: {
  14.                 ',': "┬á",
  15.                 '.': ","
  16.             },
  17.             currency: {
  18.                 pattern: ["-n $","n $"],
  19.                 ',': ".",
  20.                 '.': ",",
  21.                 symbol: "kr"
  22.             }
  23.         },
  24.         calendars: {
  25.             standard: $.extend(true, {}, standard, {
  26.                 '/': "-",
  27.                 firstDay: 1,
  28.                 days: {
  29.                     names: ["s├╢ndag","m├Ñndag","tisdag","onsdag","torsdag","fredag","l├╢rdag"],
  30.                     namesAbbr: ["s├╢","m├Ñ","ti","on","to","fr","l├╢"],
  31.                     namesShort: ["s├╢","m├Ñ","ti","on","to","fr","l├╢"]
  32.                 },
  33.                 months: {
  34.                     names: ["januari","februari","mars","april","maj","juni","juli","augusti","september","oktober","november","december",""],
  35.                     namesAbbr: ["jan","feb","mar","apr","maj","jun","jul","aug","sep","okt","nov","dec",""]
  36.                 },
  37.                 AM: null,
  38.                 PM: null,
  39.                 patterns: {
  40.                     d: "yyyy-MM-dd",
  41.                     D: "'den 'd MMMM yyyy",
  42.                     t: "HH:mm",
  43.                     T: "HH:mm:ss",
  44.                     f: "'den 'd MMMM yyyy HH:mm",
  45.                     F: "'den 'd MMMM yyyy HH:mm:ss",
  46.                     M: "'den 'd MMMM",
  47.                     Y: "MMMM yyyy"
  48.                 }
  49.             })
  50.         }
  51.     }, cultures["sv"]);
  52.     culture.calendar = culture.calendars.standard;
  53. })(jQuery);