i18n_rails_helpers 0.5.5 → 0.5.6

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -22,7 +22,7 @@ begin
22
22
  s.author = AUTHOR
23
23
 
24
24
  s.require_path = 'lib'
25
- s.files = %w(MIT-LICENSE README Rakefile) + Dir.glob("{lib,test,rails}/**/*")
25
+ s.files = %w(MIT-LICENSE README Rakefile) + Dir.glob("{lib,test,rails,config}/**/*")
26
26
 
27
27
  # Runtime dependencies: When installing i18n_rails_helpers these will be checked if they are installed.
28
28
  # Will be offered to install these if they are not already installed.
@@ -0,0 +1,9 @@
1
+ de:
2
+ messages:
3
+ confirm_delete: "%{model} %{record} wirklich löschen?"
4
+
5
+ crud:
6
+ edit: "%{model} bearbeiten"
7
+ show: "%{model} anzeigen"
8
+ new: "%{model} anlegen"
9
+ back: "zurück"
@@ -1,3 +1,5 @@
1
+ require 'i18n_rails_helpers/railtie' if defined?(::Rails::Railtie)
2
+
1
3
  module I18nRailsHelpers
2
4
  # Returns translated name for the given +attribute+.
3
5
  #
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 5
9
- version: 0.5.5
8
+ - 6
9
+ version: 0.5.6
10
10
  platform: ruby
11
11
  authors:
12
12
  - "Simon H\xC3\xBCrlimann"
@@ -53,6 +53,7 @@ files:
53
53
  - MIT-LICENSE
54
54
  - README
55
55
  - Rakefile
56
+ - config/locales/de.yml
56
57
  - lib/i18n_rails_helpers.rb
57
58
  - lib/i18n_rails_helpers/railtie.rb
58
59
  - test/i18n_rails_helpers_test.rb