From 77279d470fec1624955f7082c5e26983fd686057 Mon Sep 17 00:00:00 2001 From: Alexander Zaytsev Date: Tue, 23 Dec 2025 22:53:16 +0100 Subject: [PATCH 1/5] Notifications settings -> Notification Settings --- app/views/notifications/_tray.html.erb | 2 +- app/views/notifications/settings/show.html.erb | 2 +- app/views/notifications/unsubscribes/show.html.erb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/views/notifications/_tray.html.erb b/app/views/notifications/_tray.html.erb index 02b2d1bfe2..1f5aae4696 100644 --- a/app/views/notifications/_tray.html.erb +++ b/app/views/notifications/_tray.html.erb @@ -16,7 +16,7 @@
<%= link_to notifications_settings_path, class: "btn borderless tray__notification-settings", - title: "Notification settings", + title: "Notification Settings", data: { action: "dialog#close" } do %> <%= icon_tag "settings" %> Settings diff --git a/app/views/notifications/settings/show.html.erb b/app/views/notifications/settings/show.html.erb index 8c1e94b199..072b8dba8f 100644 --- a/app/views/notifications/settings/show.html.erb +++ b/app/views/notifications/settings/show.html.erb @@ -1,4 +1,4 @@ -<% @page_title = "Notifications settings" %> +<% @page_title = "Notification Settings" %> <% content_for :header do %>

<%= @page_title %>

diff --git a/app/views/notifications/unsubscribes/show.html.erb b/app/views/notifications/unsubscribes/show.html.erb index 3e100b14da..2b1cb57cd6 100644 --- a/app/views/notifications/unsubscribes/show.html.erb +++ b/app/views/notifications/unsubscribes/show.html.erb @@ -1,6 +1,6 @@

You’re unsubscribed

-

Thanks, <%= @user.first_name %>! Fizzy won’t send you any more email notifications. If you change your mind you can turn them back on in <%= link_to "Notifications Settings", notifications_settings_path %>.

+

Thanks, <%= @user.first_name %>! Fizzy won’t send you any more email notifications. If you change your mind you can turn them back on in <%= link_to "Notification Settings", notifications_settings_path %>.

<%= link_to root_path, class: "btn btn--link margin-block-start" do %> <%= icon_tag "arrow-left" %> From e7d8f87d3c900a4c145d76c50094787e2ce77f55 Mon Sep 17 00:00:00 2001 From: Alexander Zaytsev Date: Tue, 23 Dec 2025 22:53:36 +0100 Subject: [PATCH 2/5] Add missing comma --- app/views/notifications/unsubscribes/show.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/notifications/unsubscribes/show.html.erb b/app/views/notifications/unsubscribes/show.html.erb index 2b1cb57cd6..bc151e4aa3 100644 --- a/app/views/notifications/unsubscribes/show.html.erb +++ b/app/views/notifications/unsubscribes/show.html.erb @@ -1,6 +1,6 @@

You’re unsubscribed

-

Thanks, <%= @user.first_name %>! Fizzy won’t send you any more email notifications. If you change your mind you can turn them back on in <%= link_to "Notification Settings", notifications_settings_path %>.

+

Thanks, <%= @user.first_name %>! Fizzy won’t send you any more email notifications. If you change your mind, you can turn them back on in <%= link_to "Notification Settings", notifications_settings_path %>.

<%= link_to root_path, class: "btn btn--link margin-block-start" do %> <%= icon_tag "arrow-left" %> From 3e562f042811ae4170fa1b4fa530798cfd5a3310 Mon Sep 17 00:00:00 2001 From: Alexander Zaytsev Date: Tue, 23 Dec 2025 22:55:02 +0100 Subject: [PATCH 3/5] Adjust `.notifications__status` corner radius --- app/assets/stylesheets/notifications.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/stylesheets/notifications.css b/app/assets/stylesheets/notifications.css index 0cf434da88..ada7324d23 100644 --- a/app/assets/stylesheets/notifications.css +++ b/app/assets/stylesheets/notifications.css @@ -108,7 +108,7 @@ } .notifications__status { + --panel-border-radius: 0.5em; --panel-padding: var(--block-space); } } - From 2d5e441bf517cccae5c94ea30d98d66ea828b44e Mon Sep 17 00:00:00 2001 From: Alexander Zaytsev Date: Wed, 24 Dec 2025 15:51:46 +0100 Subject: [PATCH 4/5] Consistent spacing --- app/views/notifications/settings/show.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/notifications/settings/show.html.erb b/app/views/notifications/settings/show.html.erb index 072b8dba8f..5972e7fdad 100644 --- a/app/views/notifications/settings/show.html.erb +++ b/app/views/notifications/settings/show.html.erb @@ -4,7 +4,7 @@

<%= @page_title %>

<% end %> -
+

Boards

From 43d56b39ea46bba34e3aa5ffcc1f2733facc6426 Mon Sep 17 00:00:00 2001 From: Alexander Zaytsev Date: Wed, 24 Dec 2025 16:13:48 +0100 Subject: [PATCH 5/5] Show full browser name for Chrome in instructions --- app/views/notifications/settings/_browser.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/notifications/settings/_browser.html.erb b/app/views/notifications/settings/_browser.html.erb index 5dec4bda2d..67d86acfdc 100644 --- a/app/views/notifications/settings/_browser.html.erb +++ b/app/views/notifications/settings/_browser.html.erb @@ -70,7 +70,7 @@
  • Click in the top left.
  • Click System Settings….
  • Click Notifications.
  • -
  • Click <%= platform.browser.capitalize %>.
  • +
  • Click <%= platform.browser == "Chrome" ? "Google Chrome" : platform.browser.capitalize %>.
  • Click <%= icon_tag "switch", alt: "the switch" %> to Allow notifications.
  • <% end %>