parent
f33b6b58cd
commit
2672af671c
|
@ -0,0 +1,30 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
import type { Account } from 'masto'
|
||||||
|
|
||||||
|
defineProps<{
|
||||||
|
account: Account
|
||||||
|
}>()
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div flex="~ col gap-2" p4>
|
||||||
|
<div flex="~ gap-1" justify-center>
|
||||||
|
<AccountInlineInfo :account="account" :link="false" />
|
||||||
|
{{ $t('account.moved_title') }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div flex>
|
||||||
|
<NuxtLink :to="getAccountRoute(account.moved as any)">
|
||||||
|
<AccountInfo :account="account.moved" />
|
||||||
|
</NuxtLink>
|
||||||
|
<div flex-auto />
|
||||||
|
<div flex items-center>
|
||||||
|
<NuxtLink :to="getAccountRoute(account.moved as any)">
|
||||||
|
<button btn-solid h-fit>
|
||||||
|
{{ $t('account.go_to_profile') }}
|
||||||
|
</button>
|
||||||
|
</NuxtLink>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
|
@ -12,7 +12,9 @@
|
||||||
"following": "Following",
|
"following": "Following",
|
||||||
"following_count": "{0} Following",
|
"following_count": "{0} Following",
|
||||||
"follows_you": "Follows you",
|
"follows_you": "Follows you",
|
||||||
|
"go_to_profile": "Go to profile",
|
||||||
"joined": "Joined",
|
"joined": "Joined",
|
||||||
|
"moved_title": "has indicated that their new account is now:",
|
||||||
"muted_users": "Muted users",
|
"muted_users": "Muted users",
|
||||||
"mutuals": "Mutuals",
|
"mutuals": "Mutuals",
|
||||||
"pinned": "Pinned",
|
"pinned": "Pinned",
|
||||||
|
|
|
@ -12,7 +12,9 @@
|
||||||
"following": "关注中",
|
"following": "关注中",
|
||||||
"following_count": "正在关注 {0} 人",
|
"following_count": "正在关注 {0} 人",
|
||||||
"follows_you": "已关注你",
|
"follows_you": "已关注你",
|
||||||
|
"go_to_profile": "转到个人资料",
|
||||||
"joined": "已加入",
|
"joined": "已加入",
|
||||||
|
"moved_title": "的新账号是:",
|
||||||
"muted_users": "已屏蔽的用户",
|
"muted_users": "已屏蔽的用户",
|
||||||
"mutuals": "互相关注",
|
"mutuals": "互相关注",
|
||||||
"pinned": "置顶的帖文",
|
"pinned": "置顶的帖文",
|
||||||
|
|
|
@ -27,7 +27,8 @@ onReactivated(() => {
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template v-if="account">
|
<template v-if="account">
|
||||||
<AccountHeader :account="account" command border="b base" />
|
<AccountMoved v-if="account.moved" :account="account" />
|
||||||
|
<AccountHeader :account="account" command border="b base" :class="{ 'op-50 grayscale-50': !!account.moved }" />
|
||||||
|
|
||||||
<div v-if="relationship?.blockedBy" h-30 flex="~ col center gap-2">
|
<div v-if="relationship?.blockedBy" h-30 flex="~ col center gap-2">
|
||||||
<div text-secondary>
|
<div text-secondary>
|
||||||
|
|
Loading…
Reference in New Issue