cscg24-guacamole

CSCG 2024 Challenge 'Guacamole Mashup'
git clone https://git.sinitax.com/sinitax/cscg24-guacamole
Log | Files | Refs | sfeed.txt

ar-ma.js (2533B)


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