activeadmin 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/ISSUE_TEMPLATE.md +20 -0
- data/.mdlrc +1 -0
- data/.rubocop.yml +52 -3
- data/.simplecov +13 -0
- data/.travis.yml +9 -24
- data/.yardopts +0 -1
- data/CHANGELOG.md +85 -4
- data/CONTRIBUTING.md +33 -57
- data/Gemfile +26 -17
- data/Rakefile +1 -12
- data/activeadmin.gemspec +9 -11
- data/app/assets/javascripts/active_admin/base.js.coffee +6 -2
- data/app/assets/javascripts/active_admin/initializers/batch_actions.js.coffee +5 -1
- data/app/assets/javascripts/active_admin/initializers/datepicker.js.coffee +5 -1
- data/app/assets/javascripts/active_admin/initializers/filters.js.coffee +5 -1
- data/app/assets/javascripts/active_admin/initializers/tabs.js.coffee +5 -1
- data/app/assets/javascripts/active_admin/lib/batch_actions.js.coffee +6 -3
- data/app/assets/javascripts/active_admin/lib/checkbox-toggler.js.coffee +9 -7
- data/app/assets/javascripts/active_admin/lib/dropdown-menu.js.coffee +5 -2
- data/app/assets/javascripts/active_admin/lib/per_page.js.coffee +6 -2
- data/app/assets/javascripts/active_admin/lib/table-checkbox-toggler.js.coffee +3 -5
- data/app/assets/stylesheets/active_admin/_base.scss +2 -2
- data/app/assets/stylesheets/active_admin/_forms.scss +6 -12
- data/app/assets/stylesheets/active_admin/components/_batch_actions.scss +0 -5
- data/app/assets/stylesheets/active_admin/components/_pagination.scss +11 -0
- data/app/assets/stylesheets/active_admin/components/_status_tags.scss +1 -0
- data/app/assets/stylesheets/active_admin/components/_tables.scss +4 -1
- data/app/assets/stylesheets/active_admin/mixins/_all.scss +0 -2
- data/app/assets/stylesheets/active_admin/print.scss +2 -3
- data/app/views/active_admin/devise/sessions/new.html.erb +1 -1
- data/app/views/active_admin/devise/shared/_links.erb +12 -6
- data/app/views/kaminari/active_admin/_first_page.html.erb +11 -0
- data/app/views/kaminari/active_admin/_gap.html.erb +8 -0
- data/app/views/kaminari/active_admin/_last_page.html.erb +11 -0
- data/app/views/kaminari/active_admin/_next_page.html.erb +11 -0
- data/app/views/kaminari/active_admin/_page.html.erb +12 -0
- data/app/views/kaminari/active_admin/_paginator.html.erb +25 -0
- data/app/views/kaminari/active_admin/_prev_page.html.erb +11 -0
- data/codecov.yml +14 -12
- data/config/i18n-tasks.yml +26 -0
- data/config/locales/ar.yml +1 -3
- data/config/locales/bg.yml +0 -2
- data/config/locales/bs.yml +0 -2
- data/config/locales/ca.yml +0 -2
- data/config/locales/cs.yml +0 -2
- data/config/locales/da.yml +1 -3
- data/config/locales/de-CH.yml +1 -3
- data/config/locales/de.yml +1 -3
- data/config/locales/el.yml +1 -3
- data/config/locales/en-CA.yml +138 -0
- data/config/locales/en-GB.yml +43 -3
- data/config/locales/en.yml +8 -4
- data/config/locales/es-MX.yml +3 -2
- data/config/locales/es.yml +10 -4
- data/config/locales/fa.yml +0 -2
- data/config/locales/fi.yml +0 -2
- data/config/locales/fr.yml +9 -2
- data/config/locales/he.yml +53 -7
- data/config/locales/hr.yml +0 -2
- data/config/locales/hu.yml +0 -2
- data/config/locales/id.yml +1 -3
- data/config/locales/it.yml +2 -4
- data/config/locales/ja.yml +1 -3
- data/config/locales/ko.yml +0 -2
- data/config/locales/lt.yml +24 -4
- data/config/locales/lv.yml +0 -2
- data/config/locales/nb.yml +0 -2
- data/config/locales/nl.yml +1 -3
- data/config/locales/pl.yml +3 -2
- data/config/locales/pt-BR.yml +1 -3
- data/config/locales/pt-PT.yml +0 -2
- data/config/locales/ro.yml +0 -2
- data/config/locales/ru.yml +1 -3
- data/config/locales/sk.yml +0 -2
- data/config/locales/sv-SE.yml +1 -3
- data/config/locales/tr.yml +0 -2
- data/config/locales/uk.yml +1 -3
- data/config/locales/vi.yml +0 -2
- data/config/locales/zh-CN.yml +0 -2
- data/config/locales/zh-TW.yml +1 -3
- data/config/mdl_style.rb +9 -0
- data/cucumber.yml +3 -3
- data/docs/0-installation.md +15 -12
- data/docs/1-general-configuration.md +10 -3
- data/docs/10-custom-pages.md +10 -5
- data/docs/11-decorators.md +1 -0
- data/docs/12-arbre-components.md +7 -9
- data/docs/13-authorization-adapter.md +39 -24
- data/docs/14-gotchas.md +41 -22
- data/docs/2-resource-customization.md +41 -18
- data/docs/3-index-pages.md +30 -12
- data/docs/3-index-pages/custom-index.md +1 -0
- data/docs/3-index-pages/index-as-block.md +0 -5
- data/docs/3-index-pages/index-as-blog.md +0 -5
- data/docs/3-index-pages/index-as-grid.md +0 -5
- data/docs/3-index-pages/index-as-table.md +1 -9
- data/docs/4-csv-format.md +2 -1
- data/docs/5-forms.md +45 -21
- data/docs/6-show-pages.md +2 -1
- data/docs/7-sidebars.md +2 -1
- data/docs/8-custom-actions.md +4 -1
- data/docs/9-batch-actions.md +4 -2
- data/docs/documentation.md +19 -21
- data/features/comments/commenting.feature +20 -0
- data/features/index/filters.feature +41 -1
- data/features/index/format_as_csv.feature +17 -0
- data/features/index/index_scopes.feature +15 -0
- data/features/registering_assets.feature +8 -4
- data/features/show/attributes_table_title.feature +54 -0
- data/features/show/tabs.feature +10 -4
- data/features/step_definitions/action_link_steps.rb +0 -1
- data/features/step_definitions/attributes_table_title_steps.rb +11 -0
- data/features/step_definitions/batch_action_steps.rb +2 -2
- data/features/step_definitions/comment_steps.rb +21 -1
- data/features/step_definitions/configuration_steps.rb +1 -1
- data/features/step_definitions/filter_steps.rb +9 -0
- data/features/step_definitions/format_steps.rb +1 -1
- data/features/step_definitions/index_scope_steps.rb +4 -0
- data/features/support/env.rb +5 -4
- data/features/support/regular_env.rb +7 -0
- data/features/support/reload_env.rb +7 -0
- data/gemfiles/rails_42.gemfile +2 -37
- data/gemfiles/rails_50.gemfile +5 -40
- data/gemfiles/rails_51.gemfile +5 -40
- data/lib/active_admin.rb +0 -3
- data/lib/active_admin/application.rb +6 -4
- data/lib/active_admin/asset_registration.rb +8 -0
- data/lib/active_admin/authorization_adapter.rb +0 -3
- data/lib/active_admin/base_controller.rb +1 -2
- data/lib/active_admin/base_controller/authorization.rb +0 -1
- data/lib/active_admin/base_controller/menu.rb +9 -9
- data/lib/active_admin/batch_actions/controller.rb +1 -1
- data/lib/active_admin/batch_actions/views/selection_cells.rb +6 -5
- data/lib/active_admin/csv_builder.rb +3 -3
- data/lib/active_admin/dependency.rb +1 -1
- data/lib/active_admin/devise.rb +2 -2
- data/lib/active_admin/dsl.rb +2 -2
- data/lib/active_admin/filters.rb +2 -0
- data/lib/active_admin/filters/active.rb +13 -14
- data/lib/active_admin/filters/active_filter.rb +87 -0
- data/lib/active_admin/filters/active_sidebar.rb +50 -0
- data/lib/active_admin/filters/forms.rb +1 -2
- data/lib/active_admin/filters/resource_extension.rb +2 -30
- data/lib/active_admin/helpers/settings.rb +0 -1
- data/lib/active_admin/inputs/datepicker_input.rb +5 -5
- data/lib/active_admin/inputs/filters/date_range_input.rb +12 -4
- data/lib/active_admin/inputs/filters/text_input.rb +0 -1
- data/lib/active_admin/menu.rb +4 -4
- data/lib/active_admin/menu_collection.rb +0 -2
- data/lib/active_admin/namespace.rb +1 -1
- data/lib/active_admin/orm/active_record/comments/comment.rb +1 -5
- data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +4 -2
- data/lib/active_admin/page_controller.rb +1 -1
- data/lib/active_admin/resource/action_items.rb +4 -0
- data/lib/active_admin/resource/attributes.rb +1 -1
- data/lib/active_admin/resource/page_presenters.rb +1 -1
- data/lib/active_admin/resource/routes.rb +0 -1
- data/lib/active_admin/resource/scopes.rb +2 -1
- data/lib/active_admin/resource_controller.rb +1 -1
- data/lib/active_admin/resource_controller/data_access.rb +8 -9
- data/lib/active_admin/resource_dsl.rb +10 -10
- data/lib/active_admin/router.rb +1 -1
- data/lib/active_admin/scope.rb +3 -3
- data/lib/active_admin/version.rb +1 -1
- data/lib/active_admin/view_helpers.rb +1 -0
- data/lib/active_admin/view_helpers/display_helper.rb +1 -1
- data/lib/active_admin/view_helpers/form_helper.rb +1 -1
- data/lib/active_admin/view_helpers/scope_name_helper.rb +16 -0
- data/lib/active_admin/views/action_items.rb +1 -1
- data/lib/active_admin/views/components/active_admin_form.rb +1 -1
- data/lib/active_admin/views/components/dropdown_menu.rb +2 -2
- data/lib/active_admin/views/components/index_list.rb +0 -2
- data/lib/active_admin/views/components/paginated_collection.rb +1 -1
- data/lib/active_admin/views/components/scopes.rb +2 -10
- data/lib/active_admin/views/components/status_tag.rb +19 -11
- data/lib/active_admin/views/components/tabs.rb +2 -2
- data/lib/active_admin/views/header.rb +0 -1
- data/lib/active_admin/views/index_as_blog.rb +1 -2
- data/lib/active_admin/views/index_as_grid.rb +2 -2
- data/lib/active_admin/views/index_as_table.rb +19 -1
- data/lib/active_admin/views/pages/base.rb +4 -4
- data/lib/active_admin/views/pages/show.rb +6 -1
- data/lib/active_admin/views/title_bar.rb +4 -4
- data/lib/bug_report_templates/{rails_5_master.rb → active_admin_master.rb} +35 -40
- data/lib/generators/active_admin/devise/devise_generator.rb +1 -1
- data/lib/generators/active_admin/install/templates/admin_user.rb.erb +1 -1
- data/spec/bug_report_templates_spec.rb +2 -3
- data/spec/rails_helper.rb +0 -3
- data/spec/spec_helper.rb +1 -12
- data/spec/support/active_admin_integration_spec_helper.rb +1 -1
- data/spec/support/rails_template.rb +5 -37
- data/spec/support/rails_template_with_data.rb +262 -3
- data/spec/support/templates/policies/active_admin/comment_policy.rb +1 -1
- data/spec/support/templates/policies/active_admin/page_policy.rb +1 -1
- data/spec/support/templates/policies/application_policy.rb +1 -2
- data/spec/support/templates/post_decorator.rb +0 -1
- data/spec/unit/abstract_view_factory_spec.rb +0 -1
- data/spec/unit/application_spec.rb +4 -0
- data/spec/unit/asset_registration_spec.rb +29 -0
- data/spec/unit/belongs_to_spec.rb +1 -2
- data/spec/unit/config_shared_examples.rb +1 -1
- data/spec/unit/csv_builder_spec.rb +2 -4
- data/spec/unit/dependency_spec.rb +7 -7
- data/spec/unit/dsl_spec.rb +0 -2
- data/spec/unit/filters/active_filter_spec.rb +135 -0
- data/spec/unit/filters/active_spec.rb +11 -1
- data/spec/unit/filters/filter_form_builder_spec.rb +9 -7
- data/spec/unit/form_builder_spec.rb +14 -14
- data/spec/unit/helpers/scope_chain_spec.rb +0 -1
- data/spec/unit/i18n_spec.rb +17 -0
- data/spec/unit/menu_item_spec.rb +1 -3
- data/spec/unit/namespace/register_page_spec.rb +1 -1
- data/spec/unit/namespace_spec.rb +0 -1
- data/spec/unit/page_spec.rb +0 -3
- data/spec/unit/resource/action_items_spec.rb +5 -1
- data/spec/unit/resource/attributes_spec.rb +1 -2
- data/spec/unit/resource/ordering_spec.rb +0 -3
- data/spec/unit/resource/scopes_spec.rb +1 -1
- data/spec/unit/resource_controller/data_access_spec.rb +2 -2
- data/spec/unit/resource_controller_spec.rb +1 -2
- data/spec/unit/resource_spec.rb +9 -2
- data/spec/unit/routing_spec.rb +0 -2
- data/spec/unit/scope_spec.rb +3 -3
- data/spec/unit/settings_spec.rb +0 -1
- data/spec/unit/view_factory_spec.rb +1 -1
- data/spec/unit/view_helpers/flash_helper_spec.rb +0 -1
- data/spec/unit/view_helpers/form_helper_spec.rb +3 -4
- data/spec/unit/view_helpers/method_or_proc_helper_spec.rb +0 -1
- data/spec/unit/views/components/attributes_table_spec.rb +0 -1
- data/spec/unit/views/components/columns_spec.rb +0 -2
- data/spec/unit/views/components/site_title_spec.rb +0 -2
- data/spec/unit/views/components/status_tag_spec.rb +23 -7
- data/spec/unit/views/components/tabs_spec.rb +29 -1
- data/spec/unit/views/pages/index_spec.rb +1 -1
- data/tasks/docs.rake +37 -10
- data/tasks/lint.rake +14 -1
- data/tasks/local.rake +2 -2
- data/tasks/test.rake +8 -25
- data/vendor/assets/javascripts/jquery-ui/data.js +41 -0
- data/vendor/assets/javascripts/jquery-ui/disable-selection.js +48 -0
- data/vendor/assets/javascripts/jquery-ui/escape-selector.js +23 -0
- data/vendor/assets/javascripts/jquery-ui/focusable.js +86 -0
- data/vendor/assets/javascripts/jquery-ui/ie.js +17 -0
- data/vendor/assets/javascripts/jquery-ui/keycode.js +47 -0
- data/vendor/assets/javascripts/jquery-ui/plugin.js +46 -0
- data/vendor/assets/javascripts/jquery-ui/position.js +500 -0
- data/vendor/assets/javascripts/jquery-ui/safe-active-element.js +42 -0
- data/vendor/assets/javascripts/jquery-ui/safe-blur.js +23 -0
- data/vendor/assets/javascripts/jquery-ui/scroll-parent.js +47 -0
- data/vendor/assets/javascripts/jquery-ui/tabbable.js +38 -0
- data/vendor/assets/javascripts/jquery-ui/unique-id.js +51 -0
- data/vendor/assets/javascripts/jquery-ui/version.js +17 -0
- data/vendor/assets/javascripts/jquery-ui/widget.js +735 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/button.js +391 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/checkboxradio.js +300 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/controlgroup.js +300 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/datepicker.js +2123 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/dialog.js +954 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/draggable.js +1259 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/mouse.js +230 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/resizable.js +1207 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/sortable.js +1561 -0
- data/vendor/assets/javascripts/jquery-ui/widgets/tabs.js +931 -0
- data/vendor/assets/stylesheets/active_admin/_normalize.scss +447 -0
- metadata +62 -51
- data/.hound.yml +0 -14
- data/Appraisals +0 -41
- data/app/assets/images/active_admin/datepicker/datepicker-input-icon.png +0 -0
- data/app/assets/javascripts/active_admin/jquery_ui.js.erb +0 -18
- data/app/assets/stylesheets/active_admin/mixins/_reset.scss +0 -165
- data/lib/active_admin/filters/humanized.rb +0 -68
- data/spec/requests/javascript_spec.rb +0 -22
- data/spec/support/jslint.yml +0 -80
- data/spec/unit/filters/humanized_spec.rb +0 -64
- data/tasks/yard.rake +0 -9
data/config/locales/en-GB.yml
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
edit: "Edit"
|
|
9
9
|
delete: "Delete"
|
|
10
10
|
delete_confirmation: "Are you sure you want to delete this?"
|
|
11
|
+
create_another: "Create another %{model}"
|
|
11
12
|
new_model: "New %{model}"
|
|
12
13
|
edit_model: "Edit %{model}"
|
|
13
14
|
delete_model: "Delete %{model}"
|
|
@@ -31,6 +32,11 @@
|
|
|
31
32
|
ends_with: "Ends with"
|
|
32
33
|
greater_than: "Greater than"
|
|
33
34
|
less_than: "Less than"
|
|
35
|
+
search_status:
|
|
36
|
+
headline: "Search status:"
|
|
37
|
+
current_scope: "Scope:"
|
|
38
|
+
current_filters: "Current filters:"
|
|
39
|
+
no_current_filters: "None"
|
|
34
40
|
status_tag:
|
|
35
41
|
"yes": "Yes"
|
|
36
42
|
"no": "No"
|
|
@@ -39,12 +45,14 @@
|
|
|
39
45
|
powered_by: "Powered by %{active_admin} %{version}"
|
|
40
46
|
sidebars:
|
|
41
47
|
filters: "Filters"
|
|
48
|
+
search_status: "Search Status"
|
|
42
49
|
pagination:
|
|
43
50
|
empty: "No %{model} found"
|
|
44
51
|
one: "Displaying <b>1</b> %{model}"
|
|
45
52
|
one_page: "Displaying <b>all %{n}</b> %{model}"
|
|
46
53
|
multiple: "Displaying %{model} <b>%{from} - %{to}</b> of <b>%{total}</b> in total"
|
|
47
54
|
multiple_without_total: "Displaying %{model} <b>%{from} - %{to}</b>"
|
|
55
|
+
per_page: "Per page: "
|
|
48
56
|
entry:
|
|
49
57
|
one: "entry"
|
|
50
58
|
other: "entries"
|
|
@@ -62,15 +70,18 @@
|
|
|
62
70
|
one: "Successfully destroyed 1 %{model}"
|
|
63
71
|
other: "Successfully destroyed %{count} %{plural_model}"
|
|
64
72
|
selection_toggle_explanation: "(Toggle Selection)"
|
|
65
|
-
link: "Create one"
|
|
66
73
|
action_label: "%{title} Selected"
|
|
67
74
|
labels:
|
|
68
75
|
destroy: "Delete"
|
|
69
76
|
comments:
|
|
77
|
+
created_at: "Created"
|
|
78
|
+
resource_type: "Resource Type"
|
|
79
|
+
author_type: "Author Type"
|
|
70
80
|
body: "Body"
|
|
71
81
|
author: "Author"
|
|
72
|
-
title: "Comment"
|
|
73
82
|
add: "Add Comment"
|
|
83
|
+
delete: "Delete Comment"
|
|
84
|
+
delete_confirmation: "Are you sure you want to delete these comment?"
|
|
74
85
|
resource: "Resource"
|
|
75
86
|
no_comments_yet: "No comments yet."
|
|
76
87
|
author_missing: "Anonymous"
|
|
@@ -78,6 +89,19 @@
|
|
|
78
89
|
errors:
|
|
79
90
|
empty_text: "Comment wasn't saved, text was empty."
|
|
80
91
|
devise:
|
|
92
|
+
username:
|
|
93
|
+
title: "Username"
|
|
94
|
+
email:
|
|
95
|
+
title: "Email"
|
|
96
|
+
subdomain:
|
|
97
|
+
title: "Subdomain"
|
|
98
|
+
password:
|
|
99
|
+
title: "Password"
|
|
100
|
+
password_confirmation:
|
|
101
|
+
title: "Confirm Password"
|
|
102
|
+
sign_up:
|
|
103
|
+
title: "Sign up"
|
|
104
|
+
submit: "Sign up"
|
|
81
105
|
login:
|
|
82
106
|
title: "Login"
|
|
83
107
|
remember_me: "Remember me"
|
|
@@ -88,11 +112,27 @@
|
|
|
88
112
|
change_password:
|
|
89
113
|
title: "Change your password"
|
|
90
114
|
submit: "Change my password"
|
|
115
|
+
unlock:
|
|
116
|
+
title: "Resend unlock instructions"
|
|
117
|
+
submit: "Resend unlock instructions"
|
|
91
118
|
resend_confirmation_instructions:
|
|
92
119
|
title: "Resend confirmation instructions"
|
|
93
120
|
submit: "Resend confirmation instructions"
|
|
94
121
|
links:
|
|
122
|
+
sign_up: "Sign up"
|
|
95
123
|
sign_in: "Sign in"
|
|
96
124
|
forgot_your_password: "Forgot your password?"
|
|
97
125
|
sign_in_with_omniauth_provider: "Sign in with %{provider}"
|
|
98
|
-
resend_unlock_instructions: "
|
|
126
|
+
resend_unlock_instructions: "Resend unlock instructions"
|
|
127
|
+
resend_confirmation_instructions: "Resend confirmation instructions"
|
|
128
|
+
unsupported_browser:
|
|
129
|
+
headline: "Please note that ActiveAdmin no longer supports Internet Explorer versions 8 or less."
|
|
130
|
+
recommendation: "We recommend upgrading to the latest <a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, or <a href=\"https://mozilla.org/firefox/\">Firefox</a>."
|
|
131
|
+
turn_off_compatibility_view: "If you are using IE 9 or later, make sure you <a href=\"https://support.microsoft.com/en-gb/help/17471\">turn off \"Compatibility View\"</a>."
|
|
132
|
+
access_denied:
|
|
133
|
+
message: "You are not authorised to perform this action."
|
|
134
|
+
index_list:
|
|
135
|
+
table: "Table"
|
|
136
|
+
block: "List"
|
|
137
|
+
grid: "Grid"
|
|
138
|
+
blog: "Blog"
|
data/config/locales/en.yml
CHANGED
|
@@ -32,6 +32,10 @@ en:
|
|
|
32
32
|
ends_with: "Ends with"
|
|
33
33
|
greater_than: "Greater than"
|
|
34
34
|
less_than: "Less than"
|
|
35
|
+
gteq_datetime: "Greater or equal to"
|
|
36
|
+
lteq_datetime: "Lesser or equal to"
|
|
37
|
+
from: "From"
|
|
38
|
+
to: "To"
|
|
35
39
|
search_status:
|
|
36
40
|
headline: "Search status:"
|
|
37
41
|
current_scope: "Scope:"
|
|
@@ -70,7 +74,6 @@ en:
|
|
|
70
74
|
one: "Successfully destroyed 1 %{model}"
|
|
71
75
|
other: "Successfully destroyed %{count} %{plural_model}"
|
|
72
76
|
selection_toggle_explanation: "(Toggle Selection)"
|
|
73
|
-
link: "Create one"
|
|
74
77
|
action_label: "%{title} Selected"
|
|
75
78
|
labels:
|
|
76
79
|
destroy: "Delete"
|
|
@@ -80,7 +83,6 @@ en:
|
|
|
80
83
|
author_type: "Author Type"
|
|
81
84
|
body: "Body"
|
|
82
85
|
author: "Author"
|
|
83
|
-
title: "Comment"
|
|
84
86
|
add: "Add Comment"
|
|
85
87
|
delete: "Delete Comment"
|
|
86
88
|
delete_confirmation: "Are you sure you want to delete these comment?"
|
|
@@ -99,6 +101,8 @@ en:
|
|
|
99
101
|
title: "Subdomain"
|
|
100
102
|
password:
|
|
101
103
|
title: "Password"
|
|
104
|
+
password_confirmation:
|
|
105
|
+
title: "Confirm Password"
|
|
102
106
|
sign_up:
|
|
103
107
|
title: "Sign up"
|
|
104
108
|
submit: "Sign up"
|
|
@@ -127,8 +131,8 @@ en:
|
|
|
127
131
|
resend_confirmation_instructions: "Resend confirmation instructions"
|
|
128
132
|
unsupported_browser:
|
|
129
133
|
headline: "Please note that ActiveAdmin no longer supports Internet Explorer versions 8 or less."
|
|
130
|
-
recommendation: "We recommend
|
|
131
|
-
turn_off_compatibility_view: "If you are using IE 9 or later, make sure you <a href=\"
|
|
134
|
+
recommendation: "We recommend that you <a href=\"http://browsehappy.com/\">upgrade your browser</a> to improve your experience."
|
|
135
|
+
turn_off_compatibility_view: "If you are using IE 9 or later, make sure you <a href=\"https://support.microsoft.com/en-us/help/17471\">turn off \"Compatibility View\"</a>."
|
|
132
136
|
access_denied:
|
|
133
137
|
message: "You are not authorized to perform this action."
|
|
134
138
|
index_list:
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -44,6 +44,9 @@ es-MX:
|
|
|
44
44
|
one: "Mostrando <b>1</b> %{model}"
|
|
45
45
|
one_page: "Mostrando <b>un total de %{n}</b> %{model}"
|
|
46
46
|
multiple: "Mostrando %{model} <b>%{from} - %{to}</b> de un total de <b>%{total}</b>"
|
|
47
|
+
entry:
|
|
48
|
+
one:
|
|
49
|
+
other:
|
|
47
50
|
blank_slate:
|
|
48
51
|
content: "No hay %{resource_name} aún."
|
|
49
52
|
link: "Añadir"
|
|
@@ -58,14 +61,12 @@ es-MX:
|
|
|
58
61
|
one: "Se ha destruido 1 %{model} con éxito"
|
|
59
62
|
other: "Se han destruido %{count} %{plural_model} con éxito"
|
|
60
63
|
selection_toggle_explanation: "(Cambiar selección)"
|
|
61
|
-
link: "Añadir"
|
|
62
64
|
action_label: "%{title} seleccionados"
|
|
63
65
|
labels:
|
|
64
66
|
destroy: "Borrar"
|
|
65
67
|
comments:
|
|
66
68
|
body: "Cuerpo"
|
|
67
69
|
author: "Autor"
|
|
68
|
-
title: "Comentario"
|
|
69
70
|
add: "Comentar"
|
|
70
71
|
resource: "Recurso"
|
|
71
72
|
no_comments_yet: "Aún sin comentarios."
|
data/config/locales/es.yml
CHANGED
|
@@ -8,6 +8,7 @@ es:
|
|
|
8
8
|
edit: "Editar"
|
|
9
9
|
delete: "Eliminar"
|
|
10
10
|
delete_confirmation: "¿Está seguro de que quiere eliminar esto?"
|
|
11
|
+
create_another: "Crear otro %{model}"
|
|
11
12
|
new_model: "Añadir %{model}"
|
|
12
13
|
edit_model: "Editar %{model}"
|
|
13
14
|
delete_model: "Eliminar %{model}"
|
|
@@ -31,6 +32,10 @@ es:
|
|
|
31
32
|
ends_with: "Termina con"
|
|
32
33
|
greater_than: "Mayor que"
|
|
33
34
|
less_than: "Menor que"
|
|
35
|
+
gteq_datetime: "Mayor o igual que"
|
|
36
|
+
lteq_datetime: "Menor o igual que"
|
|
37
|
+
from: "Desde"
|
|
38
|
+
to: "Hasta"
|
|
34
39
|
search_status:
|
|
35
40
|
headline: "Estado de la búsqueda:"
|
|
36
41
|
current_scope: "Alcance:"
|
|
@@ -51,6 +56,7 @@ es:
|
|
|
51
56
|
one_page: "Mostrando <b>un total de %{n}</b> %{model}"
|
|
52
57
|
multiple: "Mostrando %{model} <b>%{from} - %{to}</b> de un total de <b>%{total}</b>"
|
|
53
58
|
multiple_without_total: "Mostrando %{model} <b>%{from} - %{to}</b>"
|
|
59
|
+
per_page: "Por página: "
|
|
54
60
|
entry:
|
|
55
61
|
one: "registro"
|
|
56
62
|
other: "registros"
|
|
@@ -68,7 +74,6 @@ es:
|
|
|
68
74
|
one: "Se ha destruido 1 %{model} con éxito"
|
|
69
75
|
other: "Se han destruido %{count} %{plural_model} con éxito"
|
|
70
76
|
selection_toggle_explanation: "(Cambiar selección)"
|
|
71
|
-
link: "Añadir"
|
|
72
77
|
action_label: "%{title} seleccionados"
|
|
73
78
|
labels:
|
|
74
79
|
destroy: "Borrar"
|
|
@@ -78,7 +83,6 @@ es:
|
|
|
78
83
|
author_type: "Tipo de autor"
|
|
79
84
|
body: "Cuerpo"
|
|
80
85
|
author: "Autor"
|
|
81
|
-
title: "Comentario"
|
|
82
86
|
add: "Comentar"
|
|
83
87
|
delete: "Borrar Comentario"
|
|
84
88
|
delete_confirmation: "¿Está seguro que desea borrar este comentario?"
|
|
@@ -96,7 +100,9 @@ es:
|
|
|
96
100
|
subdomain:
|
|
97
101
|
title: "Subdominio"
|
|
98
102
|
password:
|
|
99
|
-
title: "
|
|
103
|
+
title: "Contraseña"
|
|
104
|
+
password_confirmation:
|
|
105
|
+
title: "Confirmar Contraseña"
|
|
100
106
|
sign_up:
|
|
101
107
|
title: "Registrarse"
|
|
102
108
|
submit: "Registrarse"
|
|
@@ -126,7 +132,7 @@ es:
|
|
|
126
132
|
unsupported_browser:
|
|
127
133
|
headline: "Por favor tenga en cuenta que Active Admin no soporta versiones de Internet Explorer menores a 8."
|
|
128
134
|
recommendation: "Recomendamos que actualice a la última versión de <a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, o <a href=\"https://mozilla.org/firefox/\">Firefox</a>."
|
|
129
|
-
turn_off_compatibility_view: "Si está usando IE 9 o superior, asegúrese de <a href=\"
|
|
135
|
+
turn_off_compatibility_view: "Si está usando IE 9 o superior, asegúrese de <a href=\"https://support.microsoft.com/es-es/help/17471\">apagar la \"Vista de compatibilidad\"</a>."
|
|
130
136
|
access_denied:
|
|
131
137
|
message: "No está autorizado/a a realizar esta acción."
|
|
132
138
|
index_list:
|
data/config/locales/fa.yml
CHANGED
|
@@ -62,7 +62,6 @@ fa:
|
|
|
62
62
|
one: "1 %{model} با موفقیت حذف شد"
|
|
63
63
|
other: "%{count} %{plural_model} با موفقت حذف شدند."
|
|
64
64
|
selection_toggle_explanation: "(انتخابها برعکس شوند)"
|
|
65
|
-
link: "ایجاد یک رکورد جدید"
|
|
66
65
|
action_label: "%{title} انتخاب شده است"
|
|
67
66
|
labels:
|
|
68
67
|
destroy: "حذف"
|
|
@@ -71,7 +70,6 @@ fa:
|
|
|
71
70
|
author_type: "نوع ایجاد کننده"
|
|
72
71
|
body: "بدنه"
|
|
73
72
|
author: "ایجاد کننده"
|
|
74
|
-
title: "کامنت"
|
|
75
73
|
add: "افزودن کامنت"
|
|
76
74
|
resource: "رکورد"
|
|
77
75
|
no_comments_yet: "هنوز هیچ کامنتی نوشته نشده."
|
data/config/locales/fi.yml
CHANGED
|
@@ -62,7 +62,6 @@ fi:
|
|
|
62
62
|
one: "1 %{model} poistettu"
|
|
63
63
|
other: "%{count} %{plural_model}:a poistettu"
|
|
64
64
|
selection_toggle_explanation: "(Vaihda valintaa)"
|
|
65
|
-
link: "Luo"
|
|
66
65
|
action_label: "%{title} Valittu"
|
|
67
66
|
labels:
|
|
68
67
|
destroy: "Poista"
|
|
@@ -71,7 +70,6 @@ fi:
|
|
|
71
70
|
author_type: "Luoja-tyyppi"
|
|
72
71
|
body: "Runko"
|
|
73
72
|
author: "Luoja"
|
|
74
|
-
title: "Kommentti"
|
|
75
73
|
add: "Lisää kommentti"
|
|
76
74
|
resource: "Resurssi"
|
|
77
75
|
no_comments_yet: "Ei kommentteja."
|
data/config/locales/fr.yml
CHANGED
|
@@ -8,6 +8,7 @@ fr:
|
|
|
8
8
|
edit: "Modifier"
|
|
9
9
|
delete: "Supprimer"
|
|
10
10
|
delete_confirmation: "Êtes-vous certain de vouloir supprimer ceci ?"
|
|
11
|
+
create_another: "Créer autre %{model}"
|
|
11
12
|
new_model: "Créer %{model}"
|
|
12
13
|
edit_model: "Modifier %{model}"
|
|
13
14
|
delete_model: "Supprimer %{model}"
|
|
@@ -31,6 +32,10 @@ fr:
|
|
|
31
32
|
ends_with: "Se termine par"
|
|
32
33
|
greater_than: "Plus grand que"
|
|
33
34
|
less_than: "Plus petit que"
|
|
35
|
+
gteq_datetime: "Ultérieur ou égal à"
|
|
36
|
+
lteq_datetime: "Antérieur ou égal à"
|
|
37
|
+
from: "De"
|
|
38
|
+
to: "À"
|
|
34
39
|
search_status:
|
|
35
40
|
headline: "Statut de la recherche :"
|
|
36
41
|
current_scope: "Etendu du filtre :"
|
|
@@ -69,7 +74,6 @@ fr:
|
|
|
69
74
|
one: "1 %{model} supprimé"
|
|
70
75
|
other: "%{count} %{plural_model} supprimés"
|
|
71
76
|
selection_toggle_explanation: "(Inverser la sélection)"
|
|
72
|
-
link: "Créer un"
|
|
73
77
|
action_label: "%{title} les éléments sélectionnés"
|
|
74
78
|
labels:
|
|
75
79
|
destroy: "Supprimer"
|
|
@@ -79,7 +83,6 @@ fr:
|
|
|
79
83
|
author_type: "Profil de l'auteur"
|
|
80
84
|
body: "Corps"
|
|
81
85
|
author: "Auteur"
|
|
82
|
-
title: "Commentaire"
|
|
83
86
|
add: "Ajouter un commentaire"
|
|
84
87
|
delete: "Supprimer ce commentaire"
|
|
85
88
|
delete_confirmation: "Êtes-vous sûr de vouloir supprimer ce commentaire ?"
|
|
@@ -124,6 +127,10 @@ fr:
|
|
|
124
127
|
sign_in_with_omniauth_provider: "Connectez-vous avec %{provider}"
|
|
125
128
|
resend_unlock_instructions: "Renvoyer les informations de déverrouillage"
|
|
126
129
|
resend_confirmation_instructions: "Renvoyer les instructions de confirmation"
|
|
130
|
+
unsupported_browser:
|
|
131
|
+
headline: "Veuillez noter que ActiveAdmin ne supporte plus les versions d'Internet Explorer 8 ou moins."
|
|
132
|
+
recommendation: "Nous vous recommandons de <a href=\"http://browsehappy.com/\">mettre à jour votre navigateur</a> pour améliorer votre expérience."
|
|
133
|
+
turn_off_compatibility_view: "Si vous utilisez IE 9 ou une version ultérieure, assurez-vous d'<a href=\"https://support.microsoft.com/fr-fr/help/17471\">activer \"Affichage de compatibilité\"</a>."
|
|
127
134
|
access_denied:
|
|
128
135
|
message: "Vous n'êtes pas autorisé à exécuter cette action"
|
|
129
136
|
index_list:
|
data/config/locales/he.yml
CHANGED
|
@@ -8,6 +8,7 @@ he:
|
|
|
8
8
|
edit: "עריכה"
|
|
9
9
|
delete: "מחיקה"
|
|
10
10
|
delete_confirmation: "האם אתה בטוח שאתה רוצה למחוק את זה?"
|
|
11
|
+
create_another: "צור עוד %{model}"
|
|
11
12
|
new_model: "%{model} חדש"
|
|
12
13
|
edit_model: "ערוך %{model}"
|
|
13
14
|
delete_model: "מחיקת %{model}"
|
|
@@ -31,20 +32,29 @@ he:
|
|
|
31
32
|
ends_with: "מסתיים ב"
|
|
32
33
|
greater_than: "גדול מ"
|
|
33
34
|
less_than: "פחות מ"
|
|
35
|
+
gteq_datetime: "אחרי או בתאריך"
|
|
36
|
+
lteq_datetime: "לפני או בתאריך"
|
|
37
|
+
search_status:
|
|
38
|
+
headline: "תוצאות חיפוש:"
|
|
39
|
+
current_scope: "תחום:"
|
|
40
|
+
current_filters: "מסננים:"
|
|
41
|
+
no_current_filters: "ללא"
|
|
34
42
|
status_tag:
|
|
35
43
|
"yes": "כן"
|
|
36
44
|
"no": "לא"
|
|
37
|
-
main_content: "
|
|
45
|
+
main_content: "אנא הטמע את %{model}#main_content בכדי להציג תוכן."
|
|
38
46
|
logout: "התנתקות"
|
|
39
|
-
powered_by: "
|
|
47
|
+
powered_by: "ממונע בעזרת %{active_admin} %{version}"
|
|
40
48
|
sidebars:
|
|
41
49
|
filters: "סינון"
|
|
50
|
+
search_status: "מצב החיפוש"
|
|
42
51
|
pagination:
|
|
43
52
|
empty: "אין %{model} בנמצא"
|
|
44
53
|
one: "מציג <b>1</b> %{model}"
|
|
45
54
|
one_page: "הצגת <b>כל %{n}</b> %{model}"
|
|
46
55
|
multiple: "מציג %{model} <b>%{from} - %{to}</b> מתוך <b>%{total}</b> בסך הכל"
|
|
47
56
|
multiple_without_total: "מציג %{model} <b>%{from} - %{to}</b>"
|
|
57
|
+
per_page: "בדף: "
|
|
48
58
|
entry:
|
|
49
59
|
one: "רשומה בודדה"
|
|
50
60
|
other: "רשומות"
|
|
@@ -60,25 +70,40 @@ he:
|
|
|
60
70
|
delete_confirmation: "האם הנך בטוח שאתה רוצה למרוח את %{plural_model}?"
|
|
61
71
|
succesfully_destroyed:
|
|
62
72
|
one: "1 %{model} נמחק בהצלחה"
|
|
63
|
-
few: "%{count} %{plural_model} נמחק בהצלחה"
|
|
64
|
-
many: "%{count} %{plural_model} נמחק בהצלחה"
|
|
65
73
|
other: "%{count} %{plural_model} נמחק בהצלחה"
|
|
66
74
|
selection_toggle_explanation: "(שינוי בחירה)"
|
|
67
|
-
link: "צור"
|
|
68
75
|
action_label: "%{title} נבחר"
|
|
69
76
|
labels:
|
|
70
77
|
destroy: "מחק"
|
|
71
78
|
comments:
|
|
79
|
+
created_at: "נוצר"
|
|
80
|
+
resource_type: "סוג רישום"
|
|
81
|
+
author_type: "סוג מחבר"
|
|
72
82
|
body: "תוכן"
|
|
73
83
|
author: 'נוצר ע"י'
|
|
74
|
-
title: "תגובה"
|
|
75
84
|
add: "הוסף תגובה"
|
|
76
|
-
|
|
85
|
+
delete: "מחק תגובה"
|
|
86
|
+
delete_confirmation: "האם אתה בטוח שברצונך למחוק תגובה זאת?"
|
|
87
|
+
resource: "רשומה"
|
|
77
88
|
no_comments_yet: "אין עדיין תגובות."
|
|
89
|
+
author_missing: "אנונימי"
|
|
78
90
|
title_content: "תגובות (%{count})"
|
|
79
91
|
errors:
|
|
80
92
|
empty_text: "התגובה לא נשמרה, שדה התוכן ריק."
|
|
81
93
|
devise:
|
|
94
|
+
username:
|
|
95
|
+
title: "שם משתמש"
|
|
96
|
+
email:
|
|
97
|
+
title: "כתובת דוא״ל"
|
|
98
|
+
subdomain:
|
|
99
|
+
title: "תת-דומיין"
|
|
100
|
+
password:
|
|
101
|
+
title: "סיסמא"
|
|
102
|
+
password_confirmation:
|
|
103
|
+
title: "אישור סיסמא"
|
|
104
|
+
sign_up:
|
|
105
|
+
title: "הרשמה"
|
|
106
|
+
submit: "הרשמה"
|
|
82
107
|
login:
|
|
83
108
|
title: "כניסה"
|
|
84
109
|
remember_me: "זכור אותי"
|
|
@@ -89,7 +114,28 @@ he:
|
|
|
89
114
|
change_password:
|
|
90
115
|
title: "שנה את הסיסמא שלך"
|
|
91
116
|
submit: "שנה את הסיסמא שלי"
|
|
117
|
+
unlock:
|
|
118
|
+
title: "שלח שוב הוראות שיחרור"
|
|
119
|
+
submit: "שלח שוב הוראות שיחרור"
|
|
120
|
+
resend_confirmation_instructions:
|
|
121
|
+
title: "שלח שוב הוראות אישור"
|
|
122
|
+
submit: "שלח שוב הוראות אישור"
|
|
92
123
|
links:
|
|
124
|
+
sign_up: "הרשמה"
|
|
93
125
|
sign_in: "כניסה"
|
|
94
126
|
forgot_your_password: "שכחת את הסיסמא שלך?"
|
|
95
127
|
sign_in_with_omniauth_provider: "%{provider} היכנס עם"
|
|
128
|
+
resend_unlock_instructions: "שלח שוב הוראות שיחרור"
|
|
129
|
+
resend_confirmation_instructions: "שלח שוב הוראות אישור"
|
|
130
|
+
unsupported_browser:
|
|
131
|
+
headline: "שים לב ש-ActiveAdmin אינו תומך יותר ב-Internet Explorer גרסא 8 ומטה."
|
|
132
|
+
recommendation: "אנו ממליצים <a href=\"http://browsehappy.com/\">לשדרג את הדפדפן שלך</a> על מנת לשפר את חווית הגלישה."
|
|
133
|
+
turn_off_compatibility_view: "אם אתה משתמש ב- IE 9 ואילך, ודא ש<a href=\"https://support.microsoft.com/he-il/help/17471\">כיבית \"תצוגת תאימות\"</a>."
|
|
134
|
+
access_denied:
|
|
135
|
+
message: "אינך רשאי לבצע פעולה זו."
|
|
136
|
+
index_list:
|
|
137
|
+
table: "טבלה"
|
|
138
|
+
block: "רשימה"
|
|
139
|
+
grid: "גריד"
|
|
140
|
+
blog: "בלוג"
|
|
141
|
+
|
data/config/locales/hr.yml
CHANGED
|
@@ -66,7 +66,6 @@ hr:
|
|
|
66
66
|
many: "Uspješno je obrisano %{count} %{plural_model}"
|
|
67
67
|
other: "Uspješno je obrisano %{count} %{plural_model}"
|
|
68
68
|
selection_toggle_explanation: "(Izmijeni odabir)"
|
|
69
|
-
link: "Izradi jedan"
|
|
70
69
|
action_label: "%{title} označene"
|
|
71
70
|
labels:
|
|
72
71
|
destroy: "Obriši"
|
|
@@ -75,7 +74,6 @@ hr:
|
|
|
75
74
|
author_type: "Tip autora"
|
|
76
75
|
body: "Sadržaj"
|
|
77
76
|
author: "Autor"
|
|
78
|
-
title: "Komentar"
|
|
79
77
|
add: "Dodaj komentar"
|
|
80
78
|
resource: "Objekt"
|
|
81
79
|
no_comments_yet: "Još nema komentara."
|
data/config/locales/hu.yml
CHANGED
|
@@ -62,14 +62,12 @@ hu:
|
|
|
62
62
|
one: "1 %{model} sikeresen törölve"
|
|
63
63
|
other: "%{count} %{plural_model} sikeresen törölve"
|
|
64
64
|
selection_toggle_explanation: "(Kijelölés megfordítása)"
|
|
65
|
-
link: "Létrehozás"
|
|
66
65
|
action_label: "%{title} kiválasztva"
|
|
67
66
|
labels:
|
|
68
67
|
destroy: "Törlés"
|
|
69
68
|
comments:
|
|
70
69
|
body: "Törzs"
|
|
71
70
|
author: "Szerző"
|
|
72
|
-
title: "Hozzászólás"
|
|
73
71
|
add: "Új hozzászólás"
|
|
74
72
|
resource: "Erőforrás"
|
|
75
73
|
no_comments_yet: "Nincsenek hozzászólások."
|