activeadmin-orac 1.0.0.pre4
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 +15 -0
- data/.gitignore +49 -0
- data/.hound.yml +14 -0
- data/.travis.yml +40 -0
- data/.yardopts +8 -0
- data/CHANGELOG.md +120 -0
- data/CODE_OF_CONDUCT.md +22 -0
- data/CONTRIBUTING.md +144 -0
- data/Gemfile +78 -0
- data/Guardfile +8 -0
- data/LICENSE +20 -0
- data/README.md +102 -0
- data/Rakefile +33 -0
- data/activeadmin.gemspec +31 -0
- data/app/assets/images/active_admin/datepicker/datepicker-input-icon.png +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/base.js.coffee +9 -0
- data/app/assets/javascripts/active_admin/ext/jquery-ui.js.coffee +6 -0
- data/app/assets/javascripts/active_admin/ext/jquery.js.coffee +7 -0
- data/app/assets/javascripts/active_admin/initializers/batch_actions.js.coffee +7 -0
- data/app/assets/javascripts/active_admin/initializers/datepicker.js.coffee +10 -0
- data/app/assets/javascripts/active_admin/initializers/filters.js.coffee +22 -0
- data/app/assets/javascripts/active_admin/initializers/tabs.js.coffee +3 -0
- data/app/assets/javascripts/active_admin/jquery_ui.js.erb +11 -0
- data/app/assets/javascripts/active_admin/lib/batch_actions.js.coffee +39 -0
- data/app/assets/javascripts/active_admin/lib/checkbox-toggler.js.coffee +44 -0
- data/app/assets/javascripts/active_admin/lib/dropdown-menu.js.coffee +101 -0
- data/app/assets/javascripts/active_admin/lib/flash.js.coffee +19 -0
- data/app/assets/javascripts/active_admin/lib/has_many.js.coffee +79 -0
- data/app/assets/javascripts/active_admin/lib/modal_dialog.js.coffee +45 -0
- data/app/assets/javascripts/active_admin/lib/per_page.js.coffee +42 -0
- data/app/assets/javascripts/active_admin/lib/table-checkbox-toggler.js.coffee +24 -0
- data/app/assets/stylesheets/active_admin/_base.scss +41 -0
- data/app/assets/stylesheets/active_admin/_forms.scss +333 -0
- data/app/assets/stylesheets/active_admin/_header.scss +156 -0
- data/app/assets/stylesheets/active_admin/_mixins.scss +1 -0
- data/app/assets/stylesheets/active_admin/_typography.scss +100 -0
- data/app/assets/stylesheets/active_admin/components/_batch_actions.scss +11 -0
- data/app/assets/stylesheets/active_admin/components/_blank_slates.scss +30 -0
- data/app/assets/stylesheets/active_admin/components/_breadcrumbs.scss +20 -0
- data/app/assets/stylesheets/active_admin/components/_buttons.scss +6 -0
- data/app/assets/stylesheets/active_admin/components/_columns.scss +3 -0
- data/app/assets/stylesheets/active_admin/components/_comments.scss +41 -0
- data/app/assets/stylesheets/active_admin/components/_date_picker.scss +149 -0
- data/app/assets/stylesheets/active_admin/components/_dropdown_menu.scss +152 -0
- data/app/assets/stylesheets/active_admin/components/_flash_messages.scss +37 -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/_modal_dialog.scss +34 -0
- data/app/assets/stylesheets/active_admin/components/_pagination.scss +44 -0
- data/app/assets/stylesheets/active_admin/components/_panels.scss +6 -0
- data/app/assets/stylesheets/active_admin/components/_scopes.scss +10 -0
- data/app/assets/stylesheets/active_admin/components/_status_tags.scss +16 -0
- data/app/assets/stylesheets/active_admin/components/_table_tools.scss +67 -0
- data/app/assets/stylesheets/active_admin/components/_tables.scss +110 -0
- data/app/assets/stylesheets/active_admin/components/_tabs.scss +65 -0
- data/app/assets/stylesheets/active_admin/components/_unsupported_browser.scss +16 -0
- data/app/assets/stylesheets/active_admin/mixins/_all.scss +10 -0
- data/app/assets/stylesheets/active_admin/mixins/_buttons.scss +65 -0
- data/app/assets/stylesheets/active_admin/mixins/_gradients.scss +28 -0
- data/app/assets/stylesheets/active_admin/mixins/_reset.scss +165 -0
- data/app/assets/stylesheets/active_admin/mixins/_rounded.scss +22 -0
- data/app/assets/stylesheets/active_admin/mixins/_sections.scss +41 -0
- data/app/assets/stylesheets/active_admin/mixins/_shadows.scss +15 -0
- data/app/assets/stylesheets/active_admin/mixins/_typography.scss +3 -0
- data/app/assets/stylesheets/active_admin/mixins/_utilities.scss +17 -0
- data/app/assets/stylesheets/active_admin/mixins/_variables.scss +34 -0
- data/app/assets/stylesheets/active_admin/pages/_logged_out.scss +44 -0
- data/app/assets/stylesheets/active_admin/print.scss +288 -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 +41 -0
- data/app/views/active_admin/devise/confirmations/new.html.erb +15 -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 +18 -0
- data/app/views/active_admin/devise/passwords/new.html.erb +15 -0
- data/app/views/active_admin/devise/registrations/new.html.erb +22 -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 +15 -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.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 +39 -0
- data/config/locales/ar.yml +136 -0
- data/config/locales/bg.yml +121 -0
- data/config/locales/bs.yml +122 -0
- data/config/locales/ca.yml +107 -0
- data/config/locales/cs.yml +110 -0
- data/config/locales/da.yml +106 -0
- data/config/locales/de-CH.yml +102 -0
- data/config/locales/de.yml +135 -0
- data/config/locales/el.yml +127 -0
- data/config/locales/en-GB.yml +98 -0
- data/config/locales/en.yml +136 -0
- data/config/locales/es-MX.yml +94 -0
- data/config/locales/es.yml +136 -0
- data/config/locales/fa.yml +120 -0
- data/config/locales/fi.yml +113 -0
- data/config/locales/fr.yml +119 -0
- data/config/locales/he.yml +95 -0
- data/config/locales/hr.yml +124 -0
- data/config/locales/hu.yml +99 -0
- data/config/locales/id.yml +136 -0
- data/config/locales/it.yml +136 -0
- data/config/locales/ja.yml +136 -0
- data/config/locales/ko.yml +121 -0
- data/config/locales/lt.yml +121 -0
- data/config/locales/lv.yml +93 -0
- data/config/locales/nb.yml +121 -0
- data/config/locales/nl.yml +134 -0
- data/config/locales/pl.yml +98 -0
- data/config/locales/pt-BR.yml +136 -0
- data/config/locales/pt-PT.yml +93 -0
- data/config/locales/ro.yml +97 -0
- data/config/locales/ru.yml +140 -0
- data/config/locales/sv-SE.yml +134 -0
- data/config/locales/tr.yml +136 -0
- data/config/locales/uk.yml +137 -0
- data/config/locales/vi.yml +94 -0
- data/config/locales/zh-CN.yml +112 -0
- data/config/locales/zh-TW.yml +136 -0
- data/cucumber.yml +3 -0
- data/docs/0-installation.md +112 -0
- data/docs/1-general-configuration.md +171 -0
- data/docs/10-custom-pages.md +106 -0
- data/docs/11-decorators.md +55 -0
- data/docs/12-arbre-components.md +150 -0
- data/docs/13-authorization-adapter.md +248 -0
- data/docs/14-gotchas.md +116 -0
- data/docs/2-resource-customization.md +422 -0
- data/docs/3-index-pages.md +272 -0
- data/docs/3-index-pages/custom-index.md +31 -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 +213 -0
- data/docs/4-csv-format.md +58 -0
- data/docs/5-forms.md +172 -0
- data/docs/6-show-pages.md +105 -0
- data/docs/7-sidebars.md +71 -0
- data/docs/8-custom-actions.md +160 -0
- data/docs/9-batch-actions.md +233 -0
- data/docs/README.md +24 -0
- data/features/action_item.feature +73 -0
- data/features/authorization.feature +64 -0
- data/features/authorization_cancan.feature +52 -0
- data/features/authorization_pundit.feature +37 -0
- data/features/belongs_to.feature +66 -0
- data/features/breadcrumb.feature +75 -0
- data/features/comments/commenting.feature +171 -0
- data/features/comments/viewing_index.feature +19 -0
- data/features/dashboard.feature +16 -0
- data/features/decorators.feature +43 -0
- data/features/development_reloading.feature +30 -0
- data/features/edit_page.feature +117 -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 +43 -0
- data/features/index/batch_actions.feature +196 -0
- data/features/index/filters.feature +161 -0
- data/features/index/format_as_csv.feature +203 -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 +291 -0
- data/features/index/index_blank_slate.feature +83 -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 +42 -0
- data/features/index/pagination.feature +63 -0
- data/features/index/switch_index_view.feature +73 -0
- data/features/menu.feature +53 -0
- data/features/meta_tags.feature +21 -0
- data/features/new_page.feature +109 -0
- data/features/registering_assets.feature +34 -0
- data/features/registering_pages.feature +148 -0
- data/features/registering_resources.feature +33 -0
- data/features/renamed_resource.feature +32 -0
- data/features/root_to.feature +17 -0
- data/features/show/columns.feature +40 -0
- data/features/show/default_content.feature +44 -0
- data/features/show/page_title.feature +59 -0
- data/features/show/tabs.feature +27 -0
- data/features/sidebar_sections.feature +210 -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 +20 -0
- data/features/step_definitions/additional_web_steps.rb +81 -0
- data/features/step_definitions/asset_steps.rb +15 -0
- data/features/step_definitions/attribute_steps.rb +18 -0
- data/features/step_definitions/batch_action_steps.rb +81 -0
- data/features/step_definitions/blog_steps.rb +3 -0
- data/features/step_definitions/breadcrumb_steps.rb +3 -0
- data/features/step_definitions/column_steps.rb +8 -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 +35 -0
- data/features/step_definitions/filter_steps.rb +39 -0
- data/features/step_definitions/flash_steps.rb +11 -0
- data/features/step_definitions/format_steps.rb +52 -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/meta_tag_steps.rb +3 -0
- data/features/step_definitions/pagination_steps.rb +15 -0
- data/features/step_definitions/sidebar_steps.rb +13 -0
- data/features/step_definitions/site_title_steps.rb +17 -0
- data/features/step_definitions/symbol_leak_steps.rb +3 -0
- data/features/step_definitions/tab_steps.rb +8 -0
- data/features/step_definitions/table_steps.rb +116 -0
- data/features/step_definitions/user_steps.rb +52 -0
- data/features/step_definitions/web_steps.rb +85 -0
- data/features/sti_resource.feature +65 -0
- data/features/strong_parameters.feature +73 -0
- data/features/support/env.rb +162 -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 +36 -0
- data/features/users/logging_out.feature +13 -0
- data/features/users/resetting_password.feature +34 -0
- data/lib/active_admin.rb +130 -0
- data/lib/active_admin/abstract_view_factory.rb +85 -0
- data/lib/active_admin/application.rb +324 -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.rb +87 -0
- data/lib/active_admin/base_controller/authorization.rb +130 -0
- data/lib/active_admin/base_controller/menu.rb +38 -0
- data/lib/active_admin/batch_actions.rb +16 -0
- data/lib/active_admin/batch_actions/controller.rb +40 -0
- data/lib/active_admin/batch_actions/resource_extension.rb +159 -0
- data/lib/active_admin/batch_actions/views/batch_action_form.rb +38 -0
- data/lib/active_admin/batch_actions/views/batch_action_selector.rb +58 -0
- data/lib/active_admin/batch_actions/views/selection_cells.rb +37 -0
- data/lib/active_admin/callbacks.rb +88 -0
- data/lib/active_admin/cancan_adapter.rb +36 -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 +129 -0
- data/lib/active_admin/dependency.rb +168 -0
- data/lib/active_admin/deprecation.rb +35 -0
- data/lib/active_admin/devise.rb +80 -0
- data/lib/active_admin/dsl.rb +173 -0
- data/lib/active_admin/engine.rb +16 -0
- data/lib/active_admin/error.rb +62 -0
- data/lib/active_admin/event.rb +24 -0
- data/lib/active_admin/filters.rb +9 -0
- data/lib/active_admin/filters/active.rb +30 -0
- data/lib/active_admin/filters/dsl.rb +21 -0
- data/lib/active_admin/filters/forms.rb +83 -0
- data/lib/active_admin/filters/formtastic_addons.rb +79 -0
- data/lib/active_admin/filters/humanized.rb +68 -0
- data/lib/active_admin/filters/resource_extension.rb +194 -0
- data/lib/active_admin/form_builder.rb +145 -0
- data/lib/active_admin/generators/boilerplate.rb +45 -0
- data/lib/active_admin/helpers/collection.rb +17 -0
- data/lib/active_admin/helpers/i18n.rb +7 -0
- data/lib/active_admin/helpers/optional_display.rb +38 -0
- data/lib/active_admin/helpers/routes/url_helpers.rb +15 -0
- data/lib/active_admin/helpers/scope_chain.rb +23 -0
- data/lib/active_admin/helpers/settings.rb +115 -0
- data/lib/active_admin/inputs.rb +20 -0
- data/lib/active_admin/inputs/datepicker_input.rb +20 -0
- data/lib/active_admin/inputs/filters/base.rb +44 -0
- data/lib/active_admin/inputs/filters/base/search_method_select.rb +75 -0
- data/lib/active_admin/inputs/filters/boolean_input.rb +24 -0
- data/lib/active_admin/inputs/filters/check_boxes_input.rb +50 -0
- data/lib/active_admin/inputs/filters/date_picker_input.rb +13 -0
- data/lib/active_admin/inputs/filters/date_range_input.rb +36 -0
- data/lib/active_admin/inputs/filters/numeric_input.rb +12 -0
- data/lib/active_admin/inputs/filters/select_input.rb +55 -0
- data/lib/active_admin/inputs/filters/string_input.rb +26 -0
- data/lib/active_admin/menu.rb +108 -0
- data/lib/active_admin/menu_collection.rb +93 -0
- data/lib/active_admin/menu_item.rb +97 -0
- data/lib/active_admin/namespace.rb +247 -0
- data/lib/active_admin/order_clause.rb +26 -0
- data/lib/active_admin/orm/active_record.rb +5 -0
- data/lib/active_admin/orm/active_record/comments.rb +95 -0
- data/lib/active_admin/orm/active_record/comments/comment.rb +45 -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.rb +2 -0
- data/lib/active_admin/orm/active_record/comments/views/active_admin_comments.rb +88 -0
- data/lib/active_admin/orm/mongoid.rb +1 -0
- data/lib/active_admin/orm/mongoid/.gitkeep +0 -0
- data/lib/active_admin/page.rb +92 -0
- data/lib/active_admin/page_controller.rb +33 -0
- data/lib/active_admin/page_dsl.rb +28 -0
- data/lib/active_admin/page_presenter.rb +32 -0
- data/lib/active_admin/pundit_adapter.rb +68 -0
- data/lib/active_admin/reloader.rb +25 -0
- data/lib/active_admin/resource.rb +168 -0
- data/lib/active_admin/resource/action_items.rb +108 -0
- data/lib/active_admin/resource/belongs_to.rb +44 -0
- data/lib/active_admin/resource/controllers.rb +19 -0
- data/lib/active_admin/resource/includes.rb +12 -0
- data/lib/active_admin/resource/menu.rb +64 -0
- data/lib/active_admin/resource/naming.rb +62 -0
- data/lib/active_admin/resource/page_presenters.rb +82 -0
- data/lib/active_admin/resource/pagination.rb +23 -0
- data/lib/active_admin/resource/routes.rb +115 -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 +28 -0
- data/lib/active_admin/resource_collection.rb +72 -0
- data/lib/active_admin/resource_controller.rb +51 -0
- data/lib/active_admin/resource_controller/action_builder.rb +21 -0
- data/lib/active_admin/resource_controller/data_access.rb +317 -0
- data/lib/active_admin/resource_controller/decorators.rb +102 -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/streaming.rb +43 -0
- data/lib/active_admin/resource_dsl.rb +190 -0
- data/lib/active_admin/router.rb +106 -0
- data/lib/active_admin/scope.rb +56 -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.rb +19 -0
- data/lib/active_admin/view_helpers/active_admin_application_helper.rb +12 -0
- data/lib/active_admin/view_helpers/auto_link_helper.rb +45 -0
- data/lib/active_admin/view_helpers/breadcrumb_helper.rb +33 -0
- data/lib/active_admin/view_helpers/display_helper.rb +97 -0
- data/lib/active_admin/view_helpers/download_format_links_helper.rb +46 -0
- data/lib/active_admin/view_helpers/fields_for.rb +51 -0
- data/lib/active_admin/view_helpers/flash_helper.rb +14 -0
- data/lib/active_admin/view_helpers/form_helper.rb +20 -0
- data/lib/active_admin/view_helpers/method_or_proc_helper.rb +97 -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/views.rb +8 -0
- data/lib/active_admin/views/action_items.rb +17 -0
- data/lib/active_admin/views/components/active_admin_form.rb +124 -0
- data/lib/active_admin/views/components/attributes_table.rb +94 -0
- data/lib/active_admin/views/components/blank_slate.rb +17 -0
- data/lib/active_admin/views/components/columns.rb +161 -0
- data/lib/active_admin/views/components/dropdown_menu.rb +71 -0
- data/lib/active_admin/views/components/index_list.rb +68 -0
- data/lib/active_admin/views/components/paginated_collection.rb +163 -0
- data/lib/active_admin/views/components/panel.rb +38 -0
- data/lib/active_admin/views/components/scopes.rb +66 -0
- data/lib/active_admin/views/components/sidebar_section.rb +34 -0
- data/lib/active_admin/views/components/site_title.rb +55 -0
- data/lib/active_admin/views/components/status_tag.rb +80 -0
- data/lib/active_admin/views/components/table_for.rb +218 -0
- data/lib/active_admin/views/components/tabs.rb +28 -0
- data/lib/active_admin/views/components/unsupported_browser.rb +11 -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 +373 -0
- data/lib/active_admin/views/pages/base.rb +147 -0
- data/lib/active_admin/views/pages/form.rb +65 -0
- data/lib/active_admin/views/pages/index.rb +163 -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 +66 -0
- data/lib/active_admin/views/title_bar.rb +55 -0
- data/lib/activeadmin.rb +1 -0
- data/lib/generators/active_admin/assets/assets_generator.rb +14 -0
- data/lib/generators/active_admin/assets/templates/active_admin.js.coffee +1 -0
- data/lib/generators/active_admin/assets/templates/active_admin.scss +17 -0
- data/lib/generators/active_admin/devise/devise_generator.rb +65 -0
- data/lib/generators/active_admin/install/install_generator.rb +45 -0
- data/lib/generators/active_admin/install/templates/active_admin.rb.erb +272 -0
- data/lib/generators/active_admin/install/templates/admin_user.rb.erb +30 -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/page/USAGE +8 -0
- data/lib/generators/active_admin/page/page_generator.rb +12 -0
- data/lib/generators/active_admin/page/templates/page.rb +5 -0
- data/lib/generators/active_admin/resource/resource_generator.rb +20 -0
- data/lib/generators/active_admin/resource/templates/admin.rb +45 -0
- data/lib/ransack_ext.rb +20 -0
- data/script/local +53 -0
- data/script/travis_cache +107 -0
- data/script/use_rails +53 -0
- data/spec/javascripts/coffeescripts/jquery.aa.checkbox-toggler-spec.js.coffee +50 -0
- data/spec/javascripts/coffeescripts/jquery.aa.flash.js.coffee +25 -0
- data/spec/javascripts/coffeescripts/jquery.aa.table-checkbox-toggler-spec.js.coffee +34 -0
- data/spec/javascripts/fixtures/checkboxes.html +9 -0
- data/spec/javascripts/fixtures/flashes.html +2 -0
- data/spec/javascripts/fixtures/table_checkboxes.html +17 -0
- data/spec/javascripts/helpers/SpecHelper.js +3 -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/rails_helper.rb +161 -0
- data/spec/requests/default_namespace_spec.rb +61 -0
- data/spec/requests/javascript_spec.rb +22 -0
- data/spec/requests/memory_spec.rb +21 -0
- data/spec/requests/stylesheets_spec.rb +18 -0
- data/spec/spec_helper.rb +17 -0
- data/spec/support/active_admin_request_helpers.rb +27 -0
- data/spec/support/deferred_garbage_collection.rb +19 -0
- data/spec/support/detect_rails_version.rb +34 -0
- data/spec/support/jslint.yml +80 -0
- data/spec/support/rails_template.rb +162 -0
- data/spec/support/rails_template_with_data.rb +74 -0
- data/spec/support/templates/admin/stores.rb +9 -0
- data/spec/support/templates/en.yml +8 -0
- data/spec/support/templates/manifest.js +3 -0
- data/spec/support/templates/policies/active_admin/comment_policy.rb +9 -0
- data/spec/support/templates/policies/active_admin/page_policy.rb +18 -0
- data/spec/support/templates/policies/admin_user_policy.rb +11 -0
- data/spec/support/templates/policies/application_policy.rb +45 -0
- data/spec/support/templates/policies/category_policy.rb +7 -0
- data/spec/support/templates/policies/post_policy.rb +15 -0
- data/spec/support/templates/policies/store_policy.rb +11 -0
- data/spec/support/templates/policies/user_policy.rb +11 -0
- data/spec/support/templates/post_decorator.rb +11 -0
- data/spec/unit/abstract_view_factory_spec.rb +79 -0
- data/spec/unit/action_builder_spec.rb +134 -0
- data/spec/unit/active_admin_spec.rb +11 -0
- data/spec/unit/application_spec.rb +165 -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/authorization/index_overriding_spec.rb +23 -0
- data/spec/unit/auto_link_spec.rb +69 -0
- data/spec/unit/batch_actions/resource_spec.rb +97 -0
- data/spec/unit/batch_actions/settings_spec.rb +61 -0
- data/spec/unit/belongs_to_spec.rb +65 -0
- data/spec/unit/cancan_adapter_spec.rb +43 -0
- data/spec/unit/comments_spec.rb +188 -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 +41 -0
- data/spec/unit/csv_builder_spec.rb +303 -0
- data/spec/unit/dependency_spec.rb +135 -0
- data/spec/unit/devise_spec.rb +96 -0
- data/spec/unit/dsl_spec.rb +122 -0
- data/spec/unit/filters/filter_form_builder_spec.rb +434 -0
- data/spec/unit/filters/humanized_spec.rb +64 -0
- data/spec/unit/filters/resource_spec.rb +128 -0
- data/spec/unit/form_builder_spec.rb +932 -0
- data/spec/unit/generators/install_spec.rb +24 -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/i18n_spec.rb +12 -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 +73 -0
- data/spec/unit/namespace/register_resource_spec.rb +160 -0
- data/spec/unit/namespace_spec.rb +103 -0
- data/spec/unit/order_clause_spec.rb +81 -0
- data/spec/unit/page_controller_spec.rb +5 -0
- data/spec/unit/page_spec.rb +78 -0
- data/spec/unit/pretty_format_spec.rb +77 -0
- data/spec/unit/pundit_adapter_spec.rb +98 -0
- data/spec/unit/resource/action_items_spec.rb +65 -0
- data/spec/unit/resource/includes_spec.rb +21 -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 +77 -0
- data/spec/unit/resource/scopes_spec.rb +50 -0
- data/spec/unit/resource/sidebars_spec.rb +43 -0
- data/spec/unit/resource_collection_spec.rb +175 -0
- data/spec/unit/resource_controller/data_access_spec.rb +140 -0
- data/spec/unit/resource_controller/decorators_spec.rb +94 -0
- data/spec/unit/resource_controller/sidebars_spec.rb +38 -0
- data/spec/unit/resource_controller_spec.rb +269 -0
- data/spec/unit/resource_registration_spec.rb +56 -0
- data/spec/unit/resource_spec.rb +337 -0
- data/spec/unit/routing_spec.rb +185 -0
- data/spec/unit/scope_spec.rb +185 -0
- data/spec/unit/settings_spec.rb +118 -0
- data/spec/unit/view_factory_spec.rb +19 -0
- data/spec/unit/view_helpers/breadcrumbs_spec.rb +217 -0
- data/spec/unit/view_helpers/display_helper_spec.rb +165 -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/flash_helper_spec.rb +25 -0
- data/spec/unit/view_helpers/form_helper_spec.rb +43 -0
- data/spec/unit/view_helpers/method_or_proc_helper_spec.rb +139 -0
- data/spec/unit/views/components/attributes_table_spec.rb +272 -0
- data/spec/unit/views/components/batch_action_selector_spec.rb +43 -0
- data/spec/unit/views/components/blank_slate_spec.rb +27 -0
- data/spec/unit/views/components/columns_spec.rb +189 -0
- data/spec/unit/views/components/index_list_spec.rb +35 -0
- data/spec/unit/views/components/index_table_for_spec.rb +127 -0
- data/spec/unit/views/components/paginated_collection_spec.rb +249 -0
- data/spec/unit/views/components/panel_spec.rb +58 -0
- data/spec/unit/views/components/sidebar_section_spec.rb +68 -0
- data/spec/unit/views/components/site_title_spec.rb +78 -0
- data/spec/unit/views/components/status_tag_spec.rb +249 -0
- data/spec/unit/views/components/table_for_spec.rb +434 -0
- data/spec/unit/views/components/tabs_spec.rb +39 -0
- data/spec/unit/views/components/unsupported_browser_spec.rb +41 -0
- data/spec/unit/views/index_as_blog_spec.rb +76 -0
- data/spec/unit/views/pages/form_spec.rb +51 -0
- data/spec/unit/views/pages/index_spec.rb +60 -0
- data/spec/unit/views/pages/layout_spec.rb +59 -0
- data/spec/unit/views/pages/show_spec.rb +33 -0
- data/spec/unit/views/tabbed_navigation_spec.rb +158 -0
- data/tasks/docs.rake +37 -0
- data/tasks/parallel_tests.rake +66 -0
- data/tasks/test.rake +91 -0
- data/tasks/yard.rake +9 -0
- metadata +974 -0
|
@@ -0,0 +1,119 @@
|
|
|
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: "Créer %{model}"
|
|
12
|
+
edit_model: "Modifier %{model}"
|
|
13
|
+
delete_model: "Supprimer %{model}"
|
|
14
|
+
details: "Détails de %{model}"
|
|
15
|
+
cancel: "Annuler"
|
|
16
|
+
empty: "Vide"
|
|
17
|
+
previous: "Précédent"
|
|
18
|
+
next: "Suivant"
|
|
19
|
+
download: "Télécharger :"
|
|
20
|
+
has_many_new: "Ajouter un nouveau %{model}"
|
|
21
|
+
has_many_delete: "Supprimer"
|
|
22
|
+
has_many_remove: "Enlever"
|
|
23
|
+
filters:
|
|
24
|
+
buttons:
|
|
25
|
+
filter: "Filtrer"
|
|
26
|
+
clear: "Supprimer les filtres"
|
|
27
|
+
predicates:
|
|
28
|
+
contains: "Contient"
|
|
29
|
+
equals: "Égal à"
|
|
30
|
+
starts_with: "Commence par"
|
|
31
|
+
ends_with: "Se termine par"
|
|
32
|
+
greater_than: "Plus grand que"
|
|
33
|
+
less_than: "Plus petit que"
|
|
34
|
+
search_status:
|
|
35
|
+
headline: "Statut de la recherche :"
|
|
36
|
+
current_scope: "Etendu du filtre :"
|
|
37
|
+
current_filters: "Filtres actuels :"
|
|
38
|
+
no_current_filters: "Aucun filtres"
|
|
39
|
+
status_tag:
|
|
40
|
+
"yes": "Oui"
|
|
41
|
+
"no": "Non"
|
|
42
|
+
main_content: "Veuillez implémenter %{model}#main_content pour afficher le contenu."
|
|
43
|
+
logout: "Déconnexion"
|
|
44
|
+
powered_by: "Propulsé par %{active_admin} %{version}"
|
|
45
|
+
sidebars:
|
|
46
|
+
filters: "Filtres"
|
|
47
|
+
search_status: "Statut de la recherche"
|
|
48
|
+
pagination:
|
|
49
|
+
empty: "Aucun %{model} trouvé"
|
|
50
|
+
one: "Affichage de <b>1</b> %{model}"
|
|
51
|
+
one_page: "Affichage des <b>%{n}</b> %{model}"
|
|
52
|
+
multiple: "Affichage de %{model} <b>%{from} - %{to}</b> sur un total de <b>%{total}</b>"
|
|
53
|
+
multiple_without_total: "Affichage de %{model} <b>%{from} - %{to}</b>"
|
|
54
|
+
entry:
|
|
55
|
+
one: "entrée"
|
|
56
|
+
other: "entrées"
|
|
57
|
+
any: "N'importe lequel"
|
|
58
|
+
blank_slate:
|
|
59
|
+
content: "Il n'y a pas encore de %{resource_name}."
|
|
60
|
+
link: "Créez en un"
|
|
61
|
+
dropdown_actions:
|
|
62
|
+
button_label: "Actions"
|
|
63
|
+
batch_actions:
|
|
64
|
+
button_label: "Actions groupées"
|
|
65
|
+
default_confirmation: "Êtes-vous sûr de vouloir faire cela ?"
|
|
66
|
+
delete_confirmation: "Êtes-vous sûr de vouloir supprimer ces %{plural_model} ?"
|
|
67
|
+
succesfully_destroyed:
|
|
68
|
+
one: "1 %{model} supprimé"
|
|
69
|
+
other: "%{count} %{plural_model} supprimés"
|
|
70
|
+
selection_toggle_explanation: "(Inverser la sélection)"
|
|
71
|
+
link: "Créer un"
|
|
72
|
+
action_label: "%{title} les éléments sélectionnés"
|
|
73
|
+
labels:
|
|
74
|
+
destroy: "Supprimer"
|
|
75
|
+
comments:
|
|
76
|
+
body: "Corps"
|
|
77
|
+
author: "Auteur"
|
|
78
|
+
title: "Commentaire"
|
|
79
|
+
add: "Ajouter un commentaire"
|
|
80
|
+
resource: "Ressource"
|
|
81
|
+
resource_type: "Type de ressource"
|
|
82
|
+
author_type: "Profil de l'auteur"
|
|
83
|
+
no_comments_yet: "Aucun commentaire actuellement"
|
|
84
|
+
title_content: "Commentaires (%{count})"
|
|
85
|
+
errors:
|
|
86
|
+
empty_text: "Le commentaire n'a pas été enregistré puisque le texte était vide."
|
|
87
|
+
devise:
|
|
88
|
+
username:
|
|
89
|
+
title: "Nom d'utilisateur"
|
|
90
|
+
email:
|
|
91
|
+
title: "Email"
|
|
92
|
+
subdomain:
|
|
93
|
+
title: "Sous-domaine"
|
|
94
|
+
password:
|
|
95
|
+
title: "Mot de passe"
|
|
96
|
+
login:
|
|
97
|
+
title: "Connexion"
|
|
98
|
+
remember_me: "Garder ma session ouverte"
|
|
99
|
+
submit: "Se connecter"
|
|
100
|
+
reset_password:
|
|
101
|
+
title: "Vous avez oublié votre mot de passe ?"
|
|
102
|
+
submit: "Réinitialiser mon mot de passe"
|
|
103
|
+
change_password:
|
|
104
|
+
title: "Changez votre mot de passe"
|
|
105
|
+
submit: "Changer mon mot de passe"
|
|
106
|
+
resend_confirmation_instructions:
|
|
107
|
+
title: "Renvoyer les instructions de confirmation"
|
|
108
|
+
submit: "Renvoyer les instructions de confirmation"
|
|
109
|
+
links:
|
|
110
|
+
sign_in: "Connectez-vous"
|
|
111
|
+
forgot_your_password: "Vous avez oublié votre mot de passe ?"
|
|
112
|
+
sign_in_with_omniauth_provider: "Connectez-vous avec %{provider}"
|
|
113
|
+
access_denied:
|
|
114
|
+
message: "Vous n'êtes pas autorisé à exécuter cette action"
|
|
115
|
+
index_list:
|
|
116
|
+
table: "Tableau"
|
|
117
|
+
block: "Liste"
|
|
118
|
+
grid: "Grille"
|
|
119
|
+
blog: "Blog"
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
he:
|
|
2
|
+
active_admin:
|
|
3
|
+
dashboard: פנל ניהול
|
|
4
|
+
dashboard_welcome:
|
|
5
|
+
welcome: "ברוכים הבאים לאקטיב אדמין. זהו פנל הניהול"
|
|
6
|
+
call_to_action: "כדי להוסיף אזורים בפנל הניהול, אנא בדוק את, 'app/admin/dashboard.rb'"
|
|
7
|
+
view: "צפייה"
|
|
8
|
+
edit: "עריכה"
|
|
9
|
+
delete: "מחיקה"
|
|
10
|
+
delete_confirmation: "האם אתה בטוח שאתה רוצה למחוק את זה?"
|
|
11
|
+
new_model: "%{model} חדש"
|
|
12
|
+
edit_model: "ערוך %{model}"
|
|
13
|
+
delete_model: "מחיקת %{model}"
|
|
14
|
+
details: "פרטים על %{model}"
|
|
15
|
+
cancel: "ביטול"
|
|
16
|
+
empty: "ריק"
|
|
17
|
+
previous: "הקודם"
|
|
18
|
+
next: "הבא"
|
|
19
|
+
download: "הורד:"
|
|
20
|
+
has_many_new: "הוספת %{model} חדש"
|
|
21
|
+
has_many_delete: "מחיקה"
|
|
22
|
+
has_many_remove: "להסיר"
|
|
23
|
+
filters:
|
|
24
|
+
buttons:
|
|
25
|
+
filter: "סינון"
|
|
26
|
+
clear: "איפוס שדות"
|
|
27
|
+
predicates:
|
|
28
|
+
contains: "מכיל"
|
|
29
|
+
equals: "שווה ל"
|
|
30
|
+
starts_with: "מתחיל עם"
|
|
31
|
+
ends_with: "מסתיים ב"
|
|
32
|
+
greater_than: "גדול מ"
|
|
33
|
+
less_than: "פחות מ"
|
|
34
|
+
status_tag:
|
|
35
|
+
"yes": "כן"
|
|
36
|
+
"no": "לא"
|
|
37
|
+
main_content: "Please implement %{model}#main_content to display content."
|
|
38
|
+
logout: "התנתקות"
|
|
39
|
+
powered_by: "Powered by %{active_admin} %{version}"
|
|
40
|
+
sidebars:
|
|
41
|
+
filters: "סינון"
|
|
42
|
+
pagination:
|
|
43
|
+
empty: "אין %{model} בנמצא"
|
|
44
|
+
one: "מציג <b>1</b> %{model}"
|
|
45
|
+
one_page: "הצגת <b>כל %{n}</b> %{model}"
|
|
46
|
+
multiple: "מציג %{model} <b>%{from} - %{to}</b> מתוך <b>%{total}</b> בסך הכל"
|
|
47
|
+
multiple_without_total: "מציג %{model} <b>%{from} - %{to}</b>"
|
|
48
|
+
entry:
|
|
49
|
+
one: "רשומה בודדה"
|
|
50
|
+
other: "רשומות"
|
|
51
|
+
any: "Any"
|
|
52
|
+
blank_slate:
|
|
53
|
+
content: "כרגע אין עוד אף %{resource_name}."
|
|
54
|
+
link: "צור אחד"
|
|
55
|
+
dropdown_actions:
|
|
56
|
+
button_label: "פעולו"
|
|
57
|
+
batch_actions:
|
|
58
|
+
button_label: "פעולות מרובות"
|
|
59
|
+
default_confirmation: "אתה בטוח שאתה רוצה לעשות את זה?"
|
|
60
|
+
delete_confirmation: "האם הנך בטוח שאתה רוצה למרוח את %{plural_model}?"
|
|
61
|
+
succesfully_destroyed:
|
|
62
|
+
one: "1 %{model} נמחק בהצלחה"
|
|
63
|
+
few: "%{count} %{plural_model} נמחק בהצלחה"
|
|
64
|
+
many: "%{count} %{plural_model} נמחק בהצלחה"
|
|
65
|
+
other: "%{count} %{plural_model} נמחק בהצלחה"
|
|
66
|
+
selection_toggle_explanation: "(שינוי בחירה)"
|
|
67
|
+
link: "צור"
|
|
68
|
+
action_label: "%{title} נבחר"
|
|
69
|
+
labels:
|
|
70
|
+
destroy: "מחק"
|
|
71
|
+
comments:
|
|
72
|
+
body: "תוכן"
|
|
73
|
+
author: 'נוצר ע"י'
|
|
74
|
+
title: "תגובה"
|
|
75
|
+
add: "הוסף תגובה"
|
|
76
|
+
resource: "Resource"
|
|
77
|
+
no_comments_yet: "אין עדיין תגובות."
|
|
78
|
+
title_content: "תגובות (%{count})"
|
|
79
|
+
errors:
|
|
80
|
+
empty_text: "התגובה לא נשמרה, שדה התוכן ריק."
|
|
81
|
+
devise:
|
|
82
|
+
login:
|
|
83
|
+
title: "כניסה"
|
|
84
|
+
remember_me: "זכור אותי"
|
|
85
|
+
submit: "הכנס"
|
|
86
|
+
reset_password:
|
|
87
|
+
title: "שכחת סיסמא?"
|
|
88
|
+
submit: "אפס את הסיסמא שלי"
|
|
89
|
+
change_password:
|
|
90
|
+
title: "שנה את הסיסמא שלך"
|
|
91
|
+
submit: "שנה את הסיסמא שלי"
|
|
92
|
+
links:
|
|
93
|
+
sign_in: "כניסה"
|
|
94
|
+
forgot_your_password: "שכחת את הסיסמא שלך?"
|
|
95
|
+
sign_in_with_omniauth_provider: "%{provider} היכנס עם"
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
hr:
|
|
2
|
+
active_admin:
|
|
3
|
+
dashboard: "Upravljačka ploča"
|
|
4
|
+
dashboard_welcome:
|
|
5
|
+
welcome: "Dobrodošli u Active Admin. Ovo je početna upravljačka ploča."
|
|
6
|
+
call_to_action: "Da biste dodali nove odjeljke na upravljačku ploču, pogledajte 'app/admin/dashboard.rb'"
|
|
7
|
+
view: "Pregledaj"
|
|
8
|
+
edit: "Uredi"
|
|
9
|
+
delete: "Obriši"
|
|
10
|
+
delete_confirmation: "Jeste li sigurni da želite ovo obrisati?"
|
|
11
|
+
new_model: "Novi %{model}"
|
|
12
|
+
edit_model: "Uredi %{model}"
|
|
13
|
+
delete_model: "Obriši %{model}"
|
|
14
|
+
details: "%{model} detalji"
|
|
15
|
+
cancel: "Odustani"
|
|
16
|
+
empty: "Prazno"
|
|
17
|
+
previous: "Prijašnji"
|
|
18
|
+
next: "Sljedeći"
|
|
19
|
+
download: "Spremi na računalo:"
|
|
20
|
+
has_many_new: "Dodaj novi %{model}"
|
|
21
|
+
has_many_delete: "Obriši"
|
|
22
|
+
has_many_remove: "Ukloniti"
|
|
23
|
+
filters:
|
|
24
|
+
buttons:
|
|
25
|
+
filter: "Filtriraj"
|
|
26
|
+
clear: "Očisti filtere"
|
|
27
|
+
predicates:
|
|
28
|
+
contains: "Sadrži"
|
|
29
|
+
equals: "Jednako"
|
|
30
|
+
starts_with: "počinje s"
|
|
31
|
+
ends_with: "Završava sa"
|
|
32
|
+
greater_than: "Veće od"
|
|
33
|
+
less_than: "Manje od"
|
|
34
|
+
status_tag:
|
|
35
|
+
"yes": "Da"
|
|
36
|
+
"no": "Nema"
|
|
37
|
+
main_content: "Molim Vas, implementirajte %{model}#main_content da biste prikazali sadržaj."
|
|
38
|
+
logout: "Odjavi se"
|
|
39
|
+
powered_by: "Powered by %{active_admin} %{version}"
|
|
40
|
+
sidebars:
|
|
41
|
+
filters: "Filtriranje"
|
|
42
|
+
pagination:
|
|
43
|
+
empty: "Nije pronađen niti jedan %{model}."
|
|
44
|
+
one: "Prikazan <b>1</b> %{model}"
|
|
45
|
+
one_page: "Prikazano <b>svih %{n}</b> %{model}"
|
|
46
|
+
multiple: "Prikazani %{model} <b>%{from} - %{to}</b> od ukupno <b>%{total}</b>"
|
|
47
|
+
multiple_without_total: "Prikazani %{model} <b>%{from} - %{to}</b>"
|
|
48
|
+
entry:
|
|
49
|
+
one: "zapis"
|
|
50
|
+
few: "zapisa"
|
|
51
|
+
many: "zapisa"
|
|
52
|
+
other: "zapisa"
|
|
53
|
+
any: "Bilo koji"
|
|
54
|
+
blank_slate:
|
|
55
|
+
content: "Još uvijek ne postoji niti jedan zapis tipa %{resource_name}."
|
|
56
|
+
link: "Izradi jedan"
|
|
57
|
+
dropdown_actions:
|
|
58
|
+
button_label: "Ukrepi"
|
|
59
|
+
batch_actions:
|
|
60
|
+
button_label: "Grupne akcije"
|
|
61
|
+
default_confirmation: "Jeste li sigurni da želite to učiniti?"
|
|
62
|
+
delete_confirmation: "Jeste li sigurni da želite obrisati %{plural_model}?"
|
|
63
|
+
succesfully_destroyed:
|
|
64
|
+
one: "Uspješno je obrisan 1 %{model}"
|
|
65
|
+
few: "Uspješno su obrisana %{count} %{plural_model}"
|
|
66
|
+
many: "Uspješno je obrisano %{count} %{plural_model}"
|
|
67
|
+
other: "Uspješno je obrisano %{count} %{plural_model}"
|
|
68
|
+
selection_toggle_explanation: "(Izmijeni odabir)"
|
|
69
|
+
link: "Izradi jedan"
|
|
70
|
+
action_label: "%{title} označene"
|
|
71
|
+
labels:
|
|
72
|
+
destroy: "Obriši"
|
|
73
|
+
comments:
|
|
74
|
+
resource_type: "Tip objekta"
|
|
75
|
+
author_type: "Tip autora"
|
|
76
|
+
body: "Sadržaj"
|
|
77
|
+
author: "Autor"
|
|
78
|
+
title: "Komentar"
|
|
79
|
+
add: "Dodaj komentar"
|
|
80
|
+
resource: "Objekt"
|
|
81
|
+
no_comments_yet: "Još nema komentara."
|
|
82
|
+
author_missing: "Anoniman"
|
|
83
|
+
title_content: "Komentari (%{count})"
|
|
84
|
+
errors:
|
|
85
|
+
empty_text: "Komentar nije spremljen, sadržaj je prazan."
|
|
86
|
+
devise:
|
|
87
|
+
username:
|
|
88
|
+
title: "Korisničko ime"
|
|
89
|
+
email:
|
|
90
|
+
title: "Email"
|
|
91
|
+
subdomain:
|
|
92
|
+
title: "Poddomena"
|
|
93
|
+
password:
|
|
94
|
+
title: "Lozinka"
|
|
95
|
+
sign_up:
|
|
96
|
+
title: "Registracija"
|
|
97
|
+
submit: "Registruj"
|
|
98
|
+
login:
|
|
99
|
+
title: "Prijava"
|
|
100
|
+
remember_me: "Zapamti me"
|
|
101
|
+
submit: "Prijavi se"
|
|
102
|
+
reset_password:
|
|
103
|
+
title: "Zaboravljena lozinka?"
|
|
104
|
+
submit: "Resetiraj lozinku"
|
|
105
|
+
change_password:
|
|
106
|
+
title: "Izmjena lozinke"
|
|
107
|
+
submit: "Izmijeni lozinku"
|
|
108
|
+
unlock:
|
|
109
|
+
title: "Ponovno slanje uputstva za otključavanje"
|
|
110
|
+
submit: "Pošalji"
|
|
111
|
+
resend_confirmation_instructions:
|
|
112
|
+
title: "Ponovno slanje uputstva za potvrdu"
|
|
113
|
+
submit: "Pošalji"
|
|
114
|
+
links:
|
|
115
|
+
sign_in: "Prijavi se"
|
|
116
|
+
forgot_your_password: "Zaboravljena lozinka?"
|
|
117
|
+
sign_in_with_omniauth_provider: "Prijavite se za %{provider}"
|
|
118
|
+
access_denied:
|
|
119
|
+
message: "Nemaš dopuštenja."
|
|
120
|
+
index_list:
|
|
121
|
+
table: "Tabela"
|
|
122
|
+
block: "Lista"
|
|
123
|
+
grid: "Rešetka"
|
|
124
|
+
blog: "Blog"
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
hu:
|
|
2
|
+
active_admin:
|
|
3
|
+
dashboard: Vezérlőpult
|
|
4
|
+
dashboard_welcome:
|
|
5
|
+
welcome: "Üdvözöljük az Active Admin felületén. Ez a vezérlőpult kezdőlapja"
|
|
6
|
+
call_to_action: "Elemek hozzáadásához nézze meg a 'app/admin/dashboard.rb' fájlt"
|
|
7
|
+
view: "Megtekintés"
|
|
8
|
+
edit: "Szerkesztés"
|
|
9
|
+
delete: "Törlés"
|
|
10
|
+
delete_confirmation: "Biztosan törli ezt az elemet?"
|
|
11
|
+
new_model: "Új %{model}"
|
|
12
|
+
edit_model: "%{model} módosítása"
|
|
13
|
+
delete_model: "%{model} törlése"
|
|
14
|
+
details: "%{model} részletei"
|
|
15
|
+
cancel: "Mégsem"
|
|
16
|
+
empty: "Üres"
|
|
17
|
+
previous: "Előző"
|
|
18
|
+
next: "Következő"
|
|
19
|
+
download: "Letöltés:"
|
|
20
|
+
has_many_new: "Új %{model} hozzáadása"
|
|
21
|
+
has_many_delete: "Törlés"
|
|
22
|
+
has_many_remove: "Eltávolít"
|
|
23
|
+
filters:
|
|
24
|
+
buttons:
|
|
25
|
+
filter: "Szűrés"
|
|
26
|
+
clear: "Feltételek törlése"
|
|
27
|
+
predicates:
|
|
28
|
+
contains: "Tartalmazza"
|
|
29
|
+
equals: "Pontosan"
|
|
30
|
+
starts_with: "kezdődik"
|
|
31
|
+
ends_with: "végződik"
|
|
32
|
+
greater_than: "Nagyobb, mint"
|
|
33
|
+
less_than: "Kisebb, mint"
|
|
34
|
+
status_tag:
|
|
35
|
+
"yes": "Igen"
|
|
36
|
+
"no": "Nem"
|
|
37
|
+
main_content: "Kérem, implementálja a %{model}#main_content metódust a tartalom megjelenítéséhez."
|
|
38
|
+
logout: "Kilépés"
|
|
39
|
+
powered_by: "Powered by %{active_admin} %{version}"
|
|
40
|
+
sidebars:
|
|
41
|
+
filters: "Szűrők"
|
|
42
|
+
pagination:
|
|
43
|
+
empty: "Nincs több %{model}"
|
|
44
|
+
one: "<b>Egy</b> %{model} megjelenítése"
|
|
45
|
+
one_page: "<b>Az összes (%{n} db)</b> %{model} megjelenítése"
|
|
46
|
+
multiple: "%{model} listájának megjelenítése, <b>%{from} - %{to}</b>/<b>%{total}</b> "
|
|
47
|
+
multiple_without_total: "%{model} listájának megjelenítése, <b>%{from} - %{to}</b> "
|
|
48
|
+
entry:
|
|
49
|
+
one: "elem"
|
|
50
|
+
other: "elem"
|
|
51
|
+
any: "Összes"
|
|
52
|
+
blank_slate:
|
|
53
|
+
content: "Még nincs létrehozva %{resource_name}."
|
|
54
|
+
link: "Létrehozás most"
|
|
55
|
+
dropdown_actions:
|
|
56
|
+
button_label: "Műveletek"
|
|
57
|
+
batch_actions:
|
|
58
|
+
button_label: "Tömeges műveletek"
|
|
59
|
+
default_confirmation: "Biztos vagy benne, hogy a ön akar-hoz csinál ez?"
|
|
60
|
+
delete_confirmation: "Biztosan törli ezeket a %{plural_model}?"
|
|
61
|
+
succesfully_destroyed:
|
|
62
|
+
one: "1 %{model} sikeresen törölve"
|
|
63
|
+
other: "%{count} %{plural_model} sikeresen törölve"
|
|
64
|
+
selection_toggle_explanation: "(Kijelölés megfordítása)"
|
|
65
|
+
link: "Létrehozás"
|
|
66
|
+
action_label: "%{title} kiválasztva"
|
|
67
|
+
labels:
|
|
68
|
+
destroy: "Törlés"
|
|
69
|
+
comments:
|
|
70
|
+
body: "Törzs"
|
|
71
|
+
author: "Szerző"
|
|
72
|
+
title: "Hozzászólás"
|
|
73
|
+
add: "Új hozzászólás"
|
|
74
|
+
resource: "Erőforrás"
|
|
75
|
+
no_comments_yet: "Nincsenek hozzászólások."
|
|
76
|
+
title_content: "%{count} hozzászólás"
|
|
77
|
+
errors:
|
|
78
|
+
empty_text: "A hozzászólás nem lett mentve, a törzs nem lehet üres."
|
|
79
|
+
devise:
|
|
80
|
+
login:
|
|
81
|
+
title: "Bejelentkezés"
|
|
82
|
+
remember_me: "Emlékezz rám"
|
|
83
|
+
submit: "Belépés"
|
|
84
|
+
reset_password:
|
|
85
|
+
title: "Elfelejtette a jelszavát?"
|
|
86
|
+
submit: "Jelszó visszaállítása"
|
|
87
|
+
change_password:
|
|
88
|
+
title: "A jelszó módosítása"
|
|
89
|
+
submit: "Jelszó módosítása"
|
|
90
|
+
unlock:
|
|
91
|
+
title: "Újraküldés unlock utasítások"
|
|
92
|
+
submit: "Újraküldés unlock utasítások"
|
|
93
|
+
resend_confirmation_instructions:
|
|
94
|
+
title: "Megerősítő levél újraküldése"
|
|
95
|
+
submit: "Megerősítő levél újraküldése"
|
|
96
|
+
links:
|
|
97
|
+
sign_in: "Bejelentkezés"
|
|
98
|
+
forgot_your_password: "Elfelejtette a jelszavát?"
|
|
99
|
+
sign_in_with_omniauth_provider: "Jelentkezzen be a %{provider}"
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
id:
|
|
2
|
+
active_admin:
|
|
3
|
+
dashboard: Dashboard
|
|
4
|
+
dashboard_welcome:
|
|
5
|
+
welcome: "Selamat datang di Active Admin. Ini adalah tampilan standar halaman dashboard."
|
|
6
|
+
call_to_action: "Tampilan halaman ini bisa diubah di file 'app/admin/dashboard.rb'"
|
|
7
|
+
view: "Lihat"
|
|
8
|
+
edit: "Ubah"
|
|
9
|
+
delete: "Hapus"
|
|
10
|
+
delete_confirmation: "Apakah anda yakin ingin menghapus data ini?"
|
|
11
|
+
new_model: "Tambah %{model} baru"
|
|
12
|
+
edit_model: "Ubah %{model}"
|
|
13
|
+
delete_model: "Hapus %{model}"
|
|
14
|
+
details: "Detail %{model}"
|
|
15
|
+
cancel: "Batal"
|
|
16
|
+
empty: "Kosong"
|
|
17
|
+
previous: "Sebelumnya"
|
|
18
|
+
next: "Berikutnya"
|
|
19
|
+
download: "Unduh:"
|
|
20
|
+
has_many_new: "Tambah %{model} baru"
|
|
21
|
+
has_many_delete: "Hapus"
|
|
22
|
+
has_many_remove: "Hapus"
|
|
23
|
+
filters:
|
|
24
|
+
buttons:
|
|
25
|
+
filter: "Filter"
|
|
26
|
+
clear: "Hapus Filters"
|
|
27
|
+
predicates:
|
|
28
|
+
contains: "Mengandung"
|
|
29
|
+
equals: "Sama dengan"
|
|
30
|
+
starts_with: "Diawali dengan"
|
|
31
|
+
ends_with: "Diakhiri dengan"
|
|
32
|
+
greater_than: "Lebih besar dari"
|
|
33
|
+
less_than: "Lebih kecil dari"
|
|
34
|
+
search_status:
|
|
35
|
+
headline: "Status Pencarian:"
|
|
36
|
+
current_scope: "Scope:"
|
|
37
|
+
current_filters: "Filter kini:"
|
|
38
|
+
no_current_filters: "Tidak ada"
|
|
39
|
+
status_tag:
|
|
40
|
+
"yes": "Ya"
|
|
41
|
+
"no": "Tidak"
|
|
42
|
+
main_content: "Harap mengimplementasikan %{model}#main_content untuk menampilkan konten."
|
|
43
|
+
logout: "Keluar"
|
|
44
|
+
powered_by: "Dibuat dengan %{active_admin} %{version}"
|
|
45
|
+
sidebars:
|
|
46
|
+
filters: "Filter"
|
|
47
|
+
search_status: "Status Pencarian"
|
|
48
|
+
pagination:
|
|
49
|
+
empty: "Tidak ada %{model} yang bisa ditemukan"
|
|
50
|
+
one: "Menampilkan <b>1</b> %{model}"
|
|
51
|
+
one_page: "Menampilkan <b>semua %{n}</b> %{model}"
|
|
52
|
+
multiple: "Menampilkan <b>%{from} - %{to}</b> dari <b>%{total}</b> keseluruhan %{model}"
|
|
53
|
+
multiple_without_total: "Menampilkan <b>%{from} - %{to} %{model}</b>"
|
|
54
|
+
entry:
|
|
55
|
+
one: "data"
|
|
56
|
+
other: "data"
|
|
57
|
+
any: "Apapun"
|
|
58
|
+
blank_slate:
|
|
59
|
+
content: "%{resource_name} masih belum ada sama sekali."
|
|
60
|
+
link: "Tambah data"
|
|
61
|
+
dropdown_actions:
|
|
62
|
+
button_label: "Tindakan"
|
|
63
|
+
batch_actions:
|
|
64
|
+
button_label: "Tindakan Serentak"
|
|
65
|
+
default_confirmation: "Apakah anda yakin akan melakukan ini?"
|
|
66
|
+
delete_confirmation: "Apakah anda yakin akan menghapus %{plural_model}?"
|
|
67
|
+
succesfully_destroyed:
|
|
68
|
+
one: "Berhasil menghapus %{model}"
|
|
69
|
+
other: "Berhasil menghapus %{count} %{plural_model}"
|
|
70
|
+
selection_toggle_explanation: "(Tampilkan Pilihan)"
|
|
71
|
+
link: "Tambah data"
|
|
72
|
+
action_label: "%{title} terpilih"
|
|
73
|
+
labels:
|
|
74
|
+
destroy: "Hapus"
|
|
75
|
+
comments:
|
|
76
|
+
created_at: "Dibuat"
|
|
77
|
+
resource_type: "Jenis Resource"
|
|
78
|
+
author_type: "Tipe Penulis"
|
|
79
|
+
body: "Isi"
|
|
80
|
+
author: "Penulis"
|
|
81
|
+
title: "Komentar"
|
|
82
|
+
add: "Tambah Komentar"
|
|
83
|
+
delete: "Hapus Komentar"
|
|
84
|
+
delete_confirmation: "Apakah anda yakin akan menghapus komentar tersebut?"
|
|
85
|
+
resource: "Resource"
|
|
86
|
+
no_comments_yet: "Belum ada komentar sama sekali."
|
|
87
|
+
author_missing: "Anonim"
|
|
88
|
+
title_content: "Komentar (%{count})"
|
|
89
|
+
errors:
|
|
90
|
+
empty_text: "Komentar tak bisa disimpan, text tidak boleh dikosongi."
|
|
91
|
+
devise:
|
|
92
|
+
username:
|
|
93
|
+
title: "Username"
|
|
94
|
+
email:
|
|
95
|
+
title: "Email"
|
|
96
|
+
subdomain:
|
|
97
|
+
title: "Subdomain"
|
|
98
|
+
password:
|
|
99
|
+
title: "Password"
|
|
100
|
+
sign_up:
|
|
101
|
+
title: " - Daftar"
|
|
102
|
+
submit: "Daftar"
|
|
103
|
+
login:
|
|
104
|
+
title: " - Masuk"
|
|
105
|
+
remember_me: "Ingat saya"
|
|
106
|
+
submit: "Masuk"
|
|
107
|
+
reset_password:
|
|
108
|
+
title: " - Form Atur Ulang Password"
|
|
109
|
+
submit: "Atur ulang password"
|
|
110
|
+
change_password:
|
|
111
|
+
title: " - Atur Ulang Password"
|
|
112
|
+
submit: "Kirimkan instruksi pengaturan ulang password"
|
|
113
|
+
unlock:
|
|
114
|
+
title: " - Kirim Instruksi Pengaktifan Kembali Akun"
|
|
115
|
+
submit: "Kirimkan instruksi pengaktifan kembali akun"
|
|
116
|
+
resend_confirmation_instructions:
|
|
117
|
+
title: " - Kirim Lagi Instruksi Konfirmasi Akun"
|
|
118
|
+
submit: "Kirimkan lagi instruksi konfirmasi akun"
|
|
119
|
+
links:
|
|
120
|
+
sign_up: "Daftar"
|
|
121
|
+
sign_in: "Masuk"
|
|
122
|
+
forgot_your_password: "Lupa password?"
|
|
123
|
+
sign_in_with_omniauth_provider: "Daftar melalui %{provider}"
|
|
124
|
+
resend_unlock_instructions: "Kirim instruksi pengaktifan kembali akun"
|
|
125
|
+
resend_confirmation_instructions: "Kirim lagi instruksi konfirmasi akun"
|
|
126
|
+
unsupported_browser:
|
|
127
|
+
headline: "Harap dicatat bahwa ActiveAdmin sudah tidak mendukung InternetExplorer versi 8 atau versi sebelum itu."
|
|
128
|
+
recommendation: "Kami sarankan agar anda mengupgrade ke versi <a href=\"http://windows.microsoft.com/ie\">Internet Explorer</a>, <a href=\"https://chrome.google.com/\">Google Chrome</a>, atau <a href=\"https://mozilla.org/firefox/\">Firefox</a> yang terbaru."
|
|
129
|
+
turn_off_compatibility_view: "Kalau anda menggunakan IE 9 atau yang lebih baru, pastikan anda <a href=\"http://windows.microsoft.com/en-US/windows7/webpages-look-incorrect-in-Internet-Explorer\">mematikan \"Compatibility View\"</a>."
|
|
130
|
+
access_denied:
|
|
131
|
+
message: "Anda tidak diperkenankan melakukan aksi tersebut."
|
|
132
|
+
index_list:
|
|
133
|
+
table: "Tabel"
|
|
134
|
+
block: "Daftar"
|
|
135
|
+
grid: "Grid"
|
|
136
|
+
blog: "Blog"
|