forked from FoundKeyGang/FoundKey
client: fix move notification locale string
This commit is contained in:
parent
aa428bd1a4
commit
0ef05427c8
2 changed files with 5 additions and 2 deletions
|
@ -1294,7 +1294,6 @@ _notification:
|
|||
yourFollowRequestAccepted: "Your follow request was accepted"
|
||||
youWereInvitedToGroup: "{userName} invited you to a group"
|
||||
pollEnded: "Poll results have become available"
|
||||
moved: "{name} has moved to a different account"
|
||||
emptyPushNotificationMessage: "Push notifications have been updated"
|
||||
_types:
|
||||
follow: "New followers"
|
||||
|
|
|
@ -88,7 +88,11 @@
|
|||
</div>
|
||||
</span>
|
||||
<span v-if="notification.type === 'move'" class="text" style="opacity: 0.6;">
|
||||
{{ i18n.ts.moved }}
|
||||
<I18n :src="i18n.ts.movedTo">
|
||||
<template #handle>
|
||||
<MkAcct :user="notification.moveTarget"/>
|
||||
</template>
|
||||
</I18n>
|
||||
<div v-if="full"><MkFollowButton :user="notification.moveTarget" :full="true"/></div>
|
||||
</span>
|
||||
<span v-if="notification.type === 'app'" class="text">
|
||||
|
|
Loading…
Reference in a new issue