chore(client): tweak client

This commit is contained in:
syuilo 2022-06-26 07:17:55 +02:00 committed by Johann150
parent f109de9ebb
commit 3978e3a4d3
Signed by untrusted user: Johann150
GPG Key ID: 9EE6577A2A06F8F1
4 changed files with 5 additions and 1 deletions

View File

@ -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"

View File

@ -854,6 +854,7 @@ recommended: "推奨"
check: "チェック"
recentNHours: "直近{n}時間"
recentNDays: "直近{n}日"
isSystemAccount: "システムにより自動で作成・管理されているアカウントです。"
_emailUnavailable:
used: "既に使用されています"

View File

@ -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">

View File

@ -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>