Localisation updates from https://translatewiki.net.
[mediawiki.git] / resources / lib / moment / locale / pt.js
blob6d6bd869f89717c2d3e763bb30224165ade6a748
1 //! moment.js locale configuration
2 //! locale : Portuguese [pt]
3 //! author : Jefferson : https://github.com/jalex79
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';
12     //! moment.js locale configuration
14     var pt = moment.defineLocale('pt', {
15         months: 'janeiro_fevereiro_março_abril_maio_junho_julho_agosto_setembro_outubro_novembro_dezembro'.split(
16             '_'
17         ),
18         monthsShort: 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'),
19         weekdays: 'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado'.split(
20             '_'
21         ),
22         weekdaysShort: 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'),
23         weekdaysMin: 'Do_2ª_3ª_4ª_5ª_6ª_Sá'.split('_'),
24         weekdaysParseExact: true,
25         longDateFormat: {
26             LT: 'HH:mm',
27             LTS: 'HH:mm:ss',
28             L: 'DD/MM/YYYY',
29             LL: 'D [de] MMMM [de] YYYY',
30             LLL: 'D [de] MMMM [de] YYYY HH:mm',
31             LLLL: 'dddd, D [de] MMMM [de] YYYY HH:mm',
32         },
33         calendar: {
34             sameDay: '[Hoje às] LT',
35             nextDay: '[Amanhã às] LT',
36             nextWeek: 'dddd [às] LT',
37             lastDay: '[Ontem às] LT',
38             lastWeek: function () {
39                 return this.day() === 0 || this.day() === 6
40                     ? '[Último] dddd [às] LT' // Saturday + Sunday
41                     : '[Última] dddd [às] LT'; // Monday - Friday
42             },
43             sameElse: 'L',
44         },
45         relativeTime: {
46             future: 'em %s',
47             past: 'há %s',
48             s: 'segundos',
49             ss: '%d segundos',
50             m: 'um minuto',
51             mm: '%d minutos',
52             h: 'uma hora',
53             hh: '%d horas',
54             d: 'um dia',
55             dd: '%d dias',
56             M: 'um mês',
57             MM: '%d meses',
58             y: 'um ano',
59             yy: '%d anos',
60         },
61         dayOfMonthOrdinalParse: /\d{1,2}º/,
62         ordinal: '%dº',
63         week: {
64             dow: 1, // Monday is the first day of the week.
65             doy: 4, // The week that contains Jan 4th is the first week of the year.
66         },
67     });
69     return pt;
71 })));