We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 845c4b3 commit 780056dCopy full SHA for 780056d
README.md
@@ -65,6 +65,16 @@ into an initializer:
65
SolidusGlobalize::Config.supported_locales = [:en, :'pt-BR']
66
```
67
68
+Additionally, the translatable fields on individual models can be adjusted with configuration:
69
+
70
+```ruby
71
+SolidusGlobalize::Config[:translatable_fields].merge!(
72
+ {
73
+ 'Spree::OptionValue' => [:presentation]
74
+ }
75
+)
76
+```
77
78
**PS 1.** The languages you add to this configuration need to be supported by
79
your store. This means that you need to have a transations file for them
80
into `/config/locales/` (eg. `/config/locales/pt-BR.yml`).
0 commit comments