Skip to content

Instantly share code, notes, and snippets.

@yasinkuyu
Created June 30, 2016 21:19
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save yasinkuyu/69c3f0447d48a7e9314b888163763118 to your computer and use it in GitHub Desktop.
Save yasinkuyu/69c3f0447d48a7e9314b888163763118 to your computer and use it in GitHub Desktop.
Daterangepicker Turkish
//daterangepicker.js
$(function() {
function cb(start, end) {
$('#reportrange span').html(start.format('MMMM D') + ' - ' + end.format('MMMM D'));
}
cb(moment().subtract(29, 'days'), moment());
$('#reportrange').daterangepicker({
"timePicker24Hour": true,
"opens": "left",
"applyClass": "btn btn-xs btn-default",
"cancelClass": "btn btn-xs btn-link",
ranges: {
'Bugün': [moment(), moment()],
'Dün': [moment().subtract(1, 'days'), moment().subtract(1, 'days')],
'Son 7 gün': [moment().subtract(6, 'days'), moment()],
'Son 30 gün': [moment().subtract(29, 'days'), moment()],
'Bu ay': [moment().startOf('month'), moment().endOf('month')],
'Geçen ay': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')]
},
"locale": {
"format": "DD/MM/YYYY",
"separator": " - ",
"applyLabel": "Uygula",
"cancelLabel": "Vazgeç",
"fromLabel": "Dan",
"toLabel": "a",
"customRangeLabel": "Seç",
"daysOfWeek": [
"Pt",
"Sl",
"Çr",
"Pr",
"Cm",
"Ct",
"Pz"
],
"monthNames": [
"Ocak",
"Şubat",
"Mart",
"Nisan",
"Mayıs",
"Haziran",
"Temmuz",
"Ağustos",
"Eylül",
"Ekim",
"Kasım",
"Aralık"
],
"firstDay": 1
}
}, cb);
});
@ysnozkn
Copy link

ysnozkn commented Feb 6, 2022

Tşkler.

@muratbal17
Copy link

Teşekkürler

@OrhanOzyalcin
Copy link

Teşekkürler,

@MBHoroz
Copy link

MBHoroz commented Nov 23, 2023

Teşekkürler

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment