activeadmin 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activeadmin might be problematic. Click here for more details.
- 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
@@ -0,0 +1,11 @@
|
|
1
|
+
<%# Link to the "First" page
|
2
|
+
- available local variables
|
3
|
+
url: url to the first page
|
4
|
+
current_page: a page object for the currently displayed page
|
5
|
+
total_pages: total number of pages
|
6
|
+
per_page: number of items to fetch per page
|
7
|
+
remote: data-remote
|
8
|
+
-%>
|
9
|
+
<span class="first">
|
10
|
+
<%= link_to_unless current_page.first?, t('views.pagination.first').html_safe, url, remote: remote %>
|
11
|
+
</span>
|
@@ -0,0 +1,8 @@
|
|
1
|
+
<%# Non-link tag that stands for skipped pages...
|
2
|
+
- available local variables
|
3
|
+
current_page: a page object for the currently displayed page
|
4
|
+
total_pages: total number of pages
|
5
|
+
per_page: number of items to fetch per page
|
6
|
+
remote: data-remote
|
7
|
+
-%>
|
8
|
+
<span class="page gap"><%= t('views.pagination.truncate').html_safe %></span>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<%# Link to the "Last" page
|
2
|
+
- available local variables
|
3
|
+
url: url to the last page
|
4
|
+
current_page: a page object for the currently displayed page
|
5
|
+
total_pages: total number of pages
|
6
|
+
per_page: number of items to fetch per page
|
7
|
+
remote: data-remote
|
8
|
+
-%>
|
9
|
+
<span class="last">
|
10
|
+
<%= link_to_unless current_page.last?, t('views.pagination.last').html_safe, url, remote: remote %>
|
11
|
+
</span>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<%# Link to the "Next" page
|
2
|
+
- available local variables
|
3
|
+
url: url to the next page
|
4
|
+
current_page: a page object for the currently displayed page
|
5
|
+
total_pages: total number of pages
|
6
|
+
per_page: number of items to fetch per page
|
7
|
+
remote: data-remote
|
8
|
+
-%>
|
9
|
+
<span class="next">
|
10
|
+
<%= link_to_unless current_page.last?, t('views.pagination.next').html_safe, url, rel: 'next', remote: remote %>
|
11
|
+
</span>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
<%# Link showing page number
|
2
|
+
- available local variables
|
3
|
+
page: a page object for "this" page
|
4
|
+
url: url to this page
|
5
|
+
current_page: a page object for the currently displayed page
|
6
|
+
total_pages: total number of pages
|
7
|
+
per_page: number of items to fetch per page
|
8
|
+
remote: data-remote
|
9
|
+
-%>
|
10
|
+
<span class="page<%= ' current' if page.current? %>">
|
11
|
+
<%= link_to_unless page.current?, page, url, {remote: remote, rel: page.rel} %>
|
12
|
+
</span>
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<%# The container tag
|
2
|
+
- available local variables
|
3
|
+
current_page: a page object for the currently displayed page
|
4
|
+
total_pages: total number of pages
|
5
|
+
per_page: number of items to fetch per page
|
6
|
+
remote: data-remote
|
7
|
+
paginator: the paginator that renders the pagination tags inside
|
8
|
+
-%>
|
9
|
+
<%= paginator.render do -%>
|
10
|
+
<nav class="pagination">
|
11
|
+
<%= first_page_tag unless current_page.first? %>
|
12
|
+
<%= prev_page_tag unless current_page.first? %>
|
13
|
+
<% each_page do |page| -%>
|
14
|
+
<% if page.display_tag? -%>
|
15
|
+
<%= page_tag page %>
|
16
|
+
<% elsif !page.was_truncated? -%>
|
17
|
+
<%= gap_tag %>
|
18
|
+
<% end -%>
|
19
|
+
<% end -%>
|
20
|
+
<% unless current_page.out_of_range? %>
|
21
|
+
<%= next_page_tag unless current_page.last? %>
|
22
|
+
<%= last_page_tag unless current_page.last? %>
|
23
|
+
<% end %>
|
24
|
+
</nav>
|
25
|
+
<% end -%>
|
@@ -0,0 +1,11 @@
|
|
1
|
+
<%# Link to the "Previous" page
|
2
|
+
- available local variables
|
3
|
+
url: url to the previous page
|
4
|
+
current_page: a page object for the currently displayed page
|
5
|
+
total_pages: total number of pages
|
6
|
+
per_page: number of items to fetch per page
|
7
|
+
remote: data-remote
|
8
|
+
-%>
|
9
|
+
<span class="prev">
|
10
|
+
<%= link_to_unless current_page.first?, t('views.pagination.previous').html_safe, url, rel: 'prev', remote: remote %>
|
11
|
+
</span>
|
data/codecov.yml
CHANGED
@@ -1,23 +1,25 @@
|
|
1
|
+
---
|
2
|
+
|
1
3
|
codecov:
|
2
4
|
notify:
|
3
5
|
require_ci_to_pass: true
|
6
|
+
|
4
7
|
comment: off
|
8
|
+
|
5
9
|
coverage:
|
6
10
|
precision: 2
|
11
|
+
|
7
12
|
range:
|
8
|
-
|
9
|
-
|
13
|
+
- 70.0
|
14
|
+
- 100.0
|
15
|
+
|
10
16
|
round: down
|
17
|
+
|
11
18
|
status:
|
12
19
|
changes: false
|
20
|
+
|
13
21
|
patch: true
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
conditional: true
|
19
|
-
loop: true
|
20
|
-
macro: false
|
21
|
-
method: false
|
22
|
-
javascript:
|
23
|
-
enable_partials: false
|
22
|
+
|
23
|
+
project:
|
24
|
+
default:
|
25
|
+
threshold: 1%
|
@@ -0,0 +1,26 @@
|
|
1
|
+
---
|
2
|
+
|
3
|
+
# The "main" locale
|
4
|
+
base_locale: en
|
5
|
+
|
6
|
+
# Read and write translations
|
7
|
+
data:
|
8
|
+
yaml:
|
9
|
+
write:
|
10
|
+
# Do not wrap lines at 80 characters
|
11
|
+
line_width: -1
|
12
|
+
|
13
|
+
# Find translate calls
|
14
|
+
search:
|
15
|
+
# Paths or `File.find` patterns to search in
|
16
|
+
paths:
|
17
|
+
- app
|
18
|
+
- lib
|
19
|
+
|
20
|
+
# Files or `File.fnmatch` patterns to exclude from search
|
21
|
+
exclude:
|
22
|
+
- app/assets/images
|
23
|
+
- lib/bug_report_templates/tmp
|
24
|
+
|
25
|
+
# Guess usages such as t("categories.#{category}.title")
|
26
|
+
strict: false
|
data/config/locales/ar.yml
CHANGED
@@ -68,7 +68,6 @@ ar:
|
|
68
68
|
one: "حُذف بنجاح 1 %{model}"
|
69
69
|
other: "حُذف بنجاح %{count} %{plural_model}"
|
70
70
|
selection_toggle_explanation: "(تتبيث الخيار)"
|
71
|
-
link: "إنشاء"
|
72
71
|
action_label: "اُختير %{title}"
|
73
72
|
labels:
|
74
73
|
destroy: "حذف"
|
@@ -77,7 +76,6 @@ ar:
|
|
77
76
|
author_type: "نوع الؤلّف"
|
78
77
|
body: "هيكل"
|
79
78
|
author: "مؤلّف"
|
80
|
-
title: "تعليق"
|
81
79
|
add: "إضافة تعليق"
|
82
80
|
resource: "مصدر"
|
83
81
|
no_comments_yet: "لا يوجد تعليقات بعد."
|
@@ -126,7 +124,7 @@ ar:
|
|
126
124
|
unsupported_browser:
|
127
125
|
headline: "يُرجى مُلاحظة أن (أكتف أدمن) لم تعد تدعم المُتصفّح إنترنت اكسبلوررالإصدار الثامن وما قبله"
|
128
126
|
recommendation: "ننصح بالتحديث إلى الإصدارات الأخيرة من: <a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, أو <a href=\"https://mozilla.org/firefox/\">Firefox</a>."
|
129
|
-
turn_off_compatibility_view: "إن كنت تستخدم الإصدار التاسع وما يليه من إنترنت إكسبلورر تأكّد من <a href=\"
|
127
|
+
turn_off_compatibility_view: "إن كنت تستخدم الإصدار التاسع وما يليه من إنترنت إكسبلورر تأكّد من <a href=\"https://support.microsoft.com/ar-ae/help/17471\">تعطيل \"Compatibility View\"</a>."
|
130
128
|
access_denied:
|
131
129
|
message: "لم يُصرّح لك بهذا الإجراء."
|
132
130
|
index_list:
|
data/config/locales/bg.yml
CHANGED
@@ -62,7 +62,6 @@ bg:
|
|
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 @@ bg:
|
|
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/bs.yml
CHANGED
@@ -64,7 +64,6 @@ bs:
|
|
64
64
|
many: "Uspješno je obrisano %{count} %{plural_model}"
|
65
65
|
other: "Uspješno je obrisano %{count} %{plural_model}"
|
66
66
|
selection_toggle_explanation: "(Izmijeni odabir)"
|
67
|
-
link: "Izradi jedan"
|
68
67
|
action_label: "%{title} označene"
|
69
68
|
labels:
|
70
69
|
destroy: "Obriši"
|
@@ -73,7 +72,6 @@ bs:
|
|
73
72
|
author_type: "Tip autora"
|
74
73
|
body: "Sadržaj"
|
75
74
|
author: "Autor"
|
76
|
-
title: "Komentar"
|
77
75
|
add: "Dodaj komentar"
|
78
76
|
resource: "Objekt"
|
79
77
|
no_comments_yet: "Još nema komentara."
|
data/config/locales/ca.yml
CHANGED
@@ -63,14 +63,12 @@ ca:
|
|
63
63
|
one: "Va destruir amb èxit 1 %{model}"
|
64
64
|
other: "Va destruir amb èxit %{count} %{plural_model}"
|
65
65
|
selection_toggle_explanation: "(Selecció de Canviar)"
|
66
|
-
link: "crear una"
|
67
66
|
action_label: "%{title} seleccionat"
|
68
67
|
labels:
|
69
68
|
destroy: "esborrar"
|
70
69
|
comments:
|
71
70
|
body: "Cos"
|
72
71
|
author: "autor"
|
73
|
-
title: "comentari"
|
74
72
|
add: "Afegeix comentari"
|
75
73
|
resource: "Recurs"
|
76
74
|
no_comments_yet: "No hi ha comentaris"
|
data/config/locales/cs.yml
CHANGED
@@ -65,7 +65,6 @@ cs:
|
|
65
65
|
few: "Úspěšně smazány %{count} %{plural_model}"
|
66
66
|
other: "Úspěšně smazáno %{count} %{plural_model}"
|
67
67
|
selection_toggle_explanation: "(Změnit výběr)"
|
68
|
-
link: "Vytvořit"
|
69
68
|
action_label: "%{title}"
|
70
69
|
labels:
|
71
70
|
destroy: "Vymazat"
|
@@ -74,7 +73,6 @@ cs:
|
|
74
73
|
author_type: "Typ autora"
|
75
74
|
body: "Tělo"
|
76
75
|
author: "Autor"
|
77
|
-
title: "Komentář"
|
78
76
|
add: "Přidat komentář"
|
79
77
|
resource: "Zdroj"
|
80
78
|
no_comments_yet: "Žádný komentář"
|
data/config/locales/da.yml
CHANGED
@@ -70,7 +70,6 @@ da:
|
|
70
70
|
one: "Vellykket ødelagt 1 %{model}"
|
71
71
|
other: "Vellykket ødelagt %{count} %{plural_model}"
|
72
72
|
selection_toggle_explanation: "(Skift valg)"
|
73
|
-
link: "Opret en"
|
74
73
|
action_label: "%{title} Valgte"
|
75
74
|
labels:
|
76
75
|
destroy: "Slet"
|
@@ -80,7 +79,6 @@ da:
|
|
80
79
|
author_type: "Forfatter type"
|
81
80
|
body: "Krop"
|
82
81
|
author: "Forfatter"
|
83
|
-
title: "Kommentar"
|
84
82
|
add: "Tilføj Kommentar"
|
85
83
|
delete: "Slet kommentar"
|
86
84
|
delete_confirmation: "Er du sikker på du vil slette disse kommentarer?"
|
@@ -128,7 +126,7 @@ da:
|
|
128
126
|
unsupported_browser:
|
129
127
|
headline: "Vær venligst opmærksom på, at ActiveAdmin ikke længere understøtter Internet Explorer version 8 eller tidligere."
|
130
128
|
recommendation: "Vi anbefaler at du opgraderer til den nyeste <a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, eller <a href=\"https://mozilla.org/firefox/\">Firefox</a>."
|
131
|
-
turn_off_compatibility_view: "Hvis du bruger IE 9 eller senere, så vær sikker på, at du <a href=\"
|
129
|
+
turn_off_compatibility_view: "Hvis du bruger IE 9 eller senere, så vær sikker på, at du <a href=\"https://support.microsoft.com/da-dk/help/17471\">slår \"Compatibility View\" fra</a>."
|
132
130
|
access_denied:
|
133
131
|
message: "Du har ikke rettigheder til at udføre denne handling."
|
134
132
|
index_list:
|
data/config/locales/de-CH.yml
CHANGED
@@ -62,14 +62,12 @@
|
|
62
62
|
one: "Erfolgreich 1 %{model} gelöscht"
|
63
63
|
other: "Erfolgreich %{count} %{plural_model} gelöscht"
|
64
64
|
selection_toggle_explanation: "(Auswahl umschalten)"
|
65
|
-
link: "erstellen"
|
66
65
|
action_label: "%{title} ausgewählte"
|
67
66
|
labels:
|
68
67
|
destroy: "Lösche"
|
69
68
|
comments:
|
70
69
|
body: "Inhalt"
|
71
70
|
author: "Autor"
|
72
|
-
title: "Kommentar"
|
73
71
|
resource: "Resource"
|
74
72
|
add: "Kommentar hinzufügen"
|
75
73
|
delete: "Löschen"
|
@@ -99,4 +97,4 @@
|
|
99
97
|
unsupported_browser:
|
100
98
|
headline: "ActiveAdmin unterstützt nicht länger den Internet Explorer in Version 8 oder niedriger."
|
101
99
|
recommendation: "Wir empfehlen die Nutzung von <a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, oder <a href=\"https://mozilla.org/firefox/\">Firefox</a>."
|
102
|
-
turn_off_compatibility_view: "Wenn sie IE 9 oder neuer benutzen, stellen sie sicher das sie den <a href=\"
|
100
|
+
turn_off_compatibility_view: "Wenn sie IE 9 oder neuer benutzen, stellen sie sicher das sie den <a href=\"https://support.microsoft.com/de-ch/help/17471\">\"Kompatibilitätsansicht\" ausgeschaltet</a> haben."
|
data/config/locales/de.yml
CHANGED
@@ -68,7 +68,6 @@ de:
|
|
68
68
|
one: "Erfolgreich 1 %{model} gelöscht"
|
69
69
|
other: "Erfolgreich %{count} %{plural_model} gelöscht"
|
70
70
|
selection_toggle_explanation: "(Auswahl umschalten)"
|
71
|
-
link: "erstellen"
|
72
71
|
action_label: "%{title} ausgewählte"
|
73
72
|
labels:
|
74
73
|
destroy: "Lösche"
|
@@ -77,7 +76,6 @@ de:
|
|
77
76
|
author_type: "Autor-Typ"
|
78
77
|
body: "Inhalt"
|
79
78
|
author: "Autor"
|
80
|
-
title: "Kommentar"
|
81
79
|
add: "Kommentar hinzufügen"
|
82
80
|
delete: "Löschen"
|
83
81
|
delete_confirmation: "Sind Sie sicher dass sie diesen Kommentar löschen wollen?"
|
@@ -125,7 +123,7 @@ de:
|
|
125
123
|
unsupported_browser:
|
126
124
|
headline: "ActiveAdmin unterstützt nicht länger den Internet Explorer in Version 8 oder niedriger."
|
127
125
|
recommendation: "Wir empfehlen die Nutzung von <a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, oder <a href=\"https://mozilla.org/firefox/\">Firefox</a>."
|
128
|
-
turn_off_compatibility_view: "Wenn sie IE 9 oder neuer benutzen, stellen sie sicher das sie den <a href=\"
|
126
|
+
turn_off_compatibility_view: "Wenn sie IE 9 oder neuer benutzen, stellen sie sicher das sie den <a href=\"https://support.microsoft.com/de-de/help/17471\">\"Kompatibilitätsansicht\" ausgeschaltet</a> haben."
|
129
127
|
access_denied:
|
130
128
|
message: "Sie haben nicht die Berechtigung um diese Aktion auszuführen."
|
131
129
|
index_list:
|
data/config/locales/el.yml
CHANGED
@@ -62,7 +62,6 @@ el:
|
|
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 @@ el:
|
|
71
70
|
author_type: "Τύπος Συγγραφέα"
|
72
71
|
body: "Κείμενο"
|
73
72
|
author: "Συγγραφέας"
|
74
|
-
title: "Σχόλιο"
|
75
73
|
add: "Προσθήκη Σχολίου"
|
76
74
|
resource: "Εγγραφή"
|
77
75
|
no_comments_yet: "Δεν υπάρχει κανένα σχόλιο."
|
@@ -117,7 +115,7 @@ el:
|
|
117
115
|
unsupported_browser:
|
118
116
|
headline: "Το ActiveAdmin δεν υποστηρίζει πλεον τον Internet Explorer έκδοση 8 η μικρότερη."
|
119
117
|
recommendation: "Σας προτείνουμε να αναβαθμίσετε στην τελευταία <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>."
|
120
|
-
turn_off_compatibility_view: "Αν χρησιμοποιείτε IE 9 ή μεγαλύτερη έκδοση, σιγουρευτείτε ότι <a href=\"
|
118
|
+
turn_off_compatibility_view: "Αν χρησιμοποιείτε IE 9 ή μεγαλύτερη έκδοση, σιγουρευτείτε ότι <a href=\"https://support.microsoft.com/el-gr/help/17471\">turn off \"Compatibility View\"</a>."
|
121
119
|
access_denied:
|
122
120
|
message: "Δεν έχετε πρόσβαση για αυτή την ενέργεια."
|
123
121
|
index_list:
|
@@ -0,0 +1,138 @@
|
|
1
|
+
"en-CA":
|
2
|
+
active_admin:
|
3
|
+
dashboard: Dashboard
|
4
|
+
dashboard_welcome:
|
5
|
+
welcome: "Welcome to Active Admin. This is the default dashboard page."
|
6
|
+
call_to_action: "To add dashboard sections, checkout 'app/admin/dashboards.rb'"
|
7
|
+
view: "View"
|
8
|
+
edit: "Edit"
|
9
|
+
delete: "Delete"
|
10
|
+
delete_confirmation: "Are you sure you want to delete this?"
|
11
|
+
create_another: "Create another %{model}"
|
12
|
+
new_model: "New %{model}"
|
13
|
+
edit_model: "Edit %{model}"
|
14
|
+
delete_model: "Delete %{model}"
|
15
|
+
details: "%{model} Details"
|
16
|
+
cancel: "Cancel"
|
17
|
+
empty: "Empty"
|
18
|
+
previous: "Previous"
|
19
|
+
next: "Next"
|
20
|
+
download: "Download:"
|
21
|
+
has_many_new: "Add New %{model}"
|
22
|
+
has_many_delete: "Delete"
|
23
|
+
has_many_remove: "Remove"
|
24
|
+
filters:
|
25
|
+
buttons:
|
26
|
+
filter: "Filter"
|
27
|
+
clear: "Clear Filters"
|
28
|
+
predicates:
|
29
|
+
contains: "Contains"
|
30
|
+
equals: "Equals"
|
31
|
+
starts_with: "Starts with"
|
32
|
+
ends_with: "Ends with"
|
33
|
+
greater_than: "Greater than"
|
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"
|
40
|
+
status_tag:
|
41
|
+
"yes": "Yes"
|
42
|
+
"no": "No"
|
43
|
+
main_content: "Please implement %{model}#main_content to display content."
|
44
|
+
logout: "Logout"
|
45
|
+
powered_by: "Powered by %{active_admin} %{version}"
|
46
|
+
sidebars:
|
47
|
+
filters: "Filters"
|
48
|
+
search_status: "Search Status"
|
49
|
+
pagination:
|
50
|
+
empty: "No %{model} found"
|
51
|
+
one: "Displaying <b>1</b> %{model}"
|
52
|
+
one_page: "Displaying <b>all %{n}</b> %{model}"
|
53
|
+
multiple: "Displaying %{model} <b>%{from} - %{to}</b> of <b>%{total}</b> in total"
|
54
|
+
multiple_without_total: "Displaying %{model} <b>%{from} - %{to}</b>"
|
55
|
+
per_page: "Per page: "
|
56
|
+
entry:
|
57
|
+
one: "entry"
|
58
|
+
other: "entries"
|
59
|
+
any: "Any"
|
60
|
+
blank_slate:
|
61
|
+
content: "There are no %{resource_name} yet."
|
62
|
+
link: "Create one"
|
63
|
+
dropdown_actions:
|
64
|
+
button_label: "Actions"
|
65
|
+
batch_actions:
|
66
|
+
button_label: "Batch Actions"
|
67
|
+
default_confirmation: "Are you sure you want to do this?"
|
68
|
+
delete_confirmation: "Are you sure you want to delete these %{plural_model}?"
|
69
|
+
succesfully_destroyed:
|
70
|
+
one: "Successfully destroyed 1 %{model}"
|
71
|
+
other: "Successfully destroyed %{count} %{plural_model}"
|
72
|
+
selection_toggle_explanation: "(Toggle Selection)"
|
73
|
+
action_label: "%{title} Selected"
|
74
|
+
labels:
|
75
|
+
destroy: "Delete"
|
76
|
+
comments:
|
77
|
+
created_at: "Created"
|
78
|
+
resource_type: "Resource Type"
|
79
|
+
author_type: "Author Type"
|
80
|
+
body: "Body"
|
81
|
+
author: "Author"
|
82
|
+
add: "Add Comment"
|
83
|
+
delete: "Delete Comment"
|
84
|
+
delete_confirmation: "Are you sure you want to delete these comment?"
|
85
|
+
resource: "Resource"
|
86
|
+
no_comments_yet: "No comments yet."
|
87
|
+
author_missing: "Anonymous"
|
88
|
+
title_content: "Comments (%{count})"
|
89
|
+
errors:
|
90
|
+
empty_text: "Comment wasn't saved, text was empty."
|
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"
|
105
|
+
login:
|
106
|
+
title: "Login"
|
107
|
+
remember_me: "Remember me"
|
108
|
+
submit: "Login"
|
109
|
+
reset_password:
|
110
|
+
title: "Forgot your password?"
|
111
|
+
submit: "Reset My Password"
|
112
|
+
change_password:
|
113
|
+
title: "Change your password"
|
114
|
+
submit: "Change my password"
|
115
|
+
unlock:
|
116
|
+
title: "Resend unlock instructions"
|
117
|
+
submit: "Resend unlock instructions"
|
118
|
+
resend_confirmation_instructions:
|
119
|
+
title: "Resend confirmation instructions"
|
120
|
+
submit: "Resend confirmation instructions"
|
121
|
+
links:
|
122
|
+
sign_up: "Sign up"
|
123
|
+
sign_in: "Sign in"
|
124
|
+
forgot_your_password: "Forgot your password?"
|
125
|
+
sign_in_with_omniauth_provider: "Sign in with %{provider}"
|
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-ca/help/17471\">turn off \"Compatibility View\"</a>."
|
132
|
+
access_denied:
|
133
|
+
message: "You are not authorized to perform this action."
|
134
|
+
index_list:
|
135
|
+
table: "Table"
|
136
|
+
block: "List"
|
137
|
+
grid: "Grid"
|
138
|
+
blog: "Blog"
|