cybele 1.8.0 → 1.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.ruby-version +1 -1
- data/README.md +16 -2
- data/dump.rdb +1 -0
- data/lib/cybele/app_builder.rb +213 -220
- data/lib/cybele/generators/app_generator.rb +31 -20
- data/lib/cybele/version.rb +2 -2
- data/templates/.env.local.erb +11 -0
- data/templates/.env.production.erb +11 -0
- data/templates/.env.staging.erb +11 -0
- data/templates/README.md.erb +22 -0
- data/templates/app/assets/javascripts/application.js.coffee +63 -1
- data/templates/app/assets/javascripts/hq/application.js.coffee +93 -0
- data/templates/app/assets/stylesheets/application.css.sass +15 -4
- data/templates/app/assets/stylesheets/hq/application.css.sass +92 -0
- data/templates/app/controllers/application_controller.rb.erb +48 -0
- data/templates/app/controllers/concerns/basic_authentication.rb +18 -0
- data/templates/app/controllers/hq/admins_controller.rb +64 -0
- data/templates/app/controllers/hq/application_controller.rb +11 -0
- data/templates/app/controllers/hq/audits_controller.rb +16 -0
- data/templates/app/controllers/hq/cities_controller.rb +54 -0
- data/templates/app/controllers/hq/countries_controller.rb +54 -0
- data/templates/app/controllers/hq/dashboard_controller.rb +4 -1
- data/templates/app/controllers/hq/passwords_controller.rb +10 -0
- data/templates/app/controllers/hq/registrations_controller.rb +21 -0
- data/templates/app/controllers/hq/sessions_controller.rb +1 -1
- data/templates/app/controllers/hq/users_controller.rb +64 -0
- data/templates/app/controllers/user/dashboard_controller.rb +8 -0
- data/templates/app/controllers/user/passwords_controller.rb +10 -0
- data/templates/app/controllers/user/profiles_controller.rb +34 -0
- data/templates/app/controllers/user/registrations_controller.rb +20 -0
- data/templates/app/controllers/user/sessions_controller.rb +16 -0
- data/templates/app/controllers/user/user_application_controller.rb +20 -0
- data/templates/app/helpers/application_helper.rb.erb +27 -0
- data/templates/app/mailers/admin_mailer.rb +10 -0
- data/templates/app/mailers/base_mailer.rb +4 -0
- data/templates/app/mailers/user_mailer.rb +10 -0
- data/templates/app/models/admin.rb +51 -0
- data/templates/app/models/audit.rb +3 -0
- data/templates/app/models/city.rb +12 -0
- data/templates/app/models/country.rb +12 -0
- data/templates/app/models/user.rb +54 -0
- data/templates/app/views/admin_mailer/login_info.html.haml +13 -0
- data/templates/app/views/devise/confirmations/new.html.haml +6 -5
- data/templates/app/views/devise/mailer/confirmation_instructions.html.haml +5 -3
- data/templates/app/views/devise/mailer/reset_password_instructions.html.haml +2 -2
- data/templates/app/views/devise/passwords/edit.html.haml +3 -3
- data/templates/app/views/devise/passwords/new.html.haml +3 -3
- data/templates/app/views/devise/registrations/edit.html.haml +5 -11
- data/templates/app/views/devise/registrations/new.html.haml +18 -6
- data/templates/app/views/devise/sessions/new.html.haml +1 -1
- data/templates/app/views/devise/shared/_links.haml +3 -1
- data/templates/app/views/devise/unlocks/new.html.haml +4 -4
- data/templates/app/views/hq/admins/_admin.html.haml +21 -0
- data/templates/app/views/hq/admins/_blank.html.haml +9 -0
- data/templates/app/views/hq/admins/_filters.html.haml +20 -0
- data/templates/app/views/hq/admins/_form.html.haml +17 -0
- data/templates/app/views/hq/admins/_list.html.haml +15 -0
- data/templates/app/views/hq/admins/edit.html.haml +3 -0
- data/templates/app/views/hq/admins/index.html.haml +18 -0
- data/templates/app/views/hq/admins/new.html.haml +5 -0
- data/templates/app/views/hq/admins/show.html.haml +19 -0
- data/templates/app/views/hq/audits/_filters.html.haml +32 -0
- data/templates/app/views/hq/audits/_list.html.haml +37 -0
- data/templates/app/views/hq/audits/index.html.haml +5 -0
- data/templates/app/views/hq/audits/show.html.haml +5 -0
- data/templates/app/views/hq/cities/_blank.html.haml +9 -0
- data/templates/app/views/hq/cities/_city.html.haml +12 -0
- data/templates/app/views/hq/cities/_filters.html.haml +15 -0
- data/templates/app/views/hq/cities/_form.html.haml +15 -0
- data/templates/app/views/hq/cities/_list.html.haml +13 -0
- data/templates/app/views/hq/cities/edit.html.haml +3 -0
- data/templates/app/views/hq/cities/index.html.haml +18 -0
- data/templates/app/views/hq/cities/new.html.haml +3 -0
- data/templates/app/views/hq/cities/show.html.haml +13 -0
- data/templates/app/views/hq/countries/_blank.html.haml +9 -0
- data/templates/app/views/hq/countries/_country.html.haml +11 -0
- data/templates/app/views/hq/countries/_filters.html.haml +14 -0
- data/templates/app/views/hq/countries/_form.html.haml +14 -0
- data/templates/app/views/hq/countries/_list.html.haml +12 -0
- data/templates/app/views/hq/countries/edit.html.haml +3 -0
- data/templates/app/views/hq/countries/index.html.haml +18 -0
- data/templates/app/views/hq/countries/new.html.haml +3 -0
- data/templates/app/views/hq/countries/show.html.haml +14 -0
- data/templates/app/views/hq/dashboard/index.html.haml +8 -0
- data/templates/app/views/hq/passwords/edit.html.haml +12 -0
- data/templates/app/views/hq/passwords/new.html.haml +9 -0
- data/templates/app/views/hq/registrations/edit.html.haml +19 -0
- data/templates/app/views/hq/sessions/new.html.haml +7 -5
- data/templates/app/views/hq/users/_blank.html.haml +9 -0
- data/templates/app/views/hq/users/_filters.html.haml +20 -0
- data/templates/app/views/hq/users/_form.html.haml +18 -0
- data/templates/app/views/hq/users/_list.html.haml +15 -0
- data/templates/app/views/hq/users/_user.html.haml +20 -0
- data/templates/app/views/hq/users/edit.html.haml +3 -0
- data/templates/app/views/hq/users/index.html.haml +18 -0
- data/templates/app/views/hq/users/new.html.haml +5 -0
- data/templates/app/views/hq/users/show.html.haml +20 -0
- data/templates/app/views/layouts/application.html.haml.erb +16 -8
- data/templates/app/views/layouts/hq/application.html.haml.erb +55 -0
- data/templates/app/views/layouts/hq/login.html.haml.erb +35 -0
- data/templates/app/views/layouts/hq/partials/_dock.html.haml.erb +36 -0
- data/templates/app/views/layouts/hq/partials/_footer.html.haml.erb +0 -0
- data/templates/app/views/layouts/hq/partials/_navbar.html.haml.erb +22 -0
- data/templates/app/views/layouts/hq/partials/_trackers.html.haml.erb +0 -0
- data/templates/app/views/layouts/mailer.html.haml.erb +321 -0
- data/templates/app/views/layouts/mailer.text.haml +1 -0
- data/templates/app/views/layouts/partials/_footer.html.haml.erb +0 -0
- data/templates/app/views/layouts/partials/_trackers.html.haml.erb +0 -0
- data/templates/app/views/layouts/partials/_warnings.html.haml.erb +3 -0
- data/templates/app/views/user/dashboard/index.html.haml +8 -0
- data/templates/app/views/user/passwords/edit.html.haml +12 -0
- data/templates/app/views/user/passwords/new.html.haml +10 -0
- data/templates/app/views/{user_profiles → user/profiles}/_form.html.haml +4 -5
- data/templates/app/views/user/profiles/edit.html.haml +3 -0
- data/templates/app/views/user/profiles/show.html.haml +15 -0
- data/templates/app/views/user/registrations/edit.html.haml +19 -0
- data/templates/app/views/user/sessions/new.html.haml +11 -0
- data/templates/app/views/user_mailer/login_info.html.haml +13 -0
- data/templates/app/views/welcome/index.html.haml.erb +4 -4
- data/templates/config/initializers/devise_async.rb +6 -0
- data/templates/config/initializers/sidekiq.rb +13 -0
- data/templates/config/locales/email.tr.yml +28 -0
- data/templates/config/locales/models.tr.yml +72 -41
- data/templates/config/locales/responders.tr.yml +4 -1
- data/templates/config/locales/show_for.tr.yml +1 -3
- data/templates/config/locales/simple_form.tr.yml +8 -22
- data/templates/config/locales/tr.yml +33 -2
- data/templates/config/locales/view.tr.yml +64 -18
- data/templates/config/routes.erb +51 -0
- data/templates/config/schedule.yml +16 -0
- data/templates/config/settings/production.yml +0 -17
- data/templates/config/settings/staging.yml +0 -17
- data/templates/config/sidekiq.yml +13 -0
- data/templates/cybele_Gemfile +42 -5
- data/templates/cybele_gitignore +3 -1
- data/templates/cybele_version.txt +1 -0
- data/templates/env.sample.erb +11 -0
- data/templates/lib/data/cities.yml +163 -0
- data/templates/lib/tasks/dev.rake +29 -5
- data/templates/lib/tasks/sidekiq.rake +26 -0
- data/templates/lib/templates/rails/responders_controller/controller.rb +27 -22
- data/templates/public/images/favicon.png +0 -0
- data/templates/public/images/mail-logo.png +0 -0
- data/templates/public/images/missing_cover.png +0 -0
- data/templates/public/images/missing_cover@2x.png +0 -0
- data/templates/public/images/missing_logo.png +0 -0
- data/templates/public/images/missing_logo@2x.png +0 -0
- data/templates/public/images/sprite.png +0 -0
- data/templates/ruby-version +1 -1
- data/templates/vendor/assets/javascripts/jquery.datetimepicker.js +1871 -0
- data/templates/vendor/assets/javascripts/jquery.maskedinput.min.js +7 -0
- data/templates/vendor/assets/javascripts/nprogress.js +491 -0
- data/templates/vendor/assets/javascripts/trix.js +25 -0
- data/templates/vendor/assets/stylesheets/jquery.datetimepicker.css +418 -0
- data/templates/vendor/assets/stylesheets/nprogress.css +74 -0
- data/templates/vendor/assets/stylesheets/trix.css +209 -0
- metadata +125 -24
- data/templates/app/controllers/application_controller.rb +0 -19
- data/templates/app/controllers/hq/admin_profiles_controller.rb +0 -56
- data/templates/app/controllers/user_profiles_controller.rb +0 -56
- data/templates/app/views/hq/admin_profiles/_form.html.haml +0 -15
- data/templates/app/views/hq/admin_profiles/edit.html.haml +0 -3
- data/templates/app/views/hq/admin_profiles/new.html.haml +0 -3
- data/templates/app/views/hq/admin_profiles/show.html.haml +0 -13
- data/templates/app/views/hq/dashboard/index.html.haml.erb +0 -3
- data/templates/app/views/user_profiles/edit.html.haml +0 -3
- data/templates/app/views/user_profiles/new.html.haml +0 -3
- data/templates/app/views/user_profiles/show.html.haml +0 -13
- data/templates/config/locales/en.yml +0 -2
- data/templates/config/locales/models.en.yml +0 -54
- data/templates/config/locales/responders.en.yml +0 -10
- data/templates/config/locales/show_for.en.yml +0 -7
- data/templates/config/locales/simple_form.en.yml +0 -30
- data/templates/config/locales/view.en.yml +0 -51
@@ -1,56 +0,0 @@
|
|
1
|
-
# encoding: UTF-8
|
2
|
-
class Hq::AdminProfilesController < Hq::ApplicationController
|
3
|
-
|
4
|
-
before_action :check_profile, only: [:new, :create]
|
5
|
-
before_action :profile_controller, except: [:new, :create]
|
6
|
-
before_action :set_admin_profile, only: [:show, :edit, :update]
|
7
|
-
add_breadcrumb I18n.t('activerecord.models.admin_profiles'), :hq_admin_profile_path
|
8
|
-
|
9
|
-
def show
|
10
|
-
add_breadcrumb @admin_profile.first_name, hq_admin_profile_path
|
11
|
-
respond_with([:hq, @admin_profile])
|
12
|
-
end
|
13
|
-
|
14
|
-
def new
|
15
|
-
add_breadcrumb t('tooltips.new'), new_hq_admin_profile_path
|
16
|
-
@admin_profile = current_admin.build_admin_profile
|
17
|
-
respond_with([:hq, @admin_profile])
|
18
|
-
end
|
19
|
-
|
20
|
-
def edit
|
21
|
-
add_breadcrumb t('tooltips.edit'), edit_hq_admin_profile_path
|
22
|
-
end
|
23
|
-
|
24
|
-
def create
|
25
|
-
@admin_profile = current_admin.build_admin_profile(admin_profile_params)
|
26
|
-
@admin_profile.save
|
27
|
-
respond_with([:hq, @admin_profile], location: hq_admin_profile_path)
|
28
|
-
end
|
29
|
-
|
30
|
-
def update
|
31
|
-
@admin_profile.update(admin_profile_params)
|
32
|
-
respond_with([:hq, @admin_profile], location: hq_admin_profile_path)
|
33
|
-
end
|
34
|
-
|
35
|
-
private
|
36
|
-
|
37
|
-
def profile_controller
|
38
|
-
if current_admin.admin_profile.nil?
|
39
|
-
redirect_to new_hq_admin_profile_path
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
def check_profile
|
44
|
-
if current_admin.admin_profile.present?
|
45
|
-
redirect_to user_profile_path
|
46
|
-
end
|
47
|
-
end
|
48
|
-
|
49
|
-
def set_admin_profile
|
50
|
-
@admin_profile = current_admin.admin_profile
|
51
|
-
end
|
52
|
-
|
53
|
-
def admin_profile_params
|
54
|
-
params.require(:admin_profile).permit(:first_name, :gsm, :last_name)
|
55
|
-
end
|
56
|
-
end
|
@@ -1,56 +0,0 @@
|
|
1
|
-
# encoding: UTF-8
|
2
|
-
class UserProfilesController < ApplicationController
|
3
|
-
before_action :authenticate_user!
|
4
|
-
before_action :check_profile, only: [:new, :create]
|
5
|
-
before_action :profile_controller, except: [:new, :create]
|
6
|
-
before_action :set_user_profile, only: [:show, :edit, :update]
|
7
|
-
add_breadcrumb I18n.t('activerecord.models.user_profiles'), :user_profile_path
|
8
|
-
|
9
|
-
def show
|
10
|
-
add_breadcrumb @user_profile.first_name, user_profile_path
|
11
|
-
respond_with(@user_profile)
|
12
|
-
end
|
13
|
-
|
14
|
-
def new
|
15
|
-
add_breadcrumb t('tooltips.new'), new_user_profile_path
|
16
|
-
@user_profile = current_user.build_user_profile
|
17
|
-
respond_with(@user_profile)
|
18
|
-
end
|
19
|
-
|
20
|
-
def edit
|
21
|
-
add_breadcrumb t('tooltips.edit'), edit_user_profile_path
|
22
|
-
end
|
23
|
-
|
24
|
-
def create
|
25
|
-
@user_profile = current_user.build_user_profile(user_profile_params)
|
26
|
-
@user_profile.save
|
27
|
-
respond_with(@user_profile, location: user_profile_path)
|
28
|
-
end
|
29
|
-
|
30
|
-
def update
|
31
|
-
@user_profile.update(user_profile_params)
|
32
|
-
respond_with(@user_profile, location: user_profile_path)
|
33
|
-
end
|
34
|
-
|
35
|
-
private
|
36
|
-
|
37
|
-
def profile_controller
|
38
|
-
if current_user.user_profile.nil?
|
39
|
-
redirect_to new_user_profile_path
|
40
|
-
end
|
41
|
-
end
|
42
|
-
|
43
|
-
def check_profile
|
44
|
-
if current_user.user_profile.present?
|
45
|
-
redirect_to user_profile_path
|
46
|
-
end
|
47
|
-
end
|
48
|
-
|
49
|
-
def set_user_profile
|
50
|
-
@user_profile = current_user.user_profile
|
51
|
-
end
|
52
|
-
|
53
|
-
def user_profile_params
|
54
|
-
params.require(:user_profile).permit(:first_name, :gsm, :last_name)
|
55
|
-
end
|
56
|
-
end
|
@@ -1,15 +0,0 @@
|
|
1
|
-
.panel.panel-default
|
2
|
-
.panel-heading
|
3
|
-
%i.icon-edit.icon-large
|
4
|
-
= yield :form_title
|
5
|
-
.panel-body
|
6
|
-
= simple_form_for([:hq, @admin_profile], url: hq_admin_profile_path) do |f|
|
7
|
-
= f.error_notification
|
8
|
-
|
9
|
-
.form-inputs
|
10
|
-
= f.input :first_name
|
11
|
-
= f.input :last_name
|
12
|
-
= f.input :gsm
|
13
|
-
.form-actions
|
14
|
-
= f.button :submit, class: 'btn btn-default'
|
15
|
-
= link_to t('cancel'), hq_admin_profile_path, class: 'btn'
|
@@ -1,13 +0,0 @@
|
|
1
|
-
- content_for :toolbar do
|
2
|
-
= link_to edit_hq_admin_profile_path, class: 'btn btn-default' do
|
3
|
-
%i.icon-pencil
|
4
|
-
= t('action_button.edit')
|
5
|
-
.panel.panel-default
|
6
|
-
.panel-heading
|
7
|
-
%i.icon-edit.icon-large
|
8
|
-
= t('tt.show', resource_name: AdminProfile.model_name.human)
|
9
|
-
.panel-body
|
10
|
-
= show_for @admin_profile do |s|
|
11
|
-
= s.attribute :first_name
|
12
|
-
= s.attribute :last_name
|
13
|
-
= s.attribute :gsm
|
@@ -1,13 +0,0 @@
|
|
1
|
-
- content_for :toolbar do
|
2
|
-
= link_to edit_user_profile_path, class: 'btn btn-default' do
|
3
|
-
%i.icon-pencil
|
4
|
-
= t('action_button.edit')
|
5
|
-
.panel.panel-default
|
6
|
-
.panel-heading
|
7
|
-
%i.icon-edit.icon-large
|
8
|
-
= t('tt.show', resource_name: UserProfile.model_name.human)
|
9
|
-
.panel-body
|
10
|
-
= show_for @user_profile do |s|
|
11
|
-
= s.attribute :first_name
|
12
|
-
= s.attribute :last_name
|
13
|
-
= s.attribute :gsm
|
@@ -1,54 +0,0 @@
|
|
1
|
-
en:
|
2
|
-
activerecord:
|
3
|
-
models:
|
4
|
-
schemamigration: Schemamigration
|
5
|
-
user: User
|
6
|
-
user_profiles: User Profile
|
7
|
-
admin: Admin
|
8
|
-
admin_profiles: Admin Profile
|
9
|
-
attributes:
|
10
|
-
user:
|
11
|
-
id: Id
|
12
|
-
email: Email
|
13
|
-
password: Password
|
14
|
-
password_confirmation: Password Confirmation
|
15
|
-
current_password: Current Password
|
16
|
-
encrypted_password: Encrypted_password
|
17
|
-
reset_password_token: Reset_password_token
|
18
|
-
reset_password_sent_at: Reset_password_sent_at
|
19
|
-
remember_created_at: Remember_created_at
|
20
|
-
sign_in_count: Sign_in_count
|
21
|
-
current_sign_in_at: Current_sign_in_at
|
22
|
-
last_sign_in_at: Last_sign_in_at
|
23
|
-
current_sign_in_ip: Current_sign_in_ip
|
24
|
-
last_sign_in_ip: Last_sign_in_ip
|
25
|
-
active: Active
|
26
|
-
created_at: Created_at
|
27
|
-
updated_at: Updated_at
|
28
|
-
active: Active
|
29
|
-
user_profile:
|
30
|
-
first_name: Name
|
31
|
-
last_name: Surname
|
32
|
-
gsm: Phone
|
33
|
-
admin:
|
34
|
-
id: Id
|
35
|
-
email: Email
|
36
|
-
password: Password
|
37
|
-
password_confirmation: Password Confirmation
|
38
|
-
current_password: Current Password
|
39
|
-
encrypted_password: Encrypted_password
|
40
|
-
reset_password_token: Reset_password_token
|
41
|
-
reset_password_sent_at: Reset_password_sent_at
|
42
|
-
remember_created_at: Remember_created_at
|
43
|
-
sign_in_count: Sign_in_count
|
44
|
-
current_sign_in_at: Current_sign_in_at
|
45
|
-
last_sign_in_at: Last_sign_in_at
|
46
|
-
current_sign_in_ip: Current_sign_in_ip
|
47
|
-
last_sign_in_ip: Last_sign_in_ip
|
48
|
-
created_at: Created_at
|
49
|
-
updated_at: Updated_at
|
50
|
-
active: Active
|
51
|
-
admin_profile:
|
52
|
-
first_name: Name
|
53
|
-
last_name: Surname
|
54
|
-
gsm: Phone
|
@@ -1,10 +0,0 @@
|
|
1
|
-
en:
|
2
|
-
flash:
|
3
|
-
actions:
|
4
|
-
create:
|
5
|
-
notice: '%{resource_name} was successfully created.'
|
6
|
-
update:
|
7
|
-
notice: '%{resource_name} was successfully updated.'
|
8
|
-
destroy:
|
9
|
-
notice: '%{resource_name} was successfully destroyed.'
|
10
|
-
alert: '%{resource_name} could not be destroyed.'
|
@@ -1,30 +0,0 @@
|
|
1
|
-
en:
|
2
|
-
simple_form:
|
3
|
-
"yes": 'Yes'
|
4
|
-
"no": 'No'
|
5
|
-
required:
|
6
|
-
text: 'required'
|
7
|
-
mark: '*'
|
8
|
-
# You can uncomment the line below if you need to overwrite the whole required html.
|
9
|
-
# When using html, text and mark won't be used.
|
10
|
-
# html: '<abbr title="required">*</abbr>'
|
11
|
-
error_notification:
|
12
|
-
default_message: "Please review the problems below:"
|
13
|
-
# Labels and hints examples
|
14
|
-
# labels:
|
15
|
-
# defaults:
|
16
|
-
# password: 'Password'
|
17
|
-
# user:
|
18
|
-
# new:
|
19
|
-
# email: 'E-mail to sign in.'
|
20
|
-
# edit:
|
21
|
-
# email: 'E-mail.'
|
22
|
-
# hints:
|
23
|
-
# defaults:
|
24
|
-
# username: 'User name to sign in.'
|
25
|
-
# password: 'No special characters, please.'
|
26
|
-
# user:
|
27
|
-
# new:
|
28
|
-
# email: 'E-mail to sign in.'
|
29
|
-
# edit:
|
30
|
-
# email: 'E-mail.'
|
@@ -1,51 +0,0 @@
|
|
1
|
-
en:
|
2
|
-
btn:
|
3
|
-
back: Back
|
4
|
-
update: Update
|
5
|
-
view:
|
6
|
-
select: Please choose!
|
7
|
-
navbar:
|
8
|
-
settings: Settings
|
9
|
-
signout: Sign Out
|
10
|
-
signin: Sign In
|
11
|
-
dock:
|
12
|
-
dashboard: Dashboard
|
13
|
-
number:
|
14
|
-
currency:
|
15
|
-
format:
|
16
|
-
format: "%u %n"
|
17
|
-
unit: "₺"
|
18
|
-
internal_server_error: "Sory! Error an occurred.."
|
19
|
-
not_found: "Sory! Page not found. This page should be moved!"
|
20
|
-
devise:
|
21
|
-
session:
|
22
|
-
title: Login
|
23
|
-
button: Login
|
24
|
-
remember_me: Remember Me
|
25
|
-
registration:
|
26
|
-
title: '%{model} Update Login Information'
|
27
|
-
waiting_confirmation: 'Currently waiting confirmation for: %{email}'
|
28
|
-
hint_password: Leave it blank if you don't want to change it
|
29
|
-
hint_current_password: We need your current password to confirm your changes
|
30
|
-
new:
|
31
|
-
title: '%{model} New Registration'
|
32
|
-
character_hint: '%{length} characters minimum'
|
33
|
-
button: Register
|
34
|
-
shared:
|
35
|
-
links:
|
36
|
-
signup: Sign Up
|
37
|
-
signin: Sign In
|
38
|
-
forgot_password: Forgot your password?
|
39
|
-
confirmation_instructions: Didn't receive confirmation instructions?
|
40
|
-
unlock_instructions: Didn't receive unlock instructions?
|
41
|
-
signin_with: 'Sign in with %{name}'
|
42
|
-
signin_with: 'Sign up with %{name}'
|
43
|
-
password:
|
44
|
-
reset:
|
45
|
-
title: Forgot Your Password?
|
46
|
-
instructions: Send my password reset instructions
|
47
|
-
edit:
|
48
|
-
title: Change Your Password
|
49
|
-
new_password: New password
|
50
|
-
confirmation: New password confirmation
|
51
|
-
button: Change My Password
|