summaryrefslogtreecommitdiff
path: root/date-fns/src/locale/ro/_lib/formatRelative/index.js
blob: 435ef8b654c225d6d9e15e22f0183cc026765471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
var formatRelativeLocale = {
  lastWeek: "eeee 'trecută la' p",
  yesterday: "'ieri la' p",
  today: "'astăzi la' p",
  tomorrow: "'mâine la' p",
  nextWeek: "eeee 'viitoare la' p",
  other: 'P'
}

export default function formatRelative(token, _date, _baseDate, _options) {
  return formatRelativeLocale[token]
}