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 1.9KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. import moment from '../moment';
  6. export default moment.defineLocale('ar-ma', {
  7. months: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
  8. '_'
  9. ),
  10. monthsShort: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
  11. '_'
  12. ),
  13. weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
  14. weekdaysShort: 'احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
  15. weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
  16. weekdaysParseExact: true,
  17. longDateFormat: {
  18. LT: 'HH:mm',
  19. LTS: 'HH:mm:ss',
  20. L: 'DD/MM/YYYY',
  21. LL: 'D MMMM YYYY',
  22. LLL: 'D MMMM YYYY HH:mm',
  23. LLLL: 'dddd D MMMM YYYY HH:mm',
  24. },
  25. calendar: {
  26. sameDay: '[اليوم على الساعة] LT',
  27. nextDay: '[غدا على الساعة] LT',
  28. nextWeek: 'dddd [على الساعة] LT',
  29. lastDay: '[أمس على الساعة] LT',
  30. lastWeek: 'dddd [على الساعة] LT',
  31. sameElse: 'L',
  32. },
  33. relativeTime: {
  34. future: 'في %s',
  35. past: 'منذ %s',
  36. s: 'ثوان',
  37. ss: '%d ثانية',
  38. m: 'دقيقة',
  39. mm: '%d دقائق',
  40. h: 'ساعة',
  41. hh: '%d ساعات',
  42. d: 'يوم',
  43. dd: '%d أيام',
  44. M: 'شهر',
  45. MM: '%d أشهر',
  46. y: 'سنة',
  47. yy: '%d سنوات',
  48. },
  49. week: {
  50. dow: 1, // Monday is the first day of the week.
  51. doy: 4, // The week that contains Jan 4th is the first week of the year.
  52. },
  53. });