yousty-activeadmin 1.0.0.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +43 -0
- data/.travis.yml +8 -0
- data/.yardopts +9 -0
- data/CHANGELOG.md +1056 -0
- data/CONTRIBUTING.md +110 -0
- data/Gemfile +41 -0
- data/Guardfile +7 -0
- data/LICENSE +25 -0
- data/README.md +67 -0
- data/Rakefile +25 -0
- data/activeadmin.gemspec +33 -0
- data/app/assets/images/active_admin/admin_notes_icon.png +0 -0
- data/app/assets/images/active_admin/datepicker/datepicker-header-bg.png +0 -0
- data/app/assets/images/active_admin/datepicker/datepicker-input-icon.png +0 -0
- data/app/assets/images/active_admin/datepicker/datepicker-next-link-icon.png +0 -0
- data/app/assets/images/active_admin/datepicker/datepicker-nipple.png +0 -0
- data/app/assets/images/active_admin/datepicker/datepicker-prev-link-icon.png +0 -0
- data/app/assets/images/active_admin/index_list_icons/block_icon.svg +10 -0
- data/app/assets/images/active_admin/index_list_icons/blog_icon.svg +4 -0
- data/app/assets/images/active_admin/index_list_icons/grid_icon.svg +13 -0
- data/app/assets/images/active_admin/index_list_icons/table_icon.svg +3 -0
- data/app/assets/images/active_admin/loading.gif +0 -0
- data/app/assets/images/active_admin/nested_menu_arrow.gif +0 -0
- data/app/assets/images/active_admin/nested_menu_arrow_dark.gif +0 -0
- data/app/assets/images/active_admin/orderable.png +0 -0
- data/app/assets/javascripts/active_admin/application.js.coffee +6 -0
- data/app/assets/javascripts/active_admin/base.js.coffee +5 -0
- data/app/assets/javascripts/active_admin/components/application.js.coffee +23 -0
- data/app/assets/javascripts/active_admin/components/batch_actions.js.coffee +26 -0
- data/app/assets/javascripts/active_admin/components/has_many.js.coffee +41 -0
- data/app/assets/javascripts/active_admin/lib/checkbox-toggler.js.coffee +37 -0
- data/app/assets/javascripts/active_admin/lib/dropdown-menu.js.coffee +105 -0
- data/app/assets/javascripts/active_admin/lib/popover.js.coffee +97 -0
- data/app/assets/javascripts/active_admin/lib/table-checkbox-toggler.js.coffee +25 -0
- data/app/assets/stylesheets/active_admin/_base.css.scss +41 -0
- data/app/assets/stylesheets/active_admin/_forms.css.scss +293 -0
- data/app/assets/stylesheets/active_admin/_header.css.scss +152 -0
- data/app/assets/stylesheets/active_admin/_mixins.css.scss +1 -0
- data/app/assets/stylesheets/active_admin/_typography.css.scss +100 -0
- data/app/assets/stylesheets/active_admin/components/_batch_actions.css.scss +11 -0
- data/app/assets/stylesheets/active_admin/components/_blank_slates.scss +31 -0
- data/app/assets/stylesheets/active_admin/components/_breadcrumbs.scss +20 -0
- data/app/assets/stylesheets/active_admin/components/_buttons.scss +11 -0
- data/app/assets/stylesheets/active_admin/components/_columns.scss +3 -0
- data/app/assets/stylesheets/active_admin/components/_comments.css.scss +41 -0
- data/app/assets/stylesheets/active_admin/components/_date_picker.css.scss +123 -0
- data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +151 -0
- data/app/assets/stylesheets/active_admin/components/_flash_messages.css.scss +39 -0
- data/app/assets/stylesheets/active_admin/components/_grid.scss +9 -0
- data/app/assets/stylesheets/active_admin/components/_index_list.scss +12 -0
- data/app/assets/stylesheets/active_admin/components/_links.scss +5 -0
- data/app/assets/stylesheets/active_admin/components/_pagination.scss +34 -0
- data/app/assets/stylesheets/active_admin/components/_panels.scss +6 -0
- data/app/assets/stylesheets/active_admin/components/_popovers.css.scss +123 -0
- data/app/assets/stylesheets/active_admin/components/_scopes.scss +10 -0
- data/app/assets/stylesheets/active_admin/components/_status_tags.scss +12 -0
- data/app/assets/stylesheets/active_admin/components/_table_tools.css.scss +95 -0
- data/app/assets/stylesheets/active_admin/components/_tables.css.scss +110 -0
- data/app/assets/stylesheets/active_admin/mixins/_all.css.scss +11 -0
- data/app/assets/stylesheets/active_admin/mixins/_buttons.css.scss +66 -0
- data/app/assets/stylesheets/active_admin/mixins/_gradients.css.scss +38 -0
- data/app/assets/stylesheets/active_admin/mixins/_icons.css.scss +21 -0
- data/app/assets/stylesheets/active_admin/mixins/_reset.css.scss +165 -0
- data/app/assets/stylesheets/active_admin/mixins/_rounded.css.scss +43 -0
- data/app/assets/stylesheets/active_admin/mixins/_sections.css.scss +36 -0
- data/app/assets/stylesheets/active_admin/mixins/_shadows.css.scss +22 -0
- data/app/assets/stylesheets/active_admin/mixins/_typography.scss +3 -0
- data/app/assets/stylesheets/active_admin/mixins/_utilities.scss +26 -0
- data/app/assets/stylesheets/active_admin/mixins/_variables.css.scss +32 -0
- data/app/assets/stylesheets/active_admin/pages/_logged_out.scss +44 -0
- data/app/assets/stylesheets/active_admin/print.css.scss +284 -0
- data/app/assets/stylesheets/active_admin/structure/_footer.scss +14 -0
- data/app/assets/stylesheets/active_admin/structure/_main_structure.scss +29 -0
- data/app/assets/stylesheets/active_admin/structure/_title_bar.scss +43 -0
- data/app/views/active_admin/dashboard/index.html.arb +1 -0
- data/app/views/active_admin/devise/mailer/reset_password_instructions.html.erb +8 -0
- data/app/views/active_admin/devise/mailer/unlock_instructions.html.erb +7 -0
- data/app/views/active_admin/devise/passwords/edit.html.erb +19 -0
- data/app/views/active_admin/devise/passwords/new.html.erb +14 -0
- data/app/views/active_admin/devise/sessions/new.html.erb +20 -0
- data/app/views/active_admin/devise/shared/_links.erb +27 -0
- data/app/views/active_admin/devise/unlocks/new.html.erb +14 -0
- data/app/views/active_admin/page/index.html.arb +1 -0
- data/app/views/active_admin/resource/edit.html.arb +1 -0
- data/app/views/active_admin/resource/index.csv.erb +17 -0
- data/app/views/active_admin/resource/index.html.arb +1 -0
- data/app/views/active_admin/resource/new.html.arb +1 -0
- data/app/views/active_admin/resource/show.html.arb +1 -0
- data/app/views/layouts/active_admin.html.arb +1 -0
- data/app/views/layouts/active_admin_logged_out.html.erb +37 -0
- data/config/locales/bg.yml +101 -0
- data/config/locales/ca.yml +98 -0
- data/config/locales/cs.yml +105 -0
- data/config/locales/da.yml +102 -0
- data/config/locales/de-CH.yml +117 -0
- data/config/locales/de.yml +119 -0
- data/config/locales/en-GB.yml +91 -0
- data/config/locales/en.yml +110 -0
- data/config/locales/es.yml +106 -0
- data/config/locales/es_MX.yml +104 -0
- data/config/locales/fi.yml +109 -0
- data/config/locales/fr.yml +97 -0
- data/config/locales/he.yml +91 -0
- data/config/locales/hr.yml +93 -0
- data/config/locales/hu.yml +92 -0
- data/config/locales/it.yml +89 -0
- data/config/locales/ja.yml +104 -0
- data/config/locales/ko.yml +84 -0
- data/config/locales/lt.yml +90 -0
- data/config/locales/lv.yml +89 -0
- data/config/locales/nl.yml +90 -0
- data/config/locales/no-NB.yml +85 -0
- data/config/locales/pl.yml +93 -0
- data/config/locales/pt-BR.yml +90 -0
- data/config/locales/pt-PT.yml +89 -0
- data/config/locales/ro.yml +93 -0
- data/config/locales/ru.yml +103 -0
- data/config/locales/sv-SE.yml +89 -0
- data/config/locales/tr.yml +90 -0
- data/config/locales/uk.yml +100 -0
- data/config/locales/vi.yml +90 -0
- data/config/locales/zh-CN.yml +90 -0
- data/config/locales/zh-TW.yml +90 -0
- data/cucumber.yml +3 -0
- data/docs/0-installation.md +84 -0
- data/docs/1-general-configuration.md +137 -0
- data/docs/10-custom-pages.md +98 -0
- data/docs/11-decorators.md +66 -0
- data/docs/12-arbre-components.md +144 -0
- data/docs/13-authorization-adapter.md +227 -0
- data/docs/2-resource-customization.md +340 -0
- data/docs/3-index-pages/create-an-index.md +29 -0
- data/docs/3-index-pages/index-as-block.md +21 -0
- data/docs/3-index-pages/index-as-blog.md +71 -0
- data/docs/3-index-pages/index-as-grid.md +29 -0
- data/docs/3-index-pages/index-as-table.md +154 -0
- data/docs/3-index-pages.md +206 -0
- data/docs/4-csv-format.md +39 -0
- data/docs/5-forms.md +110 -0
- data/docs/6-show-pages.md +77 -0
- data/docs/7-sidebars.md +42 -0
- data/docs/8-custom-actions.md +139 -0
- data/docs/9-batch-actions.md +155 -0
- data/features/action_item.feature +73 -0
- data/features/authorization.feature +64 -0
- data/features/authorization_cancan.feature +52 -0
- data/features/belongs_to.feature +63 -0
- data/features/breadcrumb.feature +27 -0
- data/features/comments/commenting.feature +140 -0
- data/features/comments/viewing_index.feature +19 -0
- data/features/dashboard.feature +16 -0
- data/features/decorators.feature +41 -0
- data/features/development_reloading.feature +31 -0
- data/features/edit_page.feature +127 -0
- data/features/favicon.feature +20 -0
- data/features/first_boot.feature +16 -0
- data/features/global_navigation.feature +29 -0
- data/features/i18n.feature +38 -0
- data/features/index/batch_actions.feature +123 -0
- data/features/index/filters.feature +138 -0
- data/features/index/format_as_csv.feature +117 -0
- data/features/index/formats.feature +66 -0
- data/features/index/index_as_block.feature +15 -0
- data/features/index/index_as_blog.feature +69 -0
- data/features/index/index_as_grid.feature +45 -0
- data/features/index/index_as_table.feature +195 -0
- data/features/index/index_blank_slate.feature +61 -0
- data/features/index/index_parameters.feature +75 -0
- data/features/index/index_scope_to.feature +56 -0
- data/features/index/index_scopes.feature +251 -0
- data/features/index/page_title.feature +30 -0
- data/features/index/pagination.feature +59 -0
- data/features/index/switch_index_view.feature +73 -0
- data/features/menu.feature +53 -0
- data/features/new_page.feature +119 -0
- data/features/registering_assets.feature +35 -0
- data/features/registering_pages.feature +148 -0
- data/features/registering_resources.feature +33 -0
- data/features/root_to.feature +17 -0
- data/features/show/default_content.feature +43 -0
- data/features/show/page_title.feature +47 -0
- data/features/sidebar_sections.feature +198 -0
- data/features/site_title.feature +47 -0
- data/features/specifying_actions.feature +93 -0
- data/features/step_definitions/action_item_steps.rb +7 -0
- data/features/step_definitions/action_link_steps.rb +7 -0
- data/features/step_definitions/additional_web_steps.rb +82 -0
- data/features/step_definitions/asset_steps.rb +15 -0
- data/features/step_definitions/attribute_steps.rb +13 -0
- data/features/step_definitions/batch_action_steps.rb +55 -0
- data/features/step_definitions/breadcrumb_steps.rb +3 -0
- data/features/step_definitions/comment_steps.rb +12 -0
- data/features/step_definitions/configuration_steps.rb +100 -0
- data/features/step_definitions/dashboard_steps.rb +15 -0
- data/features/step_definitions/factory_steps.rb +34 -0
- data/features/step_definitions/filter_steps.rb +17 -0
- data/features/step_definitions/flash_steps.rb +11 -0
- data/features/step_definitions/format_steps.rb +45 -0
- data/features/step_definitions/i18n_steps.rb +3 -0
- data/features/step_definitions/index_scope_steps.rb +21 -0
- data/features/step_definitions/index_views_steps.rb +3 -0
- data/features/step_definitions/layout_steps.rb +3 -0
- data/features/step_definitions/member_link_steps.rb +7 -0
- data/features/step_definitions/menu_steps.rb +11 -0
- data/features/step_definitions/pagination_steps.rb +8 -0
- data/features/step_definitions/sidebar_steps.rb +8 -0
- data/features/step_definitions/site_title_steps.rb +15 -0
- data/features/step_definitions/symbol_leak_steps.rb +3 -0
- data/features/step_definitions/tab_steps.rb +3 -0
- data/features/step_definitions/table_steps.rb +119 -0
- data/features/step_definitions/user_steps.rb +39 -0
- data/features/step_definitions/web_steps.rb +86 -0
- data/features/sti_resource.feature +73 -0
- data/features/support/env.rb +112 -0
- data/features/support/paths.rb +71 -0
- data/features/support/selectors.rb +45 -0
- data/features/symbol_leak.feature +35 -0
- data/features/users/logging_in.feature +34 -0
- data/features/users/logging_out.feature +13 -0
- data/features/users/resetting_password.feature +34 -0
- data/lib/active_admin/abstract_view_factory.rb +95 -0
- data/lib/active_admin/application.rb +242 -0
- data/lib/active_admin/asset_registration.rb +29 -0
- data/lib/active_admin/authorization_adapter.rb +132 -0
- data/lib/active_admin/base_controller/authorization.rb +151 -0
- data/lib/active_admin/base_controller/menu.rb +34 -0
- data/lib/active_admin/base_controller.rb +78 -0
- data/lib/active_admin/batch_actions/controller.rb +24 -0
- data/lib/active_admin/batch_actions/resource_extension.rb +127 -0
- data/lib/active_admin/batch_actions/views/batch_action_form.rb +35 -0
- data/lib/active_admin/batch_actions/views/batch_action_popover.rb +28 -0
- data/lib/active_admin/batch_actions/views/batch_action_selector.rb +66 -0
- data/lib/active_admin/batch_actions/views/selection_cells.rb +37 -0
- data/lib/active_admin/batch_actions.rb +17 -0
- data/lib/active_admin/callbacks.rb +87 -0
- data/lib/active_admin/cancan_adapter.rb +40 -0
- data/lib/active_admin/component.rb +5 -0
- data/lib/active_admin/controller_action.rb +12 -0
- data/lib/active_admin/csv_builder.rb +49 -0
- data/lib/active_admin/deprecation.rb +36 -0
- data/lib/active_admin/devise.rb +70 -0
- data/lib/active_admin/dsl.rb +166 -0
- data/lib/active_admin/engine.rb +7 -0
- data/lib/active_admin/event.rb +33 -0
- data/lib/active_admin/filters/dsl.rb +21 -0
- data/lib/active_admin/filters/forms.rb +89 -0
- data/lib/active_admin/filters/formtastic_addons.rb +70 -0
- data/lib/active_admin/filters/resource_extension.rb +136 -0
- data/lib/active_admin/filters.rb +9 -0
- data/lib/active_admin/form_builder.rb +152 -0
- data/lib/active_admin/helpers/collection.rb +23 -0
- data/lib/active_admin/helpers/optional_display.rb +38 -0
- data/lib/active_admin/helpers/scope_chain.rb +23 -0
- data/lib/active_admin/helpers/settings.rb +108 -0
- data/lib/active_admin/iconic/icons.rb +142 -0
- data/lib/active_admin/iconic.rb +51 -0
- data/lib/active_admin/inputs/datepicker_input.rb +20 -0
- data/lib/active_admin/inputs/filter_base/search_method_select.rb +73 -0
- data/lib/active_admin/inputs/filter_base.rb +33 -0
- data/lib/active_admin/inputs/filter_boolean_input.rb +32 -0
- data/lib/active_admin/inputs/filter_check_boxes_input.rb +51 -0
- data/lib/active_admin/inputs/filter_date_range_input.rb +34 -0
- data/lib/active_admin/inputs/filter_numeric_input.rb +10 -0
- data/lib/active_admin/inputs/filter_select_input.rb +61 -0
- data/lib/active_admin/inputs/filter_string_input.rb +24 -0
- data/lib/active_admin/inputs.rb +15 -0
- data/lib/active_admin/menu.rb +107 -0
- data/lib/active_admin/menu_collection.rb +96 -0
- data/lib/active_admin/menu_item.rb +97 -0
- data/lib/active_admin/namespace.rb +224 -0
- data/lib/active_admin/orm/active_record/comments/comment.rb +39 -0
- data/lib/active_admin/orm/active_record/comments/namespace_helper.rb +14 -0
- data/lib/active_admin/orm/active_record/comments/resource_helper.rb +17 -0
- data/lib/active_admin/orm/active_record/comments/show_page_helper.rb +23 -0
- data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +75 -0
- data/lib/active_admin/orm/active_record/comments/views.rb +2 -0
- data/lib/active_admin/orm/active_record/comments.rb +84 -0
- data/lib/active_admin/orm/active_record.rb +3 -0
- data/lib/active_admin/orm/mongoid/.gitkeep +0 -0
- data/lib/active_admin/orm/mongoid.rb +1 -0
- data/lib/active_admin/page.rb +88 -0
- data/lib/active_admin/page_controller.rb +29 -0
- data/lib/active_admin/page_dsl.rb +28 -0
- data/lib/active_admin/page_presenter.rb +32 -0
- data/lib/active_admin/resource/action_items.rb +91 -0
- data/lib/active_admin/resource/belongs_to.rb +36 -0
- data/lib/active_admin/resource/controllers.rb +18 -0
- data/lib/active_admin/resource/menu.rb +64 -0
- data/lib/active_admin/resource/naming.rb +84 -0
- data/lib/active_admin/resource/page_presenters.rb +82 -0
- data/lib/active_admin/resource/pagination.rb +19 -0
- data/lib/active_admin/resource/routes.rb +99 -0
- data/lib/active_admin/resource/scope_to.rb +74 -0
- data/lib/active_admin/resource/scopes.rb +50 -0
- data/lib/active_admin/resource/sidebars.rb +27 -0
- data/lib/active_admin/resource.rb +153 -0
- data/lib/active_admin/resource_collection.rb +42 -0
- data/lib/active_admin/resource_controller/action_builder.rb +21 -0
- data/lib/active_admin/resource_controller/data_access.rb +298 -0
- data/lib/active_admin/resource_controller/decorators.rb +20 -0
- data/lib/active_admin/resource_controller/resource_class_methods.rb +24 -0
- data/lib/active_admin/resource_controller/scoping.rb +31 -0
- data/lib/active_admin/resource_controller/sidebars.rb +18 -0
- data/lib/active_admin/resource_controller.rb +50 -0
- data/lib/active_admin/resource_dsl.rb +134 -0
- data/lib/active_admin/router.rb +106 -0
- data/lib/active_admin/scope.rb +57 -0
- data/lib/active_admin/sidebar_section.rb +37 -0
- data/lib/active_admin/version.rb +3 -0
- data/lib/active_admin/view_factory.rb +27 -0
- data/lib/active_admin/view_helpers/active_admin_application_helper.rb +12 -0
- data/lib/active_admin/view_helpers/assigns_with_indifferent_access_helper.rb +7 -0
- data/lib/active_admin/view_helpers/auto_link_helper.rb +34 -0
- data/lib/active_admin/view_helpers/breadcrumb_helper.rb +26 -0
- data/lib/active_admin/view_helpers/display_helper.rb +49 -0
- data/lib/active_admin/view_helpers/download_format_links_helper.rb +49 -0
- data/lib/active_admin/view_helpers/fields_for.rb +50 -0
- data/lib/active_admin/view_helpers/flash_helper.rb +13 -0
- data/lib/active_admin/view_helpers/form_helper.rb +24 -0
- data/lib/active_admin/view_helpers/icon_helper.rb +12 -0
- data/lib/active_admin/view_helpers/method_or_proc_helper.rb +93 -0
- data/lib/active_admin/view_helpers/sidebar_helper.rb +15 -0
- data/lib/active_admin/view_helpers/title_helper.rb +11 -0
- data/lib/active_admin/view_helpers/view_factory_helper.rb +11 -0
- data/lib/active_admin/view_helpers.rb +21 -0
- data/lib/active_admin/views/action_items.rb +17 -0
- data/lib/active_admin/views/components/action_list_popover.rb +29 -0
- data/lib/active_admin/views/components/attributes_table.rb +103 -0
- data/lib/active_admin/views/components/blank_slate.rb +17 -0
- data/lib/active_admin/views/components/columns.rb +150 -0
- data/lib/active_admin/views/components/dropdown_menu.rb +73 -0
- data/lib/active_admin/views/components/index_list.rb +68 -0
- data/lib/active_admin/views/components/paginated_collection.rb +125 -0
- data/lib/active_admin/views/components/panel.rb +34 -0
- data/lib/active_admin/views/components/popover.rb +27 -0
- data/lib/active_admin/views/components/scopes.rb +66 -0
- data/lib/active_admin/views/components/sidebar_section.rb +28 -0
- data/lib/active_admin/views/components/site_title.rb +55 -0
- data/lib/active_admin/views/components/status_tag.rb +56 -0
- data/lib/active_admin/views/components/table_for.rb +191 -0
- data/lib/active_admin/views/footer.rb +20 -0
- data/lib/active_admin/views/header.rb +32 -0
- data/lib/active_admin/views/index_as_block.rb +36 -0
- data/lib/active_admin/views/index_as_blog.rb +156 -0
- data/lib/active_admin/views/index_as_grid.rb +80 -0
- data/lib/active_admin/views/index_as_table.rb +264 -0
- data/lib/active_admin/views/pages/base.rb +139 -0
- data/lib/active_admin/views/pages/form.rb +51 -0
- data/lib/active_admin/views/pages/index.rb +147 -0
- data/lib/active_admin/views/pages/layout.rb +26 -0
- data/lib/active_admin/views/pages/page.rb +30 -0
- data/lib/active_admin/views/pages/show.rb +59 -0
- data/lib/active_admin/views/tabbed_navigation.rb +62 -0
- data/lib/active_admin/views/title_bar.rb +53 -0
- data/lib/active_admin/views.rb +8 -0
- data/lib/active_admin.rb +125 -0
- data/lib/activeadmin.rb +1 -0
- data/lib/generators/active_admin/assets/assets_generator.rb +16 -0
- data/lib/generators/active_admin/assets/templates/active_admin.css.scss +17 -0
- data/lib/generators/active_admin/assets/templates/active_admin.js.coffee +1 -0
- data/lib/generators/active_admin/devise/devise_generator.rb +86 -0
- data/lib/generators/active_admin/install/install_generator.rb +46 -0
- data/lib/generators/active_admin/install/templates/active_admin.rb.erb +235 -0
- data/lib/generators/active_admin/install/templates/admin_user.rb.erb +27 -0
- data/lib/generators/active_admin/install/templates/dashboard.rb +33 -0
- data/lib/generators/active_admin/install/templates/migrations/create_active_admin_comments.rb +19 -0
- data/lib/generators/active_admin/resource/resource_generator.rb +16 -0
- data/lib/generators/active_admin/resource/templates/admin.rb +3 -0
- data/lib/ransack_ext.rb +12 -0
- data/script/local +44 -0
- data/script/use_rails +53 -0
- data/spec/integration/default_namespace_spec.rb +61 -0
- data/spec/integration/javascript_spec.rb +20 -0
- data/spec/integration/memory_spec.rb +29 -0
- data/spec/integration/stylesheets_spec.rb +41 -0
- data/spec/javascripts/coffeescripts/jquery.aa.checkbox-toggler-spec.js.coffee +50 -0
- data/spec/javascripts/coffeescripts/jquery.aa.popover-spec.js.coffee +82 -0
- data/spec/javascripts/coffeescripts/jquery.aa.table-checkbox-toggler-spec.js.coffee +34 -0
- data/spec/javascripts/compiled/jquery.aa.checkbox-toggler-spec.js +60 -0
- data/spec/javascripts/compiled/jquery.aa.popover-spec.js +106 -0
- data/spec/javascripts/compiled/jquery.aa.table-checkbox-toggler-spec.js +37 -0
- data/spec/javascripts/fixtures/checkboxes.html +9 -0
- data/spec/javascripts/fixtures/table_checkboxes.html +17 -0
- data/spec/javascripts/helpers/SpecHelper.js +3 -0
- data/spec/javascripts/helpers/vendor/jasmine-fixture-0.0.5.js +108 -0
- data/spec/javascripts/helpers/vendor/jasmine-jquery.js +288 -0
- data/spec/javascripts/helpers/vendor/sinon-1.2.0.js +2915 -0
- data/spec/javascripts/support/jasmine.yml +74 -0
- data/spec/javascripts/support/jasmine_config.rb +23 -0
- data/spec/javascripts/support/jasmine_runner.rb +32 -0
- data/spec/javascripts/support/jquery-ui-1.8.16.custom.min.js +34 -0
- data/spec/javascripts/support/jquery.min.js +4 -0
- data/spec/spec_helper.rb +175 -0
- data/spec/spec_helper_without_rails.rb +16 -0
- data/spec/support/deferred_garbage_collection.rb +19 -0
- data/spec/support/detect_rails_version.rb +42 -0
- data/spec/support/integration_example_group.rb +31 -0
- data/spec/support/jslint.yml +80 -0
- data/spec/support/rails_template.rb +111 -0
- data/spec/support/rails_template_with_data.rb +59 -0
- data/spec/support/templates/admin/stores.rb +11 -0
- data/spec/support/templates/cucumber.rb +24 -0
- data/spec/support/templates/cucumber_with_reloading.rb +5 -0
- data/spec/support/templates/en.yml +8 -0
- data/spec/support/templates/post_decorator.rb +53 -0
- data/spec/unit/abstract_view_factory_spec.rb +79 -0
- data/spec/unit/action_builder_spec.rb +126 -0
- data/spec/unit/active_admin_spec.rb +11 -0
- data/spec/unit/application_spec.rb +141 -0
- data/spec/unit/asset_registration_spec.rb +52 -0
- data/spec/unit/authorization/authorization_adapter_spec.rb +61 -0
- data/spec/unit/authorization/controller_authorization_spec.rb +39 -0
- data/spec/unit/auto_link_spec.rb +32 -0
- data/spec/unit/batch_actions/resource_spec.rb +91 -0
- data/spec/unit/batch_actions/settings_spec.rb +61 -0
- data/spec/unit/belongs_to_spec.rb +42 -0
- data/spec/unit/cancan_adapter_spec.rb +43 -0
- data/spec/unit/comments_spec.rb +106 -0
- data/spec/unit/component_spec.rb +18 -0
- data/spec/unit/config_shared_examples.rb +59 -0
- data/spec/unit/controller_filters_spec.rb +32 -0
- data/spec/unit/csv_builder_spec.rb +103 -0
- data/spec/unit/devise_spec.rb +116 -0
- data/spec/unit/dsl_spec.rb +61 -0
- data/spec/unit/event_spec.rb +47 -0
- data/spec/unit/filters/filter_form_builder_spec.rb +423 -0
- data/spec/unit/filters/resource_spec.rb +119 -0
- data/spec/unit/form_builder_spec.rb +514 -0
- data/spec/unit/generators/install_spec.rb +23 -0
- data/spec/unit/helpers/collection_spec.rb +65 -0
- data/spec/unit/helpers/scope_chain_spec.rb +36 -0
- data/spec/unit/helpers/settings_spec.rb +30 -0
- data/spec/unit/menu_collection_spec.rb +62 -0
- data/spec/unit/menu_item_spec.rb +143 -0
- data/spec/unit/menu_spec.rb +71 -0
- data/spec/unit/namespace/authorization_spec.rb +27 -0
- data/spec/unit/namespace/register_page_spec.rb +74 -0
- data/spec/unit/namespace/register_resource_spec.rb +163 -0
- data/spec/unit/namespace_spec.rb +103 -0
- data/spec/unit/page_controller_spec.rb +5 -0
- data/spec/unit/page_spec.rb +72 -0
- data/spec/unit/pretty_format_spec.rb +35 -0
- data/spec/unit/resource/action_items_spec.rb +62 -0
- data/spec/unit/resource/menu_spec.rb +18 -0
- data/spec/unit/resource/naming_spec.rb +122 -0
- data/spec/unit/resource/page_presenters_spec.rb +44 -0
- data/spec/unit/resource/pagination_spec.rb +38 -0
- data/spec/unit/resource/routes_spec.rb +73 -0
- data/spec/unit/resource/scopes_spec.rb +43 -0
- data/spec/unit/resource/sidebars_spec.rb +43 -0
- data/spec/unit/resource_collection_spec.rb +160 -0
- data/spec/unit/resource_controller/data_access_spec.rb +73 -0
- data/spec/unit/resource_controller/sidebars_spec.rb +46 -0
- data/spec/unit/resource_controller_spec.rb +265 -0
- data/spec/unit/resource_registration_spec.rb +56 -0
- data/spec/unit/resource_spec.rb +243 -0
- data/spec/unit/routing_spec.rb +172 -0
- data/spec/unit/scope_spec.rb +108 -0
- data/spec/unit/settings_spec.rb +88 -0
- data/spec/unit/view_factory_spec.rb +21 -0
- data/spec/unit/view_helpers/breadcrumbs_spec.rb +149 -0
- data/spec/unit/view_helpers/display_name_spec.rb +41 -0
- data/spec/unit/view_helpers/download_format_links_helper_spec.rb +39 -0
- data/spec/unit/view_helpers/fields_for_spec.rb +50 -0
- data/spec/unit/view_helpers/form_helper_spec.rb +56 -0
- data/spec/unit/view_helpers/method_or_proc_helper_spec.rb +101 -0
- data/spec/unit/views/components/action_list_popover_spec.rb +30 -0
- data/spec/unit/views/components/attributes_table_spec.rb +230 -0
- data/spec/unit/views/components/batch_action_popover_spec.rb +33 -0
- data/spec/unit/views/components/blank_slate_spec.rb +17 -0
- data/spec/unit/views/components/columns_spec.rb +142 -0
- data/spec/unit/views/components/index_list_spec.rb +32 -0
- data/spec/unit/views/components/paginated_collection_spec.rb +227 -0
- data/spec/unit/views/components/panel_spec.rb +51 -0
- data/spec/unit/views/components/popover_spec.rb +33 -0
- data/spec/unit/views/components/sidebar_section_spec.rb +37 -0
- data/spec/unit/views/components/site_title_spec.rb +78 -0
- data/spec/unit/views/components/status_tag_spec.rb +95 -0
- data/spec/unit/views/components/table_for_spec.rb +201 -0
- data/spec/unit/views/pages/form_spec.rb +35 -0
- data/spec/unit/views/pages/layout_spec.rb +63 -0
- data/spec/unit/views/pages/show_spec.rb +20 -0
- data/spec/unit/views/tabbed_navigation_spec.rb +149 -0
- data/tasks/docs.rake +37 -0
- data/tasks/js.rake +32 -0
- data/tasks/parallel_tests.rake +60 -0
- data/tasks/test.rake +79 -0
- data/tasks/yard.rake +7 -0
- metadata +896 -0
@@ -0,0 +1,91 @@
|
|
1
|
+
"en-GB":
|
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
|
+
new_model: "New %{model}"
|
12
|
+
create_model: "New %{model}"
|
13
|
+
edit_model: "Edit %{model}"
|
14
|
+
update_model: "Edit %{model}"
|
15
|
+
delete_model: "Delete %{model}"
|
16
|
+
details: "%{model} Details"
|
17
|
+
cancel: "Cancel"
|
18
|
+
empty: "Empty"
|
19
|
+
previous: "Previous"
|
20
|
+
next: "Next"
|
21
|
+
download: "Download:"
|
22
|
+
has_many_new: "Add New %{model}"
|
23
|
+
has_many_delete: "Delete"
|
24
|
+
has_many_remove: "Remove"
|
25
|
+
filters:
|
26
|
+
buttons:
|
27
|
+
filter: "Filter"
|
28
|
+
clear: "Clear Filters"
|
29
|
+
predicates:
|
30
|
+
contains: "Contains"
|
31
|
+
equals: "Equals"
|
32
|
+
starts_with: "Starts with"
|
33
|
+
ends_with: "Ends with"
|
34
|
+
greater_than: "Greater than"
|
35
|
+
less_than: "Less than"
|
36
|
+
main_content: "Please implement %{model}#main_content to display content."
|
37
|
+
logout: "Logout"
|
38
|
+
powered_by: "Powered by %{active_admin} %{version}"
|
39
|
+
sidebars:
|
40
|
+
filters: "Filters"
|
41
|
+
pagination:
|
42
|
+
empty: "No %{model} found"
|
43
|
+
one: "Displaying <b>1</b> %{model}"
|
44
|
+
one_page: "Displaying <b>all %{n}</b> %{model}"
|
45
|
+
multiple: "Displaying %{model} <b>%{from} - %{to}</b> of <b>%{total}</b> in total"
|
46
|
+
multiple_without_total: "Displaying %{model} <b>%{from} - %{to}</b>"
|
47
|
+
entry:
|
48
|
+
one: "entry"
|
49
|
+
other: "entries"
|
50
|
+
any: "Any"
|
51
|
+
blank_slate:
|
52
|
+
content: "There are no %{resource_name} yet."
|
53
|
+
link: "Create one"
|
54
|
+
batch_actions:
|
55
|
+
button_label: "Batch Actions"
|
56
|
+
delete_confirmation: "Are you sure you want to delete these %{plural_model}? You won't be able to undo this."
|
57
|
+
succesfully_destroyed:
|
58
|
+
one: "Successfully destroyed 1 %{model}"
|
59
|
+
other: "Successfully destroyed %{count} %{plural_model}"
|
60
|
+
selection_toggle_explanation: "(Toggle Selection)"
|
61
|
+
link: "Create one"
|
62
|
+
action_label: "%{title} Selected"
|
63
|
+
labels:
|
64
|
+
destroy: "Delete"
|
65
|
+
comments:
|
66
|
+
body: "Body"
|
67
|
+
author: "Author"
|
68
|
+
title: "Comment"
|
69
|
+
add: "Add Comment"
|
70
|
+
resource: "Resource"
|
71
|
+
no_comments_yet: "No comments yet."
|
72
|
+
author_missing: "Anonymous"
|
73
|
+
title_content: "Comments (%{count})"
|
74
|
+
errors:
|
75
|
+
empty_text: "Comment wasn't saved, text was empty."
|
76
|
+
devise:
|
77
|
+
login:
|
78
|
+
title: "Login"
|
79
|
+
remember_me: "Remember me"
|
80
|
+
submit: "Login"
|
81
|
+
reset_password:
|
82
|
+
title: "Forgot your password?"
|
83
|
+
submit: "Reset My Password"
|
84
|
+
change_password:
|
85
|
+
title: "Change your password"
|
86
|
+
submit: "Change my password"
|
87
|
+
links:
|
88
|
+
sign_in: "Sign in"
|
89
|
+
forgot_your_password: "Forgot your password?"
|
90
|
+
sign_in_with_omniauth_provider: "Sign in with %{provider}"
|
91
|
+
|
@@ -0,0 +1,110 @@
|
|
1
|
+
en:
|
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/dashboard.rb'"
|
7
|
+
view: "View"
|
8
|
+
edit: "Edit"
|
9
|
+
delete: "Delete"
|
10
|
+
delete_confirmation: "Are you sure you want to delete this?"
|
11
|
+
new_model: "New %{model}"
|
12
|
+
create_model: "New %{model}"
|
13
|
+
edit_model: "Edit %{model}"
|
14
|
+
update_model: "Edit %{model}"
|
15
|
+
delete_model: "Delete %{model}"
|
16
|
+
details: "%{model} Details"
|
17
|
+
cancel: "Cancel"
|
18
|
+
empty: "Empty"
|
19
|
+
previous: "Previous"
|
20
|
+
next: "Next"
|
21
|
+
download: "Download:"
|
22
|
+
has_many_new: "Add New %{model}"
|
23
|
+
has_many_delete: "Delete"
|
24
|
+
has_many_remove: "Remove"
|
25
|
+
filters:
|
26
|
+
buttons:
|
27
|
+
filter: "Filter"
|
28
|
+
clear: "Clear Filters"
|
29
|
+
predicates:
|
30
|
+
contains: "Contains"
|
31
|
+
equals: "Equals"
|
32
|
+
starts_with: "Starts with"
|
33
|
+
ends_with: "Ends with"
|
34
|
+
greater_than: "Greater than"
|
35
|
+
less_than: "Less than"
|
36
|
+
main_content: "Please implement %{model}#main_content to display content."
|
37
|
+
logout: "Logout"
|
38
|
+
powered_by: "Powered by %{active_admin} %{version}"
|
39
|
+
sidebars:
|
40
|
+
filters: "Filters"
|
41
|
+
pagination:
|
42
|
+
empty: "No %{model} found"
|
43
|
+
one: "Displaying <b>1</b> %{model}"
|
44
|
+
one_page: "Displaying <b>all %{n}</b> %{model}"
|
45
|
+
multiple: "Displaying %{model} <b>%{from} - %{to}</b> of <b>%{total}</b> in total"
|
46
|
+
multiple_without_total: "Displaying %{model} <b>%{from} - %{to}</b>"
|
47
|
+
entry:
|
48
|
+
one: "entry"
|
49
|
+
other: "entries"
|
50
|
+
any: "Any"
|
51
|
+
blank_slate:
|
52
|
+
content: "There are no %{resource_name} yet."
|
53
|
+
link: "Create one"
|
54
|
+
batch_actions:
|
55
|
+
button_label: "Batch Actions"
|
56
|
+
delete_confirmation: "Are you sure you want to delete these %{plural_model}? You won't be able to undo this."
|
57
|
+
succesfully_destroyed:
|
58
|
+
one: "Successfully destroyed 1 %{model}"
|
59
|
+
other: "Successfully destroyed %{count} %{plural_model}"
|
60
|
+
selection_toggle_explanation: "(Toggle Selection)"
|
61
|
+
link: "Create one"
|
62
|
+
action_label: "%{title} Selected"
|
63
|
+
labels:
|
64
|
+
destroy: "Delete"
|
65
|
+
comments:
|
66
|
+
resource_type: "Resource Type"
|
67
|
+
author_type: "Author Type"
|
68
|
+
body: "Body"
|
69
|
+
author: "Author"
|
70
|
+
title: "Comment"
|
71
|
+
add: "Add Comment"
|
72
|
+
resource: "Resource"
|
73
|
+
no_comments_yet: "No comments yet."
|
74
|
+
author_missing: "Anonymous"
|
75
|
+
title_content: "Comments (%{count})"
|
76
|
+
errors:
|
77
|
+
empty_text: "Comment wasn't saved, text was empty."
|
78
|
+
devise:
|
79
|
+
username:
|
80
|
+
title: "Username"
|
81
|
+
email:
|
82
|
+
title: "Email"
|
83
|
+
subdomain:
|
84
|
+
title: "Subdomain"
|
85
|
+
password:
|
86
|
+
title: "Password"
|
87
|
+
login:
|
88
|
+
title: "Login"
|
89
|
+
remember_me: "Remember me"
|
90
|
+
submit: "Login"
|
91
|
+
reset_password:
|
92
|
+
title: "Forgot your password?"
|
93
|
+
submit: "Reset My Password"
|
94
|
+
change_password:
|
95
|
+
title: "Change your password"
|
96
|
+
submit: "Change my password"
|
97
|
+
unlock:
|
98
|
+
title: "Resend unlock instructions"
|
99
|
+
submit: "Resend unlock instructions"
|
100
|
+
links:
|
101
|
+
sign_in: "Sign in"
|
102
|
+
forgot_your_password: "Forgot your password?"
|
103
|
+
sign_in_with_omniauth_provider: "Sign in with %{provider}"
|
104
|
+
access_denied:
|
105
|
+
message: "You are not authorized to perform this action."
|
106
|
+
index_list:
|
107
|
+
table: "Table"
|
108
|
+
block: "List"
|
109
|
+
grid: "Grid"
|
110
|
+
blog: "Blog"
|
@@ -0,0 +1,106 @@
|
|
1
|
+
es:
|
2
|
+
active_admin:
|
3
|
+
dashboard: Inicio
|
4
|
+
dashboard_welcome:
|
5
|
+
welcome: "Bienvenido a Active Admin. Esta es la página de inicio predeterminada."
|
6
|
+
call_to_action: "Para agregar secciones edite 'app/admin/dashboard.rb'"
|
7
|
+
view: "Ver"
|
8
|
+
edit: "Editar"
|
9
|
+
delete: "Eliminar"
|
10
|
+
delete_confirmation: "¿Está seguro de que quiere eliminar esto?"
|
11
|
+
new_model: "Añadir %{model}"
|
12
|
+
create_model: "Añadir %{model}"
|
13
|
+
edit_model: "Editar %{model}"
|
14
|
+
update_model: "Editar %{model}"
|
15
|
+
delete_model: "Eliminar %{model}"
|
16
|
+
details: "Detalles de %{model}"
|
17
|
+
cancel: "Cancelar"
|
18
|
+
empty: "Vacío"
|
19
|
+
previous: "Anterior"
|
20
|
+
next: "Siguiente"
|
21
|
+
download: "Descargar:"
|
22
|
+
has_many_new: "Agregar Añadir %{model}"
|
23
|
+
has_many_delete: "Eliminar"
|
24
|
+
has_many_remove: "Quitar"
|
25
|
+
filters:
|
26
|
+
buttons:
|
27
|
+
filter: "Filtrar"
|
28
|
+
clear: "Quitar Filtros"
|
29
|
+
predicates:
|
30
|
+
contains: "Contiene"
|
31
|
+
equals: "Igual a"
|
32
|
+
starts_with: "Empieza con"
|
33
|
+
ends_with: "Termina con"
|
34
|
+
greater_than: "Mayor que"
|
35
|
+
less_than: "Menor que"
|
36
|
+
main_content: "Por favor implemente %{model}#main_content para mostrar contenido."
|
37
|
+
logout: "Salir"
|
38
|
+
powered_by: "Powered by %{active_admin} %{version}"
|
39
|
+
sidebars:
|
40
|
+
filters: "Filtros"
|
41
|
+
pagination:
|
42
|
+
empty: "No se han encontrado %{model}"
|
43
|
+
one: "Mostrando <b>1</b> %{model}"
|
44
|
+
one_page: "Mostrando <b>un total de %{n}</b> %{model}"
|
45
|
+
multiple: "Mostrando %{model} <b>%{from} - %{to}</b> de un total de <b>%{total}</b>"
|
46
|
+
multiple_without_total: "Mostrando %{model} <b>%{from} - %{to}</b>"
|
47
|
+
blank_slate:
|
48
|
+
content: "No hay %{resource_name} aún."
|
49
|
+
link: "Añadir"
|
50
|
+
entry:
|
51
|
+
one: "registro"
|
52
|
+
other: "registros"
|
53
|
+
any: "Cualquiera"
|
54
|
+
batch_actions:
|
55
|
+
button_label: "Acciones en masa"
|
56
|
+
delete_confirmation: "Eliminar %{plural_model}: ¿Está seguro? No podrá deshacer esta acción."
|
57
|
+
succesfully_destroyed:
|
58
|
+
one: "Se ha destruido 1 %{model} con éxito"
|
59
|
+
other: "Se han destruido %{count} %{plural_model} con éxito"
|
60
|
+
selection_toggle_explanation: "(Cambiar selección)"
|
61
|
+
link: "Añadir"
|
62
|
+
action_label: "%{title} seleccionado"
|
63
|
+
labels:
|
64
|
+
destroy: "Borrar"
|
65
|
+
comments:
|
66
|
+
body: "Cuerpo"
|
67
|
+
author: "Autor"
|
68
|
+
title: "Comentario"
|
69
|
+
add: "Comentar"
|
70
|
+
resource: "Recurso"
|
71
|
+
no_comments_yet: "Aún sin comentarios."
|
72
|
+
title_content: "Comentarios (%{count})"
|
73
|
+
errors:
|
74
|
+
empty_text: "El comentario no fue guardado, el texto estaba vacío."
|
75
|
+
devise:
|
76
|
+
login:
|
77
|
+
title: "iniciar sesión"
|
78
|
+
remember_me: "Recordarme"
|
79
|
+
submit: "iniciar sesión"
|
80
|
+
reset_password:
|
81
|
+
title: "¿Olvidó su contraseña?"
|
82
|
+
submit: "Restablecer mi contraseña"
|
83
|
+
change_password:
|
84
|
+
title: "Cambie su contraseña"
|
85
|
+
submit: "Cambiar mi contraseña"
|
86
|
+
links:
|
87
|
+
sign_in: "registrarse"
|
88
|
+
forgot_your_password: "¿Olvidó su contraseña?"
|
89
|
+
sign_in_with_omniauth_provider: "Conéctate con %{provider}"
|
90
|
+
views:
|
91
|
+
pagination:
|
92
|
+
truncate: "..."
|
93
|
+
first: "Inicio"
|
94
|
+
previous: "Anterior"
|
95
|
+
next: "Siguiente"
|
96
|
+
last: "Último"
|
97
|
+
formtastic:
|
98
|
+
yes: "Sí"
|
99
|
+
no: "No"
|
100
|
+
create: "Guardar %{model}"
|
101
|
+
update: "Guardar %{model}"
|
102
|
+
submit: "Aceptar"
|
103
|
+
cancel: "Cancelar"
|
104
|
+
reset: "Restablecer %{model}"
|
105
|
+
required: "requerido"
|
106
|
+
|
@@ -0,0 +1,104 @@
|
|
1
|
+
es_MX:
|
2
|
+
active_admin:
|
3
|
+
dashboard: Inicio
|
4
|
+
dashboard_welcome:
|
5
|
+
welcome: "Bienvenido a Active Admin. Esta es la página de inicio predeterminada."
|
6
|
+
call_to_action: "Para agregar secciones edite 'app/admin/dashboard.rb'"
|
7
|
+
view: "Ver"
|
8
|
+
edit: "Editar"
|
9
|
+
delete: "Eliminar"
|
10
|
+
delete_confirmation: "¿Está seguro de que quiere eliminar esto?"
|
11
|
+
new_model: "Añadir %{model}"
|
12
|
+
create_model: "Añadir %{model}"
|
13
|
+
edit_model: "Editar %{model}"
|
14
|
+
update_model: "Editar %{model}"
|
15
|
+
delete_model: "Eliminar %{model}"
|
16
|
+
details: "Detalles de %{model}"
|
17
|
+
cancel: "Cancelar"
|
18
|
+
empty: "Vacío"
|
19
|
+
previous: "Anterior"
|
20
|
+
next: "Siguiente"
|
21
|
+
download: "Descargar:"
|
22
|
+
has_many_new: "Agregar Añadir %{model}"
|
23
|
+
has_many_delete: "Eliminar"
|
24
|
+
has_many_remove: "Quitar"
|
25
|
+
filters:
|
26
|
+
buttons:
|
27
|
+
filter: "Filtrar"
|
28
|
+
clear: "Quitar Filtros"
|
29
|
+
predicates:
|
30
|
+
contains: "Contiene"
|
31
|
+
equals: "Igual a"
|
32
|
+
starts_with: "Empieza con"
|
33
|
+
ends_with: "Termina con"
|
34
|
+
greater_than: "Mayor que"
|
35
|
+
less_than: "Menor que"
|
36
|
+
main_content: "Por favor implemente %{model}#main_content para mostrar contenido."
|
37
|
+
logout: "Salir"
|
38
|
+
powered_by: "Powered by %{active_admin} %{version}"
|
39
|
+
sidebars:
|
40
|
+
filters: "Filtros"
|
41
|
+
pagination:
|
42
|
+
empty: "No se han encontrado %{model}"
|
43
|
+
one: "Mostrando <b>1</b> %{model}"
|
44
|
+
one_page: "Mostrando <b>un total de %{n}</b> %{model}"
|
45
|
+
multiple: "Mostrando %{model} <b>%{from} - %{to}</b> de un total de <b>%{total}</b>"
|
46
|
+
blank_slate:
|
47
|
+
content: "No hay %{resource_name} aún."
|
48
|
+
link: "Añadir"
|
49
|
+
entry:
|
50
|
+
one: "registro"
|
51
|
+
other: "registros"
|
52
|
+
any: "Cualquiera"
|
53
|
+
batch_actions:
|
54
|
+
button_label: "Acciones en masa"
|
55
|
+
delete_confirmation: "Eliminar %{plural_model}: ¿Está seguro? No podrá deshacer esta acción."
|
56
|
+
succesfully_destroyed:
|
57
|
+
one: "Se ha destruido 1 %{model} con éxito"
|
58
|
+
other: "Se han destruido %{count} %{plural_model} con éxito"
|
59
|
+
selection_toggle_explanation: "(Cambiar selección)"
|
60
|
+
link: "Añadir"
|
61
|
+
action_label: "%{title} seleccionado"
|
62
|
+
labels:
|
63
|
+
destroy: "Borrar"
|
64
|
+
comments:
|
65
|
+
body: "Cuerpo"
|
66
|
+
author: "Autor"
|
67
|
+
title: "Comentario"
|
68
|
+
add: "Comentar"
|
69
|
+
resource: "Recurso"
|
70
|
+
no_comments_yet: "Aún sin comentarios."
|
71
|
+
title_content: "Comentarios (%{count})"
|
72
|
+
errors:
|
73
|
+
empty_text: "El comentario no fue guardado, el texto estaba vacío."
|
74
|
+
devise:
|
75
|
+
login:
|
76
|
+
title: "iniciar sesión"
|
77
|
+
remember_me: "Recordarme"
|
78
|
+
submit: "iniciar sesión"
|
79
|
+
reset_password:
|
80
|
+
title: "¿Olvidó su contraseña?"
|
81
|
+
submit: "Restablecer mi contraseña"
|
82
|
+
change_password:
|
83
|
+
title: "Cambie su contraseña"
|
84
|
+
submit: "Cambiar mi contraseña"
|
85
|
+
links:
|
86
|
+
sign_in: "registrarse"
|
87
|
+
forgot_your_password: "¿Olvidó su contraseña?"
|
88
|
+
sign_in_with_omniauth_provider: "Conéctate con %{provider}"
|
89
|
+
views:
|
90
|
+
pagination:
|
91
|
+
truncate: "..."
|
92
|
+
first: "Inicio"
|
93
|
+
previous: "Anterior"
|
94
|
+
next: "Siguiente"
|
95
|
+
last: "Último"
|
96
|
+
formtastic:
|
97
|
+
yes: "Sí"
|
98
|
+
no: "No"
|
99
|
+
create: "Guardar %{model}"
|
100
|
+
update: "Guardar %{model}"
|
101
|
+
submit: "Aceptar"
|
102
|
+
cancel: "Cancelar"
|
103
|
+
reset: "Restablecer %{model}"
|
104
|
+
required: "requerido"
|
@@ -0,0 +1,109 @@
|
|
1
|
+
fi:
|
2
|
+
active_admin:
|
3
|
+
dashboard: Etusivu
|
4
|
+
dashboard_welcome:
|
5
|
+
welcome: "Tervetuloa! Tämä on Active Adminin oletusetusivu."
|
6
|
+
call_to_action: "Lisätäksesi etusivun osioita katso: 'app/admin/dashboard.rb'"
|
7
|
+
view: "Katso"
|
8
|
+
edit: "Muokkaa"
|
9
|
+
delete: "Poista"
|
10
|
+
delete_confirmation: "Oletko varma, että haluat poistaa tämän?"
|
11
|
+
new_model: "Uusi %{model}"
|
12
|
+
create_model: "Uusi %{model}"
|
13
|
+
edit_model: "Muokaa %{model}"
|
14
|
+
update_model: "Muokkaa %{model}"
|
15
|
+
delete_model: "Poista %{model}"
|
16
|
+
details: "%{model} Tiedot"
|
17
|
+
cancel: "Peruuta"
|
18
|
+
empty: "Tyhjä"
|
19
|
+
previous: "Edellinen"
|
20
|
+
next: "Seuraava"
|
21
|
+
download: "Lataa:"
|
22
|
+
has_many_new: "Lisää uusi %{model}"
|
23
|
+
has_many_delete: "Poista"
|
24
|
+
has_many_remove: "Poista"
|
25
|
+
filters:
|
26
|
+
buttons:
|
27
|
+
filter: "Hae"
|
28
|
+
clear: "Tyhjennä valinnat"
|
29
|
+
predicates:
|
30
|
+
contains: "Sisältää"
|
31
|
+
equals: "On yhtä kuin"
|
32
|
+
starts_with: "Alkaa"
|
33
|
+
ends_with: "Päättyy"
|
34
|
+
greater_than: "Suurempi kuin"
|
35
|
+
less_than: "Pienempi kuin"
|
36
|
+
main_content: "Ole hyvä, käytä %{model}#main_content:ia nähdäksesi jotain."
|
37
|
+
logout: "Kirjaudu ulos"
|
38
|
+
powered_by: "Käyttää %{active_admin} %{version}:ia"
|
39
|
+
sidebars:
|
40
|
+
filters: "Haku"
|
41
|
+
pagination:
|
42
|
+
empty: "%{model}:ia ei löytynyt"
|
43
|
+
one: "Näytetään <b>1</b> %{model}"
|
44
|
+
one_page: "Näytetään <b>kaikki %{n}</b> %{model}:it"
|
45
|
+
multiple: "Näytetään %{model} <b>%{from} - %{to}</b> (yhteensä <b>%{total}</b>)"
|
46
|
+
multiple_without_total: "Näytetään %{model} <b>%{from} - %{to}</b>"
|
47
|
+
entry:
|
48
|
+
one: "syöte"
|
49
|
+
other: "syötteet"
|
50
|
+
any: "mikä vain"
|
51
|
+
blank_slate:
|
52
|
+
content: "Järjestelmässä ei ole yhtään %{resource_name}:ia vielä."
|
53
|
+
link: "Luo ensimmäinen"
|
54
|
+
batch_actions:
|
55
|
+
button_label: "Aja joukolle"
|
56
|
+
delete_confirmation: "Oletko varma, että haluat poistaa nämä %{plural_model}:t? Toimintoa ei voi peruuttaa."
|
57
|
+
succesfully_destroyed:
|
58
|
+
one: "1 %{model} poistettu"
|
59
|
+
other: "%{count} %{plural_model}:a poistettu"
|
60
|
+
selection_toggle_explanation: "(Vaihda valintaa)"
|
61
|
+
link: "Luo"
|
62
|
+
action_label: "%{title} Valittu"
|
63
|
+
labels:
|
64
|
+
destroy: "Poista"
|
65
|
+
comments:
|
66
|
+
resource_type: "Resurssityyppi"
|
67
|
+
author_type: "Luoja-tyyppi"
|
68
|
+
body: "Runko"
|
69
|
+
author: "Luoja"
|
70
|
+
title: "Kommentti"
|
71
|
+
add: "Lisää kommentti"
|
72
|
+
resource: "Resurssi"
|
73
|
+
no_comments_yet: "Ei kommentteja."
|
74
|
+
title_content: "Kommentteja (%{count})"
|
75
|
+
errors:
|
76
|
+
empty_text: "Kommenttia ei pystytty tallentamaan, et kirjoittanut kommenttitekstiä."
|
77
|
+
devise:
|
78
|
+
username:
|
79
|
+
title: "Käyttäjänimi"
|
80
|
+
email:
|
81
|
+
title: "Sähköposti"
|
82
|
+
subdomain:
|
83
|
+
title: "Subdomain"
|
84
|
+
password:
|
85
|
+
title: "Salasana"
|
86
|
+
login:
|
87
|
+
title: "Sisäänkirjautuminen"
|
88
|
+
remember_me: "Muista minut"
|
89
|
+
submit: "Kirjaudu sisään"
|
90
|
+
reset_password:
|
91
|
+
title: "Unohtunut salasana?"
|
92
|
+
submit: "Resetoi salasana"
|
93
|
+
change_password:
|
94
|
+
title: "Vaihda salasana"
|
95
|
+
submit: "Vaihda salasana"
|
96
|
+
unlock:
|
97
|
+
title: "Lähetä ohjeet lukituksen poistoon"
|
98
|
+
submit: "Lähetä ohjeet lukituksen poistoon"
|
99
|
+
links:
|
100
|
+
sign_in: "Kirjaudu sisään"
|
101
|
+
forgot_your_password: "Unohtunut salasana?"
|
102
|
+
sign_in_with_omniauth_provider: "Kirjaudu sisään %{provider}:ia käyttäen"
|
103
|
+
access_denied:
|
104
|
+
message: "Sinulla ei ole oikeuksia suorittaa yrittämääsi toimintoa."
|
105
|
+
index_list:
|
106
|
+
table: "Taulukko"
|
107
|
+
block: "Lista"
|
108
|
+
grid: "Ruudukko"
|
109
|
+
blog: "Blogi"
|
@@ -0,0 +1,97 @@
|
|
1
|
+
fr:
|
2
|
+
active_admin:
|
3
|
+
dashboard: "Tableau de Bord"
|
4
|
+
dashboard_welcome:
|
5
|
+
welcome: "Bienvenue dans Active Admin. Ceci est la page par défaut."
|
6
|
+
call_to_action: "Pour ajouter des sections au tableau de bord, consultez 'app/admin/dashboard.rb'"
|
7
|
+
view: "Voir"
|
8
|
+
edit: "Modifier"
|
9
|
+
delete: "Supprimer"
|
10
|
+
delete_confirmation: "Êtes-vous certain de vouloir supprimer ceci ?"
|
11
|
+
new_model: "Nouveau %{model}"
|
12
|
+
create_model: "Nouveau %{model}"
|
13
|
+
edit_model: "Modifier %{model}"
|
14
|
+
update_model: "Modifier %{model}"
|
15
|
+
delete_model: "Supprimer %{model}"
|
16
|
+
details: "Détails de %{model}"
|
17
|
+
cancel: "Annuler"
|
18
|
+
empty: "Vide"
|
19
|
+
previous: "Précédent"
|
20
|
+
next: "Suivant"
|
21
|
+
download: "Télécharger:"
|
22
|
+
has_many_new: "Ajouter un nouveau %{model}"
|
23
|
+
has_many_delete: "Supprimer"
|
24
|
+
has_many_remove: "Enlever"
|
25
|
+
filters:
|
26
|
+
buttons:
|
27
|
+
filter: "Filtrer"
|
28
|
+
clear: "Supprimer les filtres"
|
29
|
+
predicates:
|
30
|
+
contains: "Contient"
|
31
|
+
equals: "Egal à"
|
32
|
+
starts_with: "Commence par"
|
33
|
+
ends_with: "Se termine par"
|
34
|
+
greater_than: "Plus grand que"
|
35
|
+
less_than: "Plus petit que"
|
36
|
+
main_content: "Veuillez implémenter %{model}#main_content pour afficher le contenu."
|
37
|
+
logout: "Déconnexion"
|
38
|
+
powered_by: "Propulsé par %{active_admin} %{version}"
|
39
|
+
sidebars:
|
40
|
+
filters: "Filtres"
|
41
|
+
pagination:
|
42
|
+
empty: "Aucun %{model} trouvé"
|
43
|
+
one: "Affichage de <b>1</b> %{model}"
|
44
|
+
one_page: "Affichage des <b>%{n}</b> %{model}"
|
45
|
+
multiple: "Affichage de %{model} <b>%{from} - %{to}</b> sur un total de <b>%{total}</b>"
|
46
|
+
multiple_without_total: "Affichage de %{model} <b>%{from} - %{to}</b>"
|
47
|
+
entry:
|
48
|
+
one: "entrée"
|
49
|
+
other: "entrées"
|
50
|
+
any: "N'importe lequel"
|
51
|
+
blank_slate:
|
52
|
+
content: "Il n'y a pas encore de %{resource_name}."
|
53
|
+
link: "Créez en un"
|
54
|
+
batch_actions:
|
55
|
+
button_label: "Actions groupées"
|
56
|
+
delete_confirmation: "Êtes-vous sur de vouloir supprimer ces %{plural_model} ? Cette action est irréversible."
|
57
|
+
succesfully_destroyed:
|
58
|
+
one: "1 %{model} supprimé"
|
59
|
+
other: "%{count} %{plural_model} supprimés"
|
60
|
+
selection_toggle_explanation: "(Inverser la sélection)"
|
61
|
+
link: "Créer un"
|
62
|
+
action_label: "%{title} les éléments sélectionnés"
|
63
|
+
labels:
|
64
|
+
destroy: "Supprimer"
|
65
|
+
comments:
|
66
|
+
body: "Corps"
|
67
|
+
author: "Auteur"
|
68
|
+
title: "Commentaire"
|
69
|
+
add: "Ajouter un commentaire"
|
70
|
+
resource: "Ressource"
|
71
|
+
resource_type: "Type de ressource"
|
72
|
+
author_type: "Profil de l'auteur"
|
73
|
+
no_comments_yet: "Aucun commentaire actuellement"
|
74
|
+
title_content: "Commentaires (%{count})"
|
75
|
+
errors:
|
76
|
+
empty_text: "Le commentaire n'a pas été enregistré puisque le texte était vide."
|
77
|
+
devise:
|
78
|
+
login:
|
79
|
+
title: "login"
|
80
|
+
remember_me: "Se souvenir de moi"
|
81
|
+
submit: "login"
|
82
|
+
reset_password:
|
83
|
+
title: "Vous avez oublié votre mot de passe ?"
|
84
|
+
submit: "Réinitialiser mon mot de passe"
|
85
|
+
change_password:
|
86
|
+
title: "Changez votre mot de passe"
|
87
|
+
submit: "Changer mon mot de passe"
|
88
|
+
links:
|
89
|
+
sign_in: "Connectez-vous"
|
90
|
+
forgot_your_password: "Vous avez oublié votre mot de passe ?"
|
91
|
+
sign_in_with_omniauth_provider: "Connectez-vous avec %{provider}"
|
92
|
+
access_denied: "Vous n'êtes pas autorisé à executer cette action"
|
93
|
+
index_list:
|
94
|
+
table: "Tableau"
|
95
|
+
block: "Liste"
|
96
|
+
grid: "Grille"
|
97
|
+
blog: "Blog"
|