iqvoc 3.2.3
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 +69 -0
- data/Gemfile.lock +134 -0
- data/LICENSE +13 -0
- data/README.md +68 -0
- data/Rakefile +23 -0
- data/app/controllers/application_controller.rb +125 -0
- data/app/controllers/collections/hierarchical_controller.rb +44 -0
- data/app/controllers/collections_controller.rb +124 -0
- data/app/controllers/concepts/alphabetical_controller.rb +39 -0
- data/app/controllers/concepts/hierarchical_controller.rb +74 -0
- data/app/controllers/concepts/untranslated_controller.rb +38 -0
- data/app/controllers/concepts/versions_controller.rb +119 -0
- data/app/controllers/concepts_controller.rb +174 -0
- data/app/controllers/dashboard_controller.rb +43 -0
- data/app/controllers/pages_controller.rb +22 -0
- data/app/controllers/rdf_controller.rb +43 -0
- data/app/controllers/search_results_controller.rb +101 -0
- data/app/controllers/triple_store_syncs_controller.rb +45 -0
- data/app/controllers/user_sessions_controller.rb +48 -0
- data/app/controllers/users_controller.rb +81 -0
- data/app/helpers/application_helper.rb +60 -0
- data/app/helpers/concepts_helper.rb +86 -0
- data/app/helpers/dashboard_helper.rb +46 -0
- data/app/helpers/rdf_helper.rb +63 -0
- data/app/helpers/search_results_helper.rb +32 -0
- data/app/models/collection/base.rb +161 -0
- data/app/models/collection/member/base.rb +23 -0
- data/app/models/collection/member/collection.rb +33 -0
- data/app/models/collection/member/concept.rb +33 -0
- data/app/models/collection/unordered.rb +18 -0
- data/app/models/concept/base.rb +418 -0
- data/app/models/concept/relation/base.rb +95 -0
- data/app/models/concept/relation/reverse_relation_extension.rb +49 -0
- data/app/models/concept/relation/skos/base.rb +37 -0
- data/app/models/concept/relation/skos/broader/base.rb +41 -0
- data/app/models/concept/relation/skos/broader/mono.rb +28 -0
- data/app/models/concept/relation/skos/broader/poly.rb +23 -0
- data/app/models/concept/relation/skos/narrower/base.rb +37 -0
- data/app/models/concept/relation/skos/related.rb +21 -0
- data/app/models/concept/skos/base.rb +28 -0
- data/app/models/label/base.rb +98 -0
- data/app/models/label/skos/base.rb +27 -0
- data/app/models/labeling/base.rb +81 -0
- data/app/models/labeling/skos/alt_label.rb +21 -0
- data/app/models/labeling/skos/base.rb +99 -0
- data/app/models/labeling/skos/hidden_label.rb +25 -0
- data/app/models/labeling/skos/pref_label.rb +30 -0
- data/app/models/match/base.rb +57 -0
- data/app/models/match/skos/base.rb +23 -0
- data/app/models/match/skos/broad_match.rb +21 -0
- data/app/models/match/skos/close_match.rb +21 -0
- data/app/models/match/skos/exact_match.rb +21 -0
- data/app/models/match/skos/mapping_relation.rb +21 -0
- data/app/models/match/skos/narrow_match.rb +21 -0
- data/app/models/match/skos/related_match.rb +21 -0
- data/app/models/note/annotated/base.rb +29 -0
- data/app/models/note/base.rb +127 -0
- data/app/models/note/skos/base.rb +52 -0
- data/app/models/note/skos/change_note.rb +38 -0
- data/app/models/note/skos/definition.rb +33 -0
- data/app/models/note/skos/editorial_note.rb +21 -0
- data/app/models/note/skos/example.rb +21 -0
- data/app/models/note/skos/history_note.rb +21 -0
- data/app/models/note/skos/scope_note.rb +21 -0
- data/app/models/origin_mapping.rb +58 -0
- data/app/models/rdf_store.rb +96 -0
- data/app/models/search_extension.rb +58 -0
- data/app/models/user.rb +49 -0
- data/app/models/user_session.rb +23 -0
- data/app/views/collections/_collection.html.erb +10 -0
- data/app/views/collections/_form.html.erb +47 -0
- data/app/views/collections/edit.html.erb +11 -0
- data/app/views/collections/index.html.erb +12 -0
- data/app/views/collections/new.html.erb +7 -0
- data/app/views/collections/show.html.erb +53 -0
- data/app/views/collections/show.iqrdf +22 -0
- data/app/views/concepts/_base_data.html.erb +72 -0
- data/app/views/concepts/_close_match.html.erb +16 -0
- data/app/views/concepts/_show_head.html.erb +23 -0
- data/app/views/concepts/_visualization.html.erb +9 -0
- data/app/views/concepts/alphabetical/_pref_labeling.html.erb +6 -0
- data/app/views/concepts/alphabetical/index.html.erb +17 -0
- data/app/views/concepts/edit.html.erb +32 -0
- data/app/views/concepts/hierarchical/_treeview.html.erb +20 -0
- data/app/views/concepts/hierarchical/index.html.erb +5 -0
- data/app/views/concepts/index.iqrdf +24 -0
- data/app/views/concepts/new.html.erb +3 -0
- data/app/views/concepts/show_published.html.erb +16 -0
- data/app/views/concepts/show_unpublished.html.erb +43 -0
- data/app/views/concepts/untranslated/index.html.erb +23 -0
- data/app/views/dashboard/index.html.erb +47 -0
- data/app/views/errors/access_denied.html.erb +3 -0
- data/app/views/errors/multiple_choices.html.erb +11 -0
- data/app/views/errors/not_found.html.erb +8 -0
- data/app/views/kaminari/_page.html.erb +6 -0
- data/app/views/kaminari/_paginator.html.erb +15 -0
- data/app/views/layouts/_controls.html.erb +37 -0
- data/app/views/layouts/_header.html.erb +1 -0
- data/app/views/layouts/_navigation.html.erb +27 -0
- data/app/views/layouts/_sections.html.erb +8 -0
- data/app/views/layouts/application.html.erb +83 -0
- data/app/views/pages/about.html.erb +77 -0
- data/app/views/partials/_rdf_logo.html.erb +4 -0
- data/app/views/partials/collection/_member.html.erb +14 -0
- data/app/views/partials/collection_label/_search_result.html.erb +5 -0
- data/app/views/partials/concept/_edit_link_base.html.erb +4 -0
- data/app/views/partials/concept/_inline_base.html.erb +4 -0
- data/app/views/partials/concept/_new_link_base.html.erb +4 -0
- data/app/views/partials/concept/relation/_base.html.erb +8 -0
- data/app/views/partials/concept/relation/_edit_base.html.erb +15 -0
- data/app/views/partials/concept/relation/skos/_narrower.html.erb +12 -0
- data/app/views/partials/concept/relation/skos/broader/_mono.html.erb +28 -0
- data/app/views/partials/concept/relation/skos/broader/_poly.html.erb +14 -0
- data/app/views/partials/labeling/skos/_base.html.erb +17 -0
- data/app/views/partials/labeling/skos/_edit_base.html.erb +7 -0
- data/app/views/partials/labeling/skos/_search_result.html.erb +12 -0
- data/app/views/partials/match/_base.html.erb +13 -0
- data/app/views/partials/match/_edit_base.html.erb +6 -0
- data/app/views/partials/note/_base.html.erb +15 -0
- data/app/views/partials/note/_edit_base.html.erb +28 -0
- data/app/views/partials/note/_note.html.erb +14 -0
- data/app/views/partials/note/_search_result.html.erb +8 -0
- data/app/views/partials/note/skos/_edit_change_note.html.erb +47 -0
- data/app/views/partials/note/skos/definition/_search_result.html.erb +8 -0
- data/app/views/rdf/show_concept.iqrdf +5 -0
- data/app/views/search_results/_head_contents.html.erb +4 -0
- data/app/views/search_results/_rdf_links.html.erb +4 -0
- data/app/views/search_results/index.html.erb +92 -0
- data/app/views/search_results/index.iqrdf +33 -0
- data/app/views/triple_store_syncs/new.html.erb +7 -0
- data/app/views/user_sessions/new.html.erb +11 -0
- data/app/views/users/_form.html.erb +45 -0
- data/app/views/users/_user_preference.html.erb +12 -0
- data/app/views/users/edit.html.erb +14 -0
- data/app/views/users/index.html.erb +29 -0
- data/app/views/users/new.html.erb +13 -0
- data/config/application.rb +82 -0
- data/config/boot.rb +29 -0
- data/config/database.template.yml +43 -0
- data/config/database.yml +40 -0
- data/config/deploy/common.rb +79 -0
- data/config/deploy/ec2.rb +43 -0
- data/config/deploy/history.rb +29 -0
- data/config/deploy/innoq.rb +37 -0
- data/config/deploy.rb +72 -0
- data/config/engine.rb +25 -0
- data/config/environment.rb +21 -0
- data/config/environments/development.rb +74 -0
- data/config/environments/production.rb +65 -0
- data/config/environments/production.template.rb +65 -0
- data/config/environments/production_internal.rb +65 -0
- data/config/environments/test.rb +51 -0
- data/config/initializers/action_view.rb +23 -0
- data/config/initializers/active_record.rb +18 -0
- data/config/initializers/backtrace_silencers.rb +23 -0
- data/config/initializers/inflections.rb +26 -0
- data/config/initializers/iqvoc.rb +50 -0
- data/config/initializers/jdbc.rb +23 -0
- data/config/initializers/kaminari_config.rb +8 -0
- data/config/initializers/language.rb +6 -0
- data/config/initializers/mime_types.rb +24 -0
- data/config/initializers/secret_token.rb +29 -0
- data/config/initializers/secret_token.rb.template +29 -0
- data/config/initializers/session_store.rb +24 -0
- data/config/locales/activerecord.de.yml +135 -0
- data/config/locales/activerecord.en.yml +135 -0
- data/config/locales/authlogic.de.yml +38 -0
- data/config/locales/authlogic.en.yml +38 -0
- data/config/locales/de.yml +326 -0
- data/config/locales/defaults.de.yml +153 -0
- data/config/locales/en.yml +332 -0
- data/config/routes.rb +53 -0
- data/config/warble.rb +158 -0
- data/db/iqvoc_test.sqlite3 +0 -0
- data/db/migrate/20100927101502_create_schema.rb +174 -0
- data/db/migrate/20101125141218_add_collection_tables.rb +32 -0
- data/db/migrate/20101129161528_add_type_to_collections.rb +24 -0
- data/db/migrate/20101202094602_add_origin_to_collections.rb +25 -0
- data/db/migrate/20101202135420_rename_collection_contents_to_collection_members.rb +25 -0
- data/db/migrate/20101208103531_add_type_to_collection_contents.rb +27 -0
- data/db/migrate/20101210153916_add_indexes_to_collections.rb +25 -0
- data/db/migrate/20110204121244_create_collection_labels.rb +32 -0
- data/db/migrate/20110208084250_change_origin_lengths.rb +27 -0
- data/db/migrate/20110328124300_discard_collection_specifics.rb +27 -0
- data/db/migrate/20110408120357_remove_classifications_and_classifiers.rb +32 -0
- data/db/migrate/20110408120740_remove_xl_specfic_stuff.rb +39 -0
- data/db/migrate/20110420133640_change_value_in_notes.rb +8 -0
- data/db/migrate/20110427120534_add_published_at_to_labels.rb +9 -0
- data/db/migrate/20110510162719_use_mono_hierarchy_instead_of_poly_hierarchy.rb +13 -0
- data/db/migrate/20110512132624_extend_notes_value_field_length.rb +8 -0
- data/db/migrate/20110525103100_separate_note_annotation_predicates.rb +38 -0
- data/db/migrate/20110615134040_change_umt_note_annotations_to_dct.rb +9 -0
- data/db/schema.rb +127 -0
- data/db/seeds.rb +37 -0
- data/iqvoc.gemspec +27 -0
- data/lib/engine_tasks/assets.rake +49 -0
- data/lib/engine_tasks/db.rake +18 -0
- data/lib/engine_tasks/release.rake +118 -0
- data/lib/iqvoc/ability.rb +44 -0
- data/lib/iqvoc/data_helper.rb +27 -0
- data/lib/iqvoc/deep_cloning.rb +92 -0
- data/lib/iqvoc/rdf_helper.rb +67 -0
- data/lib/iqvoc/skos_importer.rb +144 -0
- data/lib/iqvoc/version.rb +19 -0
- data/lib/iqvoc/versioning.rb +151 -0
- data/lib/iqvoc.rb +228 -0
- data/lib/maker.rb +144 -0
- data/lib/ojdbc14.jar +0 -0
- data/lib/string.rb +23 -0
- data/lib/tasks/importer.rake +16 -0
- data/lib/tasks/jdbc.rake +24 -0
- data/public/404.html +26 -0
- data/public/422.html +26 -0
- data/public/500.html +26 -0
- data/public/favicon.ico +0 -0
- data/public/images/iqvoc/add.png +0 -0
- data/public/images/iqvoc/arrow_down.gif +0 -0
- data/public/images/iqvoc/arrow_up.gif +0 -0
- data/public/images/iqvoc/footer.png +0 -0
- data/public/images/iqvoc/go_there.png +0 -0
- data/public/images/iqvoc/header.png +0 -0
- data/public/images/iqvoc/header_long.png +0 -0
- data/public/images/iqvoc/iqvoc.png +0 -0
- data/public/images/iqvoc/note_add.png +0 -0
- data/public/images/iqvoc/note_delete.png +0 -0
- data/public/images/iqvoc/note_edit.png +0 -0
- data/public/images/iqvoc/ok.png +0 -0
- data/public/images/iqvoc/rails.png +0 -0
- data/public/images/iqvoc/rdf_flyer.gif +0 -0
- data/public/images/iqvoc/red_arrow.png +0 -0
- data/public/images/iqvoc/remove.png +0 -0
- data/public/images/iqvoc/shadow.png +0 -0
- data/public/images/iqvoc/spinner.gif +0 -0
- data/public/images/iqvoc/tokenizer_delete.png +0 -0
- data/public/images/iqvoc/tokenizer_pencile.png +0 -0
- data/public/images/iqvoc/tokenizer_show.png +0 -0
- data/public/images/iqvoc/unfinished.png +0 -0
- data/public/javascripts/iqvoc/application.js +123 -0
- data/public/javascripts/iqvoc/entityselect.js +121 -0
- data/public/javascripts/iqvoc/excanvas.js +35 -0
- data/public/javascripts/iqvoc/iqvoc.js +118 -0
- data/public/javascripts/iqvoc/jit_rgraph.js +153 -0
- data/public/javascripts/iqvoc/jquery-1.6.2.min.js +18 -0
- data/public/javascripts/iqvoc/jquery-treeview/changelog.txt +29 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/async.html +44 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/bg.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/demo.js +43 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/images.html +56 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/index.html +340 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/large.html +559 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/prerendered.html +621 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/screen.css +24 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/simple.html +82 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/source.php +87 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/source.phps +87 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/ajax-loader.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/file.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/folder-closed.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/folder.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/minus.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/plus.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-black-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-black.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-default-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-default.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-famfamfam-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-famfamfam.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-gray-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-gray.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-red-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-red.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.async.js +82 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.css +75 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.js +251 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.min.js +15 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.pack.js +16 -0
- data/public/javascripts/iqvoc/jquery-treeview/lib/jquery.cookie.js +92 -0
- data/public/javascripts/iqvoc/jquery-treeview/lib/jquery.js +3363 -0
- data/public/javascripts/iqvoc/jquery-treeview/todo +8 -0
- data/public/javascripts/iqvoc/jquery-ui-1.8.13.custom.js +3229 -0
- data/public/javascripts/iqvoc/jquery-ui-1.8.13.custom.min.js +163 -0
- data/public/javascripts/iqvoc/jquery-ui.datepicker-de.js +22 -0
- data/public/javascripts/iqvoc/json2.js +480 -0
- data/public/javascripts/iqvoc/langselect.js +73 -0
- data/public/javascripts/iqvoc/rails.js +132 -0
- data/public/javascripts/iqvoc/storage.js +122 -0
- data/public/javascripts/iqvoc/visualization.js +321 -0
- data/public/robots.txt +5 -0
- data/public/stylesheets/iqvoc/blueprint/ie.css +35 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/icons/cross.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/icons/key.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/icons/tick.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/readme.txt +32 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/screen.css +97 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/fancy-type/readme.txt +14 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/fancy-type/screen.css +71 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/doc.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/email.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/external.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/feed.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/im.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/pdf.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/visited.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/xls.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/readme.txt +18 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/screen.css +40 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/rtl/readme.txt +10 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/rtl/screen.css +110 -0
- data/public/stylesheets/iqvoc/blueprint/print.css +29 -0
- data/public/stylesheets/iqvoc/blueprint/screen.css +258 -0
- data/public/stylesheets/iqvoc/blueprint/src/forms.css +65 -0
- data/public/stylesheets/iqvoc/blueprint/src/grid.css +280 -0
- data/public/stylesheets/iqvoc/blueprint/src/grid.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/src/ie.css +76 -0
- data/public/stylesheets/iqvoc/blueprint/src/print.css +85 -0
- data/public/stylesheets/iqvoc/blueprint/src/reset.css +45 -0
- data/public/stylesheets/iqvoc/blueprint/src/typography.css +106 -0
- data/public/stylesheets/iqvoc/forms.css +71 -0
- data/public/stylesheets/iqvoc/images/back.png +0 -0
- data/public/stylesheets/iqvoc/images/branch.png +0 -0
- data/public/stylesheets/iqvoc/images/categ.png +0 -0
- data/public/stylesheets/iqvoc/images/categ_open.png +0 -0
- data/public/stylesheets/iqvoc/images/go_there.png +0 -0
- data/public/stylesheets/iqvoc/images/iqvoc.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_end.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_end_filled.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_mid.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_mid_filled.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_nothing.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_only.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_only_filled.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_top.png +0 -0
- data/public/stylesheets/iqvoc/images/leaf_top_filled.png +0 -0
- data/public/stylesheets/iqvoc/images/nothing.png +0 -0
- data/public/stylesheets/iqvoc/images/top_01.png +0 -0
- data/public/stylesheets/iqvoc/images/trunk.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_217bc0_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_2e83ff_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_469bdd_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_6da8d5_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_f9bd01_256x240.png +0 -0
- data/public/stylesheets/iqvoc/iqvoc.css +477 -0
- data/public/stylesheets/iqvoc/jquery-ui-1.8.13.custom.css +415 -0
- data/public/stylesheets/iqvoc/widgets.css +81 -0
- data/test/factories.rb +74 -0
- data/test/integration/alphabetical_test.rb +53 -0
- data/test/integration/authentication_test.rb +41 -0
- data/test/integration/browse_concepts_and_labels_test.rb +61 -0
- data/test/integration/browse_static_pages_test.rb +29 -0
- data/test/integration/client_augmentation_test.rb +42 -0
- data/test/integration/client_edit_concept_test.rb +72 -0
- data/test/integration/collection_circularity_test.rb +110 -0
- data/test/integration/concept_test.rb +61 -0
- data/test/integration/edit_concepts_test.rb +40 -0
- data/test/integration/note_annotations_test.rb +86 -0
- data/test/integration/search_test.rb +205 -0
- data/test/integration/tree_test.rb +31 -0
- data/test/integration/untranslated_test.rb +60 -0
- data/test/integration_test_helper.rb +45 -0
- data/test/performance/browsing_test.rb +25 -0
- data/test/test_helper.rb +29 -0
- data/test/unit/concept_test.rb +93 -0
- data/test/unit/note_test.rb +32 -0
- data/test/unit/origin_mapping_test.rb +70 -0
- data/test/unit/skos_import_test.rb +100 -0
- metadata +522 -0
@@ -0,0 +1,135 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
# Copyright 2011 innoQ Deutschland GmbH
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
de:
|
18
|
+
activerecord:
|
19
|
+
models:
|
20
|
+
concept:
|
21
|
+
base:
|
22
|
+
one: "Konzept"
|
23
|
+
other: "Konzepte"
|
24
|
+
relation:
|
25
|
+
skos:
|
26
|
+
broader:
|
27
|
+
mono:
|
28
|
+
one: "Allgemeinerer Begriff"
|
29
|
+
other: "Allgemeinere Begriffe"
|
30
|
+
poly:
|
31
|
+
one: "Allgemeinerer Begriff"
|
32
|
+
other: "Allgemeinere Begriffe"
|
33
|
+
narrower:
|
34
|
+
base:
|
35
|
+
one: "Spezifischerer Begriff"
|
36
|
+
other: "Spezifischere Begriffe"
|
37
|
+
related:
|
38
|
+
one: "Verwandter Begriff"
|
39
|
+
other: "Verwandte Begriffe"
|
40
|
+
label:
|
41
|
+
skos:
|
42
|
+
base:
|
43
|
+
one: "Label"
|
44
|
+
other: "Labels"
|
45
|
+
labeling:
|
46
|
+
base:
|
47
|
+
one: "Label"
|
48
|
+
other: "Labels"
|
49
|
+
skos:
|
50
|
+
base:
|
51
|
+
one: "Label"
|
52
|
+
other: "Labels"
|
53
|
+
pref_label:
|
54
|
+
one: "Bevorzugtes Label"
|
55
|
+
other: "Bevorzugte Labels"
|
56
|
+
alt_label:
|
57
|
+
one: "Alternatives Label"
|
58
|
+
other: "Alternative Labels"
|
59
|
+
match:
|
60
|
+
skos:
|
61
|
+
broad_match:
|
62
|
+
one: "Broader Match"
|
63
|
+
other: "Broader Matches"
|
64
|
+
close_match:
|
65
|
+
one: "Close Match"
|
66
|
+
other: "Close Matches"
|
67
|
+
exact_match:
|
68
|
+
one: "Exact Match"
|
69
|
+
other: "Exact Matches"
|
70
|
+
narrow_match:
|
71
|
+
one: "Narrower Match"
|
72
|
+
other: "Narrower Matches"
|
73
|
+
related_match:
|
74
|
+
one: "Related Match"
|
75
|
+
other: "Related Matches"
|
76
|
+
note:
|
77
|
+
annotated:
|
78
|
+
base:
|
79
|
+
one: "Annotation"
|
80
|
+
other: "Annotationen"
|
81
|
+
base:
|
82
|
+
one: "Anmerkung"
|
83
|
+
other: "Anmerkungen"
|
84
|
+
skos:
|
85
|
+
base:
|
86
|
+
one: "Anmerkung"
|
87
|
+
other: "Anmerkungen"
|
88
|
+
change_note:
|
89
|
+
one: "Änderungsanmerkung"
|
90
|
+
other: "Änderungsanmerkungen"
|
91
|
+
definition:
|
92
|
+
one: "Definition"
|
93
|
+
other: "Definitionen"
|
94
|
+
editorial_note:
|
95
|
+
one: "Redaktionelle Anmerkung"
|
96
|
+
other: "Redaktionelle Anmerkungen"
|
97
|
+
example:
|
98
|
+
one: "Beispiel"
|
99
|
+
other: "Beispiele"
|
100
|
+
history_note:
|
101
|
+
one: "Geschichtliche Anmerkung"
|
102
|
+
other: "Geschichtliche Anmerkungen"
|
103
|
+
scope_note:
|
104
|
+
one: "Bereichsanmerkung"
|
105
|
+
other: "Bereichsanmerkungen"
|
106
|
+
iqvoc:
|
107
|
+
language_note:
|
108
|
+
one: "Sprachbezeichnung (Kollektion)"
|
109
|
+
other: "Sprachbezeichnungen (Kollektion)"
|
110
|
+
collection:
|
111
|
+
base:
|
112
|
+
one: "Kollektion"
|
113
|
+
other: "Kollektionen"
|
114
|
+
member:
|
115
|
+
base: "Zugewiesene Kollektionen"
|
116
|
+
|
117
|
+
attributes:
|
118
|
+
concept:
|
119
|
+
base:
|
120
|
+
follow_up: "Wiedervorlage"
|
121
|
+
expired_at: "Abgelaufen am"
|
122
|
+
label:
|
123
|
+
base:
|
124
|
+
follow_up: "Wiedervorlage"
|
125
|
+
expired_at: "Abgelaufen am"
|
126
|
+
language: "Sprache"
|
127
|
+
user:
|
128
|
+
forename: "Vorname"
|
129
|
+
surname: "Nachname"
|
130
|
+
email: "E-Mail"
|
131
|
+
password: "Passwort"
|
132
|
+
password_confirmation: "Passwort (Bestätigung)"
|
133
|
+
active: "aktiviert"
|
134
|
+
role: "Rolle"
|
135
|
+
telephone_number: "Telefonnummer"
|
@@ -0,0 +1,135 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
# Copyright 2011 innoQ Deutschland GmbH
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
en:
|
18
|
+
activerecord:
|
19
|
+
models:
|
20
|
+
concept:
|
21
|
+
base:
|
22
|
+
one: "Concept"
|
23
|
+
other: "Concepts"
|
24
|
+
relation:
|
25
|
+
skos:
|
26
|
+
broader:
|
27
|
+
mono:
|
28
|
+
one: "Broader term"
|
29
|
+
other: "Broader terms"
|
30
|
+
poly:
|
31
|
+
one: "Broader term"
|
32
|
+
other: "Broader terms"
|
33
|
+
narrower:
|
34
|
+
base:
|
35
|
+
one: "Narrower term"
|
36
|
+
other: "Narrower terms"
|
37
|
+
related:
|
38
|
+
one: "Related term"
|
39
|
+
other: "Related terms"
|
40
|
+
label:
|
41
|
+
skos:
|
42
|
+
base:
|
43
|
+
one: "Label"
|
44
|
+
other: "Labels"
|
45
|
+
labeling:
|
46
|
+
base:
|
47
|
+
one: "Label"
|
48
|
+
other: "Labels"
|
49
|
+
skos:
|
50
|
+
base:
|
51
|
+
one: "Label"
|
52
|
+
other: "Labels"
|
53
|
+
pref_label:
|
54
|
+
one: "Preferred label"
|
55
|
+
other: "Preferred labels"
|
56
|
+
alt_label:
|
57
|
+
one: "Alternative label"
|
58
|
+
other: "Alternative labels"
|
59
|
+
match:
|
60
|
+
skos:
|
61
|
+
broad_match:
|
62
|
+
one: "Broader Match"
|
63
|
+
other: "Broader Matches"
|
64
|
+
close_match:
|
65
|
+
one: "Close Match"
|
66
|
+
other: "Close Matches"
|
67
|
+
exact_match:
|
68
|
+
one: "Exact Match"
|
69
|
+
other: "Exact Matches"
|
70
|
+
narrow_match:
|
71
|
+
one: "Narrower Match"
|
72
|
+
other: "Narrower Matches"
|
73
|
+
related_match:
|
74
|
+
one: "Related Match"
|
75
|
+
other: "Related Matches"
|
76
|
+
note:
|
77
|
+
annotated:
|
78
|
+
base:
|
79
|
+
one: "Annotation"
|
80
|
+
other: "Annotations"
|
81
|
+
base:
|
82
|
+
one: "Note"
|
83
|
+
other: "Notes"
|
84
|
+
skos:
|
85
|
+
base:
|
86
|
+
one: "Note"
|
87
|
+
other: "Notes"
|
88
|
+
change_note:
|
89
|
+
one: "Change note"
|
90
|
+
other: "Change notes"
|
91
|
+
definition:
|
92
|
+
one: "Definition"
|
93
|
+
other: "Definitions"
|
94
|
+
editorial_note:
|
95
|
+
one: "Editorial note"
|
96
|
+
other: "Editorial notes"
|
97
|
+
example:
|
98
|
+
one: "Example"
|
99
|
+
other: "Examples"
|
100
|
+
history_note:
|
101
|
+
one: "History note"
|
102
|
+
other: "History notes"
|
103
|
+
scope_note:
|
104
|
+
one: "Scope note"
|
105
|
+
other: "Scope notes"
|
106
|
+
iqvoc:
|
107
|
+
language_note:
|
108
|
+
one: "Label (Collection)"
|
109
|
+
other: "Labels (Collection)"
|
110
|
+
collection:
|
111
|
+
base:
|
112
|
+
one: "Collection"
|
113
|
+
other: "Collections"
|
114
|
+
member:
|
115
|
+
base: "Assigned collections"
|
116
|
+
|
117
|
+
attributes:
|
118
|
+
concept:
|
119
|
+
base:
|
120
|
+
follow_up: "Reminder"
|
121
|
+
expired_at: "Expired at"
|
122
|
+
label:
|
123
|
+
base:
|
124
|
+
follow_up: "Reminder"
|
125
|
+
expired_at: "Expired at"
|
126
|
+
language: "Language"
|
127
|
+
user:
|
128
|
+
forename: "Forename"
|
129
|
+
surname: "Surname"
|
130
|
+
email: "Email"
|
131
|
+
password: "Password"
|
132
|
+
password_confirmation: "Password (Confirmation)"
|
133
|
+
active: "active"
|
134
|
+
role: "Role"
|
135
|
+
telephone_number: "Phone number"
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
# Copyright 2011 innoQ Deutschland GmbH
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
de:
|
18
|
+
authlogic:
|
19
|
+
error_messages:
|
20
|
+
login_blank: "muss ausgefüllt werden"
|
21
|
+
login_not_found: "ist ungültig"
|
22
|
+
login_invalid: "ist keine gültige E-Mail Adresse"
|
23
|
+
consecutive_failed_logins_limit_exceeded:
|
24
|
+
email_invalid: "ist keine gültige E-Mail Adresse"
|
25
|
+
password_blank: "muss angegeben werden"
|
26
|
+
password_invalid: "ist ungültig"
|
27
|
+
not_active: "Ihr Account ist nicht aktiv"
|
28
|
+
not_confirmed: "Ihr Account ist noch nicht bestätigt"
|
29
|
+
not_approved: "Ihr Account ist noch nicht zugelassen"
|
30
|
+
no_authentication_details: "Sie haben keine Angaben für die Authentifizierung gemacht"
|
31
|
+
models:
|
32
|
+
user_session: "UserSession"
|
33
|
+
attributes:
|
34
|
+
user_session:
|
35
|
+
login:
|
36
|
+
email: "E-Mail"
|
37
|
+
password: "Passwort"
|
38
|
+
remember_me: "Angemeldet bleiben"
|
@@ -0,0 +1,38 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
# Copyright 2011 innoQ Deutschland GmbH
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
en:
|
18
|
+
authlogic:
|
19
|
+
error_messages:
|
20
|
+
login_blank: "can not be blank"
|
21
|
+
login_not_found: "is not valid"
|
22
|
+
login_invalid: "should use only letters, numbers, spaces, and .-_@ please."
|
23
|
+
consecutive_failed_logins_limit_exceeded: "Consecutive failed logins limit exceeded, account is disabled."
|
24
|
+
email_invalid: "should look like an email address."
|
25
|
+
password_blank: "can not be blank"
|
26
|
+
password_invalid: "is not valid"
|
27
|
+
not_active: "Your account is not active"
|
28
|
+
not_confirmed: "Your account is not confirmed"
|
29
|
+
not_approved: "Your account is not approved"
|
30
|
+
no_authentication_details: "You did not provide any details for authentication."
|
31
|
+
models:
|
32
|
+
user_session: "UserSession"
|
33
|
+
attributes:
|
34
|
+
user_session:
|
35
|
+
login: login
|
36
|
+
email: email
|
37
|
+
password: password
|
38
|
+
remember_me: remember me
|
@@ -0,0 +1,326 @@
|
|
1
|
+
# encoding: UTF-8
|
2
|
+
|
3
|
+
# Copyright 2011 innoQ Deutschland GmbH
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
de:
|
18
|
+
languages:
|
19
|
+
de: Deutsch
|
20
|
+
en: Englisch
|
21
|
+
none: Wiss.
|
22
|
+
fr: Französisch
|
23
|
+
sl: Slovenisch
|
24
|
+
pl: Polnisch
|
25
|
+
pt: Portugiesisch
|
26
|
+
es: Spanisch
|
27
|
+
gr: Griechisch
|
28
|
+
bg: Bulgarisch
|
29
|
+
nl: Niederländisch
|
30
|
+
hu: Ungarisch
|
31
|
+
it: Italienisch
|
32
|
+
cs: Tschechisch
|
33
|
+
sk: Slowakisch
|
34
|
+
views:
|
35
|
+
pagination:
|
36
|
+
first: "« Erste"
|
37
|
+
previous: "< Zurück"
|
38
|
+
next: "Weiter >"
|
39
|
+
last: "Letzte »"
|
40
|
+
truncate: "…"
|
41
|
+
txt:
|
42
|
+
common:
|
43
|
+
iqvoc_title: "iQvoc Vocabulary Management System"
|
44
|
+
pref_label: "Bevorzugtes Label"
|
45
|
+
edit: "Bearbeiten"
|
46
|
+
value: "Wert"
|
47
|
+
back: Zurück
|
48
|
+
welcome: "Hallo %{user_name}"
|
49
|
+
save: "Speichern"
|
50
|
+
reset: "Zurücksetzen"
|
51
|
+
language: "Sprache"
|
52
|
+
add_note: "Weitere hinzufügen"
|
53
|
+
delete: "Löschen"
|
54
|
+
attributes: "Eigenschaften"
|
55
|
+
editor: "Redakteur"
|
56
|
+
referenced_concepts: "Referenzierte Konzepte befinden sich in Bearbeitung:"
|
57
|
+
association_not_found: "Die Assoziation wurde nicht gefunden. Evtl. wurde diese von der anderen Seite bearbeitet. Bitte das Fenster neu laden"
|
58
|
+
to_review: "Vorlage zur Freigabe"
|
59
|
+
is_in_review: "Dokument befindet sich im Reviewprozess"
|
60
|
+
unpublished_version: Unveröffentlichte Version
|
61
|
+
consistent: "konsistent"
|
62
|
+
inconsistent: "inkonsistent"
|
63
|
+
state:
|
64
|
+
published: "Veröffentlicht"
|
65
|
+
in_review: "Vorlage zur Freigabe"
|
66
|
+
checked_out: "Ausgecheckt"
|
67
|
+
of: von
|
68
|
+
pending: "Lade…"
|
69
|
+
translation_missing_for: "keine Übersetzung für"
|
70
|
+
|
71
|
+
views:
|
72
|
+
layouts:
|
73
|
+
sections:
|
74
|
+
main: Basisdaten
|
75
|
+
labels: Bezeichner
|
76
|
+
relations: Beziehungen
|
77
|
+
notes: Anmerkungen
|
78
|
+
matches: Beziehungen zu anderen Ontologien
|
79
|
+
application:
|
80
|
+
header: "innoQ Vocabulary Management"
|
81
|
+
select_language: "Sprache auswählen"
|
82
|
+
login: "Anmelden"
|
83
|
+
logout: "Abmelden"
|
84
|
+
alphabetical_concepts:
|
85
|
+
untranslated_concepts:
|
86
|
+
caption: "Fehlende Übersetzungen"
|
87
|
+
unavailable: "Fehlende Übersetzungen für die Hauptsprache nicht verfügbar."
|
88
|
+
hierarchical_concepts:
|
89
|
+
concepts:
|
90
|
+
expired_at: "Abgelaufen am %{date}"
|
91
|
+
select: "Bitte wählen Sie ein %{concept_class_name} aus der unten aufgeführten Liste."
|
92
|
+
new: "Neues %{concept_class_name}"
|
93
|
+
pref_label: "Bevorzugtes Label"
|
94
|
+
classifiers: "Umweltklassen"
|
95
|
+
labels:
|
96
|
+
new: "Neues Label"
|
97
|
+
template_form: "Vorlageform"
|
98
|
+
language: "Sprache"
|
99
|
+
base_form: "Ansetzungsform"
|
100
|
+
inflectional_code: "Endungscode"
|
101
|
+
inflectionals: "Schreibweisen"
|
102
|
+
versionview: "Versionsansicht für Label"
|
103
|
+
follow_up: "Wiedervorlage"
|
104
|
+
endings: "Endungen"
|
105
|
+
expired_at: "Abgelaufen am"
|
106
|
+
label_already_exists: "Es gibt bereits ein Label mit der eingegebenen Vorlageform"
|
107
|
+
edit:
|
108
|
+
header: "Bearbeitung von Label"
|
109
|
+
save: "Speichern"
|
110
|
+
base_data: "Eigenschaften"
|
111
|
+
delete: "Löschen"
|
112
|
+
delete_confirm: "Die Relation wird entfernt. Sind Sie sicher?"
|
113
|
+
edit: "Bearbeiten"
|
114
|
+
apply: "Übernehmen"
|
115
|
+
add_note: "Weitere hinzufügen"
|
116
|
+
reset: "Zurücksetzen"
|
117
|
+
inflectionals_used_in: "Schreibweisen werden auch in folgenden Labels verwendet:"
|
118
|
+
notes:
|
119
|
+
value: "Wert"
|
120
|
+
language: "Sprache"
|
121
|
+
save: "Speichern"
|
122
|
+
edit:
|
123
|
+
header: "Notiz bearbeiten"
|
124
|
+
navigation:
|
125
|
+
back_to_edit_versioned_object: "Zurück zur Bearbeitung"
|
126
|
+
back_to_show: "Zurück zur Originalversion"
|
127
|
+
back_to_preview: "Zurück zur Versionsvorschau"
|
128
|
+
hierarchical: "Hierarchisch"
|
129
|
+
alphabetical: "Alphabetisch"
|
130
|
+
search: "Suche"
|
131
|
+
about: "Über"
|
132
|
+
users: "Benutzer"
|
133
|
+
collections: "Kollektionen"
|
134
|
+
search_results:
|
135
|
+
header: "Suche"
|
136
|
+
inflectionals: "Schreibweisen"
|
137
|
+
contains: "enthält"
|
138
|
+
ends_with: "endet mit"
|
139
|
+
begins_with: "beginnt mit"
|
140
|
+
exact: "exakte Übereinstimmung"
|
141
|
+
regexp: "regulärer Ausdruck (fortgeschritten)"
|
142
|
+
search_term: "Suchbegriff(e)"
|
143
|
+
search_term_in_results: "Suchbegriff"
|
144
|
+
no_results: "Keine Ergebnisse"
|
145
|
+
search_languages: "Sprachen"
|
146
|
+
search_results: "Suchergebnisse"
|
147
|
+
results_found:
|
148
|
+
one: "Ihre Suche nach <strong>%{query}</strong> lieferte %{count} Ergebnis."
|
149
|
+
other: "Ihre Suche nach <strong>%{query}</strong> lieferte %{count} Ergebnisse."
|
150
|
+
no_results_found: "Ihre Suche lieferte keine Ergebnisse."
|
151
|
+
submit: "Suche"
|
152
|
+
type: "Typ"
|
153
|
+
used_as: "benutzt als"
|
154
|
+
language: "Sprache"
|
155
|
+
all: "alle"
|
156
|
+
none: "keine"
|
157
|
+
user_sessions:
|
158
|
+
header: "Anmelden"
|
159
|
+
login: "Anmelden"
|
160
|
+
email: "E-Mail"
|
161
|
+
password: "Passwort"
|
162
|
+
remember_me: "Angemeldet bleiben"
|
163
|
+
error: "E-Mail und/oder Passwort falsch. Bitte überprüfen Sie Ihre Eingabe."
|
164
|
+
users:
|
165
|
+
index:
|
166
|
+
header: "Benutzerverwaltung"
|
167
|
+
new:
|
168
|
+
header: "Neuer Benutzer"
|
169
|
+
edit:
|
170
|
+
header: "Benutzer bearbeiten"
|
171
|
+
name: "Name"
|
172
|
+
email: "E-Mail"
|
173
|
+
role: "Rolle"
|
174
|
+
active: "aktiviert"
|
175
|
+
new_link: "Neu"
|
176
|
+
show_link: "Anzeigen"
|
177
|
+
edit_link: "Bearbeiten"
|
178
|
+
destroy_link: "Löschen"
|
179
|
+
sure: "Sind Sie sicher?"
|
180
|
+
submit: "Speichern"
|
181
|
+
telephone_number: "Telefonnummer"
|
182
|
+
errors:
|
183
|
+
access_denied:
|
184
|
+
header: "Keine Berechtigung"
|
185
|
+
message: "Ihr Benutzerkonto besitzt keine ausreichenden Rechte, um diese Seite anzuzeigen."
|
186
|
+
not_found:
|
187
|
+
header: "Nicht gefunden"
|
188
|
+
tip: "Nutzen Sie die Suchfunktion, um Inhalte zu finden:"
|
189
|
+
versioning:
|
190
|
+
edit_mode: "Bearbeitung fortsetzen"
|
191
|
+
to_edit_mode: "In Bearbeitung versetzen"
|
192
|
+
publishing: "Veröffentlichen"
|
193
|
+
delete: "Kopie löschen"
|
194
|
+
delete_confirm: "Kopie wirklich löschen?"
|
195
|
+
versioning_mode: "Neue Version erstellen"
|
196
|
+
unlock: "Entsperren"
|
197
|
+
preview_new_version: "Vorschau der Version in Bearbeitung"
|
198
|
+
consistency_check: "Konsistenzprüfung"
|
199
|
+
current_revision: "Aktuelle Revision"
|
200
|
+
in_ongoing_editing_by: "in Bearbeitung von"
|
201
|
+
to_review_success: "Wurde in den Freigabeprozess aufgenommen"
|
202
|
+
to_review_error: "Konnte nicht in den Freigabeprozess aufgenommen werden"
|
203
|
+
labelings:
|
204
|
+
edit:
|
205
|
+
header: "Labeling bearbeiten"
|
206
|
+
submit: "Speichern"
|
207
|
+
lang_widget:
|
208
|
+
caption: "Sprachauswahl"
|
209
|
+
primary: "Primärsprache"
|
210
|
+
secondary: "Sekundärsprachen"
|
211
|
+
dashboard:
|
212
|
+
type: "Typ"
|
213
|
+
value: "Name"
|
214
|
+
locking_user: "Gesperrt durch"
|
215
|
+
follow_up: "Wiedervorlage"
|
216
|
+
updated_at: "Geändert am"
|
217
|
+
to_review: "Vorlage zur Freigabe"
|
218
|
+
check_consistency: Konsistenz prüfen
|
219
|
+
consistent: "konsistent"
|
220
|
+
inconsistent: "inkonsistent"
|
221
|
+
state: "Status"
|
222
|
+
full_rdf_export: Vollständiger RDF Export
|
223
|
+
collections:
|
224
|
+
new: "Neue Kollektion"
|
225
|
+
|
226
|
+
partials:
|
227
|
+
note:
|
228
|
+
collection:
|
229
|
+
skos:
|
230
|
+
member:
|
231
|
+
label:
|
232
|
+
relation:
|
233
|
+
concept:
|
234
|
+
relation:
|
235
|
+
labeling:
|
236
|
+
concept:
|
237
|
+
label:
|
238
|
+
match:
|
239
|
+
|
240
|
+
controllers:
|
241
|
+
application:
|
242
|
+
login_required: "Sie müssen angemeldet sein, um diese Seite aufzurufen."
|
243
|
+
logout_required: "Sie müssen abgemeldet sein, um diese Seite aufzurufen."
|
244
|
+
search_results:
|
245
|
+
insufficient_data: "Bitte geben Sie mehr Suchkriterien an."
|
246
|
+
users:
|
247
|
+
successfully_created: "Benutzer wurde erfolgreich erstellt."
|
248
|
+
successfully_updated: "Der Benutzer wurde erfolgreich geändert."
|
249
|
+
user_sessions:
|
250
|
+
login_success: "Anmeldung erfolgreich."
|
251
|
+
logout_success: "Abmeldung erfolgreich."
|
252
|
+
versioning:
|
253
|
+
branch_error: "Es existiert schon eine neue Version!"
|
254
|
+
published: "Instanz wurde erfolgreich veröffentlicht."
|
255
|
+
published_with_warning: "Instanz wurde erfolgreich veröffentlicht, hat aber keine Relationen zu anderen Instanzen!"
|
256
|
+
merged_delete_error: "Das alte Label konnte nicht gelöscht werden!"
|
257
|
+
merged_publishing_error: "Instanz konnte nicht veröffentlicht werden!"
|
258
|
+
branched: "Instanzkopie wurde erfolgreich angelegt und für andere Benutzer gesperrt."
|
259
|
+
locked: "Instanz wurde für andere User gesperrt."
|
260
|
+
lock_error: "Instanz ist bereits gesperrt!"
|
261
|
+
unlocked: "Instanz wurde für andere User entsperrt."
|
262
|
+
unlock_error: "Instanz ist bereits entsperrt!"
|
263
|
+
new_version_blank_error: "Es existiert noch keine neue Version!"
|
264
|
+
delete: "Instanz löschen."
|
265
|
+
consistency_check_success: "Instanz ist konsistent."
|
266
|
+
consistency_check_success_with_warning: "Instanz ist konsistent , hat aber keine Relationen zu anderen Instanzen!"
|
267
|
+
consistency_check_error: "Instanz ist inkonsistent!"
|
268
|
+
to_review_success: "Wurde in den Freigabeprozess aufgenommen"
|
269
|
+
to_review_error: "Konnte nicht in den Freigabeprozess aufgenommen werden"
|
270
|
+
virtuoso_exception: "Das Objekt wurde veröffentlicht, konnte aber nicht mit Virtuoso synchronisiert werden. Fehler: "
|
271
|
+
labelings:
|
272
|
+
save:
|
273
|
+
success: "Das Labeling wurde erfolgreich gespeichert."
|
274
|
+
error: "Das Labeling konnte nicht gespeichert werden."
|
275
|
+
label_versions:
|
276
|
+
delete: "Labelversion wurde erfolgreich gelöscht."
|
277
|
+
delete_error: "Labelversion konnte nicht gelöscht werden"
|
278
|
+
concept_versions:
|
279
|
+
delete: "Konzeptversion wurde erfolgreich gelöscht."
|
280
|
+
delete_error: "Konzeptversion konnte nicht gelöscht werden"
|
281
|
+
notes:
|
282
|
+
save:
|
283
|
+
success: "Die Notiz wurde erfolgreich gespeichert."
|
284
|
+
versioned_label:
|
285
|
+
success: "Label wurde erfolgreich angelegt."
|
286
|
+
error: "Label konnte nicht angelegt werden!"
|
287
|
+
empty_value: "Die Vorlageform muss ausgefüllt sein!"
|
288
|
+
update_success: "Label wurde erfolgreich aktualisiert."
|
289
|
+
update_error: "Label konnte nicht aktualisiert werden."
|
290
|
+
versioned_concept:
|
291
|
+
success: "Konzept wurde erfolgreich angelegt."
|
292
|
+
error: "Konzept konnte nicht angelegt werden!"
|
293
|
+
empty_value: "Die Vorlageform muss ausgefüllt sein!"
|
294
|
+
update_success: "Konzept wurde erfolgreich aktualisiert."
|
295
|
+
update_error: "Konzept konnte nicht aktualisiert werden."
|
296
|
+
label_error: "Ungültige Label-Zuordnungen:\n%s"
|
297
|
+
narrowers:
|
298
|
+
error: "Die Assoziation wurde nicht gefunden. Evtl. wurde diese von der anderen Seite bearbeitet. Bitte das Fenster neu laden!"
|
299
|
+
triple_store_syncs:
|
300
|
+
success: "Es wurden %{concept_count} freigegebene Concepts und %{label_count} freigegebene Labels synchronisiert."
|
301
|
+
collections:
|
302
|
+
save:
|
303
|
+
success: "Die Kollektion wurde erfolgreich gespeichert."
|
304
|
+
error: "Die Kollektion konnte nicht gespeichert werden."
|
305
|
+
destroy:
|
306
|
+
success: "Die Kollektion wurde erfolgreich gelöscht."
|
307
|
+
error: "Die Kollektion konnte nicht gelöscht werden."
|
308
|
+
circular_error: "Ungültige Subkollektions-Zuordnungen aufgrund von Zirkelbezügen:\n%s"
|
309
|
+
|
310
|
+
models:
|
311
|
+
label:
|
312
|
+
version_error: "Es existieren schon zwei Versionen dieses Labels"
|
313
|
+
value_error: "Die Vorlageform muss ausgefüllt sein!"
|
314
|
+
concept:
|
315
|
+
origin_error: "Origin ungültig!"
|
316
|
+
version_error: "Es existieren schon zwei Versionen dieses Konzepts"
|
317
|
+
no_pref_label_error: "Es muss mindestens ein bevorzugtes Label angegeben werden."
|
318
|
+
main_pref_label_language_missing_error: "Es muss mindestens ein bevorzugtes Label in der Hauptsprache des Thesaurus existieren."
|
319
|
+
pref_labels_with_same_languages_error: "Es darf nur jeweils ein bevorzugtes Label zu einer Sprache geben."
|
320
|
+
association_pref_labels_unpublished: "Das bevorzugte Label muss veröffentlicht sein."
|
321
|
+
association_alt_labels_unpublished: "Alternative Labels müssen veröffentlicht sein."
|
322
|
+
association_hidden_labels_unpublished: "Versteckte Labels müssen veröffentlicht sein."
|
323
|
+
association_broader_unpublished: "Allgemeinere Begriffe müssen veröffentlicht sein."
|
324
|
+
association_narrower_unpublished: "Spezifischere Begriffe müssen veröffentlicht sein."
|
325
|
+
association_related_unpublished: "Verwandte Begriffe müssen veröffentlicht sein."
|
326
|
+
no_pref_label: "-- kein PrefLabel --"
|