typus 3.0.2 → 3.0.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/Gemfile +20 -9
- data/Gemfile.lock +93 -65
- data/MIT-LICENSE +1 -1
- data/README.md +61 -0
- data/Rakefile +5 -0
- data/app/controllers/admin/account_controller.rb +7 -10
- data/app/controllers/admin/base_controller.rb +16 -1
- data/app/controllers/admin/resources_controller.rb +270 -159
- data/app/controllers/admin/session_controller.rb +8 -9
- data/app/helpers/admin/base_helper.rb +13 -28
- data/app/helpers/admin/dashboard_helper.rb +4 -10
- data/app/helpers/admin/file_preview_helper.rb +70 -0
- data/app/helpers/admin/filters_helper.rb +64 -45
- data/app/helpers/admin/form_helper.rb +37 -62
- data/app/helpers/admin/relationships_helper.rb +63 -78
- data/app/helpers/admin/resources_helper.rb +10 -31
- data/app/helpers/admin/search_helper.rb +6 -9
- data/app/helpers/admin/sidebar_helper.rb +15 -20
- data/app/helpers/admin/table_helper.rb +79 -170
- data/app/mailers/admin/mailer.rb +1 -1
- data/app/views/admin/account/forgot_password.html.erb +2 -2
- data/app/views/admin/account/new.html.erb +8 -4
- data/app/views/admin/base/user_guide.html.erb +85 -0
- data/app/views/admin/dashboard/_sidebar.html.erb +3 -1
- data/app/views/admin/dashboard/show.html.erb +2 -2
- data/app/views/admin/dashboard/styles.html.erb +2 -2
- data/app/views/admin/helpers/_apps.html.erb +5 -4
- data/app/views/admin/helpers/_file_preview.html.erb +3 -0
- data/app/views/admin/helpers/_header.html.erb +3 -3
- data/app/views/admin/helpers/_login_info.html.erb +2 -2
- data/app/views/admin/helpers/dashboard/_applications.html.erb +6 -9
- data/app/views/admin/helpers/dashboard/_resources.html.erb +2 -3
- data/app/views/admin/helpers/filters/_filters.html.erb +1 -1
- data/app/views/admin/helpers/resources/_display_link_to_previous.html.erb +1 -1
- data/app/views/admin/helpers/resources/_errors.html.erb +10 -0
- data/app/views/admin/helpers/search/_search.html.erb +1 -1
- data/app/views/admin/helpers/sidebar/_sidebar.html.erb +6 -3
- data/app/views/admin/helpers/table/_table.html.erb +17 -5
- data/app/views/admin/mailer/reset_password_link.text.erb +2 -2
- data/app/views/admin/resources/_form.html.erb +3 -12
- data/app/views/admin/resources/edit.html.erb +7 -5
- data/app/views/admin/resources/index.html.erb +13 -18
- data/app/views/admin/resources/new.html.erb +4 -4
- data/app/views/admin/resources/show.html.erb +9 -13
- data/app/views/admin/session/new.html.erb +8 -4
- data/app/views/admin/templates/_belongs_to.html.erb +1 -1
- data/app/views/admin/templates/_boolean.html.erb +2 -2
- data/app/views/admin/templates/_date.html.erb +2 -2
- data/app/views/admin/templates/_datetime.html.erb +2 -2
- data/app/views/admin/templates/_file.html.erb +3 -19
- data/app/views/admin/templates/_has_n.html.erb +4 -4
- data/app/views/admin/templates/_has_one.html.erb +14 -0
- data/app/views/admin/templates/_password.html.erb +2 -2
- data/app/views/admin/templates/_profile_sidebar.html.erb +3 -0
- data/app/views/admin/templates/_relate_form.html.erb +2 -1
- data/app/views/admin/templates/_selector.html.erb +1 -1
- data/app/views/admin/templates/_string.html.erb +6 -6
- data/app/views/admin/templates/_text.html.erb +11 -4
- data/app/views/admin/templates/_time.html.erb +2 -2
- data/app/views/admin/templates/_tree.html.erb +1 -1
- data/app/views/layouts/admin/base.html.erb +7 -6
- data/app/views/layouts/admin/session.html.erb +4 -14
- data/config/{available_locales/ca_models.yml → locales/typus.ca.models.yml} +5 -4
- data/config/locales/typus.ca.yml +81 -0
- data/config/{available_locales/de_models.yml → locales/typus.de.models.yml} +6 -2
- data/config/locales/typus.de.yml +80 -0
- data/config/locales/typus.el.models.yml +17 -0
- data/config/locales/typus.el.yml +82 -0
- data/config/{available_locales/es_models.yml → locales/typus.es.models.yml} +9 -4
- data/config/locales/typus.es.yml +82 -0
- data/config/{available_locales/fr_models.yml → locales/typus.fr.models.yml} +8 -3
- data/config/locales/typus.fr.yml +87 -0
- data/config/{available_locales/hu_models.yml → locales/typus.hu.models.yml} +6 -2
- data/config/locales/typus.hu.yml +80 -0
- data/config/{available_locales/it_models.yml → locales/typus.it.models.yml} +7 -4
- data/config/locales/typus.it.yml +89 -0
- data/config/{available_locales/language_models.yml.template → locales/typus.locale.models.yml.template} +8 -4
- data/config/locales/typus.locale.yml.template +81 -0
- data/config/{available_locales/pt-BR_models.yml → locales/typus.pt-BR.models.yml} +6 -2
- data/config/locales/typus.pt-BR.yml +80 -0
- data/config/{available_locales/ru_models.yml → locales/typus.ru.models.yml} +6 -2
- data/config/locales/typus.ru.yml +80 -0
- data/config/locales/typus.zh-CN.models.yml +17 -0
- data/config/locales/typus.zh-CN.yml +79 -0
- data/config/routes.rb +11 -7
- data/lib/generators/templates/config/initializers/typus.rb +8 -5
- data/lib/generators/templates/config/initializers/typus_resources.rb +0 -3
- data/lib/generators/templates/config/typus/README +6 -6
- data/lib/generators/templates/config/typus/typus.yml +5 -5
- data/lib/generators/templates/controller.rb +1 -1
- data/lib/generators/templates/migration.rb +1 -0
- data/lib/generators/templates/public/admin/javascripts/application.js +0 -4
- data/lib/generators/templates/public/admin/javascripts/jquery-1.4.4.min.js +167 -0
- data/lib/generators/templates/public/admin/javascripts/jquery.application.js +16 -0
- data/lib/generators/templates/public/admin/javascripts/jquery.rails.js +50 -22
- data/lib/generators/templates/public/admin/stylesheets/screen.css +43 -34
- data/lib/generators/templates/public/admin/vendor/fancybox/fancy_loading.png +0 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.easing-1.3.pack.js +32 -32
- data/lib/generators/templates/public/admin/vendor/fancybox/{jquery.fancybox-1.3.1.css → jquery.fancybox-1.3.4.css} +359 -363
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.fancybox-1.3.4.js +1156 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.fancybox-1.3.4.pack.js +46 -0
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.mousewheel-3.0.4.pack.js +14 -0
- data/lib/generators/typus/assets_generator.rb +23 -0
- data/lib/generators/typus/controller_generator.rb +29 -0
- data/lib/generators/typus/migration_generator.rb +39 -20
- data/lib/generators/typus/typus_generator.rb +17 -57
- data/lib/generators/typus/views_generator.rb +2 -6
- data/lib/support/active_record.rb +8 -20
- data/lib/support/fake_user.rb +6 -1
- data/lib/support/hash.rb +1 -2
- data/lib/support/object.rb +4 -17
- data/lib/support/string.rb +34 -3
- data/lib/tasks/typus.rake +1 -1
- data/lib/typus.rb +60 -48
- data/lib/typus/actions.rb +27 -0
- data/lib/typus/authentication/base.rb +3 -4
- data/lib/typus/authentication/http_basic.rb +1 -1
- data/lib/typus/authentication/none.rb +1 -1
- data/lib/typus/authentication/session.rb +53 -108
- data/lib/typus/configuration.rb +13 -11
- data/lib/typus/filters.rb +12 -0
- data/lib/typus/format.rb +9 -13
- data/lib/typus/i18n.rb +30 -0
- data/lib/typus/orm/active_record.rb +97 -194
- data/lib/typus/orm/active_record/search.rb +91 -0
- data/lib/typus/resources.rb +6 -10
- data/lib/typus/user.rb +20 -40
- data/lib/typus/version.rb +1 -1
- metadata +77 -231
- data/CHANGELOG +0 -102
- data/README.rdoc +0 -48
- data/app/helpers/admin/preview_helper.rb +0 -46
- data/app/views/admin/helpers/_preview.html.erb +0 -13
- data/app/views/admin/templates/_has_many.html.erb +0 -22
- data/config/available_locales/ca.yml +0 -122
- data/config/available_locales/de.yml +0 -122
- data/config/available_locales/es.yml +0 -122
- data/config/available_locales/fr.yml +0 -127
- data/config/available_locales/hu.yml +0 -122
- data/config/available_locales/it.yml +0 -132
- data/config/available_locales/language.yml.template +0 -120
- data/config/available_locales/pt-BR.yml +0 -122
- data/config/available_locales/ru.yml +0 -122
- data/lib/generators/templates/functional_test.rb +0 -10
- data/lib/generators/templates/model.rb +0 -8
- data/lib/generators/templates/public/admin/images/ui-icons.png +0 -0
- data/lib/generators/templates/public/admin/javascripts/jquery-1.4.2.min.js +0 -154
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.fancybox-1.3.1.js +0 -1077
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.fancybox-1.3.1.pack.js +0 -44
- data/lib/generators/templates/public/admin/vendor/fancybox/jquery.mousewheel-3.0.2.pack.js +0 -13
- data/lib/typus/pagination.rb +0 -18
- data/test/factories.rb +0 -43
- data/test/fixtures/config/broken/application.yml +0 -68
- data/test/fixtures/config/broken/application_roles.yml +0 -20
- data/test/fixtures/config/broken/empty.yml +0 -0
- data/test/fixtures/config/broken/empty_roles.yml +0 -0
- data/test/fixtures/config/broken/undefined.yml +0 -3
- data/test/fixtures/config/broken/undefined_roles.yml +0 -6
- data/test/fixtures/config/default/typus.yml +0 -13
- data/test/fixtures/config/default/typus_roles.yml +0 -2
- data/test/fixtures/config/empty/empty_01.yml +0 -0
- data/test/fixtures/config/empty/empty_01_roles.yml +0 -0
- data/test/fixtures/config/empty/empty_02.yml +0 -0
- data/test/fixtures/config/empty/empty_02_roles.yml +0 -0
- data/test/fixtures/config/locales/es.yml +0 -10
- data/test/fixtures/config/namespaced/application.yml +0 -5
- data/test/fixtures/config/namespaced/application_roles.yml +0 -2
- data/test/fixtures/config/ordered/001_roles.yml +0 -2
- data/test/fixtures/config/ordered/002_roles.yml +0 -2
- data/test/fixtures/config/unordered/app_one_roles.yml +0 -2
- data/test/fixtures/config/unordered/app_two_roles.yml +0 -2
- data/test/fixtures/config/working/application.yml +0 -73
- data/test/fixtures/config/working/application_roles.yml +0 -24
- data/test/fixtures/config/working/typus.yml +0 -13
- data/test/fixtures/config/working/typus_roles.yml +0 -2
- data/test/fixtures/rails_app/Rakefile +0 -7
- data/test/fixtures/rails_app/app/controllers/admin/assets_controller.rb +0 -2
- data/test/fixtures/rails_app/app/controllers/admin/categories_controller.rb +0 -2
- data/test/fixtures/rails_app/app/controllers/admin/comments_controller.rb +0 -2
- data/test/fixtures/rails_app/app/controllers/admin/pages_controller.rb +0 -2
- data/test/fixtures/rails_app/app/controllers/admin/pictures_controller.rb +0 -2
- data/test/fixtures/rails_app/app/controllers/admin/posts_controller.rb +0 -2
- data/test/fixtures/rails_app/app/controllers/admin/status_controller.rb +0 -2
- data/test/fixtures/rails_app/app/controllers/admin/typus_users_controller.rb +0 -2
- data/test/fixtures/rails_app/app/controllers/admin/watch_dog_controller.rb +0 -2
- data/test/fixtures/rails_app/app/controllers/application_controller.rb +0 -3
- data/test/fixtures/rails_app/app/models/asset.rb +0 -5
- data/test/fixtures/rails_app/app/models/category.rb +0 -11
- data/test/fixtures/rails_app/app/models/comment.rb +0 -6
- data/test/fixtures/rails_app/app/models/custom_user.rb +0 -2
- data/test/fixtures/rails_app/app/models/delayed/task.rb +0 -5
- data/test/fixtures/rails_app/app/models/page.rb +0 -5
- data/test/fixtures/rails_app/app/models/picture.rb +0 -6
- data/test/fixtures/rails_app/app/models/post.rb +0 -21
- data/test/fixtures/rails_app/app/models/typus_user.rb +0 -8
- data/test/fixtures/rails_app/app/models/view.rb +0 -5
- data/test/fixtures/rails_app/app/views/admin/categories/_form.html.erb +0 -1
- data/test/fixtures/rails_app/app/views/admin/dashboard/_sidebar.html.erb +0 -1
- data/test/fixtures/rails_app/app/views/admin/mailer/reset_password_link.text.erb +0 -6
- data/test/fixtures/rails_app/app/views/admin/posts/_edit.html.erb +0 -1
- data/test/fixtures/rails_app/app/views/admin/posts/_index.html.erb +0 -1
- data/test/fixtures/rails_app/app/views/admin/posts/_new.html.erb +0 -1
- data/test/fixtures/rails_app/app/views/admin/posts/_show.html.erb +0 -1
- data/test/fixtures/rails_app/app/views/admin/posts/_sidebar.html.erb +0 -1
- data/test/fixtures/rails_app/app/views/admin/resources/_sidebar.html.erb +0 -1
- data/test/fixtures/rails_app/app/views/admin/status/index.html.erb +0 -1
- data/test/fixtures/rails_app/app/views/admin/templates/_datepicker.html.erb +0 -1
- data/test/fixtures/rails_app/config.ru +0 -4
- data/test/fixtures/rails_app/config/application.rb +0 -53
- data/test/fixtures/rails_app/config/boot.rb +0 -13
- data/test/fixtures/rails_app/config/database.yml +0 -14
- data/test/fixtures/rails_app/config/environment.rb +0 -5
- data/test/fixtures/rails_app/config/environments/test.rb +0 -34
- data/test/fixtures/rails_app/config/initializers/secret_token.rb +0 -7
- data/test/fixtures/rails_app/config/initializers/session_store.rb +0 -8
- data/test/fixtures/rails_app/config/initializers/typus.rb +0 -6
- data/test/fixtures/rails_app/config/routes.rb +0 -5
- data/test/fixtures/rails_app/config/typus/application.yml +0 -79
- data/test/fixtures/rails_app/config/typus/application_roles.yml +0 -25
- data/test/fixtures/rails_app/config/typus/typus.yml +0 -12
- data/test/fixtures/rails_app/config/typus/typus_roles.yml +0 -2
- data/test/fixtures/rails_app/db/test.sqlite3 +0 -0
- data/test/fixtures/rails_app/tmp/export-posts-20101012213057.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012213132.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012213234.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012213506.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012215057.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012215217.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012215415.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012215443.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012215509.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012215528.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012215551.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012215615.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012215640.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012215714.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012215744.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012215814.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012215836.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012215906.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012220659.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012221043.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012221258.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012222558.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012222752.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012222848.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012223433.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012223535.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012224003.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012224052.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012224109.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012224139.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012224205.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012224243.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101012225119.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013063215.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013063300.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013063352.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013063427.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013063448.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013063530.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013063559.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013063646.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013063737.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013063822.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013063837.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013063919.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013063939.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013063952.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013064220.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013064253.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013064318.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013064404.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013064452.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013064536.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013064652.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013064845.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013065023.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013065137.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013065713.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013065954.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013070057.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013070116.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013070156.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013070349.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013070429.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013070448.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013070514.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013070709.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013070745.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013070809.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013070905.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013070955.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013071116.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013071209.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013071335.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013071632.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013071643.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013071735.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013071749.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013072030.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013072050.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013072108.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013072713.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013072751.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013072912.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101013074546.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101018180512.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101018183359.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101018183608.csv +0 -2
- data/test/fixtures/rails_app/tmp/export-posts-20101018183759.csv +0 -2
- data/test/functional/admin/account_controller_test.rb +0 -90
- data/test/functional/admin/assets_controller_test.rb +0 -55
- data/test/functional/admin/categories_controller_test.rb +0 -62
- data/test/functional/admin/comments_controller_test.rb +0 -21
- data/test/functional/admin/dashboard_controller_test.rb +0 -138
- data/test/functional/admin/posts_controller_test.rb +0 -548
- data/test/functional/admin/session_controller_test.rb +0 -85
- data/test/functional/admin/status_controller_test.rb +0 -46
- data/test/functional/admin/typus_users_controller_test.rb +0 -159
- data/test/helpers/admin/base_helper_test.rb +0 -67
- data/test/helpers/admin/dashboard_helper_test.rb +0 -19
- data/test/helpers/admin/form_helper_test.rb +0 -117
- data/test/helpers/admin/resources_helper_test.rb +0 -64
- data/test/helpers/admin/sidebar_helper_test.rb +0 -274
- data/test/helpers/admin/table_helper_test.rb +0 -219
- data/test/integration/login_test.rb +0 -13
- data/test/integration_test_helper.rb +0 -21
- data/test/lib/support/active_record_test.rb +0 -86
- data/test/lib/support/array_test.rb +0 -11
- data/test/lib/support/hash_test.rb +0 -11
- data/test/lib/support/string_test.rb +0 -39
- data/test/lib/typus/active_record_test.rb +0 -451
- data/test/lib/typus/configuration_test.rb +0 -52
- data/test/lib/typus/resource_test.rb +0 -17
- data/test/lib/typus/routes_test.rb +0 -29
- data/test/lib/typus_test.rb +0 -107
- data/test/schema.rb +0 -100
- data/test/test_helper.rb +0 -16
- data/test/unit/admin/mailer_test.rb +0 -32
- data/test/unit/typus_user_roles_test.rb +0 -105
- data/test/unit/typus_user_test.rb +0 -142
- data/typus.gemspec +0 -25
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
# Spanish translations for Typus
|
|
2
|
-
# by Felipe Talavera <http://github.com/flype>
|
|
3
|
-
|
|
4
|
-
es:
|
|
5
|
-
|
|
6
|
-
"A valid token is required": "Se requiere un token válido."
|
|
7
|
-
"Actions": "Acciones"
|
|
8
|
-
"Active": "Activo"
|
|
9
|
-
"Add": "Añadir"
|
|
10
|
-
"Add %{resource}": "Añadir %{resource}"
|
|
11
|
-
"Add new": "Añadir nuevo"
|
|
12
|
-
"Are you sure?": "¿Estás seguro?"
|
|
13
|
-
"Are you sure you want to leave this page?": "¿Estás seguro que quieres abandonar esta página?"
|
|
14
|
-
"Are you sure you want to sign out and end your session?": "¿Estás seguro que quieres salir y cerrar la sessión?"
|
|
15
|
-
"As you're not the admin or the owner of this record you cannot edit it": "Como no eres el admin o el propietario de este registro no puedes editarlo."
|
|
16
|
-
|
|
17
|
-
"Cancel and go back":
|
|
18
|
-
"Change password": "Cambiar contraseña"
|
|
19
|
-
"Change %{attribute}?": "Cambiar %{attribute}?"
|
|
20
|
-
"Checked if active": "Marca para activar"
|
|
21
|
-
"Click OK to continue, or click Cancel to stay on this page": "Pulse OK para continuar, o pulse Cancelar para permanecer en esta página."
|
|
22
|
-
"Create %{resource}": "Crear %{resource}"
|
|
23
|
-
"Create one now":
|
|
24
|
-
|
|
25
|
-
"Dashboard": "Panel de control"
|
|
26
|
-
"Do you want to cancel it?": "¿Quieres cancelarlo?"
|
|
27
|
-
"Down": "Bajar"
|
|
28
|
-
|
|
29
|
-
"Edit": "Editar"
|
|
30
|
-
"Edit %{resource}": "Editar %{resource}"
|
|
31
|
-
"Enter your email below to create the first user": "Introduce tu email para crear el primer usuario."
|
|
32
|
-
"Error! Typus User or role doesn't exist": "Error! Typus User o el role no existen."
|
|
33
|
-
|
|
34
|
-
"False": "Falso"
|
|
35
|
-
"Filter": "Filtrar"
|
|
36
|
-
"Filter by %{attribute}": "Filtrar por %{attribute}"
|
|
37
|
-
|
|
38
|
-
"Go to": "Ir a"
|
|
39
|
-
|
|
40
|
-
"I remember my password": "Recuerdo mi contraseña"
|
|
41
|
-
"If you didn't request a password update, you can ignore this message": "Si no pediste una actualización de tu contraseña, puedes ignorar este mensaje."
|
|
42
|
-
"If you have made any changes to the fields without clicking the Save/Update entry button, your changes will be lost": "Si has relizado algún cambio en los campos sin pulsar en el botón de Guardar/Actualizar, tus cambios se perderán."
|
|
43
|
-
"Inactive": "Inactivo"
|
|
44
|
-
|
|
45
|
-
"Last few days": "Últimos dias"
|
|
46
|
-
"Last 30 days": "Últimos 30 dias"
|
|
47
|
-
"Last 7 days": "Últimos 7 dias"
|
|
48
|
-
"List": "Lista"
|
|
49
|
-
"Logged as": "Autenticado como"
|
|
50
|
-
"Login": "Login"
|
|
51
|
-
|
|
52
|
-
"New": "Nuevo"
|
|
53
|
-
"Next": "Siguiente"
|
|
54
|
-
|
|
55
|
-
"Options": "Opciones"
|
|
56
|
-
|
|
57
|
-
"Password recovery link sent to your email": "Enlace de recuperación de contraseña enviado a tu correo electrónico."
|
|
58
|
-
"Previous": "Anterior"
|
|
59
|
-
|
|
60
|
-
"Record moved %{to}": "Record moved %{to}."
|
|
61
|
-
"Recover password": "Recuperar contraseña"
|
|
62
|
-
"Remove": "Eliminar"
|
|
63
|
-
"Remove %{attribute}": "Borrar %{attribute}"
|
|
64
|
-
"Remove %{resource}?": "¿Borrar %{resource}?"
|
|
65
|
-
"Remove filter": "Quitar filtro"
|
|
66
|
-
"Remove search":
|
|
67
|
-
"Reset password": "Cambiar contraseña"
|
|
68
|
-
"Resources": "Recursos"
|
|
69
|
-
|
|
70
|
-
"Save %{resource}": "Guardar %{resource}"
|
|
71
|
-
"Search": "Búsqueda"
|
|
72
|
-
"Search by": "Buscar por"
|
|
73
|
-
"Setup": "Configurar"
|
|
74
|
-
"Send us feedback": "Envianos tu comentarios"
|
|
75
|
-
"Show": "Mostrar"
|
|
76
|
-
"Show %{resource}": "Mostrar %{resource}"
|
|
77
|
-
"Sign in": "Entrar"
|
|
78
|
-
"Sign out": "Salir"
|
|
79
|
-
"Sign up": "Crear cuenta"
|
|
80
|
-
"Submit a bug report": "Reporta un error"
|
|
81
|
-
"System Users Administration": "Administrar usuarios del sistema"
|
|
82
|
-
|
|
83
|
-
"That doesn't seem like a valid email address": "Eso no parecia una dirección válida de correo electrónico."
|
|
84
|
-
"The email and/or password you entered is invalid": "El correo y/o la contraseña proporcionadas no son válidas."
|
|
85
|
-
"There are no %{records}": "No hay %{records}."
|
|
86
|
-
"There are no %{records} under this filter": "No hay %{records} con este filtro."
|
|
87
|
-
"Today": "Hoy"
|
|
88
|
-
"Toggle is disabled": "Alternat està desactivado."
|
|
89
|
-
"True": "Verdadero"
|
|
90
|
-
|
|
91
|
-
"Unrelate %{unrelate_model} from %{unrelate_model_from}?": "Desvincular %{unrelate_model} de %{unrelate_model_from}?"
|
|
92
|
-
"Up": "Subir"
|
|
93
|
-
|
|
94
|
-
"You're adding a new %{resource_from}": "Estás añadiendo un nuevo %{resource_from}."
|
|
95
|
-
"You're adding a new %{resource_from} to %{resource_to}": "Estás añadiendo un nuevo %{resource_from} a %{resource_to}."
|
|
96
|
-
"You're not allowed to remove Typus Users": "No se te permite borrar usuarios de typus."
|
|
97
|
-
"You're not allowed to toggle status": "No se te permite cambiar tu estado."
|
|
98
|
-
"You can update your password at": "Puedes actualizar tu contraseña en"
|
|
99
|
-
"You can't change your role": "No puedes cambiar tu propio rol."
|
|
100
|
-
"You can't remove yourself": "No te puedes eliminar a ti mismo."
|
|
101
|
-
"You can't toggle your status": "No puedes cambiar tu estado."
|
|
102
|
-
"You're updating a %{resource_from}": "Estás actualizando un %{resource_from}."
|
|
103
|
-
"You're updating a %{resource_from} for %{resource_to}": "Estás actualizando un %{resource_from} de %{resource_to}."
|
|
104
|
-
|
|
105
|
-
"View all %{attribute}":
|
|
106
|
-
"View site": "Ver web"
|
|
107
|
-
|
|
108
|
-
"%{attachment} can't be removed": "%{attachment} no puede ser borrado."
|
|
109
|
-
"%{attachment} removed": "%{attachment} borrado."
|
|
110
|
-
"%{current_user_role} can't delete this item": "%{current_user_role} no puede borrar este elemento."
|
|
111
|
-
"%{current_user_role} can't display items": "%{current_user_role} no puede mostrar los elementos."
|
|
112
|
-
"%{current_user_role} can't perform action. (%{action})": "%{current_user_role} no puede realizar la acción. (%{action})"
|
|
113
|
-
"%{model} filtered by %{filtered_by}": "%{model} filtrados por %{filtered_by}"
|
|
114
|
-
"%{model} successfully created": "%{model} satisfactoriamente creado."
|
|
115
|
-
"%{model} successfully updated": "%{model} satisfactoriamente actualizado."
|
|
116
|
-
"%{model} successfully removed": "%{model} satisfactoriamente eliminado."
|
|
117
|
-
"%{model_a} cannot be related to %{model_b}":
|
|
118
|
-
"%{model_a} cannot be unrelated from %{model_b}":
|
|
119
|
-
"%{model} %{attribute} changed": "%{model} %{attribute} cambiado."
|
|
120
|
-
"%{model_a} related to %{model_b}": "%{model_a} relacionado con %{model_b}."
|
|
121
|
-
"%{model_a} successfully assigned to %{model_b}": "%{model_a} asignado satisfactoriamente a %{model_b}."
|
|
122
|
-
"%{model_a} unrelated from %{model_b}": "%{model_a} no esta relacionado con %{model_b}."
|
|
@@ -1,127 +0,0 @@
|
|
|
1
|
-
# French translations for Typus
|
|
2
|
-
# by Ned Baldessin <http://github.com/nedbaldessin>
|
|
3
|
-
# and Jonathan Meiss <http://github.com/jmeiss>
|
|
4
|
-
|
|
5
|
-
fr:
|
|
6
|
-
|
|
7
|
-
"A valid token is required": "Un token valide est nécessaire"
|
|
8
|
-
"Actions": "Actions"
|
|
9
|
-
"Active": "Actif"
|
|
10
|
-
"Add": "Ajouter"
|
|
11
|
-
"Add %{resource}": "Ajouter %{resource}"
|
|
12
|
-
"Add new": "Ajouter nouveau"
|
|
13
|
-
"Are you sure?": "Êtes-vous sûre ?"
|
|
14
|
-
"Are you sure you want to leave this page?": "Êtes-vous sûre de vouloir quitter cette page ?"
|
|
15
|
-
"Are you sure you want to sign out and end your session?": "Etes-vous sûre de vouloir vous déconnecter et mettre fin à votre session ?"
|
|
16
|
-
"As you're not the admin or the owner of this record you cannot edit it": "Vous n'êtes pas le propriétaire de cette entrée, ou un administrateur, par conséquent vous ne pouvez pas la modifier"
|
|
17
|
-
|
|
18
|
-
"Cancel and go back": "Annuler et retourner en arrière"
|
|
19
|
-
"Change password": "Modifier le mot de passe"
|
|
20
|
-
"Change %{attribute}?": "Changer %{attribute} ?"
|
|
21
|
-
"Checked if active": "Coché si actif"
|
|
22
|
-
"Click OK to continue, or click Cancel to stay on this page": "Cliquez sur Ok pour continuer, ou Annuler pour rester sur cette page."
|
|
23
|
-
"Create %{resource}": "Créer %{resource}"
|
|
24
|
-
"Create one now": "Ajouter une entrée"
|
|
25
|
-
|
|
26
|
-
"Dashboard": "Tableau de bord"
|
|
27
|
-
"Do you want to cancel it?": "Voulez-vous annuler ?"
|
|
28
|
-
"Down": "Descendre"
|
|
29
|
-
|
|
30
|
-
"Edit": "Éditer"
|
|
31
|
-
"Edit %{resource}": "Éditer %{resource}"
|
|
32
|
-
"Enter your email below to create the first user": "Entrez votre adresse email pour créer le premier utilisateur"
|
|
33
|
-
"Error! Typus User or role doesn't exist": "Une erreur est survenue. L'utilisateur ou le rôle sont inconnus."
|
|
34
|
-
"Export as %{format}": "Exporter en %{format}"
|
|
35
|
-
|
|
36
|
-
"False": "Faux"
|
|
37
|
-
"Filter": "Filtrer"
|
|
38
|
-
"Filter by %{attribute}": "Filtrer par %{attribute}"
|
|
39
|
-
|
|
40
|
-
"Go to": "Aller"
|
|
41
|
-
|
|
42
|
-
"I remember my password": "Je me souviens du mot de passe"
|
|
43
|
-
"If you didn't request a password update, you can ignore this message": "Si vous n'avez pas demandé à mettre à jour votre mot de passe, vous pouvez ignorer ce message"
|
|
44
|
-
"If you have made any changes to the fields without clicking the Save/Update entry button, your changes will be lost": "Si vous avez effectué des modifications sans cliquer sur le bouton Enregistrer ou Mettre à jour, ces modifications seront perdues."
|
|
45
|
-
"Inactive": "Inactif"
|
|
46
|
-
|
|
47
|
-
"Last few days": "Ces derniers jours"
|
|
48
|
-
"Last 30 days": "30 derniers jours"
|
|
49
|
-
"Last 7 days": "7 derniers jours"
|
|
50
|
-
"List": "Liste"
|
|
51
|
-
"Logged as": "Identifié comme"
|
|
52
|
-
"Login": "Identification"
|
|
53
|
-
|
|
54
|
-
"New": "Nouveau"
|
|
55
|
-
"Next": "Suivant"
|
|
56
|
-
|
|
57
|
-
"Options": "Options"
|
|
58
|
-
|
|
59
|
-
"Password recovery link sent to your email": "Le lien pour retrouver votre mot de passe vous a été envoyé par email"
|
|
60
|
-
"Previous": "Précédent"
|
|
61
|
-
|
|
62
|
-
"Record moved %{to}": "Entrées réordonnées"
|
|
63
|
-
"Recover password": "Retrouver mon mot de passe"
|
|
64
|
-
"Remove": "Supprimer"
|
|
65
|
-
"Remove %{attribute}": "Supprimer %{attribute}"
|
|
66
|
-
"Remove %{resource}?": "Supprimer %{resource} ?"
|
|
67
|
-
"Remove filter": "Supprimer le filtre"
|
|
68
|
-
"Remove search": "Supprimer la recherche"
|
|
69
|
-
"Reset password": "Renouveler le mot de passe"
|
|
70
|
-
"Resources": "Ressources"
|
|
71
|
-
|
|
72
|
-
"Save %{resource}": "Sauvegarder %{resource}"
|
|
73
|
-
"Search": "Recherche"
|
|
74
|
-
"Search by": "Rechercher par"
|
|
75
|
-
"Send us feedback": "Nous envoyer votre avis"
|
|
76
|
-
"Setup": "Configurer"
|
|
77
|
-
"Show": "Voir"
|
|
78
|
-
"Show %{resource}": "Voir %{resource}"
|
|
79
|
-
"Show by %{attribute}": "Afficher par %{attribute}"
|
|
80
|
-
"Sign in": "Entrer"
|
|
81
|
-
"Sign out": "Déconnexion"
|
|
82
|
-
"Sign up": "Ouvrir un compte"
|
|
83
|
-
"Submit a bug report": "Soumettre un bug"
|
|
84
|
-
"System Users Administration": "Modifier les utilisateurs de l'admin"
|
|
85
|
-
|
|
86
|
-
"That doesn't seem like a valid email address": "L'adresse email ne semble pas valide"
|
|
87
|
-
"The email and/or password you entered is invalid": "L'email ou le mot de passe que vous avez saisi n'est pas valide"
|
|
88
|
-
"There are no %{records}": "Il n'y aucun(e) %{records}."
|
|
89
|
-
"There are no %{records} under this filter": "Il n'y a aucun(e) %{records} avec ce filtre."
|
|
90
|
-
"Today": "Ajourd'hui"
|
|
91
|
-
"Toggle is disabled": "Le basculement est désactivé"
|
|
92
|
-
"True": "Vrai"
|
|
93
|
-
|
|
94
|
-
"Unrelate %{unrelate_model} from %{unrelate_model_from}?": "Dissocier %{unrelate_model} de %{unrelate_model_from} ?"
|
|
95
|
-
"Up": "Monter"
|
|
96
|
-
|
|
97
|
-
"View all %{attribute}": "Voir tou(s/tes) %{attribute}"
|
|
98
|
-
"View site": "Voir le site"
|
|
99
|
-
|
|
100
|
-
"You can update your password at": "Vous pouvez modifier votre mot de passe ici"
|
|
101
|
-
"You can't change your role": "Vous ne pouvez pas changer votre propre rôle."
|
|
102
|
-
"You can't remove yourself": "Vous ne pouvez pas supprimer votre propre compte"
|
|
103
|
-
"You can't toggle your status": "Vous ne pouvez pas basculer votre statut"
|
|
104
|
-
"You're adding a new %{resource_from}": "Vous ajoutez un nouveau %{resource_from}."
|
|
105
|
-
"You're adding a new %{resource_from} to %{resource_to}": "Vous ajoutez un(e) %{resource_from} à un(e) %{resource_to}."
|
|
106
|
-
"You're not allowed to remove Typus Users": "Vous n'avez pas le droit de supprimer des utilisateurs de l'administration"
|
|
107
|
-
"You're not allowed to toggle status": "Vous n'êtes pas autorisé à basculer votre statut"
|
|
108
|
-
"You're updating a %{resource_from}": "Vous mettez-à-jour un(e) %{resource_from}."
|
|
109
|
-
"You're updating a %{resource_from} for %{resource_to}": "Vous mettez-à-jour un(e) %{resource_from} pour un(e) %{resource_to}."
|
|
110
|
-
|
|
111
|
-
"%{attachment} can't be removed": "%{attachment} ne peut pas être supprimé"
|
|
112
|
-
"%{attachment} removed": "%{attachment} supprimé"
|
|
113
|
-
"%{current_user_role} can't delete this item": "%{current_user_role} ne peut supprimer cette entrée"
|
|
114
|
-
"%{current_user_role} can't display items": "Un utilisateur de rôle %{current_user_role} ne peut pas afficher ces éléments."
|
|
115
|
-
"%{current_user_role} can't perform action (%{action})": "%{current_user_role} ne peut effectuer l'action (%{action})"
|
|
116
|
-
"%{current_user_role} can't perform action. (%{action})": "%{current_user_role} ne peut effectuer l'action. (%{action})"
|
|
117
|
-
"%{model} successfully created": "%{model} correctement créé(e)."
|
|
118
|
-
"%{model} successfully removed": "%{model} correctement supprimé(e)."
|
|
119
|
-
"%{model} successfully updated": "%{model} correctement mis(e)-à-jour."
|
|
120
|
-
"%{model} %{attribute} changed": "%{model} %{attribute} modifié."
|
|
121
|
-
"%{model_a} cannot be related to %{model_b}": "%{model_a} ne peut pas être lié à %{model_b}"
|
|
122
|
-
"%{model_a} cannot be unrelated from %{model_b}": "%{model_a} ne peut pas être disjoint de %{model_b}"
|
|
123
|
-
"%{model_a} related to %{model_b}": "%{model_a} associé à %{model_b}."
|
|
124
|
-
"%{model_a} successfully assigned to %{model_b}": "%{model_a} associé à %{model_b}."
|
|
125
|
-
"%{model_a} unrelated from %{model_b}": "%{model_a} dissocié de %{model_b}."
|
|
126
|
-
|
|
127
|
-
|
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
# Hungarian translations for Typus (template)
|
|
2
|
-
# by Tompa Gábor - http://github.com/tompagabor/typus
|
|
3
|
-
|
|
4
|
-
hu:
|
|
5
|
-
|
|
6
|
-
"A valid token is required": "eg érvényes token szükséges"
|
|
7
|
-
"Actions": "Akciók"
|
|
8
|
-
"Active": "Aktív"
|
|
9
|
-
"Add": "Hozzáad"
|
|
10
|
-
"Add %{resource}": "Új %{resource}"
|
|
11
|
-
"Add new": "Új hozzáadása"
|
|
12
|
-
"Are you sure?": "Biztos vagy benne?"
|
|
13
|
-
"Are you sure you want to leave this page?": "Biztosan el akarod hagyni ezt az oldalt?"
|
|
14
|
-
"Are you sure you want to sign out and end your session?": "Biztosan ki akarsz lépni?"
|
|
15
|
-
"As you're not the admin or the owner of this record you cannot edit it": "Ezt a bejegyzést csak a tuljadonosa és az adminok szerkeszthetik."
|
|
16
|
-
|
|
17
|
-
"Cancel and go back":
|
|
18
|
-
"Change %{attribute}?": "Megváltoztatod ezt: %{attribute}?"
|
|
19
|
-
"Change password": "Jelszó megváltoztatása"
|
|
20
|
-
"Checked if active": "Bejelölve aktív"
|
|
21
|
-
"Click OK to continue, or click Cancel to stay on this page": "Kattints az OK gombra a továbblépéshez, vagy a mégse gombbal maradhatsz a mostani oldalon"
|
|
22
|
-
"Create %{resource}": "%{resource} létrehozása"
|
|
23
|
-
"Create one now":
|
|
24
|
-
|
|
25
|
-
"Dashboard": "Admin nyitólap"
|
|
26
|
-
"Do you want to cancel it?": "Szeretnéd visszavonni?"
|
|
27
|
-
"Down": "Le"
|
|
28
|
-
|
|
29
|
-
"Edit": "Szerkesztés"
|
|
30
|
-
"Edit %{resource}": "Szerkesztés %{resource}"
|
|
31
|
-
"Enter your email below to create the first user": "Írd be az e-mail címed az első felhasználó létrehozásához"
|
|
32
|
-
"Error! Typus User or role doesn't exist": "Hiba! Typus felhasználó vagy a jogosultság nem létezik"
|
|
33
|
-
|
|
34
|
-
"False": "Hamis"
|
|
35
|
-
"Filter":
|
|
36
|
-
"Filter by %{attribute}": "Szűrés %{attribute}"
|
|
37
|
-
|
|
38
|
-
"Go to": "Ide"
|
|
39
|
-
|
|
40
|
-
"I remember my password": "Emlékszem a jelszavamra"
|
|
41
|
-
"If you didn't request a password update, you can ignore this message": "Hogyha nem kértél jelszó emlékesztetőt, nyugodtan töröld ki ezt a levelet."
|
|
42
|
-
"If you have made any changes to the fields without clicking the Save/Update entry button, your changes will be lost": "Ha a módosítások után nem kattintassz a Mentés/Firssítés gombra, el fognak veszni a változtatások."
|
|
43
|
-
"Inactive": "Inaktív"
|
|
44
|
-
|
|
45
|
-
"Last few days": "Utóbbi néhány nap"
|
|
46
|
-
"Last 30 days": "Az elmúlt 30 nap"
|
|
47
|
-
"Last 7 days": "Az elmúlt 7 nap"
|
|
48
|
-
"List":
|
|
49
|
-
"Logged as": "Bejelentkezve"
|
|
50
|
-
"Login": "Belépés"
|
|
51
|
-
|
|
52
|
-
"New": "Új"
|
|
53
|
-
"Next": "Következő"
|
|
54
|
-
|
|
55
|
-
"Options": "Opciók"
|
|
56
|
-
|
|
57
|
-
"Password recovery link sent to your email": "A jelszó helyreállító linket elküldtük az email címedre."
|
|
58
|
-
"Previous": "Előző"
|
|
59
|
-
|
|
60
|
-
"Record moved %{to}": "A bejegyzés áthelyezve: %{to}"
|
|
61
|
-
"Recover password": "Jelszó helyreállítás"
|
|
62
|
-
"Remove": "Eltávolítás"
|
|
63
|
-
"Remove %{attribute}": "Eltávolítod %{attribute}"
|
|
64
|
-
"Remove %{resource}?": "Eltávolítod %{resource}?"
|
|
65
|
-
"Remove filter": "Szűrő eltávolítása"
|
|
66
|
-
"Remove search":
|
|
67
|
-
"Reset password": "Jelszó módosítása"
|
|
68
|
-
"Resources": "Források"
|
|
69
|
-
|
|
70
|
-
"Save %{resource}": "%{resource} mentése"
|
|
71
|
-
"Search": "Keresés"
|
|
72
|
-
"Search by": "Keresés"
|
|
73
|
-
"Send us feedback": "Visszajelzés küldése"
|
|
74
|
-
"Setup": "Beállítás"
|
|
75
|
-
"Show": "Mutatás"
|
|
76
|
-
"Show %{resource}": "%{resource} mutatása"
|
|
77
|
-
"Sign in": "Bejelentkezés"
|
|
78
|
-
"Sign out": "Kijelentkezés"
|
|
79
|
-
"Sign up": "Regisztráció"
|
|
80
|
-
"Submit a bug report": "Hiba jelzése a fejlesztőknek"
|
|
81
|
-
"System Users Administration": "Rendszeradminisztrátorok kezelése"
|
|
82
|
-
|
|
83
|
-
"That doesn't seem like a valid email address": "Ez nem tűnik valódi e-mail címnek"
|
|
84
|
-
"The email and/or password you entered is invalid": "A megadott felhasználónév és/vagy jelszó nem megfelelő"
|
|
85
|
-
"There are no %{records}": "Nincsenek %{records}"
|
|
86
|
-
"There are no %{records} under this filter": "Nincsenek %{records} a szűrővel"
|
|
87
|
-
"Today": "Ma"
|
|
88
|
-
"Toggle is disabled": "Toggle letitlva"
|
|
89
|
-
"True": "Igaz"
|
|
90
|
-
|
|
91
|
-
"Unrelate %{unrelate_model} from %{unrelate_model_from}?": "Unrelate %{unrelate_model} from %{unrelate_model_from}?"
|
|
92
|
-
"Up": "Fel"
|
|
93
|
-
|
|
94
|
-
"View all %{attribute}":
|
|
95
|
-
"View site": "A weboldal megtekintése"
|
|
96
|
-
|
|
97
|
-
"You're adding a new %{resource_from}": "%{resource_from} hozzáadása"
|
|
98
|
-
"You're adding a new %{resource_from} to %{resource_to}": "%{resource_from} hozzáadása %{resource_to} rekordhoz"
|
|
99
|
-
"You're not allowed to toggle status": "Nincsen jogod változtatni a státuszon"
|
|
100
|
-
"You're not allowed to remove Typus Users": "Nincsen jogod törölni Typus felhasználókat"
|
|
101
|
-
"You're updating a %{resource_from}": "%{resource_from} frissítése"
|
|
102
|
-
"You're updating a %{resource_from} for %{resource_to}": "%{resource_from} frissítése %{resource_to} rekordhoz"
|
|
103
|
-
"You can update your password at": "Frissítheted a jelszavad"
|
|
104
|
-
"You can't change your role": "Nincsen jogod megváltoztatni a jogosultsági szintedet"
|
|
105
|
-
"You can't remove yourself": "Nem törölheted saját magad"
|
|
106
|
-
"You can't toggle your status": "Nincs jogod változtatni a státuszodat"
|
|
107
|
-
|
|
108
|
-
"%{attachment} can't be removed": "%{attachment} nem törölhető"
|
|
109
|
-
"%{attachment} removed": "%{attachment} törölve"
|
|
110
|
-
"%{current_user_role} can't delete this item": "%{current_user_role} nem lehet törölni az elemet"
|
|
111
|
-
"%{current_user_role} can't display items": "%{current_user_role} nem nézheti meg az elemeket"
|
|
112
|
-
"%{current_user_role} can't perform action. (%{action})": "%{current_user_role} nem futtathatja ez a műveletet (%{action})"
|
|
113
|
-
"%{model} filtered by %{filtered_by}": "%{model} szűrve %{filtered_by}"
|
|
114
|
-
"%{model} successfully created": "%{model} sikeresen létrehozva"
|
|
115
|
-
"%{model} successfully removed": "%{model} sikeresen törölve"
|
|
116
|
-
"%{model} successfully updated": "%{model} sikereseb frissítve"
|
|
117
|
-
"%{model_a} cannot be related to %{model_b}":
|
|
118
|
-
"%{model_a} cannot be unrelated from %{model_b}":
|
|
119
|
-
"%{model} %{attribute} changed": "%{model} %{attribute} megváltozott"
|
|
120
|
-
"%{model_a} related to %{model_b}": "%{model_a} kapcsolódik %{model_b}hez"
|
|
121
|
-
"%{model_a} successfully assigned to %{model_b}": "%{model} sikeresen hozzárendelve %{model_b}hez"
|
|
122
|
-
"%{model_a} unrelated from %{model_b}": "%{model_a} nem kapcsolódik %{model_b}hez "
|
|
@@ -1,132 +0,0 @@
|
|
|
1
|
-
it:
|
|
2
|
-
"A valid token is required": "É richiesto un token valido"
|
|
3
|
-
"Actions": "Azioni"
|
|
4
|
-
"Active": "Attivo"
|
|
5
|
-
"Add": "Inserisci"
|
|
6
|
-
"Add %{resource}": "Inserisci %{resource}"
|
|
7
|
-
"Add new": "Inserisci nuovo"
|
|
8
|
-
"Are you sure?": "Sei sicuro?"
|
|
9
|
-
"Are you sure you want to leave this page?": "Sei sicuro di volere lasciare questa pagina?"
|
|
10
|
-
"Are you sure you want to sign out and end your session?": "Sei sicuro che vuoi disconnetterti dal sistema?"
|
|
11
|
-
"As you're not the admin or the owner of this record you cannot edit it": "Non puoi modificare questo elemento poichè non sei un amministratore o il proprietario dello stesso"
|
|
12
|
-
|
|
13
|
-
"Cancel and go back": "Annulla e torna indietro"
|
|
14
|
-
"Change %{attribute}?": "Vuoi cambiare %{attribute}?"
|
|
15
|
-
"Change password": "Cambia la password"
|
|
16
|
-
"Checked if active": "È spuntato se attivo"
|
|
17
|
-
"Click OK to continue, or click Cancel to stay on this page": "Clicca OK per continuare o Cancella per rimanere su questa pagina"
|
|
18
|
-
"Create %{resource}": "Inserisci %{resource}"
|
|
19
|
-
"Create one now": "Creane una ora"
|
|
20
|
-
|
|
21
|
-
"Dashboard": "Panoramica"
|
|
22
|
-
"Developed by": "Realizzato da"
|
|
23
|
-
"Do you want to cancel it?": "Vuoi annullare e tornare indietro?"
|
|
24
|
-
"Down": "Giù"
|
|
25
|
-
|
|
26
|
-
"Edit": "Modifica"
|
|
27
|
-
"Edit %{resource}": "Modifica %{resource}"
|
|
28
|
-
"Enter your email below to create the first user": "Inserisci un'email qui sotto per creare il primo utente"
|
|
29
|
-
"Error": "Errore"
|
|
30
|
-
"Error! Typus User or role doesn't exist": "C'è stato un errore: l'untete o il ruolo non esistono"
|
|
31
|
-
"Errors": "Errori"
|
|
32
|
-
|
|
33
|
-
"False": "Falso"
|
|
34
|
-
"Filter": "Filtra"
|
|
35
|
-
"Filter by %{attribute}": "Filtra per %{attribute}"
|
|
36
|
-
|
|
37
|
-
"Go to": "Vai a"
|
|
38
|
-
|
|
39
|
-
"I remember my password": "Mi ricordo la password"
|
|
40
|
-
"If you didn't request a password update, you can ignore this message": "Se non hai richiesto l'aggiornamento della password, puoi ignorare questo messaggio"
|
|
41
|
-
"If you have made any changes to the fields without clicking the Save/Update entry button, your changes will be lost": "Sei hai fatto dei cambiamenti ai vari campi senza avere cliccato su Salva/Aggiorna, i tuoi cambiamenti verranno persi"
|
|
42
|
-
"Inactive": "Inattivo"
|
|
43
|
-
|
|
44
|
-
"Last few days": "Ultimi giorni"
|
|
45
|
-
"Last 30 days": "Ultimi 30 giorni"
|
|
46
|
-
"Last 7 days": "Ultimi 7 giorni"
|
|
47
|
-
"List": "Lista"
|
|
48
|
-
"Loading": "Caricamento"
|
|
49
|
-
"Logged as": "Loggato come"
|
|
50
|
-
"Login": "Login"
|
|
51
|
-
|
|
52
|
-
"New": "Nuovo"
|
|
53
|
-
"New %{resource}": "Inserisci %{resource}"
|
|
54
|
-
"Next": "Successivo"
|
|
55
|
-
|
|
56
|
-
"Options": "Opzioni"
|
|
57
|
-
"Or": "Oppure"
|
|
58
|
-
|
|
59
|
-
"Password recovery link sent to your email": "È stata inviata un'email contenente un link per il recupero della password"
|
|
60
|
-
"Please set a new password.": "Inserisci una nuova password"
|
|
61
|
-
"Previous": "Precedente"
|
|
62
|
-
"Prohibited this page from being saved": "Non è stato possibile salvare i dati"
|
|
63
|
-
|
|
64
|
-
"Record moved %{to}": "Record spostato %{to}"
|
|
65
|
-
"Recover password": "Recupera la password"
|
|
66
|
-
"Remove": "Elimina"
|
|
67
|
-
"Remove %{attribute}": "Elimina %{attribute}"
|
|
68
|
-
"Remove %{resource}?": "Elimina %{resource}"
|
|
69
|
-
"Remove filter": "Rimuovi filtro"
|
|
70
|
-
"Remove search": "Rimuovi ricerca"
|
|
71
|
-
"Reset password": "Resetta la password"
|
|
72
|
-
"Resources": "Risorse"
|
|
73
|
-
|
|
74
|
-
"Save %{resource}": "Salva %{resource}"
|
|
75
|
-
"Search": "Cerca"
|
|
76
|
-
"Search by": "Cerca per"
|
|
77
|
-
"Send us feedback": "Mandaci un feedback"
|
|
78
|
-
"Setup": "Setup"
|
|
79
|
-
"Show": "Mostra"
|
|
80
|
-
"Show all dates": "Filtra per data"
|
|
81
|
-
"Show by %{attribute}" : "Filtra per %{attribute}"
|
|
82
|
-
"Show %{resource}": "Mostra %{resource}"
|
|
83
|
-
"Sign in": "Accedi"
|
|
84
|
-
"Sign out": "Esci"
|
|
85
|
-
"Sign up": "Registrazione"
|
|
86
|
-
"Submit": "Invia"
|
|
87
|
-
"Submit a bug report": "Invia un report"
|
|
88
|
-
"System Users Administration": "Amministrazione utenti del sistema"
|
|
89
|
-
|
|
90
|
-
"That doesn't seem like a valid email address": "Sembra che non sia un indirizzo email valido"
|
|
91
|
-
"The email and/or password you entered is invalid": "L'email e/o la password inserita non è valida"
|
|
92
|
-
"There are no %{records}": "Non ci sono %{records}"
|
|
93
|
-
"There are no %{records} under this filter": "Non ci sono %{records} con questo filtro"
|
|
94
|
-
"Today": "Oggi"
|
|
95
|
-
"Toggle is disabled": "La modifica è disabilitata"
|
|
96
|
-
"Trash": "Elimina"
|
|
97
|
-
"True": "Vero"
|
|
98
|
-
|
|
99
|
-
"Unrelate": "Rimuovi relazione"
|
|
100
|
-
"Unrelate %{unrelate_model} from %{unrelate_model_from}?": "Vuoi rimuovere la relazione tra %{unrelate_model} e %{unrelate_model_from}?"
|
|
101
|
-
"Up": "Su"
|
|
102
|
-
|
|
103
|
-
"View all %{attribute}": "Filtra per %{attribute}"
|
|
104
|
-
"View site": "Visita il sito"
|
|
105
|
-
|
|
106
|
-
"You're adding a new %{resource_from}": "Stai inserendo un nuovo %{resource_from}"
|
|
107
|
-
"You're adding a new %{resource_from} to %{resource_to}": "Stai inserendo un nuovo %{resource_from} in %{resource_to}"
|
|
108
|
-
"You're not allowed to toggle status": "Non hai i permessi per modificare lo stato"
|
|
109
|
-
"You're not allowed to remove Typus Users": "Non hai i permessi per eliminare un utente"
|
|
110
|
-
"You're updating a %{resource_from}": "Stai aggiornando i dati di %{resource_from}"
|
|
111
|
-
"You're updating a %{resource_from} for %{resource_to}": "Stai aggiornando i dati di %{resource_from} per %{resource_to}"
|
|
112
|
-
"You can update your password at": "Puoi aggiornare la tua password qui"
|
|
113
|
-
"You can't change your role": "Non puoi cambiare il tuo ruolo"
|
|
114
|
-
"You can't remove yourself": "Non puoi eliminare il tuo stesso account"
|
|
115
|
-
"You can't toggle your status": "Non puoi modificare il tuo stato"
|
|
116
|
-
"Your new password is %{password}": "La tua nuova password è %{password}"
|
|
117
|
-
|
|
118
|
-
"%{attachment} can't be removed": "%{attachment} non può essere eliminato"
|
|
119
|
-
"%{attachment} removed": "%{attachment} eliminato"
|
|
120
|
-
"%{current_user_role} can't delete this item.": "%{current_user_role} non può eliminare questo elemento"
|
|
121
|
-
"%{current_user_role} can't display items.": "%{current_user_role} non può visualizzare questi elementi"
|
|
122
|
-
"%{current_user_role} can't perform action. (%{action})": "%{current_user_role} non può fare questa azione. (%{action})"
|
|
123
|
-
"%{model} filtered by %{filtered_by}": "%{model} filtrato per %{filtered_by}"
|
|
124
|
-
"%{model} successfully created": "Creazione avvenuta con successo"
|
|
125
|
-
"%{model} successfully removed": "Eliminazione avvenuta con successo"
|
|
126
|
-
"%{model} successfully updated": "Aggiornamento avvenuto con successo"
|
|
127
|
-
"%{model} %{attribute} changed": "%{attribute} %{model} modificato"
|
|
128
|
-
"%{model_a} cannot be related to %{model_b}": "%{model_a} non può essere in relazione con %{model_b}"
|
|
129
|
-
"%{model_a} cannot be unrelated from %{model_b}": "%{model_a} deve essere in relazione con %{model_b}"
|
|
130
|
-
"%{model_a} related to %{model_b}": "%{model_a} è in relazione con %{model_b}"
|
|
131
|
-
"%{model_a} successfully assigned to %{model_b}": "%{model_a} assegnato a %{model_b} con successo"
|
|
132
|
-
"%{model_a} unrelated from %{model_b}": "%{model_a} non è più in relazione con %{model_b}"
|