cscg24-guacamole

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

he.js (3211B)


      1//! moment.js locale configuration
      2//! locale : Hebrew [he]
      3//! author : Tomer Cohen : https://github.com/tomer
      4//! author : Moshe Simantov : https://github.com/DevelopmentIL
      5//! author : Tal Ater : https://github.com/TalAter
      6
      7import moment from '../moment';
      8
      9export default moment.defineLocale('he', {
     10    months: 'ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר'.split(
     11        '_'
     12    ),
     13    monthsShort:
     14        'ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳'.split('_'),
     15    weekdays: 'ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת'.split('_'),
     16    weekdaysShort: 'א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳'.split('_'),
     17    weekdaysMin: 'א_ב_ג_ד_ה_ו_ש'.split('_'),
     18    longDateFormat: {
     19        LT: 'HH:mm',
     20        LTS: 'HH:mm:ss',
     21        L: 'DD/MM/YYYY',
     22        LL: 'D [ב]MMMM YYYY',
     23        LLL: 'D [ב]MMMM YYYY HH:mm',
     24        LLLL: 'dddd, D [ב]MMMM YYYY HH:mm',
     25        l: 'D/M/YYYY',
     26        ll: 'D MMM YYYY',
     27        lll: 'D MMM YYYY HH:mm',
     28        llll: 'ddd, D MMM 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: function (number) {
     47            if (number === 2) {
     48                return 'שעתיים';
     49            }
     50            return number + ' שעות';
     51        },
     52        d: 'יום',
     53        dd: function (number) {
     54            if (number === 2) {
     55                return 'יומיים';
     56            }
     57            return number + ' ימים';
     58        },
     59        M: 'חודש',
     60        MM: function (number) {
     61            if (number === 2) {
     62                return 'חודשיים';
     63            }
     64            return number + ' חודשים';
     65        },
     66        y: 'שנה',
     67        yy: function (number) {
     68            if (number === 2) {
     69                return 'שנתיים';
     70            } else if (number % 10 === 0 && number !== 10) {
     71                return number + ' שנה';
     72            }
     73            return number + ' שנים';
     74        },
     75    },
     76    meridiemParse:
     77        /אחה"צ|לפנה"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,
     78    isPM: function (input) {
     79        return /^(אחה"צ|אחרי הצהריים|בערב)$/.test(input);
     80    },
     81    meridiem: function (hour, minute, isLower) {
     82        if (hour < 5) {
     83            return 'לפנות בוקר';
     84        } else if (hour < 10) {
     85            return 'בבוקר';
     86        } else if (hour < 12) {
     87            return isLower ? 'לפנה"צ' : 'לפני הצהריים';
     88        } else if (hour < 18) {
     89            return isLower ? 'אחה"צ' : 'אחרי הצהריים';
     90        } else {
     91            return 'בערב';
     92        }
     93    },
     94});