Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ur.js 2.7KB

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