enhance(frontend): 通知設定ページにサウンド設定ページへのリンクを追加 (#16072)
This commit is contained in:
parent
ccf5bd337e
commit
8c8cea024a
|
@ -2334,6 +2334,10 @@ export interface Locale extends ILocale {
|
|||
* サウンド
|
||||
*/
|
||||
"sound": string;
|
||||
/**
|
||||
* 通知音の設定
|
||||
*/
|
||||
"notificationSoundSettings": string;
|
||||
/**
|
||||
* 聴く
|
||||
*/
|
||||
|
|
|
@ -579,6 +579,7 @@ newNoteRecived: "新しいノートがあります"
|
|||
newNote: "新しいノート"
|
||||
sounds: "サウンド"
|
||||
sound: "サウンド"
|
||||
notificationSoundSettings: "通知音の設定"
|
||||
listen: "聴く"
|
||||
none: "なし"
|
||||
showInPage: "ページで表示"
|
||||
|
|
|
@ -38,11 +38,12 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
</FormSection>
|
||||
<FormSection>
|
||||
<div class="_gaps_m">
|
||||
<FormLink @click="readAllNotifications">{{ i18n.ts.markAsReadAllNotifications }}</FormLink>
|
||||
<FormLink to="/settings/sounds">{{ i18n.ts.notificationSoundSettings }}</FormLink>
|
||||
</div>
|
||||
</FormSection>
|
||||
<FormSection>
|
||||
<div class="_gaps_m">
|
||||
<div class="_gaps_s">
|
||||
<FormLink @click="readAllNotifications">{{ i18n.ts.markAsReadAllNotifications }}</FormLink>
|
||||
<FormLink @click="testNotification">{{ i18n.ts._notification.sendTestNotification }}</FormLink>
|
||||
<FormLink @click="flushNotification">{{ i18n.ts._notification.flushNotification }}</FormLink>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue