summaryrefslogtreecommitdiff
path: root/date-fns/src/locale/pt-BR/_lib/formatRelative/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'date-fns/src/locale/pt-BR/_lib/formatRelative/index.js')
-rw-r--r--date-fns/src/locale/pt-BR/_lib/formatRelative/index.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/date-fns/src/locale/pt-BR/_lib/formatRelative/index.js b/date-fns/src/locale/pt-BR/_lib/formatRelative/index.js
new file mode 100644
index 0000000..4ce6c4d
--- /dev/null
+++ b/date-fns/src/locale/pt-BR/_lib/formatRelative/index.js
@@ -0,0 +1,22 @@
+var formatRelativeLocale = {
+ lastWeek: function(date, _baseDate, _options) {
+ var weekday = date.getUTCDay()
+ var last = weekday === 0 || weekday === 6 ? 'último' : 'última'
+ return "'" + last + "' eeee 'às' p"
+ },
+ yesterday: "'ontem às' p",
+ today: "'hoje às' p",
+ tomorrow: "'amanhã às' p",
+ nextWeek: "eeee 'às' p",
+ other: 'P'
+}
+
+export default function formatRelative(token, date, baseDate, options) {
+ var format = formatRelativeLocale[token]
+
+ if (typeof format === 'function') {
+ return format(date, baseDate, options)
+ }
+
+ return format
+}