| 1 |
(function (global, factory) { |
| 2 |
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : |
| 3 |
typeof define === 'function' && define.amd ? define(['exports'], factory) : |
| 4 |
(global = global || self, factory(global.pt = {})); |
| 5 |
}(this, (function (exports) { 'use strict'; |
| 6 |
|
| 7 |
var fp = typeof window !== "undefined" && window.flatpickr !== undefined |
| 8 |
? window.flatpickr |
| 9 |
: { |
| 10 |
l10ns: {}, |
| 11 |
}; |
| 12 |
var Portuguese = { |
| 13 |
weekdays: { |
| 14 |
shorthand: ["Dom", "Seg", "Ter", "Qua", "Qui", "Sex", "Sáb"], |
| 15 |
longhand: [ |
| 16 |
"Domingo", |
| 17 |
"Segunda-feira", |
| 18 |
"Terça-feira", |
| 19 |
"Quarta-feira", |
| 20 |
"Quinta-feira", |
| 21 |
"Sexta-feira", |
| 22 |
"Sábado", |
| 23 |
], |
| 24 |
}, |
| 25 |
months: { |
| 26 |
shorthand: [ |
| 27 |
"Jan", |
| 28 |
"Fev", |
| 29 |
"Mar", |
| 30 |
"Abr", |
| 31 |
"Mai", |
| 32 |
"Jun", |
| 33 |
"Jul", |
| 34 |
"Ago", |
| 35 |
"Set", |
| 36 |
"Out", |
| 37 |
"Nov", |
| 38 |
"Dez", |
| 39 |
], |
| 40 |
longhand: [ |
| 41 |
"Janeiro", |
| 42 |
"Fevereiro", |
| 43 |
"Março", |
| 44 |
"Abril", |
| 45 |
"Maio", |
| 46 |
"Junho", |
| 47 |
"Julho", |
| 48 |
"Agosto", |
| 49 |
"Setembro", |
| 50 |
"Outubro", |
| 51 |
"Novembro", |
| 52 |
"Dezembro", |
| 53 |
], |
| 54 |
}, |
| 55 |
rangeSeparator: " até ", |
| 56 |
time_24hr: true, |
| 57 |
}; |
| 58 |
fp.l10ns.pt = Portuguese; |
| 59 |
var pt = fp.l10ns; |
| 60 |
|
| 61 |
exports.Portuguese = Portuguese; |
| 62 |
exports.default = pt; |
| 63 |
|
| 64 |
Object.defineProperty(exports, '__esModule', { value: true }); |
| 65 |
|
| 66 |
}))); |
| 67 |
|