ur.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. //! moment.js locale configuration
  2. //! locale : Urdu [ur]
  3. //! author : Sawood Alam : https://github.com/ibnesayeed
  4. //! author : Zack : https://github.com/ZackVision
  5. ;(function (global, factory) {
  6. typeof exports === 'object' && typeof module !== 'undefined'
  7. && typeof require === 'function' ? factory(require('../moment')) :
  8. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  9. factory(global.moment)
  10. }(this, (function (moment) { 'use strict';
  11. var months = [
  12. 'جنوری',
  13. 'فروری',
  14. 'مارچ',
  15. 'اپریل',
  16. 'مئی',
  17. 'جون',
  18. 'جولائی',
  19. 'اگست',
  20. 'ستمبر',
  21. 'اکتوبر',
  22. 'نومبر',
  23. 'دسمبر'
  24. ];
  25. var days = [
  26. 'اتوار',
  27. 'پیر',
  28. 'منگل',
  29. 'بدھ',
  30. 'جمعرات',
  31. 'جمعہ',
  32. 'ہفتہ'
  33. ];
  34. var ur = moment.defineLocale('ur', {
  35. months : months,
  36. monthsShort : months,
  37. weekdays : days,
  38. weekdaysShort : days,
  39. weekdaysMin : days,
  40. longDateFormat : {
  41. LT : 'HH:mm',
  42. LTS : 'HH:mm:ss',
  43. L : 'DD/MM/YYYY',
  44. LL : 'D MMMM YYYY',
  45. LLL : 'D MMMM YYYY HH:mm',
  46. LLLL : 'dddd، D MMMM YYYY HH:mm'
  47. },
  48. meridiemParse: /صبح|شام/,
  49. isPM : function (input) {
  50. return 'شام' === input;
  51. },
  52. meridiem : function (hour, minute, isLower) {
  53. if (hour < 12) {
  54. return 'صبح';
  55. }
  56. return 'شام';
  57. },
  58. calendar : {
  59. sameDay : '[آج بوقت] LT',
  60. nextDay : '[کل بوقت] LT',
  61. nextWeek : 'dddd [بوقت] LT',
  62. lastDay : '[گذشتہ روز بوقت] LT',
  63. lastWeek : '[گذشتہ] dddd [بوقت] LT',
  64. sameElse : 'L'
  65. },
  66. relativeTime : {
  67. future : '%s بعد',
  68. past : '%s قبل',
  69. s : 'چند سیکنڈ',
  70. m : 'ایک منٹ',
  71. mm : '%d منٹ',
  72. h : 'ایک گھنٹہ',
  73. hh : '%d گھنٹے',
  74. d : 'ایک دن',
  75. dd : '%d دن',
  76. M : 'ایک ماہ',
  77. MM : '%d ماہ',
  78. y : 'ایک سال',
  79. yy : '%d سال'
  80. },
  81. preparse: function (string) {
  82. return string.replace(/،/g, ',');
  83. },
  84. postformat: function (string) {
  85. return string.replace(/,/g, '،');
  86. },
  87. week : {
  88. dow : 1, // Monday is the first day of the week.
  89. doy : 4 // The week that contains Jan 4th is the first week of the year.
  90. }
  91. });
  92. return ur;
  93. })));