rosette 0.3.4 → 0.3.6
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aecb5dd40f0007e6db2bfa8a69340b43b92c818c19911f299cc08f1d1fe04046
|
4
|
+
data.tar.gz: 85727dc5d771295f162d99e23085193bb0766457b43a61a7a87de73759f1aad1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e94f7a6dccf328c60d5f14ba69eae58b5b522100df5663041590fd6dbe45c91dea995918a32eb089bb81f4efc3118a253be9913e18f9212e9c8ca0d104b51379
|
7
|
+
data.tar.gz: 6516c001722f950ed36647a2145fdb379cf92d15d8b79ff5d8c64b806981ecbe76cb34182d5bf937cb0be479bc4b93d67f3e616936353b0c2c8c8c522b3eed06
|
data/README.md
CHANGED
@@ -23,6 +23,14 @@ Make sure your app raises error for missing translations in development:
|
|
23
23
|
config.i18n.raise_on_missing_translations = true
|
24
24
|
```
|
25
25
|
|
26
|
+
and that you explicitly set the available locales:
|
27
|
+
|
28
|
+
```ruby
|
29
|
+
# config/application.rb
|
30
|
+
|
31
|
+
config.i18n.available_locales = [:fr, :en]
|
32
|
+
```
|
33
|
+
|
26
34
|
Whether you currently use or are interested in starting to use [i18n-task to normalize](https://github.com/glebm/i18n-tasks#normalize-data) your locales files, add this initializer:
|
27
35
|
|
28
36
|
```ruby
|
data/lib/rosette/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rosette
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexandre Platteeuw
|
@@ -78,7 +78,7 @@ files:
|
|
78
78
|
- README.md
|
79
79
|
- Rakefile
|
80
80
|
- app/assets/config/rosette_manifest.js
|
81
|
-
- app/assets/stylesheets/rosette
|
81
|
+
- app/assets/stylesheets/rosette.css
|
82
82
|
- app/controllers/rosette/application_controller.rb
|
83
83
|
- app/controllers/rosette/translations_controller.rb
|
84
84
|
- app/helpers/rosette/application_helper.rb
|
File without changes
|