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

  1. (function($) {
  2.     var cultures = $.global.cultures,
  3.         en = cultures.en,
  4.         standard = en.calendars.standard,
  5.         culture = cultures["da"] = $.extend(true, {}, en, {
  6.         name: "da",
  7.         englishName: "Danish",
  8.         nativeName: "dansk",
  9.         language: "da",
  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","mandag","tirsdag","onsdag","torsdag","fredag","l├╕rdag"],
  30.                     namesAbbr: ["s├╕","ma","ti","on","to","fr","l├╕"],
  31.                     namesShort: ["s├╕","ma","ti","on","to","fr","l├╕"]
  32.                 },
  33.                 months: {
  34.                     names: ["januar","februar","marts","april","maj","juni","juli","august","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: "dd-MM-yyyy",
  41.                     D: "d. MMMM yyyy",
  42.                     t: "HH:mm",
  43.                     T: "HH:mm:ss",
  44.                     f: "d. MMMM yyyy HH:mm",
  45.                     F: "d. MMMM yyyy HH:mm:ss",
  46.                     M: "d. MMMM",
  47.                     Y: "MMMM yyyy"
  48.                 }
  49.             })
  50.         }
  51.     }, cultures["da"]);
  52.     culture.calendar = culture.calendars.standard;
  53. })(jQuery);