summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2014-05-20 09:13:25 +0200
committerAzul <azul@leap.se>2014-05-26 12:59:26 +0200
commit730e31017109994c24db431fde12f575ed5c1467 (patch)
tree027f9878e38ba339ad20f565278e1e9143a98b52 /config
parente7d6bcce2a04a049926e75074605a2e7f91ede1a (diff)
FlashResponder will automagically add flash messages
Diffstat (limited to 'config')
-rw-r--r--config/initializers/i18n.rb4
-rw-r--r--config/locales/en.yml6
2 files changed, 10 insertions, 0 deletions
diff --git a/config/initializers/i18n.rb b/config/initializers/i18n.rb
index c277a22..b209d00 100644
--- a/config/initializers/i18n.rb
+++ b/config/initializers/i18n.rb
@@ -8,3 +8,7 @@ MATCH_LOCALE = /(#{I18n.available_locales.join('|')})/
# I18n.available_locales is always an array of symbols, but for comparison with
# params we need it to be an array of strings.
LOCALES_STRING = I18n.available_locales.map(&:to_s)
+
+# enable using the cascade option
+# see svenfuchs.com/2011/2/11/organizing-translations-with-i18n-cascade-and-i18n-missingtranslations
+I18n::Backend::Simple.send(:include, I18n::Backend::Cascade)
diff --git a/config/locales/en.yml b/config/locales/en.yml
index 899d659..a7a76a8 100644
--- a/config/locales/en.yml
+++ b/config/locales/en.yml
@@ -1,4 +1,10 @@
en:
+ flash:
+ success: "%{resource} was successfully saved."
+ create:
+ success: "%{resource} was successfully created."
+ update:
+ success: "%{resource} was successfully updated."
home: Home
privacy_policy: Privacy Policy
terms_of_service: Terms of Service