ecm_sliders2 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +35 -0
- data/Rakefile +27 -0
- data/app/helpers/ecm/sliders_helper.rb +10 -0
- data/app/helpers/markup_helper.rb +7 -0
- data/app/models/ecm/sliders/item.rb +36 -0
- data/app/models/ecm/sliders/slider.rb +40 -0
- data/app/views/ecm/sliders/sliders/_slider.haml +3 -0
- data/config/locales/de.yml +52 -0
- data/config/locales/en.yml +52 -0
- data/config/routes.rb +6 -0
- data/db/migrate/001_create_ecm_sliders_sliders.rb +14 -0
- data/db/migrate/002_create_ecm_sliders_items.rb +14 -0
- data/lib/ecm/sliders/configuration.rb +23 -0
- data/lib/ecm/sliders/engine.rb +7 -0
- data/lib/ecm/sliders/routing.rb +14 -0
- data/lib/ecm/sliders/version.rb +6 -0
- data/lib/ecm_sliders2.rb +17 -0
- data/lib/generators/ecm/sliders/install/install_generator.rb +21 -0
- data/lib/generators/ecm/sliders/install/templates/initializer.rb +39 -0
- data/lib/generators/ecm/sliders/install/templates/routes.source +5 -0
- data/lib/tasks/ecm_sliders_tasks.rake +67 -0
- data/spec/controllers/ecm/sliders/sliders_controller_spec.rb +23 -0
- data/spec/dummy/README.rdoc +261 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/admin/admin_users.rb +20 -0
- data/spec/dummy/app/admin/dashboards.rb +33 -0
- data/spec/dummy/app/assets/javascripts/active_admin.js +1 -0
- data/spec/dummy/app/assets/javascripts/application.js +15 -0
- data/spec/dummy/app/assets/javascripts/bootstrap.min.js +6 -0
- data/spec/dummy/app/assets/stylesheets/active_admin.css.scss +29 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/assets/stylesheets/bootstrap.min.css +727 -0
- data/spec/dummy/app/assets/stylesheets/ecm.sliders.css +9 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +7 -0
- data/spec/dummy/app/models/admin_user.rb +11 -0
- data/spec/dummy/app/views/layouts/application.html.erb +37 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +69 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +67 -0
- data/spec/dummy/config/environments/test.rb +37 -0
- data/spec/dummy/config/initializers/active_admin.rb +154 -0
- data/spec/dummy/config/initializers/active_admin_footer_patch.rb +12 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/devise.rb +232 -0
- data/spec/dummy/config/initializers/ecm_sliders.rb +39 -0
- data/spec/dummy/config/initializers/inflections.rb +15 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/de.yml +163 -0
- data/spec/dummy/config/locales/devise.en.yml +58 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +65 -0
- data/spec/dummy/db/migrate/20120922100801_create_ecm_sliders_sliders.ecm_sliders_engine.rb +20 -0
- data/spec/dummy/db/migrate/20120922100802_create_ecm_sliders_items.ecm_sliders_engine.rb +25 -0
- data/spec/dummy/db/migrate/20120922105221_devise_create_admin_users.rb +52 -0
- data/spec/dummy/db/migrate/20120922105247_create_admin_notes.rb +17 -0
- data/spec/dummy/db/migrate/20120922105248_move_admin_notes_to_comments.rb +25 -0
- data/spec/dummy/db/schema.rb +75 -0
- data/spec/dummy/lib/locale_generator.rb +194 -0
- data/spec/dummy/lib/tasks/stub_locales.rake +32 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/factories/ecm/sliders/items.rb +14 -0
- data/spec/factories/ecm/sliders/sliders.rb +10 -0
- data/spec/features/ecm/sliders/slider_items_admin_spec.rb +172 -0
- data/spec/features/ecm/sliders/sliders_admin_spec.rb +170 -0
- data/spec/files/ecm/sliders/items/example.png +0 -0
- data/spec/helpers/ecm/sliders_helper_spec.rb +36 -0
- data/spec/models/ecm/sliders/item_spec.rb +49 -0
- data/spec/models/ecm/sliders/slider_spec.rb +97 -0
- data/spec/models/generic_spec.rb +34 -0
- data/spec/requests/ecm/sliders/sliders_spec.rb +28 -0
- data/spec/routing/ecm/sliders/routes_spec.rb +11 -0
- data/spec/spec_helper.rb +38 -0
- data/spec/support/active_admin/sign_in_helper.rb +18 -0
- data/spec/support/capybara.rb +1 -0
- data/spec/support/factory_girl.rb +6 -0
- data/spec/support/ffaker.rb +1 -0
- data/spec/support/shoulda.rb +1 -0
- data/spec/views/ecm/sliders/sliders/index_spec.rb +20 -0
- metadata +344 -0
@@ -0,0 +1,12 @@
|
|
1
|
+
module ActiveAdmin
|
2
|
+
module Views
|
3
|
+
class Footer < Component
|
4
|
+
def powered_by_message
|
5
|
+
para I18n.t('active_admin.powered_by',
|
6
|
+
:active_admin => link_to("Active Admin", "http://www.activeadmin.info"),
|
7
|
+
:version => ActiveAdmin::VERSION).html_safe
|
8
|
+
end
|
9
|
+
end
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
|
4
|
+
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
|
5
|
+
|
6
|
+
# You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
|
7
|
+
# Rails.backtrace_cleaner.remove_silencers!
|
@@ -0,0 +1,232 @@
|
|
1
|
+
# Use this hook to configure devise mailer, warden hooks and so forth.
|
2
|
+
# Many of these configuration options can be set straight in your model.
|
3
|
+
Devise.setup do |config|
|
4
|
+
# ==> Mailer Configuration
|
5
|
+
# Configure the e-mail address which will be shown in Devise::Mailer,
|
6
|
+
# note that it will be overwritten if you use your own mailer class with default "from" parameter.
|
7
|
+
config.mailer_sender = "please-change-me-at-config-initializers-devise@example.com"
|
8
|
+
|
9
|
+
# Configure the class responsible to send e-mails.
|
10
|
+
# config.mailer = "Devise::Mailer"
|
11
|
+
|
12
|
+
# ==> ORM configuration
|
13
|
+
# Load and configure the ORM. Supports :active_record (default) and
|
14
|
+
# :mongoid (bson_ext recommended) by default. Other ORMs may be
|
15
|
+
# available as additional gems.
|
16
|
+
require 'devise/orm/active_record'
|
17
|
+
|
18
|
+
# ==> Configuration for any authentication mechanism
|
19
|
+
# Configure which keys are used when authenticating a user. The default is
|
20
|
+
# just :email. You can configure it to use [:username, :subdomain], so for
|
21
|
+
# authenticating a user, both parameters are required. Remember that those
|
22
|
+
# parameters are used only when authenticating and not when retrieving from
|
23
|
+
# session. If you need permissions, you should implement that in a before filter.
|
24
|
+
# You can also supply a hash where the value is a boolean determining whether
|
25
|
+
# or not authentication should be aborted when the value is not present.
|
26
|
+
# config.authentication_keys = [ :email ]
|
27
|
+
|
28
|
+
# Configure parameters from the request object used for authentication. Each entry
|
29
|
+
# given should be a request method and it will automatically be passed to the
|
30
|
+
# find_for_authentication method and considered in your model lookup. For instance,
|
31
|
+
# if you set :request_keys to [:subdomain], :subdomain will be used on authentication.
|
32
|
+
# The same considerations mentioned for authentication_keys also apply to request_keys.
|
33
|
+
# config.request_keys = []
|
34
|
+
|
35
|
+
# Configure which authentication keys should be case-insensitive.
|
36
|
+
# These keys will be downcased upon creating or modifying a user and when used
|
37
|
+
# to authenticate or find a user. Default is :email.
|
38
|
+
config.case_insensitive_keys = [ :email ]
|
39
|
+
|
40
|
+
# Configure which authentication keys should have whitespace stripped.
|
41
|
+
# These keys will have whitespace before and after removed upon creating or
|
42
|
+
# modifying a user and when used to authenticate or find a user. Default is :email.
|
43
|
+
config.strip_whitespace_keys = [ :email ]
|
44
|
+
|
45
|
+
# Tell if authentication through request.params is enabled. True by default.
|
46
|
+
# It can be set to an array that will enable params authentication only for the
|
47
|
+
# given strategies, for example, `config.params_authenticatable = [:database]` will
|
48
|
+
# enable it only for database (email + password) authentication.
|
49
|
+
# config.params_authenticatable = true
|
50
|
+
|
51
|
+
# Tell if authentication through HTTP Basic Auth is enabled. False by default.
|
52
|
+
# It can be set to an array that will enable http authentication only for the
|
53
|
+
# given strategies, for example, `config.http_authenticatable = [:token]` will
|
54
|
+
# enable it only for token authentication.
|
55
|
+
# config.http_authenticatable = false
|
56
|
+
|
57
|
+
# If http headers should be returned for AJAX requests. True by default.
|
58
|
+
# config.http_authenticatable_on_xhr = true
|
59
|
+
|
60
|
+
# The realm used in Http Basic Authentication. "Application" by default.
|
61
|
+
# config.http_authentication_realm = "Application"
|
62
|
+
|
63
|
+
# It will change confirmation, password recovery and other workflows
|
64
|
+
# to behave the same regardless if the e-mail provided was right or wrong.
|
65
|
+
# Does not affect registerable.
|
66
|
+
# config.paranoid = true
|
67
|
+
|
68
|
+
# By default Devise will store the user in session. You can skip storage for
|
69
|
+
# :http_auth and :token_auth by adding those symbols to the array below.
|
70
|
+
# Notice that if you are skipping storage for all authentication paths, you
|
71
|
+
# may want to disable generating routes to Devise's sessions controller by
|
72
|
+
# passing :skip => :sessions to `devise_for` in your config/routes.rb
|
73
|
+
config.skip_session_storage = [:http_auth]
|
74
|
+
|
75
|
+
# ==> Configuration for :database_authenticatable
|
76
|
+
# For bcrypt, this is the cost for hashing the password and defaults to 10. If
|
77
|
+
# using other encryptors, it sets how many times you want the password re-encrypted.
|
78
|
+
#
|
79
|
+
# Limiting the stretches to just one in testing will increase the performance of
|
80
|
+
# your test suite dramatically. However, it is STRONGLY RECOMMENDED to not use
|
81
|
+
# a value less than 10 in other environments.
|
82
|
+
config.stretches = Rails.env.test? ? 1 : 10
|
83
|
+
|
84
|
+
# Setup a pepper to generate the encrypted password.
|
85
|
+
# config.pepper = "1373143cc19ad95311bc4e4b767c6454233bb8c68d11faa7bae6573c674ff77e5cd6c68526a7bc6c311f256f37f127774874b3b98f4c9becff7c616aab802b0d"
|
86
|
+
|
87
|
+
# ==> Configuration for :confirmable
|
88
|
+
# A period that the user is allowed to access the website even without
|
89
|
+
# confirming his account. For instance, if set to 2.days, the user will be
|
90
|
+
# able to access the website for two days without confirming his account,
|
91
|
+
# access will be blocked just in the third day. Default is 0.days, meaning
|
92
|
+
# the user cannot access the website without confirming his account.
|
93
|
+
# config.allow_unconfirmed_access_for = 2.days
|
94
|
+
|
95
|
+
# If true, requires any email changes to be confirmed (exactly the same way as
|
96
|
+
# initial account confirmation) to be applied. Requires additional unconfirmed_email
|
97
|
+
# db field (see migrations). Until confirmed new email is stored in
|
98
|
+
# unconfirmed email column, and copied to email column on successful confirmation.
|
99
|
+
config.reconfirmable = true
|
100
|
+
|
101
|
+
# Defines which key will be used when confirming an account
|
102
|
+
# config.confirmation_keys = [ :email ]
|
103
|
+
|
104
|
+
# ==> Configuration for :rememberable
|
105
|
+
# The time the user will be remembered without asking for credentials again.
|
106
|
+
# config.remember_for = 2.weeks
|
107
|
+
|
108
|
+
# If true, extends the user's remember period when remembered via cookie.
|
109
|
+
# config.extend_remember_period = false
|
110
|
+
|
111
|
+
# Options to be passed to the created cookie. For instance, you can set
|
112
|
+
# :secure => true in order to force SSL only cookies.
|
113
|
+
# config.rememberable_options = {}
|
114
|
+
|
115
|
+
# ==> Configuration for :validatable
|
116
|
+
# Range for password length. Default is 6..128.
|
117
|
+
# config.password_length = 6..128
|
118
|
+
|
119
|
+
# Email regex used to validate email formats. It simply asserts that
|
120
|
+
# an one (and only one) @ exists in the given string. This is mainly
|
121
|
+
# to give user feedback and not to assert the e-mail validity.
|
122
|
+
# config.email_regexp = /\A[^@]+@[^@]+\z/
|
123
|
+
|
124
|
+
# ==> Configuration for :timeoutable
|
125
|
+
# The time you want to timeout the user session without activity. After this
|
126
|
+
# time the user will be asked for credentials again. Default is 30 minutes.
|
127
|
+
# config.timeout_in = 30.minutes
|
128
|
+
|
129
|
+
# If true, expires auth token on session timeout.
|
130
|
+
# config.expire_auth_token_on_timeout = false
|
131
|
+
|
132
|
+
# ==> Configuration for :lockable
|
133
|
+
# Defines which strategy will be used to lock an account.
|
134
|
+
# :failed_attempts = Locks an account after a number of failed attempts to sign in.
|
135
|
+
# :none = No lock strategy. You should handle locking by yourself.
|
136
|
+
# config.lock_strategy = :failed_attempts
|
137
|
+
|
138
|
+
# Defines which key will be used when locking and unlocking an account
|
139
|
+
# config.unlock_keys = [ :email ]
|
140
|
+
|
141
|
+
# Defines which strategy will be used to unlock an account.
|
142
|
+
# :email = Sends an unlock link to the user email
|
143
|
+
# :time = Re-enables login after a certain amount of time (see :unlock_in below)
|
144
|
+
# :both = Enables both strategies
|
145
|
+
# :none = No unlock strategy. You should handle unlocking by yourself.
|
146
|
+
# config.unlock_strategy = :both
|
147
|
+
|
148
|
+
# Number of authentication tries before locking an account if lock_strategy
|
149
|
+
# is failed attempts.
|
150
|
+
# config.maximum_attempts = 20
|
151
|
+
|
152
|
+
# Time interval to unlock the account if :time is enabled as unlock_strategy.
|
153
|
+
# config.unlock_in = 1.hour
|
154
|
+
|
155
|
+
# ==> Configuration for :recoverable
|
156
|
+
#
|
157
|
+
# Defines which key will be used when recovering the password for an account
|
158
|
+
# config.reset_password_keys = [ :email ]
|
159
|
+
|
160
|
+
# Time interval you can reset your password with a reset password key.
|
161
|
+
# Don't put a too small interval or your users won't have the time to
|
162
|
+
# change their passwords.
|
163
|
+
config.reset_password_within = 6.hours
|
164
|
+
|
165
|
+
# ==> Configuration for :encryptable
|
166
|
+
# Allow you to use another encryption algorithm besides bcrypt (default). You can use
|
167
|
+
# :sha1, :sha512 or encryptors from others authentication tools as :clearance_sha1,
|
168
|
+
# :authlogic_sha512 (then you should set stretches above to 20 for default behavior)
|
169
|
+
# and :restful_authentication_sha1 (then you should set stretches to 10, and copy
|
170
|
+
# REST_AUTH_SITE_KEY to pepper)
|
171
|
+
# config.encryptor = :sha512
|
172
|
+
|
173
|
+
# ==> Configuration for :token_authenticatable
|
174
|
+
# Defines name of the authentication token params key
|
175
|
+
# config.token_authentication_key = :auth_token
|
176
|
+
|
177
|
+
# ==> Scopes configuration
|
178
|
+
# Turn scoped views on. Before rendering "sessions/new", it will first check for
|
179
|
+
# "users/sessions/new". It's turned off by default because it's slower if you
|
180
|
+
# are using only default views.
|
181
|
+
# config.scoped_views = false
|
182
|
+
|
183
|
+
# Configure the default scope given to Warden. By default it's the first
|
184
|
+
# devise role declared in your routes (usually :user).
|
185
|
+
# config.default_scope = :user
|
186
|
+
|
187
|
+
# Set this configuration to false if you want /users/sign_out to sign out
|
188
|
+
# only the current scope. By default, Devise signs out all scopes.
|
189
|
+
# config.sign_out_all_scopes = true
|
190
|
+
|
191
|
+
# ==> Navigation configuration
|
192
|
+
# Lists the formats that should be treated as navigational. Formats like
|
193
|
+
# :html, should redirect to the sign in page when the user does not have
|
194
|
+
# access, but formats like :xml or :json, should return 401.
|
195
|
+
#
|
196
|
+
# If you have any extra navigational formats, like :iphone or :mobile, you
|
197
|
+
# should add them to the navigational formats lists.
|
198
|
+
#
|
199
|
+
# The "*/*" below is required to match Internet Explorer requests.
|
200
|
+
# config.navigational_formats = ["*/*", :html]
|
201
|
+
|
202
|
+
# The default HTTP method used to sign out a resource. Default is :delete.
|
203
|
+
config.sign_out_via = :delete
|
204
|
+
|
205
|
+
# ==> OmniAuth
|
206
|
+
# Add a new OmniAuth provider. Check the wiki for more information on setting
|
207
|
+
# up on your models and hooks.
|
208
|
+
# config.omniauth :github, 'APP_ID', 'APP_SECRET', :scope => 'user,public_repo'
|
209
|
+
|
210
|
+
# ==> Warden configuration
|
211
|
+
# If you want to use other strategies, that are not supported by Devise, or
|
212
|
+
# change the failure app, you can configure them inside the config.warden block.
|
213
|
+
#
|
214
|
+
# config.warden do |manager|
|
215
|
+
# manager.intercept_401 = false
|
216
|
+
# manager.default_strategies(:scope => :user).unshift :some_external_strategy
|
217
|
+
# end
|
218
|
+
|
219
|
+
# ==> Mountable engine configurations
|
220
|
+
# When using Devise inside an engine, let's call it `MyEngine`, and this engine
|
221
|
+
# is mountable, there are some extra configurations to be taken into account.
|
222
|
+
# The following options are available, assuming the engine is mounted as:
|
223
|
+
#
|
224
|
+
# mount MyEngine, at: "/my_engine"
|
225
|
+
#
|
226
|
+
# The router that invoked `devise_for`, in the example above, would be:
|
227
|
+
# config.router_name = :my_engine
|
228
|
+
#
|
229
|
+
# When using omniauth, Devise cannot automatically set Omniauth path,
|
230
|
+
# so you need to do it manually. For the users scope, it would be:
|
231
|
+
# config.omniauth_path_prefix = "/my_engine/users/auth"
|
232
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
Ecm::Sliders.configure do |config|
|
2
|
+
# Slider options #############################################################
|
3
|
+
|
4
|
+
# Autostart
|
5
|
+
#
|
6
|
+
# default: config.slider_auto_start = false
|
7
|
+
config.slider_auto_start = false
|
8
|
+
|
9
|
+
# Interval
|
10
|
+
#
|
11
|
+
# default: config.slider_interval = 5.0
|
12
|
+
config.slider_interval = 5.0
|
13
|
+
|
14
|
+
# Item options ###############################################################
|
15
|
+
|
16
|
+
# image sizes for slider items
|
17
|
+
#
|
18
|
+
# default: config.item_image_styles = {
|
19
|
+
# :small_thumb => "80x60>",
|
20
|
+
# :medium_thumb => "160x120>",
|
21
|
+
# :slider => "830x477"
|
22
|
+
# }
|
23
|
+
config.item_image_styles = {
|
24
|
+
:small_thumb => "80x60>",
|
25
|
+
:medium_thumb => "160x120>",
|
26
|
+
:slider => "830x477"
|
27
|
+
}
|
28
|
+
|
29
|
+
# Accepted markup languages for the item body
|
30
|
+
#
|
31
|
+
# default: config.markup_languages = %w[ markdown rdoc textile ]
|
32
|
+
config.markup_languages = %w[ markdown rdoc textile ]
|
33
|
+
|
34
|
+
# Default markup language for the item body
|
35
|
+
#
|
36
|
+
# default: config.default_markup_language = 'textile'
|
37
|
+
config.default_markup_language = 'textile'
|
38
|
+
end
|
39
|
+
|
@@ -0,0 +1,15 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Add new inflection rules using the following format
|
4
|
+
# (all these examples are active by default):
|
5
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
6
|
+
# inflect.plural /^(ox)$/i, '\1en'
|
7
|
+
# inflect.singular /^(ox)en/i, '\1'
|
8
|
+
# inflect.irregular 'person', 'people'
|
9
|
+
# inflect.uncountable %w( fish sheep )
|
10
|
+
# end
|
11
|
+
#
|
12
|
+
# These inflection rules are supported but not enabled by default:
|
13
|
+
# ActiveSupport::Inflector.inflections do |inflect|
|
14
|
+
# inflect.acronym 'RESTful'
|
15
|
+
# end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
# Your secret key for verifying the integrity of signed cookies.
|
4
|
+
# If you change this key, all old signed cookies will become invalid!
|
5
|
+
# Make sure the secret is at least 30 characters and all random,
|
6
|
+
# no regular words or you'll be exposed to dictionary attacks.
|
7
|
+
Dummy::Application.config.secret_token = '9b42571849ff5c012f49615dace52c721c4d5915bc9c1e71b67f7b8bc8cfeb558b825a7155c42a81aefaf9138f5df2218e3d9e3aabde74911ac248fea8b770ad'
|
@@ -0,0 +1,8 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
|
3
|
+
Dummy::Application.config.session_store :cookie_store, :key => '_dummy_session'
|
4
|
+
|
5
|
+
# Use the database for sessions instead of the cookie-based default,
|
6
|
+
# which shouldn't be used to store highly confidential information
|
7
|
+
# (create the session table with "rails generate session_migration")
|
8
|
+
# Dummy::Application.config.session_store :active_record_store
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Be sure to restart your server when you modify this file.
|
2
|
+
#
|
3
|
+
# This file contains settings for ActionController::ParamsWrapper which
|
4
|
+
# is enabled by default.
|
5
|
+
|
6
|
+
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
|
7
|
+
ActiveSupport.on_load(:action_controller) do
|
8
|
+
wrap_parameters :format => [:json]
|
9
|
+
end
|
10
|
+
|
11
|
+
# Disable root element in JSON by default.
|
12
|
+
ActiveSupport.on_load(:active_record) do
|
13
|
+
self.include_root_in_json = false
|
14
|
+
end
|
@@ -0,0 +1,163 @@
|
|
1
|
+
# German translations for Ruby on Rails
|
2
|
+
# by Clemens Kofler (clemens@railway.at)
|
3
|
+
|
4
|
+
de:
|
5
|
+
helpers:
|
6
|
+
select:
|
7
|
+
prompt: Bitte wählen
|
8
|
+
submit:
|
9
|
+
create: ! '%{model} erstellen'
|
10
|
+
submit: ! '%{model} speichern'
|
11
|
+
update: ! '%{model} aktualisieren'
|
12
|
+
date:
|
13
|
+
formats:
|
14
|
+
default: "%d.%m.%Y"
|
15
|
+
short: "%e. %b"
|
16
|
+
long: "%e. %B %Y"
|
17
|
+
only_day: "%e"
|
18
|
+
|
19
|
+
day_names: [Sonntag, Montag, Dienstag, Mittwoch, Donnerstag, Freitag, Samstag]
|
20
|
+
abbr_day_names: [So, Mo, Di, Mi, Do, Fr, Sa]
|
21
|
+
month_names: [~, Januar, Februar, März, April, Mai, Juni, Juli, August, September, Oktober, November, Dezember]
|
22
|
+
abbr_month_names: [~, Jan, Feb, Mär, Apr, Mai, Jun, Jul, Aug, Sep, Okt, Nov, Dez]
|
23
|
+
order:
|
24
|
+
- :day
|
25
|
+
- :month
|
26
|
+
- :year
|
27
|
+
|
28
|
+
time:
|
29
|
+
formats:
|
30
|
+
default: "%A, %d. %B %Y, %H:%M Uhr"
|
31
|
+
short: "%d. %B, %H:%M Uhr"
|
32
|
+
long: "%A, %d. %B %Y, %H:%M Uhr"
|
33
|
+
time: "%H:%M"
|
34
|
+
date: "%d.%m.%Y"
|
35
|
+
|
36
|
+
am: "vormittags"
|
37
|
+
pm: "nachmittags"
|
38
|
+
|
39
|
+
datetime:
|
40
|
+
distance_in_words:
|
41
|
+
half_a_minute: 'eine halbe Minute'
|
42
|
+
less_than_x_seconds:
|
43
|
+
one: 'weniger als eine Sekunde'
|
44
|
+
other: 'weniger als %{count} Sekunden'
|
45
|
+
x_seconds:
|
46
|
+
one: 'eine Sekunde'
|
47
|
+
other: '%{count} Sekunden'
|
48
|
+
less_than_x_minutes:
|
49
|
+
one: 'weniger als eine Minute'
|
50
|
+
other: 'weniger als %{count} Minuten'
|
51
|
+
x_minutes:
|
52
|
+
one: 'eine Minute'
|
53
|
+
other: '%{count} Minuten'
|
54
|
+
about_x_hours:
|
55
|
+
one: 'etwa eine Stunde'
|
56
|
+
other: 'etwa %{count} Stunden'
|
57
|
+
x_days:
|
58
|
+
one: 'ein Tag'
|
59
|
+
other: '%{count} Tage'
|
60
|
+
about_x_months:
|
61
|
+
one: 'etwa ein Monat'
|
62
|
+
other: 'etwa %{count} Monate'
|
63
|
+
x_months:
|
64
|
+
one: 'ein Monat'
|
65
|
+
other: '%{count} Monate'
|
66
|
+
almost_x_years:
|
67
|
+
one: 'fast ein Jahr'
|
68
|
+
other: 'fast %{count} Jahre'
|
69
|
+
about_x_years:
|
70
|
+
one: 'etwa ein Jahr'
|
71
|
+
other: 'etwa %{count} Jahre'
|
72
|
+
over_x_years:
|
73
|
+
one: 'mehr als ein Jahr'
|
74
|
+
other: 'mehr als %{count} Jahre'
|
75
|
+
prompts:
|
76
|
+
second: "Sekunden"
|
77
|
+
minute: "Minuten"
|
78
|
+
hour: "Stunden"
|
79
|
+
day: "Tag"
|
80
|
+
month: "Monat"
|
81
|
+
year: "Jahr"
|
82
|
+
|
83
|
+
number:
|
84
|
+
format:
|
85
|
+
precision: 2
|
86
|
+
separator: ','
|
87
|
+
delimiter: '.'
|
88
|
+
currency:
|
89
|
+
format:
|
90
|
+
unit: '€'
|
91
|
+
format: '%n%u'
|
92
|
+
separator: ","
|
93
|
+
delimiter: ""
|
94
|
+
precision: 2
|
95
|
+
percentage:
|
96
|
+
format:
|
97
|
+
delimiter: ""
|
98
|
+
precision:
|
99
|
+
format:
|
100
|
+
delimiter: ""
|
101
|
+
human:
|
102
|
+
format:
|
103
|
+
delimiter: ""
|
104
|
+
precision: 1
|
105
|
+
storage_units:
|
106
|
+
# Storage units output formatting.
|
107
|
+
# %u is the storage unit, %n is the number (default: 2 MB)
|
108
|
+
format: "%n %u"
|
109
|
+
units:
|
110
|
+
byte:
|
111
|
+
one: "Byte"
|
112
|
+
other: "Bytes"
|
113
|
+
kb: "KB"
|
114
|
+
mb: "MB"
|
115
|
+
gb: "GB"
|
116
|
+
tb: "TB"
|
117
|
+
|
118
|
+
support:
|
119
|
+
array:
|
120
|
+
words_connector: ", "
|
121
|
+
two_words_connector: " und "
|
122
|
+
last_word_connector: " und "
|
123
|
+
select:
|
124
|
+
prompt: "Bitte wählen:"
|
125
|
+
|
126
|
+
activemodel:
|
127
|
+
errors:
|
128
|
+
template:
|
129
|
+
header:
|
130
|
+
one: "Konnte %{model} nicht speichern: ein Fehler."
|
131
|
+
other: "Konnte %{model} nicht speichern: %{count} Fehler."
|
132
|
+
body: "Bitte überprüfen Sie die folgenden Felder:"
|
133
|
+
|
134
|
+
activerecord:
|
135
|
+
errors:
|
136
|
+
template:
|
137
|
+
header:
|
138
|
+
one: "Konnte %{model} nicht speichern: ein Fehler."
|
139
|
+
other: "Konnte %{model} nicht speichern: %{count} Fehler."
|
140
|
+
body: "Bitte überprüfen Sie die folgenden Felder:"
|
141
|
+
|
142
|
+
messages:
|
143
|
+
inclusion: "ist kein gültiger Wert"
|
144
|
+
exclusion: "ist nicht verfügbar"
|
145
|
+
invalid: "ist nicht gültig"
|
146
|
+
confirmation: "stimmt nicht mit der Bestätigung überein"
|
147
|
+
accepted: "muss akzeptiert werden"
|
148
|
+
empty: "muss ausgefüllt werden"
|
149
|
+
blank: "muss ausgefüllt werden"
|
150
|
+
too_long: "ist zu lang (nicht mehr als %{count} Zeichen)"
|
151
|
+
too_short: "ist zu kurz (nicht weniger als %{count} Zeichen)"
|
152
|
+
wrong_length: "hat die falsche Länge (muss genau %{count} Zeichen haben)"
|
153
|
+
taken: "ist bereits vergeben"
|
154
|
+
not_a_number: "ist keine Zahl"
|
155
|
+
greater_than: "muss größer als %{count} sein"
|
156
|
+
greater_than_or_equal_to: "muss größer oder gleich %{count} sein"
|
157
|
+
equal_to: "muss genau %{count} sein"
|
158
|
+
less_than: "muss kleiner als %{count} sein"
|
159
|
+
less_than_or_equal_to: "muss kleiner oder gleich %{count} sein"
|
160
|
+
odd: "muss ungerade sein"
|
161
|
+
even: "muss gerade sein"
|
162
|
+
record_invalid: "Gültigkeitsprüfung ist fehlgeschlagen: %{errors}"
|
163
|
+
|