chore: 設定項目の改善
This commit is contained in:
parent
0a3cee85b4
commit
28ea454b1f
|
|
@ -839,7 +839,8 @@ emailNotification: "メール通知"
|
||||||
publish: "公開"
|
publish: "公開"
|
||||||
inChannelSearch: "チャンネル内検索"
|
inChannelSearch: "チャンネル内検索"
|
||||||
useReactionPickerForContextMenu: "右クリックでリアクションピッカーを開く"
|
useReactionPickerForContextMenu: "右クリックでリアクションピッカーを開く"
|
||||||
collapseSensitiveChannel: "ほとんどのタイムラインでセンシティブチャンネルの投稿を隠す"
|
collapseSensitiveChannel: "センシティブチャンネルの投稿を隠す"
|
||||||
|
collapseSensitiveChannelDescription: "そのチャンネル内・通知・ホームタイムラインなど、一部の場所では引き続き表示されます。"
|
||||||
typingUsers: "{users}が入力中"
|
typingUsers: "{users}が入力中"
|
||||||
jumpToSpecifiedDate: "特定の日付にジャンプ"
|
jumpToSpecifiedDate: "特定の日付にジャンプ"
|
||||||
showingPastTimeline: "過去のタイムラインを表示しています"
|
showingPastTimeline: "過去のタイムラインを表示しています"
|
||||||
|
|
|
||||||
|
|
@ -241,6 +241,7 @@ SPDX-License-Identifier: AGPL-3.0-only
|
||||||
<MkPreferenceContainer k="collapseSensitiveChannel">
|
<MkPreferenceContainer k="collapseSensitiveChannel">
|
||||||
<MkSwitch v-model="collapseSensitiveChannel">
|
<MkSwitch v-model="collapseSensitiveChannel">
|
||||||
<template #label><SearchLabel>{{ i18n.ts.collapseSensitiveChannel }}</SearchLabel></template>
|
<template #label><SearchLabel>{{ i18n.ts.collapseSensitiveChannel }}</SearchLabel></template>
|
||||||
|
<template #caption>{{ i18n.ts.collapseSensitiveChannelDescription }}</template>
|
||||||
</MkSwitch>
|
</MkSwitch>
|
||||||
</MkPreferenceContainer>
|
</MkPreferenceContainer>
|
||||||
</SearchMarker>
|
</SearchMarker>
|
||||||
|
|
|
||||||
|
|
@ -3369,9 +3369,13 @@ export interface Locale extends ILocale {
|
||||||
*/
|
*/
|
||||||
"useReactionPickerForContextMenu": string;
|
"useReactionPickerForContextMenu": string;
|
||||||
/**
|
/**
|
||||||
* ほとんどのタイムラインでセンシティブチャンネルの投稿を隠す
|
* センシティブチャンネルの投稿を隠す
|
||||||
*/
|
*/
|
||||||
"collapseSensitiveChannel": string;
|
"collapseSensitiveChannel": string;
|
||||||
|
/**
|
||||||
|
* そのチャンネル内・通知・ホームタイムラインなど、一部の場所では引き続き表示されます。
|
||||||
|
*/
|
||||||
|
"collapseSensitiveChannelDescription": string;
|
||||||
/**
|
/**
|
||||||
* {users}が入力中
|
* {users}が入力中
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue