diff options
author | chr <chr@cybre.space> | 2019-06-23 15:50:16 -0700 |
---|---|---|
committer | chr <chr@cybre.space> | 2021-03-01 21:31:50 -0800 |
commit | 9f593a36ad95075a9a4778ab173dc76ffe202d71 (patch) | |
tree | 72cb49ae15722f5ac88c9284a44cce74e415925f /app/javascript/mastodon/components/relative_timestamp.js | |
parent | 633d175146d6acaf2cc4bfbfcfdee4c85ef20ed1 (diff) |
Cybrespace locale
Diffstat (limited to 'app/javascript/mastodon/components/relative_timestamp.js')
-rw-r--r-- | app/javascript/mastodon/components/relative_timestamp.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/javascript/mastodon/components/relative_timestamp.js b/app/javascript/mastodon/components/relative_timestamp.js index 711181dcd..2ad7a603c 100644 --- a/app/javascript/mastodon/components/relative_timestamp.js +++ b/app/javascript/mastodon/components/relative_timestamp.js @@ -66,6 +66,8 @@ const getUnitDelay = units => { } }; +const fallbackFormat = new Intl.DateTimeFormat('en', shortDateFormatOptions); + export const timeAgoString = (intl, date, now, year, timeGiven = true) => { const delta = now - date.getTime(); |