version 1.1, 2012/03/18 13:51:11
|
version 1.2, 2014/01/15 14:45:11
|
Line 1
|
Line 1
|
/* http://keith-wood.name/countdown.html
|
/* http://keith-wood.name/countdown.html
|
Persian (فارسی) initialisation for the jQuery countdown extension
|
Persian (فارسی) initialisation for the jQuery countdown extension
|
Written by Alireza Ziaie (ziai@magfa.com) Oct 2008. */
|
Written by Alireza Ziaie (ziai@magfa.com) Oct 2008.
|
|
Digits corrected by Hamed Ramezanian Feb 2013. */
|
(function($) {
|
(function($) {
|
$.countdown.regional['fa'] = {
|
$.countdown.regional['fa'] = {
|
labels: ['سال', 'ماه', 'هفته', 'روز', 'ساعت', 'دقیقه', 'ثانیه'],
|
labels: ['سال', 'ماه', 'هفته', 'روز', 'ساعت', 'دقیقه', 'ثانیه'],
|
labels1: ['سال', 'ماه', 'هفته', 'روز', 'ساعت', 'دقیقه', 'ثانیه'],
|
labels1: ['سال', 'ماه', 'هفته', 'روز', 'ساعت', 'دقیقه', 'ثانیه'],
|
compactLabels: ['س', 'م', 'ه', 'ر'],
|
compactLabels: ['س', 'م', 'ه', 'ر'],
|
whichLabels: null,
|
whichLabels: null,
|
|
digits: ['۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹'],
|
timeSeparator: ':', isRTL: true};
|
timeSeparator: ':', isRTL: true};
|
$.countdown.setDefaults($.countdown.regional['fa']);
|
$.countdown.setDefaults($.countdown.regional['fa']);
|
})(jQuery);
|
})(jQuery);
|