jquery.countdown-fa.js 703 B

1234567891011121314
  1. /* http://keith-wood.name/countdown.html
  2. Persian (فارسی) initialisation for the jQuery countdown extension
  3. Written by Alireza Ziaie (ziai@magfa.com) Oct 2008.
  4. Digits corrected by Hamed Ramezanian Feb 2013. */
  5. (function($) {
  6. $.countdown.regional['fa'] = {
  7. labels: ['‌سال', 'ماه', 'هفته', 'روز', 'ساعت', 'دقیقه', 'ثانیه'],
  8. labels1: ['سال', 'ماه', 'هفته', 'روز', 'ساعت', 'دقیقه', 'ثانیه'],
  9. compactLabels: ['س', 'م', 'ه', 'ر'],
  10. whichLabels: null,
  11. digits: ['۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹'],
  12. timeSeparator: ':', isRTL: true};
  13. $.countdown.setDefaults($.countdown.regional['fa']);
  14. })(jQuery);