chore: Minor fix
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
"NO_NOTIFICATIONS": "No notifications",
|
||||
"NOTE": "Notifications from all subscribed inboxes",
|
||||
"NO_MESSAGES_AVAILABLE": "Oops! Not able to fetch messages",
|
||||
"SNOOZED_UNTIL": "We’ll remind you after ",
|
||||
"SNOOZED_UNTIL": "We’ll remind you after {time}",
|
||||
"SNOOZED_ENDS": "We won’t notify you again"
|
||||
},
|
||||
"ACTION_HEADER": {
|
||||
|
||||
@@ -208,9 +208,9 @@ export default {
|
||||
return this.$t('INBOX.LIST.SNOOZED_ENDS');
|
||||
}
|
||||
if (this.snoozedUntilTime) {
|
||||
return `${this.$t('INBOX.LIST.SNOOZED_UNTIL')} ${this.shortTimestamp(
|
||||
this.snoozedUntilTime
|
||||
)}`;
|
||||
return this.$t('INBOX.LIST.SNOOZED_UNTIL', {
|
||||
time: this.shortTimestamp(this.snoozedUntilTime),
|
||||
});
|
||||
}
|
||||
return '';
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user