Removed i18n provider

No longer needed as Hanami 3.0.0 loads this provider for us.

Milestone: patch
This commit is contained in:
Brooke Kuhlmann
2026-07-22 11:58:31 -06:00
parent 647a13cf1d
commit dee48a141f
-14
View File
@@ -1,14 +0,0 @@
# frozen_string_literal: true
require "refinements/pathname"
using Refinements::Pathname
Hanami.app.register_provider :i18n do
prepare { require "i18n" }
start do
I18n.load_path.concat slice.root.join("config/locales").files("*.yml")
register :i18n, I18n
end
end