forked from FoundKeyGang/FoundKey
chore(client): tweak client
This commit is contained in:
parent
f109de9ebb
commit
3978e3a4d3
4 changed files with 5 additions and 1 deletions
|
@ -847,6 +847,7 @@ cropImage: "Crop image"
|
|||
cropImageAsk: "Do you want to crop this image?"
|
||||
recentNHours: "Last {n} hours"
|
||||
recentNDays: "Last {n} days"
|
||||
isSystemAccount: "An account created and automatically operated by the system."
|
||||
_emailUnavailable:
|
||||
used: "This email address is already being used"
|
||||
format: "The format of this email address is invalid"
|
||||
|
|
|
@ -854,6 +854,7 @@ recommended: "推奨"
|
|||
check: "チェック"
|
||||
recentNHours: "直近{n}時間"
|
||||
recentNDays: "直近{n}日"
|
||||
isSystemAccount: "システムにより自動で作成・管理されているアカウントです。"
|
||||
|
||||
_emailUnavailable:
|
||||
used: "既に使用されています"
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
<template #value><span class="_monospace"><MkTime :time="file.createdAt" mode="detail" style="display: block;"/></span></template>
|
||||
</MkKeyValue>
|
||||
</div>
|
||||
<MkA class="user" :to="`/user-info/${file.user.id}`">
|
||||
<MkA v-if="file.user" class="user" :to="`/user-info/${file.user.id}`">
|
||||
<MkUserCardMini :user="file.user"/>
|
||||
</MkA>
|
||||
<div class="_formBlock">
|
||||
|
|
|
@ -12,6 +12,8 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<MkInfo v-if="user.username.includes('.')" class="_formBlock">{{ i18n.ts.isSystemAccount }}</MkInfo>
|
||||
|
||||
<div v-if="user.url" class="_formLinksGrid _formBlock">
|
||||
<FormLink :to="userPage(user)">Profile</FormLink>
|
||||
<FormLink :to="user.url" :external="true">Profile (remote)</FormLink>
|
||||
|
|
Loading…
Reference in a new issue