(function timeAgo(selector) {   Date.prototype.addHours = function(h) { this.setTime(this.getTime() + (h*60*60*1000)); return this; }    var templates = {        prefix: "",        suffix: " önce",        seconds: "Birkaç saniye",        minute: "yaklaşık bir dakika",        minutes: "%d dakika",        hour: "yaklaşık bir saat",        hours: "%d saat",        day: "bir gün",        days: "%d gün",        month: "yaklaşık bir ay",        months: "%d ay",        year: "bir yıl",        years: "%d yıl"    };    var template = function(t, n) {        return templates[t] && templates[t].replace(/%d/i, Math.abs(Math.round(n)));    };    var timer = function(time) {        if (!time) return;        time = time.replace(/\.\d+/, "");        time = time.replace(/-/, "/").replace(/-/, "/");        time = time.replace(/T/, " ").replace(/Z/, " UTC");        time = time.replace(/([\+\-]\d\d)\:?(\d\d)/, " $1$2");        time = new Date(time * 1000 || time);        var now = new Date().addHours(3)        var seconds = ((now.getTime() - time) * .001) >> 0;        var minutes = seconds / 60;        var hours = minutes / 60;        var days = hours / 24;        var years = days / 365;        return templates.prefix + (seconds < 45 && template('seconds', seconds) || seconds < 90 && template('minute', 1) || minutes < 45 && template('minutes', minutes) || minutes < 90 && template('hour', 1) || hours < 24 && template('hours', hours) || hours < 42 && template('day', 1) || days < 30 && template('days', days) || days < 45 && template('month', 1) || days < 365 && template('months', days / 30) || years < 1.5 && template('year', 1) || template('years', years)) + templates.suffix;    };    var elements = document.getElementsByClassName('datetime');    for (var i in elements) {        var $this = elements[i];        if (typeof $this === 'object') {            $this.innerHTML = timer($this.getAttribute('title') || $this.getAttribute('data-datetime'));        }    }    setTimeout(timeAgo, 60000); })();