andrewroth_activeadmin 0.3.4
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.
- data/.document +5 -0
- data/.gitignore +35 -0
- data/.travis.yml +4 -0
- data/.yardopts +8 -0
- data/CHANGELOG.md +301 -0
- data/Gemfile +40 -0
- data/Guardfile +8 -0
- data/LICENSE +25 -0
- data/README.rdoc +113 -0
- data/Rakefile +18 -0
- data/activeadmin.gemspec +28 -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/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/base.js +12 -0
- data/app/assets/javascripts/active_admin/vendor.js +382 -0
- data/app/assets/stylesheets/active_admin/_base.css.scss +363 -0
- data/app/assets/stylesheets/active_admin/_forms.css.scss +259 -0
- data/app/assets/stylesheets/active_admin/_header.css.scss +121 -0
- data/app/assets/stylesheets/active_admin/_mixins.css.scss +1 -0
- data/app/assets/stylesheets/active_admin/_typography.css.scss +102 -0
- data/app/assets/stylesheets/active_admin/components/_comments.css.scss +43 -0
- data/app/assets/stylesheets/active_admin/components/_date_picker.css.scss +125 -0
- data/app/assets/stylesheets/active_admin/components/_flash_messages.css.scss +39 -0
- data/app/assets/stylesheets/active_admin/components/_tables.css.scss +68 -0
- data/app/assets/stylesheets/active_admin/mixins/_all.css.scss +10 -0
- data/app/assets/stylesheets/active_admin/mixins/_buttons.css.scss +27 -0
- data/app/assets/stylesheets/active_admin/mixins/_gradients.css.scss +29 -0
- data/app/assets/stylesheets/active_admin/mixins/_icons.css.scss +20 -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 +34 -0
- data/app/assets/stylesheets/active_admin/mixins/_shadows.css.scss +21 -0
- data/app/assets/stylesheets/active_admin/mixins/_utilities.scss +17 -0
- data/app/assets/stylesheets/active_admin/mixins/_variables.css.scss +21 -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 +16 -0
- data/app/views/active_admin/devise/passwords/new.html.erb +14 -0
- data/app/views/active_admin/devise/sessions/new.html.erb +18 -0
- data/app/views/active_admin/devise/shared/_links.erb +20 -0
- data/app/views/active_admin/devise/unlocks/new.html.erb +12 -0
- data/app/views/active_admin/resource/edit.html.arb +1 -0
- data/app/views/active_admin/resource/index.csv.erb +20 -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 +35 -0
- data/cucumber.yml +2 -0
- data/docs/0-installation.md +50 -0
- data/docs/1-general-configuration.md +43 -0
- data/docs/2-resource-customization.md +114 -0
- data/docs/3-index-pages.md +55 -0
- data/docs/3-index-pages/index-as-block.md +16 -0
- data/docs/3-index-pages/index-as-blog.md +61 -0
- data/docs/3-index-pages/index-as-grid.md +21 -0
- data/docs/3-index-pages/index-as-table.md +90 -0
- data/docs/4-csv-format.md +14 -0
- data/docs/5-forms.md +39 -0
- data/docs/6-show-screens.md +36 -0
- data/docs/7-sidebars.md +35 -0
- data/docs/8-custom-actions.md +123 -0
- data/features/comments/commenting.feature +112 -0
- data/features/comments/viewing_index.feature +19 -0
- data/features/dashboard.feature +26 -0
- data/features/edit_page.feature +106 -0
- data/features/first_boot.feature +16 -0
- data/features/global_navigation.feature +30 -0
- data/features/index/filters.feature +35 -0
- data/features/index/format_as_csv.feature +46 -0
- data/features/index/formats.feature +12 -0
- data/features/index/index_as_block.feature +15 -0
- data/features/index/index_as_blog.feature +50 -0
- data/features/index/index_as_grid.feature +45 -0
- data/features/index/index_as_table.feature +81 -0
- data/features/index/index_blank_slate.feature +56 -0
- data/features/index/index_scopes.feature +52 -0
- data/features/index/pagination.feature +17 -0
- data/features/menu.feature +37 -0
- data/features/new_page.feature +75 -0
- data/features/registering_assets.feature +35 -0
- data/features/registering_resources.feature +33 -0
- data/features/show/default_content.feature +43 -0
- data/features/show/page_title.feature +33 -0
- data/features/sidebar_sections.feature +127 -0
- data/features/specifying_actions.feature +87 -0
- data/features/step_definitions/action_item_steps.rb +7 -0
- data/features/step_definitions/additional_web_steps.rb +77 -0
- data/features/step_definitions/asset_steps.rb +7 -0
- data/features/step_definitions/attribute_steps.rb +13 -0
- data/features/step_definitions/comment_steps.rb +8 -0
- data/features/step_definitions/configuration_steps.rb +31 -0
- data/features/step_definitions/dashboard_steps.rb +11 -0
- data/features/step_definitions/factory_steps.rb +29 -0
- data/features/step_definitions/flash_steps.rb +3 -0
- data/features/step_definitions/format_steps.rb +35 -0
- data/features/step_definitions/index_scope_steps.rb +20 -0
- data/features/step_definitions/layout_steps.rb +3 -0
- data/features/step_definitions/menu_steps.rb +7 -0
- data/features/step_definitions/pagination_steps.rb +8 -0
- data/features/step_definitions/sidebar_steps.rb +7 -0
- data/features/step_definitions/tab_steps.rb +3 -0
- data/features/step_definitions/user_steps.rb +26 -0
- data/features/step_definitions/web_steps.rb +211 -0
- data/features/sti_resource.feature +61 -0
- data/features/support/env.rb +96 -0
- data/features/support/paths.rb +50 -0
- data/features/support/selectors.rb +45 -0
- data/features/users/logging_in.feature +34 -0
- data/features/users/logging_out.feature +13 -0
- data/lib/active_admin.rb +82 -0
- data/lib/active_admin/abstract_view_factory.rb +95 -0
- data/lib/active_admin/application.rb +231 -0
- data/lib/active_admin/arbre.rb +23 -0
- data/lib/active_admin/arbre/builder.rb +111 -0
- data/lib/active_admin/arbre/context.rb +45 -0
- data/lib/active_admin/arbre/core_extensions.rb +5 -0
- data/lib/active_admin/arbre/html/attributes.rb +20 -0
- data/lib/active_admin/arbre/html/class_list.rb +28 -0
- data/lib/active_admin/arbre/html/collection.rb +27 -0
- data/lib/active_admin/arbre/html/document.rb +42 -0
- data/lib/active_admin/arbre/html/element.rb +151 -0
- data/lib/active_admin/arbre/html/html5_elements.rb +47 -0
- data/lib/active_admin/arbre/html/tag.rb +137 -0
- data/lib/active_admin/arbre/html/text_node.rb +35 -0
- data/lib/active_admin/asset_registration.rb +34 -0
- data/lib/active_admin/callbacks.rb +89 -0
- data/lib/active_admin/comments.rb +88 -0
- data/lib/active_admin/comments/comment.rb +21 -0
- data/lib/active_admin/comments/configuration.rb +18 -0
- data/lib/active_admin/comments/namespace_helper.rb +14 -0
- data/lib/active_admin/comments/resource_helper.rb +17 -0
- data/lib/active_admin/comments/show_page_helper.rb +23 -0
- data/lib/active_admin/comments/views.rb +3 -0
- data/lib/active_admin/comments/views/active_admin_comment.rb +0 -0
- data/lib/active_admin/comments/views/active_admin_comments.rb +82 -0
- data/lib/active_admin/component.rb +22 -0
- data/lib/active_admin/controller_action.rb +12 -0
- data/lib/active_admin/csv_builder.rb +45 -0
- data/lib/active_admin/dashboards.rb +48 -0
- data/lib/active_admin/dashboards/dashboard_controller.rb +38 -0
- data/lib/active_admin/dashboards/section.rb +34 -0
- data/lib/active_admin/dependency_checker.rb +30 -0
- data/lib/active_admin/deprecation.rb +36 -0
- data/lib/active_admin/devise.rb +54 -0
- data/lib/active_admin/dsl.rb +224 -0
- data/lib/active_admin/engine.rb +4 -0
- data/lib/active_admin/event.rb +31 -0
- data/lib/active_admin/form_builder.rb +118 -0
- data/lib/active_admin/helpers/optional_display.rb +34 -0
- data/lib/active_admin/helpers/scope_chain.rb +23 -0
- data/lib/active_admin/helpers/settings.rb +70 -0
- data/lib/active_admin/iconic.rb +51 -0
- data/lib/active_admin/iconic/icons.rb +142 -0
- data/lib/active_admin/locales/bg.yml +40 -0
- data/lib/active_admin/locales/cs.yml +34 -0
- data/lib/active_admin/locales/da.yml +28 -0
- data/lib/active_admin/locales/en.yml +40 -0
- data/lib/active_admin/locales/es.yml +40 -0
- data/lib/active_admin/locales/fr.yml +40 -0
- data/lib/active_admin/locales/it.yml +40 -0
- data/lib/active_admin/locales/ja.yml +40 -0
- data/lib/active_admin/locales/pl.yml +34 -0
- data/lib/active_admin/locales/pt-BR.yml +41 -0
- data/lib/active_admin/locales/ru.yml +40 -0
- data/lib/active_admin/locales/sv-SE.yml +40 -0
- data/lib/active_admin/locales/zh_cn.yml +40 -0
- data/lib/active_admin/menu.rb +42 -0
- data/lib/active_admin/menu_item.rb +73 -0
- data/lib/active_admin/namespace.rb +206 -0
- data/lib/active_admin/page_config.rb +15 -0
- data/lib/active_admin/reloader.rb +64 -0
- data/lib/active_admin/renderer.rb +87 -0
- data/lib/active_admin/resource.rb +159 -0
- data/lib/active_admin/resource/action_items.rb +88 -0
- data/lib/active_admin/resource/belongs_to.rb +31 -0
- data/lib/active_admin/resource/menu.rb +45 -0
- data/lib/active_admin/resource/naming.rb +50 -0
- data/lib/active_admin/resource/scopes.rb +33 -0
- data/lib/active_admin/resource/sidebars.rb +36 -0
- data/lib/active_admin/resource_controller.rb +105 -0
- data/lib/active_admin/resource_controller/action_builder.rb +21 -0
- data/lib/active_admin/resource_controller/actions.rb +79 -0
- data/lib/active_admin/resource_controller/callbacks.rb +47 -0
- data/lib/active_admin/resource_controller/collection.rb +138 -0
- data/lib/active_admin/resource_controller/filters.rb +58 -0
- data/lib/active_admin/resource_controller/form.rb +42 -0
- data/lib/active_admin/resource_controller/menu.rb +29 -0
- data/lib/active_admin/resource_controller/page_configurations.rb +53 -0
- data/lib/active_admin/resource_controller/scoping.rb +36 -0
- data/lib/active_admin/resource_controller/sidebars.rb +18 -0
- data/lib/active_admin/router.rb +85 -0
- data/lib/active_admin/sass/active_admin.scss +3 -0
- data/lib/active_admin/sass/css_loader.rb +16 -0
- data/lib/active_admin/sass/helpers.rb +45 -0
- data/lib/active_admin/scope.rb +31 -0
- data/lib/active_admin/sidebar_section.rb +41 -0
- data/lib/active_admin/stylesheets/active_admin/mixins/_utilities.scss +0 -0
- data/lib/active_admin/version.rb +3 -0
- data/lib/active_admin/view_factory.rb +23 -0
- data/lib/active_admin/view_helpers.rb +22 -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 +42 -0
- data/lib/active_admin/view_helpers/breadcrumb_helper.rb +29 -0
- data/lib/active_admin/view_helpers/display_helper.rb +38 -0
- data/lib/active_admin/view_helpers/filter_form_helper.rb +186 -0
- data/lib/active_admin/view_helpers/form_helper.rb +13 -0
- data/lib/active_admin/view_helpers/icon_helper.rb +12 -0
- data/lib/active_admin/view_helpers/method_or_proc_helper.rb +26 -0
- data/lib/active_admin/view_helpers/renderer_helper.rb +29 -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/attributes_table.rb +66 -0
- data/lib/active_admin/views/components/blank_slate.rb +17 -0
- data/lib/active_admin/views/components/columns.rb +47 -0
- data/lib/active_admin/views/components/paginated_collection.rb +92 -0
- data/lib/active_admin/views/components/panel.rb +26 -0
- data/lib/active_admin/views/components/scopes.rb +69 -0
- data/lib/active_admin/views/components/sidebar_section.rb +28 -0
- data/lib/active_admin/views/components/status_tag.rb +55 -0
- data/lib/active_admin/views/components/table_for.rb +193 -0
- data/lib/active_admin/views/dashboard_section_renderer.rb +19 -0
- data/lib/active_admin/views/header_renderer.rb +57 -0
- data/lib/active_admin/views/index_as_block.rb +29 -0
- data/lib/active_admin/views/index_as_blog.rb +129 -0
- data/lib/active_admin/views/index_as_grid.rb +70 -0
- data/lib/active_admin/views/index_as_table.rb +164 -0
- data/lib/active_admin/views/pages/base.rb +167 -0
- data/lib/active_admin/views/pages/dashboard.rb +62 -0
- data/lib/active_admin/views/pages/edit.rb +28 -0
- data/lib/active_admin/views/pages/index.rb +91 -0
- data/lib/active_admin/views/pages/layout.rb +26 -0
- data/lib/active_admin/views/pages/new.rb +28 -0
- data/lib/active_admin/views/pages/show.rb +56 -0
- data/lib/active_admin/views/tabbed_navigation.rb +94 -0
- data/lib/activeadmin.rb +1 -0
- data/lib/generators/active_admin/assets/assets_generator.rb +21 -0
- data/lib/generators/active_admin/assets/templates/3.0/active_admin.js +427 -0
- data/lib/generators/active_admin/assets/templates/3.1/active_admin.css.scss +6 -0
- data/lib/generators/active_admin/assets/templates/3.1/active_admin.js +1 -0
- data/lib/generators/active_admin/assets/templates/dashboards.rb +36 -0
- data/lib/generators/active_admin/devise/devise_generator.rb +49 -0
- data/lib/generators/active_admin/install/install_generator.rb +44 -0
- data/lib/generators/active_admin/install/templates/active_admin.rb.erb +103 -0
- data/lib/generators/active_admin/install/templates/dashboards.rb +38 -0
- data/lib/generators/active_admin/install/templates/migrations/1_create_admin_notes.rb +16 -0
- data/lib/generators/active_admin/install/templates/migrations/2_move_admin_notes_to_comments.rb +25 -0
- data/lib/generators/active_admin/resource/resource_generator.rb +16 -0
- data/lib/generators/active_admin/resource/templates/admin.rb +3 -0
- data/script/local +44 -0
- data/script/use_rails +46 -0
- data/spec/integration/belongs_to_spec.rb +42 -0
- data/spec/integration/default_namespace.rb +77 -0
- data/spec/integration/javascript_spec.rb +20 -0
- data/spec/integration/memory_spec.rb +38 -0
- data/spec/integration/stylesheets_spec.rb +41 -0
- data/spec/spec_helper.rb +167 -0
- data/spec/support/detect_rails_version.rb +10 -0
- data/spec/support/integration_example_group.rb +33 -0
- data/spec/support/jslint.yml +80 -0
- data/spec/support/rails_template.rb +32 -0
- data/spec/support/rails_template_with_data.rb +33 -0
- data/spec/support/templates/cucumber.rb +24 -0
- data/spec/unit/abstract_view_factory_spec.rb +79 -0
- data/spec/unit/action_builder_spec.rb +88 -0
- data/spec/unit/active_admin_spec.rb +17 -0
- data/spec/unit/application_spec.rb +87 -0
- data/spec/unit/arbre/context_spec.rb +35 -0
- data/spec/unit/arbre/html/element_finder_methods_spec.rb +54 -0
- data/spec/unit/arbre/html/element_spec.rb +223 -0
- data/spec/unit/arbre/html/tag_attributes_spec.rb +61 -0
- data/spec/unit/arbre/html/tag_spec.rb +63 -0
- data/spec/unit/arbre/html_spec.rb +209 -0
- data/spec/unit/asset_registration_spec.rb +37 -0
- data/spec/unit/auto_link_spec.rb +39 -0
- data/spec/unit/belongs_to_spec.rb +45 -0
- data/spec/unit/breadcrumbs_spec.rb +110 -0
- data/spec/unit/comments_spec.rb +57 -0
- data/spec/unit/component_spec.rb +18 -0
- data/spec/unit/controller_filters_spec.rb +34 -0
- data/spec/unit/csv_builder_spec.rb +83 -0
- data/spec/unit/dashboard_controller_spec.rb +26 -0
- data/spec/unit/dashboard_section_spec.rb +56 -0
- data/spec/unit/dashboards_spec.rb +59 -0
- data/spec/unit/devise_spec.rb +66 -0
- data/spec/unit/display_name_spec.rb +29 -0
- data/spec/unit/event_spec.rb +41 -0
- data/spec/unit/filter_form_builder_spec.rb +182 -0
- data/spec/unit/form_builder_spec.rb +256 -0
- data/spec/unit/generators/install_rails_3_1_spec.rb +16 -0
- data/spec/unit/helpers/scope_chain_spec.rb +36 -0
- data/spec/unit/helpers/settings_spec.rb +30 -0
- data/spec/unit/menu_item_spec.rb +143 -0
- data/spec/unit/menu_spec.rb +53 -0
- data/spec/unit/namespace_spec.rb +214 -0
- data/spec/unit/pretty_format_spec.rb +35 -0
- data/spec/unit/rails_spec.rb +43 -0
- data/spec/unit/registration_spec.rb +76 -0
- data/spec/unit/reloader_spec.rb +80 -0
- data/spec/unit/renderer_spec.rb +108 -0
- data/spec/unit/resource/action_items_spec.rb +62 -0
- data/spec/unit/resource/menu_spec.rb +80 -0
- data/spec/unit/resource/naming_spec.rb +75 -0
- data/spec/unit/resource/scopes_spec.rb +30 -0
- data/spec/unit/resource/sidebars_spec.rb +50 -0
- data/spec/unit/resource_controller/collection_spec.rb +34 -0
- data/spec/unit/resource_controller_spec.rb +152 -0
- data/spec/unit/resource_spec.rb +269 -0
- data/spec/unit/routing_spec.rb +88 -0
- data/spec/unit/sass/helpers_spec.rb +47 -0
- data/spec/unit/scope_spec.rb +41 -0
- data/spec/unit/view_factory_spec.rb +19 -0
- data/spec/unit/views/components/attributes_table_spec.rb +100 -0
- data/spec/unit/views/components/blank_slate_spec.rb +15 -0
- data/spec/unit/views/components/columns_spec.rb +75 -0
- data/spec/unit/views/components/panel_spec.rb +29 -0
- data/spec/unit/views/components/sidebar_section_spec.rb +37 -0
- data/spec/unit/views/components/status_tag_spec.rb +79 -0
- data/spec/unit/views/components/table_for_spec.rb +131 -0
- data/spec/unit/views/pages/layout_spec.rb +22 -0
- data/spec/unit/views/tabbed_navigation_spec.rb +125 -0
- data/tasks/docs.rake +39 -0
- data/tasks/test.rake +57 -0
- data/tasks/yard.rake +6 -0
- metadata +646 -0
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
bg:
|
|
2
|
+
active_admin:
|
|
3
|
+
dashboard: Табло
|
|
4
|
+
dashboard_welcome:
|
|
5
|
+
welcome: "Добре дошли в Active Admin. Това е таблото по подразбиране."
|
|
6
|
+
call_to_action: "За да добавите секции, проверете 'app/admin/dashboards.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
|
+
filter: "Филтър"
|
|
23
|
+
clear_filters: "Изчисти филтрите"
|
|
24
|
+
search_field: "Търси %{field}"
|
|
25
|
+
equal_to: "Съответства на"
|
|
26
|
+
greater_than: "По-голямо от"
|
|
27
|
+
less_than: "По-малко от"
|
|
28
|
+
main_content: "Моля, приложи %{model}#main_content за визуализация на съдържанието."
|
|
29
|
+
logout: "Изход"
|
|
30
|
+
sidebars:
|
|
31
|
+
filters: "Филтри"
|
|
32
|
+
pagination:
|
|
33
|
+
empty: "%{model} не е открит"
|
|
34
|
+
one: "Показване на <b>1</b> %{model}"
|
|
35
|
+
one_page: "Показване на <b>всички %{n}</b> %{model}"
|
|
36
|
+
multiple: "Показване на %{model} <b>%{from} - %{to}</b> от <b>%{total}</b> общо"
|
|
37
|
+
any: "Всеки"
|
|
38
|
+
blank_slate:
|
|
39
|
+
content: "Няма %{resource_name} все още."
|
|
40
|
+
link: "Създай връзка"
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
cs:
|
|
2
|
+
active_admin:
|
|
3
|
+
dashboard_welcome: "Vítejte v Active Admin. Toto je nástěnka. Pro přidání sekcí nástěnky se podívejte do 'app/admin/dashboards.rb'"
|
|
4
|
+
view: "Zobrazit"
|
|
5
|
+
edit: "Upravit"
|
|
6
|
+
delete: "Smazat"
|
|
7
|
+
delete_confirmation: "Jste si jistí, že chcete tuto položku smazat?"
|
|
8
|
+
new_model: "Nový %{model}"
|
|
9
|
+
edit_model: "Upravit %{model}"
|
|
10
|
+
delete_model: "Smazat %{model}"
|
|
11
|
+
details: "Detaily %{model}"
|
|
12
|
+
cancel: "Zrušit"
|
|
13
|
+
empty: "Prázdné"
|
|
14
|
+
previous: "Předešlé"
|
|
15
|
+
next: "Následující"
|
|
16
|
+
download: "Stáhnout:"
|
|
17
|
+
has_many_new: "Přidat nový %{model}"
|
|
18
|
+
has_many_delete: "Odstranit"
|
|
19
|
+
filter: "Filtr"
|
|
20
|
+
clear_filters: "Vyčistit filtry"
|
|
21
|
+
search_field: "Hledat podle %{field}"
|
|
22
|
+
equal_to: "Přesně"
|
|
23
|
+
greater_than: "Větší než"
|
|
24
|
+
less_than: "Menší než"
|
|
25
|
+
main_content: "Prosím implementujte %{model}#main_content pro zobrazení obsahu."
|
|
26
|
+
logout: "Odhlášení"
|
|
27
|
+
sidebars:
|
|
28
|
+
filters: "Filtr"
|
|
29
|
+
pagination:
|
|
30
|
+
empty: "Žádný %{model} nenalezen."
|
|
31
|
+
one: "Zobrazen <b>1</b> %{model}"
|
|
32
|
+
one_page: "Zobrazeny <b>všechny %{n}</b> %{model}"
|
|
33
|
+
multiple: "Zobrazen %{model} <b>%{from} - %{to}</b> z <b>%{total}</b>"
|
|
34
|
+
any: "Kterákoliv"
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
da:
|
|
2
|
+
active_admin:
|
|
3
|
+
dashboard_welcome:
|
|
4
|
+
welcome: "Velkommen til Active Admin. Dette er standardoversigtssiden."
|
|
5
|
+
call_to_action: "Rediger 'app/admin/dashboards.rb' for at tilføje nye elementer til oversigtssiden."
|
|
6
|
+
view: "Vis"
|
|
7
|
+
edit: "Rediger"
|
|
8
|
+
delete: "Slet"
|
|
9
|
+
delete_confirmation: "Er du sikker på at du ønsker at slette?"
|
|
10
|
+
new_model: "Ny(t) %{model}"
|
|
11
|
+
edit_model: "Rediger %{model}"
|
|
12
|
+
delete_model: "Slet %{model}"
|
|
13
|
+
details: "%{model} detaljer"
|
|
14
|
+
cancel: "Fortryd"
|
|
15
|
+
empty: "Tom"
|
|
16
|
+
previous: "Forrige"
|
|
17
|
+
next: "Næste"
|
|
18
|
+
download: "Download:"
|
|
19
|
+
has_many_new: "Tilføj ny(t) %{model}"
|
|
20
|
+
has_many_delete: "Slet"
|
|
21
|
+
filter: "Filtrer"
|
|
22
|
+
clear_filters: "Ryd filtre"
|
|
23
|
+
search_field: "Søg %{field}"
|
|
24
|
+
equal_to: "lig"
|
|
25
|
+
greater_than: "større end"
|
|
26
|
+
less_than: "mindre end"
|
|
27
|
+
main_content: "Implementer venligst %{model}#main_content for at vise noget indhold."
|
|
28
|
+
logout: "Log ud"
|
|
@@ -0,0 +1,40 @@
|
|
|
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/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
|
+
edit_model: "Edit %{model}"
|
|
13
|
+
delete_model: "Delete %{model}"
|
|
14
|
+
details: "%{model} Details"
|
|
15
|
+
cancel: "Cancel"
|
|
16
|
+
empty: "Empty"
|
|
17
|
+
previous: "Previous"
|
|
18
|
+
next: "Next"
|
|
19
|
+
download: "Download:"
|
|
20
|
+
has_many_new: "Add New %{model}"
|
|
21
|
+
has_many_delete: "Delete"
|
|
22
|
+
filter: "Filter"
|
|
23
|
+
clear_filters: "Clear Filters"
|
|
24
|
+
search_field: "Search %{field}"
|
|
25
|
+
equal_to: "Equal To"
|
|
26
|
+
greater_than: "Greater Than"
|
|
27
|
+
less_than: "Less Than"
|
|
28
|
+
main_content: "Please implement %{model}#main_content to display content."
|
|
29
|
+
logout: "Logout"
|
|
30
|
+
sidebars:
|
|
31
|
+
filters: "Filters"
|
|
32
|
+
pagination:
|
|
33
|
+
empty: "No %{model} found"
|
|
34
|
+
one: "Displaying <b>1</b> %{model}"
|
|
35
|
+
one_page: "Displaying <b>all %{n}</b> %{model}"
|
|
36
|
+
multiple: "Displaying %{model} <b>%{from} - %{to}</b> of <b>%{total}</b> in total"
|
|
37
|
+
any: "Any"
|
|
38
|
+
blank_slate:
|
|
39
|
+
content: "There are no %{resource_name} yet."
|
|
40
|
+
link: "Create one"
|
|
@@ -0,0 +1,40 @@
|
|
|
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 edita 'app/admin/dashboards.rb'"
|
|
7
|
+
view: "Ver"
|
|
8
|
+
edit: "Editar"
|
|
9
|
+
delete: "Eliminar"
|
|
10
|
+
delete_confirmation: "¿Está seguro que quiere eliminar esto?"
|
|
11
|
+
new_model: "Nuevo(a) %{model}"
|
|
12
|
+
edit_model: "Editar %{model}"
|
|
13
|
+
delete_model: "Eliminar %{model}"
|
|
14
|
+
details: "Detalles de %{model}"
|
|
15
|
+
cancel: "Cancelar"
|
|
16
|
+
empty: "Vacío"
|
|
17
|
+
previous: "Anterior"
|
|
18
|
+
next: "Siguiente"
|
|
19
|
+
download: "Descargar:"
|
|
20
|
+
has_many_new: "Agregar nuevo(a) %{model}"
|
|
21
|
+
has_many_delete: "Eliminar"
|
|
22
|
+
filter: "Filtrar"
|
|
23
|
+
clear_filters: "Quitar Filtros"
|
|
24
|
+
search_field: "Buscar %{field}"
|
|
25
|
+
equal_to: "Igual a"
|
|
26
|
+
greater_than: "Mayor que"
|
|
27
|
+
less_than: "Menor que"
|
|
28
|
+
main_content: "Por favor implemente %{model}#main_content para mostrar contenido."
|
|
29
|
+
logout: "Salir"
|
|
30
|
+
sidebars:
|
|
31
|
+
filters: "Filtros"
|
|
32
|
+
pagination:
|
|
33
|
+
empty: "Ningún(a) %{model} encontrado"
|
|
34
|
+
one: "Mostrando <b>1</b> %{model}"
|
|
35
|
+
one_page: "Mostrando <b>todos(as) los(as) %{n}</b> %{model}"
|
|
36
|
+
multiple: "Mostrando %{model} <b>%{from} - %{to}</b> de un total de <b>%{total}</b>"
|
|
37
|
+
any: "Todos"
|
|
38
|
+
blank_slate:
|
|
39
|
+
content: "No hay %{resource_name} aún."
|
|
40
|
+
link: "Crea uno(a)"
|
|
@@ -0,0 +1,40 @@
|
|
|
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/dashboards.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
|
+
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
|
+
filter: "Filtrer"
|
|
23
|
+
clear_filters: "Supprimer les filtres"
|
|
24
|
+
search_field: "Rechercher %{field}"
|
|
25
|
+
equal_to: "Egal à"
|
|
26
|
+
greater_than: "Plus grand que"
|
|
27
|
+
less_than: "Plus petit que"
|
|
28
|
+
main_content: "Veuillez implémenter %{model}#main_content pour afficher le contenu."
|
|
29
|
+
logout: "Déconnexion"
|
|
30
|
+
sidebars:
|
|
31
|
+
filters: "Filtres"
|
|
32
|
+
pagination:
|
|
33
|
+
empty: "Aucun %{model} trouvé"
|
|
34
|
+
one: "Affichage de <b>1</b> %{model}"
|
|
35
|
+
one_page: "Affichage de <b>tous les %{n}</b> %{model}"
|
|
36
|
+
multiple: "Affichage de %{model} <b>%{from} - %{to}</b> sur un total de <b>%{total}</b>"
|
|
37
|
+
any: "N'importe lequel"
|
|
38
|
+
blank_slate:
|
|
39
|
+
content: "Il n'y a pas encore de %{resource_name}."
|
|
40
|
+
link: "Créez en un"
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
it:
|
|
2
|
+
active_admin:
|
|
3
|
+
dashboard: Dashboard
|
|
4
|
+
dashboard_welcome:
|
|
5
|
+
welcome: "Benvenuti in Active Admin. Questa è la pagina dashboard di default."
|
|
6
|
+
call_to_action: "Per aggiungere sezioni alla dashboard controlla il file 'app/admin/dashboards.rb'"
|
|
7
|
+
view: "Mostra"
|
|
8
|
+
edit: "Modifica"
|
|
9
|
+
delete: "Rimuovi"
|
|
10
|
+
delete_confirmation: "Sicuro di volere rimuovere?"
|
|
11
|
+
new_model: "Aggiungi %{model}"
|
|
12
|
+
edit_model: "Modifica %{model}"
|
|
13
|
+
delete_model: "Rimuovi %{model}"
|
|
14
|
+
details: "%{model} Dettagli"
|
|
15
|
+
cancel: "Annulla"
|
|
16
|
+
empty: "Vuoto"
|
|
17
|
+
previous: "Precedente"
|
|
18
|
+
next: "Avanti"
|
|
19
|
+
download: "Download:"
|
|
20
|
+
has_many_new: "Aggiungi Nuovo/a %{model}"
|
|
21
|
+
has_many_delete: "Rimuovi"
|
|
22
|
+
filter: "Filtra"
|
|
23
|
+
clear_filters: "Rimuovi Filtri"
|
|
24
|
+
search_field: "Cerca %{field}"
|
|
25
|
+
equal_to: "Uguale a"
|
|
26
|
+
greater_than: "Maggiore di"
|
|
27
|
+
less_than: "Minore di"
|
|
28
|
+
main_content: "Devi implemetare %{model}#main_content per mostrarne il contenuto."
|
|
29
|
+
logout: "Esci"
|
|
30
|
+
sidebars:
|
|
31
|
+
filters: "Filtri"
|
|
32
|
+
pagination:
|
|
33
|
+
empty: "Nessun %{model} trovato"
|
|
34
|
+
one: "Sto mostrando <b>1</b> %{model}"
|
|
35
|
+
one_page: "Sto mostrando <b>%{n}</b> %{model}. Lista completa."
|
|
36
|
+
multiple: "Sto mostrando %{model} <b>%{from} - %{to}</b> di <b>%{total}</b> in totale"
|
|
37
|
+
any: "Qualunque"
|
|
38
|
+
blank_slate:
|
|
39
|
+
content: "Non sono presenti %{resource_name}"
|
|
40
|
+
link: "Crea nuovo/a"
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
ja:
|
|
2
|
+
active_admin:
|
|
3
|
+
dashboard: "ダッシュボード"
|
|
4
|
+
dashboard_welcome:
|
|
5
|
+
welcome: "Active Admin へようこそ。ダッシュボードの初期ページを表示しています。"
|
|
6
|
+
call_to_action: "ダッシュボードに項目を追加するために 'app/admin/dashboards.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
|
+
filter: "絞り込む"
|
|
23
|
+
clear_filters: "条件を削除する"
|
|
24
|
+
search_field: "%{field} で絞り込む"
|
|
25
|
+
equal_to: "等しい"
|
|
26
|
+
greater_than: "より大きい"
|
|
27
|
+
less_than: "より小さい"
|
|
28
|
+
main_content: "内容を表示するために %{model}#main_content を実装してください。"
|
|
29
|
+
logout: "ログアウト"
|
|
30
|
+
sidebars:
|
|
31
|
+
filters: "検索条件"
|
|
32
|
+
pagination:
|
|
33
|
+
empty: "%{model} は見つかりませんでした"
|
|
34
|
+
one: "<b>1</b> 件の %{model} を表示しています"
|
|
35
|
+
one_page: "<b>全 %{n}</b> 件の %{model} を表示しています"
|
|
36
|
+
multiple: "全 <b>%{total}</b> 件中 <b>%{from} - %{to}</b> 件の %{model} を表示しています"
|
|
37
|
+
any: "任意"
|
|
38
|
+
blank_slate:
|
|
39
|
+
content: "%{resource_name} はまだありません。"
|
|
40
|
+
link: "作成する"
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
pl:
|
|
2
|
+
active_admin:
|
|
3
|
+
dashboard_welcome: "Witaj w Active Adminie. Znajdujesz się na domyślnym dashboardzie. Aby dodać sekcje do dashboarda sprawdź 'app/admin/dashboards.rb'"
|
|
4
|
+
view: "Podgląd"
|
|
5
|
+
edit: "Edytuj"
|
|
6
|
+
delete: "Usuń"
|
|
7
|
+
delete_confirmation: "Jesteś pewien, że chcesz to usunąć?"
|
|
8
|
+
new_model: "Nowy %{model}"
|
|
9
|
+
edit_model: "Edytuj %{model}"
|
|
10
|
+
delete_model: "Usuń %{model}"
|
|
11
|
+
details: "Detale %{model}"
|
|
12
|
+
cancel: "Anuluj"
|
|
13
|
+
empty: "Pusty"
|
|
14
|
+
previous: "Poprzednia"
|
|
15
|
+
next: "Następna"
|
|
16
|
+
download: "Pobierz:"
|
|
17
|
+
has_many_new: "Dodaj nowy %{model}"
|
|
18
|
+
has_many_delete: "Usuń"
|
|
19
|
+
filter: "Filtruj"
|
|
20
|
+
clear_filters: "Wyczyść Filtry"
|
|
21
|
+
search_field: "Szukaj %{field}"
|
|
22
|
+
equal_to: "Równe"
|
|
23
|
+
greater_than: "Większe niż"
|
|
24
|
+
less_than: "Mniejsze niż"
|
|
25
|
+
main_content: "Zaimplementuj %{model}#main_content aby wyświetlić treść."
|
|
26
|
+
logout: "Wyloguj"
|
|
27
|
+
sidebars:
|
|
28
|
+
filters: "Filtry"
|
|
29
|
+
pagination:
|
|
30
|
+
empty: "Nie znaleziono %{model}"
|
|
31
|
+
one: "Wyświetlanie <b>1</b> %{model}"
|
|
32
|
+
one_page: "Wyświetlanie <b>wszystkich %{n}</b> %{model}"
|
|
33
|
+
multiple: "Wyświetlanie %{model} <b>%{from} - %{to}</b> z <b>%{total}</b>"
|
|
34
|
+
any: "Jakikolwiek"
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"pt-BR":
|
|
2
|
+
active_admin:
|
|
3
|
+
dashboard: "Painel Administrativo"
|
|
4
|
+
dashboard_welcome:
|
|
5
|
+
welcome: "Bem vindo ao Active Admin. Esta é a página de painéis padrão."
|
|
6
|
+
call_to_action: "Para adicionar seções ao painel, verifique 'app/admin/dashboards.rb'"
|
|
7
|
+
view: "Visualizar"
|
|
8
|
+
edit: "Editar"
|
|
9
|
+
delete: "Remover"
|
|
10
|
+
delete_confirmation: "Você tem certeza que deseja remover este item?"
|
|
11
|
+
new_model: "Novo(a) %{model}"
|
|
12
|
+
edit_model: "Editar %{model}"
|
|
13
|
+
delete_model: "Remover %{model}"
|
|
14
|
+
details: "Detalhes do(a) %{model}"
|
|
15
|
+
cancel: "Cancelar"
|
|
16
|
+
empty: "Vazio"
|
|
17
|
+
previous: "Anterior"
|
|
18
|
+
next: "Próximo"
|
|
19
|
+
download: "Baixar:"
|
|
20
|
+
has_many_new: "Adicionar Novo(a) %{model}"
|
|
21
|
+
has_many_delete: "Remover"
|
|
22
|
+
filter: "Filtrar"
|
|
23
|
+
clear_filters: "Limpar Filtros"
|
|
24
|
+
search_field: "Pesquisar %{field}"
|
|
25
|
+
equal_to: "Igual A"
|
|
26
|
+
greater_than: "Maior Que"
|
|
27
|
+
less_than: "Menor Que"
|
|
28
|
+
main_content: "Por favor implemente %{model}#main_content para exibir conteúdo."
|
|
29
|
+
logout: "Sair"
|
|
30
|
+
sidebars:
|
|
31
|
+
filters: "Filtros"
|
|
32
|
+
pagination:
|
|
33
|
+
empty: "Nenhum(a) %{model} encontrado(a)"
|
|
34
|
+
one: "Exibindo <b>1</b> %{model}"
|
|
35
|
+
one_page: "Exibindo <b>todos(as) os(as) %{n}</b> %{model}"
|
|
36
|
+
multiple: "Exibindo %{model} <b>%{from} - %{to}</b> de um total de <b>%{total}</b>"
|
|
37
|
+
any: "Qualquer"
|
|
38
|
+
blank_slate:
|
|
39
|
+
content: "Não existem %{resource_name} ainda."
|
|
40
|
+
link: "Crie uma"
|
|
41
|
+
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
ru:
|
|
2
|
+
active_admin:
|
|
3
|
+
dashboard: Dashboard
|
|
4
|
+
dashboard_welcome:
|
|
5
|
+
welcome: "Добро пожаловать в Active Admin. Это стандартная страница управления сайтом."
|
|
6
|
+
call_to_action: "Чтобы добавить сюда что-нибудь загляните в 'app/admin/dashboards.rb'"
|
|
7
|
+
view: "Открыть"
|
|
8
|
+
edit: "Изменить"
|
|
9
|
+
delete: "Удалить"
|
|
10
|
+
delete_confirmation: "Вы уверены, что хотите удалить это?"
|
|
11
|
+
new_model: "Создать"
|
|
12
|
+
edit_model: "Изменить"
|
|
13
|
+
delete_model: "Удалить"
|
|
14
|
+
details: "Подробнее"
|
|
15
|
+
cancel: "Отмена"
|
|
16
|
+
empty: "Пусто"
|
|
17
|
+
previous: "Пред."
|
|
18
|
+
next: "След."
|
|
19
|
+
download: "Загрузка:"
|
|
20
|
+
has_many_new: "Добавить %{model}"
|
|
21
|
+
has_many_delete: "Удалить"
|
|
22
|
+
filter: "Фильтровать"
|
|
23
|
+
clear_filters: "Очистить"
|
|
24
|
+
search_field: "Искать по %{field}"
|
|
25
|
+
equal_to: "="
|
|
26
|
+
greater_than: ">"
|
|
27
|
+
less_than: "<"
|
|
28
|
+
main_content: "Создайте %{model}#main_content для отображения содержимого."
|
|
29
|
+
logout: "Выйти"
|
|
30
|
+
sidebars:
|
|
31
|
+
filters: "Фильтры"
|
|
32
|
+
pagination:
|
|
33
|
+
empty: "%{model} не найдено"
|
|
34
|
+
one: "Результат: <b>1</b> %{model}"
|
|
35
|
+
one_page: "Результат: <b>%{n}</b> %{model}"
|
|
36
|
+
multiple: "Результат: %{model} <b>%{from} - %{to}</b> из <b>%{total}</b>"
|
|
37
|
+
any: "Любой"
|
|
38
|
+
blank_slate:
|
|
39
|
+
content: "Пока нет %{resource_name}."
|
|
40
|
+
link: "Создать"
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"sv-SE":
|
|
2
|
+
active_admin:
|
|
3
|
+
dashboard: Skrivbord
|
|
4
|
+
dashboard_welcome:
|
|
5
|
+
welcome: "Välkommen till Active Admin. Detta är ditt standardskrivbord."
|
|
6
|
+
call_to_action: "För att lägga till sektioner, gör en checkout på 'app/admin/dashboards.rb'"
|
|
7
|
+
view: "Visa"
|
|
8
|
+
edit: "Editera"
|
|
9
|
+
delete: "Ta bort"
|
|
10
|
+
delete_confirmation: "Är du säker att du vill ta bort denna?"
|
|
11
|
+
new_model: "Ny %{model}"
|
|
12
|
+
edit_model: "Editera %{model}"
|
|
13
|
+
delete_model: "Ta bort %{model}"
|
|
14
|
+
details: "Detaljvy för %{model}"
|
|
15
|
+
cancel: "Avbryt"
|
|
16
|
+
empty: "Tom"
|
|
17
|
+
previous: "Föregående"
|
|
18
|
+
next: "Nästa"
|
|
19
|
+
download: "Ladda ner:"
|
|
20
|
+
has_many_new: "Skapa en ny %{model}"
|
|
21
|
+
has_many_delete: "Ta bort"
|
|
22
|
+
filter: "Filter"
|
|
23
|
+
clear_filters: "Töm dina filters"
|
|
24
|
+
search_field: "Sök %{field}"
|
|
25
|
+
equal_to: "Lika med"
|
|
26
|
+
greater_than: "Större än"
|
|
27
|
+
less_than: "Mindre än"
|
|
28
|
+
main_content: "Implementera %{model}#main_content för att kunna visa något."
|
|
29
|
+
logout: "Logga ut"
|
|
30
|
+
sidebars:
|
|
31
|
+
filters: "Filter"
|
|
32
|
+
pagination:
|
|
33
|
+
empty: "Ingen %{model} funnen"
|
|
34
|
+
one: "Visar <b>1</b> utav %{model}"
|
|
35
|
+
one_page: "Visar <b>alla %{n}</b> utav %{model}"
|
|
36
|
+
multiple: "Visar %{model} <b>%{from} - %{to}</b> av <b>%{total}</b> totalt"
|
|
37
|
+
any: "Någon"
|
|
38
|
+
blank_slate:
|
|
39
|
+
content: "Finns ingen %{resource_name} än."
|
|
40
|
+
link: "Skapa en"
|