cscg24-guacamole

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

gu.js (4936B)


      1//! moment.js locale configuration
      2//! locale : Gujarati [gu]
      3//! author : Kaushik Thanki : https://github.com/Kaushik1987
      4
      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
     12    //! moment.js locale configuration
     13
     14    var symbolMap = {
     15            1: '૧',
     16            2: '૨',
     17            3: '૩',
     18            4: '૪',
     19            5: '૫',
     20            6: '૬',
     21            7: '૭',
     22            8: '૮',
     23            9: '૯',
     24            0: '૦',
     25        },
     26        numberMap = {
     27            '૧': '1',
     28            '૨': '2',
     29            '૩': '3',
     30            '૪': '4',
     31            '૫': '5',
     32            '૬': '6',
     33            '૭': '7',
     34            '૮': '8',
     35            '૯': '9',
     36            '૦': '0',
     37        };
     38
     39    var gu = moment.defineLocale('gu', {
     40        months: 'જાન્યુઆરી_ફેબ્રુઆરી_માર્ચ_એપ્રિલ_મે_જૂન_જુલાઈ_ઑગસ્ટ_સપ્ટેમ્બર_ઑક્ટ્બર_નવેમ્બર_ડિસેમ્બર'.split(
     41            '_'
     42        ),
     43        monthsShort:
     44            'જાન્યુ._ફેબ્રુ._માર્ચ_એપ્રિ._મે_જૂન_જુલા._ઑગ._સપ્ટે._ઑક્ટ્._નવે._ડિસે.'.split(
     45                '_'
     46            ),
     47        monthsParseExact: true,
     48        weekdays: 'રવિવાર_સોમવાર_મંગળવાર_બુધ્વાર_ગુરુવાર_શુક્રવાર_શનિવાર'.split(
     49            '_'
     50        ),
     51        weekdaysShort: 'રવિ_સોમ_મંગળ_બુધ્_ગુરુ_શુક્ર_શનિ'.split('_'),
     52        weekdaysMin: 'ર_સો_મં_બુ_ગુ_શુ_શ'.split('_'),
     53        longDateFormat: {
     54            LT: 'A h:mm વાગ્યે',
     55            LTS: 'A h:mm:ss વાગ્યે',
     56            L: 'DD/MM/YYYY',
     57            LL: 'D MMMM YYYY',
     58            LLL: 'D MMMM YYYY, A h:mm વાગ્યે',
     59            LLLL: 'dddd, D MMMM YYYY, A h:mm વાગ્યે',
     60        },
     61        calendar: {
     62            sameDay: '[આજ] LT',
     63            nextDay: '[કાલે] LT',
     64            nextWeek: 'dddd, LT',
     65            lastDay: '[ગઇકાલે] LT',
     66            lastWeek: '[પાછલા] dddd, LT',
     67            sameElse: 'L',
     68        },
     69        relativeTime: {
     70            future: '%s મા',
     71            past: '%s પહેલા',
     72            s: 'અમુક પળો',
     73            ss: '%d સેકંડ',
     74            m: 'એક મિનિટ',
     75            mm: '%d મિનિટ',
     76            h: 'એક કલાક',
     77            hh: '%d કલાક',
     78            d: 'એક દિવસ',
     79            dd: '%d દિવસ',
     80            M: 'એક મહિનો',
     81            MM: '%d મહિનો',
     82            y: 'એક વર્ષ',
     83            yy: '%d વર્ષ',
     84        },
     85        preparse: function (string) {
     86            return string.replace(/[૧૨૩૪૫૬૭૮૯૦]/g, function (match) {
     87                return numberMap[match];
     88            });
     89        },
     90        postformat: function (string) {
     91            return string.replace(/\d/g, function (match) {
     92                return symbolMap[match];
     93            });
     94        },
     95        // Gujarati notation for meridiems are quite fuzzy in practice. While there exists
     96        // a rigid notion of a 'Pahar' it is not used as rigidly in modern Gujarati.
     97        meridiemParse: /રાત|બપોર|સવાર|સાંજ/,
     98        meridiemHour: function (hour, meridiem) {
     99            if (hour === 12) {
    100                hour = 0;
    101            }
    102            if (meridiem === 'રાત') {
    103                return hour < 4 ? hour : hour + 12;
    104            } else if (meridiem === 'સવાર') {
    105                return hour;
    106            } else if (meridiem === 'બપોર') {
    107                return hour >= 10 ? hour : hour + 12;
    108            } else if (meridiem === 'સાંજ') {
    109                return hour + 12;
    110            }
    111        },
    112        meridiem: function (hour, minute, isLower) {
    113            if (hour < 4) {
    114                return 'રાત';
    115            } else if (hour < 10) {
    116                return 'સવાર';
    117            } else if (hour < 17) {
    118                return 'બપોર';
    119            } else if (hour < 20) {
    120                return 'સાંજ';
    121            } else {
    122                return 'રાત';
    123            }
    124        },
    125        week: {
    126            dow: 0, // Sunday is the first day of the week.
    127            doy: 6, // The week that contains Jan 6th is the first week of the year.
    128        },
    129    });
    130
    131    return gu;
    132
    133})));