LaravelTest

Форк
0
86 строк · 2.8 Кб
1
//! moment.js locale configuration
2
//! locale : Romanian [ro]
3
//! author : Vlad Gurdiga : https://github.com/gurdiga
4
//! author : Valentin Agachi : https://github.com/avaly
5
//! author : Emanuel Cepoi : https://github.com/cepem
6

7
;(function (global, factory) {
8
   typeof exports === 'object' && typeof module !== 'undefined'
9
       && typeof require === 'function' ? factory(require('../moment')) :
10
   typeof define === 'function' && define.amd ? define(['../moment'], factory) :
11
   factory(global.moment)
12
}(this, (function (moment) { 'use strict';
13

14
    //! moment.js locale configuration
15

16
    function relativeTimeWithPlural(number, withoutSuffix, key) {
17
        var format = {
18
                ss: 'secunde',
19
                mm: 'minute',
20
                hh: 'ore',
21
                dd: 'zile',
22
                ww: 'săptămâni',
23
                MM: 'luni',
24
                yy: 'ani',
25
            },
26
            separator = ' ';
27
        if (number % 100 >= 20 || (number >= 100 && number % 100 === 0)) {
28
            separator = ' de ';
29
        }
30
        return number + separator + format[key];
31
    }
32

33
    var ro = moment.defineLocale('ro', {
34
        months: 'ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie'.split(
35
            '_'
36
        ),
37
        monthsShort: 'ian._feb._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.'.split(
38
            '_'
39
        ),
40
        monthsParseExact: true,
41
        weekdays: 'duminică_luni_marți_miercuri_joi_vineri_sâmbătă'.split('_'),
42
        weekdaysShort: 'Dum_Lun_Mar_Mie_Joi_Vin_Sâm'.split('_'),
43
        weekdaysMin: 'Du_Lu_Ma_Mi_Jo_Vi_Sâ'.split('_'),
44
        longDateFormat: {
45
            LT: 'H:mm',
46
            LTS: 'H:mm:ss',
47
            L: 'DD.MM.YYYY',
48
            LL: 'D MMMM YYYY',
49
            LLL: 'D MMMM YYYY H:mm',
50
            LLLL: 'dddd, D MMMM YYYY H:mm',
51
        },
52
        calendar: {
53
            sameDay: '[azi la] LT',
54
            nextDay: '[mâine la] LT',
55
            nextWeek: 'dddd [la] LT',
56
            lastDay: '[ieri la] LT',
57
            lastWeek: '[fosta] dddd [la] LT',
58
            sameElse: 'L',
59
        },
60
        relativeTime: {
61
            future: 'peste %s',
62
            past: '%s în urmă',
63
            s: 'câteva secunde',
64
            ss: relativeTimeWithPlural,
65
            m: 'un minut',
66
            mm: relativeTimeWithPlural,
67
            h: 'o oră',
68
            hh: relativeTimeWithPlural,
69
            d: 'o zi',
70
            dd: relativeTimeWithPlural,
71
            w: 'o săptămână',
72
            ww: relativeTimeWithPlural,
73
            M: 'o lună',
74
            MM: relativeTimeWithPlural,
75
            y: 'un an',
76
            yy: relativeTimeWithPlural,
77
        },
78
        week: {
79
            dow: 1, // Monday is the first day of the week.
80
            doy: 7, // The week that contains Jan 7th is the first week of the year.
81
        },
82
    });
83

84
    return ro;
85

86
})));
87

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.