Improve usability
This commit is contained in:
parent
f9f574532e
commit
c3529f0691
|
@ -1272,6 +1272,7 @@ admin/views/instance.vue:
|
||||||
save: "保存"
|
save: "保存"
|
||||||
saved: "保存しました"
|
saved: "保存しました"
|
||||||
pinned-users: "ピン留めユーザー"
|
pinned-users: "ピン留めユーザー"
|
||||||
|
pinned-users-info: "ピン留めしたいユーザーを改行で区切って記述します。"
|
||||||
email-config: "メールサーバーの設定"
|
email-config: "メールサーバーの設定"
|
||||||
email-config-info: "メールアドレス確認やパスワードリセットの際に使われます。"
|
email-config-info: "メールアドレス確認やパスワードリセットの際に使われます。"
|
||||||
enable-email: "メール配信を有効にする"
|
enable-email: "メール配信を有効にする"
|
||||||
|
|
|
@ -87,8 +87,10 @@
|
||||||
|
|
||||||
<ui-card>
|
<ui-card>
|
||||||
<template #title>{{ $t('pinned-users') }}</template>
|
<template #title>{{ $t('pinned-users') }}</template>
|
||||||
<section>
|
<section class="fit-top">
|
||||||
<ui-textarea v-model="pinnedUsers"></ui-textarea>
|
<ui-textarea v-model="pinnedUsers">
|
||||||
|
<template #desc>{{ $t('pinned-users-info') }}</template>
|
||||||
|
</ui-textarea>
|
||||||
<ui-button @click="updateMeta">{{ $t('save') }}</ui-button>
|
<ui-button @click="updateMeta">{{ $t('save') }}</ui-button>
|
||||||
</section>
|
</section>
|
||||||
</ui-card>
|
</ui-card>
|
||||||
|
@ -204,7 +206,7 @@ export default Vue.extend({
|
||||||
enableServiceWorker: false,
|
enableServiceWorker: false,
|
||||||
swPublicKey: null,
|
swPublicKey: null,
|
||||||
swPrivateKey: null,
|
swPrivateKey: null,
|
||||||
pinnedUsers: [],
|
pinnedUsers: '',
|
||||||
faHeadset, faShieldAlt, faGhost, faUserPlus, farEnvelope, faBolt
|
faHeadset, faShieldAlt, faGhost, faUserPlus, farEnvelope, faBolt
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue