Skip to content

Instantly share code, notes, and snippets.

@hkulekci
Created December 1, 2011 14:05
Show Gist options
  • Select an option

  • Save hkulekci/1416955 to your computer and use it in GitHub Desktop.

Select an option

Save hkulekci/1416955 to your computer and use it in GitHub Desktop.
date translate
var dateConvert = { "Mon,":"Pazartesi", "Tue,":"Salı", "Wed,":"Çarşamba", "Thu,":"Perşembe",
"Fri,":"Cuma", "Sat,":"Cumartesi", "Sun,":"Pazar",
"Jan":"Ocak", "Feb":"Şubat", "Mar":"Mart", "Apr":"Nisan", "May":"Mayıs",
"Jun":"", "Jul":"", "Aug":"Ağustos", "Sep":"Eylül", "Oct":"Ekim",
"Nov":"Kasım", "Dec":"Aralık"};
// usage :
var sss = "Wed, 30 Nov 2011 15:25:51 -0800".split(" ");
var kkk = dateConvert[sss[0]] + " " + sss[1] + " " + dateConvert[sss[2]] + " " + sss[3] + " " + sss[4];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment