keppler 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Gemfile +6 -0
- data/README.md +43 -0
- data/Rakefile +2 -0
- data/bin/console +15 -0
- data/bin/keppler +5 -0
- data/bin/setup +7 -0
- data/installer/core/Gemfile +113 -0
- data/installer/core/Guardfile +18 -0
- data/installer/core/README.md +87 -0
- data/installer/core/Rakefile +6 -0
- data/installer/core/_config.yml +1 -0
- data/installer/core/app/assets/images/admin/favicon.png +0 -0
- data/installer/core/app/assets/images/admin/logo.png +0 -0
- data/installer/core/app/assets/images/admin/logo2.png +0 -0
- data/installer/core/app/assets/images/admin/profile-menu.jpg +0 -0
- data/installer/core/app/assets/images/admin/search.png +0 -0
- data/installer/core/app/assets/images/admin/slice-icon-orange.png +0 -0
- data/installer/core/app/assets/images/admin/slice-icon.png +0 -0
- data/installer/core/app/assets/images/admin/slice.png +0 -0
- data/installer/core/app/assets/images/admin/slice_white.png +0 -0
- data/installer/core/app/assets/images/admin/space.png +0 -0
- data/installer/core/app/assets/images/app/Home_Keppler.png +0 -0
- data/installer/core/app/assets/images/app/Home_Keppler2.png +0 -0
- data/installer/core/app/assets/images/app/keppler-front.png +0 -0
- data/installer/core/app/assets/images/app/slice-front.png +0 -0
- data/installer/core/app/assets/javascripts/admin/application.coffee +15 -0
- data/installer/core/app/assets/javascripts/admin/dropdown_top.js +7 -0
- data/installer/core/app/assets/javascripts/admin/file_upload.coffee +21 -0
- data/installer/core/app/assets/javascripts/admin/img_preview.js +18 -0
- data/installer/core/app/assets/javascripts/admin/main.coffee +42 -0
- data/installer/core/app/assets/javascripts/admin/notification.js +11 -0
- data/installer/core/app/assets/javascripts/admin/preview_template.js +21 -0
- data/installer/core/app/assets/javascripts/admin/sidebar.js +20 -0
- data/installer/core/app/assets/javascripts/admin/sort.coffee +8 -0
- data/installer/core/app/assets/javascripts/app/application.js.coffee +5 -0
- data/installer/core/app/assets/javascripts/app/front.js +129 -0
- data/installer/core/app/assets/javascripts/app/google_analytics.js.coffee +5 -0
- data/installer/core/app/assets/javascripts/ckeditor/config.js +130 -0
- data/installer/core/app/assets/javascripts/keppler_ga_dashboard/view-selector2.js +196 -0
- data/installer/core/app/assets/javascripts/vue_admin/index.js +87 -0
- data/installer/core/app/assets/stylesheets/admin/application.scss +43 -0
- data/installer/core/app/assets/stylesheets/admin/components/layouts/_footer.scss +5 -0
- data/installer/core/app/assets/stylesheets/admin/components/layouts/_settings.scss +35 -0
- data/installer/core/app/assets/stylesheets/admin/components/module/_show.scss +0 -0
- data/installer/core/app/assets/stylesheets/admin/components/navigation/_navbar.scss +79 -0
- data/installer/core/app/assets/stylesheets/admin/components/navigation/_sidebar.scss +91 -0
- data/installer/core/app/assets/stylesheets/admin/components/paginator/_paginator.scss +53 -0
- data/installer/core/app/assets/stylesheets/admin/pages/_devise.scss +162 -0
- data/installer/core/app/assets/stylesheets/admin/pages/_files.scss +83 -0
- data/installer/core/app/assets/stylesheets/admin/pages/_form.scss +163 -0
- data/installer/core/app/assets/stylesheets/admin/pages/_header.scss +34 -0
- data/installer/core/app/assets/stylesheets/admin/pages/_index.scss +331 -0
- data/installer/core/app/assets/stylesheets/admin/pages/_listing.scss +29 -0
- data/installer/core/app/assets/stylesheets/admin/pages/_navbar.scss +36 -0
- data/installer/core/app/assets/stylesheets/admin/pages/_pageslide.scss +125 -0
- data/installer/core/app/assets/stylesheets/admin/pages/_preloader.scss +283 -0
- data/installer/core/app/assets/stylesheets/admin/pages/_search.scss +220 -0
- data/installer/core/app/assets/stylesheets/admin/pages/_show.scss +17 -0
- data/installer/core/app/assets/stylesheets/admin/pages/_sidebar.scss +64 -0
- data/installer/core/app/assets/stylesheets/admin/pages/_switchs.scss +47 -0
- data/installer/core/app/assets/stylesheets/admin/pages/_themes.scss +74 -0
- data/installer/core/app/assets/stylesheets/admin/utils/_base.scss +66 -0
- data/installer/core/app/assets/stylesheets/admin/utils/_mixins.scss +26 -0
- data/installer/core/app/assets/stylesheets/admin/utils/_theme.scss +94 -0
- data/installer/core/app/assets/stylesheets/admin/utils/_variables.scss +79 -0
- data/installer/core/app/assets/stylesheets/app/application.scss +29 -0
- data/installer/core/app/assets/stylesheets/app/base/_base_project.scss +17 -0
- data/installer/core/app/assets/stylesheets/app/base/_typography.scss +1 -0
- data/installer/core/app/assets/stylesheets/app/components/_buttons.scss +0 -0
- data/installer/core/app/assets/stylesheets/app/components/_inputs.scss +0 -0
- data/installer/core/app/assets/stylesheets/app/components/_navbar.scss +21 -0
- data/installer/core/app/assets/stylesheets/app/layout/_container.scss +0 -0
- data/installer/core/app/assets/stylesheets/app/layout/_footer.scss +15 -0
- data/installer/core/app/assets/stylesheets/app/layout/_header.scss +0 -0
- data/installer/core/app/assets/stylesheets/app/pages/_front.sass +58 -0
- data/installer/core/app/assets/stylesheets/app/plugins/_bootstrap_override.scss +37 -0
- data/installer/core/app/assets/stylesheets/app/plugins/_font_awesome.scss +2 -0
- data/installer/core/app/assets/stylesheets/app/plugins/_keppler.scss +54 -0
- data/installer/core/app/assets/stylesheets/app/plugins/_npogress.scss +2 -0
- data/installer/core/app/assets/stylesheets/app/utils/_mixins.scss +18 -0
- data/installer/core/app/assets/stylesheets/app/utils/_variables.scss +28 -0
- data/installer/core/app/assets/stylesheets/errors/application.scss +3 -0
- data/installer/core/app/assets/stylesheets/errors/errors.scss +120 -0
- data/installer/core/app/assets/stylesheets/vendor/admin-lte/_skin-blue.scss +141 -0
- data/installer/core/app/controllers/admin/admin_controller.rb +72 -0
- data/installer/core/app/controllers/admin/customizes_controller.rb +109 -0
- data/installer/core/app/controllers/admin/meta_tags_controller.rb +124 -0
- data/installer/core/app/controllers/admin/scripts_controller.rb +131 -0
- data/installer/core/app/controllers/admin/settings_controller.rb +111 -0
- data/installer/core/app/controllers/admin/users_controller.rb +119 -0
- data/installer/core/app/controllers/app/app_controller.rb +23 -0
- data/installer/core/app/controllers/app/front_controller.rb +10 -0
- data/installer/core/app/controllers/application_controller.rb +96 -0
- data/installer/core/app/controllers/devise/sessions_controller.rb +104 -0
- data/installer/core/app/controllers/errors_controller.rb +28 -0
- data/installer/core/app/helpers/admin_helper.rb +117 -0
- data/installer/core/app/helpers/application_helper.rb +21 -0
- data/installer/core/app/helpers/customizes_helper.rb +2 -0
- data/installer/core/app/helpers/fronts_helper.rb +2 -0
- data/installer/core/app/helpers/scaffolds_helper.rb +2 -0
- data/installer/core/app/inputs/checkbox_material_input.rb +75 -0
- data/installer/core/app/inputs/file_material_input.rb +33 -0
- data/installer/core/app/mailers/application_mailer.rb +28 -0
- data/installer/core/app/models/appearance.rb +5 -0
- data/installer/core/app/models/application_record.rb +3 -0
- data/installer/core/app/models/concerns/activity_history.rb +9 -0
- data/installer/core/app/models/concerns/clone_record.rb +12 -0
- data/installer/core/app/models/customize.rb +154 -0
- data/installer/core/app/models/front.rb +2 -0
- data/installer/core/app/models/google_analytics_setting.rb +4 -0
- data/installer/core/app/models/meta_tag.rb +41 -0
- data/installer/core/app/models/role.rb +11 -0
- data/installer/core/app/models/script.rb +30 -0
- data/installer/core/app/models/setting.rb +17 -0
- data/installer/core/app/models/smtp_setting.rb +5 -0
- data/installer/core/app/models/social_account.rb +4 -0
- data/installer/core/app/models/user.rb +44 -0
- data/installer/core/app/policies/application_policy.rb +16 -0
- data/installer/core/app/policies/controller_policy.rb +53 -0
- data/installer/core/app/policies/customize_policy.rb +9 -0
- data/installer/core/app/policies/meta_tag_policy.rb +9 -0
- data/installer/core/app/policies/script_policy.rb +9 -0
- data/installer/core/app/policies/setting_policy.rb +9 -0
- data/installer/core/app/policies/user_policy.rb +17 -0
- data/installer/core/app/uploaders/attachment_uploader.rb +44 -0
- data/installer/core/app/uploaders/ckeditor_attachment_file_uploader.rb +36 -0
- data/installer/core/app/uploaders/ckeditor_picture_uploader.rb +47 -0
- data/installer/core/app/uploaders/template_uploader.rb +44 -0
- data/installer/core/app/views/admin/customizes/_description.html.haml +13 -0
- data/installer/core/app/views/admin/customizes/_form.html.haml +33 -0
- data/installer/core/app/views/admin/customizes/_listing.html.haml +15 -0
- data/installer/core/app/views/admin/customizes/_switch_default_template.html.haml +16 -0
- data/installer/core/app/views/admin/customizes/_switch_template.html.haml +22 -0
- data/installer/core/app/views/admin/customizes/index.html.haml +38 -0
- data/installer/core/app/views/admin/customizes/new.html.haml +4 -0
- data/installer/core/app/views/admin/layouts/_footer.html.haml +8 -0
- data/installer/core/app/views/admin/layouts/_head.html.haml +8 -0
- data/installer/core/app/views/admin/layouts/_header.html.haml +7 -0
- data/installer/core/app/views/admin/layouts/_listing_preloader.haml +5 -0
- data/installer/core/app/views/admin/layouts/_messages.html.haml +4 -0
- data/installer/core/app/views/admin/layouts/_navigation.html.haml +46 -0
- data/installer/core/app/views/admin/layouts/_preloader.html.haml +9 -0
- data/installer/core/app/views/admin/layouts/_search.html.haml +8 -0
- data/installer/core/app/views/admin/layouts/_sidebar.html.haml +63 -0
- data/installer/core/app/views/admin/layouts/application.html.haml +23 -0
- data/installer/core/app/views/admin/layouts/index/remote_messages.js.haml +9 -0
- data/installer/core/app/views/admin/meta_tags/_description.html.haml +13 -0
- data/installer/core/app/views/admin/meta_tags/_form.html.haml +57 -0
- data/installer/core/app/views/admin/meta_tags/_index_show.html.haml +26 -0
- data/installer/core/app/views/admin/meta_tags/_listing.html.haml +39 -0
- data/installer/core/app/views/admin/meta_tags/edit.html.haml +2 -0
- data/installer/core/app/views/admin/meta_tags/index.html.haml +80 -0
- data/installer/core/app/views/admin/meta_tags/new.html.haml +2 -0
- data/installer/core/app/views/admin/meta_tags/reload.js.haml +5 -0
- data/installer/core/app/views/admin/meta_tags/show.html.haml +29 -0
- data/installer/core/app/views/admin/meta_tags/show.js.haml +4 -0
- data/installer/core/app/views/admin/scripts/_description.html.haml +13 -0
- data/installer/core/app/views/admin/scripts/_form.html.haml +31 -0
- data/installer/core/app/views/admin/scripts/_index_show.html.haml +26 -0
- data/installer/core/app/views/admin/scripts/_listing.html.haml +42 -0
- data/installer/core/app/views/admin/scripts/edit.html.haml +1 -0
- data/installer/core/app/views/admin/scripts/index.html.haml +82 -0
- data/installer/core/app/views/admin/scripts/new.html.haml +1 -0
- data/installer/core/app/views/admin/scripts/reload.js.haml +5 -0
- data/installer/core/app/views/admin/scripts/show.html.haml +29 -0
- data/installer/core/app/views/admin/scripts/show.js.haml +4 -0
- data/installer/core/app/views/admin/settings/_form.html.haml +9 -0
- data/installer/core/app/views/admin/settings/components/_preview.html.haml +30 -0
- data/installer/core/app/views/admin/settings/edit.html.haml +4 -0
- data/installer/core/app/views/admin/settings/fields/_appearance.html.haml +62 -0
- data/installer/core/app/views/admin/settings/fields/_basic_information.html.haml +48 -0
- data/installer/core/app/views/admin/settings/fields/_email_setting.html.haml +17 -0
- data/installer/core/app/views/admin/settings/fields/_google_analytics_setting.html.haml +28 -0
- data/installer/core/app/views/admin/settings/fields/_social_accounts.html.haml +42 -0
- data/installer/core/app/views/admin/users/_description.html.haml +13 -0
- data/installer/core/app/views/admin/users/_form.html.haml +59 -0
- data/installer/core/app/views/admin/users/_index_show.html.haml +24 -0
- data/installer/core/app/views/admin/users/_listing.html.haml +49 -0
- data/installer/core/app/views/admin/users/edit.html.haml +1 -0
- data/installer/core/app/views/admin/users/index.html.haml +72 -0
- data/installer/core/app/views/admin/users/new.html.haml +1 -0
- data/installer/core/app/views/admin/users/reload.js.haml +5 -0
- data/installer/core/app/views/admin/users/show.html.haml +36 -0
- data/installer/core/app/views/admin/users/show.js.haml +4 -0
- data/installer/core/app/views/app/front/index.html.haml +180 -0
- data/installer/core/app/views/app/layouts/_footer.html.haml +3 -0
- data/installer/core/app/views/app/layouts/_google_analytics.html.haml +14 -0
- data/installer/core/app/views/app/layouts/_head.html.haml +22 -0
- data/installer/core/app/views/app/layouts/_messages.html.haml +6 -0
- data/installer/core/app/views/app/layouts/_meta_tags.html.haml +9 -0
- data/installer/core/app/views/app/layouts/_navigation.html.haml +13 -0
- data/installer/core/app/views/app/layouts/_navigation_links.html.haml +6 -0
- data/installer/core/app/views/app/layouts/application.html.haml +10 -0
- data/installer/core/app/views/application_mailer/testing.html.haml +1 -0
- data/installer/core/app/views/devise/mailer/reset_password_instructions.html.haml +6 -0
- data/installer/core/app/views/devise/passwords/edit.html.haml +27 -0
- data/installer/core/app/views/devise/passwords/new.html.haml +22 -0
- data/installer/core/app/views/devise/registrations/edit.html.erb +48 -0
- data/installer/core/app/views/devise/registrations/new.html.erb +19 -0
- data/installer/core/app/views/devise/sessions/new.html.haml +30 -0
- data/installer/core/app/views/errors/internal_server_error.html.haml +7 -0
- data/installer/core/app/views/errors/not_authorized.html.haml +7 -0
- data/installer/core/app/views/errors/not_found.html.haml +7 -0
- data/installer/core/app/views/errors/unprocessable.html.haml +7 -0
- data/installer/core/app/views/kaminari/_first_page.html.haml +11 -0
- data/installer/core/app/views/kaminari/_gap.html.haml +8 -0
- data/installer/core/app/views/kaminari/_last_page.html.haml +11 -0
- data/installer/core/app/views/kaminari/_next_page.html.haml +11 -0
- data/installer/core/app/views/kaminari/_page.html.haml +10 -0
- data/installer/core/app/views/kaminari/_paginator.html.haml +18 -0
- data/installer/core/app/views/kaminari/_prev_page.html.haml +11 -0
- data/installer/core/app/views/keppler_ga_dashboard/dashboard/analytics.html.haml +600 -0
- data/installer/core/app/views/layouts/errors/_head.html.haml +3 -0
- data/installer/core/app/views/layouts/errors/application.html.haml +11 -0
- data/installer/core/app/views/layouts/mailers/mailer.html.haml +3 -0
- data/installer/core/app/views/layouts/mailers/mailer.text.haml +1 -0
- data/installer/core/app/views/layouts/templates/application.html.haml +1 -0
- data/installer/core/app/views/public_activity/layout/_create.html.haml +45 -0
- data/installer/core/app/views/public_activity/layout/_destroy.html.haml +15 -0
- data/installer/core/app/views/public_activity/layout/_update.html.haml +45 -0
- data/installer/core/app/views/public_activity/session/_create.html.haml +13 -0
- data/installer/core/app/views/public_activity/session/_destroy.html.haml +13 -0
- data/installer/core/app/views/templates/kaminari/_first_page.html.haml +9 -0
- data/installer/core/app/views/templates/kaminari/_gap.html.haml +8 -0
- data/installer/core/app/views/templates/kaminari/_last_page.html.haml +9 -0
- data/installer/core/app/views/templates/kaminari/_next_page.html.haml +9 -0
- data/installer/core/app/views/templates/kaminari/_page.html.haml +10 -0
- data/installer/core/app/views/templates/kaminari/_paginator.html.haml +18 -0
- data/installer/core/app/views/templates/kaminari/_prev_page.html.haml +9 -0
- data/installer/core/bin/bundle +3 -0
- data/installer/core/bin/rails +4 -0
- data/installer/core/bin/rake +4 -0
- data/installer/core/bin/setup +29 -0
- data/installer/core/bin/spring +15 -0
- data/installer/core/config.ru +4 -0
- data/installer/core/config/application.rb +46 -0
- data/installer/core/config/boot.rb +7 -0
- data/installer/core/config/database.yml +25 -0
- data/installer/core/config/environment.rb +10 -0
- data/installer/core/config/environments/development.rb +57 -0
- data/installer/core/config/environments/production.rb +105 -0
- data/installer/core/config/environments/test.rb +44 -0
- data/installer/core/config/gaAuth/gauth_key.p12 +0 -0
- data/installer/core/config/initializers/assets.rb +14 -0
- data/installer/core/config/initializers/cookies_serializer.rb +3 -0
- data/installer/core/config/initializers/date_formats.rb +2 -0
- data/installer/core/config/initializers/devise.rb +259 -0
- data/installer/core/config/initializers/filter_parameter_logging.rb +5 -0
- data/installer/core/config/initializers/inflections.rb +16 -0
- data/installer/core/config/initializers/keppler_configuration.rb +9 -0
- data/installer/core/config/initializers/mime_types.rb +6 -0
- data/installer/core/config/initializers/paginate_kaminari_configuration.rb +12 -0
- data/installer/core/config/initializers/rolify.rb +10 -0
- data/installer/core/config/initializers/route_traslator.rb +3 -0
- data/installer/core/config/initializers/session_store.rb +5 -0
- data/installer/core/config/initializers/simple_form.rb +170 -0
- data/installer/core/config/initializers/simple_form_bootstrap.rb +155 -0
- data/installer/core/config/initializers/time_formats.rb +2 -0
- data/installer/core/config/initializers/wrap_parameters.rb +15 -0
- data/installer/core/config/locales/devise.en.yml +61 -0
- data/installer/core/config/locales/devise.es.yml +62 -0
- data/installer/core/config/locales/en.yml +380 -0
- data/installer/core/config/locales/es.yml +420 -0
- data/installer/core/config/locales/routes.en.yml +4 -0
- data/installer/core/config/locales/routes.es.yml +5 -0
- data/installer/core/config/locales/simple_form.en.yml +45 -0
- data/installer/core/config/locales/simple_form.es.yml +95 -0
- data/installer/core/config/locales/social_share_button.es.yml +10 -0
- data/installer/core/config/menu.yml +53 -0
- data/installer/core/config/puma.rb +56 -0
- data/installer/core/config/routes.rb +94 -0
- data/installer/core/config/sitemap.rb +27 -0
- data/installer/core/config/spring.rb +6 -0
- data/installer/core/db/migrate/20140812203549_devise_create_users.rb +50 -0
- data/installer/core/db/migrate/20140812210925_rolify_create_roles.rb +19 -0
- data/installer/core/db/migrate/20151221173228_create_activities.rb +23 -0
- data/installer/core/db/migrate/20160122201215_create_settings.rb +15 -0
- data/installer/core/db/migrate/20160126141856_create_smtp_settings.rb +14 -0
- data/installer/core/db/migrate/20160128131802_create_scripts.rb +11 -0
- data/installer/core/db/migrate/20160128151351_create_google_analytics_settings.rb +12 -0
- data/installer/core/db/migrate/20160128193740_create_social_accounts.rb +25 -0
- data/installer/core/db/migrate/20160201134918_create_meta_tags.rb +13 -0
- data/installer/core/db/migrate/20160201210520_create_appearances.rb +11 -0
- data/installer/core/db/migrate/20170603145521_create_customizes.rb +10 -0
- data/installer/core/db/migrate/20171225023933_create_scaffolds.rb +10 -0
- data/installer/core/db/schema.rb +172 -0
- data/installer/core/db/seeds.rb +45 -0
- data/installer/core/lib/generators/keppler_front/keppler_front_generator.rb +139 -0
- data/installer/core/lib/generators/keppler_front/templates/controllers/controller.rb +17 -0
- data/installer/core/lib/generators/keppler_front/templates/views/template.html.haml +180 -0
- data/installer/core/lib/generators/keppler_relation/keppler_relation_generator.rb +219 -0
- data/installer/core/lib/generators/keppler_scaffold/keppler_scaffold_generator.rb +240 -0
- data/installer/core/lib/generators/keppler_scaffold/templates/controllers/controller.rb +143 -0
- data/installer/core/lib/generators/keppler_scaffold/templates/models/model.rb +41 -0
- data/installer/core/lib/generators/keppler_scaffold/templates/policies/policy.rb +9 -0
- data/installer/core/lib/generators/keppler_scaffold/templates/views/_description.html.haml +13 -0
- data/installer/core/lib/generators/keppler_scaffold/templates/views/_form.html.haml +60 -0
- data/installer/core/lib/generators/keppler_scaffold/templates/views/_index_show.html.haml +24 -0
- data/installer/core/lib/generators/keppler_scaffold/templates/views/_listing.html.haml +64 -0
- data/installer/core/lib/generators/keppler_scaffold/templates/views/edit.html.haml +1 -0
- data/installer/core/lib/generators/keppler_scaffold/templates/views/index.html.haml +97 -0
- data/installer/core/lib/generators/keppler_scaffold/templates/views/new.html.haml +1 -0
- data/installer/core/lib/generators/keppler_scaffold/templates/views/reload.js.haml +5 -0
- data/installer/core/lib/generators/keppler_scaffold/templates/views/show.html.haml +65 -0
- data/installer/core/lib/generators/keppler_scaffold/templates/views/show.js.haml +4 -0
- data/installer/core/lib/keppler_configuration.rb +12 -0
- data/installer/core/lib/templates/haml/scaffold/_form.html.haml +10 -0
- data/installer/core/plugins/keppler_ga_dashboard/Gemfile +15 -0
- data/installer/core/plugins/keppler_ga_dashboard/MIT-LICENSE +20 -0
- data/installer/core/plugins/keppler_ga_dashboard/README.md +51 -0
- data/installer/core/plugins/keppler_ga_dashboard/Rakefile +37 -0
- data/installer/core/plugins/keppler_ga_dashboard/app/assets/javascripts/keppler_ga_dashboard/active-users.js +64 -0
- data/installer/core/plugins/keppler_ga_dashboard/app/assets/javascripts/keppler_ga_dashboard/active-users.js.map +1 -0
- data/installer/core/plugins/keppler_ga_dashboard/app/assets/javascripts/keppler_ga_dashboard/dashboard.coffee +13 -0
- data/installer/core/plugins/keppler_ga_dashboard/app/assets/javascripts/keppler_ga_dashboard/date-range-selector.js +2 -0
- data/installer/core/plugins/keppler_ga_dashboard/app/assets/javascripts/keppler_ga_dashboard/date-range-selector.js.map +1 -0
- data/installer/core/plugins/keppler_ga_dashboard/app/assets/javascripts/keppler_ga_dashboard/view-selector2.js +196 -0
- data/installer/core/plugins/keppler_ga_dashboard/app/assets/javascripts/keppler_ga_dashboard/view-selector2.js.map +1 -0
- data/installer/core/plugins/keppler_ga_dashboard/app/assets/stylesheets/dashboard.scss +83 -0
- data/installer/core/plugins/keppler_ga_dashboard/app/controllers/keppler_ga_dashboard/dashboard_controller.rb +48 -0
- data/installer/core/plugins/keppler_ga_dashboard/app/helpers/keppler_ga_dashboard/application_helper.rb +4 -0
- data/installer/core/plugins/keppler_ga_dashboard/app/helpers/keppler_ga_dashboard/dashboard_helper.rb +14 -0
- data/installer/core/plugins/keppler_ga_dashboard/app/views/keppler_ga_dashboard/dashboard/analytics.html.haml +359 -0
- data/installer/core/plugins/keppler_ga_dashboard/bin/rails +12 -0
- data/installer/core/plugins/keppler_ga_dashboard/config/menu.yml +6 -0
- data/installer/core/plugins/keppler_ga_dashboard/config/routes.rb +3 -0
- data/installer/core/plugins/keppler_ga_dashboard/keppler_ga_dashboard.gemspec +22 -0
- data/installer/core/plugins/keppler_ga_dashboard/lib/keppler_ga_dashboard.rb +10 -0
- data/installer/core/plugins/keppler_ga_dashboard/lib/keppler_ga_dashboard/engine.rb +5 -0
- data/installer/core/plugins/keppler_ga_dashboard/lib/keppler_ga_dashboard/tasks/install.rb +58 -0
- data/installer/core/plugins/keppler_ga_dashboard/lib/keppler_ga_dashboard/version.rb +3 -0
- data/installer/core/plugins/keppler_ga_dashboard/lib/tasks/keppler_ga_dashboard_tasks.rake +13 -0
- data/installer/core/public/favicon.ico +0 -0
- data/installer/core/public/humans.txt +20 -0
- data/installer/core/public/robots.txt +5 -0
- data/installer/core/test/controllers/admin_controller_test.rb +11 -0
- data/installer/core/test/controllers/errors_controller_test.rb +24 -0
- data/installer/core/test/controllers/frontend_controller_test.rb +9 -0
- data/installer/core/test/controllers/fronts_controller_test.rb +49 -0
- data/installer/core/test/controllers/meta_tags_controller_test.rb +49 -0
- data/installer/core/test/controllers/scaffolds_controller_test.rb +49 -0
- data/installer/core/test/controllers/scripts_controller_test.rb +49 -0
- data/installer/core/test/controllers/settings_controller_test.rb +49 -0
- data/installer/core/test/controllers/users_controller_test.rb +18 -0
- data/installer/core/test/fixtures/appearances.yml +11 -0
- data/installer/core/test/fixtures/caches.yml +7 -0
- data/installer/core/test/fixtures/fronts.yml +7 -0
- data/installer/core/test/fixtures/google_adwords.yml +13 -0
- data/installer/core/test/fixtures/google_analytics_settings.yml +13 -0
- data/installer/core/test/fixtures/meta_tags.yml +13 -0
- data/installer/core/test/fixtures/roles.yml +11 -0
- data/installer/core/test/fixtures/scaffolds.yml +9 -0
- data/installer/core/test/fixtures/scripts.yml +11 -0
- data/installer/core/test/fixtures/settings.yml +13 -0
- data/installer/core/test/fixtures/smtp_settings.yml +17 -0
- data/installer/core/test/fixtures/social_accounts.yml +39 -0
- data/installer/core/test/fixtures/users.yml +10 -0
- data/installer/core/test/helpers/admin_helper_test.rb +4 -0
- data/installer/core/test/helpers/frontend_helper_test.rb +4 -0
- data/installer/core/test/mailers/application_mailer_test.rb +7 -0
- data/installer/core/test/mailers/previews/application_mailer_preview.rb +4 -0
- data/installer/core/test/models/apparence_test.rb +7 -0
- data/installer/core/test/models/cache_test.rb +7 -0
- data/installer/core/test/models/front_test.rb +7 -0
- data/installer/core/test/models/google_analytics_setting_test.rb +7 -0
- data/installer/core/test/models/meta_tag_test.rb +7 -0
- data/installer/core/test/models/role_test.rb +7 -0
- data/installer/core/test/models/scaffold_test.rb +7 -0
- data/installer/core/test/models/script_test.rb +7 -0
- data/installer/core/test/models/setting_test.rb +7 -0
- data/installer/core/test/models/smtp_setting_test.rb +7 -0
- data/installer/core/test/models/social_account_test.rb +7 -0
- data/installer/core/test/models/user_test.rb +7 -0
- data/installer/core/test/test_helper.rb +16 -0
- data/installer/core/vendor/assets/javascripts/bounce.min.js +5 -0
- data/installer/db_conf/conf.yml +50 -0
- data/installer/lib/conf.rb +31 -0
- data/installer/lib/scaffold.rb +10 -0
- data/installer/run.sh +19 -0
- data/installer/scripts/bin.sh +61 -0
- data/lib/keppler.rb +7 -0
- data/lib/keppler/cli.rb +12 -0
- data/lib/keppler/cli/generate.rb +19 -0
- data/lib/keppler/version.rb +3 -0
- metadata +497 -0
@@ -0,0 +1,62 @@
|
|
1
|
+
# Additional translations at https://github.com/plataformatec/devise/wiki/I18n
|
2
|
+
|
3
|
+
es:
|
4
|
+
devise:
|
5
|
+
confirmations:
|
6
|
+
confirmed: 'Tu cuenta fue confirmada exitosamente, has sido ingresado al sistema.'
|
7
|
+
send_instructions: 'Recibirás un correo electrónico con instrucciones sobre cómo confirmar tu cuenta en unos minutos.'
|
8
|
+
send_paranoid_instructions: 'Si tu correo electrónico existe en nuestra base de datos, recibirás un correo con instrucciones sobre cómo confirmar tu cuenta en unos minutos.'
|
9
|
+
failure:
|
10
|
+
already_authenticated: 'Ya estás dentro del sistema.'
|
11
|
+
inactive: 'Tu cuenta aún no ha sido activada.'
|
12
|
+
invalid: 'Datos inválidos. Revisa correo o contraseña.'
|
13
|
+
invalid_token: 'Ficha de autenticación invalida.'
|
14
|
+
last_attempt: "Yienes un último intento antes de que tu cuenta sea bloqueada."
|
15
|
+
locked: 'Tu cuenta está bloqueada.'
|
16
|
+
not_found_in_database: "No está registrado."
|
17
|
+
timeout: 'Tu sesión ha expirado, por favor ingresa nuevamente para continuar.'
|
18
|
+
unauthenticated: 'Necesitas ingresar o registrarte para continuar.'
|
19
|
+
unconfirmed: 'Debes confirmar tu cuenta para continuar.'
|
20
|
+
mailer:
|
21
|
+
confirmation_instructions:
|
22
|
+
subject: 'Instrucciones de Confirmación'
|
23
|
+
reset_password_instructions:
|
24
|
+
subject: 'Instrucciones de reinicio de contraseña'
|
25
|
+
unlock_instructions:
|
26
|
+
subject: 'Instrucciones de desbloqueo'
|
27
|
+
omniauth_callbacks:
|
28
|
+
success: 'Exitosamente autorizado desde la cuenta %{kind}.'
|
29
|
+
failure: 'No te pudimos autorizar en %{kind} debido a "%{reason}".'
|
30
|
+
passwords:
|
31
|
+
send_instructions: 'Recibirás un correo electrónico con instrucciones sobre cómo reiniciar tu contraseña en unos minutos.'
|
32
|
+
updated: 'Tu contraseña fue cambiada exitosamente y has sido ingresado al sistema.'
|
33
|
+
updated_not_active: 'Tu contraseña se cambió exitosamente.'
|
34
|
+
send_paranoid_instructions: "Si tu correo electrónico existe en nuestra base de datos, recibirás un enlace para reiniciar tu contraseña en unos minutos."
|
35
|
+
registrations:
|
36
|
+
signed_up: '¡Bienvenido! Has ingresado al sistema exitosamente.'
|
37
|
+
inactive_signed_up: 'Te has registrado exitosamente; sin embargo, no te hemos podido ingresar debido a que tu cuenta está %{reason}.'
|
38
|
+
updated: 'Actualizaste tu cuenta exitosamente.'
|
39
|
+
destroyed: '¡Hasta luego! Tu cuenta fue cancelada con éxito, esperamos verte de nuevo pronto. Gracias.'
|
40
|
+
reasons:
|
41
|
+
inactive: 'inactiva'
|
42
|
+
unconfirmed: 'sin confirmar'
|
43
|
+
locked: 'bloqueada'
|
44
|
+
sessions:
|
45
|
+
signed_in: 'Ingreso exitoso.'
|
46
|
+
signed_out: 'Has salido del sistema.'
|
47
|
+
forgot_password: '¿Olvidaste tu contraseña?'
|
48
|
+
log_in: "Entrar"
|
49
|
+
unlocks:
|
50
|
+
send_instructions: 'Recibirás un correo electrónico con instrucciones sobre cómo desbloquear tu cuenta en unos minutos.'
|
51
|
+
unlocked: 'Tu cuenta fue desbloqueada con éxito, has sido ingresado al sistema.'
|
52
|
+
send_paranoid_instructions: 'Si tu cuenta existe, recibirás un correo electrónico con instrucciones sobre cómo desbloquear tu cuenta en unos minutos.'
|
53
|
+
errors:
|
54
|
+
messages:
|
55
|
+
expired: "ha expirado, por favor pida uno nuevo"
|
56
|
+
not_found: "no encontrado"
|
57
|
+
already_confirmed: "ya está confirmada, por favor intente ingresar"
|
58
|
+
not_found: "no ha sido encontrado"
|
59
|
+
not_locked: "no está bloqueada"
|
60
|
+
not_saved:
|
61
|
+
one: "1 error evitó que este %{resource} fuera guardado:"
|
62
|
+
other: "%{count} errores evitaron que este %{resource} fuera guardado:"
|
@@ -0,0 +1,380 @@
|
|
1
|
+
en:
|
2
|
+
keppler:
|
3
|
+
login_message: Sign in to start your session
|
4
|
+
sidebar-menu:
|
5
|
+
customizes: Customizes
|
6
|
+
dashboard: Dashboard
|
7
|
+
users: Users
|
8
|
+
setting: Settings
|
9
|
+
keppler-design: 'Keppler Design'
|
10
|
+
development: 'Development'
|
11
|
+
setting-submenu:
|
12
|
+
basic-information: Basic Information
|
13
|
+
email-setting-smtp: 'Email setup (SMTP)'
|
14
|
+
social-accounts: 'Social accounts'
|
15
|
+
google-analytics: 'Google Analytics'
|
16
|
+
appearance: Appearance
|
17
|
+
seo: Seo
|
18
|
+
seo-submenu:
|
19
|
+
title-metas: 'Titles & Meta Tags'
|
20
|
+
google-adwords: 'Google Adwords'
|
21
|
+
google-analytics-tracks: 'Scripts'
|
22
|
+
keppler-messages: Messages
|
23
|
+
keppler-blog: Blog
|
24
|
+
keppler-blog-submenu:
|
25
|
+
posts: Posts
|
26
|
+
categories: Categories
|
27
|
+
models:
|
28
|
+
singularize:
|
29
|
+
customize: customize
|
30
|
+
meta_tag: meta tag
|
31
|
+
script: Script
|
32
|
+
setting: setting
|
33
|
+
configuration: configuration
|
34
|
+
user: user
|
35
|
+
pluralize:
|
36
|
+
customizes: customizes
|
37
|
+
meta_tags: meta tags
|
38
|
+
scripts: Scripts
|
39
|
+
settings: settings
|
40
|
+
configurations: configurations
|
41
|
+
user: users
|
42
|
+
modules:
|
43
|
+
admin/customizes: Customizes
|
44
|
+
admin/meta_tags: 'Meta tags'
|
45
|
+
admin/scripts: 'Scripts'
|
46
|
+
admin/scaffolds: 'Scaffolds'
|
47
|
+
admin/settings: 'Settings'
|
48
|
+
keppler_ga_dashboard/dashboard: 'Dashboard'
|
49
|
+
admin/users: 'Users'
|
50
|
+
messages:
|
51
|
+
not_authorized_page: You have no authorization to access this page
|
52
|
+
not_authorized_action: You have no authorization to perform this action
|
53
|
+
not_found_records: "No %{model} found"
|
54
|
+
no_events: No activities
|
55
|
+
data_confirm: Are you sure?
|
56
|
+
records: records
|
57
|
+
record_msg: "%{from} to %{to} of %{total}"
|
58
|
+
to: "to"
|
59
|
+
at: "at"
|
60
|
+
since_been_removed: whitch has since been removed
|
61
|
+
login_in_activity: login to system at
|
62
|
+
logout_in_activity: logout to system at
|
63
|
+
successfully:
|
64
|
+
created: "%{model} has been created successfully"
|
65
|
+
updated: "%{model} has been updated successfully"
|
66
|
+
deleted: "%{model} has been deleted successfully"
|
67
|
+
removed: "%{model} have been deleted successfully"
|
68
|
+
header_information:
|
69
|
+
setting:
|
70
|
+
basic_information: Basic Information
|
71
|
+
email_setting: Email setting (SMTP)
|
72
|
+
google_analytics_setting: Google analytics
|
73
|
+
social_accounts: Social accounts
|
74
|
+
appearance: Appearance
|
75
|
+
titles:
|
76
|
+
index: "%{model} - Listing"
|
77
|
+
show: "%{model} - Show"
|
78
|
+
edit: "%{model} - Edit"
|
79
|
+
new: "%{model} - New"
|
80
|
+
history: Activities
|
81
|
+
actions:
|
82
|
+
created: Created
|
83
|
+
updated: Updated
|
84
|
+
create: Create
|
85
|
+
update: Update
|
86
|
+
deleted: Deleted
|
87
|
+
new: New
|
88
|
+
show: Show
|
89
|
+
edit: Edit
|
90
|
+
clone: Clone
|
91
|
+
delete: Delete
|
92
|
+
index: List
|
93
|
+
change_rol: Change role
|
94
|
+
select_all: Select all
|
95
|
+
refresh: Refresh
|
96
|
+
search: Search
|
97
|
+
go_to_web: Go to web
|
98
|
+
edit_profile: Edit profile
|
99
|
+
sign_out: Sign out
|
100
|
+
back: Back
|
101
|
+
cancel: Cancel
|
102
|
+
assing_rol: Assign rol
|
103
|
+
select_rol: Select rol
|
104
|
+
save: Save
|
105
|
+
save_and_add_another: Save and add another
|
106
|
+
back_history: "Back to history"
|
107
|
+
appearance_defaut: Set default
|
108
|
+
apply: Apply
|
109
|
+
activerecord:
|
110
|
+
attributes:
|
111
|
+
id: Id
|
112
|
+
title: Title
|
113
|
+
subtitle: Subtitle
|
114
|
+
tags: Etiquetas
|
115
|
+
name: Name
|
116
|
+
first_name: 'First Name'
|
117
|
+
last_name: 'Last Name'
|
118
|
+
full_name: 'Full Name'
|
119
|
+
email: Email
|
120
|
+
role: Role
|
121
|
+
phone: Phone
|
122
|
+
phone_number: 'Phone Number'
|
123
|
+
phone_code: 'Phone Code'
|
124
|
+
area_code: 'Phone Code'
|
125
|
+
phone_one: 'Phone One'
|
126
|
+
phone_two: 'Phone Two'
|
127
|
+
age: Age
|
128
|
+
image: Image
|
129
|
+
photo: Photo
|
130
|
+
attachment: Attachment
|
131
|
+
pdf: PDF
|
132
|
+
avatar: Avatar
|
133
|
+
icon: Icon
|
134
|
+
image_background: 'Background Image'
|
135
|
+
brand: Brand
|
136
|
+
country: Country
|
137
|
+
state: State
|
138
|
+
city: City
|
139
|
+
company: Company
|
140
|
+
product: Product
|
141
|
+
client: Client
|
142
|
+
partner: Partner
|
143
|
+
code: Code
|
144
|
+
alliance: Alliance
|
145
|
+
ally: Ally
|
146
|
+
category: Category
|
147
|
+
service: Service
|
148
|
+
project: Project
|
149
|
+
type: Type
|
150
|
+
address: Address
|
151
|
+
size: Size
|
152
|
+
distance: Distance
|
153
|
+
description: Description
|
154
|
+
short_description: 'Short Description'
|
155
|
+
long_description: 'Long Description'
|
156
|
+
details: Details
|
157
|
+
message: Message
|
158
|
+
content: Content
|
159
|
+
date: Date
|
160
|
+
date_begin: 'Date Begin'
|
161
|
+
date_end: 'Date End'
|
162
|
+
begin: Inicio
|
163
|
+
end: Fin
|
164
|
+
check_in: 'Check In'
|
165
|
+
check_out: 'Check Out'
|
166
|
+
google_analytics_setting:
|
167
|
+
ga_account_id: Account id
|
168
|
+
ga_tracking_id: Tracking id
|
169
|
+
ga_status: Enabled?
|
170
|
+
errors:
|
171
|
+
messages:
|
172
|
+
record_invalid: "Validation failed: %{errors}"
|
173
|
+
restrict_destroy: "Cannot delete record"
|
174
|
+
restrict_dependent_destroy:
|
175
|
+
has_one: "Cannot delete record because a dependent %{record} exists"
|
176
|
+
has_many: "Cannot delete record because dependent %{record} exist"
|
177
|
+
date:
|
178
|
+
abbr_day_names:
|
179
|
+
- Sun
|
180
|
+
- Mon
|
181
|
+
- Tue
|
182
|
+
- Wed
|
183
|
+
- Thu
|
184
|
+
- Fri
|
185
|
+
- Sat
|
186
|
+
abbr_month_names:
|
187
|
+
-
|
188
|
+
- Jan
|
189
|
+
- Feb
|
190
|
+
- Mar
|
191
|
+
- Apr
|
192
|
+
- May
|
193
|
+
- Jun
|
194
|
+
- Jul
|
195
|
+
- Aug
|
196
|
+
- Sep
|
197
|
+
- Oct
|
198
|
+
- Nov
|
199
|
+
- Dec
|
200
|
+
day_names:
|
201
|
+
- Sunday
|
202
|
+
- Monday
|
203
|
+
- Tuesday
|
204
|
+
- Wednesday
|
205
|
+
- Thursday
|
206
|
+
- Friday
|
207
|
+
- Saturday
|
208
|
+
formats:
|
209
|
+
default: "%Y-%m-%d"
|
210
|
+
long: "%B %d, %Y"
|
211
|
+
short: "%b %d"
|
212
|
+
month_names:
|
213
|
+
-
|
214
|
+
- January
|
215
|
+
- February
|
216
|
+
- March
|
217
|
+
- April
|
218
|
+
- May
|
219
|
+
- June
|
220
|
+
- July
|
221
|
+
- August
|
222
|
+
- September
|
223
|
+
- October
|
224
|
+
- November
|
225
|
+
- December
|
226
|
+
order:
|
227
|
+
- :year
|
228
|
+
- :month
|
229
|
+
- :day
|
230
|
+
datetime:
|
231
|
+
distance_in_words:
|
232
|
+
about_x_hours:
|
233
|
+
one: about 1 hour
|
234
|
+
other: about %{count} hours
|
235
|
+
about_x_months:
|
236
|
+
one: about 1 month
|
237
|
+
other: about %{count} months
|
238
|
+
about_x_years:
|
239
|
+
one: about 1 year
|
240
|
+
other: about %{count} years
|
241
|
+
almost_x_years:
|
242
|
+
one: almost 1 year
|
243
|
+
other: almost %{count} years
|
244
|
+
half_a_minute: half a minute
|
245
|
+
less_than_x_minutes:
|
246
|
+
one: less than a minute
|
247
|
+
other: less than %{count} minutes
|
248
|
+
less_than_x_seconds:
|
249
|
+
one: less than 1 second
|
250
|
+
other: less than %{count} seconds
|
251
|
+
over_x_years:
|
252
|
+
one: over 1 year
|
253
|
+
other: over %{count} years
|
254
|
+
x_days:
|
255
|
+
one: 1 day
|
256
|
+
other: "%{count} days"
|
257
|
+
x_minutes:
|
258
|
+
one: 1 minute
|
259
|
+
other: "%{count} minutes"
|
260
|
+
x_months:
|
261
|
+
one: 1 month
|
262
|
+
other: "%{count} months"
|
263
|
+
x_years:
|
264
|
+
one: 1 year
|
265
|
+
other: "%{count} years"
|
266
|
+
x_seconds:
|
267
|
+
one: 1 second
|
268
|
+
other: "%{count} seconds"
|
269
|
+
prompts:
|
270
|
+
day: Day
|
271
|
+
hour: Hour
|
272
|
+
minute: Minute
|
273
|
+
month: Month
|
274
|
+
second: Seconds
|
275
|
+
year: Year
|
276
|
+
errors:
|
277
|
+
format: "%{attribute} %{message}"
|
278
|
+
messages:
|
279
|
+
accepted: must be accepted
|
280
|
+
blank: can't be blank
|
281
|
+
present: must be blank
|
282
|
+
confirmation: doesn't match %{attribute}
|
283
|
+
empty: can't be empty
|
284
|
+
equal_to: must be equal to %{count}
|
285
|
+
even: must be even
|
286
|
+
exclusion: is reserved
|
287
|
+
greater_than: must be greater than %{count}
|
288
|
+
greater_than_or_equal_to: must be greater than or equal to %{count}
|
289
|
+
inclusion: is not included in the list
|
290
|
+
invalid: is invalid
|
291
|
+
less_than: must be less than %{count}
|
292
|
+
less_than_or_equal_to: must be less than or equal to %{count}
|
293
|
+
model_invalid: "Validation failed: %{errors}"
|
294
|
+
not_a_number: is not a number
|
295
|
+
not_an_integer: must be an integer
|
296
|
+
odd: must be odd
|
297
|
+
required: must exist
|
298
|
+
taken: has already been taken
|
299
|
+
too_long:
|
300
|
+
one: is too long (maximum is 1 character)
|
301
|
+
other: is too long (maximum is %{count} characters)
|
302
|
+
too_short:
|
303
|
+
one: is too short (minimum is 1 character)
|
304
|
+
other: is too short (minimum is %{count} characters)
|
305
|
+
wrong_length:
|
306
|
+
one: is the wrong length (should be 1 character)
|
307
|
+
other: is the wrong length (should be %{count} characters)
|
308
|
+
other_than: must be other than %{count}
|
309
|
+
template:
|
310
|
+
body: 'There were problems with the following fields:'
|
311
|
+
header:
|
312
|
+
one: 1 error prohibited this %{model} from being saved
|
313
|
+
other: "%{count} errors prohibited this %{model} from being saved"
|
314
|
+
helpers:
|
315
|
+
select:
|
316
|
+
prompt: Please select
|
317
|
+
submit:
|
318
|
+
create: Create %{model}
|
319
|
+
submit: Save %{model}
|
320
|
+
update: Update %{model}
|
321
|
+
number:
|
322
|
+
currency:
|
323
|
+
format:
|
324
|
+
delimiter: ","
|
325
|
+
format: "%u%n"
|
326
|
+
precision: 2
|
327
|
+
separator: "."
|
328
|
+
significant: false
|
329
|
+
strip_insignificant_zeros: false
|
330
|
+
unit: "$"
|
331
|
+
format:
|
332
|
+
delimiter: ","
|
333
|
+
precision: 3
|
334
|
+
separator: "."
|
335
|
+
significant: false
|
336
|
+
strip_insignificant_zeros: false
|
337
|
+
human:
|
338
|
+
decimal_units:
|
339
|
+
format: "%n %u"
|
340
|
+
units:
|
341
|
+
billion: Billion
|
342
|
+
million: Million
|
343
|
+
quadrillion: Quadrillion
|
344
|
+
thousand: Thousand
|
345
|
+
trillion: Trillion
|
346
|
+
unit: ''
|
347
|
+
format:
|
348
|
+
delimiter: ''
|
349
|
+
precision: 3
|
350
|
+
significant: true
|
351
|
+
strip_insignificant_zeros: true
|
352
|
+
storage_units:
|
353
|
+
format: "%n %u"
|
354
|
+
units:
|
355
|
+
byte:
|
356
|
+
one: Byte
|
357
|
+
other: Bytes
|
358
|
+
gb: GB
|
359
|
+
kb: KB
|
360
|
+
mb: MB
|
361
|
+
tb: TB
|
362
|
+
percentage:
|
363
|
+
format:
|
364
|
+
delimiter: ''
|
365
|
+
format: "%n%"
|
366
|
+
precision:
|
367
|
+
format:
|
368
|
+
delimiter: ''
|
369
|
+
support:
|
370
|
+
array:
|
371
|
+
last_word_connector: ", and "
|
372
|
+
two_words_connector: " and "
|
373
|
+
words_connector: ", "
|
374
|
+
time:
|
375
|
+
am: am
|
376
|
+
formats:
|
377
|
+
default: "%a, %d %b %Y %H:%M:%S %z"
|
378
|
+
long: "%B %d, %Y %H:%M"
|
379
|
+
short: "%d %b %H:%M"
|
380
|
+
pm: pm
|
@@ -0,0 +1,420 @@
|
|
1
|
+
es:
|
2
|
+
keppler:
|
3
|
+
login_message: Ingresa tus datos para entrar
|
4
|
+
powered: Desarrollado por
|
5
|
+
navigation:
|
6
|
+
last_session: Ultima sesión
|
7
|
+
sidebar-menu:
|
8
|
+
customizes: Personalización
|
9
|
+
dashboard: Tablero
|
10
|
+
users: Usuarios
|
11
|
+
development: 'Desarrollo Keppler'
|
12
|
+
setting: Configuración
|
13
|
+
keppler-design: 'Diseño Keppler'
|
14
|
+
keppler-design-submenu:
|
15
|
+
frontend-templates: 'Plantillas y Temas'
|
16
|
+
admin-appearance: 'Apariencia de Keppler'
|
17
|
+
setting-submenu:
|
18
|
+
basic-information: 'Información básica'
|
19
|
+
email-setting-smtp: 'Configuración SMTP'
|
20
|
+
social-accounts: 'Redes sociales'
|
21
|
+
google-analytics: 'Google Analytics'
|
22
|
+
appearance: Apariencia
|
23
|
+
seo: Seo
|
24
|
+
seo-submenu:
|
25
|
+
title-metas: 'Títulos y Meta tags'
|
26
|
+
google-adwords: 'Google Adwords'
|
27
|
+
scripts: 'Scripts'
|
28
|
+
keppler-messages: Mensajes
|
29
|
+
keppler-messages-submenu:
|
30
|
+
messages: Mensajes
|
31
|
+
message-settings: Configuración de mensajes
|
32
|
+
keppler-blog: Blog
|
33
|
+
keppler-blog-submenu:
|
34
|
+
posts: Posts
|
35
|
+
categories: Categorías
|
36
|
+
models:
|
37
|
+
singularize:
|
38
|
+
customize: customize
|
39
|
+
meta_tag: meta tag
|
40
|
+
script: script
|
41
|
+
setting: configuración
|
42
|
+
configuration: configuración
|
43
|
+
user: usuario
|
44
|
+
pluralize:
|
45
|
+
customizes: customizes
|
46
|
+
meta_tags: meta tags
|
47
|
+
scripts: scripts
|
48
|
+
settings: configuraciones
|
49
|
+
configurations: configuraciones
|
50
|
+
user: usuarios
|
51
|
+
script: scripts
|
52
|
+
modules:
|
53
|
+
admin/customizes: Customizes
|
54
|
+
admin/meta_tags: 'Meta tags'
|
55
|
+
admin/scripts: 'Scripts'
|
56
|
+
admin/scaffolds: 'Scaffolds'
|
57
|
+
admin/settings: 'Configuraciones'
|
58
|
+
admin/users: 'Usuarios'
|
59
|
+
keppler_ga_dashboard/dashboard: 'Dashboard'
|
60
|
+
keppler_contact_us/message_settings: 'Configuración de mensajes'
|
61
|
+
messages:
|
62
|
+
not_authorized_page: Usted no tiene autorización para acceder a esta página
|
63
|
+
not_authorized_action: Usted no tiene autorización para realizar esta acción
|
64
|
+
not_found_records: "No se han encontrado %{model}"
|
65
|
+
no_events: Sin historial
|
66
|
+
data_confirm: ¿Estás seguro?
|
67
|
+
records: registros
|
68
|
+
record_msg: "%{from} al %{to} de %{total}"
|
69
|
+
to: "de"
|
70
|
+
has: ha
|
71
|
+
at: "a las"
|
72
|
+
y: Si
|
73
|
+
n: 'No'
|
74
|
+
since_been_removed: ha sido eliminado
|
75
|
+
login_in_activity: Inicio de sesión en
|
76
|
+
logout_in_activity: Salido del sistema en
|
77
|
+
successfully:
|
78
|
+
created: "%{model} se ha creado satisfactoriamente"
|
79
|
+
updated: "%{model} se ha actualizado satisfactoriamente"
|
80
|
+
deleted: "%{model} se ha eliminado satisfactoriamente"
|
81
|
+
removed: "%{model} se han eliminado satisfactoriamente"
|
82
|
+
header_information:
|
83
|
+
setting:
|
84
|
+
basic_information: Información básica
|
85
|
+
email_setting: Configuración de SMTP
|
86
|
+
google_analytics_setting: Google analytics
|
87
|
+
social_accounts: Cuentas de redes sociales
|
88
|
+
appearance: Aparencia
|
89
|
+
titles:
|
90
|
+
index: "%{model} - Listado"
|
91
|
+
show: "%{model} - Ver"
|
92
|
+
edit: "%{model} - Editar"
|
93
|
+
new: "%{model} - Nuevo"
|
94
|
+
history: Historial
|
95
|
+
actions:
|
96
|
+
created: Creado
|
97
|
+
updated: Actualizado
|
98
|
+
new: Nuevo
|
99
|
+
show: Ver
|
100
|
+
edit: Editar
|
101
|
+
clone: Clonar
|
102
|
+
delete: Eliminar
|
103
|
+
deleted: Eliminado
|
104
|
+
index: Listado
|
105
|
+
change_rol: Cambiar rol
|
106
|
+
select_all: Seleccionar todo
|
107
|
+
refresh: Refrescar
|
108
|
+
search: Buscar
|
109
|
+
go_to_web: Ir a la web
|
110
|
+
edit_profile: Editar perfil
|
111
|
+
sign_out: Sign out
|
112
|
+
back: Volver
|
113
|
+
cancel: Cancelar
|
114
|
+
assing_rol: Asignar rol
|
115
|
+
select_rol: Seleccionar rol
|
116
|
+
save: Guardar
|
117
|
+
save_and_add_another: Guardar y añadir otro
|
118
|
+
back_history: "Volver al historial"
|
119
|
+
appearance_defaut: Por defecto
|
120
|
+
apply: Aplicar
|
121
|
+
download_records: Descargar registros
|
122
|
+
upload_records: Cargar registros
|
123
|
+
activerecord:
|
124
|
+
attributes:
|
125
|
+
id: Identificador
|
126
|
+
title: Título
|
127
|
+
subtitle: Subtítulo
|
128
|
+
tags: Etiquetas
|
129
|
+
name: Nombre
|
130
|
+
first_name: 'Primer Nombre'
|
131
|
+
last_name: 'Último Nombre'
|
132
|
+
full_name: 'Nombre Completo'
|
133
|
+
email: Correo
|
134
|
+
role: Rol
|
135
|
+
phone: Teléfono
|
136
|
+
phone_number: 'Número de Teléfono'
|
137
|
+
phone_number: 'Código de Area'
|
138
|
+
area_number: 'Código de Area'
|
139
|
+
phone_one: 'Teléfono #1'
|
140
|
+
phone_two: 'Teléfono #2'
|
141
|
+
age: Edad
|
142
|
+
image: Imagen
|
143
|
+
photo: Foto
|
144
|
+
attachment: Adjunto
|
145
|
+
file: Archivo
|
146
|
+
pdf: PDF
|
147
|
+
avatar: Avatar
|
148
|
+
brand: Logo
|
149
|
+
logo: Logo
|
150
|
+
favicon: Favicon
|
151
|
+
icon: Icono
|
152
|
+
image_background: 'Imagen de fondo'
|
153
|
+
country: País
|
154
|
+
state: Estado
|
155
|
+
city: Ciudad
|
156
|
+
company: Empresa
|
157
|
+
product: Producto
|
158
|
+
client: Cliente
|
159
|
+
partner: Socio
|
160
|
+
code: Código
|
161
|
+
alliance: Alianza
|
162
|
+
ally: Aliado
|
163
|
+
author: Autor
|
164
|
+
category: Categoría
|
165
|
+
subcategory: Subcategoría
|
166
|
+
service: Servicio
|
167
|
+
project: Proyecto
|
168
|
+
type: Tipo
|
169
|
+
address: Dirección
|
170
|
+
size: Tamaño
|
171
|
+
distance: Distancia
|
172
|
+
description: Descripción
|
173
|
+
short_description: 'Descripción Corta'
|
174
|
+
long_description: 'Descripción Larga'
|
175
|
+
details: Detalles
|
176
|
+
message: Mensaje
|
177
|
+
content: Contenido
|
178
|
+
date: Fecha
|
179
|
+
date_begin: 'Fecha Inicial'
|
180
|
+
date_end: 'Fecha Final'
|
181
|
+
begin: Inicio
|
182
|
+
end: Fin
|
183
|
+
check_in: Entrada
|
184
|
+
check_out: Salida
|
185
|
+
permalink: Permalink
|
186
|
+
sign_in_count: Veces logeado
|
187
|
+
created_at: Fecha de creación
|
188
|
+
updated_at: Ultima actualización
|
189
|
+
password: Contraseña
|
190
|
+
password_confirmation: Confirmar contraseña
|
191
|
+
address: Dirección del servidor
|
192
|
+
port: Puerto
|
193
|
+
domain_name: Dominio
|
194
|
+
url: Url
|
195
|
+
meta_tags: 'Meta Tags'
|
196
|
+
script: 'Script'
|
197
|
+
campaign_name: Campaña
|
198
|
+
script: Script
|
199
|
+
mailer_from: 'Enviar desde'
|
200
|
+
mailer_to: 'Hacia'
|
201
|
+
ga_account_id: Identificador de la cuenta
|
202
|
+
ga_tracking: Identificador de segumiento
|
203
|
+
ga_status: Habilitar Google Analytics
|
204
|
+
errors:
|
205
|
+
messages:
|
206
|
+
record_invalid: "Validación fallida: %{errors}"
|
207
|
+
restrict_destroy: "No se puede borrar el registro"
|
208
|
+
restrict_dependent_destroy:
|
209
|
+
has_one: "No se puede borrar el registro porque un registro dependiente %{record} existe"
|
210
|
+
has_many: "No se puede borrar el registro porque registros dependientes %{record} existen"
|
211
|
+
date:
|
212
|
+
abbr_day_names:
|
213
|
+
- Dom
|
214
|
+
- Lun
|
215
|
+
- Mar
|
216
|
+
- Mié
|
217
|
+
- Jue
|
218
|
+
- Vie
|
219
|
+
- Sáb
|
220
|
+
abbr_month_names:
|
221
|
+
-
|
222
|
+
- Ene
|
223
|
+
- Feb
|
224
|
+
- Mar
|
225
|
+
- Abr
|
226
|
+
- May
|
227
|
+
- Jun
|
228
|
+
- Jul
|
229
|
+
- Ago
|
230
|
+
- Sep
|
231
|
+
- Oct
|
232
|
+
- Nov
|
233
|
+
- Dic
|
234
|
+
day_names:
|
235
|
+
- Domingo
|
236
|
+
- Lunes
|
237
|
+
- Martes
|
238
|
+
- Miércoles
|
239
|
+
- Jueves
|
240
|
+
- Viernes
|
241
|
+
- Sábado
|
242
|
+
formats:
|
243
|
+
default: ! '%d/%m/%Y'
|
244
|
+
long: ! '%A, %d de %B de %Y'
|
245
|
+
short: ! '%d de %b'
|
246
|
+
event_date_single_day: ! '%a, %d de %b de %Y'
|
247
|
+
event_date: ! '%d de %b de %Y'
|
248
|
+
month_names:
|
249
|
+
-
|
250
|
+
- Enero
|
251
|
+
- Febrero
|
252
|
+
- Marzo
|
253
|
+
- Abril
|
254
|
+
- Mayo
|
255
|
+
- Junio
|
256
|
+
- Julio
|
257
|
+
- Agosto
|
258
|
+
- Septiembre
|
259
|
+
- Octubre
|
260
|
+
- Noviembre
|
261
|
+
- Diciembre
|
262
|
+
order:
|
263
|
+
- :day
|
264
|
+
- :month
|
265
|
+
- :year
|
266
|
+
datetime:
|
267
|
+
distance_in_words:
|
268
|
+
about_x_hours:
|
269
|
+
one: cerca de 1 hora
|
270
|
+
other: cerca de %{count} horas
|
271
|
+
about_x_months:
|
272
|
+
one: cerca de 1 mes
|
273
|
+
other: cerca de %{count} meses
|
274
|
+
about_x_years:
|
275
|
+
one: cerca de 1 año
|
276
|
+
other: cerca de %{count} años
|
277
|
+
almost_x_years:
|
278
|
+
one: casi 1 año
|
279
|
+
other: casi %{count} años
|
280
|
+
half_a_minute: medio minuto
|
281
|
+
less_than_x_minutes:
|
282
|
+
one: menos de 1 minuto
|
283
|
+
other: menos de %{count} minutos
|
284
|
+
less_than_x_seconds:
|
285
|
+
one: menos de 1 segundo
|
286
|
+
other: menos de %{count} segundos
|
287
|
+
over_x_years:
|
288
|
+
one: más de 1 año
|
289
|
+
other: más de %{count} años
|
290
|
+
x_days:
|
291
|
+
one: 1 día
|
292
|
+
other: ! '%{count} días'
|
293
|
+
x_minutes:
|
294
|
+
one: 1 minuto
|
295
|
+
other: ! '%{count} minutos'
|
296
|
+
x_months:
|
297
|
+
one: 1 mes
|
298
|
+
other: ! '%{count} meses'
|
299
|
+
x_seconds:
|
300
|
+
one: 1 segundo
|
301
|
+
other: ! '%{count} segundos'
|
302
|
+
prompts:
|
303
|
+
day: Día
|
304
|
+
hour: Hora
|
305
|
+
minute: Minuto
|
306
|
+
month: Mes
|
307
|
+
second: Segundos
|
308
|
+
year: Año
|
309
|
+
errors:
|
310
|
+
format: ! '%{attribute} %{message}'
|
311
|
+
messages:
|
312
|
+
tipo_transaccion: no puede realizarse, el artículo no posee existencia
|
313
|
+
lista_de_articulos: no puede estar vacía
|
314
|
+
stock_maximo: no puede ser menor al stock mínimo
|
315
|
+
stock_minimo: no puede ser mayor al stock máximo
|
316
|
+
only_letters: solo permite letras
|
317
|
+
extension_white_list_error: "inválida, asegúrese de que el formato de la imagen sea (jpg, jpeg, gif, png)"
|
318
|
+
accepted: debe ser aceptado
|
319
|
+
blank: no puede estar en blanco
|
320
|
+
confirmation: no coincide con la confirmación
|
321
|
+
empty: no puede estar vacío
|
322
|
+
equal_to: debe ser igual a %{count}
|
323
|
+
even: debe ser un número par
|
324
|
+
exclusion: está reservado
|
325
|
+
greater_than: debe ser mayor que %{count}
|
326
|
+
greater_than_or_equal_to: debe ser mayor o igual que %{count}
|
327
|
+
inclusion: no está incluído en la lista
|
328
|
+
invalid: es inválido
|
329
|
+
less_than: debe ser menor que %{count}
|
330
|
+
less_than_or_equal_to: debe ser menor o igual que %{count}
|
331
|
+
not_a_number: no es un número
|
332
|
+
not_an_integer: debe ser un entero
|
333
|
+
odd: debe ser un número impar
|
334
|
+
record_invalid: ! 'La validación falló: %{errors}'
|
335
|
+
taken: ya se encuentra registrado
|
336
|
+
invalid_email_format: no es un correo válido
|
337
|
+
too_long:
|
338
|
+
one: es demasiado largo (máximo 1 caracter)
|
339
|
+
other: es demasiado largo (máximo %{count} caracteres)
|
340
|
+
too_short:
|
341
|
+
one: es demasiado corto (mínimo 1 caracter)
|
342
|
+
other: es demasiado corto (mínimo %{count} caracteres)
|
343
|
+
wrong_length:
|
344
|
+
one: longitud errónea (debe ser de 1 caracter)
|
345
|
+
other: longitud errónea (debe ser de %{count} caracteres)
|
346
|
+
exception:
|
347
|
+
restrict: No se puede eliminar debido a que posee registros asociados
|
348
|
+
template:
|
349
|
+
body: ! 'Revise que los siguientes campos sean válidos:'
|
350
|
+
header:
|
351
|
+
one: ! '%{model} no pudo guardarse debido a 1 error'
|
352
|
+
other: ! '%{model} no pudo guardarse debido a %{count} errores'
|
353
|
+
helpers:
|
354
|
+
select:
|
355
|
+
prompt: Por favor selecciona
|
356
|
+
submit:
|
357
|
+
create: Crear
|
358
|
+
submit: Guardar
|
359
|
+
update: Actualizar
|
360
|
+
number:
|
361
|
+
currency:
|
362
|
+
format:
|
363
|
+
delimiter: ! '.'
|
364
|
+
format: ! '%u %n'
|
365
|
+
precision: 2
|
366
|
+
separator: ','
|
367
|
+
significant: false
|
368
|
+
strip_insignificant_zeros: false
|
369
|
+
unit: BsF.
|
370
|
+
format:
|
371
|
+
delimiter: ! '.'
|
372
|
+
precision: 2
|
373
|
+
separator: ','
|
374
|
+
significant: false
|
375
|
+
strip_insignificant_zeros: false
|
376
|
+
human:
|
377
|
+
decimal_units:
|
378
|
+
format: ! '%n %u'
|
379
|
+
units:
|
380
|
+
billion: mil millones
|
381
|
+
million: millón
|
382
|
+
quadrillion: mil billones
|
383
|
+
thousand: mil
|
384
|
+
trillion: billón
|
385
|
+
unit: ''
|
386
|
+
format:
|
387
|
+
delimiter: ! ','
|
388
|
+
precision: 3
|
389
|
+
significant: true
|
390
|
+
strip_insignificant_zeros: true
|
391
|
+
storage_units:
|
392
|
+
format: ! '%n %u'
|
393
|
+
units:
|
394
|
+
byte:
|
395
|
+
one: Byte
|
396
|
+
other: Bytes
|
397
|
+
gb: GB
|
398
|
+
kb: KB
|
399
|
+
mb: MB
|
400
|
+
tb: TB
|
401
|
+
percentage:
|
402
|
+
format:
|
403
|
+
delimiter: ! ','
|
404
|
+
precision:
|
405
|
+
format:
|
406
|
+
delimiter: ! ','
|
407
|
+
support:
|
408
|
+
array:
|
409
|
+
last_word_connector: ! ' y '
|
410
|
+
two_words_connector: ! ' y '
|
411
|
+
words_connector: ! ', '
|
412
|
+
time:
|
413
|
+
am: am
|
414
|
+
formats:
|
415
|
+
default: ! '%a, %d de %b de %Y a las %H:%M:%S %Z'
|
416
|
+
long: ! '%A, %d de %B de %Y a las %I:%M %p'
|
417
|
+
short: ! '%d de %b a las %H:%M hrs'
|
418
|
+
date: ! '%d/%m/%Y'
|
419
|
+
pm: pm
|
420
|
+
hello: "Hola Mundo"
|