chore: Minor fix

This commit is contained in:
iamsivin
2024-03-13 23:38:33 +05:30
parent 4d433de344
commit 28563ca129
2 changed files with 4 additions and 4 deletions
@@ -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": "Well remind you after ",
"SNOOZED_UNTIL": "Well remind you after {time}",
"SNOOZED_ENDS": "We wont 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 '';
},