Commit 1b81ca4 1 parent 1df8ea8 commit 1b81ca4 Copy full SHA for 1b81ca4
File tree 3 files changed +11
-3
lines changed
packages/frontend/src/pages/settings
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -4113,9 +4113,13 @@ export interface Locale extends ILocale {
4113
4113
*/
4114
4114
"thisPostMayBeAnnoyingIgnore" : string ;
4115
4115
/**
4116
- * 見たことのあるリノートを省略して表示
4116
+ * リノートのスマート省略
4117
4117
*/
4118
4118
"collapseRenotes" : string ;
4119
+ /**
4120
+ * リアクションやリノートをしたことがあるノートをたたんで表示します。
4121
+ */
4122
+ "collapseRenotesDescription" : string ;
4119
4123
/**
4120
4124
* サーバー内部エラー
4121
4125
*/
Original file line number Diff line number Diff line change @@ -1024,7 +1024,8 @@ thisPostMayBeAnnoying: "この投稿は迷惑になる可能性があります
1024
1024
thisPostMayBeAnnoyingHome : " ホームに投稿"
1025
1025
thisPostMayBeAnnoyingCancel : " やめる"
1026
1026
thisPostMayBeAnnoyingIgnore : " このまま投稿"
1027
- collapseRenotes : " 見たことのあるリノートを省略して表示"
1027
+ collapseRenotes : " リノートのスマート省略"
1028
+ collapseRenotesDescription : " リアクションやリノートをしたことがあるノートをたたんで表示します。"
1028
1029
internalServerError : " サーバー内部エラー"
1029
1030
internalServerErrorDescription : " サーバー内部で予期しないエラーが発生しました。"
1030
1031
copyErrorInfo : " エラー情報をコピー"
Original file line number Diff line number Diff line change @@ -50,9 +50,12 @@ SPDX-License-Identifier: AGPL-3.0-only
50
50
51
51
<div class="_gaps_m">
52
52
<div class="_gaps_s">
53
+ <MkSwitch v-model="collapseRenotes">
54
+ <template #label>{{ i18n.ts.collapseRenotes }}</template>
55
+ <template #caption>{{ i18n.ts.collapseRenotesDescription }}</template>
56
+ </MkSwitch>
53
57
<MkSwitch v-model="showNoteActionsOnlyHover">{{ i18n.ts.showNoteActionsOnlyHover }}</MkSwitch>
54
58
<MkSwitch v-model="showClipButtonInNoteFooter">{{ i18n.ts.showClipButtonInNoteFooter }}</MkSwitch>
55
- <MkSwitch v-model="collapseRenotes">{{ i18n.ts.collapseRenotes }}</MkSwitch>
56
59
<MkSwitch v-model="advancedMfm">{{ i18n.ts.enableAdvancedMfm }}</MkSwitch>
57
60
<MkSwitch v-if="advancedMfm" v-model="animatedMfm">{{ i18n.ts.enableAnimatedMfm }}</MkSwitch>
58
61
<MkSwitch v-if="advancedMfm" v-model="enableQuickAddMfmFunction">{{ i18n.ts.enableQuickAddMfmFunction }}</MkSwitch>
You can’t perform that action at this time.
0 commit comments