Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

te.js 3.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. //! moment.js locale configuration
  2. //! locale : Telugu [te]
  3. //! author : Krishna Chaitanya Thota : https://github.com/kcthota
  4. ;(function (global, factory) {
  5. typeof exports === 'object' && typeof module !== 'undefined'
  6. && typeof require === 'function' ? factory(require('../moment')) :
  7. typeof define === 'function' && define.amd ? define(['../moment'], factory) :
  8. factory(global.moment)
  9. }(this, (function (moment) { 'use strict';
  10. //! moment.js locale configuration
  11. var te = moment.defineLocale('te', {
  12. months: 'జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్'.split(
  13. '_'
  14. ),
  15. monthsShort: 'జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.'.split(
  16. '_'
  17. ),
  18. monthsParseExact: true,
  19. weekdays: 'ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం'.split(
  20. '_'
  21. ),
  22. weekdaysShort: 'ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని'.split('_'),
  23. weekdaysMin: 'ఆ_సో_మం_బు_గు_శు_శ'.split('_'),
  24. longDateFormat: {
  25. LT: 'A h:mm',
  26. LTS: 'A h:mm:ss',
  27. L: 'DD/MM/YYYY',
  28. LL: 'D MMMM YYYY',
  29. LLL: 'D MMMM YYYY, A h:mm',
  30. LLLL: 'dddd, D MMMM YYYY, A h:mm',
  31. },
  32. calendar: {
  33. sameDay: '[నేడు] LT',
  34. nextDay: '[రేపు] LT',
  35. nextWeek: 'dddd, LT',
  36. lastDay: '[నిన్న] LT',
  37. lastWeek: '[గత] dddd, LT',
  38. sameElse: 'L',
  39. },
  40. relativeTime: {
  41. future: '%s లో',
  42. past: '%s క్రితం',
  43. s: 'కొన్ని క్షణాలు',
  44. ss: '%d సెకన్లు',
  45. m: 'ఒక నిమిషం',
  46. mm: '%d నిమిషాలు',
  47. h: 'ఒక గంట',
  48. hh: '%d గంటలు',
  49. d: 'ఒక రోజు',
  50. dd: '%d రోజులు',
  51. M: 'ఒక నెల',
  52. MM: '%d నెలలు',
  53. y: 'ఒక సంవత్సరం',
  54. yy: '%d సంవత్సరాలు',
  55. },
  56. dayOfMonthOrdinalParse: /\d{1,2}వ/,
  57. ordinal: '%dవ',
  58. meridiemParse: /రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,
  59. meridiemHour: function (hour, meridiem) {
  60. if (hour === 12) {
  61. hour = 0;
  62. }
  63. if (meridiem === 'రాత్రి') {
  64. return hour < 4 ? hour : hour + 12;
  65. } else if (meridiem === 'ఉదయం') {
  66. return hour;
  67. } else if (meridiem === 'మధ్యాహ్నం') {
  68. return hour >= 10 ? hour : hour + 12;
  69. } else if (meridiem === 'సాయంత్రం') {
  70. return hour + 12;
  71. }
  72. },
  73. meridiem: function (hour, minute, isLower) {
  74. if (hour < 4) {
  75. return 'రాత్రి';
  76. } else if (hour < 10) {
  77. return 'ఉదయం';
  78. } else if (hour < 17) {
  79. return 'మధ్యాహ్నం';
  80. } else if (hour < 20) {
  81. return 'సాయంత్రం';
  82. } else {
  83. return 'రాత్రి';
  84. }
  85. },
  86. week: {
  87. dow: 0, // Sunday is the first day of the week.
  88. doy: 6, // The week that contains Jan 6th is the first week of the year.
  89. },
  90. });
  91. return te;
  92. })));