Add translations for rails date order

Not doing so caused crashes on applications which don't fall back to
English when a translation is missing.

We're adding them in a separate file so we can exclude it from crowdin
and so translators don't translate symbols as if they were words which
need translation.
This commit is contained in:
Javi Martín
2018-12-21 19:31:03 +01:00
parent d4013ee664
commit e34a827c48
53 changed files with 315 additions and 4 deletions

View File

@@ -24,4 +24,19 @@ feature 'Level two verification' do
expect(page).to have_content 'Code correct'
end
context "In Spanish, with no fallbacks" do
before do
skip unless I18n.available_locales.include?(:es)
allow(I18n.fallbacks).to receive(:[]).and_return([:es])
end
scenario "Works normally" do
user = create(:user)
login_as(user)
visit verification_path(locale: :es)
verify_residence
end
end
end