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.

ar-ma.js 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. //! moment.js locale configuration
  2. //! locale : Arabic (Morocco) [ar-ma]
  3. //! author : ElFadili Yassine : https://github.com/ElFadiliY
  4. //! author : Abdel Said : https://github.com/abdelsaid
  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. //! moment.js locale configuration
  12. var arMa = moment.defineLocale('ar-ma', {
  13. months: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
  14. '_'
  15. ),
  16. monthsShort: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
  17. '_'
  18. ),
  19. weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  20. weekdaysShort: 'احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
  21. weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  22. weekdaysParseExact: true,
  23. longDateFormat: {
  24. LT: 'HH:mm',
  25. LTS: 'HH:mm:ss',
  26. L: 'DD/MM/YYYY',
  27. LL: 'D MMMM YYYY',
  28. LLL: 'D MMMM YYYY HH:mm',
  29. LLLL: 'dddd D MMMM YYYY HH:mm',
  30. },
  31. calendar: {
  32. sameDay: '[اليوم على الساعة] LT',
  33. nextDay: '[غدا على الساعة] LT',
  34. nextWeek: 'dddd [على الساعة] LT',
  35. lastDay: '[أمس على الساعة] LT',
  36. lastWeek: 'dddd [على الساعة] LT',
  37. sameElse: 'L',
  38. },
  39. relativeTime: {
  40. future: 'في %s',
  41. past: 'منذ %s',
  42. s: 'ثوان',
  43. ss: '%d ثانية',
  44. m: 'دقيقة',
  45. mm: '%d دقائق',
  46. h: 'ساعة',
  47. hh: '%d ساعات',
  48. d: 'يوم',
  49. dd: '%d أيام',
  50. M: 'شهر',
  51. MM: '%d أشهر',
  52. y: 'سنة',
  53. yy: '%d سنوات',
  54. },
  55. week: {
  56. dow: 1, // Monday is the first day of the week.
  57. doy: 4, // The week that contains Jan 4th is the first week of the year.
  58. },
  59. });
  60. return arMa;
  61. })));