diff --git a/locales/en-US.yml b/locales/en-US.yml index 9cad956750..3d4ffdc02f 100644 --- a/locales/en-US.yml +++ b/locales/en-US.yml @@ -1097,7 +1097,7 @@ additionalEmojiDictionary: "Additional emoji dictionaries" installed: "Installed" performanceWarning: "High resource usage can result in higher device temperatures and faster battery consumption" photosensitiveSeizuresWarning: "Can cause photosensitive seizures" -friendlyEnableNotification: "Enable notification area (Friendly UI only)" +friendlyEnableNotification: "Enable/Disable the notification area" _initialAccountSetting: accountCreated: "Your account was successfully created!" letsStartAccountSetup: "For starters, let's set up your profile." diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index c6b8975b76..347c14b486 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -1097,7 +1097,7 @@ additionalEmojiDictionary: "絵文字の追加辞書" installed: "インストール済み" performanceWarning: "リソースを多く使用するため、デバイスの温度が高くなり、バッテリーの消耗が速くなる可能性があります" photosensitiveSeizuresWarning: "光敏感性発作を起こす可能性があります" -friendlyEnableNotification: "通知領域を有効にする(Friendly UIのみ)" +friendlyEnableNotification: "通知領域を有効化/無効化" _initialAccountSetting: accountCreated: "アカウントの作成が完了しました!" diff --git a/locales/ko-KR.yml b/locales/ko-KR.yml index 684e33718c..118790b188 100644 --- a/locales/ko-KR.yml +++ b/locales/ko-KR.yml @@ -1098,7 +1098,7 @@ additionalEmojiDictionary: "이모지 추가 사전" installed: "설치됨" performanceWarning: "리소스를 많이 사용하므로, 디바이스의 온도가 높아지고 배터리의 소모가 빨라질 수 있어요" photosensitiveSeizuresWarning: "광과민성 발작을 일으킬 수 있어요" -friendlyEnableNotification: "알림 영역 활성화(Friendly UI 전용)" +friendlyEnableNotification: "알림 영역 활성화/비활성화" _initialAccountSetting: accountCreated: "계정 생성이 완료되었어요!" letsStartAccountSetup: "계정의 초기 설정을 진행해 볼까요?" diff --git a/packages/frontend/src/pages/settings/general.vue b/packages/frontend/src/pages/settings/general.vue index 0796893099..1601081db8 100644 --- a/packages/frontend/src/pages/settings/general.vue +++ b/packages/frontend/src/pages/settings/general.vue @@ -119,9 +119,6 @@ {{ i18n.ts.forceShowAds }} {{ i18n.ts.dataSaver }} -
- {{ i18n.ts.friendlyEnableNotification }} -
@@ -320,7 +317,6 @@ const useEnterToSend = computed(defaultStore.makeGetterSetter('useEnterToSend')) const postFormVisibilityHotkey = computed(defaultStore.makeGetterSetter('postFormVisibilityHotkey')); const newNoteRecivedNotificationBehavior = computed(defaultStore.makeGetterSetter('newNoteRecivedNotificationBehavior')); const fontSize = computed(defaultStore.makeGetterSetter('fontSize')); -const friendlyEnableNotification = computed(defaultStore.makeGetterSetter('friendlyEnableNotification')); watch(lang, () => { miLocalStorage.setItem('lang', lang.value as string); diff --git a/packages/frontend/src/pages/settings/preferences-backups.vue b/packages/frontend/src/pages/settings/preferences-backups.vue index d0577f4b62..e08e585b91 100644 --- a/packages/frontend/src/pages/settings/preferences-backups.vue +++ b/packages/frontend/src/pages/settings/preferences-backups.vue @@ -90,7 +90,6 @@ const defaultStoreSaveKeys: (keyof typeof defaultStore['state'])[] = [ 'useEnterToSend', 'postFormVisibilityHotkey', 'newNoteRecivedNotificationBehavior', - 'friendlyEnableNotification', ]; const coldDeviceStorageSaveKeys: (keyof typeof ColdDeviceStorage.default)[] = [ 'lightTheme', diff --git a/packages/frontend/src/pages/timeline.vue b/packages/frontend/src/pages/timeline.vue index b164df2c92..ef8f30bb78 100644 --- a/packages/frontend/src/pages/timeline.vue +++ b/packages/frontend/src/pages/timeline.vue @@ -1,7 +1,8 @@