diff --git a/app/assets/stylesheets/utilities.css b/app/assets/stylesheets/utilities.css index cea383315..ec51df988 100644 --- a/app/assets/stylesheets/utilities.css +++ b/app/assets/stylesheets/utilities.css @@ -25,6 +25,7 @@ .txt-break { word-break: break-word; } .txt-uppercase { text-transform: uppercase; } .txt-capitalize { text-transform: capitalize; } + .txt-capitalize-first-letter::first-letter { text-transform: capitalize; } .txt-link { color: var(--color-link); text-decoration: underline; } .font-weight-black { font-weight: 900; } diff --git a/app/mailers/magic_link_mailer.rb b/app/mailers/magic_link_mailer.rb index 391e64f6d..52b9be031 100644 --- a/app/mailers/magic_link_mailer.rb +++ b/app/mailers/magic_link_mailer.rb @@ -3,7 +3,7 @@ class MagicLinkMailer < ApplicationMailer @magic_link = magic_link @identity = @magic_link.identity - mail to: @identity.email_address, subject: "Sign in to Fizzy" + mail to: @identity.email_address, subject: "Sign in to BOXCAR" end private diff --git a/app/models/filter/resources.rb b/app/models/filter/resources.rb index 669b214f4..3dc777b2f 100644 --- a/app/models/filter/resources.rb +++ b/app/models/filter/resources.rb @@ -23,7 +23,7 @@ module Filter::Resources def collection_titles if collections.none? - Collection.one? ? [ Collection.first.name ] : [ "All boards" ] + Collection.one? ? [ Collection.first.name ] : [ "all boards" ] else collections.map(&:name) end diff --git a/app/views/cards/index.html.erb b/app/views/cards/index.html.erb index 21045e866..9fba5f9ea 100644 --- a/app/views/cards/index.html.erb +++ b/app/views/cards/index.html.erb @@ -5,7 +5,7 @@ <% content_for :header do %>
Hit the button below to use this email address in Fizzy.
+Hit the button below to use this email address in BOXCAR.
<%= link_to "Yes use use this email address", email_address_confirmation_url(membership_id: @membership.id, email_address_token: @token), class: "btn" %> diff --git a/app/views/mailers/identity_mailer/email_change_confirmation.text.erb b/app/views/mailers/identity_mailer/email_change_confirmation.text.erb index 265c9cbf2..7d669a4d4 100644 --- a/app/views/mailers/identity_mailer/email_change_confirmation.text.erb +++ b/app/views/mailers/identity_mailer/email_change_confirmation.text.erb @@ -1,7 +1,7 @@ Confirm your email address change <%= "=" * 80 %> -Hit the link below to use this email address in Fizzy: +Hit the link below to use this email address in BOXCAR: <%= email_address_confirmation_url(membership_id: @membership.id, email_address_token: @token) %> diff --git a/app/views/mailers/magic_link_mailer/sign_in_instructions.html.erb b/app/views/mailers/magic_link_mailer/sign_in_instructions.html.erb index b8ae68967..7a193eb08 100644 --- a/app/views/mailers/magic_link_mailer/sign_in_instructions.html.erb +++ b/app/views/mailers/magic_link_mailer/sign_in_instructions.html.erb @@ -1,9 +1,9 @@ -Hit the button below to sign in to Fizzy on this device
+Hit the button below to sign in to BOXCAR on this device
-<%= link_to "Sign in to Fizzy", session_magic_link_url(code: @magic_link.code), class: "btn" %> +<%= link_to "Sign in to BOXCAR", session_magic_link_url(code: @magic_link.code), class: "btn" %> -If you're signing in on another device, enter this special code: +
If you’re signing in on another device, enter this special code:
<%= @magic_link.code %>