DEV: Update TranslateAccelerator missing translation string (#22158)

Upstream added a capital 'T' to the 'Translation missing' message in https://github.com/ruby-i18n/i18n/commit/c5c6e753f3. This caused our translate accelerator patch to diverge, and the change in case affected a number of our specs. This commit updates the translate accelerator to match the upstream casing, and introduces a spec to detect future divergence.
This commit is contained in:
David Taylor
2023-06-16 15:28:03 +01:00
committed by GitHub
parent ffcac7bf5a
commit f8ea5b1136
4 changed files with 10 additions and 4 deletions

View File

@ -450,7 +450,7 @@ RSpec.describe Admin::EmailTemplatesController do
it "uses only existing email templates" do
Admin::EmailTemplatesController.email_keys.each do |key|
expect(I18n.t(key)).to_not include("translation missing")
expect(I18n.t(key)).to_not include("Translation missing")
end
end
end