alchemy_i18n 4.0.0 → 4.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fe8181e95211f25589c670ca70399aeadca6e72f74105afc71b54c3533965272
4
- data.tar.gz: 550be2d0f544f9b7582ae4ee190a8b3ddb70fdf27a12ab9f0480c750c50abfd2
3
+ metadata.gz: fdda2886398913c95a57b7852b733082be9dbced726ed25c7901fa63fd498179
4
+ data.tar.gz: 35e1d7951d9a92e6685ec970e36ab7a39a4cb22da3afc6c02a136f0f87a53f23
5
5
  SHA512:
6
- metadata.gz: 562a9758f5faf35da051b54d6674f45cce97fb131f056f4762dd323229ed7e2830cf50abfb6b044d69ac2c3ab712cee5d1292f4a528ac02af1439133841bde53
7
- data.tar.gz: 7b1d0bcf163e1bf9fd6c6407cc2c5f308d4ee644eaa86511c28014bd59b51f34aea13959aadd65b84aa8b7c8401443ba744b5b6207d59f1da669a0972753dc97
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)
@@ -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)
@@ -1,3 +1,3 @@
1
1
  module AlchemyI18n
2
- VERSION = "4.0.0"
2
+ VERSION = "4.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alchemy_i18n
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.0
4
+ version: 4.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas von Deyen