alchemy_i18n 4.0.0 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/alchemy_i18n/engine.rb +1 -1
- data/lib/alchemy_i18n/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fdda2886398913c95a57b7852b733082be9dbced726ed25c7901fa63fd498179
|
|
4
|
+
data.tar.gz: 35e1d7951d9a92e6685ec970e36ab7a39a4cb22da3afc6c02a136f0f87a53f23
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f29f317490edd4789fa262f2c37323696af99662a208cb7a7f72454c7361944b7fa6188586d4d10547647ebb418f4ebfa6efc3cbec403eef9fd2d2eb6dc0b6bb
|
|
7
|
+
data.tar.gz: 3fd9a4083c211fa180a4a7bca6cc6e1656e72c92b3cdfca49ccd081d1132626e2720d8b4300523416254e8f9d32e7d70034c0e44b937469b2895df2667776937
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [v4.0.1](https://github.com/AlchemyCMS/alchemy_i18n/tree/v4.0.1) (2023-10-06)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/AlchemyCMS/alchemy_i18n/compare/v4.0.0...v4.0.1)
|
|
6
|
+
|
|
7
|
+
**Fixed bugs:**
|
|
8
|
+
|
|
9
|
+
- Do not attempt to load en flatpickr locale [\#52](https://github.com/AlchemyCMS/alchemy_i18n/pull/52) ([tvdeyen](https://github.com/tvdeyen))
|
|
10
|
+
|
|
3
11
|
## [v4.0.0](https://github.com/AlchemyCMS/alchemy_i18n/tree/v4.0.0) (2023-10-06)
|
|
4
12
|
|
|
5
13
|
[Full Changelog](https://github.com/AlchemyCMS/alchemy_i18n/compare/v3.2.0...v4.0.0)
|
data/lib/alchemy_i18n/engine.rb
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
module AlchemyI18n
|
|
2
2
|
class Engine < ::Rails::Engine
|
|
3
3
|
initializer "alchemy-i18n" do |app|
|
|
4
|
-
locales = Array(app.config.i18n.available_locales)
|
|
4
|
+
locales = Array(app.config.i18n.available_locales).reject { |l| l == :en }
|
|
5
5
|
pattern = locales.empty? ? "*" : "{#{locales.join ","}}"
|
|
6
6
|
files = Dir[root.join("locales", "alchemy.#{pattern}.yml")]
|
|
7
7
|
I18n.load_path.concat(files)
|
data/lib/alchemy_i18n/version.rb
CHANGED