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-kw.js 2.4KB

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