Brought in another asset for Ray's eye form: moment
[openemr.git] / public / assets / moment-2-13-0 / src / locale / pt.js
blobdb3ba6488bcfc3ce1d210a8f631a0973ddd746a4
1 //! moment.js locale configuration
2 //! locale : portuguese (pt)
3 //! author : Jefferson : https://github.com/jalex79
5 import moment from '../moment';
7 export default moment.defineLocale('pt', {
8     months : 'Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro'.split('_'),
9     monthsShort : 'Jan_Fev_Mar_Abr_Mai_Jun_Jul_Ago_Set_Out_Nov_Dez'.split('_'),
10     weekdays : 'Domingo_Segunda-Feira_Terça-Feira_Quarta-Feira_Quinta-Feira_Sexta-Feira_Sábado'.split('_'),
11     weekdaysShort : 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'),
12     weekdaysMin : 'Dom_2ª_3ª_4ª_5ª_6ª_Sáb'.split('_'),
13     weekdaysParseExact : true,
14     longDateFormat : {
15         LT : 'HH:mm',
16         LTS : 'HH:mm:ss',
17         L : 'DD/MM/YYYY',
18         LL : 'D [de] MMMM [de] YYYY',
19         LLL : 'D [de] MMMM [de] YYYY HH:mm',
20         LLLL : 'dddd, D [de] MMMM [de] YYYY HH:mm'
21     },
22     calendar : {
23         sameDay: '[Hoje às] LT',
24         nextDay: '[Amanhã às] LT',
25         nextWeek: 'dddd [às] LT',
26         lastDay: '[Ontem às] LT',
27         lastWeek: function () {
28             return (this.day() === 0 || this.day() === 6) ?
29                 '[Último] dddd [às] LT' : // Saturday + Sunday
30                 '[Última] dddd [às] LT'; // Monday - Friday
31         },
32         sameElse: 'L'
33     },
34     relativeTime : {
35         future : 'em %s',
36         past : 'há %s',
37         s : 'segundos',
38         m : 'um minuto',
39         mm : '%d minutos',
40         h : 'uma hora',
41         hh : '%d horas',
42         d : 'um dia',
43         dd : '%d dias',
44         M : 'um mês',
45         MM : '%d meses',
46         y : 'um ano',
47         yy : '%d anos'
48     },
49     ordinalParse: /\d{1,2}º/,
50     ordinal : '%dº',
51     week : {
52         dow : 1, // Monday is the first day of the week.
53         doy : 4  // The week that contains Jan 4th is the first week of the year.
54     }
55 });