Skip to content
This repository has been archived by the owner on Jan 10, 2025. It is now read-only.

Commit

Permalink
Merge branch 'main' into test-typing-import-matchers
Browse files Browse the repository at this point in the history
  • Loading branch information
atesgoral authored Sep 10, 2021
2 parents 7f05c29 + 168986a commit 4c12ed6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/react-i18n/migration-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,10 @@ This is a concise summary of changes and recommendations around updating `@shopi
{
"humanize": {
"date": "{date} at {time}",
"minutes": "{count} minutes ago",
"minutes": {
"one": "{count} minute ago",
"other": "{count} minutes ago"
},
"now": "Just now",
"weekday": "{day} at {time}",
"yesterday": "Yesterday at {time}"
Expand All @@ -114,7 +117,10 @@ This is a concise summary of changes and recommendations around updating `@shopi
"date": {
"humanize": {
"lessThanOneMinuteAgo": "Just now",
"lessThanOneHourAgo": "{count} minutes ago",
"lessThanOneHourAgo": {
"one": "{count} minute ago",
"other": "{count} minutes ago",
},
"yesterday": "Yesterday at {time}",
"lessThanOneWeekAgo": "{weekday} at {time}",
"lessThanOneYearAgo": "{date} at {time}"
Expand Down

0 comments on commit 4c12ed6

Please sign in to comment.