{% raw %} /* gettext-compatible _ function, example of usage: * * > // Loading pl_PL.json here (containing polish translation strings generated by tools/i18n_compile.php) * > alert(_("Hello!")); * Witaj! */ function _(s) { return (typeof l10n != 'undefined' && typeof l10n[s] != 'undefined') ? l10n[s] : s; } /* printf-like formatting function, example of usage: * * > alert(fmt("There are {0} birds on {1} trees", [3,4])); * There are 3 birds on 4 trees * > // Loading pl_PL.json here (containing polish translation strings generated by tools/locale_compile.php) * > alert(fmt(_("{0} users"), [3])); * 3 uzytkownikow */ function fmt(s,a) { return s.replace(/\{([0-9]+)\}/g, function(x) { return a[x[1]]; }); } function until($timestamp) { var $difference = $timestamp - Date.now()/1000|0, $num; switch(true){ case ($difference < 60): return "" + $difference + ' ' + _('second(s)'); case ($difference < 3600): //60*60 = 3600 return "" + ($num = Math.round($difference/(60))) + ' ' + _('minute(s)'); case ($difference < 86400): //60*60*24 = 86400 return "" + ($num = Math.round($difference/(3600))) + ' ' + _('hour(s)'); case ($difference < 604800): //60*60*24*7 = 604800 return "" + ($num = Math.round($difference/(86400))) + ' ' + _('day(s)'); case ($difference < 31536000): //60*60*24*365 = 31536000 return "" + ($num = Math.round($difference/(604800))) + ' ' + _('week(s)'); default: return "" + ($num = Math.round($difference/(31536000))) + ' ' + _('year(s)'); } } function ago($timestamp) { var $difference = (Date.now()/1000|0) - $timestamp, $num; switch(true){ case ($difference < 60) : return "" + $difference + ' ' + _('second(s)'); case ($difference < 3600): //60*60 = 3600 return "" + ($num = Math.round($difference/(60))) + ' ' + _('minute(s)'); case ($difference < 86400): //60*60*24 = 86400 return "" + ($num = Math.round($difference/(3600))) + ' ' + _('hour(s)'); case ($difference < 604800): //60*60*24*7 = 604800 return "" + ($num = Math.round($difference/(86400))) + ' ' + _('day(s)'); case ($difference < 31536000): //60*60*24*365 = 31536000 return "" + ($num = Math.round($difference/(604800))) + ' ' + _('week(s)'); default: return "" + ($num = Math.round($difference/(31536000))) + ' ' + _('year(s)'); } } var datelocale = { days: [_('Sunday'), _('Monday'), _('Tuesday'), _('Wednesday'), _('Thursday'), _('Friday'), _('Saturday')] , shortDays: [_("Sun"), _("Mon"), _("Tue"), _("Wed"), _("Thu"), _("Fri"), _("Sat")] , months: [_('January'), _('February'), _('March'), _('April'), _('May'), _('June'), _('July'), _('August'), _('September'), _('October'), _('November'), _('December')] , shortMonths: [_('Jan'), _('Feb'), _('Mar'), _('Apr'), _('May'), _('Jun'), _('Jul'), _('Aug'), _('Sep'), _('Oct'), _('Nov'), _('Dec')] , AM: _('AM') , PM: _('PM') , am: _('am') , pm: _('pm') }; function alert(a) { var handler, div; var close = function() { handler.fadeOut(400, function() { handler.remove(); }); return false; }; handler = $("
").hide().appendTo('body'); $("").click(close).appendTo(handler); div = $("").appendTo(handler); $("") .click(close).appendTo(div); $("").html(a).appendTo(div); $("").click(close).appendTo(div); handler.fadeIn(400); } var saved = {}; var selectedstyle = '{% endraw %}{{ config.default_stylesheet.0|addslashes }}{% raw %}'; var board_name = false; function changeStyle(styleName, link) { {% endraw %} {% if config.stylesheets_board %}{% raw %} if (board_name) { stylesheet_choices[board_name] = styleName; localStorage.board_stylesheets = JSON.stringify(stylesheet_choices); } {% endraw %}{% else %} localStorage.stylesheet = styleName; {% endif %} {% raw %} // Find the