summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2024-03-19 14:40:16 +0100
committerGitHub <noreply@github.com>2024-03-19 13:40:16 +0000
commitbc6f9befde4e08426127730acebdc13064e1eeb6 (patch)
treec3e9609ff126eac3b19ee6d0f7196219ee3a8dc5
parentbd06963c165b376a11d90f632e1988d5890c970f (diff)
Change “Notifications” settings page to “E-mail notifications” (#29646)
-rw-r--r--config/locales/en.yml2
-rw-r--r--config/navigation.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 6fc81ca5fb4..f45175e3fd5 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -1656,7 +1656,7 @@ en:
import: Import
import_and_export: Import and export
migrate: Account migration
- notifications: Notifications
+ notifications: E-mail notifications
preferences: Preferences
profile: Public profile
relationships: Follows and followers
diff --git a/config/navigation.rb b/config/navigation.rb
index 1e7acf3b9c6..734e5294b58 100644
--- a/config/navigation.rb
+++ b/config/navigation.rb
@@ -12,7 +12,7 @@ SimpleNavigation::Configuration.run do |navigation|
n.item :preferences, safe_join([fa_icon('cog fw'), t('settings.preferences')]), settings_preferences_path, if: -> { current_user.functional? && !self_destruct } do |s|
s.item :appearance, safe_join([fa_icon('desktop fw'), t('settings.appearance')]), settings_preferences_appearance_path
- s.item :notifications, safe_join([fa_icon('bell fw'), t('settings.notifications')]), settings_preferences_notifications_path
+ s.item :notifications, safe_join([fa_icon('envelope fw'), t('settings.notifications')]), settings_preferences_notifications_path
s.item :other, safe_join([fa_icon('cog fw'), t('preferences.other')]), settings_preferences_other_path
end