mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-10 07:30:59 -07:00
Improve relative time detection (#3302)
This commit is contained in:
parent
7947d56b73
commit
d98173238d
1 changed files with 2 additions and 2 deletions
|
@ -53,8 +53,8 @@ export default Vue.extend({
|
|||
ago >= 3600 ? this.$t('@.time.hours_ago') .replace('{}', (~~(ago / 3600)).toString()) :
|
||||
ago >= 60 ? this.$t('@.time.minutes_ago').replace('{}', (~~(ago / 60)).toString()) :
|
||||
ago >= 10 ? this.$t('@.time.seconds_ago').replace('{}', (~~(ago % 60)).toString()) :
|
||||
ago >= 0 ? this.$t('@.time.just_now') :
|
||||
ago < 0 ? this.$t('@.time.future') :
|
||||
ago >= -1 ? this.$t('@.time.just_now') :
|
||||
ago < -1 ? this.$t('@.time.future') :
|
||||
this.$t('@.time.unknown'));
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue