diff --git a/.travis.yml b/.travis.yml index 50299bc..453b68d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,6 +5,7 @@ before_script: - cp config/database_example.yml config/database.yml - cp config/secrets_example.yml config/secrets.yml + - cp config/branding_example.yml config/branding.yml - cp config/initializers/devise.rb.example config/initializers/devise.rb - cp config/initializers/recaptcha.rb.example config/initializers/recaptcha.rb - cp config/initializers/wicked_pdf.rb.example config/initializers/wicked_pdf.rb diff --git a/Gemfile b/Gemfile index 0bd6fff..c95209d 100644 --- a/Gemfile +++ b/Gemfile @@ -81,6 +81,7 @@ # INTERNATIONALIZATION gem "i18n-js", ">= 3.0.0.rc11" #damodar added TODO: explain gem 'gettext_i18n_rails', '~> 1.8' +gem "gettext_i18n_rails_js", "~> 1.2.0" # ------------------------------------------------ # API diff --git a/Gemfile.lock b/Gemfile.lock index 9784215..38f77ae 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -136,8 +136,16 @@ actionpack (>= 3.2.13) friendly_id (5.1.0) activerecord (>= 4.0.0) + gettext (3.2.2) + locale (>= 2.0.5) + text (>= 1.3.0) gettext_i18n_rails (1.8.0) fast_gettext (>= 0.9.0) + gettext_i18n_rails_js (1.2.0) + gettext (>= 3.0.2) + gettext_i18n_rails (>= 0.7.1) + po_to_json (>= 1.0.0) + rails (>= 3.2.0) globalid (0.3.7) activesupport (>= 4.1.0) hashdiff (0.3.0) @@ -180,6 +188,7 @@ sprockets (> 2, < 4) tilt libv8 (3.16.14.15) + locale (2.1.2) loofah (2.0.3) nokogiri (>= 1.5.9) mail (2.6.4) @@ -240,6 +249,8 @@ orm_adapter (0.5.0) pg (0.19.0) pkg-config (1.1.7) + po_to_json (1.0.1) + json (>= 1.6.0) protected_attributes (1.1.3) activemodel (>= 4.0.1, < 5.0) pundit (1.1.0) @@ -309,6 +320,7 @@ swagger-docs (0.2.9) activesupport (>= 3) rails (>= 3) + text (1.3.1) therubyracer (0.12.2) libv8 (~> 3.16.14.0) ref @@ -366,6 +378,7 @@ formtastic friendly_id gettext_i18n_rails (~> 1.8) + gettext_i18n_rails_js (~> 1.2.0) htmltoword i18n-js (>= 3.0.0.rc11) jbuilder diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index 08d677c..1b13b64 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -12,7 +12,11 @@ rescue_from Pundit::NotAuthorizedError, with: :user_not_authorized def user_not_authorized - redirect_to root_url, alert: _('You need to sign in or sign up before continuing.') + if user_signed_in? + redirect_to plans_url, notice: _('You are not authorized to perform this action.') + else + redirect_to root_url, alert: _('You need to sign in or sign up before continuing.') + end end before_filter :set_gettext_locale @@ -83,6 +87,18 @@ end end + def failed_create_error(obj, obj_name) + "#{_('Could not create your %{o}.') % {o: obj_name}} #{errors_to_s(obj)}" + end + + def failed_update_error(obj, obj_name) + "#{_('Could not update your %{o}.') % {o: obj_name}} #{errors_to_s(obj)}" + end + + def failed_destroy_error(obj, obj_name) + "#{_('Could not delete the %{o}.') % {o: obj_name}} #{errors_to_s(obj)}" + end + private # Override rails default render action to look for a branded version of a # template instead of using the default one. If no override exists, the @@ -94,4 +110,10 @@ def prepend_view_paths prepend_view_path "app/views/branded" end + + def errors_to_s(obj) + if obj.errors.count > 0 + "
#{obj.errors.collect{|e,m| "#{_(e)} - #{_(m)}"}.join("
")}" + end + end end diff --git a/app/controllers/contacts_controller.rb b/app/controllers/contacts_controller.rb deleted file mode 100644 index 36fa10f..0000000 --- a/app/controllers/contacts_controller.rb +++ /dev/null @@ -1,28 +0,0 @@ -class ContactsController < ContactUs::ContactsController - respond_to :html - - ## - # create - # - # POST - Create a Contact Request - def create - @contact = ContactUs::Contact.new(params[:contact_us_contact]) - if (!user_signed_in?) - if verify_recaptcha(message: "You have not added the validation words correctly") && @contact.save - flash[:notice] = t('contact_us.notices.success') - redirect_to(root_path) - else # recaptcha invalid or contact failed to save - flash[:alert] = t('contact_us.notices.error') - render_new_page - end - else # no user signed in - if @contact.save - flash[:notice] = t('contact_us.notices.success') - redirect_to :controller => 'projects', :action => 'index' - else # contact failed to save - flash[:alert] = t('contact_us.notices.error') - render_new_page - end - end - end -end \ No newline at end of file diff --git a/app/controllers/guidance_groups_controller.rb b/app/controllers/guidance_groups_controller.rb index 9d7706f..ce09688 100644 --- a/app/controllers/guidance_groups_controller.rb +++ b/app/controllers/guidance_groups_controller.rb @@ -29,7 +29,8 @@ if @guidance_group.save redirect_to admin_index_guidance_path, notice: _('Guidance group was successfully created.') else - render action: "new" + flash[:notice] = failed_create_error(@guidance_group, _('guidance group')) + render 'admin_new' end end @@ -51,11 +52,12 @@ if @guidance_group.update_attributes(params[:guidance_group]) redirect_to admin_index_guidance_path(params[:guidance_group]), notice: _('Guidance group was successfully updated.') else - render action: "edit" + flash[:notice] = failed_update_error(@guidance_group, _('guidance group')) + render 'admin_edit' end end - +# TODO: This does not have a route in config/routes.rb and is unreachable! # PUT /guidance_groups/1 def admin_update_publish @guidance_group = GuidanceGroup.find(params[:id]) @@ -66,7 +68,7 @@ if @guidance_group.update_attributes(params[:guidance_group]) redirect_to admin_index_guidance_path(params[:guidance_group]), notice: _('Guidance group was successfully updated.') else - render action: "edit" + redirect_to admin_index_guidance_path(@guidance_group), notice: failed_update_error(@guidance_group, _('guidance group')) end end @@ -76,9 +78,11 @@ def admin_destroy @guidance_group = GuidanceGroup.find(params[:id]) authorize @guidance_group - @guidance_group.destroy - - redirect_to admin_index_guidance_path, notice: _('Guidance group was successfully deleted.') + if @guidance_group.destroy + redirect_to admin_index_guidance_path, notice: _('Guidance group was successfully deleted.') + else + redirect_to admin_index_guidance_path, notice: failed_destroy_error(@guidance_group, _('guidance group')) + end end end \ No newline at end of file diff --git a/app/controllers/guidances_controller.rb b/app/controllers/guidances_controller.rb index 123b334..47c5004 100644 --- a/app/controllers/guidances_controller.rb +++ b/app/controllers/guidances_controller.rb @@ -13,62 +13,24 @@ ## # GET /guidances/1 def admin_show - @guidance = Guidance.includes(:guidance_group, :themes).find(params[:id]) + @guidance = Guidance.eager_load(:guidance_group, :themes).find(params[:id]) authorize @guidance end def admin_new @guidance = Guidance.new authorize @guidance - - load_select_box_content + @themes = Theme.all.order('title') + @guidance_groups = GuidanceGroup.where(org_id: current_user.org_id).order('name ASC') end - #setup variables for use in the dynamic updating - def update_phases - authorize Guidance - # updates phases, versions, sections and questions based on template selected - dmptemplate = Template.find(params[:dmptemplate_id]) - # map to title and id for use in our options_for_select - @phases = dmptemplate.phases.map{|a| [a.title, a.id]}.insert(0, _('Select a phase')) - @versions = dmptemplate.versions.map{|s| [s.title, s.id]}.insert(0, _('Select a version')) - @sections = dmptemplate.sections.map{|s| [s.title, s.id]}.insert(0, _('Select a section')) - @questions = dmptemplate.questions.map{|s| [s.text, s.id]}.insert(0, _('Select a question')) - end - - def update_versions - authorize Guidance - # updates versions, sections and questions based on phase selected - phase = Phase.find(params[:phase_id]) - # map to name and id for use in our options_for_select - @versions = phase.versions.map{|s| [s.title, s.id]}.insert(0, _('Select a version')) - @sections = phase.sections.map{|s| [s.title, s.id]}.insert(0, _('Select a section')) - @questions = phase.questions.map{|s| [s.text, s.id]}.insert(0, _('Select a question')) - end - - def update_sections - authorize Guidance - # updates sections and questions based on version selected - version = Version.find(params[:version_id]) - # map to name and id for use in our options_for_select - @sections = version.sections.map{|s| [s.title, s.id]}.insert(0, _('Select a section')) - @questions = version.questions.map{|s| [s.text, s.id]}.insert(0, _('Select a question')) - end - - def update_questions - authorize Guidance - # updates songs based on artist selected - section = Section.find(params[:section_id]) - @questions = section.questions.map{|s| [s.text, s.id]}.insert(0, _('Select a question')) - end - ## # GET /guidances/1/edit def admin_edit - @guidance = Guidance.includes(:themes, :guidance_group).find(params[:id]) + @guidance = Guidance.eager_load(:themes, :guidance_group).find(params[:id]) authorize @guidance - - load_select_box_content + @themes = Theme.all.order('title') + @guidance_groups = GuidanceGroup.where(org_id: current_user.org_id).order('name ASC') end ## @@ -78,6 +40,12 @@ authorize @guidance @guidance.text = params["guidance-text"] @guidance.question_id = params["question_id"] + + @guidance.themes = [] + if !guidance_params[:theme_ids].nil? + guidance_params[:theme_ids].map{|t| @guidance.themes << Theme.find(t.to_i) unless t.empty? } + end + if @guidance.published == true then @gg = GuidanceGroup.find(@guidance.guidance_group_id) if @gg.published == false || @gg.published.nil? then @@ -89,7 +57,9 @@ if @guidance.save redirect_to admin_show_guidance_path(@guidance), notice: _('Guidance was successfully created.') else - load_select_box_content + flash[:notice] = failed_create_error(@guidance, _('guidance')) + @themes = Theme.all.order('title') + @guidance_groups = GuidanceGroup.where(org_id: current_user.org_id).order('name ASC') render action: "admin_new" end end @@ -102,10 +72,13 @@ @guidance.text = params["guidance-text"] @guidance.question_id = params["question_id"] - if @guidance.update_attributes(params[:guidance]) + if @guidance.save(guidance_params) redirect_to admin_show_guidance_path(params[:guidance]), notice: _('Guidance was successfully updated.') else - load_select_box_content + flash[:notice] = failed_update_error(@guidance, _('guidance')) + @themes = Theme.all.order('title') + @guidance_groups = GuidanceGroup.where(org_id: current_user.org_id).order('name ASC') + render action: "admin_edit" end end @@ -115,48 +88,17 @@ def admin_destroy @guidance = Guidance.find(params[:id]) authorize @guidance - @guidance.destroy - - redirect_to admin_index_guidance_path + if @guidance.destroy + redirect_to admin_index_guidance_path, notice: _('Guidance was successfully deleted.') + else + redirect_to admin_index_guidance_path, notice: failed_destroy_error(@guidance, _('guidance')) + end end private def guidance_params # The form on the page is weird. The text and template/section/question stuff is outside of the normal form params - params.require(:guidance).permit(:guidance_group_id, :theme_ids, :published) - end - - def load_select_box_content - #@templates = Template.funders_and_own_templates(current_user.org_id) - # Replacing weird accessor on Template - @templates = (Org.funders.collect{|o| o.templates } + current_user.org.templates).flatten - - @phases = nil - @templates.each do |template| - if @phases.nil? then - @phases = template.phases.all.order('number') - else - @phases = @phases + template.phases.all.order('number') - end - end - @sections = nil - @phases.each do |phase| - if @sections.nil? then - @sections = phase.sections.all.order('number') - else - @sections = @sections + phase.sections.all.order('number') - end - end - @questions = nil - @sections.each do |section| - if @questions.nil? then - @questions = section.questions.all.order('number') - else - @questions = @questions + section.questions.all.order('number') - end - end - @themes = Theme.all.order('title') - @guidance_groups = GuidanceGroup.where(org_id: current_user.org_id).order('name ASC') + params.require(:guidance).permit(:guidance_group_id, :published, theme_ids: []) end end \ No newline at end of file diff --git a/app/controllers/home_controller.rb b/app/controllers/home_controller.rb index a311c09..7a75e3c 100644 --- a/app/controllers/home_controller.rb +++ b/app/controllers/home_controller.rb @@ -11,6 +11,8 @@ def index if user_signed_in? name = current_user.name(false) +# TODO: Investigate if this is even relevant anymore. The name var will never be blank here because the logic in +# User says to return the email if the firstname and surname are empty regardless of the flag passed in if name.blank? redirect_to edit_user_registration_path else diff --git a/app/controllers/notes_controller.rb b/app/controllers/notes_controller.rb index 3653f4b..474281a 100644 --- a/app/controllers/notes_controller.rb +++ b/app/controllers/notes_controller.rb @@ -29,13 +29,15 @@ authorize @note @plan = answer.plan - @notice = "Save failed." @answer = answer @question = Question.find(question_id) if @note.save @status = true @notice = _('Comment was successfully created.') + else + @status = false + @notice = failed_create_error(@note, _('note')) end notes = answer.notes.all @num_notes = notes.count @@ -54,6 +56,8 @@ if @note.update_attributes(params[:note]) @notice = _('Comment was successfully saved.') + else + @notice = failed_update_error(@note, _('note')) end end @@ -71,6 +75,8 @@ if @note.update_attributes(params[:note]) @notice = _('Comment removed.') + else + @notice = failed_destroy_error(@note, _('note')) end end end diff --git a/app/controllers/orgs_controller.rb b/app/controllers/orgs_controller.rb index 91b8ded..a8f9835 100644 --- a/app/controllers/orgs_controller.rb +++ b/app/controllers/orgs_controller.rb @@ -20,10 +20,11 @@ ## # PUT /organisations/1 def admin_update + attrs = org_params @org = Org.find(params[:id]) authorize @org @org.banner_text = params["org_banner_text"] - @org.logo = params[:org][:logo] if params[:org][:logo] + @org.logo = org_params[:logo] if org_params[:logo] begin if @org.update_attributes(org_params) @@ -34,7 +35,7 @@ # its unclear why its doing this. Placing a check here for the data type. We should reasses though # when doing a broader eval of the look/feel of the site and we come up with a standardized way of # displaying errors - flash[:notice] = @org.errors.collect{|a, e| "#{a} - #{(e.instance_of?(String) ? e : e.message)}"}.join('
').html_safe + flash[:notice] = failed_update_error(@org, _('organisation')) render action: "admin_edit" end rescue Dragonfly::Job::Fetch::NotFound => dflye @@ -44,8 +45,8 @@ end private - - def org_params - params.require(:org).permit(:name, :abbreviation, :target_url) - end + def org_params + params.require(:org).permit(:name, :abbreviation, :target_url, :is_other, :banner_text, :language_id, + :region_id, :logo, :contact_email) + end end diff --git a/app/controllers/phases_controller.rb b/app/controllers/phases_controller.rb index f1890ca..9f9163d 100644 --- a/app/controllers/phases_controller.rb +++ b/app/controllers/phases_controller.rb @@ -158,12 +158,15 @@ def admin_create @phase = Phase.new(params[:phase]) authorize @phase + @phase.description = params["phase-desc"] @phase.modifiable = true if @phase.save redirect_to admin_show_phase_path(id: @phase.id, edit: 'true'), notice: _('Information was successfully created.') else - render action: "admin_show" + flash[:notice] = failed_create_error(@phase, _('phase')) + @template = @phase.template + render "admin_add" end end @@ -176,7 +179,16 @@ if @phase.update_attributes(params[:phase]) redirect_to admin_show_phase_path(@phase), notice: _('Information was successfully updated.') else - render action: "admin_show" + @sections = @phase.sections + @template = @phase.template + # These params may not be available in this context so they may need + # to be set to true without the check + @edit = true + @open = !params[:section_id].nil? + @section_id = (params[:section_id].nil? ? nil : params[:section_id].to_i) + @question_id = (params[:question_id].nil? ? nil : params[:question_id].to_i) + flash[:notice] = failed_update_error(@phase, _('phase')) + render 'admin_show' end end @@ -185,10 +197,20 @@ @phase = Phase.find(params[:phase_id]) authorize @phase @template = @phase.template - @phase.destroy - redirect_to admin_template_template_path(@template), notice: _('Information was successfully deleted.') + if @phase.destroy + redirect_to admin_template_template_path(@template), notice: _('Information was successfully deleted.') + else + @sections = @phase.sections + + # These params may not be available in this context so they may need + # to be set to true without the check + @edit = true + @open = !params[:section_id].nil? + @section_id = (params[:section_id].nil? ? nil : params[:section_id].to_i) + @question_id = (params[:question_id].nil? ? nil : params[:question_id].to_i) + flash[:notice] = failed_destroy_error(@phase, _('phase')) + render 'admin_show' + end end - - end diff --git a/app/controllers/plans_controller.rb b/app/controllers/plans_controller.rb index 25216b7..1408264 100644 --- a/app/controllers/plans_controller.rb +++ b/app/controllers/plans_controller.rb @@ -17,91 +17,81 @@ # GET /plans/new def new - if user_signed_in? then - @plan = Plan.new - authorize @plan - @funders = Org.funders.all + @plan = Plan.new + authorize @plan + @funders = Org.funders.all - respond_to do |format| - format.html # new.html.erb - end - else - respond_to do |format| - format.html { redirect_to edit_user_registration_path } - end + respond_to do |format| + format.html # new.html.erb end end def create - if user_signed_in? then - @plan = Plan.new - @plan.save - authorize @plan + @plan = Plan.new + authorize @plan + @plan.save - if params[:template_id] - @templates = [ Template.find(params[:template_id] ) ] + if params[:template_id] + @templates = [ Template.find(params[:template_id] ) ] + else + + funder_id = params[:plan][:funder_id] + if !funder_id.blank? + # get all funder @templates + funder = Org.find(params[:plan][:funder_id]) + @templates = get_most_recent( funder.templates.where("published = ?", true).all ) + + orgtemplates = current_user.org.templates.all + replacements = [] + + # replace any that are customised by the org + orgtemplates.each do |orgt| + base_template = orgt.customization_of + @templates.delete(base_template) + replacements << orgt + end + @templates + replacements + else + # get all org @templates which are not customisations + @templates = current_user.org.templates.where(customization_of: nil) - funder_id = params[:plan][:funder_id] - if !funder_id.blank? - # get all funder @templates - funder = Org.find(params[:plan][:funder_id]) - @templates = get_most_recent( funder.templates.where("published = ?", true).all ) - - orgtemplates = current_user.org.templates.all - replacements = [] - - # replace any that are customised by the org - orgtemplates.each do |orgt| - base_template = orgt.customization_of - @templates.delete(base_template) - replacements << orgt - end - @templates + replacements - - else - # get all org @templates which are not customisations - @templates = current_user.org.templates.where(customization_of: nil) - - # if none of these get the basic dcc template - if @templates.blank? - @templates = Template.find_by_is_default(true) - end - end - end - - # if we have more than one template then back to the user - # using the 'create' template - # to choose otherwise just create the plan - # and go to the plan/show template - if @templates.length > 1 - return - end - - @plan.template = @templates[0] - - @plan.principal_investigator = current_user.name - - @plan.title = _('My plan')+' ('+@plan.template.title+')' # We should use interpolated string since the order of the words from this message could vary among languages - - @plan.assign_creator(current_user.id) - - @plan.set_possible_guidance_groups - - @selected_guidance_groups = @plan.guidance_groups.map{ |pgg| [pgg.name, pgg.id, :checked => false] } - @selected_guidance_groups.sort! - - respond_to do |format| - if @plan.save - format.html { redirect_to({:action => "show", :id => @plan.id, :editing => true }, {:notice => _('Plan was successfully created.')}) } - else - @error = "Something went wrong" - format.html { render action: "new" } + # if none of these get the basic dcc template + if @templates.blank? + @templates = Template.find_by_is_default(true) end end - else - render(:file => File.join(Rails.root, 'public/403.html'), :status => 403, :layout => false) + end + + # if we have more than one template then back to the user + # using the 'create' template + # to choose otherwise just create the plan + # and go to the plan/show template + if @templates.length > 1 + return + end + + @plan.template = @templates[0] + + @plan.principal_investigator = current_user.name + + @plan.title = _('My plan')+' ('+@plan.template.title+')' # We should use interpolated string since the order of the words from this message could vary among languages + + @plan.assign_creator(current_user.id) + + @plan.set_possible_guidance_groups + + @selected_guidance_groups = @plan.guidance_groups.map{ |pgg| [pgg.name, pgg.id, :checked => false] } + @selected_guidance_groups.sort! + + respond_to do |format| + if @plan.save + format.html { redirect_to({:action => "show", :id => @plan.id, :editing => true }, {:notice => _('Plan was successfully created.')}) } + else + flash[:notice] = failed_create_error(@plan, _('plan')) + format.html { render action: "new" } + end end end @@ -109,29 +99,14 @@ # GET /plans/show def show - puts 'plans#show' @plan = Plan.eager_load(params[:id]) authorize @plan - - @editing = params[:editing] && @plan.administerable_by?(current_user.id) + @editing = (!params[:editing].nil? && @plan.administerable_by?(current_user.id)) @selected_guidance_groups = [] all_guidance_groups = @plan.plan_guidance_groups @selected_guidance_groups = all_guidance_groups.map{ |pgg| [ pgg.guidance_group.name, pgg.guidance_group.id, :checked => pgg.selected ] } @selected_guidance_groups.sort! - - if user_signed_in? && @plan.readable_by?(current_user.id) then - respond_to do |format| - format.html # show.html.erb - end - elsif user_signed_in? then - respond_to do |format| - format.html { redirect_to projects_url, notice: _('This account does not have access to that plan.') } - end - else - respond_to do |format| - format.html { redirect_to edit_user_registration_path } - end - end + respond_to :html end @@ -146,43 +121,29 @@ # # GET /plans/1/edit def edit - @plan = Plan.find(params[:id]) - - @phase = nil - if params[:phase] - @phase = Phase.find(params[:phase]) - end - authorize @plan + # If there was no phase specified use the template's 1st phase + @phase = (params[:phase].nil? ? @plan.template.phases.first : Phase.find(params[:phase])) @readonly = @plan.editable_by?(current_user.id) - if !user_signed_in? then - respond_to do |format| - format.html { redirect_to edit_user_registration_path } - end - elsif !@plan.readable_by?(current_user.id) then - respond_to do |format| - format.html { redirect_to projects_url, notice: _('This account does not have access to that plan.') } - end - end + respond_to :html end + # PUT /plans/1 # PUT /plans/1.json def update @plan = Plan.find(params[:id]) authorize @plan - if user_signed_in? && @plan.editable_by?(current_user.id) then - respond_to do |format| - if @plan.update_attributes(params[:plan]) - format.html { redirect_to @plan, :editing => false, notice: _('Plan was successfully updated.') } - format.json { head :no_content } - else - format.html { render action: "edit" } - end + + respond_to do |format| + if @plan.update_attributes(params[:plan]) + format.html { redirect_to @plan, :editing => false, notice: _('Plan was successfully updated.') } + format.json { head :no_content } + else + flash[:notice] = failed_update_error(@plan, _('plan')) + format.html { render action: "edit" } end - else - render(:file => File.join(Rails.root, 'public/403.html'), :status => 403, :layout => false) end end @@ -191,19 +152,17 @@ def update_guidance_choices @plan = Plan.find(params[:id]) authorize @plan - if user_signed_in? && @plan.editable_by?(current_user.id) then - guidance_ids = params[:plan][:plan_guidance_group_ids] - @plan.plan_guidance_groups.each do |pgg| - pgg.selected = guidance_ids.include?(pgg.guidance_group_id.to_s) - pgg.save! - end - @plan.save! + guidance_ids = params[:plan][:plan_guidance_group_ids] + +# TODO: This always appears to be empty for a new plan. What SHOULD it contain, all guidance_groups? + @plan.plan_guidance_groups.each do |pgg| + pgg.selected = guidance_ids.include?(pgg.guidance_group_id.to_s) + pgg.save! + end + @plan.save! - respond_to do |format| - format.json { head :no_content } - end - else - render(:file => File.join(Rails.root, 'public/403.html'), :status => 403, :layout => false) + respond_to do |format| + format.json { head :no_content } end end @@ -211,29 +170,21 @@ @plan = Plan.find(params[:id]) authorize @plan @plan_data = @plan.to_hash - if !user_signed_in? then - respond_to do |format| - format.html { redirect_to edit_user_registration_path } - end - elsif !@plan.editable_by?(current_user.id) then - respond_to do |format| - format.html { redirect_to plans_url, notice: _('This account does not have access to that plan.') } - end - end end def destroy @plan = Plan.find(params[:id]) authorize @plan - if user_signed_in? && @plan.editable_by?(current_user.id) then - @plan.destroy - + if @plan.destroy respond_to do |format| - format.html { redirect_to plans_url } + format.html { redirect_to plans_url, notice: _('Plan was successfully deleted.') } end else - render(:file => File.join(Rails.root, 'public/403.html'), :status => 403, :layout => false) + respond_to do |format| + flash[:notice] = failed_create_error(@plan, _('plan')) + format.html { render action: "edit" } + end end end @@ -242,24 +193,19 @@ def status @plan = Plan.find(params[:id]) authorize @plan - if user_signed_in? && @plan.readable_by(current_user.id) then - respond_to do |format| - format.json { render json: @plan.status } - end - else - render(:file => File.join(Rails.root, 'public/403.html'), :status => 403, :layout => false) + respond_to do |format| + format.json { render json: @plan.status } end end + +# TODO: Remove these endpoints now that we're no longer using them +=begin def section_answers @plan = Plan.find(params[:id]) authorize @plan - if user_signed_in? && @plan.readable_by(current_user.id) then - respond_to do |format| - format.json { render json: @plan.section_answers(params[:section_id]) } - end - else - render(:file => File.join(Rails.root, 'public/403.html'), :status => 403, :layout => false) + respond_to do |format| + format.json { render json: @plan.section_answers(params[:section_id]) } end end @@ -340,16 +286,19 @@ render(:file => File.join(Rails.root, 'public/403.html'), :status => 403, :layout => false) end end +=end def answer @plan = Plan.find(params[:id]) authorize @plan - if user_signed_in? && @plan.readable_by(current_user.id) then + if !params[:q_id].nil? respond_to do |format| format.json { render json: @plan.answer(params[:q_id], false).to_json(:include => :options) } end else - render(:file => File.join(Rails.root, 'public/403.html'), :status => 403, :layout => false) + respond_to do |format| + format.json { render json: {} } + end end end @@ -358,56 +307,49 @@ authorize @plan render 'show_export' end - + def export @plan = Plan.find(params[:id]) authorize @plan - if user_signed_in? && @plan.readable_by?(current_user.id) then - @exported_plan = ExportedPlan.new.tap do |ep| - ep.plan = @plan - ep.user = current_user - ep.format = params[:format].to_sym - plan_settings = @plan.settings(:export) + # If no format is specified, default to PDF + params[:format] = 'pdf' if params[:format].nil? - Settings::Template::DEFAULT_SETTINGS.each do |key, value| - ep.settings(:export).send("#{key}=", plan_settings.send(key)) + @exported_plan = ExportedPlan.new.tap do |ep| + ep.plan = @plan + ep.user = current_user + ep.format = params[:format].to_sym + plan_settings = @plan.settings(:export) + + Settings::Template::DEFAULT_SETTINGS.each do |key, value| + ep.settings(:export).send("#{key}=", plan_settings.send(key)) + end + end + + begin + @exported_plan.save! + file_name = @exported_plan.project_name + + respond_to do |format| + format.html + format.csv { send_data @exported_plan.as_csv, filename: "#{file_name}.csv" } + format.text { send_data @exported_plan.as_txt, filename: "#{file_name}.txt" } + format.docx { headers["Content-Disposition"] = "attachment; filename=\"#{file_name}.docx\""} + format.pdf do + @formatting = @plan.settings(:export).formatting + render pdf: file_name, + margin: @formatting[:margin], + footer: { + center: _('This document was generated by %{application_name}') % {application_name: Rails.configuration.branding[:application][:name]}, + font_size: 8, + spacing: (@formatting[:margin][:bottom] / 2) - 4, + right: '[page] of [topage]' + } end end - - begin - @exported_plan.save! - file_name = @exported_plan.project_name - - respond_to do |format| - format.html - format.csv { send_data @exported_plan.as_csv, filename: "#{file_name}.csv" } - format.text { send_data @exported_plan.as_txt, filename: "#{file_name}.txt" } - format.docx { headers["Content-Disposition"] = "attachment; filename=\"#{file_name}.docx\""} - format.pdf do - @formatting = @plan.settings(:export).formatting - render pdf: file_name, - margin: @formatting[:margin], - footer: { - center: _('This document was generated by %{application_name}') % {application_name: Rails.configuration.branding[:application][:name]}, - font_size: 8, - spacing: (@formatting[:margin][:bottom] / 2) - 4, - right: '[page] of [topage]' - } - end - end - rescue ActiveRecord::RecordInvalid => e - redirect_to show_export_plan_path(@plan), notice: _('%{format} is not a valid exporting format. Available formats to export are %{available_formats}.') % - {format: params[:format], available_formats: ExportedPlan::VALID_FORMATS.to_s} - end - elsif !user_signed_in? then - respond_to do |format| - format.html { redirect_to edit_user_registration_path } - end - elsif !@plan.editable_by(current_user.id) then - respond_to do |format| - format.html { redirect_to plans_path, notice: _('This account does not have access to that plan.') } - end + rescue ActiveRecord::RecordInvalid => e + redirect_to show_export_plan_path(@plan), notice: _('%{format} is not a valid exporting format. Available formats to export are %{available_formats}.') % + {format: params[:format], available_formats: ExportedPlan::VALID_FORMATS.to_s} end end diff --git a/app/controllers/questions_controller.rb b/app/controllers/questions_controller.rb index 803479f..47f9a11 100644 --- a/app/controllers/questions_controller.rb +++ b/app/controllers/questions_controller.rb @@ -8,10 +8,19 @@ authorize @question @question.guidance = params["new-question-guidance"] @question.default_value = params["new-question-default-value"] - if @question.save! + if @question.save redirect_to admin_show_phase_path(id: @question.section.phase_id, section_id: @question.section_id, question_id: @question.id, edit: 'true'), notice: _('Information was successfully created.') else - render action: "phases/admin_show" + @edit = (@question.section.phase.template.org == current_user.org) + @open = true + @phase = @question.section.phase + @section = @question.section + @sections = @phase.sections + @section_id = @question.section.id + @question_id = @question.id + + flash[:notice] = failed_create_error(@question, _('question')) + render template: 'phases/admin_show' end end @@ -26,7 +35,14 @@ if @question.update_attributes(params[:question]) redirect_to admin_show_phase_path(id: @phase.id, section_id: @section.id, question_id: @question.id, edit: 'true'), notice: _('Information was successfully updated.') else - render action: "phases/admin_show" + @edit = (@phase.template.org == current_user.org) + @open = true + @sections = @phase.sections + @section_id = @section.id + @question_id = @question.id + + flash[:notice] = failed_update_error(@question, _('question')) + render template: 'phases/admin_show' end end @@ -36,8 +52,11 @@ authorize @question @section = @question.section @phase = @section.phase - @question.destroy - redirect_to admin_show_phase_path(id: @phase.id, section_id: @section.id, edit: 'true'), notice: _('Information was successfully deleted.') + if @question.destroy + redirect_to admin_show_phase_path(id: @phase.id, section_id: @section.id, edit: 'true'), notice: _('Information was successfully deleted.') + else + redirect_to admin_show_phase_path(id: @phase.id, section_id: @section.id, edit: 'true'), notice: failed_destroy_error(@question, 'question') + end end end \ No newline at end of file diff --git a/app/controllers/registrations_controller.rb b/app/controllers/registrations_controller.rb index 8d3153d..8f12488 100644 --- a/app/controllers/registrations_controller.rb +++ b/app/controllers/registrations_controller.rb @@ -93,12 +93,12 @@ if current_user.email != params[:user][:email] # if user changing email if params[:user][:current_password].blank? # password needs to be present message = _('Please enter your password to change email address.') - succesfully_updated = false + successfully_updated = false else - succesfully_updated = current_user.update_with_password(password_update) + successfully_updated = current_user.update_with_password(password_update) end elsif params[:user][:password].present? # user is changing password - succesfully_updated = false # shared across first 3 conditions + successfully_updated = false # shared across first 3 conditions if params[:user][:current_password].blank? message = _('Please enter your current password') elsif params[:user][:password_confirmation].blank? @@ -106,13 +106,13 @@ elsif params[:user][:password] != params[:user][:password_confirmation] message = _('Password and comfirmation must match') else - succesfully_updated = current_user.update_with_password(password_update) + successfully_updated = current_user.update_with_password(password_update) end else # potentially unreachable... but I dont like to leave off the else - succesfully_updated = current_user.update_with_password(password_update) + successfully_updated = current_user.update_with_password(password_update) end else # password not required - current_user.update_without_password(update_params) + successfully_updated = current_user.update_without_password(update_params) end #unlink shibboleth from user's details @@ -121,24 +121,25 @@ end #render the correct page - if succesfully_updated + if successfully_updated if confirm current_user.skip_confirmation! current_user.save! end session[:locale] = current_user.get_locale unless current_user.get_locale.nil? set_gettext_locale #Method defined at controllers/application_controller.rb - set_flash_message :notice, :updated + set_flash_message :notice, _('Details successfully updated.') sign_in current_user, bypass_sign_in: true # Sign in the user bypassing validation in case his password changed - redirect_to({:controller => "registrations", :action => "edit"}, {:notice => _('Details successfully updated.')}) + redirect_to edit_user_registration_path, notice: _('Details successfully updated.') + else - flash[:notice] = message.blank? ? _('Update unsucessful, changes not saved') : messages + flash[:notice] = message.blank? ? failed_update_error(current_user, _('profile')) : message render "edit" end end def sign_up_params - params.require(:user).permit(:email, :password, :password_confirmation, + params.require(:user).permit(:email, :password, :password_confirmation, :firstname, :surname, :accept_terms, :org_id, :other_organisation) end diff --git a/app/controllers/roles_controller.rb b/app/controllers/roles_controller.rb index 35c95d6..c909016 100644 --- a/app/controllers/roles_controller.rb +++ b/app/controllers/roles_controller.rb @@ -20,7 +20,7 @@ UserMailer.sharing_notification(@role).deliver flash[:notice] = message else - flash[:notice] = @role.errors + flash[:notice] = generate_error_notice(@role, _('role')) end else flash[:notice] = _('Please enter an email address') @@ -39,6 +39,7 @@ UserMailer.permissions_change_notification(@role).deliver redirect_to controller: 'plans', action: 'share', id: @role.plan.id else + flash[:notice] = generate_error_notice(@role, _('role')) render action: "edit" end end @@ -49,10 +50,9 @@ user = @role.user plan = @role.plan @role.destroy - flash[:notice] = _('Access removed') UserMailer.project_access_removed_notification(user, plan).deliver - redirect_to controller: 'plans', action: 'share', id: @role.plan.slug + redirect_to controller: 'plans', action: 'share', id: @role.plan.id end private diff --git a/app/controllers/sections_controller.rb b/app/controllers/sections_controller.rb index 6df6210..e05418c 100644 --- a/app/controllers/sections_controller.rb +++ b/app/controllers/sections_controller.rb @@ -13,7 +13,13 @@ redirect_to admin_show_phase_path(id: @section.phase_id, :section_id => @section.id, edit: 'true'), notice: _('Information was successfully created.') else - render action: "phases/admin_show" + @edit = (@phase.template.org == current_user.org) + @open = true + @sections = @phase.sections + @section_id = @section.id + @question_id = nil + flash[:notice] = failed_create_error(@section, _('section')) + render template: 'phases/admin_show' end end @@ -27,7 +33,13 @@ if @section.update_attributes(params[:section]) redirect_to admin_show_phase_path(id: @phase.id, section_id: @section.id , edit: 'true'), notice: _('Information was successfully updated.') else - render action: "phases/admin_show" + @edit = (@phase.template.org == current_user.org) + @open = true + @sections = @phase.sections + @section_id = @section.id + @question_id = nil + flash[:notice] = failed_update_error(@section, _('section')) + render template: 'phases/admin_show' end end @@ -37,8 +49,18 @@ @section = Section.includes(phase: :template).find(params[:section_id]) authorize @section @phase = @section.phase - @section.destroy - redirect_to admin_show_phase_path(id: @phase.id, edit: 'true' ), notice: _('Information was successfully deleted.') + if @section.destroy + redirect_to admin_show_phase_path(id: @phase.id, edit: 'true' ), notice: _('Information was successfully deleted.') + else + @edit = (@phase.template.org == current_user.org) + @open = true + @sections = @phase.sections + @section_id = @section.id + @question_id = nil + + flash[:notice] = failed_destroy_error(@section, _('section')) + render template: 'phases/admin_show' + end end end \ No newline at end of file diff --git a/app/controllers/templates_controller.rb b/app/controllers/templates_controller.rb index 4f5e453..c150673 100644 --- a/app/controllers/templates_controller.rb +++ b/app/controllers/templates_controller.rb @@ -54,6 +54,8 @@ @template = Template.includes(:org, phases: [sections: [questions: [:question_options, :question_format, :suggested_answers]]]).find(params[:id]) # check to see if this is a funder template needing customized + + authorize @template if @template.org_id != current_user.org_id # definitely need to deep_copy the given template new_customization = Template.deep_copy(@template) @@ -145,7 +147,7 @@ new_version.save! @template = new_version end - authorize @template + # once the correct template has been generated, we convert it to hash @hash = @template.to_hash end @@ -170,7 +172,9 @@ end redirect_to admin_template_template_path(), notice: _('Information was successfully updated.') else - render action: "edit" + @hash = @template.to_hash + flash[:notice] = failed_update_error(@template, _('template')) + render 'admin_template' end end @@ -185,6 +189,8 @@ # creates a new template with version 0 and new dmptemplate_id def admin_create @template = Template.new(params[:template]) + authorize @template + @template.org_id = current_user.org_id @template.description = params['template-desc'] @template.published = false @@ -196,10 +202,12 @@ random = rand 2147483647 break random unless Template.exists?(dmptemplate_id: random) end - authorize @template - if @template.save! + + if @template.save redirect_to admin_template_template_path(@template), notice: _('Information was successfully created.') else + @hash = @template.to_hash + flash[:notice] = failed_create_error(@template, _('template')) render action: "admin_new" end end @@ -209,8 +217,13 @@ def admin_destroy @template = Template.find(params[:id]) authorize @template - @template.destroy - redirect_to admin_index_template_path + if @template.destroy + redirect_to admin_index_template_path + else + @hash = @template.to_hash + flash[:notice] = failed_destroy_error(@template, _('template')) + render admin_template_template_path(@template) + end end # GET /templates/1 diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index 98b9c59..13f857c 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -18,7 +18,7 @@ @user = User.includes(:perms).find(params[:id]) authorize @user user_perms = current_user.perms - @perms = user_perms & [Perm::GRANT_PERMISSIONS, Perm::MODIFY_TEMPLATES, Perm::MODIFY_GUIDANCE, Perm::USE_API, Perm::CHANGE_ORG_DETAILS] + @perms = user_perms & [Perm.grant_permissions, Perm.modify_templates, Perm.modify_guidance, Perm.use_api, Perm.change_org_details] end ## @@ -34,14 +34,14 @@ if @user.perms.include? perm if ! perms.include? perm @user.perms.delete(perm) - if perm.id == Perm::USE_API.id + if perm.id == Perm.use_api.id @user.remove_token! end end else if perms.include? perm @user.perms << perm - if perm.name == Perm::USE_API.id + if perm.name == Perm.use_api.id @user.keep_or_generate_token! end end diff --git a/app/models/guidance.rb b/app/models/guidance.rb index 26a83ff..f22cf3b 100644 --- a/app/models/guidance.rb +++ b/app/models/guidance.rb @@ -13,12 +13,9 @@ ## # Associations belongs_to :guidance_group -# belongs_to :question has_and_belongs_to_many :themes, join_table: "themes_in_guidance" # depricated, but required for migration "single_group_for_guidance" - has_and_belongs_to_many :guidance_groups, join_table: "guidance_in_group" - - + #has_and_belongs_to_many :guidance_groups, join_table: "guidance_in_group" # EVALUATE CLASS AND INSTANCE METHODS BELOW diff --git a/app/models/perm.rb b/app/models/perm.rb index 5efd21f..2bc5aad 100644 --- a/app/models/perm.rb +++ b/app/models/perm.rb @@ -12,12 +12,21 @@ ## # Constant perms - ADD_ORGS = Perm.where(name: 'add_organisations').first.freeze - CHANGE_AFFILIATION = Perm.where(name: 'change_org_affiliation').first.freeze - GRANT_PERMISSIONS = Perm.where(name: 'grant_permissions').first.freeze - MODIFY_TEMPLATES = Perm.where(name: 'modify_templates').first.freeze - MODIFY_GUIDANCE = Perm.where(name: 'modify_guidance').first.freeze - USE_API = Perm.where(name: 'use_api').first.freeze - CHANGE_ORG_DETAILS = Perm.where(name: 'change_org_details').first.freeze - GRANT_API = Perm.where(name: 'grant_api_to_orgs').first.freeze + #ADD_ORGS = Perm.where(name: 'add_organisations').first.freeze + #CHANGE_AFFILIATION = Perm.where(name: 'change_org_affiliation').first.freeze + #GRANT_PERMISSIONS = Perm.where(name: 'grant_permissions').first.freeze + #MODIFY_TEMPLATES = Perm.where(name: 'modify_templates').first.freeze + #MODIFY_GUIDANCE = Perm.where(name: 'modify_guidance').first.freeze + #USE_API = Perm.where(name: 'use_api').first.freeze + #CHANGE_ORG_DETAILS = Perm.where(name: 'change_org_details').first.freeze + #GRANT_API = Perm.where(name: 'grant_api_to_orgs').first.freeze + + scope :add_orgs, -> {Perm.find_by(name: 'add_organisations')} + scope :change_affiliation, -> {Perm.find_by(name: 'change_org_affiliation')} + scope :grant_permissions, -> {Perm.find_by(name: 'grant_permissions')} + scope :modify_templates, -> {Perm.find_by(name: 'modify_templates')} + scope :modify_guidance, -> {Perm.find_by(name: 'modify_guidance')} + scope :use_api, -> {Perm.find_by(name: 'use_api')} + scope :change_org_details, -> {Perm.find_by(name: 'change_org_details')} + scope :grant_api, -> {Perm.find_by(name: 'grant_api_to_orgs')} end diff --git a/app/models/role.rb b/app/models/role.rb index cee961b..75ad26c 100644 --- a/app/models/role.rb +++ b/app/models/role.rb @@ -2,17 +2,18 @@ include FlagShihTzu ## - # Associations + # Associationsrequire "role" + belongs_to :user belongs_to :plan ## # Define Bit Field Values # Column access - has_flags 1 => :creator, - 2 => :administrator, - 3 => :editor, - 4 => :commenter, + has_flags 1 => :creator, # 1 + 2 => :administrator, # 2 + 3 => :editor, # 4 + 4 => :commenter, # 8 column: 'access' validates :user, :plan, :access, presence: true @@ -37,3 +38,22 @@ end end + +# ----------------------------------------------------- +# Bitwise key +# ----------------------------------------------------- +# 01 - creator +# 02 - administrator +# 03 - creator + administrator +# 04 - editor +# 05 - creator + editor +# 06 - administraor + editor +# 07 - creator + editor + administrator +# 08 - commenter +# 09 - creator + commenter +# 10 - administrator + commenter +# 11 - creator + administrator + commenter +# 12 - editor + commenter +# 13 - creator + editor + commenter +# 14 - administrator + editor + commenter +# 15 - creator + administrator + editor + commenter \ No newline at end of file diff --git a/app/models/user.rb b/app/models/user.rb index ace73b5..dc53469 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -163,7 +163,7 @@ # # @return [Boolean] true if the user can add new organisations def can_add_orgs? - perms.include? Perm::ADD_ORGS + perms.include? Perm.add_orgs end ## @@ -171,7 +171,7 @@ # # @return [Boolean] true if the user can change their organisation affiliations def can_change_org? - perms.include? Perm::CHANGE_AFFILIATION + perms.include? Perm.change_affiliation end ## @@ -179,7 +179,7 @@ # # @return [Boolean] true if the user can grant their permissions to others def can_grant_permissions? - perms.include? Perm::GRANT_PERMISSIONS + perms.include? Perm.grant_permissions end ## @@ -187,7 +187,7 @@ # # @return [Boolean] true if the user can modify organisation templates def can_modify_templates? - perms.include? Perm::MODIFY_TEMPLATES + self.perms.include? Perm.modify_templates end ## @@ -195,7 +195,7 @@ # # @return [Boolean] true if the user can modify organistion guidance def can_modify_guidance? - perms.include? Perm::MODIFY_GUIDANCE + perms.include? Perm.modify_guidance end ## @@ -203,7 +203,7 @@ # # @return [Boolean] true if the user can use the api def can_use_api? - perms.include? Perm::USE_API + perms.include? Perm.use_api end ## @@ -211,7 +211,7 @@ # # @return [Boolean] true if the user can modify the org's details def can_modify_org_details? - perms.include? Perm::CHANGE_ORG_DETAILS + perms.include? Perm.change_org_details end @@ -220,7 +220,7 @@ # # @return [Boolean] true if the user can grant api permissions to organisations def can_grant_api_to_orgs? - perms.include? Perm::GRANT_API + perms.include? Perm.grant_api end ## diff --git a/app/policies/plan_policy.rb b/app/policies/plan_policy.rb index 98256fe..318608d 100644 --- a/app/policies/plan_policy.rb +++ b/app/policies/plan_policy.rb @@ -31,14 +31,21 @@ def show_export? @plan.readable_by?(@user.id) end + def update? @plan.editable_by?(@user.id) end + def destroy? + @plan.editable_by?(@user.id) + end + def status? @plan.readable_by?(@user.id) end +# TODO: These routes are no lonmger used +=begin def section_answers? @plan.readable_by?(@user.id) end @@ -62,6 +69,7 @@ def unlock_section? @plan.editable_by?(@user.id) end +=end def answer? @plan.readable_by?(@user.id) diff --git a/app/views/guidances/_add_guidance.html.erb b/app/views/guidances/_add_guidance.html.erb index 19579e5..28f75f6 100644 --- a/app/views/guidances/_add_guidance.html.erb +++ b/app/views/guidances/_add_guidance.html.erb @@ -17,15 +17,6 @@ <%= _('Should this guidance apply:') %> -
- <%= select_tag "g_options", options_for_select([[_('by themes'), 1], - [_('by question'), 2]]) %> -
-
- <%= link_to( image_tag("help_button.png"), "#", class: "guidance_apply_to_popover", rel: "popover", "data-html" => "true", "data-content" => _('Decide whether your guidance should display by themes (default) or if it only pertains to a specific question in one of the funder templates.'))%> -
-
- diff --git a/app/views/guidances/admin_edit.html.erb b/app/views/guidances/admin_edit.html.erb index 5851286..565f5d4 100644 --- a/app/views/guidances/admin_edit.html.erb +++ b/app/views/guidances/admin_edit.html.erb @@ -34,24 +34,9 @@ - <%= _('Should this guidance apply:') %> -
- <% if !@guidance.question_id.nil? then %> - <% select_op = 2 %> - <% else %> - <% select_op = 1%> - <% end %> - <%= hidden_field 'select_op', value: select_op, id: 'edit_guid_ques_flag' %> - - <%= select_tag "g_options", options_for_select({_('by themes') => 1, - _('by question') => 2}, select_op) %> -
-
- <%= link_to( image_tag('help_button.png'), '#', class: 'guidance_apply_to_popover', rel: "popover", 'data-html' => "true", 'data-content' => _('Decide whether your guidance should display by themes (default) or if it only pertains to a specific question in one of the funder templates.'))%> -
-
- - diff --git a/app/views/plans/_answer_form_ro.html.erb b/app/views/plans/_answer_form_ro.html.erb new file mode 100644 index 0000000..c2837a9 --- /dev/null +++ b/app/views/plans/_answer_form_ro.html.erb @@ -0,0 +1,51 @@ + +<% answer = @plan.answer(question.id) %> + +
+ + <% q_format = question.question_format%> + +
+

<%= question.text %>

+ +
+ <% if q_format.title == "Check box" || q_format.title == "Multi select box" || + q_format.title == "Radio buttons" || q_format.title == "Dropdown" %> +
    + <% if answer.question_options.is_a? Array then %> +
  • <%= answer.question_options.text %>
  • + <% else %> + <% answer.question_options.each do |o| %> +
  • <%= o.text %>
  • + <% end %> + <% end %> +
+ <% end %> + +
+ <%= raw answer.text %> +
+
+
+ + <% if answer.created_at.nil? then %> + <%= _('Not answered yet') %> + <% else %> + <%= _('Answered')%><%= answer.created_at %><%= _(' by')%><%= answer.user.name %> + <% end %> + + + +
+ + +<% if last_question_id == question.id then %> +
+<% else %> +
+<% end %> diff --git a/app/views/plans/edit.html.erb b/app/views/plans/edit.html.erb index e73992e..0fd2694 100644 --- a/app/views/plans/edit.html.erb +++ b/app/views/plans/edit.html.erb @@ -13,7 +13,7 @@ <% status = @plan.status %>
<%space_used = status["space_used"].to_i - space_title = _('approx. %{space_used}% of available space used (max %{num_pages} pages)') % { space_used: => space_used, num_pages: => @plan.template.settings(:export).max_pages } + space_title = _('approx. %{space_used} of available space used (max %{num_pages} pages)') % { space_used: space_used, num_pages: @plan.template.settings(:export).max_pages } answered = %(#{status["num_answers"]}/#{status["num_questions"]})%>
<%= answered -%> <%= _('questions answered')%> @@ -50,10 +50,9 @@
- - <% num_section_questions = @section.status["sections"][section.id]["num_questions"] %> - <% num_section_answers = @section.status["sections"][section.id]["num_answers"] %> + <% num_section_questions = @plan.status["sections"][section.id]["num_questions"] %> + <% num_section_answers = @plan.status["sections"][section.id]["num_answers"] %> <% question_word = "questions" %> <% if num_section_questions == 1 then %> <% question_word = "question" %> @@ -148,7 +147,7 @@ -<%= render :partial => "export", locals: {plan: @plan} %> +<%= render :partial => "export", locals: {plan: @plan, phase: @phase} %> <% session.delete(:question_id_comments)%> diff --git a/config/initializers/gettext_i18n_rails_js.rb b/config/initializers/gettext_i18n_rails_js.rb new file mode 100644 index 0000000..71ee9f4 --- /dev/null +++ b/config/initializers/gettext_i18n_rails_js.rb @@ -0,0 +1,10 @@ +GettextI18nRailsJs.config do |config| + config.output_path = "lib/assets/javascripts/locale" + + config.handlebars_function = "__" + config.javascript_function = "__" + + config.jed_options = { + pretty: false + } +end \ No newline at end of file diff --git a/config/locale/app.pot b/config/locale/app.pot index b70c1e9..6f79684 100644 --- a/config/locale/app.pot +++ b/config/locale/app.pot @@ -2885,3 +2885,52 @@ #public_plans_page.no_plans_body_text_html msgid "There are no public DMPs." msgstr "" + +# Timeago - found in lib/assets/javascripts/jquery.timeago.js +# --------------------- +# suffix ago +msgid "ago" +msgstr "" + +#suffix from now +msgid "from now" +msgstr "" + +#seconds +msgid "less than a minute" +msgstr "" + +#minute +msgid "about a minute" +msgstr "" +#minutes +msgid "%{d} minutes" +msgstr "" + +#hour +msgid "about an hour" +msgstr "" +#hours +msgid "about %{d} hours" +msgstr "" + +#day +msgid "a day" +msgstr "" +#days +msgid "%{d} days" +msgstr "" + +#month +msgid "about a month" +msgstr "" +#months +msgid "%{d} months" +msgstr "" + +#year +msgid "about a year" +msgstr "" +#years +msgid "%{d} years" +msgstr "" \ No newline at end of file diff --git a/config/locale/de/app.po b/config/locale/de/app.po index 31c9761..7176a36 100644 --- a/config/locale/de/app.po +++ b/config/locale/de/app.po @@ -2876,3 +2876,52 @@ #public_plans_page.no_plans_body_text_html msgid "There are no public DMPs." msgstr "Es wurden noch keine DMPs veröffentlicht." + +# Timeago - found in lib/assets/javascripts/jquery.timeago.js +# --------------------- +# suffix ago +msgid "ago" +msgstr "" + +#suffix from now +msgid "from now" +msgstr "" + +#seconds +msgid "less than a minute" +msgstr "" + +#minute +msgid "about a minute" +msgstr "" +#minutes +msgid "%{d} minutes" +msgstr "" + +#hour +msgid "about an hour" +msgstr "" +#hours +msgid "about %{d} hours" +msgstr "" + +#day +msgid "a day" +msgstr "" +#days +msgid "%{d} days" +msgstr "" + +#month +msgid "about a month" +msgstr "" +#months +msgid "%{d} months" +msgstr "" + +#year +msgid "about a year" +msgstr "" +#years +msgid "%{d} years" +msgstr "" \ No newline at end of file diff --git a/config/locale/en_GB/app.po b/config/locale/en_GB/app.po index 6490e62..74ca475 100644 --- a/config/locale/en_GB/app.po +++ b/config/locale/en_GB/app.po @@ -2876,3 +2876,52 @@ #public_plans_page.no_plans_body_text_html msgid "There are no public DMPs." msgstr "There are no public DMPs." + +# Timeago - found in lib/assets/javascripts/jquery.timeago.js +# --------------------- +# suffix ago +msgid "ago" +msgstr "ago" + +#suffix from now +msgid "from now" +msgstr "from now" + +#seconds +msgid "less than a minute" +msgstr "less than a minute" + +#minute +msgid "about a minute" +msgstr "about a minute" +#minutes +msgid "%{d} minutes" +msgstr "%{d} minutes" + +#hour +msgid "about an hour" +msgstr "about an hour" +#hours +msgid "about %{d} hours" +msgstr "about %{d} hours" + +#day +msgid "a day" +msgstr "a day" +#days +msgid "%{d} days" +msgstr "%{d} days" + +#month +msgid "about a month" +msgstr "about a month" +#months +msgid "%{d} months" +msgstr "%{d} months" + +#year +msgid "about a year" +msgstr "about a year" +#years +msgid "%{d} years" +msgstr "%{d} years" \ No newline at end of file diff --git a/config/locale/en_US/app.po b/config/locale/en_US/app.po index 07af549..181c931 100644 --- a/config/locale/en_US/app.po +++ b/config/locale/en_US/app.po @@ -2876,3 +2876,52 @@ #public_plans_page.no_plans_body_text_html msgid "There are no public DMPs." msgstr "There are no public DMPs." + +# Timeago - found in lib/assets/javascripts/jquery.timeago.js +# --------------------- +# suffix ago +msgid "ago" +msgstr "ago" + +#suffix from now +msgid "from now" +msgstr "from now" + +#seconds +msgid "less than a minute" +msgstr "less than a minute" + +#minute +msgid "about a minute" +msgstr "about a minute" +#minutes +msgid "%{d} minutes" +msgstr "%{d} minutes" + +#hour +msgid "about an hour" +msgstr "about an hour" +#hours +msgid "about %{d} hours" +msgstr "about %{d} hours" + +#day +msgid "a day" +msgstr "a day" +#days +msgid "%{d} days" +msgstr "%{d} days" + +#month +msgid "about a month" +msgstr "about a month" +#months +msgid "%{d} months" +msgstr "%{d} months" + +#year +msgid "about a year" +msgstr "about a year" +#years +msgid "%{d} years" +msgstr "%{d} years" \ No newline at end of file diff --git a/config/locale/es/app.po b/config/locale/es/app.po index f1e0f26..b67e612 100644 --- a/config/locale/es/app.po +++ b/config/locale/es/app.po @@ -2780,3 +2780,52 @@ #magic_strings.token_permission_types.statistics msgid "statistics" msgstr "statistics" + +# Timeago - found in lib/assets/javascripts/jquery.timeago.js +# --------------------- +# suffix ago +msgid "ago" +msgstr "" + +#suffix from now +msgid "from now" +msgstr "" + +#seconds +msgid "less than a minute" +msgstr "" + +#minute +msgid "about a minute" +msgstr "" +#minutes +msgid "%{d} minutes" +msgstr "" + +#hour +msgid "about an hour" +msgstr "" +#hours +msgid "about %{d} hours" +msgstr "" + +#day +msgid "a day" +msgstr "" +#days +msgid "%{d} days" +msgstr "" + +#month +msgid "about a month" +msgstr "" +#months +msgid "%{d} months" +msgstr "" + +#year +msgid "about a year" +msgstr "" +#years +msgid "%{d} years" +msgstr "" \ No newline at end of file diff --git a/config/locale/fr/app.po b/config/locale/fr/app.po index d8c14e2..189cc3c 100644 --- a/config/locale/fr/app.po +++ b/config/locale/fr/app.po @@ -2884,3 +2884,52 @@ #public_plans_page.no_plans_body_text_html msgid "There are no public DMPs." msgstr "Aucun DMP n'a été rendu public." + +# Timeago - found in lib/assets/javascripts/jquery.timeago.js +# --------------------- +# suffix ago +msgid "ago" +msgstr "" + +#suffix from now +msgid "from now" +msgstr "" + +#seconds +msgid "less than a minute" +msgstr "" + +#minute +msgid "about a minute" +msgstr "" +#minutes +msgid "%{d} minutes" +msgstr "" + +#hour +msgid "about an hour" +msgstr "" +#hours +msgid "about %{d} hours" +msgstr "" + +#day +msgid "a day" +msgstr "" +#days +msgid "%{d} days" +msgstr "" + +#month +msgid "about a month" +msgstr "" +#months +msgid "%{d} months" +msgstr "" + +#year +msgid "about a year" +msgstr "" +#years +msgid "%{d} years" +msgstr "" \ No newline at end of file diff --git a/db/seeds.rb b/db/seeds.rb index 7584852..16d57b8 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -184,8 +184,8 @@ surname: "Admin", password: "password123", password_confirmation: "password123", - org: Org.find_by(abbreviation: 'CC'), - language: Language.find_by(abbreviation: I18n.locale), + org: Org.find_by(abbreviation: Rails.configuration.branding[:organisation][:abbreviation]), + language: Language.find_by(abbreviation: FastGettext.locale), perms: Perm.all, accept_terms: true, confirmed_at: Time.zone.now}, @@ -195,7 +195,7 @@ password: "password123", password_confirmation: "password123", org: Org.find_by(abbreviation: 'GA'), - language: Language.find_by(abbreviation: I18n.locale), + language: Language.find_by(abbreviation: FastGettext.locale), perms: Perm.where.not(name: ['admin', 'add_organisations', 'change_org_affiliation', 'grant_api_to_orgs']), accept_terms: true, confirmed_at: Time.zone.now}, @@ -205,7 +205,7 @@ password: "password123", password_confirmation: "password123", org: Org.find_by(abbreviation: 'UOS'), - language: Language.find_by(abbreviation: I18n.locale), + language: Language.find_by(abbreviation: FastGettext.locale), perms: Perm.where.not(name: ['admin', 'add_organisations', 'change_org_affiliation', 'grant_api_to_orgs']), accept_terms: true, confirmed_at: Time.zone.now}, @@ -215,7 +215,7 @@ password: "password123", password_confirmation: "password123", org: Org.find_by(abbreviation: 'UOS'), - language: Language.find_by(abbreviation: I18n.locale), + language: Language.find_by(abbreviation: FastGettext.locale), accept_terms: true, confirmed_at: Time.zone.now} ] @@ -225,7 +225,7 @@ # ------------------------------------------------------- guidance_groups = [ {name: "Generic Guidance (provided by the example curation centre)", - org: Org.find_by(abbreviation: 'CC'), + org: Org.find_by(abbreviation: Rails.configuration.branding[:organisation][:abbreviation]), optional_subset: true, published: true}, {name: "Government Agency Advice (Funder specific guidance)", @@ -344,7 +344,7 @@ {title: "My Curation Center's Default Template", description: "The default template", published: true, - org: Org.find_by(abbreviation: 'CC'), + org: Org.find_by(abbreviation: Rails.configuration.branding[:organisation][:abbreviation]), is_default: true, version: 1}, diff --git a/lib/assets/javascripts/admin.js b/lib/assets/javascripts/admin.js index 3e0e27d..62b2b77 100644 --- a/lib/assets/javascripts/admin.js +++ b/lib/assets/javascripts/admin.js @@ -93,7 +93,7 @@ //Code to show/hide divs on new guidance (by themes or by question) - $('#g_options').on("change", function (){ +/* $('#g_options').on("change", function (){ var g_t_q = $(this).val(); e_g_q_f = $("#edit_guid_ques_flag").val(); @@ -108,10 +108,10 @@ } }).trigger('change'); - +*/ //filter from template to question 5 dropdowns - $('#templates_select').change(function() { +/* $('#templates_select').change(function() { $.ajax({ type: 'GET', url: "update_phases", @@ -170,7 +170,7 @@ //$('#sections_select').show(); $('#questions_select').show(); }); - +*/ //action for show or hide template editing display $('#edit_template_button').click(function(e){ @@ -227,7 +227,7 @@ $('.new_question_save_button').click(function(e){ var s_id = $(this).prev(".section_id").val(); if ($('#new_question_text_'+ s_id).val() == ''){ - alert(I18n.t("js.question_text_empty")); + alert(__('Question text is empty, please enter your question.')); return false; } }); @@ -312,7 +312,7 @@ $('#new_guidance_alert_dialog').modal("hide"); }); - +// TODO: This seems to duplicate the functionality in #edit_guidance_submit $('#new_guidance_submit').click( function(e){ // $('#new_guidance_alert_dialog').on("hide", function(){ @@ -320,24 +320,15 @@ //verify if text area is not nil var editorContent = tinyMCE.get('guidance-text').getContent(); if (editorContent == ''){ - alert_message.push(I18n.t("js.add_guidance_text")); + alert_message.push(__('add guidance text')); } - //verify dropdown with questions has a selected option if guidance for a question being used - if ($('#g_options').val() == '2') { - if ($('#questions_select').val() == '' || isNaN($('#questions_select').val())){ - alert_message.push(I18n.t("js.select_question")); - } - } - - //verify dropdown with questions has a selected option if guidance for a question being used - if ($('#g_options').val() == '1' ){ - if($('#guidance_theme_ids').val() == undefined || $('#guidance_theme_ids').val() == ''){ - alert_message.push(I18n.t("js.select_at_least_one_theme")); - } + //verify if themes are selected + if($('#guidance_theme_ids').val() == undefined || $('#guidance_theme_ids').val() == ''){ + alert_message.push(__('select at least one theme')); } //verify if guidance group is selected if ( ($('#guidance_guidance_group_id').val() == '') || $('#guidance_guidance_group_id').val() == undefined ) { - alert_message.push(I18n.t("js.select_guidance_group")); + alert_message.push(__('select a guidance group')); } if(alert_message.length == 0){ //clear dropdowns before submission @@ -382,23 +373,15 @@ //verify if text area is not nil var editorContent = tinyMCE.get('guidance-text').getContent(); if (editorContent == ''){ - alert_message.push(I18n.t("js.add_guidance_text")); + alert_message.push(__('add guidance text')); } //verify dropdown with questions has a selected option if guidance for a question being used - if ($('#g_options').val() == '2') { - if ($('#questions_select').val() == '' || isNaN($('#questions_select').val())){ - alert_message.push(I18n.t("js.select_question")); - } - } - //verify dropdown with questions has a selected option if guidance for a question being used - if ($('#g_options').val() == '1' ){ - if($('#guidance_theme_ids').val() == undefined || $('#guidance_theme_ids').val() == ''){ - alert_message.push(I18n.t("js.select_at_least_one_theme")); - } + if($('#guidance_theme_ids').val() == undefined || $('#guidance_theme_ids').val() == ''){ + alert_message.push(__('select at least one theme')); } //verify if guidance group is selected - if ( ($('#guidance_guidance_group_ids').val() == '') || $('#guidance_guidance_group_ids').val() == undefined ) { - alert_message.push(I18n.t("js.select_guidance_group")); + if ( ($('#guidance_guidance_group_id').val() == '') || $('#guidance_guidance_group_id').val() == undefined ) { + alert_message.push(__('select a guidance group')); } if(alert_message.length == 0){ @@ -430,7 +413,7 @@ //Validate banner_text area for less than 165 character $("form#edit_org_details").submit(function(){ if (getStats('org_banner_text').chars > 165) { - alert(I18n.t("js.enter_up_to") + " " + getStats('org_banner_text').chars + ". " + I18n.t("js.if_using_url_try")); + alert(__('Please only enter up to 165 characters, you have used') + " " + getStats('org_banner_text').chars + ". " + __('If you are entering an URL try to use something like http://tinyurl.com/ to make it smaller.')); return false; } }); diff --git a/lib/assets/javascripts/application.js b/lib/assets/javascripts/application.js index cba67a9..fe85da0 100644 --- a/lib/assets/javascripts/application.js +++ b/lib/assets/javascripts/application.js @@ -19,6 +19,8 @@ //= require tinymce-jquery //= require i18n //= require i18n/translations +//= require_tree ./locale +//= require gettext/all $( document ).ready(function() { diff --git a/lib/assets/javascripts/export_configure.js b/lib/assets/javascripts/export_configure.js index 5cccf65..d05864b 100644 --- a/lib/assets/javascripts/export_configure.js +++ b/lib/assets/javascripts/export_configure.js @@ -38,7 +38,7 @@ $(this).val($(this).data("default")); }); $(".unsaved_changes_alert").hide(); - $("#settings-toggle > small").text(I18n.t("project.settings.plans.template_formatting")); + $("#settings-toggle > small").text(__('(Using template PDF formatting values)')); }); $('.savebutton').click(function(){ @@ -49,10 +49,10 @@ } }); if (custom) { - $("#settings-toggle > small").text(I18n.t("project.settings.plans.custom_formatting")); + $("#settings-toggle > small").text(__('(Using custom PDF formatting values)')); } else { - $("#settings-toggle > small").text(I18n.t("project.settings.plans.template_formatting")); + $("#settings-toggle > small").text(__('(Using template PDF formatting values)')); } $(".unsaved_changes_alert").hide(); }); diff --git a/lib/assets/javascripts/jquery.timeago.js b/lib/assets/javascripts/jquery.timeago.js index 893b382..59a7d74 100644 --- a/lib/assets/javascripts/jquery.timeago.js +++ b/lib/assets/javascripts/jquery.timeago.js @@ -45,19 +45,19 @@ strings: { prefixAgo: null, prefixFromNow: null, - suffixAgo: "ago", - suffixFromNow: "from now", - seconds: "less than a minute", - minute: "about a minute", - minutes: "%d minutes", - hour: "about an hour", - hours: "about %d hours", - day: "a day", - days: "%d days", - month: "about a month", - months: "%d months", - year: "about a year", - years: "%d years", + suffixAgo: __("ago"), + suffixFromNow: __("from now"), + seconds: __("less than a minute"), + minute: __("about a minute"), + minutes: __("%{d} minutes", '%d'), // This is a bit hacky but didn't want '%d' in the gettext so used the normal %{d} and then swap it back with '%d' so substitute() function below works properly + hour: __("about an hour"), + hours: __("about %{d} hours", '%d'), + day: __("a day"), + days: __("%{d} days", '%d'), + month: __("about a month"), + months: __("%{d} months", '%d'), + year: __("about a year"), + years: __("%{d} years", '%d'), wordSeparator: " ", numbers: [] } diff --git a/lib/assets/javascripts/locale/de/app.js b/lib/assets/javascripts/locale/de/app.js new file mode 100644 index 0000000..188e431 --- /dev/null +++ b/lib/assets/javascripts/locale/de/app.js @@ -0,0 +1 @@ +var locales = locales || {}; locales['de'] = {"domain":"app","locale_data":{"app":{"%d-%m-%Y":["%d-%m-%Y"],"%d/%m/%Y":["%d/%m/%Y"],"%d %B, %Y":["%d %B, %Y"],"%a, %b %d %Y %H:%M:%S %z":["%a, %d %b %Y %H:%M:%S %z"],"%d %b %H:%M":["%d %b %H:%M"],"%d/%m/%Y %H:%M":["%d/%m/%Y %H:%M"],"%B %d, %Y %H:%M":["%B %d, %Y %H:%M"],"am":["am"],"pm":["pm"],"%{application_name}":["DMPonline"],"DMP title":[""],"%{organisation_name}":["Digital Curation Centre"],"Welcome.":["Willkommen."],"

%{application_name} has been jointly developed by the %{organisation_name} to help you write data management plans.

":["

DMPonline wurde vom Digital Curation Centre entwickelt, um Sie bei der Erstellung von Data-Managment-Plänen zu unterstützen.

"],"Screencast on how to use %{application_name}":[""],"Your browser does not support the video tag.":[""],"You need to sign in or sign up before continuing.":["Bitte loggen Sie sich ein oder melden Sie sich fortsetzen."],"Language":[""],"Language name":[""],"Language abbreviation":[""],"Is default language":[""],"Yes":[""],"No":[""],"Organisation name":["Name der Organisation"],"Organisation":["Organisation"],"Organisations":["Organisationen"],"Organisation type":["Organisationsart"],"Parent organisation":["Übergeordnete Organisation"],"Organisation was successfully created.":["Organisation wurde erfolgreich angelegt."],"Organisation was successfully updated.":["Organisation wurde erfolgreich aktualisiert."],"There seems to be a problem with your logo. Please upload it again.":["Es scheint ein Problem mit unserem Logo zu sein. Bitte laden Sie es erneut."],"Plans":["Pläne"],"Title":["Titel"],"Description":[""],"Guidance group":["Hilfestellungsgruppe"],"No guidance group":["Keine Hilfestellungsgruppe"],"Guidance":["Hilfestellung"],"guidance":[""],"guidance on":[""],"Name":["Name"],"Abbreviation":["Abkürzung"],"Question":["Frage"],"Question Format":["Fragenformat"],"Questions":["Fragen"],"Template title":["Vorlagentitel"],"Section title":["Abschnittstitel"],"Formatting":[""],"Max Pages":[""],"Phase title":["Phasentitel"],"Version title":["Versionstitel"],"Username":["Nutzername"],"First name":["Vorname"],"Surname":["Nachname"],"User":["Nutzer"],"User was successfully created.":[""],"User role on an Organisation":["Rolle des Nutzers in der Organisation"],"User role type":["Art der Rolle"],"User role type was successfully created.":[""],"User role type was successfully updated.":[""],"User role":["Nutzerrolle"],"Role":["Rolle"],"User status":["Nutzerstatus"],"User status was successfully created.":[""],"User status was successfully updated.":[""],"User type":["Nutzerart"],"User type was successfully created.":[""],"Last logged in":["Zuletzt angemeldet"],"Version number":["Versionsnummer"],"Details":["Details"],"Phases":["Phasen"],"Phase":["Phase"],"Version":["Version"],"Versions":["Versionen"],"Sections":["Abschnitte"],"Section":["Abschnitt"],"Multiple question options":["Mehrfachfragen-Optionen"],"Templates":["Vorlagen"],"Template":["Template"],"Themes":["Themen"],"Theme":["Thema"],"Theme was successfully created.":[""],"Theme was successfully updated.":[""],"Suggested answer":["Antwortvorschlag"],"Suggested answers":["Antwortvorschläge"],"old template field":["altes Vorlagenfeld"],"old theme field":["altes Themenfeld"],"Token Permission Type":[""],"Permission Description":[""],"Token Permission":[""],"Organisation Token Permission":[""],"Settings updated successfully":[""],"Choose all themes that apply.":[""],"All themes":[""],"Selected themes":[""],"Choose all templates that apply.":[""],"All templates":["Alle Vorlagen"],"Selected templates":[""],"Select question format":[""],"No template":[""],"No phase":[""],"No version":[""],"No section":[""],"Organisation language":[""],"Please select your default language from the dropdown list. This will be displayed to users in your organisation, unless they have a different preference or choose another language from the dropdown options on the homepage. If your language is not available and you wish to provide a translation, please contact us.":[""],"Admin area":["Administativer Bereich"],"Admin Details":[""],"Users":["Nutzer"],"Organisation details":["Organisations-Details"],"These are the basic details for your organisation.":["Grundlegende Informationen über ihre Org."],"This is what displays as a label on your guidance, e.g. 'Glasgow guidance on Metadata'. It's best to use an abbreviation or short name.":["Dies wird als Bezeichnung an Ihrer Anleitung angezeigt, z.B. 'Kieler Hilfestellung für Metadaten'. Am besten eine Abkürzung oder ein Namenskürzel."],"Contact Email":["Kontakt Email"],"The email address of an administrator at your organisation. Your users will use this address if they have questions.":["Die E-Mail -Adresse des Administrators in Ihrer Org. Ihre Benutzer werden diese Adresse verwenden, wenn sie Fragen haben."],"List of users":["Liste der Nutzer"],"Email address":["E-Mail-Adresse"],"How many plans?":["Wie viele Pläne?"],"Privileges":[""],"Below is a list of users registered for your organisation. You can sort the data by each field.":["Folgend findet sich die Liste von Benutzern registriert bzgl. Ihrer Org. Sie können diese Liste bzgl. aller Felder sortieren."],"Logo Upload Failed.":["Logo Upload fehlgeschlagen."],"Logo":["Logo"],"Upload a new logo file":["Laden Sie ein neues Logo-Datei"],"If you decide to use the default DMPRoadmap logo, please check this box to remove your current logo.":["Wenn Sie die Standard DMPRoadmap Logo verwenden entscheiden , prüfen Sie bitte dieses Feld Ihre aktuelle Logo zu entfernen."],"Top banner text":[""],"Website":["Web-Seite"],"Main organisation":["Übergeordnete Organisation"],"Last updated":["Zuletzt aktualisiert"],"
Please enter information describing your organisation.
":["
Bitte beschreibenden Sie Ihre Org.
"],"
Please enter information you would like your users to see while sign in. Do not enter more than 165 characteres.
":[""],"
Enter a description that helps you to differentiate between templates e.g. if you have ones for different audiences.
":["
Geben Sie eine Beschreibung ein, die Ihnen bei der Unterscheidung von Vorlagen hilft, falls Sie z.B. welche für unterschiedliche Zielgruppen besitzen.
"],"Please enter an abbreviation to your organisation's name.":["Bitte geben Sie eine Abkürzung für Ihre Organisation an."],"Please enter a valid web address.":["Bitte prüfen Sie die Korrektheit ihrer Web-Adresse."],"Please enter your organisation's name.":["Bitte geben Sie den Namen Ihrer Organisation an."],"Add option":["Option hinzufügen"],"Add question":["Frage hinzufügen"],"Add section":["Abschnitt hinzufügen"],"Remove":["Entfernen"],"Order":["Reihenfolge"],"Text":["Text"],"Default":["Vorgabe"],"User org role was successfully created.":[""],"User org role was successfully updated.":[""],"API Privleges?":["API Berechtigungen?"],"Edit User Privileges":["Bearbeiten Benutzerberechtigungen"],"Guidance list":["Liste der Hilfestellungen"],"Should this guidance apply:":["Soll diese Hilfestellung angewendet werden auf:"],"by themes":["Themen"],"by question":["Fragen"],"Published":["Veröffentlicht"],"Created":["Erstellt"],"Actions":["Aktionen"],"Add guidance":["Hilfestellung hinzufügen"],"Guidance was successfully created.":["Hilfestellung erfolgreich angelegt."],"Guidance was successfully updated.":["Hilfestellung erfolgreich aktualisiert."],"
Please enter guidance text for this theme.
":["
Bitte geben Sie eine Hilfestellungstext für dieses Thema ein.
"],"New guidance":["Neue Hilfestellung"],"View all guidance":["Alle Hilfestellungen ansehen"],"Enter your guidance here. You can include links where needed.":["Hilfestellung hier eingeben; Verweise auf andere Web-Seiten können integriert werden."],"Decide whether your guidance should display by themes (default) or if it only pertains to a specific question in one of the funder templates.":["Entscheiden Sie, ob Ihre Hilfestellung an Themen orientiert dargestellt werden soll (Voreinstellung), oder ob sie eine bestimmte Frage in einer Vorlage betrifft."],"Select which theme(s) this guidance relates to.":["Wählen Sie die Themen aus, für die diese Hilfestellung relevant ist."],"Select the relevant template, phase, version, section and question from the following dropdown options to define which specific question this guidance should display on.":["Wählen Sie die Vorlage, die Phase, die Version, den Abschnitt und die Frage aus den folgenden Auswahllisten aus, um die Frage zu bestimmen, für die diese Hilfestellung angezeigt werden soll."],"Select which group this guidance relates to.":["Wählen Sie die Gruppe aus, für die diese Hilfestellung relevant ist."],"Check this box when you are ready for this guidance to appear on user's plans.":["Markieren Sie dieses Kästchen, wenn Sie bereit sind, für diese Anleitung für Benutzer-Pläne zu erscheinen."],"

You can write pieces of guidance to be displayed by theme (e.g. generic guidance on storage and backup that should present across the board) or you can write guidance for specific questions. Writing generic guidance by theme saves you time and effort as your advice will be automatically displayed across all templates rather than having to write guidance to accompany each.

You will usually want your guidance to display on all templates, however there may be cases where you only want it to show for specific funders e.g. if you have specific instructions for applicants to BBSRC for example. This can be set too if needed.

":["

Sie können eine Hilfestellungtexte erstellen, die im Zusammenhang mit bestimmten Themen angezeigt werden, oder die sich auf eine spezifische Frage beziehen. Generische Hilfestellungen für Themen helfen Zeit und Arbeit zu sparen, da Ihre Hilfestellungen automatisch für alle Vorlagen angezeigt werden; sie müssen andernfalls für jede Vorlage neu erstellt werden.

Im Normalfall werden Sie wollen, dass Ihre Orinetierungshilfen in allen Vorlagen angezeigt wird. Ausnahmen sind z.B. Hilfestellungen die spezielle Hinweise für einen Förderer geben.

"],"You are about to delete '%{guidance_summary}'. Are you sure?":[""],"Add guidance group":["Gruppe für Hilfestellungen hinzufügen"],"Guidance group list":["Liste der Gruppen für Hilfestellungen"],"Optional subset":["Optionale Untergruppe"],"e.g. School/ Department":["z.B. Fakultät / Einrichtung"],"Please enter the group title":["Bitte geben Sie einen Titel für die Gruppe an."],"If the guidance is only meant for a subset of users e.g. those in a specific college or institute, check this box. Users will be able to select to display this subset guidance when answering questions in the 'create plan' wizard.":["Falls die Hilfestellung nur für eine bestimmte Nutzergruppe, wie z.B. eine bestimmte Fakultät oder ein Institut, bestimmt ist, wählen Sie diese Option aus. Die Nutzer können die Anzeige von Hilfestellungen dieser Untergruppe im 'Plan erstellen'-Assistenten auswählen."],"Select which templates you want the guidance to display on. This will usually be all templates.":["Wählen Sie aus, in Vorlagen der Hilfetext angezeigt werden soll. Normalerweise werden dies alle Vorlagen sein."],"Add an appropriate name for your guidance group e.g. Glasgow guidance. This name will be used to tell the end user where the guidance has come from e.g. 'Glasgow Guidance on Metadata'":["Geben Sie einen geeigneten Namen für Ihre Hilfestellungsgruppe ein, wie z.B. 'CAU Hilfestellungen'. Dieser Name soll den Nutzern vermitteln, woher die Hilfestellung kommt, z.B. 'CAU Hilfestellung zu Metadaten'"],"

First create a guidance group. This could be institution wide or a subset e.g. a particular College / School, Institute or department. When you create guidance you'll be asked to assign it to a guidance group.

":["

Erstelle zuerst eine Hilfestellungsgruppe. Diese könnte institutionsweit oder eine Untermenge von z.B. einer bestimmten Universität / Schule, eines Instituts oder einer Abteilung sein. Wenn Sie Hilfestellung erstellen, werden sie aufgefordert sie einer Hilfestellungsgruppe zuzuordnen.

"],"You are about to delete '%{guidance_group_name}'. This will affect guidance. Are you sure?":["Sie sind dabei '%{guidance_group_name}' zu löschen. Das wird Auswirkungen auf die Hilfestellungen haben. Sind Sie sicher?"],"Guidance group was successfully created.":["Hilfestellungsgruppe erfolgreich erzeugt."],"Guidance group was successfully updated.":["Hilfestellungsgruppe erfolgreich aktualisiert."],"Guidance group was successfully deleted.":["Hilfestellungsgruppe erfolgreich gelöscht."],"Template History":[""],"Create a template":["Vorlage erstellen"],"New template":["Neue Vorlage"],"Template details":["Details der Vorlage"],"Edit template details":["Details der Vorlage bearbeiten"],"View all templates":["Alle Vorlagen ansehen"],"Funders templates":["Vorlagen der Geldgeber"],"Please enter a title for your template.":["Bitte geben sie einen Titel für Ihre Vorlage an."],"Please enter section title":["Bitte geben sie eine Überschrift für den Abschnitt an."],"
Please enter template description for this theme.
":["
Bitte geben sie eine Beschreibung der Vorlage für dieses Thema an.
"],"

If you wish to add an institutional template for a Data Management Plan, use the 'create template' button. You can create more than one template if desired e.g. one for researchers and one for PhD students.

Your template will be presented to users within your institution when no funder templates apply. If you want to add questions to funder templates use the 'customise template' options below.

":["

Falls Sie eine Vorlage für eine Institution anlegen möchten, können Sie den Knopf 'Vorlage erstellen' nutzen. Sie können verschiedene Vorlagen erstellen um auf Spezialisierungen einzugehen, z.B. für Forscher und für Doktoranden.

"],"

To create a new template, first enter a title and description. Once you have saved this you will be presented with options to add one or more phases.

":["

Um eine Vorlage anzulegen beginnen sie mit einem Titel und einer Beschreibung. Nach dem Speichern haben Sie die Option zum Anlegen von ein oder mehreren Phasen.

"],"

Here you can view previously published versions of your template. These can no longer be modified.

":[""],"Enter a description that helps you to differentiate between templates e.g. if you have ones for different audiences":["Geben Sie eine Beschreibung, die hilft, zwischen den verschiedenen Vorlagen zu unterscheiden, z.B. für verschiedene Zielgruppen"],"Own templates":["Eigene Vorlagen"],"Add new phase +":["Neue Phase hinzufügen"],"View phase":["Phase ansehen"],"Edit phase":["Phase bearbeiten"],"Back to edit view":["Zurück, um die Ansicht zu bearbeiten"],"Edit phase details":["Details der Phase bearbeiten"],"Phase details":["Details der Phase"],"Order of display":["Reihenfolge"],"

Here you set the title that users will see. If you intend to have multiple phases for you DMP, this should be clear in the title and description.

":["

Dieser Titel wird den Nutzern angezeigt. Falls Sie mehrere Phasen für einen DMP haben wollen, sollte dies aus dem Titel und der Beschreibung hervorgehen.

"],"Enter a title for the phase e.g. intial DMP, full DMP... This is what users will see in the tabs when completing a plan. If you only have one phase, call it something generic e.g. Glasgow DMP":["Geben Sie einen Titel für die Phase an, z.B. Initialer DMP oder Kompletter DMP. Die Titel werden den Benutzern in den Reitern angezeigt, während sie einen Plan erstellen. Falls Sie nur eine Phase bereitstellen, geben Sie ihm einen allgemeinen Titel wie z.B. 'CAU DMP'"],"This allows you to order the phases of your template.":["Hier können sie die Abfolge der Phasen in Ihrer Vorlage bestimmen."],"Enter a basic description. This will be presented to users on the 'Admin Plan' tab, above the summary of the sections and questions which they will be asked to answer.":["Geben Sie eine kurze Beschreibung an. Diese wird den Nutzern oberhalb der Zusammenfassung der Abschnitte und der Fragen, die sie beantowrten müssen, angezeigt."],"You are about to delete '%{phase_title}'. This will affect versions, sections and questions linked to this phase. Are you sure?":["Sie sind dabei '%{phase_title}' zu löschen. Das wird Auswirkungen auf die Versionen, Abschnitte und Fragen haben, die mit dieser Phase verknüpft sind. Sind Sie sicher?"],"When you create a new phase for your template, a version will automatically be created. Once you complete the form below you will be provided with options to create sections and questions.":["Wenn Sie eine neue Phase in einer Vorlage anlegen, wird automatische eine Version erzeugt. Nachdem Sie das folgende Formular ausgefüllt haben, werden Ihnen Optionen zum erstellen von Abschnitten und Fragen angezeigt."],"Version details":["Details der Version"],"New section title":["Neue Abschnittsüberschrift"],"
Enter a basic description. This could be a summary of what is covered in the section or instructions on how to answer. This text will be displayed in the coloured banner once a section is opened to edit.
":["
Geben Sie eine kurze Beschreibung an. Diese sollte zusammenfassen, was von diesem Abschnitt abgedeckt wird, oder Hinweise zur Beantwortung der Fragen geben. Dieser Text wird ein einem farbigen Banner angezeigt, sobald ein Abschnitt zur Bearbeitung geöffnet wird."],"This allows you to order sections.":["Hier können Sie die Reihenfolge der Abschnitte bestimmen."],"Created at":["Angelegt am"],"Please ensure you have created at least one phase with a published version.":["Bitte erstellen Sie mindestens eine Phase mit einer einer veröffentlichten Version."],"Customise":["Anpassen"],"Customised":[""],"Edit customisation":["Anpassungen bearbeiten"],"Update Customisation":[""],"Information was successfully created.":["Information wurde erfolgreich angelegt."],"Information was successfully updated.":["Information wurde erfolgreich aktuallisiert"],"Information was successfully deleted.":["Information wurde erfolgreiche entfernt."],"Published templates cannot be edited.":[""],"You are about to delete '%{section_title}'. This will affect questions linked to this section. Are you sure?":["Sie sind dabei '%{section_title}' zu entfernen. Das wird Auswirkungen auf die Fragen haben, die mit diesem Abschnitt verbunden sind. Sind Sie sicher?"],"Yes [Unpublished Changes]":[""],"Yes [Original Template Has Changed]":[""],"Make big changes":["Wesentliche Änderungen vornehmen"],"Make small changes":["Kleine Änderungen vornehmen"],"Edit":["Bearbeiten"],"A first version is created automatically. If you want to make major changes to published versions later (e.g. add section or questions) please create a new version. If you only want to fix typos or make small changes that do not alter meanings, edit the current version.":["Eine erste Version wird automatisch erzeugt. Falls Sie wesentliche Änderungen vornehmen möchten (z.B. einen neuen Abschnitt oder neue Fragen hinzuzufügen), erstellen Sie bitte eine neue Version. Falls Sie Rechtschreibfehler korrigieren oder kleine Änderungen vornehmen möchten, die keine Aussagen ändern oder hinzufügen, editieren Sie direkt die aktuelle Version."],"Enter a basic description as an internal reference to describe the difference between versions":["Geben Sie eine kurze Beschreibung an."],"You are about to delete '%{version_title}'. This will affect sections and questions linked to this version. Are you sure?":["Sie sind dabei '%{version_title}' zu löschen. Das wird Auswirkungen auf Abschnitte und Fragen haben, die mit dieser Version verbunden sind. Sind Sie sicher?"],"Edit alert":["Bearbeitungswarnung"],"Please consider the kind of changes you are about to make as this plan is already published and might be in use":["Bitte wägen Sie Ihre geplanten Änderungen sorgfältig ab, da dieser Plan bereits publiziert ist und in Benutzung sein könnte."],"Question text":["Fragentext"],"Question number":["Fragennummer"],"Edit question":["Frage bearbeiten"],"Delete question":["Frage löschen"],"Answer format":["Antwortform"],"Display additional comment area.":[""],"Additional comment area will be displayed.":[""],"No additional comment area will be displayed.":[""],"Example of answer":["Beispielantwort"],"You can add an example or suggested answer to help users respond. These will be presented above the answer box and can be copied/ pasted.":["Hier können Sie einen Text als Beispiel oder Vorschlag angeben, der Nutzern bei der Beantwortung helfen soll. Der Text erscheint oberhalb des Antwortfeldes und kann kopiert und eingefügt werden."],"Suggested answer/ Example":["Antwortvorschlag / Beispiel"],"Add suggested answer/ example":["Antwortvorschlag / Beispiel hinzufügen"],"Edit suggested answer/ example":["Antwortvorschlag / Beispiel bearbeiten"],"You are about to delete a suggested answer/ example for '%{question_text}'. Are you sure?":["Sie sind dabei den Antwortvorschlag / das Beispiel für '%{question_text}' zu löschen. Sind Sie sicher?"],"Default value":["Wertvorgabe"],"This allows you to order questions within a section.":["Hier können sie die Reihenfolge der Fragen innerhalb eines Abschnittes bestimmen."],"You can choose from:
  • - text area (large box for paragraphs);
  • - text field (for a short answer);
  • - checkboxes where options are presented in a list and multiple values can be selected;
  • - radio buttons where options are presented in a list but only one can be selected;
  • - dropdown like this box - only one option can be selected;
  • - multiple select box allows users to select several options from a scrollable list, using the CTRL key;
":["Sie haben die Wahl zwischen:
  • - Textbereiche (große Box für Absätze);
  • - Textfelder (für kurze Antworten);
  • - Checkboxen, die Antwortoptionen in Listen präsentieren und eine Mehrfachauswahl ermöglichen
  • - Optionsfelder, die Antwortoptionen in Listen präsentieren, aus der eine ausgewählt wird
  • - Klapplisten, Eingabelisten wie diese - nur eine Option kann ausgewählt
  • - Mehrfachauswahllisten, die Antwortoptionen in einer scrollbaren Liste präsentieren und Merhfachauswahl durch klicken und gleichzeitiges Drücken der Kommando- bzw. Steuerungstaste erlauben
"],"Anything you enter here will display in the answer box. If you want an answer in a certain format (e.g. tables), you can enter that style here.":["Alles, was Sie hier eingeben, wird im Antwortfeld erscheinen. Falls Sie eine Antwort in einem bestimmten Format haben möchten (z.B. als Tabelle) können Sie diesen Stil hier angeben."],"

Select themes that are relevant to this question.

This allows your generic institution-level guidance to be drawn in, as well as that from other sources e.g. the %{organisation_abbreviation} or any Schools/Departments that you provide guidance for.

You can select multiple themes by using the CTRL button.

":["

Wählen Sie die für diese Frage relevanten Themen aus.

Dies erlaubt es, sowohl generischen Hilfestellungen auf Institutions-Ebene, als auch aus anderen Quellen, wie z.B. der DINI, oder jedweder Institute oder Einrichtungen, für die Sie Unterstützung anbieten, einzubeziehen.

Sie können mehrere Themen durch klicken und gleichzeitiges Drücken der Steuerungs- bzw. Kommando-Taste auswählen.

"],"Default answer":["Vorauswahl"],"Enter specific guidance to accompany this question. If you have guidance by themes too, this will be pulled in based on your selections below so it's best not to duplicate too much text.":["Geben Sie spezifische Hilfestellung an, die diese Frage begleiten soll. Falls Sie auch Hilfestellungen nach Themen angeben, werden diese mit angezeigt; Sie sollten deshalb möglichst wenig Text kopieren."],"You are about to delete '%{question_text}'. Are you sure?":["Sie sind dabei '%{question_text}' zu löschen. Sind Sie sicher?"],"Enter any options that you wish to display. If you want to pre-set one option as selected, check the default box.":["Geben Sie alle Optionen an, die angezeigt werden sollen. Sie können eine der Option als Vorauswahl mit Hilfe der entsprechenden Checkbox markieren."],"Home":["Start"],"Return to the home page":["Zurück zur Startseite."],"Super admin area":["Superadmin"],"Edit profile":["Profil bearbeiten"],"View plans":["Pläne anzeigen"],"Create plan":["Erstelle Plan"],"About":["Über uns"],"Future plans":[""],"Help":["Hilfe"],"Public DMPs":["Öffentliche DMPs"],"Contact":["Kontakt"],"The %{organisation_abbreviation} is funded by":["Das DCC wird untertützt von"],"format":[""],"Change language":[""],"Sign in":["Anmelden"],"Sign out":["Abmelden"],"Sign up":["Registrieren"],"New to %{application_name}? Sign up today.":["Neu auf DMPonline? Heute noch registrieren."],"Signed in as ":["Angemeldet als "],"Or, sign in with your institutional credentials":["Oder melden Sie sich mit den Zugangsdaten Ihres Instituts an"]," (UK users only)":[""],"Email":["E-Mail"],"Subject":[""],"Message":[""],"You must enter a valid email address.":["Bitte geben Sie eine gültige E-Mail-Adresse an."],"

Please note that your email address is used as your username. If you change this, remember to use your new email address on sign in.

":["

Bitte beachten Sie, dass Ihre Email-Adresse als Nutzername verwendet wird. Vergessen Sie nicht, Ihre neue E-Mail-Adresse beim der nächsten Anmeldung zu verwenden, falls Sie diese geändert haben.

"],"You can edit any of the details below.":["Alle folgenden Angaben können bearbeitet werden."],"Remember me":["angemeldet bleiben"],"My organisation isn't listed.":["Meine Organisation ist nicht in der Auflistung."],"Password":["Passwort"],"Current password":["Aktuelles Passwort"],"New password":["Neues Passwort"],"Password confirmation":["Passwort bestätigen"],"Change your password":["Passwort ändern"],"Forgot your password?":["Passwort vergessen?"],"Your password must contain at least 8 characters.":["Ihr Passwort muss mindestens acht Zeichen enthalten."],"This must match what you entered in the previous field.":["Die Eingabe in diesem Feld muss mit der im vorherigen Feld übereinstimmen."],"Didn't receive confirmation instructions?":["Bestätigungsanleitungen nicht erhalten?"],"Didn't receive unlock instructions?":["Entsperrungsanleitungen nicht erhalten?"],"Reset password instructions":["Anleitung zum Zurücksetzen des Passworts"],"If you would like to change your password please complete the following fields.":["Zum Ändern Ihres Passworts folgende Felder ausfüllen."]," I accept the terms and conditions *":["Ich akzeptiere die Nutzungsbedingungen *"],"You must accept the terms and conditions to register.":[""],"That email address is already registered.":[""],"This must be a valid email address - a message will be sent to it for confirmation.":[""],"Error processing registration. Please check that you have entered a valid email address and that your chosen password is at least 8 characters long.":[""],"API token":[""],"API Information":[""],"How to use the API":[""],"You have been granted permission by your organisation to use our API.":[""],"Your API token and instructions for using the API endpoints can be found here.":[""],"API Permission Granted":[""],"Text area":["Text area"],"Text field":["Textfeld"],"Radio buttons":["Optionsfelder"],"Check box":["Checkbox"],"Dropdown":["Klappliste"],"Multi select box":["Mehrfachauswahlliste"],"Export":["Export"],"By ":[""]," on ":[""],"Read more on the ":[""],"Your permissions relating to ":[""]," have changed. You now have ":[""],"access.":[""],"Your access to ":[""]," has been removed.":[""],"You have been given ":[""]," access to ":[""],"... (continued)":[""],"Security check":[""],"Error!":["Fehler!"],"Comment":["Kommentar"],"Send":["Senden"],"Ok":[""],"None":["Keines"],"false":[""],"Note":["Kommentar"],"Me":["Ich"],"View":["Ansicht"],"History":[""],"Save":["Speichern"],"Preview":["Vorschau"],"Saving...":["Speichere..."],"Loading...":["Lade..."],"Removing...":["Entferne..."],"Unsaved changes":["Ungesicherte Änderungen"],"Unlink account":["Trenne Zugang"],"Share":["Teilen"],"Delete":["Löschen"],"Create":["Erstellen"],"Update":["Aktualisieren"],"Cancel":["Abbrechen"],"Back":["Zurück"],"Discard":["Verwerfen"],"Publish":[""],"Before submitting, please consider:":[""],"Last name":["Nachname"],"Please enter your first name.":["Bitte geben Sie ihren Vornamen ein."],"Please enter your surname or family name.":["Bitte geben Sie ihren Familien- bzw. Nachnamen ein."],"Owner":["Besitzer"],"ORCID number":["ORCID Nummer"],"ORCID number is a persistent digital identifier that distinguishes each researcher, more info.":["ORCID Nummer ist ein persistenter digitaler Identifikator für Forschende. Weitere Informationen…"],"%{application_name} doesn't recognise your institutional credentials - either you haven't created an account with us or you haven't linked these details to your existing account.
--> If you do not have an account with %{application_name}, please complete the form below.
--> If you have an account with %{application_name}, please Sign in so we can link your account to your institutional credentials.
Once you have created and/or linked your account, you'll be able to sign in with your institutional credentials directly.":["Hinweis: If you have previously created an account in DMPonline, and you want to link this to your institutional credentials, you need to Sign in to that existing DMPonline account first. If you have never created a DMPonline account, then please complete the form below."],"Your account is linked to your institutional credentials.":["Your account is linked to your institutional credentials."],"Link your %{application_name} account to your institutional credentials (UK users only)":["Link your DMP Builder account to your institutional credentials"],"Unlink your institutional credentials":["Unlink your institutional credentials"],"Unlink institutional credentials alert":["Unlink institutional credentials alert"],"

You are about to unlink %{application_name} of your institutional credentials, would you like to continue?

":["

You are about to unlink DMP Builder of your institutional credentials, would you like to continue?

"],"Select a phase":[""],"Select a version":[""],"Select a section":[""],"Select a question":[""],"Select a template":[""],"info@dcc.ac.uk":[""],"You have been given access to a Data Management Plan":[""],"DMP permissions changed":[""],"DMP access removed":[""],"Answers":["Antworten"],"Answer questions":["Fragen beantworten"],"Last edited":["Zuletzt bearbeitet"],"Select an action":["Wählen Sie eine Aktion"],"Answered ":["Beantwortet "]," by ":[" von "],"Example answer":["Beispielantwort"],"Not answered yet":["Noch nicht beantwortet"],"No questions have been answered":["Keine der Fragen wurden beantwortet"],"Policy Expectations":["Policy Expectations"],"Share note":["Füge Kommentar hinzu"],"Notes":["Kommentare"],"A question can only have one answer.":["Eine Frage kann nur eine Antwort haben."],"The question must belong to the correct template.":["Die Frage muss zur richtigen vorlage gehören."],"Add note":["Füge Kommentar hinzu"],"Share note with collaborators":["Bitte füge einen Kommentar hinzu"],"Noted by:":["Kommentar von:"],"Are you sure you would like to remove this note?":[""],"Note removed by":["Kommentar entfernt von"],"Note removed by you":["Kommentar von Ihnen entfernt"],"Comment was successfully created.":[""],"Comment was successfully updated.":[""],"Comment has been removed.":[""],"Funder":["Funder"],"Institution":["Institution"],"Project":["Project"],"School":["Fakultät"],"Publisher":["Verleger"],"Other guidance":["Andere Hilfestellungen"],"Unit":["Untereinheit"],"Please enter the name of your organisation.":["Bitte geben Sie den Namen Ihrer Organisation an."],"Edit plan details":["Plandetails bearbeiten"],"Grant number":["Grantnummer"],"Grant reference number if applicable [POST-AWARD DMPs ONLY]":["Das Förderkennzeichen als Referenz, sofern sinnvoll (Nur für Datenmanagement-Pläne nach der Bewilligung)."],"Not applicable/not listed.":["Nicht anwendbar / nicht gelistet."],"There are a number of possible templates you could use. Please choose one.":["Es stehen verschiedene mögliche Vorlagen zur Auswahl. Bitte wählen Sie eine aus."],"Plan name":["Name des Plans"],"My plan":["Mein Plan"],"Plan was successfully created.":["Plan wurde erfolgreich angelegt."],"Plan was successfully updated.":[""],"Principal Investigator/Researcher":["Projektleitung / Principal Investigator"],"Name of Principal Investigator(s) or main researcher(s) on the project.":["Name des Principal Investigators oder der Leitung des Projektes."],"Principal Investigator/Researcher ID":["Principal Investigator ID"],"E.g ORCID http://orcid.org/.":["z.B. die ORCID (http://orcid.org/)."],"Research funder if relevant":["Der Geldgeber, falls relevant."],"Funder name":["Name des Geldgebers"],"Summary about the questions":["Zusammenfassung der Fragen"],"Plan details":["Plandetails"],"

From here you can download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application.
Select what format you wish to use and click to 'Export'.

":["

Hier können Sie Ihren Plan in verschiedenen Formaten herunterladen. Das kann nützlich sein, falls Sie den Plan als Teil Ihres Projektantrags einreichen müssen.
Wählen Sie das gewünschte Format aus und wählen Sie 'Exportieren'.

"],"questions answered":["Fragen beantwortet"],"You have altered answers but have not saved them:":["Geänderte Antworten wurden nicht gesichert:"],"Would you like to save them now?":["Wollen Sie sie jetzt sichern?"],"Unsaved answers":["Ungesicherte Antworten"],"Answer was successfully recorded.":[""],"There was an error saving the answer.":[""],"No change in answer content - not saved.":[""],"Plan data contact":["Plandatenkontakt"],"Name (if different to above), telephone and email contact details":["Name (falls abweichend von obigen Angaben), Telefonnummer und E-Mail-Adresse."],"If applying for funding, state the name exactly as in the grant proposal.":["Falls Sie einen Förderantrag stellen, geben Sie bitte den Namen exakt genau so an, wie im Förderantrag."],"

Questions to consider:

  • - What is the nature of your research project?
  • - What research questions are you addressing?
  • - For what purpose are the data being collected or created?

Guidance:

Briefly summarise the type of study (or studies) to help others understand the purposes for which the data are being collected or created.

":["

Zu berücksichtigende Fragen:

  • - Welcher Art ist Ihr Forschungsproject?
  • - Welche Forschungsfragen sollen im Projekt bearbeitet werden?
  • - Welchem Zweck werden die erzeugten oder gesammelt Daten dienen?

Hilfestellung:

Fassen Sie die Art der Studien / Untersuchungen zusammen, um Dritten den Zweck der erzeugten oder gesammelt Daten zu veranschaulichen.

"],"ID":["ID"],"A pertinent ID as determined by the funder and/or institution.":["Eine Identifikationskürzel, wie es von Förderern oder Institutionen vergeben wird."],"This plan is based on:":["Dieser Plan basiert auf:"],"My plans":["Meine Pläne"],"Visibility":["Sichtweite"],"Private":["Private"],"Organisational":["Organisatorische"],"Public":["Öffentlichkeit"],"Test/Practice":["Test/Übung"],"Private (owners, co-owners, and administrators only) See our Terms of Use.":["Private (Besitzer, Miteigentümer und Admins) Siehe unsere Nutzungsbedingungen."],"Organisational (visibile to others within your organisation)":["Mit anderen innerhalb Ihrer Organisation"],"Public (Your DMP will appear on the Public DMPs page of this site)":["Öffentlich im Internet. Ihr DMP erscheint auf der Public DMPs Seite dieser Seite."],"Test/Practice (your plan is not visible to other users) See our Terms of Use.":["Test / Praxis (Ihr Plan ist für andere Benutzer nicht sichtbar) Siehe unsere Nutzungsbedingungen."],"Not specified (will be visible to others within your organisation by default)":["Nicht angegeben (wird standardmäßig für andere in Ihrer Organisation sichtbar sein)"],"The items you select here will be displayed in the table below. You can sort the data by each of these headings or filter by entering a text string in the search box.":["Die hier ausgewählten Einträge werden in der Tabelle unten angezeigt. Sie können die Daten durch jeden ihrer Tabellenköpfe sortieren oder filtern, indem Sie eine Zeichenkette in der Suchbox eingeben."],"

Welcome.
You are now ready to create your first DMP.
Click the 'Create plan' button below to begin.

":["

Willkommen.
Sie können nun ihren ersten DMP erstellen.
Wählen Sie 'Plan erstellen' weiter unten aus, um zu beginnen.

"],"

The table below lists the plans that you have created, and any that have been shared with you by others.
These can be edited, shared, exported or deleted at anytime.

":["

Die folgende Tabelle listet alle von Ihnen erstellten und von anderen mit Ihnen geteilten Pläne.
Diese können jederzeit bearbeitet, geteilt, exportiert und gelöscht werden.

"],"This page gives you an overview of your plan. It tells what your plan is based on and gives an overview of the questions that you will be asked.":["Diese Seite bietet Ihnen einen Überblick über Ihren Plan. Sie gibt an, worauf dieser Plan basiert und gibt eine Übersicht über die Fragen, die gestellt werden."],"Please fill in the basic project details below and click 'Update' to save":["Bitte geben Sie im Folgenden die Projektdetails an und wählen 'Aktualisieren' aus, um die Änderungen zu speichern."],"Are you sure you wish to delete this plan? If the plan is being shared with other users, by deleting it from your list, the plan will be deleted from their plan list as well":["Sind Sie sicher, dass sie diesen Plan löschen wollen?"],"Confirm plan details":["Plandetails bestätigen"],"Where your funder or institution doesn't have specific requirements (or if you left these options blank), you will see the %{organisation_abbreviation} Checklist. This offers a generic set of DMP questions and guidance. For more details see: DMP checklist 2013.":["An Stellen, an denen Förderer oder Institutionen keine spezifischen Anforderung definiert haben (oder Sie entsprechende Angaben nicht gemacht haben), wird Ihnen die DCC Checkliste angezeigt. Diese bietet eine generische Fragen und Hilfestellungen; Mehr Informationen unter: DMP Check-Liste 2013."],"Yes, create plan":["Ja, Plan erstellen"],"You have selected the Default DMP, which is based on the %{organisation_abbreviation} Checklist. This offers a generic set of DMP questions and guidance. For more details see: DMP checklist 2013.":["Sie haben den Standardplan gewählt, der auf dem Katalog der DCC basiert. Dies bietet eine generische Menge von DMP-Fragen and Hilfestellung. Für mehr Einzelheiten: DMP checklist 2013."],"Please note: %{org_name} provides a DMP template. If you wish to use it select 'Cancel', otherwise select 'Create plan'":["Bitte beachten: %{org_name} stellt eine DMP-Vorlage zur Verfügung. Wenn Sie sie benutzen möchten, wähle 'Abbrechen', ansonsten wähle 'Erstelle Plan'"],"Shared?":["Geteilt?"],"

You can give other people access to your plan here. There are three permission levels.

  • Users with \"read only\" access can only read the plan.
  • Editors can contribute to the plan.
  • Co-owners can also contribute to the plan, but additionally can edit the plan details and control access to the plan.

Add each collaborator in turn by entering their email address below, choosing a permission level and clicking \"Add collaborator\".

Those you invite will receive an email notification that they have access to this plan, inviting them to register with %{application_name} if they don\\'t already have an account. A notification is also issued when a user\\'s permission level is changed.

":["

Sie können anderen Zugriff zu Ihren Plan gewähren. Es gibt hierbei drei Abstufungen des Zugriffs.

  • Benutzer mit 'nur lesen'-Rechten können den Plan nur lesen.
  • Bearbeiter können zum Plan beitragen.
  • Miteigentümer können zum Plan beitragen und zusätzlich die Plandetails und die Zugriffsrechte bearbeiten.

Neue Mitarbeitende können durch die Angabe ihrer E-Mail-Adresse und das Wählen des Zugriffsrechts hinzugefugt werden. Bestätigen Sie Ihre Angaben mit 'Mitarbeitende(n) hinzufügen'

Eingeladene Mitarbeitende erhalten eine E-Mail, die sie darüber informiert, dass sie Zugriff zu Ihrem Plan erhalten haben; sofern Mitarbeitende noch nicht bei DMPonline registriert sind, erhalten sie eine Einladung zur Registrierung. Wenn die Zugriffsrechte geändert werden wird ebenfalls eine Benachrichtigungs-E-Mail versand.

"],"Collaborators":["Mitarbeitende"],"Add collaborator":["Mitarbeitende(n) hinzufügen"],"Add":["Hinzufügen"],"Permissions":["Zugriffsrechte"],"Editors can contribute to plans. Co-owners have additional rights to edit plan details and control access.":["Editoren können zu Plan beitragen. Miteigentümer haben zusätzliche Rechte um Plandetails und Zugriffsrechte bearbeiten zu können."],"Remove user access":["Mitarbeitende(n) entfernen"],"Are you sure?":["Sind Sie sicher?"],"Co-owner":["Miteigentümer"],"Read only":["Nur Lesen"],"This section is locked for editing by ":["Dieser Abschnitt ist gespert wegen Bearbeitung durch "],"Create a new plan":["Einen neuen Plan erstellen"],"

Please select from the following drop-downs so we can determine what questions and guidance should be displayed in your plan.

If you aren't responding to specific requirements from a funder or an institution, select here to write a generic DMP based on the most common themes.

":["

Bitte wählen Sie aus folgendem Drop-Down-Menü, so dass wir bestimmen können, welche Fragen und Hilfestellungen in Ihrem Plan angezeigt werden sollen.

Falls Sie nicht den spezifischen Anforderungen eines Geldgebers oder einer Institution folgen, wählen Sie hier, um einen generischen DMP zu schreiben , der auf den allgemeinsten Themen basiert.

"],"Default DMP":["Standard DMP"],"If applying for funding, select your research funder.":["Falls Sie Fördermittel beantragen, wählen Sie bitte den Förderer aus."],"Otherwise leave blank.":["Falls nicht, lassen Sie dieses Feld bitte unberührt."],"Name of funder, if applicable.":["Name des Geldgebers, falls anwendbar."],"To see institutional questions and/or guidance, select your organisation.":["Um Fragen und Hilfestellung einer bestimmten Organisation zu integrieren, wählen Sie diese bitte aus."],"You may leave blank or select a different organisation to your own.":["Sie können eine beliebige Organisation wählen, oder das Feld leer lassen."],"Tick to select any other sources of guidance you wish to see.":["Wählen Sie jede beliebige andere Quelle für Hilfestellungen."],"Configure":["Konfigurieren"],"Template Owner":["Vorlagenbesitzer"],"Identifier":["Bezeichner"],"Principal Investigator / Researcher":["Principal Investigator / Forscher"]," - ":[" - "],"Organization":["Organisation"],"Filter plans":["Filter Pläne"],"Filter":["Filter"],"No plans match '%{filter}'":[""],"No matches":["Kein Plan erfüllt '%{filter}'"],"User added to project":[""],"Invitation issued successfully.":[""],"Please enter an email address":[""],"Sharing details successfully updated.":[""],"Access removed":[""],"Project was successfully updated.":[""],"Project was successfully created.":[""],"Details successfully updated.":[""],"Choose a template":[""],"Question not answered.":["Frage nicht beantwortet."],"This document was generated by %{application_name} (http://dmponline.dcc.ac.uk)":["Dieses Dokument wurde von DMPonline (http://dmponline.dcc.ac.uk) erzeugt."],"approx. %{space_used}% of available space used (max %{num_pages} pages)":["annährend %{space_used}% des verfügbaren Platzes wird verwendet (max. %{num_pages} Seiten)"],"approx. %{space_used}% of available space used":[""],"Plan Name":["Planenname"],"Plan ID":["Planenbezeichner"],"Plan Data Contact":["Kontakt für Planen"],"Plan Description":["Beschreibung"],"Your ORCID":["Ihre ORCID"],"%{value} is not a valid format":[""],"Settings":["Einstellungen"],"Settings - My plans":["Einstellungen - Meine Pläne"],"The table below lists the available columns that can be shown on the 'My plans' list. Choose which you would like to appear.":["Die untere Tabelle listet die verfügbaren Spalten auf, welche in der Liste 'Meine Pläne' gezeigt werden können. Wählen Sie, welche erscheinen sollen."],"'name' must be included in column list.":["'Name' muss in der Liste von Spalten enthalten sein."],"Duplicate column name. Please only include each column once.":["Doppelter Spaltenname. Bitte jede Spalte nur einmal einfügen."],"Unknown column name.":["Unbekannter Spaltenname."],"The plan is incomplete.":["Der Plan ist unvollständig."],"File Name":["Dateiname"],"Reset":["Zurücksetzen"],"(Using custom PDF formatting values)":["(Verwende eigene Werte bei PDF-Formatierung)"],"(Using template PDF formatting values)":["(Verwende Vorlagenwerte bei PDF-Formatting)"],"(Using default PDF formatting values)":["(Verwende standardmäßige Werte bei PDF-Formatierung)"],"Included Elements":["Enthaltene Elemente"],"PDF Formatting":["PDF Formatierung"],"Face":["Schriftart"],"Size":["Größe"],"Font":["Schrift"],"Margin":["Rand"],"Top":["Oben"],"Bottom":["Unten"],"Left":["Links"],"Right":["Rechts"],"Maximum number of pages":["Maximale Anzahl von Seiten"],"A required setting has not been provided":["Eine benötigte Einstellung wurde nicht erbracht"],"Margin value is invalid":["Randwert ist ungültig"],"Margin cannot be negative":["Rand darf nicht negativ sein"],"Unknown margin. Can only be 'top', 'bottom', 'left' or 'right'":["Unbekannter Rand. Kann nur 'oben', 'unten', 'links' oder 'rechts' sein"],"Invalid font size":["Ungültige Schriftgröße"],"Invalid font face":["Ungültige Schriftart"],"Unknown formatting setting":["Unbekannte Formatierungseinstellung"],"Invalid maximum pages":["Ungültige maximale Anzahl von Seiten"],"This account does not have access to that plan.":[""],"Question text is empty, please enter your question.":["Question text is empty, please enter your question."],"add guidance text":["add guidance text"],"select a question":["select a question"],"select at least one theme":["select at least one theme"],"select a guidance group":["select a guidance group"],"Please only enter up to 165 characters, you have used":["Please only enter up to 165 characters, you have used"],"If you are entering an URL try to use something like http://tinyurl.com/ to make it smaller.":["If you are entering an URL try to use something like http://tinyurl.com/ to make it smaller."],"You have unsaved answers in the following sections:\\n":["You have unsaved answers in the following sections:\\n"],"Resend confirmation instructions":["Resend confirmation instructions"],"Welcome to %{application_name}":["Welcome to %{application_name}"],"Thank you for registering at %{application_name}. Please confirm your email address:":["Thank you for registering at %{application_name}. Please confirm your email address:"],"Click here to confirm your account":["Click here to confirm your account"],"(or copy":["(or copy"],"into your browser).":["into your browser)."],"A colleague has invited you to contribute to their Data Management Plan at":["A colleague has invited you to contribute to their Data Management Plan at"],"Click here to accept the invitation":["Click here to accept the invitation"],"

If you don't want to accept the invitation, please ignore this email.
Your account won't be created until you access the link above and set your password.

":["

If you don't want to accept the invitation, please ignore this email.
Your account won't be created until you access the link above and set your password.

"],"Someone has requested a link to change your":["Someone has requested a link to change your"],"password. You can do this through the link below.":["password. You can do this through the link below."],"

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

":["

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

"],"Hello":["Hello"],"Your ":["Your "]," account has been locked due to an excessive number of unsuccessful sign in attempts.":[" account has been locked due to an excessive number of unsuccessful sign in attempts."],"Click the link below to unlock your account:":["Click the link below to unlock your account:"],"Unlock my account":["Unlock my account"],"Currently waiting confirmation for: ":["Currently waiting confirmation for: "],"Resend unlock instructions":["Resend unlock instructions"],"{\"Error\":\"Bad credentials\"}":["{\"Error\":\"Bad credentials\"}"],"{\"Error\":\"Organisation does not exist\"}":["{\"Error\":\"Organisation does not exist\"}"],"{\"Error\":\"Organisation specified is not a funder\"}":["{\"Error\":\"Organisation specified is not a funder\"}"],"{\"Error\":\"Organisation has more than one template and template name unspecified or invalid\"}":["{\"Error\":\"Organisation has more than one template and template name unspecified or invalid\"}"],"{\"Error\":\"You do not have authorisation to view this endpoint\"}":["{\"Error\":\"You do not have authorisation to view this endpoint\"}"],"{\"Error\":\"You do not have authorisation to view this resource\"}":["{\"Error\":\"You do not have authorisation to view this resource\"}"],"Your account has bee connected to %{scheme}":["Ihr Konto wurde mit %{scheme}"],"We could not connect your account to %{scheme}":["Wir konnten nicht auf Ihr Konto %{scheme} verbinden"],"Your account has been disconnected from %{scheme}":["Ihr Konto wurde von %{scheme} getrennt"],"We were unable to disconnect your account from %{scheme}":["Wir waren nicht in der Lage, Ihr Konto zu trennen von %{scheme}"],"It does not look like you have setup an account with us yet. Please fill in the following information to complete your registration.":["Sie haben nicht Setup ein Konto bei uns. Bitte füllen Sie das folgende Informationen, um Ihre Registrierung abzuschließen."],"We were unable to verify your account. Please use the following form to create a new account. You will be able to link your new account afterward.":["Wir waren nicht in der Lage, Ihr Konto zu überprüfen. Bitte benutzen Sie das folgende Formular ein neues Konto zu erstellen. Sie können danach Ihr neues Konto zu verknüpfen."],"http://orcid.org/sites/default/files/images/orcid_16x16.png":["http://orcid.org/sites/default/files/images/orcid_16x16.png"],"https://orcid.org/%{id}":["https://orcid.org/%{id}"],"Create or Connect your ORCID ID":["Erstellen oder Verbinden Sie Ihren ORCID ID"],"ORCID provides a persistent digital identifier that distinguishes you from other researchers. Learn more at orcid.org":["ORCID bietet eine persistente digitale Kennung, die Sie von anderen Forschern unterscheidet. Erfahren Sie mehr unter orcid.org"],"Are you sure you want to disconnect your ORCID ID?":["Sind Sie sicher, dass Sie Ihre ORCID ID trennen möchten?"],"Disconnect your account from ORCID. You can reconnect at any time.":["Trennen Sie Ihr Konto von ORCID. Sie können jederzeit wieder an."],"Research Institute":["Research Institute"],"Digital Curation Centre":["Digital Curation Centre"],"admin":["admin"],"org_admin":["org_admin"],"user":["user"],"add_organisations":["add_organisations"],"change_org_affiliation":["change_org_affiliation"],"grant_permissions":["grant_permissions"],"modify_templates":["modify_templates"],"modify_guidance":["modify_guidance"],"use_api":["use_api"],"change_org_details":["change_org_details"],"grant_api_to_orgs":["grant_api_to_orgs"],"guidances":["guidances"],"plans":["plans"],"templates":["templates"],"statistics":["statistics"],"About %{application_name}":["Über DMPonline"],"Background":["Hintergrund"],"Latest news":["Neuigkeiten"],"

Funding bodies increasingly require their grant-holders to produce Data Management Plans(DMP), both during the bid-preparation stage and after funding has been secured. %{application_name} has been produced by the %{organisation_name} to help research teams respond to this requirement, and any expectations that their institution or others may apply.

The %{organisation_abbreviation} worked closely with research funders and universities to produce a tool that assists researchers to produce an effective data management plan (DMP) to cater for the whole lifecycle of a project, from bid-preparation stage through to completion.


How the tool works

There are a number of templates within the tool that represent the requirements of different funders and institutions. Users are asked three questions at the outset so we can determine the appropriate template to display (e.g. the ESRC template when applying for an ESRC grant). Guidance is provided to help you interpret and answer the questions. This guidance is provided by researcher funders, universities and disciplines.


Getting Started

If you have an account please sign in and start creating or editing your DMP.

If you do not have a %{application_name} account, click on 'Sign up' on the homepage.

Please visit the 'Help' page for guidance.


Additional Information

We are constantly improving the user interface and functionality of %{application_name}. If you would like to contribute with feedback and suggestions, please contact us by emailing dmponline@dcc.ac.uk. You can also report bugs and request new features directly on GitHub

":["

Fördergeber verlangen zunehmend die Erstellung von Datenmanagementplänen von den Antragstellern, bzw. Förderempfängern, sowohl in der Antragsphase als auch während der Durchführung. DMPonline wurde vom Digital Curation Centre (UK) erstellt, um es Forschenden zu ermöglichen, auf diese Anforderungen zu reagieren und dabei auch die Vorgaben ihrer Institutionen oder anderen Beteiligten zu erfüllen.

Die Entwicklung fand in Kooperation mit Forschungsförderern und Universitäten statt, um ein Werkzeug für die Erstellung von probaten Datenmanagementplänen während des gesamten Projektverlaufs anbieten zu können.

Konzept

Es gibt eine Reihe von Vorlagen innerhalb der Applikation, die den Anforderungen der verschiedenen Förderer oder Institutionen entsprechen. Die Nutzer beantworten zu Begin der Erstellung eines Plans drei Fragen, um die Anzeige der geeigneten Vorlage zu erlauben (z.B. die ESRC-Vorlage bei einer ESRC-Förderung). Die Applikation gibt Hilfestellungen zum Verstehen und Beantworten der Fragen; diese werden von Forschenden, Förderern, Universitäten und den verschiedenen Disziplinen bereitgestellt.

Erste Schritte

Falls sie einen Zugang haben, melden sie sich an und beginnen ihren Datenmanagementplan zu erstellen.

Falls sie keinen Zugang zu DMPonline haben, wählen sie 'Registrieren' auf der Startseite aus.

Besuchen sie die 'Hilfe'-Seite für eine Anleitung.

Weitere Informationen

Die deutsche Version von DMPonline wird in Kooperation mit dem Digital Curation Centre (UK) und der Bibliothek der Universität von Alberta (CA) im Rechenzentrum der Christian-Albrechts-Universität gepflegt.

Die Benutzungsschnittstelle und die Funktionalität von DMPonline wird kontinuierlich verbessert. Falls sie gerne Rückmeldung geben oder Verbesserungsvorschläge machen möchten, freuen wir uns, wenn sie uns eine Nachricht an vfu@rz.uni-kiel.de schicken.

"],"

%{application_name} stories from the %{organisation_abbreviation} website


":["

Geschichten zu DMPonline auf der DCC-Seite


"],"On %{application_name}":["DMPonline"],"On data management planning":["Datenmanagement-Planung"],"

Useful resources on Data Management Planning

Example Data Management Plans

  • Technical plan submitted to the AHRC [PDF, 7 pages]
    A DMP submitted by a researcher from the University of Bristol, also including comments from the reviewers
  • Two social science DMPs [PDF, 7 pages]
    Example plans from researchers at the University of Leeds, shared as part of the Leeds RoaDMaP training materials
  • Health sciences DMP [PDF, 11 pages]
    Example DMP produced by the DATUM for Health RDM training project
  • Psychology DMP [PDF, 11 pages]
    A very detailed, fictional psychology DMP produced by the DMTpsych RDM training project, based on a seminal psychology experiment
  • UCSD Example Data Management Plans [webpage]
    Over 20 example plans submitted to the National Science Foundation (NSF) in the United States by academics at UC San Diego
  • Colorado School of Mines examples [webpage]
    A variety of US example DMPs from Mines and elsewhere
  • NSF data management plans [webpage]
    5 DMPs submitted to the NSF, shared by the DataOne initiative
  • Biology and chemistry DMPs [webpage]
    Three example DMPs from the USA shared by NECDMC, an instructional tool for teaching RDM to undergraduates, graduate students, and researchers in the health sciences, sciences and engineering.

Useful guides on Research Data Management in general

  • Managing and Sharing Data: best practice for researchers [PDF, 36 pages]
    A guide by the UK Data Service covering a range of topics including data formats, documentaion, ethics, copyright and data sharing.
  • How to Cite Datasets and Link to Publications [PDF, 12 pages]
    A guide by the Digital Curation Centre giving practical guidelines on how to cite data and the different tools and infrastructure that can be used to support data citation.
  • How to License Research Data [PDF, 16 pages]
    A guide by the Digital Curation Centre that outlines different types of licenses, the pros and cons of each and how they can be applied.
  • How to Appraise and Select Research Data for Curation [PDF, 8 pages]
    A guide by ANDS and the Digital Curation Centre on how to select which data to keep for long-term preservation, sharing and reuse. The guide puts forward several criteria to aid selection decisions.
  • Research Data MANTRA [online resource]
    An online training course designed for researchers or others planning to manage digital data as part of the research process. The course includes a number of software practicals on using SPSS, R, ArcGIS and NVivo.
":["

Datenmanagementplan-Anleitung am Beispiel von Horizon 2020

  • Datenmanagementplan-Anleitung (PDF)
    Der Computer- und Medienservice der Humboldt-Universität zu Berlin hat eine Anleitung zur Erstellung eines Datenmanagementplans (DMP) in Horizon 2020 mit DMPonline bereit gestellt.

Useful resources on Data Management Planning

Example Data Management Plans

Useful guides on Research Data Management in general

  • Managing and Sharing Data: best practice for researchers [PDF, 36 pages]
    A guide by the UK Data Service covering a range of topics including data formats, documentaion, ethics, copyright and data sharing.
  • How to Cite Datasets and Link to Publications [PDF, 12 pages]
    A guide by the Digital Curation Centre giving practical guidelines on how to cite data and the different tools and infrastructure that can be used to support data citation.
  • How to License Research Data [PDF, 16 pages]
    A guide by the Digital Curation Centre that outlines different types of licenses, the pros and cons of each and how they can be applied.
  • How to Appraise and Select Research Data for Curation [PDF, 8 pages]
    A guide by ANDS and the DCC on how to select which data to keep for long-term preservation, sharing and reuse. The guide puts forward several criteria to aid selection decisions.
  • Research Data MANTRA [online resource]
    An online training course designed for researchers or others planning to manage digital data as part of the research process. The course includes a number of software practicals on using SPSS, R, ArcGIS and NVivo.
"],"

When you login to %{application_name} you will be directed to the 'My plans' page. From here you can edit, share, export or delete any of your plans. You will also see plans that have been shared with you by others.

Create a plan

To create a plan, click the 'Create plan' button from the 'My plans' page or the top menu. Select options from the drop-down menus and tickboxes to determine what questions and guidance you should be presented with. Confirm your selection by clicking 'Yes, create plan'

Write your plan

The tabbed interface allows you to navigate through different functions when editing your plan.

  • - 'Plan details' includes basic administrative details, tells you what sets of questions and guidance your plan is based on and gives you an overview to the questions that you will be asked.
  • - The following tab(s) present the questions to answer. There may be more than one tab if your funder or university asks different sets of questions at different stages e.g. at grant application and post-award.
  • - The 'Share' tab allows you to invite others to read or contribute to your plan.
  • - The 'Export' tab allows you to download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application.

When viewing any of the question tabs, you will see the different sections of your plan displayed. Click into these in turn to answer the questions. You can format your responses using the text editing buttons.

Guidance is displayed in the right-hand panel. Click the '+' symbol to view this.

Remember to 'save' your responses before moving on.

Share plans

Insert the email address of any collaborators you would like to invite to read or edit your plan. Set the level of permissions you would like to grant them via the drop-down options and click to 'Add collaborator'

Export plans

From here you can download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application. Choose what format you would like to view/download your plan in and click to export. When you login to %{application_name} you will be directed to the 'My plans' page. From here you can edit, share, export or delete any of your plans. You will also see plans that have been shared with you by others.

":["

Nach der Anmeldung in DMPonline werden sie zur 'Meine Pläne'-Seite weitergeleitet. Dies ist der Startpunkt, um ihre Pläne zu Edieren, zu Teilen oder zu löschen. Sie sehen außerdem, welche Pläne sie mit anderen geteilt haben.

Pläne erstellen

Um einen Plan zu erstellen, klicken sie auf den 'Plan erstellen'-Knopf auf der 'Meine Pläne'-Seite, oder im Hauptmenü. Wählen sie die passenden Optionen in den Ausklappmenüs und Auswahlboxen aus, um zu bestimmen, welche Fragen und Hilfestellungen ihnen angezeigt werden sollen. Bestätigen sie ihre Auswahl durch das Klicken von 'Ja, Plan erstellen'.

Pläne schreiben

Die Reiter der Benutzerschnittstelle erlauben ihnen durch die verschiedenen Bereiche zu navigieren wenn sie ihren Plan bearbeiten.

  • - 'Plandetails' enthält die grundliegenden administrativen Details, listet die Fragen und Hilfestellungen, auf denen ihr Plan basiert und gibt eine Übersicht über die zu beantwortenden Fragen
  • - die folgenden Reiter repräsentieren die zu beantwortenden Fragen. Sollten ihr Förderer oder ihre Institution verschiedene Fragen zu verschiedenen Stufen des Plans beantwortet wissen möchten, können hier mehrere Reiter auftauchen
  • - 'Teilen' enthält Details zum Einladen von anderen Personen zum Lesen oder zur aktiven Mitabeit am Plan
  • - 'Export' enthält Möglichkeiten zum Export des Plans in verschiedene Dateiformate. Dies kann nützlich sein, wenn sie ihren Plan im Rahmen eines Antrags einreichen müssen

In den Fragereitern sind die verschiedenen Abschnitte ihres Plans dargestellt, die sich durch anklicken zur Bearbeitung auswählen lassen. Die Antworttexte können mit den Textbearbeitungsknöpfen formatiert werden.

Hilfestellungen werden rechts von den Fragen durch klicken des '+'-Symbols angezeigt.

Bitte vergessen sie nicht ihre Antworten zu speichern, bevor sie die Seite verlassen.

Pläne teilen

Geben sie die E-Mail-Adresse der Person an, die ihren Plan lesen oder bearbeiten können sollen. Mithilfe des Ausklappmenüs können sie die Befugnisse, die die Person im Bezug auf den Plan haben soll, auswählen. Klicken sie abschließend auf 'Mitarbeitende(n) hinzufügen'.

Pläne exportieren

Wählen sie das Dateiformat aus, in das sie ihren Plan exportieren möchten und klicken sie 'Export'. Unterhalb des Dialogs können sie durch klicken auf das '+'-Symbol detaillierte Einstellungen zum Export vornehmen.

"],"Contact us":["Kontakt"],"

%{application_name} is provided by the %{organisation_name}. You can find out more about us on our website. If you would like to contact us about %{application_name}, please enter your query in the form below or email dmponline@dcc.ac.uk.

":["

DMP Builder is provided by the University of Alberta Libraries. You can find out more about us on our Research Data Management page. If you would like to contact us about DMP Builder, please insert your query into the webform below or email data@ualberta.ca.

Contact Us

"],"

If you have a feature request or think you have found a bug, please check out the list of issues on GitHub. If your issue isn't listed there, please add it; if it is, please add a comment if you have more information or just to let us know how important it is to you. This will help us to prioritise future developments.

":[""],"
  • %{organisation_name}
  • %{organisation_address_line1}
  • %{organisation_address_line2}
  • %{organisation_address_line3}
  • %{organisation_address_line4}
  • %{organisation_address_country}

CDL Helpline: %{organisation_telephone}

Email %{organisation_email}

":["
  • %{organisation_name}
  • %{organisation_address_line1}
  • %{organisation_address_line2}
  • %{organisation_address_line3}
  • %{organisation_address_line4}
  • %{organisation_address_country}

CDL Helpline: %{organisation_telephone}

Email %{organisation_email}

"],"Releases":[""],"Get involved":[""],"

The %{organisation_abbreviation} are now collaborating to develop a joint codebase for Data Management Planning called DMP Roadmap. Both of our tools will be delivered using this in the future. We've agreed what features need to be included and are planning a few sprints to deliver these. The initial release will include all of the main priorities we already had flagged, including:

  • - APIs to create plans, extract guidance and generate statistics from %{application_name}
  • - Multi-lingual support so foreign language versions can be presented
  • - Locales to provide a refined set of content for particular countries or other contexts
  • - A lifecycle to indicate the status of DMPs and allow institutional access to plans
  • - Support for reviewing Data Management Plans

%{application_name} has an active and growing user base, and we are grateful to the members who suggest ideas for new and improved features. If you would like to help shape our future plans, please join the user group. More information on how you can engage with us is available under the 'Get involved' tab.


Current release

The current version of %{application_name} is %{application_version}.

The code is available on GitHub


":[""],"

%{application_name} is developed and maintained by the UK %{organisation_name}. We’re a small team, and are happy to collaborate with others. There are various ways you can get involved:

Join the user group

We run a listserv for the %{application_name} user group that you can request to join. We also host periodic meetings to consult on our plans. Being part of the user group gives you the opportunity to be informed about future developments and to provide feedback to help shape our plans.

Our user group sessions are usually focused around a certain topic (e.g. fleshing out use cases for an API) so invites are sent based on your areas of expertise. It is helpful for us to know your role and interests to invite relevant people to each session. Please introduce yourself on the list and share your ideas.

Notes from previous user group sessions are provided below:

Please let us know your interests and share your ideas for future developments via the mailing list so the community as a whole can feedback on them.


Customise %{application_name}

%{application_name} can be customised by institutions and disciplines. You can add templates for users in your organisation and tailored guidance that explains local support and services. Example answers can also be offered to help users understand what to write in a Data Management Plan. To do this you’ll need to request admin access, so please email us on dmponline@dcc.ac.uk.

Futher guidance on customising %{application_name} is available on the %{application_name} website.


Contribute to the code

%{application_name} is a Ruby on Rails application. The source code is made available under an MIT License. This permits others to reuse the code freely, but obligates you to share the source code for any extensions in the same way. Please inform us if you install an instance of %{application_name} and offer your contributions back to the community.

If you install an instance of %{application_name} we require that you credit the %{organisation_abbreviation} as originators of the tool. We recommend that the acknowledgement takes the form of the %{application_name} logo with a link back to the %{organisation_abbreviation}-hosted version of the tool.

We are willing to work with external developers to add new features to the tool. We are also open to delivering new features on a chargeable basis. If there are extensions you would like to see prioritised and have resource to support additional developer effort, please contact us on dmponline@dcc.ac.uk to negotiate terms.

The code is available on GitHub

Support our work

We are impressed by the uptake of %{application_name} both in the UK and internationally and are really keen to hear how you are using the tool and promoting it in your context. We are aware that others have run training courses, developed guidance materials and advocated use of the tool. Please notify us of this as it helps to show impact.

We are currently investigating options for revenue generation. This will help us serve the increased demand more effectively and safeguard the long-term sustainability of %{application_name}. Plans will be released for consultation soon but we also welcome your suggestions on how best to support our work.

":[""],"Terms of use":["Nutzungsbedingungen"],"

The %{organisation_name} ('%{organisation_abbreviation}') are consortia supported by %{legal_entity}. Our primary constituency is the research community, particularly the higher and further education sector.

%{application_name}

%{application_name} ('the tool', 'the system') is a tool developed by the %{organisation_abbreviation} as a shared resource for the research community. It is hosted by %{legal_entity}.

Your personal details

In order to help identify and administer your account with %{application_name}, we need to store your email address. We may also use it to contact you to obtain feedback on your use of the tool, or to inform you of the latest developments or releases. The information may be transferred between the %{organisation_abbreviation} partner institutions but only for legitimate %{organisation_abbreviation} purposes. We will not sell, rent or trade any personal information you provide to us.

Privacy policy

The information you enter into this system can be seen by you, people you have chosen to share access with, and - solely for the purposes of maintaining the service - system administrators at %{legal_entity}. We compile anonymised, automated and aggregated information from plans, but we will not directly access, make use of, or share your content with anyone else without your permission. Authorised officers of your home institution may access your plans for specific purposes - for example, to track compliance with funder/institutional requirements or to calculate storage requirements.

Freedom of Information

%{legal_entity} holds your plans on your behalf, but they are your property and responsibility. Any FOI applicants will be referred back to your home institution.

Passwords

Your password is stored in encrypted form and cannot be retrieved. If forgotten it has to be reset.

Cookies

Please note that %{application_name} uses Cookies. Further information about Cookies and how we use them is available on the main DCC website.


Use of the tool indicates that you understand and agree to these terms and conditions.

":["

Dies ist eine Testinstallation von DMPonline. DMPonline wird vom Digital Curation Centre (DCC) entwickelt und gepflegt und steht unter einer AGPL Lizenz als Open Source Software zur Verfügung.

Die Testinstallation dient lediglich der Weiterentwicklung und Evaluation der Software und ist nicht für den Produktiveinsatz gedacht.

Zu Ihrer persönlichen Information

Diese Testinstallation wird in absehbarer Zeit wieder abgeschaltet werden. Die Daten, die in dieser Installation erstellt wurden, werden bei der Abschaltung verloren gehen. Wichtige Daten sollten nicht ausschließlich in der Testinstallation gespeichert werden.

"],"Public DMPs are plans created using the DMPTool and shared publicly by their owners. They are not vetted for quality, completeness, or adherence to funder guidelines.":["Öffentliche DMPs sind Pläne, die mit dem DMPTool erstellt und öffentlich von ihren Eigentümern veröffentlicht werden. Sie werden nicht auf Qualität, Vollständigkeit oder die Einhaltung der funder Richtlinien überprüft."],"There are no public DMPs.":["Es wurden noch keine DMPs veröffentlicht."],"ago":[""],"from now":[""],"less than a minute":[""],"about a minute":[""],"%{d} minutes":[""],"about an hour":[""],"about %{d} hours":[""],"a day":[""],"%{d} days":[""],"about a month":[""],"%{d} months":[""],"about a year":[""],"%{d} years":[""],"":{"lang":"de","domain":"app","plural_forms":null}}}}; \ No newline at end of file diff --git a/lib/assets/javascripts/locale/en_GB/app.js b/lib/assets/javascripts/locale/en_GB/app.js new file mode 100644 index 0000000..9c8774b --- /dev/null +++ b/lib/assets/javascripts/locale/en_GB/app.js @@ -0,0 +1 @@ +var locales = locales || {}; locales['en_GB'] = {"domain":"app","locale_data":{"app":{"%d-%m-%Y":["%d-%m-%Y"],"%d/%m/%Y":["%d/%m/%Y"],"%d %B, %Y":["%d %B, %Y"],"%a, %b %d %Y %H:%M:%S %z":["%a, %b %d %Y %H:%M:%S %z"],"%d %b %H:%M":["%d %b %H:%M"],"%d/%m/%Y %H:%M":["%d/%m/%Y %H:%M"],"%B %d, %Y %H:%M":["%B %d, %Y %H:%M"],"am":["am"],"pm":["pm"],"%{application_name}":["%{application_name}"],"DMP title":["DMP title"],"%{organisation_name}":["%{organisation_name}"],"Welcome.":["Welcome."],"

%{application_name} has been jointly developed by the %{organisation_name} to help you write data management plans.

":["

%{application_name} has been jointly developed by the %{organisation_name} to help you write data management plans.

"],"Screencast on how to use %{application_name}":["Screencast on how to use %{application_name}"],"Your browser does not support the video tag.":["Your browser does not support the video tag."],"You need to sign in or sign up before continuing.":["You need to sign in or sign up before continuing."],"Language":["Language"],"Language name":["Language name"],"Language abbreviation":["Language abbreviation"],"Is default language":["Is default language"],"Yes":["Yes"],"No":["No"],"Organisation name":["Organisation name"],"Organisation":["Organisation"],"Organisations":["Organisations"],"Organisation type":["Organisation type"],"Parent organisation":["Parent organisation"],"Organisation was successfully created.":["Organisation was successfully created."],"Organisation was successfully updated.":["Organisation was successfully updated."],"There seems to be a problem with your logo. Please upload it again.":["There seems to be a problem with your logo. Please upload it again."],"Plans":["Plans"],"Title":["Title"],"Description":["Description"],"Guidance group":["Guidance group"],"No guidance group":["No guidance group"],"Guidance":["Guidance"],"guidance":["guidance"],"guidance on":["guidance on"],"Name":["Name"],"Abbreviation":["Abbreviation"],"Question":["Question"],"Question Format":["Question Format"],"Questions":["Questions"],"Template title":["Template title"],"Section title":["Section title"],"Formatting":["Formatting"],"Max Pages":["Max Pages"],"Phase title":["Phase title"],"Version title":["Version title"],"Username":["Username"],"First name":["First name"],"Surname":["Surname"],"User":["User"],"User was successfully created.":["User was successfully created."],"User role on an Organisation":["User role on an Organisation"],"User role type":["User role type"],"User role type was successfully created.":["User role type was successfully created."],"User role type was successfully updated.":["User role type was successfully updated."],"User role":["User role"],"Role":["Role"],"User status":["User status"],"User status was successfully created.":["User status was successfully created."],"User status was successfully updated.":["User status was successfully updated."],"User type":["User type"],"User type was successfully created.":["User type was successfully created."],"Last logged in":["Last logged in"],"Version number":["Version number"],"Details":["Details"],"Phases":["Phases"],"Phase":["Phase"],"Version":["Version"],"Versions":["Versions"],"Sections":["Sections"],"Section":["Section"],"Multiple question options":["Multiple question options"],"Templates":["Templates"],"Template":["Template"],"Themes":["Themes"],"Theme":["Theme"],"Theme was successfully created.":["Theme was successfully created."],"Theme was successfully updated.":["Theme was successfully updated."],"Suggested answer":["Suggested answer"],"Suggested answers":["Suggested answers"],"old template field":["old template field"],"old theme field":["old theme field"],"Token Permission Type":["Token Permission Type"],"Permission Description":["Permission Description"],"Token Permission":["Token Permission"],"Organisation Token Permission":["Organisation Token Permission"],"Settings updated successfully":["Settings updated successfully"],"Choose all themes that apply.":["Choose all themes that apply."],"All themes":["All themes"],"Selected themes":["Selected themes"],"Choose all templates that apply.":["Choose all templates that apply."],"All templates":["All templates"],"Selected templates":["Selected templates"],"Select question format":["Select question format"],"No template":["No template"],"No phase":["No phase"],"No version":["No version"],"No section":["No section"],"Organisation language":["Organisation language"],"Please select your default language from the dropdown list. This will be displayed to users in your organisation, unless they have a different preference or choose another language from the dropdown options on the homepage. If your language is not available and you wish to provide a translation, please contact us.":["Please select your default language from the dropdown list. This will be displayed to users in your organisation, unless they have a different preference or choose another language from the dropdown options on the homepage. If your language is not available and you wish to provide a translation, please contact us."],"Admin area":["Admin area"],"Admin Details":["Admin Details"],"Users":["Users"],"Organisation details":["Organisation details"],"These are the basic details for your organisation.":["These are the basic details for your organisation."],"This is what displays as a label on your guidance, e.g. 'Glasgow guidance on Metadata'. It's best to use an abbreviation or short name.":["This is what displays as a label on your guidance, e.g. 'Glasgow guidance on Metadata'. It's best to use an abbreviation or short name."],"Contact Email":["Contact Email"],"The email address of an administrator at your organisation. Your users will use this address if they have questions.":["The email address of an administrator at your organisation. Your users will use this address if they have questions."],"List of users":["List of users"],"Email address":["Email address"],"How many plans?":["How many plans?"],"Privileges":["Privileges"],"Below is a list of users registered for your organisation. You can sort the data by each field.":["Below is a list of users registered for your organisation. You can sort the data by each field."],"Logo Upload Failed.":["Logo Upload Failed."],"Logo":["Logo"],"Upload a new logo file":["Upload a new logo file"],"If you decide to use the default DMPRoadmap logo, please check this box to remove your current logo.":["If you decide to use the default DMPRoadmap logo, please check this box to remove your current logo."],"Top banner text":["Top banner text"],"Website":["Website"],"Main organisation":["Main organisation"],"Last updated":["Last updated"],"
Please enter information describing your organisation.
":["
Please enter information describing your organisation.
"],"
Please enter information you would like your users to see while sign in. Do not enter more than 165 characteres.
":["
Please enter information you would like your users to see while sign in. Do not enter more than 165 characteres.
"],"
Enter a description that helps you to differentiate between templates e.g. if you have ones for different audiences.
":["
Enter a description that helps you to differentiate between templates e.g. if you have ones for different audiences.
"],"Please enter an abbreviation to your organisation's name.":["Please enter an abbreviation to your organisation's name."],"Please enter a valid web address.":["Please enter a valid web address."],"Please enter your organisation's name.":["Please enter your organisation's name."],"Add option":["Add option"],"Add question":["Add question"],"Add section":["Add section"],"Remove":["Remove"],"Order":["Order"],"Text":["Text"],"Default":["Default"],"User org role was successfully created.":["User org role was successfully created."],"User org role was successfully updated.":["User org role was successfully updated."],"API Privleges?":["API Privleges?"],"Edit User Privileges":["Edit User Privileges"],"Guidance list":["Guidance list"],"Should this guidance apply:":["Should this guidance apply:"],"by themes":["by themes"],"by question":["by question"],"Published":["Published"],"Created":["Created"],"Actions":["Actions"],"Add guidance":["Add guidance"],"Guidance was successfully created.":["Guidance was successfully created."],"Guidance was successfully updated.":["Guidance was successfully updated."],"
Please enter guidance text for this theme.
":["
Please enter guidance text for this theme.
"],"New guidance":["New guidance"],"View all guidance":["View all guidance"],"Enter your guidance here. You can include links where needed.":["Enter your guidance here. You can include links where needed."],"Decide whether your guidance should display by themes (default) or if it only pertains to a specific question in one of the funder templates.":["Decide whether your guidance should display by themes (default) or if it only pertains to a specific question in one of the funder templates."],"Select which theme(s) this guidance relates to.":["Select which theme(s) this guidance relates to."],"Select the relevant template, phase, version, section and question from the following dropdown options to define which specific question this guidance should display on.":["Select the relevant template, phase, version, section and question from the following dropdown options to define which specific question this guidance should display on."],"Select which group this guidance relates to.":["Select which group this guidance relates to."],"Check this box when you are ready for this guidance to appear on user's plans.":["Check this box when you are ready for this guidance to appear on user's plans."],"

You can write pieces of guidance to be displayed by theme (e.g. generic guidance on storage and backup that should present across the board) or you can write guidance for specific questions. Writing generic guidance by theme saves you time and effort as your advice will be automatically displayed across all templates rather than having to write guidance to accompany each.

You will usually want your guidance to display on all templates, however there may be cases where you only want it to show for specific funders e.g. if you have specific instructions for applicants to BBSRC for example. This can be set too if needed.

":["

You can write pieces of guidance to be displayed by theme (e.g. generic guidance on storage and backup that should present across the board) or you can write guidance for specific questions. Writing generic guidance by theme saves you time and effort as your advice will be automatically displayed across all templates rather than having to write guidance to accompany each.

You will usually want your guidance to display on all templates, however there may be cases where you only want it to show for specific funders e.g. if you have specific instructions for applicants to BBSRC for example. This can be set too if needed.

"],"You are about to delete '%{guidance_summary}'. Are you sure?":["You are about to delete '%{guidance_summary}'. Are you sure?"],"Add guidance group":["Add guidance group"],"Guidance group list":["Guidance group list"],"Optional subset":["Optional subset"],"e.g. School/ Department":["e.g. School/ Department"],"Please enter the group title":["Please enter the group title"],"If the guidance is only meant for a subset of users e.g. those in a specific college or institute, check this box. Users will be able to select to display this subset guidance when answering questions in the 'create plan' wizard.":["If the guidance is only meant for a subset of users e.g. those in a specific college or institute, check this box. Users will be able to select to display this subset guidance when answering questions in the 'create plan' wizard."],"Select which templates you want the guidance to display on. This will usually be all templates.":["Select which templates you want the guidance to display on. This will usually be all templates."],"Add an appropriate name for your guidance group e.g. Glasgow guidance. This name will be used to tell the end user where the guidance has come from e.g. 'Glasgow Guidance on Metadata'":["Add an appropriate name for your guidance group e.g. Glasgow guidance. This name will be used to tell the end user where the guidance has come from e.g. 'Glasgow Guidance on Metadata'"],"

First create a guidance group. This could be institution wide or a subset e.g. a particular College / School, Institute or department. When you create guidance you'll be asked to assign it to a guidance group.

":["

First create a guidance group. This could be institution wide or a subset e.g. a particular College / School, Institute or department. When you create guidance you'll be asked to assign it to a guidance group.

"],"You are about to delete '%{guidance_group_name}'. This will affect guidance. Are you sure?":["You are about to delete '%{guidance_group_name}'. This will affect guidance. Are you sure?"],"Guidance group was successfully created.":["Guidance group was successfully created."],"Guidance group was successfully updated.":["Guidance group was successfully updated."],"Guidance group was successfully deleted.":["Guidance group was successfully deleted."],"Template History":["Template History"],"Create a template":["Create a template"],"New template":["New template"],"Template details":["Template details"],"Edit template details":["Edit template details"],"View all templates":["View all templates"],"Funders templates":["Funders templates"],"Please enter a title for your template.":["Please enter a title for your template."],"Please enter section title":["Please enter section title"],"
Please enter template description for this theme.
":["
Please enter template description for this theme.
"],"

If you wish to add an institutional template for a Data Management Plan, use the 'create template' button. You can create more than one template if desired e.g. one for researchers and one for PhD students.

Your template will be presented to users within your institution when no funder templates apply. If you want to add questions to funder templates use the 'customise template' options below.

":["

If you wish to add an institutional template for a Data Management Plan, use the 'create template' button. You can create more than one template if desired e.g. one for researchers and one for PhD students.

Your template will be presented to users within your institution when no funder templates apply. If you want to add questions to funder templates use the 'customise template' options below.

"],"

To create a new template, first enter a title and description. Once you have saved this you will be presented with options to add one or more phases.

":["

To create a new template, first enter a title and description. Once you have saved this you will be presented with options to add one or more phases.

"],"

Here you can view previously published versions of your template. These can no longer be modified.

":["

Here you can view previously published versions of your template. These can no longer be modified.

"],"Enter a description that helps you to differentiate between templates e.g. if you have ones for different audiences":["Enter a description that helps you to differentiate between templates e.g. if you have ones for different audiences"],"Own templates":["Own templates"],"Add new phase +":["Add new phase +"],"View phase":["View phase"],"Edit phase":["Edit phase"],"Back to edit view":["Back to edit view"],"Edit phase details":["Edit phase details"],"Phase details":["Phase details"],"Order of display":["Order of display"],"

Here you set the title that users will see. If you intend to have multiple phases for you DMP, this should be clear in the title and description.

":["

Here you set the title that users will see. If you intend to have multiple phases for you DMP, this should be clear in the title and description.

"],"Enter a title for the phase e.g. intial DMP, full DMP... This is what users will see in the tabs when completing a plan. If you only have one phase, call it something generic e.g. Glasgow DMP":["Enter a title for the phase e.g. intial DMP, full DMP... This is what users will see in the tabs when completing a plan. If you only have one phase, call it something generic e.g. Glasgow DMP"],"This allows you to order the phases of your template.":["This allows you to order the phases of your template."],"Enter a basic description. This will be presented to users on the 'Admin Plan' tab, above the summary of the sections and questions which they will be asked to answer.":["Enter a basic description. This will be presented to users on the 'Admin Plan' tab, above the summary of the sections and questions which they will be asked to answer."],"You are about to delete '%{phase_title}'. This will affect versions, sections and questions linked to this phase. Are you sure?":["You are about to delete '%{phase_title}'. This will affect versions, sections and questions linked to this phase. Are you sure?"],"When you create a new phase for your template, a version will automatically be created. Once you complete the form below you will be provided with options to create sections and questions.":["When you create a new phase for your template, a version will automatically be created. Once you complete the form below you will be provided with options to create sections and questions."],"Version details":["Version details"],"New section title":["New section title"],"

Enter a basic description. This could be a summary of what is covered in the section or instructions on how to answer. This text will be displayed in the coloured banner once a section is opened to edit.
":["
Enter a basic description. This could be a summary of what is covered in the section or instructions on how to answer. This text will be displayed in the coloured banner once a section is opened to edit.
"],"This allows you to order sections.":["This allows you to order sections."],"Created at":["Created at"],"Please ensure you have created at least one phase with a published version.":["Please ensure you have created at least one phase with a published version."],"Customise":["Customise"],"Customised":["Customised"],"Edit customisation":["Edit customisation"],"Update Customisation":["Update Customisation"],"Information was successfully created.":["Information was successfully created."],"Information was successfully updated.":["Information was successfully updated."],"Information was successfully deleted.":["Information was successfully deleted."],"Published templates cannot be edited.":["Published templates cannot be edited."],"You are about to delete '%{section_title}'. This will affect questions linked to this section. Are you sure?":["You are about to delete '%{section_title}'. This will affect questions linked to this section. Are you sure?"],"Yes [Unpublished Changes]":["Yes [Unpublished Changes]"],"Yes [Original Template Has Changed]":["Yes [Original Template Has Changed]"],"Make big changes":["Make big changes"],"Make small changes":["Make small changes"],"Edit":["Edit"],"A first version is created automatically. If you want to make major changes to published versions later (e.g. add section or questions) please create a new version. If you only want to fix typos or make small changes that do not alter meanings, edit the current version.":["A first version is created automatically. If you want to make major changes to published versions later (e.g. add section or questions) please create a new version. If you only want to fix typos or make small changes that do not alter meanings, edit the current version."],"Enter a basic description as an internal reference to describe the difference between versions":["Enter a basic description as an internal reference to describe the difference between versions"],"You are about to delete '%{version_title}'. This will affect sections and questions linked to this version. Are you sure?":["You are about to delete '%{version_title}'. This will affect sections and questions linked to this version. Are you sure?"],"Edit alert":["Edit alert"],"Please consider the kind of changes you are about to make as this plan is already published and might be in use":["Please consider the kind of changes you are about to make as this plan is already published and might be in use"],"Question text":["Question text"],"Question number":["Question number"],"Edit question":["Edit question"],"Delete question":["Delete question"],"Answer format":["Answer format"],"Display additional comment area.":["Display additional comment area."],"Additional comment area will be displayed.":["Additional comment area will be displayed."],"No additional comment area will be displayed.":["No additional comment area will be displayed."],"Example of answer":["Example of answer"],"You can add an example or suggested answer to help users respond. These will be presented above the answer box and can be copied/ pasted.":["You can add an example or suggested answer to help users respond. These will be presented above the answer box and can be copied/ pasted."],"Suggested answer/ Example":["Suggested answer/ Example"],"Add suggested answer/ example":["Add suggested answer/ example"],"Edit suggested answer/ example":["Edit suggested answer/ example"],"You are about to delete a suggested answer/ example for '%{question_text}'. Are you sure?":["You are about to delete a suggested answer/ example for '%{question_text}'. Are you sure?"],"Default value":["Default value"],"This allows you to order questions within a section.":["This allows you to order questions within a section."],"You can choose from:
  • - text area (large box for paragraphs);
  • - text field (for a short answer);
  • - checkboxes where options are presented in a list and multiple values can be selected;
  • - radio buttons where options are presented in a list but only one can be selected;
  • - dropdown like this box - only one option can be selected;
  • - multiple select box allows users to select several options from a scrollable list, using the CTRL key;
":["You can choose from:
  • - text area (large box for paragraphs);
  • - text field (for a short answer);
  • - checkboxes where options are presented in a list and multiple values can be selected;
  • - radio buttons where options are presented in a list but only one can be selected;
  • - dropdown like this box - only one option can be selected;
  • - multiple select box allows users to select several options from a scrollable list, using the CTRL key;
"],"Anything you enter here will display in the answer box. If you want an answer in a certain format (e.g. tables), you can enter that style here.":["Anything you enter here will display in the answer box. If you want an answer in a certain format (e.g. tables), you can enter that style here."],"

Select themes that are relevant to this question.

This allows your generic institution-level guidance to be drawn in, as well as that from other sources e.g. the %{organisation_abbreviation} or any Schools/Departments that you provide guidance for.

You can select multiple themes by using the CTRL button.

":["

Select themes that are relevant to this question.

This allows your generic institution-level guidance to be drawn in, as well as that from other sources e.g. the %{organisation_abbreviation} or any Schools/Departments that you provide guidance for.

You can select multiple themes by using the CTRL button.

"],"Default answer":["Default answer"],"Enter specific guidance to accompany this question. If you have guidance by themes too, this will be pulled in based on your selections below so it's best not to duplicate too much text.":["Enter specific guidance to accompany this question. If you have guidance by themes too, this will be pulled in based on your selections below so it's best not to duplicate too much text."],"You are about to delete '%{question_text}'. Are you sure?":["You are about to delete '%{question_text}'. Are you sure?"],"Enter any options that you wish to display. If you want to pre-set one option as selected, check the default box.":["Enter any options that you wish to display. If you want to pre-set one option as selected, check the default box."],"Home":["Home"],"Return to the home page":["Return to the home page"],"Super admin area":["Super admin area"],"Edit profile":["Edit profile"],"View plans":["View plans"],"Create plan":["Create plan"],"About":["About"],"Future plans":["Future plans"],"Help":["Help"],"Public DMPs":["Public DMPs"],"Contact":["Contact"],"The %{organisation_abbreviation} is funded by":["The %{organisation_abbreviation} is funded by"],"format":["format"],"Change language":["Change language"],"Sign in":["Sign in"],"Sign out":["Sign out"],"Sign up":["Sign up"],"New to %{application_name}? Sign up today.":["New to %{application_name}? Sign up today."],"Signed in as ":["Signed in as "],"Or, sign in with your institutional credentials":["Or, sign in with your institutional credentials"]," (UK users only)":[" (UK users only)"],"Email":["Email"],"Subject":["Subject"],"Message":["Message"],"You must enter a valid email address.":["You must enter a valid email address."],"

Please note that your email address is used as your username. If you change this, remember to use your new email address on sign in.

":["

Please note that your email address is used as your username. If you change this, remember to use your new email address on sign in.

"],"You can edit any of the details below.":["You can edit any of the details below."],"Remember me":["Remember me"],"My organisation isn't listed.":["My organisation isn't listed."],"Password":["Password"],"Current password":["Current password"],"New password":["New password"],"Password confirmation":["Password confirmation"],"Change your password":["Change your password"],"Forgot your password?":["Forgot your password?"],"Your password must contain at least 8 characters.":["Your password must contain at least 8 characters."],"This must match what you entered in the previous field.":["This must match what you entered in the previous field."],"Didn't receive confirmation instructions?":["Didn't receive confirmation instructions?"],"Didn't receive unlock instructions?":["Didn't receive unlock instructions?"],"Reset password instructions":["Reset password instructions"],"If you would like to change your password please complete the following fields.":["If you would like to change your password please complete the following fields."]," I accept the terms and conditions *":[" I accept the terms and conditions *"],"You must accept the terms and conditions to register.":["You must accept the terms and conditions to register."],"That email address is already registered.":["That email address is already registered."],"This must be a valid email address - a message will be sent to it for confirmation.":["This must be a valid email address - a message will be sent to it for confirmation."],"Error processing registration. Please check that you have entered a valid email address and that your chosen password is at least 8 characters long.":["Error processing registration. Please check that you have entered a valid email address and that your chosen password is at least 8 characters long."],"API token":["API token"],"API Information":["API Information"],"How to use the API":["How to use the API"],"You have been granted permission by your organisation to use our API.":["You have been granted permission by your organisation to use our API."],"Your API token and instructions for using the API endpoints can be found here.":["Your API token and instructions for using the API endpoints can be found here."],"API Permission Granted":["API Permission Granted"],"Text area":["Text area"],"Text field":["Text field"],"Radio buttons":["Radio buttons"],"Check box":["Check box"],"Dropdown":["Dropdown"],"Multi select box":["Multi select box"],"Export":["Export"],"By ":["By "]," on ":[" on "],"Read more on the ":["Read more on the "],"Your permissions relating to ":["Your permissions relating to "]," have changed. You now have ":[" have changed. You now have "],"access.":["access."],"Your access to ":["Your access to "]," has been removed.":[" has been removed."],"You have been given ":["You have been given "]," access to ":[" access to "],"... (continued)":["... (continued)"],"Security check":["Security check"],"Error!":["Error!"],"Comment":["Comment"],"Send":["Send"],"Ok":["Ok"],"None":["None"],"false":["false"],"Note":["Note"],"Me":["Me"],"View":["View"],"History":["History"],"Save":["Save"],"Preview":["Preview"],"Saving...":["Saving..."],"Loading...":["Loading..."],"Removing...":["Removing..."],"Unsaved changes":["Unsaved changes"],"Unlink account":["Unlink account"],"Share":["Share"],"Delete":["Delete"],"Create":["Create"],"Update":["Update"],"Cancel":["Cancel"],"Back":["Back"],"Discard":["Discard"],"Publish":["Publish"],"Before submitting, please consider:":["Before submitting, please consider:"],"Last name":["Last name"],"Please enter your first name.":["Please enter your first name."],"Please enter your surname or family name.":["Please enter your surname or family name."],"Owner":["Owner"],"ORCID number":["ORCID number"],"ORCID number is a persistent digital identifier that distinguishes each researcher, more info.":["ORCID number is a persistent digital identifier that distinguishes each researcher, more info."],"%{application_name} doesn't recognise your institutional credentials - either you haven't created an account with us or you haven't linked these details to your existing account.
--> If you do not have an account with %{application_name}, please complete the form below.
--> If you have an account with %{application_name}, please Sign in so we can link your account to your institutional credentials.
Once you have created and/or linked your account, you'll be able to sign in with your institutional credentials directly.":["%{application_name} doesn't recognise your institutional credentials - either you haven't created an account with us or you haven't linked these details to your existing account.
--> If you do not have an account with %{application_name}, please complete the form below.
--> If you have an account with %{application_name}, please Sign in so we can link your account to your institutional credentials.
Once you have created and/or linked your account, you'll be able to sign in with your institutional credentials directly."],"Your account is linked to your institutional credentials.":["Your account is linked to your institutional credentials."],"Link your %{application_name} account to your institutional credentials (UK users only)":["Link your %{application_name} account to your institutional credentials (UK users only)"],"Unlink your institutional credentials":["Unlink your institutional credentials"],"Unlink institutional credentials alert":["Unlink institutional credentials alert"],"

You are about to unlink %{application_name} of your institutional credentials, would you like to continue?

":["

You are about to unlink %{application_name} of your institutional credentials, would you like to continue?

"],"Select a phase":["Select a phase"],"Select a version":["Select a version"],"Select a section":["Select a section"],"Select a question":["Select a question"],"Select a template":["Select a template"],"info@dcc.ac.uk":["info@dcc.ac.uk"],"You have been given access to a Data Management Plan":["You have been given access to a Data Management Plan"],"DMP permissions changed":["DMP permissions changed"],"DMP access removed":["DMP access removed"],"Answers":["Answers"],"Answer questions":["Answer questions"],"Last edited":["Last edited"],"Select an action":["Select an action"],"Answered ":["Answered "]," by ":[" by "],"Example answer":["Example answer"],"Not answered yet":["Not answered yet"],"No questions have been answered":["No questions have been answered"],"Policy Expectations":["Policy Expectations"],"Share note":["Share note"],"Notes":["Notes"],"A question can only have one answer.":["A question can only have one answer."],"The question must belong to the correct template.":["The question must belong to the correct template."],"Add note":["Add note"],"Share note with collaborators":["Share note with collaborators"],"Noted by:":["Noted by:"],"Are you sure you would like to remove this note?":["Are you sure you would like to remove this note?"],"Note removed by":["Note removed by"],"Note removed by you":["Note removed by you"],"Comment was successfully created.":["Comment was successfully created."],"Comment was successfully updated.":["Comment was successfully updated."],"Comment has been removed.":["Comment has been removed."],"Funder":["Funder"],"Institution":["Institution"],"Project":["Project"],"School":["School"],"Publisher":["Publisher"],"Other guidance":["Other guidance"],"Unit":["Unit"],"Please enter the name of your organisation.":["Please enter the name of your organisation."],"Edit plan details":["Edit plan details"],"Grant number":["Grant number"],"Grant reference number if applicable [POST-AWARD DMPs ONLY]":["Grant reference number if applicable [POST-AWARD DMPs ONLY]"],"Not applicable/not listed.":["Not applicable/not listed."],"There are a number of possible templates you could use. Please choose one.":["There are a number of possible templates you could use. Please choose one."],"Plan name":["Plan name"],"My plan":["My plan"],"Plan was successfully created.":["Plan was successfully created."],"Plan was successfully updated.":["Plan was successfully updated."],"Principal Investigator/Researcher":["Principal Investigator/Researcher"],"Name of Principal Investigator(s) or main researcher(s) on the project.":["Name of Principal Investigator(s) or main researcher(s) on the project."],"Principal Investigator/Researcher ID":["Principal Investigator/Researcher ID"],"E.g ORCID http://orcid.org/.":["E.g ORCID http://orcid.org/."],"Research funder if relevant":["Research funder if relevant"],"Funder name":["Funder name"],"Summary about the questions":["Summary about the questions"],"Plan details":["Plan details"],"

From here you can download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application.
Select what format you wish to use and click to 'Export'.

":["

From here you can download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application.
Select what format you wish to use and click to 'Export'.

"],"questions answered":["questions answered"],"You have altered answers but have not saved them:":["You have altered answers but have not saved them:"],"Would you like to save them now?":["Would you like to save them now?"],"Unsaved answers":["Unsaved answers"],"Answer was successfully recorded.":["Answer was successfully recorded."],"There was an error saving the answer.":["There was an error saving the answer."],"No change in answer content - not saved.":["No change in answer content - not saved."],"Plan data contact":["Plan data contact"],"Name (if different to above), telephone and email contact details":["Name (if different to above), telephone and email contact details"],"If applying for funding, state the name exactly as in the grant proposal.":["If applying for funding, state the name exactly as in the grant proposal."],"

Questions to consider:

  • - What is the nature of your research project?
  • - What research questions are you addressing?
  • - For what purpose are the data being collected or created?

Guidance:

Briefly summarise the type of study (or studies) to help others understand the purposes for which the data are being collected or created.

":["

Questions to consider:

  • - What is the nature of your research project?
  • - What research questions are you addressing?
  • - For what purpose are the data being collected or created?

Guidance:

Briefly summarise the type of study (or studies) to help others understand the purposes for which the data are being collected or created.

"],"ID":["ID"],"A pertinent ID as determined by the funder and/or institution.":["A pertinent ID as determined by the funder and/or institution."],"This plan is based on:":["This plan is based on:"],"My plans":["My plans"],"Visibility":["Visibility"],"Private":["Private"],"Organisational":["Organisational"],"Public":["Public"],"Test/Practice":["Test/Practice"],"Private (owners, co-owners, and administrators only) See our Terms of Use.":["Private (owners, co-owners, and administrators only) See our Terms of Use."],"Organisational (visibile to others within your organisation)":["Organisational (visibile to others within your organisation)"],"Public (Your DMP will appear on the Public DMPs page of this site)":["Public (Your DMP will appear on the Public DMPs page of this site)"],"Test/Practice (your plan is not visible to other users) See our Terms of Use.":["Test/Practice (your plan is not visible to other users) See our Terms of Use."],"Not specified (will be visible to others within your organisation by default)":["Not specified (will be visible to others within your organisation by default)"],"The items you select here will be displayed in the table below. You can sort the data by each of these headings or filter by entering a text string in the search box.":["The items you select here will be displayed in the table below. You can sort the data by each of these headings or filter by entering a text string in the search box."],"

Welcome.
You are now ready to create your first DMP.
Click the 'Create plan' button below to begin.

":["

Welcome.
You are now ready to create your first DMP.
Click the 'Create plan' button below to begin.

"],"

The table below lists the plans that you have created, and any that have been shared with you by others.
These can be edited, shared, exported or deleted at anytime.

":["

The table below lists the plans that you have created, and any that have been shared with you by others.
These can be edited, shared, exported or deleted at anytime.

"],"This page gives you an overview of your plan. It tells what your plan is based on and gives an overview of the questions that you will be asked.":["This page gives you an overview of your plan. It tells what your plan is based on and gives an overview of the questions that you will be asked."],"Please fill in the basic project details below and click 'Update' to save":["Please fill in the basic project details below and click 'Update' to save"],"Are you sure you wish to delete this plan? If the plan is being shared with other users, by deleting it from your list, the plan will be deleted from their plan list as well":["Are you sure you wish to delete this plan? If the plan is being shared with other users, by deleting it from your list, the plan will be deleted from their plan list as well"],"Confirm plan details":["Confirm plan details"],"Where your funder or institution doesn't have specific requirements (or if you left these options blank), you will see the %{organisation_abbreviation} Checklist. This offers a generic set of DMP questions and guidance. For more details see: DMP checklist 2013.":["Where your funder or institution doesn't have specific requirements (or if you left these options blank), you will see the %{organisation_abbreviation} Checklist. This offers a generic set of DMP questions and guidance. For more details see: DMP checklist 2013."],"Yes, create plan":["Yes, create plan"],"You have selected the Default DMP, which is based on the %{organisation_abbreviation} Checklist. This offers a generic set of DMP questions and guidance. For more details see: DMP checklist 2013.":["You have selected the Default DMP, which is based on the %{organisation_abbreviation} Checklist. This offers a generic set of DMP questions and guidance. For more details see: DMP checklist 2013."],"Please note: %{org_name} provides a DMP template. If you wish to use it select 'Cancel', otherwise select 'Create plan'":["Please note: %{org_name} provides a DMP template. If you wish to use it select 'Cancel', otherwise select 'Create plan'"],"Shared?":["Shared?"],"

You can give other people access to your plan here. There are three permission levels.

  • Users with \"read only\" access can only read the plan.
  • Editors can contribute to the plan.
  • Co-owners can also contribute to the plan, but additionally can edit the plan details and control access to the plan.

Add each collaborator in turn by entering their email address below, choosing a permission level and clicking \"Add collaborator\".

Those you invite will receive an email notification that they have access to this plan, inviting them to register with %{application_name} if they don\\'t already have an account. A notification is also issued when a user\\'s permission level is changed.

":["

You can give other people access to your plan here. There are three permission levels.

  • Users with \"read only\" access can only read the plan.
  • Editors can contribute to the plan.
  • Co-owners can also contribute to the plan, but additionally can edit the plan details and control access to the plan.

Add each collaborator in turn by entering their email address below, choosing a permission level and clicking \"Add collaborator\".

Those you invite will receive an email notification that they have access to this plan, inviting them to register with %{application_name} if they don\\'t already have an account. A notification is also issued when a user\\'s permission level is changed.

"],"Collaborators":["Collaborators"],"Add collaborator":["Add collaborator"],"Add":["Add"],"Permissions":["Permissions"],"Editors can contribute to plans. Co-owners have additional rights to edit plan details and control access.":["Editors can contribute to plans. Co-owners have additional rights to edit plan details and control access."],"Remove user access":["Remove user access"],"Are you sure?":["Are you sure?"],"Co-owner":["Co-owner"],"Read only":["Read only"],"This section is locked for editing by ":["This section is locked for editing by "],"Create a new plan":["Create a new plan"],"

Please select from the following drop-downs so we can determine what questions and guidance should be displayed in your plan.

If you aren't responding to specific requirements from a funder or an institution, select here to write a generic DMP based on the most common themes.

":["

Please select from the following drop-downs so we can determine what questions and guidance should be displayed in your plan.

If you aren't responding to specific requirements from a funder or an institution, select here to write a generic DMP based on the most common themes.

"],"Default DMP":["Default DMP"],"If applying for funding, select your research funder.":["If applying for funding, select your research funder."],"Otherwise leave blank.":["Otherwise leave blank."],"Name of funder, if applicable.":["Name of funder, if applicable."],"To see institutional questions and/or guidance, select your organisation.":["To see institutional questions and/or guidance, select your organisation."],"You may leave blank or select a different organisation to your own.":["You may leave blank or select a different organisation to your own."],"Tick to select any other sources of guidance you wish to see.":["Tick to select any other sources of guidance you wish to see."],"Configure":["Configure"],"Template Owner":["Template Owner"],"Identifier":["Identifier"],"Principal Investigator / Researcher":["Principal Investigator / Researcher"]," - ":[" - "],"Organization":["Organisation"],"Filter plans":["Filter plans"],"Filter":["Filter"],"No plans match '%{filter}'":["No plans match '%{filter}'"],"No matches":["No matches"],"User added to project":["User added to project"],"Invitation issued successfully.":["Invitation issued successfully."],"Please enter an email address":["Please enter an email address"],"Sharing details successfully updated.":["Sharing details successfully updated."],"Access removed":["Access removed"],"Project was successfully updated.":["Project was successfully updated."],"Project was successfully created.":["Project was successfully created."],"Details successfully updated.":["Details successfully updated."],"Choose a template":["Choose a template"],"Question not answered.":["Question not answered."],"This document was generated by %{application_name} (http://dmponline.dcc.ac.uk)":["This document was generated by %{application_name} (http://dmponline.dcc.ac.uk)"],"approx. %{space_used}% of available space used (max %{num_pages} pages)":["approx. %{space_used}% of available space used (max %{num_pages} pages)"],"approx. %{space_used}% of available space used":["approx. %{space_used}% of available space used"],"Plan Name":["Plan Name"],"Plan ID":["Plan ID"],"Plan Data Contact":["Plan Data Contact"],"Plan Description":["Plan Description"],"Your ORCID":["Your ORCID"],"%{value} is not a valid format":["%{value} is not a valid format"],"Settings":["Settings"],"Settings - My plans":["Settings - My plans"],"The table below lists the available columns that can be shown on the 'My plans' list. Choose which you would like to appear.":["The table below lists the available columns that can be shown on the 'My plans' list. Choose which you would like to appear."],"'name' must be included in column list.":["'name' must be included in column list."],"Duplicate column name. Please only include each column once.":["Duplicate column name. Please only include each column once."],"Unknown column name.":["Unknown column name."],"The plan is incomplete.":["The plan is incomplete."],"File Name":["File Name"],"Reset":["Reset"],"(Using custom PDF formatting values)":["(Using custom PDF formatting values)"],"(Using template PDF formatting values)":["(Using template PDF formatting values)"],"(Using default PDF formatting values)":["(Using default PDF formatting values)"],"Included Elements":["Included Elements"],"PDF Formatting":["PDF Formatting"],"Face":["Face"],"Size":["Size"],"Font":["Font"],"Margin":["Margin"],"Top":["Top"],"Bottom":["Bottom"],"Left":["Left"],"Right":["Right"],"Maximum number of pages":["Maximum number of pages"],"A required setting has not been provided":["A required setting has not been provided"],"Margin value is invalid":["Margin value is invalid"],"Margin cannot be negative":["Margin cannot be negative"],"Unknown margin. Can only be 'top', 'bottom', 'left' or 'right'":["Unknown margin. Can only be 'top', 'bottom', 'left' or 'right'"],"Invalid font size":["Invalid font size"],"Invalid font face":["Invalid font face"],"Unknown formatting setting":["Unknown formatting setting"],"Invalid maximum pages":["Invalid maximum pages"],"This account does not have access to that plan.":["This account does not have access to that plan."],"Question text is empty, please enter your question.":["Question text is empty, please enter your question."],"add guidance text":["add guidance text"],"select a question":["select a question"],"select at least one theme":["select at least one theme"],"select a guidance group":["select a guidance group"],"Please only enter up to 165 characters, you have used":["Please only enter up to 165 characters, you have used"],"If you are entering an URL try to use something like http://tinyurl.com/ to make it smaller.":["If you are entering an URL try to use something like http://tinyurl.com/ to make it smaller."],"You have unsaved answers in the following sections:\\n":["You have unsaved answers in the following sections:\\n"],"Resend confirmation instructions":["Resend confirmation instructions"],"Welcome to %{application_name}":["Welcome to %{application_name}"],"Thank you for registering at %{application_name}. Please confirm your email address:":["Thank you for registering at %{application_name}. Please confirm your email address:"],"Click here to confirm your account":["Click here to confirm your account"],"(or copy":["(or copy"],"into your browser).":["into your browser)."],"A colleague has invited you to contribute to their Data Management Plan at":["A colleague has invited you to contribute to their Data Management Plan at"],"Click here to accept the invitation":["Click here to accept the invitation"],"

If you don't want to accept the invitation, please ignore this email.
Your account won't be created until you access the link above and set your password.

":["

If you don't want to accept the invitation, please ignore this email.
Your account won't be created until you access the link above and set your password.

"],"Someone has requested a link to change your":["Someone has requested a link to change your"],"password. You can do this through the link below.":["password. You can do this through the link below."],"

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

":["

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

"],"Hello":["Hello"],"Your ":["Your "]," account has been locked due to an excessive number of unsuccessful sign in attempts.":[" account has been locked due to an excessive number of unsuccessful sign in attempts."],"Click the link below to unlock your account:":["Click the link below to unlock your account:"],"Unlock my account":["Unlock my account"],"Currently waiting confirmation for: ":["Currently waiting confirmation for: "],"Resend unlock instructions":["Resend unlock instructions"],"{\"Error\":\"Bad credentials\"}":["{\"Error\":\"Bad credentials\"}"],"{\"Error\":\"Organisation does not exist\"}":["{\"Error\":\"Organisation does not exist\"}"],"{\"Error\":\"Organisation specified is not a funder\"}":["{\"Error\":\"Organisation specified is not a funder\"}"],"{\"Error\":\"Organisation has more than one template and template name unspecified or invalid\"}":["{\"Error\":\"Organisation has more than one template and template name unspecified or invalid\"}"],"{\"Error\":\"You do not have authorisation to view this endpoint\"}":["{\"Error\":\"You do not have authorisation to view this endpoint\"}"],"{\"Error\":\"You do not have authorisation to view this resource\"}":["{\"Error\":\"You do not have authorisation to view this resource\"}"],"Your account has bee connected to %{scheme}":["Your account has bee connected to %{scheme}"],"We could not connect your account to %{scheme}":["We could not connect your account to %{scheme}"],"Your account has been disconnected from %{scheme}":["Your account has been disconnected from %{scheme}"],"We were unable to disconnect your account from %{scheme}":["We were unable to disconnect your account from %{scheme}"],"It does not look like you have setup an account with us yet. Please fill in the following information to complete your registration.":["It does not look like you have setup an account with us yet. Please fill in the following information to complete your registration."],"We were unable to verify your account. Please use the following form to create a new account. You will be able to link your new account afterward.":["We were unable to verify your account. Please use the following form to create a new account. You will be able to link your new account afterward."],"http://orcid.org/sites/default/files/images/orcid_16x16.png":["http://orcid.org/sites/default/files/images/orcid_16x16.png"],"https://orcid.org/%{id}":["https://orcid.org/%{id}"],"Create or Connect your ORCID ID":["Create or Connect your ORCID ID"],"ORCID provides a persistent digital identifier that distinguishes you from other researchers. Learn more at orcid.org":["ORCID provides a persistent digital identifier that distinguishes you from other researchers. Learn more at orcid.org"],"Are you sure you want to disconnect your ORCID ID?":["Are you sure you want to disconnect your ORCID ID?"],"Disconnect your account from ORCID. You can reconnect at any time.":["Disconnect your account from ORCID. You can reconnect at any time."],"Research Institute":["Research Institute"],"Digital Curation Centre":["Digital Curation Centre"],"admin":["admin"],"org_admin":["org_admin"],"user":["user"],"add_organisations":["add_organisations"],"change_org_affiliation":["change_org_affiliation"],"grant_permissions":["grant_permissions"],"modify_templates":["modify_templates"],"modify_guidance":["modify_guidance"],"use_api":["use_api"],"change_org_details":["change_org_details"],"grant_api_to_orgs":["grant_api_to_orgs"],"guidances":["guidances"],"plans":["plans"],"templates":["templates"],"statistics":["statistics"],"About %{application_name}":["About %{application_name}"],"Background":["Background"],"Latest news":["Latest news"],"

Funding bodies increasingly require their grant-holders to produce Data Management Plans(DMP), both during the bid-preparation stage and after funding has been secured. %{application_name} has been produced by the %{organisation_name} to help research teams respond to this requirement, and any expectations that their institution or others may apply.

The %{organisation_abbreviation} worked closely with research funders and universities to produce a tool that assists researchers to produce an effective data management plan (DMP) to cater for the whole lifecycle of a project, from bid-preparation stage through to completion.


How the tool works

There are a number of templates within the tool that represent the requirements of different funders and institutions. Users are asked three questions at the outset so we can determine the appropriate template to display (e.g. the ESRC template when applying for an ESRC grant). Guidance is provided to help you interpret and answer the questions. This guidance is provided by researcher funders, universities and disciplines.


Getting Started

If you have an account please sign in and start creating or editing your DMP.

If you do not have a %{application_name} account, click on 'Sign up' on the homepage.

Please visit the 'Help' page for guidance.


Additional Information

We are constantly improving the user interface and functionality of %{application_name}. If you would like to contribute with feedback and suggestions, please contact us by emailing dmponline@dcc.ac.uk. You can also report bugs and request new features directly on GitHub

":["

Funding bodies increasingly require their grant-holders to produce Data Management Plans(DMP), both during the bid-preparation stage and after funding has been secured. %{application_name} has been produced by the %{organisation_name} to help research teams respond to this requirement, and any expectations that their institution or others may apply.

The %{organisation_abbreviation} worked closely with research funders and universities to produce a tool that assists researchers to produce an effective data management plan (DMP) to cater for the whole lifecycle of a project, from bid-preparation stage through to completion.


How the tool works

There are a number of templates within the tool that represent the requirements of different funders and institutions. Users are asked three questions at the outset so we can determine the appropriate template to display (e.g. the ESRC template when applying for an ESRC grant). Guidance is provided to help you interpret and answer the questions. This guidance is provided by researcher funders, universities and disciplines.


Getting Started

If you have an account please sign in and start creating or editing your DMP.

If you do not have a %{application_name} account, click on 'Sign up' on the homepage.

Please visit the 'Help' page for guidance.


Additional Information

We are constantly improving the user interface and functionality of %{application_name}. If you would like to contribute with feedback and suggestions, please contact us by emailing dmponline@dcc.ac.uk. You can also report bugs and request new features directly on GitHub

"],"

%{application_name} stories from the %{organisation_abbreviation} website


":["

%{application_name} stories from the %{organisation_abbreviation} website


"],"On %{application_name}":["On %{application_name}"],"On data management planning":["On data management planning"],"

Useful resources on Data Management Planning

Example Data Management Plans

  • Technical plan submitted to the AHRC [PDF, 7 pages]
    A DMP submitted by a researcher from the University of Bristol, also including comments from the reviewers
  • Two social science DMPs [PDF, 7 pages]
    Example plans from researchers at the University of Leeds, shared as part of the Leeds RoaDMaP training materials
  • Health sciences DMP [PDF, 11 pages]
    Example DMP produced by the DATUM for Health RDM training project
  • Psychology DMP [PDF, 11 pages]
    A very detailed, fictional psychology DMP produced by the DMTpsych RDM training project, based on a seminal psychology experiment
  • UCSD Example Data Management Plans [webpage]
    Over 20 example plans submitted to the National Science Foundation (NSF) in the United States by academics at UC San Diego
  • Colorado School of Mines examples [webpage]
    A variety of US example DMPs from Mines and elsewhere
  • NSF data management plans [webpage]
    5 DMPs submitted to the NSF, shared by the DataOne initiative
  • Biology and chemistry DMPs [webpage]
    Three example DMPs from the USA shared by NECDMC, an instructional tool for teaching RDM to undergraduates, graduate students, and researchers in the health sciences, sciences and engineering.

Useful guides on Research Data Management in general

  • Managing and Sharing Data: best practice for researchers [PDF, 36 pages]
    A guide by the UK Data Service covering a range of topics including data formats, documentaion, ethics, copyright and data sharing.
  • How to Cite Datasets and Link to Publications [PDF, 12 pages]
    A guide by the Digital Curation Centre giving practical guidelines on how to cite data and the different tools and infrastructure that can be used to support data citation.
  • How to License Research Data [PDF, 16 pages]
    A guide by the Digital Curation Centre that outlines different types of licenses, the pros and cons of each and how they can be applied.
  • How to Appraise and Select Research Data for Curation [PDF, 8 pages]
    A guide by ANDS and the Digital Curation Centre on how to select which data to keep for long-term preservation, sharing and reuse. The guide puts forward several criteria to aid selection decisions.
  • Research Data MANTRA [online resource]
    An online training course designed for researchers or others planning to manage digital data as part of the research process. The course includes a number of software practicals on using SPSS, R, ArcGIS and NVivo.
":["

Useful resources on Data Management Planning

Example Data Management Plans

  • Technical plan submitted to the AHRC [PDF, 7 pages]
    A DMP submitted by a researcher from the University of Bristol, also including comments from the reviewers
  • Two social science DMPs [PDF, 7 pages]
    Example plans from researchers at the University of Leeds, shared as part of the Leeds RoaDMaP training materials
  • Health sciences DMP [PDF, 11 pages]
    Example DMP produced by the DATUM for Health RDM training project
  • Psychology DMP [PDF, 11 pages]
    A very detailed, fictional psychology DMP produced by the DMTpsych RDM training project, based on a seminal psychology experiment
  • UCSD Example Data Management Plans [webpage]
    Over 20 example plans submitted to the National Science Foundation (NSF) in the United States by academics at UC San Diego
  • Colorado School of Mines examples [webpage]
    A variety of US example DMPs from Mines and elsewhere
  • NSF data management plans [webpage]
    5 DMPs submitted to the NSF, shared by the DataOne initiative
  • Biology and chemistry DMPs [webpage]
    Three example DMPs from the USA shared by NECDMC, an instructional tool for teaching RDM to undergraduates, graduate students, and researchers in the health sciences, sciences and engineering.

Useful guides on Research Data Management in general

  • Managing and Sharing Data: best practice for researchers [PDF, 36 pages]
    A guide by the UK Data Service covering a range of topics including data formats, documentaion, ethics, copyright and data sharing.
  • How to Cite Datasets and Link to Publications [PDF, 12 pages]
    A guide by the Digital Curation Centre giving practical guidelines on how to cite data and the different tools and infrastructure that can be used to support data citation.
  • How to License Research Data [PDF, 16 pages]
    A guide by the Digital Curation Centre that outlines different types of licenses, the pros and cons of each and how they can be applied.
  • How to Appraise and Select Research Data for Curation [PDF, 8 pages]
    A guide by ANDS and the Digital Curation Centre on how to select which data to keep for long-term preservation, sharing and reuse. The guide puts forward several criteria to aid selection decisions.
  • Research Data MANTRA [online resource]
    An online training course designed for researchers or others planning to manage digital data as part of the research process. The course includes a number of software practicals on using SPSS, R, ArcGIS and NVivo.
"],"

When you login to %{application_name} you will be directed to the 'My plans' page. From here you can edit, share, export or delete any of your plans. You will also see plans that have been shared with you by others.

Create a plan

To create a plan, click the 'Create plan' button from the 'My plans' page or the top menu. Select options from the drop-down menus and tickboxes to determine what questions and guidance you should be presented with. Confirm your selection by clicking 'Yes, create plan'

Write your plan

The tabbed interface allows you to navigate through different functions when editing your plan.

  • - 'Plan details' includes basic administrative details, tells you what sets of questions and guidance your plan is based on and gives you an overview to the questions that you will be asked.
  • - The following tab(s) present the questions to answer. There may be more than one tab if your funder or university asks different sets of questions at different stages e.g. at grant application and post-award.
  • - The 'Share' tab allows you to invite others to read or contribute to your plan.
  • - The 'Export' tab allows you to download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application.

When viewing any of the question tabs, you will see the different sections of your plan displayed. Click into these in turn to answer the questions. You can format your responses using the text editing buttons.

Guidance is displayed in the right-hand panel. Click the '+' symbol to view this.

Remember to 'save' your responses before moving on.

Share plans

Insert the email address of any collaborators you would like to invite to read or edit your plan. Set the level of permissions you would like to grant them via the drop-down options and click to 'Add collaborator'

Export plans

From here you can download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application. Choose what format you would like to view/download your plan in and click to export. When you login to %{application_name} you will be directed to the 'My plans' page. From here you can edit, share, export or delete any of your plans. You will also see plans that have been shared with you by others.

":["

When you login to %{application_name} you will be directed to the 'My plans' page. From here you can edit, share, export or delete any of your plans. You will also see plans that have been shared with you by others.

Create a plan

To create a plan, click the 'Create plan' button from the 'My plans' page or the top menu. Select options from the drop-down menus and tickboxes to determine what questions and guidance you should be presented with. Confirm your selection by clicking 'Yes, create plan'

Write your plan

The tabbed interface allows you to navigate through different functions when editing your plan.

  • - 'Plan details' includes basic administrative details, tells you what sets of questions and guidance your plan is based on and gives you an overview to the questions that you will be asked.
  • - The following tab(s) present the questions to answer. There may be more than one tab if your funder or university asks different sets of questions at different stages e.g. at grant application and post-award.
  • - The 'Share' tab allows you to invite others to read or contribute to your plan.
  • - The 'Export' tab allows you to download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application.

When viewing any of the question tabs, you will see the different sections of your plan displayed. Click into these in turn to answer the questions. You can format your responses using the text editing buttons.

Guidance is displayed in the right-hand panel. Click the '+' symbol to view this.

Remember to 'save' your responses before moving on.

Share plans

Insert the email address of any collaborators you would like to invite to read or edit your plan. Set the level of permissions you would like to grant them via the drop-down options and click to 'Add collaborator'

Export plans

From here you can download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application. Choose what format you would like to view/download your plan in and click to export. When you login to %{application_name} you will be directed to the 'My plans' page. From here you can edit, share, export or delete any of your plans. You will also see plans that have been shared with you by others.

"],"Contact us":["Contact us"],"

%{application_name} is provided by the %{organisation_name}. You can find out more about us on our website. If you would like to contact us about %{application_name}, please enter your query in the form below or email dmponline@dcc.ac.uk.

":["

%{application_name} is provided by the %{organisation_name}. You can find out more about us on our website. If you would like to contact us about %{application_name}, please enter your query in the form below or email dmponline@dcc.ac.uk.

"],"

If you have a feature request or think you have found a bug, please check out the list of issues on GitHub. If your issue isn't listed there, please add it; if it is, please add a comment if you have more information or just to let us know how important it is to you. This will help us to prioritise future developments.

":["

If you have a feature request or think you have found a bug, please check out the list of issues on GitHub. If your issue isn't listed there, please add it; if it is, please add a comment if you have more information or just to let us know how important it is to you. This will help us to prioritise future developments.

"],"
  • %{organisation_name}
  • %{organisation_address_line1}
  • %{organisation_address_line2}
  • %{organisation_address_line3}
  • %{organisation_address_line4}
  • %{organisation_address_country}

CDL Helpline: %{organisation_telephone}

Email %{organisation_email}

":["
  • %{organisation_name}
  • %{organisation_address_line1}
  • %{organisation_address_line2}
  • %{organisation_address_line3}
  • %{organisation_address_line4}
  • %{organisation_address_country}

CDL Helpline: %{organisation_telephone}

Email %{organisation_email}

"],"Releases":["Releases"],"Get involved":["Get involved"],"

The %{organisation_abbreviation} are now collaborating to develop a joint codebase for Data Management Planning called DMP Roadmap. Both of our tools will be delivered using this in the future. We've agreed what features need to be included and are planning a few sprints to deliver these. The initial release will include all of the main priorities we already had flagged, including:

  • - APIs to create plans, extract guidance and generate statistics from %{application_name}
  • - Multi-lingual support so foreign language versions can be presented
  • - Locales to provide a refined set of content for particular countries or other contexts
  • - A lifecycle to indicate the status of DMPs and allow institutional access to plans
  • - Support for reviewing Data Management Plans

%{application_name} has an active and growing user base, and we are grateful to the members who suggest ideas for new and improved features. If you would like to help shape our future plans, please join the user group. More information on how you can engage with us is available under the 'Get involved' tab.


Current release

The current version of %{application_name} is %{application_version}.

The code is available on GitHub


":["

The %{organisation_abbreviation} are now collaborating to develop a joint codebase for Data Management Planning called DMP Roadmap. Both of our tools will be delivered using this in the future. We've agreed what features need to be included and are planning a few sprints to deliver these. The initial release will include all of the main priorities we already had flagged, including:

  • - APIs to create plans, extract guidance and generate statistics from %{application_name}
  • - Multi-lingual support so foreign language versions can be presented
  • - Locales to provide a refined set of content for particular countries or other contexts
  • - A lifecycle to indicate the status of DMPs and allow institutional access to plans
  • - Support for reviewing Data Management Plans

%{application_name} has an active and growing user base, and we are grateful to the members who suggest ideas for new and improved features. If you would like to help shape our future plans, please join the user group. More information on how you can engage with us is available under the 'Get involved' tab.


Current release

The current version of %{application_name} is %{application_version}.

The code is available on GitHub


"],"

%{application_name} is developed and maintained by the UK %{organisation_name}. We’re a small team, and are happy to collaborate with others. There are various ways you can get involved:

Join the user group

We run a listserv for the %{application_name} user group that you can request to join. We also host periodic meetings to consult on our plans. Being part of the user group gives you the opportunity to be informed about future developments and to provide feedback to help shape our plans.

Our user group sessions are usually focused around a certain topic (e.g. fleshing out use cases for an API) so invites are sent based on your areas of expertise. It is helpful for us to know your role and interests to invite relevant people to each session. Please introduce yourself on the list and share your ideas.

Notes from previous user group sessions are provided below:

Please let us know your interests and share your ideas for future developments via the mailing list so the community as a whole can feedback on them.


Customise %{application_name}

%{application_name} can be customised by institutions and disciplines. You can add templates for users in your organisation and tailored guidance that explains local support and services. Example answers can also be offered to help users understand what to write in a Data Management Plan. To do this you’ll need to request admin access, so please email us on dmponline@dcc.ac.uk.

Futher guidance on customising %{application_name} is available on the %{application_name} website.


Contribute to the code

%{application_name} is a Ruby on Rails application. The source code is made available under an MIT License. This permits others to reuse the code freely, but obligates you to share the source code for any extensions in the same way. Please inform us if you install an instance of %{application_name} and offer your contributions back to the community.

If you install an instance of %{application_name} we require that you credit the %{organisation_abbreviation} as originators of the tool. We recommend that the acknowledgement takes the form of the %{application_name} logo with a link back to the %{organisation_abbreviation}-hosted version of the tool.

We are willing to work with external developers to add new features to the tool. We are also open to delivering new features on a chargeable basis. If there are extensions you would like to see prioritised and have resource to support additional developer effort, please contact us on dmponline@dcc.ac.uk to negotiate terms.

The code is available on GitHub

Support our work

We are impressed by the uptake of %{application_name} both in the UK and internationally and are really keen to hear how you are using the tool and promoting it in your context. We are aware that others have run training courses, developed guidance materials and advocated use of the tool. Please notify us of this as it helps to show impact.

We are currently investigating options for revenue generation. This will help us serve the increased demand more effectively and safeguard the long-term sustainability of %{application_name}. Plans will be released for consultation soon but we also welcome your suggestions on how best to support our work.

":["

%{application_name} is developed and maintained by the UK %{organisation_name}. We’re a small team, and are happy to collaborate with others. There are various ways you can get involved:

Join the user group

We run a listserv for the %{application_name} user group that you can request to join. We also host periodic meetings to consult on our plans. Being part of the user group gives you the opportunity to be informed about future developments and to provide feedback to help shape our plans.

Our user group sessions are usually focused around a certain topic (e.g. fleshing out use cases for an API) so invites are sent based on your areas of expertise. It is helpful for us to know your role and interests to invite relevant people to each session. Please introduce yourself on the list and share your ideas.

Notes from previous user group sessions are provided below:

Please let us know your interests and share your ideas for future developments via the mailing list so the community as a whole can feedback on them.


Customise %{application_name}

%{application_name} can be customised by institutions and disciplines. You can add templates for users in your organisation and tailored guidance that explains local support and services. Example answers can also be offered to help users understand what to write in a Data Management Plan. To do this you’ll need to request admin access, so please email us on dmponline@dcc.ac.uk.

Futher guidance on customising %{application_name} is available on the %{application_name} website.


Contribute to the code

%{application_name} is a Ruby on Rails application. The source code is made available under an MIT License. This permits others to reuse the code freely, but obligates you to share the source code for any extensions in the same way. Please inform us if you install an instance of %{application_name} and offer your contributions back to the community.

If you install an instance of %{application_name} we require that you credit the %{organisation_abbreviation} as originators of the tool. We recommend that the acknowledgement takes the form of the %{application_name} logo with a link back to the %{organisation_abbreviation}-hosted version of the tool.

We are willing to work with external developers to add new features to the tool. We are also open to delivering new features on a chargeable basis. If there are extensions you would like to see prioritised and have resource to support additional developer effort, please contact us on dmponline@dcc.ac.uk to negotiate terms.

The code is available on GitHub

Support our work

We are impressed by the uptake of %{application_name} both in the UK and internationally and are really keen to hear how you are using the tool and promoting it in your context. We are aware that others have run training courses, developed guidance materials and advocated use of the tool. Please notify us of this as it helps to show impact.

We are currently investigating options for revenue generation. This will help us serve the increased demand more effectively and safeguard the long-term sustainability of %{application_name}. Plans will be released for consultation soon but we also welcome your suggestions on how best to support our work.

"],"Terms of use":["Terms of use"],"

The %{organisation_name} ('%{organisation_abbreviation}') are consortia supported by %{legal_entity}. Our primary constituency is the research community, particularly the higher and further education sector.

%{application_name}

%{application_name} ('the tool', 'the system') is a tool developed by the %{organisation_abbreviation} as a shared resource for the research community. It is hosted by %{legal_entity}.

Your personal details

In order to help identify and administer your account with %{application_name}, we need to store your email address. We may also use it to contact you to obtain feedback on your use of the tool, or to inform you of the latest developments or releases. The information may be transferred between the %{organisation_abbreviation} partner institutions but only for legitimate %{organisation_abbreviation} purposes. We will not sell, rent or trade any personal information you provide to us.

Privacy policy

The information you enter into this system can be seen by you, people you have chosen to share access with, and - solely for the purposes of maintaining the service - system administrators at %{legal_entity}. We compile anonymised, automated and aggregated information from plans, but we will not directly access, make use of, or share your content with anyone else without your permission. Authorised officers of your home institution may access your plans for specific purposes - for example, to track compliance with funder/institutional requirements or to calculate storage requirements.

Freedom of Information

%{legal_entity} holds your plans on your behalf, but they are your property and responsibility. Any FOI applicants will be referred back to your home institution.

Passwords

Your password is stored in encrypted form and cannot be retrieved. If forgotten it has to be reset.

Cookies

Please note that %{application_name} uses Cookies. Further information about Cookies and how we use them is available on the main DCC website.


Use of the tool indicates that you understand and agree to these terms and conditions.

":["

The %{organisation_name} ('%{organisation_abbreviation}') are consortia supported by %{legal_entity}. Our primary constituency is the research community, particularly the higher and further education sector.

%{application_name}

%{application_name} ('the tool', 'the system') is a tool developed by the %{organisation_abbreviation} as a shared resource for the research community. It is hosted by %{legal_entity}.

Your personal details

In order to help identify and administer your account with %{application_name}, we need to store your email address. We may also use it to contact you to obtain feedback on your use of the tool, or to inform you of the latest developments or releases. The information may be transferred between the %{organisation_abbreviation} partner institutions but only for legitimate %{organisation_abbreviation} purposes. We will not sell, rent or trade any personal information you provide to us.

Privacy policy

The information you enter into this system can be seen by you, people you have chosen to share access with, and - solely for the purposes of maintaining the service - system administrators at %{legal_entity}. We compile anonymised, automated and aggregated information from plans, but we will not directly access, make use of, or share your content with anyone else without your permission. Authorised officers of your home institution may access your plans for specific purposes - for example, to track compliance with funder/institutional requirements or to calculate storage requirements.

Freedom of Information

%{legal_entity} holds your plans on your behalf, but they are your property and responsibility. Any FOI applicants will be referred back to your home institution.

Passwords

Your password is stored in encrypted form and cannot be retrieved. If forgotten it has to be reset.

Cookies

Please note that %{application_name} uses Cookies. Further information about Cookies and how we use them is available on the main DCC website.


Use of the tool indicates that you understand and agree to these terms and conditions.

"],"Public DMPs are plans created using the DMPTool and shared publicly by their owners. They are not vetted for quality, completeness, or adherence to funder guidelines.":["Public DMPs are plans created using the DMPTool and shared publicly by their owners. They are not vetted for quality, completeness, or adherence to funder guidelines."],"There are no public DMPs.":["There are no public DMPs."],"ago":["ago"],"from now":["from now"],"less than a minute":["less than a minute"],"about a minute":["about a minute"],"%{d} minutes":["%{d} minutes"],"about an hour":["about an hour"],"about %{d} hours":["about %{d} hours"],"a day":["a day"],"%{d} days":["%{d} days"],"about a month":["about a month"],"%{d} months":["%{d} months"],"about a year":["about a year"],"%{d} years":["%{d} years"],"":{"lang":"en_GB","domain":"app","plural_forms":null}}}}; \ No newline at end of file diff --git a/lib/assets/javascripts/locale/en_US/app.js b/lib/assets/javascripts/locale/en_US/app.js new file mode 100644 index 0000000..3129058 --- /dev/null +++ b/lib/assets/javascripts/locale/en_US/app.js @@ -0,0 +1 @@ +var locales = locales || {}; locales['en_US'] = {"domain":"app","locale_data":{"app":{"%d-%m-%Y":["%m-%d-%Y"],"%d/%m/%Y":["%m/%d/%Y"],"%d %B, %Y":["%B %d, %Y"],"%a, %b %d %Y %H:%M:%S %z":["%a, %b %d %Y %H:%M:%S %z"],"%d %b %H:%M":["%d %b %H:%M"],"%d/%m/%Y %H:%M":["%m/%d/%Y %H:%M"],"%B %d, %Y %H:%M":["%B %d, %Y %H:%M"],"am":["am"],"pm":["pm"],"%{application_name}":["%{application_name}"],"DMP title":["DMP title"],"%{organisation_name}":["%{organisation_name}"],"Welcome.":["Welcome."],"

%{application_name} has been jointly developed by the %{organisation_name} to help you write data management plans.

":["

%{application_name} has been jointly developed by the %{organisation_name} to help you write data management plans.

"],"Screencast on how to use %{application_name}":["Screencast on how to use %{application_name}"],"Your browser does not support the video tag.":["Your browser does not support the video tag."],"You need to sign in or sign up before continuing.":["You need to sign in or sign up before continuing."],"Language":[""],"Language name":[""],"Language abbreviation":[""],"Is default language":[""],"Yes":["Yes"],"No":["No"],"Organisation name":["Organization name"],"Organisation":["Organisation"],"Organisations":["Organizations"],"Organisation type":["Organization type"],"Parent organisation":["Parent organization"],"Organisation was successfully created.":["Organization was successfully created."],"Organisation was successfully updated.":["Organization was successfully updated."],"There seems to be a problem with your logo. Please upload it again.":["There seems to be a problem with your logo. Please upload it again."],"Plans":["Plans"],"Title":["Title"],"Description":["Description"],"Guidance group":["Guidance group"],"No guidance group":["No guidance group"],"Guidance":["Guidance"],"guidance":["guidance"],"guidance on":["guidance on"],"Name":["Name"],"Abbreviation":["Abbreviation"],"Question":["Question"],"Question Format":["Question Format"],"Questions":["Questions"],"Template title":["Template title"],"Section title":["Section title"],"Formatting":["Formatting"],"Max Pages":["Max Pages"],"Phase title":["Phase title"],"Version title":["Version title"],"Username":["Username"],"First name":["First name"],"Surname":["Surname"],"User":["User"],"User was successfully created.":["User was successfully created."],"User role on an Organisation":["User role on an Organization"],"User role type":["User role type"],"User role type was successfully created.":["User role type was successfully created."],"User role type was successfully updated.":["User role type was successfully updated."],"User role":["User role"],"Role":["Role"],"User status":["User status"],"User status was successfully created.":["User status was successfully created."],"User status was successfully updated.":["User status was successfully updated."],"User type":["User type"],"User type was successfully created.":["User type was successfully created."],"Last logged in":["Last logged in"],"Version number":["Version number"],"Details":["Details"],"Phases":["Phases"],"Phase":["Phase"],"Version":["Version"],"Versions":["Versions"],"Sections":["Sections"],"Section":["Section"],"Multiple question options":["Multiple question options"],"Templates":["Templates"],"Template":["Template"],"Themes":["Themes"],"Theme":["Theme"],"Theme was successfully created.":["Theme was successfully created."],"Theme was successfully updated.":["Theme was successfully updated."],"Suggested answer":["Suggested answer"],"Suggested answers":["Suggested answers"],"old template field":["old template field"],"old theme field":["old theme field"],"Token Permission Type":["Token Permission Type"],"Permission Description":["Permission Description"],"Token Permission":["Token Permission"],"Organisation Token Permission":["Organization Token Permission"],"Settings updated successfully":["Settings updated successfully"],"Choose all themes that apply.":["Choose all themes that apply."],"All themes":["All themes"],"Selected themes":["Selected themes"],"Choose all templates that apply.":["Choose all templates that apply."],"All templates":["All templates"],"Selected templates":["Selected templates"],"Select question format":["Select question format"],"No template":["No template"],"No phase":["No phase"],"No version":["No version"],"No section":["No section"],"Organisation language":[""],"Please select your default language from the dropdown list. This will be displayed to users in your organisation, unless they have a different preference or choose another language from the dropdown options on the homepage. If your language is not available and you wish to provide a translation, please contact us.":[""],"Admin area":["Admin area"],"Admin Details":["Admin Details"],"Users":["Users"],"Organisation details":["Organization details"],"These are the basic details for your organisation.":["These are the basic details for your organization."],"This is what displays as a label on your guidance, e.g. 'Glasgow guidance on Metadata'. It's best to use an abbreviation or short name.":["This is what displays as a label on your guidance, e.g. 'Glasgow guidance on Metadata'. It's best to use an abbreviation or short name."],"Contact Email":["Contact Email"],"The email address of an administrator at your organisation. Your users will use this address if they have questions.":["The email address of an administrator at your organization. Your users will use this address if they have questions."],"List of users":["List of users"],"Email address":["Email address"],"How many plans?":["How many plans?"],"Privileges":["Permissions"],"Below is a list of users registered for your organisation. You can sort the data by each field.":["Below is a list of users registered for your organization. You can sort the data by each field."],"Logo Upload Failed.":["Logo Upload Failed."],"Logo":["Logo"],"Upload a new logo file":["Upload a new logo file"],"If you decide to use the default DMPRoadmap logo, please check this box to remove your current logo.":["If you decide to use the default DMPRoadmap logo, please check this box to remove your current logo."],"Top banner text":["Top banner text"],"Website":["Website"],"Main organisation":["Main organization"],"Last updated":["Last updated"],"
Please enter information describing your organisation.
":["
Please enter information describing your organization.
"],"
Please enter information you would like your users to see while sign in. Do not enter more than 165 characteres.
":["
Please enter information you would like your users to see while sign in. Do not enter more than 165 characteres.
"],"
Enter a description that helps you to differentiate between templates e.g. if you have ones for different audiences.
":["
Enter a description that helps you to differentiate between templates e.g. if you have ones for different audiences.
"],"Please enter an abbreviation to your organisation's name.":["Please enter an abbreviation to your organization's name."],"Please enter a valid web address.":["Please enter a valid web address."],"Please enter your organisation's name.":["Please enter your organization's name."],"Add option":["Add option"],"Add question":["Add question"],"Add section":["Add section"],"Remove":["Remove"],"Order":["Order"],"Text":["Text"],"Default":["Default"],"User org role was successfully created.":["User org role was successfully created."],"User org role was successfully updated.":["User org role was successfully updated."],"API Privleges?":["API Permissions?"],"Edit User Privileges":["Edit User Permissions"],"Guidance list":["Guidance list"],"Should this guidance apply:":["Should this guidance apply:"],"by themes":["by themes"],"by question":["by question"],"Published":["Published"],"Created":["Created"],"Actions":["Actions"],"Add guidance":["Add guidance"],"Guidance was successfully created.":["Guidance was successfully created."],"Guidance was successfully updated.":["Guidance was successfully updated."],"
Please enter guidance text for this theme.
":["
Please enter guidance text for this theme.
"],"New guidance":["New guidance"],"View all guidance":["View all guidance"],"Enter your guidance here. You can include links where needed.":["Enter your guidance here. You can include links where needed."],"Decide whether your guidance should display by themes (default) or if it only pertains to a specific question in one of the funder templates.":["Decide whether your guidance should display by themes (default) or if it only pertains to a specific question in one of the funder templates."],"Select which theme(s) this guidance relates to.":["Select which theme(s) this guidance relates to."],"Select the relevant template, phase, version, section and question from the following dropdown options to define which specific question this guidance should display on.":["Select the relevant template, phase, version, section and question from the following dropdown options to define which specific question this guidance should display on."],"Select which group this guidance relates to.":["Select which group this guidance relates to."],"Check this box when you are ready for this guidance to appear on user's plans.":["Check this box when you are ready for this guidance to appear on user's plans."],"

You can write pieces of guidance to be displayed by theme (e.g. generic guidance on storage and backup that should present across the board) or you can write guidance for specific questions. Writing generic guidance by theme saves you time and effort as your advice will be automatically displayed across all templates rather than having to write guidance to accompany each.

You will usually want your guidance to display on all templates, however there may be cases where you only want it to show for specific funders e.g. if you have specific instructions for applicants to BBSRC for example. This can be set too if needed.

":["

You can write pieces of guidance to be displayed by theme (e.g. generic guidance on storage and backup that should present across the board) or you can write guidance for specific questions. Writing generic guidance by theme saves you time and effort as your advice will be automatically displayed across all templates rather than having to write guidance to accompany each.

You will usually want your guidance to display on all templates, however there may be cases where you only want it to show for specific funders e.g. if you have specific instructions for applicants to BBSRC for example. This can be set too if needed.

"],"You are about to delete '%{guidance_summary}'. Are you sure?":["You are about to delete '%{guidance_summary}'. Are you sure?"],"Add guidance group":["Add guidance group"],"Guidance group list":["Guidance group list"],"Optional subset":["Optional subset"],"e.g. School/ Department":["e.g. School/ Department"],"Please enter the group title":["Please enter the group title"],"If the guidance is only meant for a subset of users e.g. those in a specific college or institute, check this box. Users will be able to select to display this subset guidance when answering questions in the 'create plan' wizard.":["If the guidance is only meant for a subset of users e.g. those in a specific college or institute, check this box. Users will be able to select to display this subset guidance when answering questions in the 'create plan' wizard."],"Select which templates you want the guidance to display on. This will usually be all templates.":["Select which templates you want the guidance to display on. This will usually be all templates."],"Add an appropriate name for your guidance group e.g. Glasgow guidance. This name will be used to tell the end user where the guidance has come from e.g. 'Glasgow Guidance on Metadata'":["Add an appropriate name for your guidance group e.g. Glasgow guidance. This name will be used to tell the end user where the guidance has come from e.g. 'Glasgow Guidance on Metadata'"],"

First create a guidance group. This could be institution wide or a subset e.g. a particular College / School, Institute or department. When you create guidance you'll be asked to assign it to a guidance group.

":["

First create a guidance group. This could be institution wide or a subset e.g. a particular College / School, Institute or department. When you create guidance you'll be asked to assign it to a guidance group.

"],"You are about to delete '%{guidance_group_name}'. This will affect guidance. Are you sure?":["You are about to delete '%{guidance_group_name}'. This will affect guidance. Are you sure?"],"Guidance group was successfully created.":["Guidance group was successfully created."],"Guidance group was successfully updated.":["Guidance group was successfully updated."],"Guidance group was successfully deleted.":["Guidance group was successfully deleted."],"Template History":[""],"Create a template":["Create a template"],"New template":["New template"],"Template details":["Template details"],"Edit template details":["Edit template details"],"View all templates":["View all templates"],"Funders templates":["Funders templates"],"Please enter a title for your template.":["Please enter a title for your template."],"Please enter section title":["Please enter section title"],"
Please enter template description for this theme.
":["
Please enter template description for this theme.
"],"

If you wish to add an institutional template for a Data Management Plan, use the 'create template' button. You can create more than one template if desired e.g. one for researchers and one for PhD students.

Your template will be presented to users within your institution when no funder templates apply. If you want to add questions to funder templates use the 'customise template' options below.

":["

If you wish to add an institutional template for a Data Management Plan, use the 'create template' button. You can create more than one template if desired e.g. one for researchers and one for PhD students.

Your template will be presented to users within your institution when no funder templates apply. If you want to add questions to funder templates use the 'customise template' options below.

"],"

To create a new template, first enter a title and description. Once you have saved this you will be presented with options to add one or more phases.

":["

To create a new template, first enter a title and description. Once you have saved this you will be presented with options to add one or more phases.

"],"

Here you can view previously published versions of your template. These can no longer be modified.

":[""],"Enter a description that helps you to differentiate between templates e.g. if you have ones for different audiences":["Enter a description that helps you to differentiate between templates e.g. if you have ones for different audiences"],"Own templates":["Own templates"],"Add new phase +":["Add new phase +"],"View phase":["View phase"],"Edit phase":["Edit phase"],"Back to edit view":["Back to edit view"],"Edit phase details":["Edit phase details"],"Phase details":["Phase details"],"Order of display":["Order of display"],"

Here you set the title that users will see. If you intend to have multiple phases for you DMP, this should be clear in the title and description.

":["

Here you set the title that users will see. If you intend to have multiple phases for you DMP, this should be clear in the title and description.

"],"Enter a title for the phase e.g. intial DMP, full DMP... This is what users will see in the tabs when completing a plan. If you only have one phase, call it something generic e.g. Glasgow DMP":["Enter a title for the phase e.g. intial DMP, full DMP... This is what users will see in the tabs when completing a plan. If you only have one phase, call it something generic e.g. Glasgow DMP"],"This allows you to order the phases of your template.":["This allows you to order the phases of your template."],"Enter a basic description. This will be presented to users on the 'Admin Plan' tab, above the summary of the sections and questions which they will be asked to answer.":["Enter a basic description. This will be presented to users on the 'Admin Plan' tab, above the summary of the sections and questions which they will be asked to answer."],"You are about to delete '%{phase_title}'. This will affect versions, sections and questions linked to this phase. Are you sure?":["You are about to delete '%{phase_title}'. This will affect versions, sections and questions linked to this phase. Are you sure?"],"When you create a new phase for your template, a version will automatically be created. Once you complete the form below you will be provided with options to create sections and questions.":["When you create a new phase for your template, a version will automatically be created. Once you complete the form below you will be provided with options to create sections and questions."],"Version details":["Version details"],"New section title":["New section title"],"

Enter a basic description. This could be a summary of what is covered in the section or instructions on how to answer. This text will be displayed in the coloured banner once a section is opened to edit.
":["
Enter a basic description. This could be a summary of what is covered in the section or instructions on how to answer. This text will be displayed in the coloured banner once a section is opened to edit.
"],"This allows you to order sections.":["This allows you to order sections."],"Created at":["Created at"],"Please ensure you have created at least one phase with a published version.":["Please ensure you have created at least one phase with a published version."],"Customise":["Customise"],"Customised":[""],"Edit customisation":["Edit customisation"],"Update Customisation":[""],"Information was successfully created.":["Information was successfully created."],"Information was successfully updated.":["Information was successfully updated."],"Information was successfully deleted.":["Information was successfully deleted."],"Published templates cannot be edited.":[""],"You are about to delete '%{section_title}'. This will affect questions linked to this section. Are you sure?":["You are about to delete '%{section_title}'. This will affect questions linked to this section. Are you sure?"],"Yes [Unpublished Changes]":[""],"Yes [Original Template Has Changed]":[""],"Make big changes":["Make big changes"],"Make small changes":["Make small changes"],"Edit":["Edit"],"A first version is created automatically. If you want to make major changes to published versions later (e.g. add section or questions) please create a new version. If you only want to fix typos or make small changes that do not alter meanings, edit the current version.":["A first version is created automatically. If you want to make major changes to published versions later (e.g. add section or questions) please create a new version. If you only want to fix typos or make small changes that do not alter meanings, edit the current version."],"Enter a basic description as an internal reference to describe the difference between versions":["Enter a basic description as an internal reference to describe the difference between versions"],"You are about to delete '%{version_title}'. This will affect sections and questions linked to this version. Are you sure?":["You are about to delete '%{version_title}'. This will affect sections and questions linked to this version. Are you sure?"],"Edit alert":["Edit alert"],"Please consider the kind of changes you are about to make as this plan is already published and might be in use":["Please consider the kind of changes you are about to make as this plan is already published and might be in use"],"Question text":["Question text"],"Question number":["Question number"],"Edit question":["Edit question"],"Delete question":["Delete question"],"Answer format":["Answer format"],"Display additional comment area.":["Display additional comment area."],"Additional comment area will be displayed.":["Additional comment area will be displayed."],"No additional comment area will be displayed.":["No additional comment area will be displayed."],"Example of answer":["Example of answer"],"You can add an example or suggested answer to help users respond. These will be presented above the answer box and can be copied/ pasted.":["You can add an example or suggested answer to help users respond. These will be presented above the answer box and can be copied/ pasted."],"Suggested answer/ Example":["Suggested answer/ Example"],"Add suggested answer/ example":["Add suggested answer/ example"],"Edit suggested answer/ example":["Edit suggested answer/ example"],"You are about to delete a suggested answer/ example for '%{question_text}'. Are you sure?":["You are about to delete a suggested answer/ example for '%{question_text}'. Are you sure?"],"Default value":["Default value"],"This allows you to order questions within a section.":["This allows you to order questions within a section."],"You can choose from:
  • - text area (large box for paragraphs);
  • - text field (for a short answer);
  • - checkboxes where options are presented in a list and multiple values can be selected;
  • - radio buttons where options are presented in a list but only one can be selected;
  • - dropdown like this box - only one option can be selected;
  • - multiple select box allows users to select several options from a scrollable list, using the CTRL key;
":["You can choose from:
  • - text area (large box for paragraphs);
  • - text field (for a short answer);
  • - checkboxes where options are presented in a list and multiple values can be selected;
  • - radio buttons where options are presented in a list but only one can be selected;
  • - dropdown like this box - only one option can be selected;
  • - multiple select box allows users to select several options from a scrollable list, using the CTRL key;
"],"Anything you enter here will display in the answer box. If you want an answer in a certain format (e.g. tables), you can enter that style here.":["Anything you enter here will display in the answer box. If you want an answer in a certain format (e.g. tables), you can enter that style here."],"

Select themes that are relevant to this question.

This allows your generic institution-level guidance to be drawn in, as well as that from other sources e.g. the %{organisation_abbreviation} or any Schools/Departments that you provide guidance for.

You can select multiple themes by using the CTRL button.

":["

Select themes that are relevant to this question.

This allows your generic institution-level guidance to be drawn in, as well as that from other sources e.g. the %{organisation_abbreviation} or any Schools/Departments that you provide guidance for.

You can select multiple themes by using the CTRL button.

"],"Default answer":["Default answer"],"Enter specific guidance to accompany this question. If you have guidance by themes too, this will be pulled in based on your selections below so it's best not to duplicate too much text.":["Enter specific guidance to accompany this question. If you have guidance by themes too, this will be pulled in based on your selections below so it's best not to duplicate too much text."],"You are about to delete '%{question_text}'. Are you sure?":["You are about to delete '%{question_text}'. Are you sure?"],"Enter any options that you wish to display. If you want to pre-set one option as selected, check the default box.":["Enter any options that you wish to display. If you want to pre-set one option as selected, check the default box."],"Home":["Home"],"Return to the home page":["Return to the home page"],"Super admin area":["Super admin area"],"Edit profile":["Edit profile"],"View plans":["View plans"],"Create plan":["Create plan"],"About":["About"],"Future plans":["Future plans"],"Help":["Help"],"Public DMPs":["Public DMPs"],"Contact":["Contact"],"The %{organisation_abbreviation} is funded by":["The %{organisation_abbreviation} is funded by"],"format":["format"],"Change language":[""],"Sign in":["Sign in"],"Sign out":["Sign out"],"Sign up":["Sign up"],"New to %{application_name}? Sign up today.":["New to %{application_name}? Sign up today."],"Signed in as ":["Signed in as "],"Or, sign in with your institutional credentials":["Or, sign in with your institutional credentials"]," (UK users only)":[" (UK users only)"],"Email":["Email"],"Subject":["Subject"],"Message":["Message"],"You must enter a valid email address.":["You must enter a valid email address."],"

Please note that your email address is used as your username. If you change this, remember to use your new email address on sign in.

":["

Please note that your email address is used as your username. If you change this, remember to use your new email address on sign in.

"],"You can edit any of the details below.":["You can edit any of the details below."],"Remember me":["Remember me"],"My organisation isn't listed.":["My organization isn't listed."],"Password":["Password"],"Current password":["Current password"],"New password":["New password"],"Password confirmation":["Password confirmation"],"Change your password":["Change your password"],"Forgot your password?":["Forgot your password?"],"Your password must contain at least 8 characters.":["Your password must contain at least 8 characters."],"This must match what you entered in the previous field.":["This must match what you entered in the previous field."],"Didn't receive confirmation instructions?":["Didn't receive confirmation instructions?"],"Didn't receive unlock instructions?":["Didn't receive unlock instructions?"],"Reset password instructions":["Reset password instructions"],"If you would like to change your password please complete the following fields.":["If you would like to change your password please complete the following fields."]," I accept the terms and conditions *":[" I accept the terms and conditions *"],"You must accept the terms and conditions to register.":["You must accept the terms and conditions to register."],"That email address is already registered.":["That email address is already registered."],"This must be a valid email address - a message will be sent to it for confirmation.":["This must be a valid email address - a message will be sent to it for confirmation."],"Error processing registration. Please check that you have entered a valid email address and that your chosen password is at least 8 characters long.":["Error processing registration. Please check that you have entered a valid email address and that your chosen password is at least 8 characters long."],"API token":["API token"],"API Information":["API Information"],"How to use the API":["How to use the API"],"You have been granted permission by your organisation to use our API.":["You have been granted permission by your organization to use our API."],"Your API token and instructions for using the API endpoints can be found here.":["Your API token and instructions for using the API endpoints can be found here."],"API Permission Granted":["API Permission Granted"],"Text area":["Text area"],"Text field":["Text field"],"Radio buttons":["Radio buttons"],"Check box":["Check box"],"Dropdown":["Dropdown"],"Multi select box":["Multi select box"],"Export":["Export"],"By ":["By "]," on ":[" on "],"Read more on the ":["Read more on the "],"Your permissions relating to ":["Your permissions relating to "]," have changed. You now have ":[" have changed. You now have "],"access.":["access."],"Your access to ":["Your access to "]," has been removed.":[" has been removed."],"You have been given ":["You have been given "]," access to ":[" access to "],"... (continued)":["... (continued)"],"Security check":["Security check"],"Error!":["Error!"],"Comment":["Comment"],"Send":["Send"],"Ok":["Ok"],"None":["None"],"false":["false"],"Note":["Note"],"Me":["Me"],"View":["View"],"History":[""],"Save":["Save"],"Preview":["Preview"],"Saving...":["Saving..."],"Loading...":["Loading..."],"Removing...":["Removing..."],"Unsaved changes":["Unsaved changes"],"Unlink account":["Unlink account"],"Share":["Share"],"Delete":["Delete"],"Create":["Create"],"Update":["Update"],"Cancel":["Cancel"],"Back":["Back"],"Discard":["Discard"],"Publish":["Publish"],"Before submitting, please consider:":["Before submitting, please consider:"],"Last name":["Last name"],"Please enter your first name.":["Please enter your first name."],"Please enter your surname or family name.":["Please enter your surname or family name."],"Owner":["Owner"],"ORCID number":["ORCID number"],"ORCID number is a persistent digital identifier that distinguishes each researcher, more info.":["ORCID number is a persistent digital identifier that distinguishes each researcher, more info."],"%{application_name} doesn't recognise your institutional credentials - either you haven't created an account with us or you haven't linked these details to your existing account.
--> If you do not have an account with %{application_name}, please complete the form below.
--> If you have an account with %{application_name}, please Sign in so we can link your account to your institutional credentials.
Once you have created and/or linked your account, you'll be able to sign in with your institutional credentials directly.":["%{application_name} doesn't recognise your institutional credentials - either you haven't created an account with us or you haven't linked these details to your existing account.
--> If you do not have an account with %{application_name}, please complete the form below.
--> If you have an account with %{application_name}, please Sign in so we can link your account to your institutional credentials.
Once you have created and/or linked your account, you'll be able to sign in with your institutional credentials directly."],"Your account is linked to your institutional credentials.":["Your account is linked to your institutional credentials."],"Link your %{application_name} account to your institutional credentials (UK users only)":["Link your %{application_name} account to your institutional credentials (UK users only)"],"Unlink your institutional credentials":["Unlink your institutional credentials"],"Unlink institutional credentials alert":["Unlink institutional credentials alert"],"

You are about to unlink %{application_name} of your institutional credentials, would you like to continue?

":["

You are about to unlink %{application_name} of your institutional credentials, would you like to continue?

"],"Select a phase":["Select a phase"],"Select a version":["Select a version"],"Select a section":["Select a section"],"Select a question":["Select a question"],"Select a template":["Select a template"],"info@dcc.ac.uk":["info@dcc.ac.uk"],"You have been given access to a Data Management Plan":["You have been given access to a Data Management Plan"],"DMP permissions changed":["DMP permissions changed"],"DMP access removed":["DMP access removed"],"Answers":["Answers"],"Answer questions":["Answer questions"],"Last edited":["Last edited"],"Select an action":["Select an action"],"Answered ":["Answered "]," by ":[" by "],"Example answer":["Example answer"],"Not answered yet":["Not answered yet"],"No questions have been answered":["No questions have been answered"],"Policy Expectations":["Policy Expectations"],"Share note":["Share note"],"Notes":["Notes"],"A question can only have one answer.":["A question can only have one answer."],"The question must belong to the correct template.":["The question must belong to the correct template."],"Add note":["Add note"],"Share note with collaborators":["Share note with collaborators"],"Noted by:":["Noted by:"],"Are you sure you would like to remove this note?":["Are you sure you would like to remove this note?"],"Note removed by":["Note removed by"],"Note removed by you":["Note removed by you"],"Comment was successfully created.":[""],"Comment was successfully updated.":[""],"Comment has been removed.":[""],"Funder":["Funder"],"Institution":["Institution"],"Project":["Project"],"School":["School"],"Publisher":["Publisher"],"Other guidance":["Other guidance"],"Unit":["Unit"],"Please enter the name of your organisation.":["Please enter the name of your organization."],"Edit plan details":["Edit plan details"],"Grant number":["Grant Number"],"Grant reference number if applicable [POST-AWARD DMPs ONLY]":["Grant reference number if applicable [POST-AWARD DMPs ONLY]"],"Not applicable/not listed.":["Not applicable/not listed."],"There are a number of possible templates you could use. Please choose one.":["There are a number of possible templates you could use. Please choose one."],"Plan name":["Plan name"],"My plan":["My plan"],"Plan was successfully created.":["Plan was successfully created."],"Plan was successfully updated.":["Plan was successfully updated."],"Principal Investigator/Researcher":["Principal Investigator/Researcher"],"Name of Principal Investigator(s) or main researcher(s) on the project.":["Name of Principal Investigator(s) or main researcher(s) on the project."],"Principal Investigator/Researcher ID":["Principal Investigator/Researcher ID"],"E.g ORCID http://orcid.org/.":["E.g ORCID http://orcid.org/."],"Research funder if relevant":["Research funder if relevant"],"Funder name":["Funder name"],"Summary about the questions":["Summary about the questions"],"Plan details":["Plan details"],"

From here you can download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application.
Select what format you wish to use and click to 'Export'.

":["

From here you can download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application.
Select what format you wish to use and click to 'Export'.

"],"questions answered":["questions answered"],"You have altered answers but have not saved them:":["You have altered answers but have not saved them:"],"Would you like to save them now?":["Would you like to save them now?"],"Unsaved answers":["Unsaved answers"],"Answer was successfully recorded.":["Answer was successfully recorded."],"There was an error saving the answer.":["There was an error saving the answer."],"No change in answer content - not saved.":["No change in answer content - not saved."],"Plan data contact":["Plan data contact"],"Name (if different to above), telephone and email contact details":["Name (if different to above), telephone and email contact details"],"If applying for funding, state the name exactly as in the grant proposal.":["If applying for funding, state the name exactly as in the grant proposal."],"

Questions to consider:

  • - What is the nature of your research project?
  • - What research questions are you addressing?
  • - For what purpose are the data being collected or created?

Guidance:

Briefly summarise the type of study (or studies) to help others understand the purposes for which the data are being collected or created.

":["

Questions to consider:

  • - What is the nature of your research project?
  • - What research questions are you addressing?
  • - For what purpose are the data being collected or created?

Guidance:

Briefly summarise the type of study (or studies) to help others understand the purposes for which the data are being collected or created.

"],"ID":["ID"],"A pertinent ID as determined by the funder and/or institution.":["A pertinent ID as determined by the funder and/or institution."],"This plan is based on:":["This plan is based on:"],"My plans":["My plans"],"Visibility":["Visibility"],"Private":["Private"],"Organisational":["Organizational"],"Public":["Public"],"Test/Practice":["Test/Practice"],"Private (owners, co-owners, and administrators only) See our Terms of Use.":["Private (owners, co-owners, and administrators only) See our Terms of Use."],"Organisational (visibile to others within your organisation)":["Organizational (visibile to others within your organization)"],"Public (Your DMP will appear on the Public DMPs page of this site)":["Public (Your DMP will appear on the Public DMPs page of this site)"],"Test/Practice (your plan is not visible to other users) See our Terms of Use.":["Test/Practice (your plan is not visible to other users) See our Terms of Use."],"Not specified (will be visible to others within your organisation by default)":["Not specified (will be visible to others within your organization by default)"],"The items you select here will be displayed in the table below. You can sort the data by each of these headings or filter by entering a text string in the search box.":["The items you select here will be displayed in the table below. You can sort the data by each of these headings or filter by entering a text string in the search box."],"

Welcome.
You are now ready to create your first DMP.
Click the 'Create plan' button below to begin.

":["

Welcome.
You are now ready to create your first DMP.
Click the 'Create plan' button below to begin.

"],"

The table below lists the plans that you have created, and any that have been shared with you by others.
These can be edited, shared, exported or deleted at anytime.

":["

The table below lists the plans that you have created, and any that have been shared with you by others.
These can be edited, shared, exported or deleted at anytime.

"],"This page gives you an overview of your plan. It tells what your plan is based on and gives an overview of the questions that you will be asked.":["This page gives you an overview of your plan. It tells what your plan is based on and gives an overview of the questions that you will be asked."],"Please fill in the basic project details below and click 'Update' to save":["Please fill in the basic project details below and click 'Update' to save"],"Are you sure you wish to delete this plan? If the plan is being shared with other users, by deleting it from your list, the plan will be deleted from their plan list as well":["Are you sure you wish to delete this plan? If the plan is being shared with other users, by deleting it from your list, the plan will be deleted from their plan list as well"],"Confirm plan details":["Confirm plan details"],"Where your funder or institution doesn't have specific requirements (or if you left these options blank), you will see the %{organisation_abbreviation} Checklist. This offers a generic set of DMP questions and guidance. For more details see: DMP checklist 2013.":["Where your funder or institution doesn't have specific requirements (or if you left these options blank), you will see the %{organisation_abbreviation} Checklist. This offers a generic set of DMP questions and guidance. For more details see: DMP checklist 2013."],"Yes, create plan":["Yes, create plan"],"You have selected the Default DMP, which is based on the %{organisation_abbreviation} Checklist. This offers a generic set of DMP questions and guidance. For more details see: DMP checklist 2013.":["You have selected the Default DMP, which is based on the %{organisation_abbreviation} Checklist. This offers a generic set of DMP questions and guidance. For more details see: DMP checklist 2013."],"Please note: %{org_name} provides a DMP template. If you wish to use it select 'Cancel', otherwise select 'Create plan'":["Please note: %{org_name} provides a DMP template. If you wish to use it select 'Cancel', otherwise select 'Create plan'"],"Shared?":["Shared?"],"

You can give other people access to your plan here. There are three permission levels.

  • Users with \"read only\" access can only read the plan.
  • Editors can contribute to the plan.
  • Co-owners can also contribute to the plan, but additionally can edit the plan details and control access to the plan.

Add each collaborator in turn by entering their email address below, choosing a permission level and clicking \"Add collaborator\".

Those you invite will receive an email notification that they have access to this plan, inviting them to register with %{application_name} if they don\\'t already have an account. A notification is also issued when a user\\'s permission level is changed.

":["

You can give other people access to your plan here. There are three permission levels.

  • Users with \"read only\" access can only read the plan.
  • Editors can contribute to the plan.
  • Co-owners can also contribute to the plan, but additionally can edit the plan details and control access to the plan.

Add each collaborator in turn by entering their email address below, choosing a permission level and clicking \"Add collaborator\".

Those you invite will receive an email notification that they have access to this plan, inviting them to register with %{application_name} if they don\\'t already have an account. A notification is also issued when a user\\'s permission level is changed.

"],"Collaborators":["Collaborators"],"Add collaborator":["Add collaborator"],"Add":["Add"],"Permissions":["Permissions"],"Editors can contribute to plans. Co-owners have additional rights to edit plan details and control access.":["Editors can contribute to plans. Co-owners have additional rights to edit plan details and control access."],"Remove user access":["Remove user access"],"Are you sure?":["Are you sure?"],"Co-owner":["Co-owner"],"Read only":["Read only"],"This section is locked for editing by ":["This section is locked for editing by "],"Create a new plan":["Create a new plan"],"

Please select from the following drop-downs so we can determine what questions and guidance should be displayed in your plan.

If you aren't responding to specific requirements from a funder or an institution, select here to write a generic DMP based on the most common themes.

":["

Please select from the following drop-downs so we can determine what questions and guidance should be displayed in your plan.

If you aren't responding to specific requirements from a funder or an institution, select here to write a generic DMP based on the most common themes.

"],"Default DMP":["Default DMP"],"If applying for funding, select your research funder.":["If applying for funding, select your research funder."],"Otherwise leave blank.":["Otherwise leave blank."],"Name of funder, if applicable.":["Name of funder, if applicable."],"To see institutional questions and/or guidance, select your organisation.":["To see institutional questions and/or guidance, select your organization."],"You may leave blank or select a different organisation to your own.":["You may leave blank or select a different organization to your own."],"Tick to select any other sources of guidance you wish to see.":["Tick to select any other sources of guidance you wish to see."],"Configure":["Configure"],"Template Owner":["Template Owner"],"Identifier":["Identifier"],"Principal Investigator / Researcher":["Principal Investigator / Researcher"]," - ":[" - "],"Organization":["Organization"],"Filter plans":["Filter plans"],"Filter":["Filter"],"No plans match '%{filter}'":["No plans match '%{filter}'"],"No matches":["No matches"],"User added to project":["User added to project"],"Invitation issued successfully.":["Invitation issued successfully."],"Please enter an email address":["Please enter an email address"],"Sharing details successfully updated.":["Sharing details successfully updated."],"Access removed":["Access removed"],"Project was successfully updated.":["Project was successfully updated."],"Project was successfully created.":["Project was successfully created."],"Details successfully updated.":["Details successfully updated."],"Choose a template":["Choose a template"],"Question not answered.":["Question not answered."],"This document was generated by %{application_name} (http://dmponline.dcc.ac.uk)":["This document was generated by %{application_name} (http://dmponline.dcc.ac.uk)"],"approx. %{space_used}% of available space used (max %{num_pages} pages)":["approx. %{space_used}% of available space used (max %{num_pages} pages)"],"approx. %{space_used}% of available space used":["approx. %{space_used}% of available space used"],"Plan Name":["Plan Name"],"Plan ID":["Plan ID"],"Plan Data Contact":["Plan Data Contact"],"Plan Description":["Description"],"Your ORCID":["Your ORCID"],"%{value} is not a valid format":["%{value} is not a valid format"],"Settings":["Settings"],"Settings - My plans":["Settings - My plans"],"The table below lists the available columns that can be shown on the 'My plans' list. Choose which you would like to appear.":["The table below lists the available columns that can be shown on the 'My plans' list. Choose which you would like to appear."],"'name' must be included in column list.":["'name' must be included in column list."],"Duplicate column name. Please only include each column once.":["Duplicate column name. Please only include each column once."],"Unknown column name.":["Unknown column name."],"The plan is incomplete.":["The plan is incomplete."],"File Name":["File Name"],"Reset":["Reset"],"(Using custom PDF formatting values)":["(Using custom PDF formatting values)"],"(Using template PDF formatting values)":["(Using template PDF formatting values)"],"(Using default PDF formatting values)":["(Using default PDF formatting values)"],"Included Elements":["Included Elements"],"PDF Formatting":["PDF Formatting"],"Face":["Face"],"Size":["Size"],"Font":["Font"],"Margin":["Margin"],"Top":["Top"],"Bottom":["Bottom"],"Left":["Left"],"Right":["Right"],"Maximum number of pages":["Maximum number of pages"],"A required setting has not been provided":["A required setting has not been provided"],"Margin value is invalid":["Margin value is invalid"],"Margin cannot be negative":["Margin cannot be negative"],"Unknown margin. Can only be 'top', 'bottom', 'left' or 'right'":["Unknown margin. Can only be 'top', 'bottom', 'left' or 'right'"],"Invalid font size":["Invalid font size"],"Invalid font face":["Invalid font face"],"Unknown formatting setting":["Unknown formatting setting"],"Invalid maximum pages":["Invalid maximum pages"],"This account does not have access to that plan.":["This account does not have access to that plan."],"Question text is empty, please enter your question.":["Question text is empty, please enter your question."],"add guidance text":["add guidance text"],"select a question":["select a question"],"select at least one theme":["select at least one theme"],"select a guidance group":["select a guidance group"],"Please only enter up to 165 characters, you have used":["Please only enter up to 165 characters, you have used"],"If you are entering an URL try to use something like http://tinyurl.com/ to make it smaller.":["If you are entering an URL try to use something like http://tinyurl.com/ to make it smaller."],"You have unsaved answers in the following sections:\\n":["You have unsaved answers in the following sections:\\n"],"Resend confirmation instructions":["Resend confirmation instructions"],"Welcome to %{application_name}":["Welcome to %{application_name}"],"Thank you for registering at %{application_name}. Please confirm your email address:":["Thank you for registering at %{application_name}. Please confirm your email address:"],"Click here to confirm your account":["Click here to confirm your account"],"(or copy":["(or copy"],"into your browser).":["into your browser)."],"A colleague has invited you to contribute to their Data Management Plan at":["A colleague has invited you to contribute to their Data Management Plan at"],"Click here to accept the invitation":["Click here to accept the invitation"],"

If you don't want to accept the invitation, please ignore this email.
Your account won't be created until you access the link above and set your password.

":["

If you don't want to accept the invitation, please ignore this email.
Your account won't be created until you access the link above and set your password.

"],"Someone has requested a link to change your":["Someone has requested a link to change your"],"password. You can do this through the link below.":["password. You can do this through the link below."],"

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

":["

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

"],"Hello":["Hello"],"Your ":["Your "]," account has been locked due to an excessive number of unsuccessful sign in attempts.":[" account has been locked due to an excessive number of unsuccessful sign in attempts."],"Click the link below to unlock your account:":["Click the link below to unlock your account:"],"Unlock my account":["Unlock my account"],"Currently waiting confirmation for: ":["Currently waiting confirmation for: "],"Resend unlock instructions":["Resend unlock instructions"],"{\"Error\":\"Bad credentials\"}":["{\"Error\":\"Bad credentials\"}"],"{\"Error\":\"Organisation does not exist\"}":["{\"Error\":\"Organization does not exist\"}"],"{\"Error\":\"Organisation specified is not a funder\"}":["{\"Error\":\"Organization specified is not a funder\"}"],"{\"Error\":\"Organisation has more than one template and template name unspecified or invalid\"}":["{\"Error\":\"Organization has more than one template and template name unspecified or invalid\"}"],"{\"Error\":\"You do not have authorisation to view this endpoint\"}":["{\"Error\":\"You do not have authorisation to view this endpoint\"}"],"{\"Error\":\"You do not have authorisation to view this resource\"}":["{\"Error\":\"You do not have authorisation to view this resource\"}"],"Your account has bee connected to %{scheme}":["Your account has bee connected to %{scheme}"],"We could not connect your account to %{scheme}":["We could not connect your account to %{scheme}"],"Your account has been disconnected from %{scheme}":["Your account has been disconnected from %{scheme}"],"We were unable to disconnect your account from %{scheme}":["We were unable to disconnect your account from %{scheme}"],"It does not look like you have setup an account with us yet. Please fill in the following information to complete your registration.":["It does not look like you have setup an account with us yet. Please fill in the following information to complete your registration."],"We were unable to verify your account. Please use the following form to create a new account. You will be able to link your new account afterward.":["We were unable to verify your account. Please use the following form to create a new account. You will be able to link your new account afterward."],"http://orcid.org/sites/default/files/images/orcid_16x16.png":["http://orcid.org/sites/default/files/images/orcid_16x16.png"],"https://orcid.org/%{id}":["https://orcid.org/%{id}"],"Create or Connect your ORCID ID":["Create or Connect your ORCID ID"],"ORCID provides a persistent digital identifier that distinguishes you from other researchers. Learn more at orcid.org":["ORCID provides a persistent digital identifier that distinguishes you from other researchers. Learn more at orcid.org"],"Are you sure you want to disconnect your ORCID ID?":["Are you sure you want to disconnect your ORCID ID?"],"Disconnect your account from ORCID. You can reconnect at any time.":["Disconnect your account from ORCID. You can reconnect at any time."],"Research Institute":["Research Institute"],"Digital Curation Centre":["Digital Curation Centre"],"admin":["admin"],"org_admin":["org_admin"],"user":["user"],"add_organisations":["add_organisations"],"change_org_affiliation":["change_org_affiliation"],"grant_permissions":["grant_permissions"],"modify_templates":["modify_templates"],"modify_guidance":["modify_guidance"],"use_api":["use_api"],"change_org_details":["change_org_details"],"grant_api_to_orgs":["grant_api_to_orgs"],"guidances":["guidances"],"plans":["plans"],"templates":["templates"],"statistics":["statistics"],"About %{application_name}":["About %{application_name}"],"Background":["Background"],"Latest news":["Latest news"],"

Funding bodies increasingly require their grant-holders to produce Data Management Plans(DMP), both during the bid-preparation stage and after funding has been secured. %{application_name} has been produced by the %{organisation_name} to help research teams respond to this requirement, and any expectations that their institution or others may apply.

The %{organisation_abbreviation} worked closely with research funders and universities to produce a tool that assists researchers to produce an effective data management plan (DMP) to cater for the whole lifecycle of a project, from bid-preparation stage through to completion.


How the tool works

There are a number of templates within the tool that represent the requirements of different funders and institutions. Users are asked three questions at the outset so we can determine the appropriate template to display (e.g. the ESRC template when applying for an ESRC grant). Guidance is provided to help you interpret and answer the questions. This guidance is provided by researcher funders, universities and disciplines.


Getting Started

If you have an account please sign in and start creating or editing your DMP.

If you do not have a %{application_name} account, click on 'Sign up' on the homepage.

Please visit the 'Help' page for guidance.


Additional Information

We are constantly improving the user interface and functionality of %{application_name}. If you would like to contribute with feedback and suggestions, please contact us by emailing dmponline@dcc.ac.uk. You can also report bugs and request new features directly on GitHub

":["

Funding bodies increasingly require their grant-holders to produce Data Management Plans(DMP), both during the bid-preparation stage and after funding has been secured. %{application_name} has been produced by the %{organisation_name} to help research teams respond to this requirement, and any expectations that their institution or others may apply.

The %{organisation_abbreviation} worked closely with research funders and universities to produce a tool that assists researchers to produce an effective data management plan (DMP) to cater for the whole lifecycle of a project, from bid-preparation stage through to completion.


How the tool works

There are a number of templates within the tool that represent the requirements of different funders and institutions. Users are asked three questions at the outset so we can determine the appropriate template to display (e.g. the ESRC template when applying for an ESRC grant). Guidance is provided to help you interpret and answer the questions. This guidance is provided by researcher funders, universities and disciplines.


Getting Started

If you have an account please sign in and start creating or editing your DMP.

If you do not have a %{application_name} account, click on 'Sign up' on the homepage.

Please visit the 'Help' page for guidance.


Additional Information

We are constantly improving the user interface and functionality of %{application_name}. If you would like to contribute with feedback and suggestions, please contact us by emailing dmponline@dcc.ac.uk. You can also report bugs and request new features directly on GitHub

"],"

%{application_name} stories from the %{organisation_abbreviation} website


":["

%{application_name} stories from the %{organisation_abbreviation} website


"],"On %{application_name}":["On %{application_name}"],"On data management planning":["On data management planning"],"

Useful resources on Data Management Planning

Example Data Management Plans

  • Technical plan submitted to the AHRC [PDF, 7 pages]
    A DMP submitted by a researcher from the University of Bristol, also including comments from the reviewers
  • Two social science DMPs [PDF, 7 pages]
    Example plans from researchers at the University of Leeds, shared as part of the Leeds RoaDMaP training materials
  • Health sciences DMP [PDF, 11 pages]
    Example DMP produced by the DATUM for Health RDM training project
  • Psychology DMP [PDF, 11 pages]
    A very detailed, fictional psychology DMP produced by the DMTpsych RDM training project, based on a seminal psychology experiment
  • UCSD Example Data Management Plans [webpage]
    Over 20 example plans submitted to the National Science Foundation (NSF) in the United States by academics at UC San Diego
  • Colorado School of Mines examples [webpage]
    A variety of US example DMPs from Mines and elsewhere
  • NSF data management plans [webpage]
    5 DMPs submitted to the NSF, shared by the DataOne initiative
  • Biology and chemistry DMPs [webpage]
    Three example DMPs from the USA shared by NECDMC, an instructional tool for teaching RDM to undergraduates, graduate students, and researchers in the health sciences, sciences and engineering.

Useful guides on Research Data Management in general

  • Managing and Sharing Data: best practice for researchers [PDF, 36 pages]
    A guide by the UK Data Service covering a range of topics including data formats, documentaion, ethics, copyright and data sharing.
  • How to Cite Datasets and Link to Publications [PDF, 12 pages]
    A guide by the Digital Curation Centre giving practical guidelines on how to cite data and the different tools and infrastructure that can be used to support data citation.
  • How to License Research Data [PDF, 16 pages]
    A guide by the Digital Curation Centre that outlines different types of licenses, the pros and cons of each and how they can be applied.
  • How to Appraise and Select Research Data for Curation [PDF, 8 pages]
    A guide by ANDS and the Digital Curation Centre on how to select which data to keep for long-term preservation, sharing and reuse. The guide puts forward several criteria to aid selection decisions.
  • Research Data MANTRA [online resource]
    An online training course designed for researchers or others planning to manage digital data as part of the research process. The course includes a number of software practicals on using SPSS, R, ArcGIS and NVivo.
":["

Useful resources on Data Management Planning

Example Data Management Plans

  • Technical plan submitted to the AHRC [PDF, 7 pages]
    A DMP submitted by a researcher from the University of Bristol, also including comments from the reviewers
  • Two social science DMPs [PDF, 7 pages]
    Example plans from researchers at the University of Leeds, shared as part of the Leeds RoaDMaP training materials
  • Health sciences DMP [PDF, 11 pages]
    Example DMP produced by the DATUM for Health RDM training project
  • Psychology DMP [PDF, 11 pages]
    A very detailed, fictional psychology DMP produced by the DMTpsych RDM training project, based on a seminal psychology experiment
  • UCSD Example Data Management Plans [webpage]
    Over 20 example plans submitted to the National Science Foundation (NSF) in the United States by academics at UC San Diego
  • Colorado School of Mines examples [webpage]
    A variety of US example DMPs from Mines and elsewhere
  • NSF data management plans [webpage]
    5 DMPs submitted to the NSF, shared by the DataOne initiative
  • Biology and chemistry DMPs [webpage]
    Three example DMPs from the USA shared by NECDMC, an instructional tool for teaching RDM to undergraduates, graduate students, and researchers in the health sciences, sciences and engineering.

Useful guides on Research Data Management in general

  • Managing and Sharing Data: best practice for researchers [PDF, 36 pages]
    A guide by the UK Data Service covering a range of topics including data formats, documentaion, ethics, copyright and data sharing.
  • How to Cite Datasets and Link to Publications [PDF, 12 pages]
    A guide by the Digital Curation Centre giving practical guidelines on how to cite data and the different tools and infrastructure that can be used to support data citation.
  • How to License Research Data [PDF, 16 pages]
    A guide by the Digital Curation Centre that outlines different types of licenses, the pros and cons of each and how they can be applied.
  • How to Appraise and Select Research Data for Curation [PDF, 8 pages]
    A guide by ANDS and the %{organisation_abbreviation} on how to select which data to keep for long-term preservation, sharing and reuse. The guide puts forward several criteria to aid selection decisions.
  • Research Data MANTRA [online resource]
    An online training course designed for researchers or others planning to manage digital data as part of the research process. The course includes a number of software practicals on using SPSS, R, ArcGIS and NVivo.
"],"

When you login to %{application_name} you will be directed to the 'My plans' page. From here you can edit, share, export or delete any of your plans. You will also see plans that have been shared with you by others.

Create a plan

To create a plan, click the 'Create plan' button from the 'My plans' page or the top menu. Select options from the drop-down menus and tickboxes to determine what questions and guidance you should be presented with. Confirm your selection by clicking 'Yes, create plan'

Write your plan

The tabbed interface allows you to navigate through different functions when editing your plan.

  • - 'Plan details' includes basic administrative details, tells you what sets of questions and guidance your plan is based on and gives you an overview to the questions that you will be asked.
  • - The following tab(s) present the questions to answer. There may be more than one tab if your funder or university asks different sets of questions at different stages e.g. at grant application and post-award.
  • - The 'Share' tab allows you to invite others to read or contribute to your plan.
  • - The 'Export' tab allows you to download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application.

When viewing any of the question tabs, you will see the different sections of your plan displayed. Click into these in turn to answer the questions. You can format your responses using the text editing buttons.

Guidance is displayed in the right-hand panel. Click the '+' symbol to view this.

Remember to 'save' your responses before moving on.

Share plans

Insert the email address of any collaborators you would like to invite to read or edit your plan. Set the level of permissions you would like to grant them via the drop-down options and click to 'Add collaborator'

Export plans

From here you can download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application. Choose what format you would like to view/download your plan in and click to export. When you login to %{application_name} you will be directed to the 'My plans' page. From here you can edit, share, export or delete any of your plans. You will also see plans that have been shared with you by others.

":["

When you login to %{application_name} you will be directed to the 'My plans' page. From here you can edit, share, export or delete any of your plans. You will also see plans that have been shared with you by others.

Create a plan

To create a plan, click the 'Create plan' button from the 'My plans' page or the top menu. Select options from the drop-down menus and tickboxes to determine what questions and guidance you should be presented with. Confirm your selection by clicking 'Yes, create plan'

Write your plan

The tabbed interface allows you to navigate through different functions when editing your plan.

  • - 'Plan details' includes basic administrative details, tells you what sets of questions and guidance your plan is based on and gives you an overview to the questions that you will be asked.
  • - The following tab(s) present the questions to answer. There may be more than one tab if your funder or university asks different sets of questions at different stages e.g. at grant application and post-award.
  • - The 'Share' tab allows you to invite others to read or contribute to your plan.
  • - The 'Export' tab allows you to download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application.

When viewing any of the question tabs, you will see the different sections of your plan displayed. Click into these in turn to answer the questions. You can format your responses using the text editing buttons.

Guidance is displayed in the right-hand panel. Click the '+' symbol to view this.

Remember to 'save' your responses before moving on.

Share plans

Insert the email address of any collaborators you would like to invite to read or edit your plan. Set the level of permissions you would like to grant them via the drop-down options and click to 'Add collaborator'

Export plans

From here you can download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application. Choose what format you would like to view/download your plan in and click to export. When you login to %{application_name} you will be directed to the 'My plans' page. From here you can edit, share, export or delete any of your plans. You will also see plans that have been shared with you by others.

"],"Contact us":["Contact us"],"

%{application_name} is provided by the %{organisation_name}. You can find out more about us on our website. If you would like to contact us about %{application_name}, please enter your query in the form below or email dmponline@dcc.ac.uk.

":["

%{application_name} is provided by the %{organisation_name}. You can find out more about us on our website. If you would like to contact us about %{application_name}, please enter your query in the form below or email dmponline@dcc.ac.uk.

"],"

If you have a feature request or think you have found a bug, please check out the list of issues on GitHub. If your issue isn't listed there, please add it; if it is, please add a comment if you have more information or just to let us know how important it is to you. This will help us to prioritise future developments.

":["

If you have a feature request or think you have found a bug, please check out the list of issues on GitHub. If your issue isn't listed there, please add it; if it is, please add a comment if you have more information or just to let us know how important it is to you. This will help us to prioritise future developments.

"],"
  • %{organisation_name}
  • %{organisation_address_line1}
  • %{organisation_address_line2}
  • %{organisation_address_line3}
  • %{organisation_address_line4}
  • %{organisation_address_country}

CDL Helpline: %{organisation_telephone}

Email %{organisation_email}

":["
  • %{organisation_name}
  • %{organisation_address_line1}
  • %{organisation_address_line2}
  • %{organisation_address_line3}
  • %{organisation_address_line4}
  • %{organisation_address_country}

CDL Helpline: %{organisation_telephone}

Email %{organisation_email}

"],"Releases":["Releases"],"Get involved":["Get involved"],"

The %{organisation_abbreviation} are now collaborating to develop a joint codebase for Data Management Planning called DMP Roadmap. Both of our tools will be delivered using this in the future. We've agreed what features need to be included and are planning a few sprints to deliver these. The initial release will include all of the main priorities we already had flagged, including:

  • - APIs to create plans, extract guidance and generate statistics from %{application_name}
  • - Multi-lingual support so foreign language versions can be presented
  • - Locales to provide a refined set of content for particular countries or other contexts
  • - A lifecycle to indicate the status of DMPs and allow institutional access to plans
  • - Support for reviewing Data Management Plans

%{application_name} has an active and growing user base, and we are grateful to the members who suggest ideas for new and improved features. If you would like to help shape our future plans, please join the user group. More information on how you can engage with us is available under the 'Get involved' tab.


Current release

The current version of %{application_name} is %{application_version}.

The code is available on GitHub


":["

The %{organisation_abbreviation} are now collaborating to develop a joint codebase for Data Management Planning called DMP Roadmap. Both of our tools will be delivered using this in the future. We've agreed what features need to be included and are planning a few sprints to deliver these. The initial release will include all of the main priorities we already had flagged, including:

  • - APIs to create plans, extract guidance and generate statistics from %{application_name}
  • - Multi-lingual support so foreign language versions can be presented
  • - Locales to provide a refined set of content for particular countries or other contexts
  • - A lifecycle to indicate the status of DMPs and allow institutional access to plans
  • - Support for reviewing Data Management Plans

%{application_name} has an active and growing user base, and we are grateful to the members who suggest ideas for new and improved features. If you would like to help shape our future plans, please join the user group. More information on how you can engage with us is available under the 'Get involved' tab.


Current release

The current version of %{application_name} is %{application_version}.

The code is available on GitHub


"],"

%{application_name} is developed and maintained by the UK %{organisation_name}. We’re a small team, and are happy to collaborate with others. There are various ways you can get involved:

Join the user group

We run a listserv for the %{application_name} user group that you can request to join. We also host periodic meetings to consult on our plans. Being part of the user group gives you the opportunity to be informed about future developments and to provide feedback to help shape our plans.

Our user group sessions are usually focused around a certain topic (e.g. fleshing out use cases for an API) so invites are sent based on your areas of expertise. It is helpful for us to know your role and interests to invite relevant people to each session. Please introduce yourself on the list and share your ideas.

Notes from previous user group sessions are provided below:

Please let us know your interests and share your ideas for future developments via the mailing list so the community as a whole can feedback on them.


Customise %{application_name}

%{application_name} can be customised by institutions and disciplines. You can add templates for users in your organisation and tailored guidance that explains local support and services. Example answers can also be offered to help users understand what to write in a Data Management Plan. To do this you’ll need to request admin access, so please email us on dmponline@dcc.ac.uk.

Futher guidance on customising %{application_name} is available on the %{application_name} website.


Contribute to the code

%{application_name} is a Ruby on Rails application. The source code is made available under an MIT License. This permits others to reuse the code freely, but obligates you to share the source code for any extensions in the same way. Please inform us if you install an instance of %{application_name} and offer your contributions back to the community.

If you install an instance of %{application_name} we require that you credit the %{organisation_abbreviation} as originators of the tool. We recommend that the acknowledgement takes the form of the %{application_name} logo with a link back to the %{organisation_abbreviation}-hosted version of the tool.

We are willing to work with external developers to add new features to the tool. We are also open to delivering new features on a chargeable basis. If there are extensions you would like to see prioritised and have resource to support additional developer effort, please contact us on dmponline@dcc.ac.uk to negotiate terms.

The code is available on GitHub

Support our work

We are impressed by the uptake of %{application_name} both in the UK and internationally and are really keen to hear how you are using the tool and promoting it in your context. We are aware that others have run training courses, developed guidance materials and advocated use of the tool. Please notify us of this as it helps to show impact.

We are currently investigating options for revenue generation. This will help us serve the increased demand more effectively and safeguard the long-term sustainability of %{application_name}. Plans will be released for consultation soon but we also welcome your suggestions on how best to support our work.

":["

%{application_name} is developed and maintained by the UK %{organisation_name}. We’re a small team, and are happy to collaborate with others. There are various ways you can get involved:

Join the user group

We run a listserv for the %{application_name} user group that you can request to join. We also host periodic meetings to consult on our plans. Being part of the user group gives you the opportunity to be informed about future developments and to provide feedback to help shape our plans.

Our user group sessions are usually focused around a certain topic (e.g. fleshing out use cases for an API) so invites are sent based on your areas of expertise. It is helpful for us to know your role and interests to invite relevant people to each session. Please introduce yourself on the list and share your ideas.

Notes from previous user group sessions are provided below:

Please let us know your interests and share your ideas for future developments via the mailing list so the community as a whole can feedback on them.


Customise %{application_name}

%{application_name} can be customised by institutions and disciplines. You can add templates for users in your organisation and tailored guidance that explains local support and services. Example answers can also be offered to help users understand what to write in a Data Management Plan. To do this you’ll need to request admin access, so please email us on dmponline@dcc.ac.uk.

Futher guidance on customising %{application_name} is available on the %{application_name} website.


Contribute to the code

%{application_name} is a Ruby on Rails application. The source code is made available under an MIT License. This permits others to reuse the code freely, but obligates you to share the source code for any extensions in the same way. Please inform us if you install an instance of %{application_name} and offer your contributions back to the community.

If you install an instance of %{application_name} we require that you credit the %{organisation_abbreviation} as originators of the tool. We recommend that the acknowledgement takes the form of the %{application_name} logo with a link back to the %{organisation_abbreviation}-hosted version of the tool.

We are willing to work with external developers to add new features to the tool. We are also open to delivering new features on a chargeable basis. If there are extensions you would like to see prioritised and have resource to support additional developer effort, please contact us on dmponline@dcc.ac.uk to negotiate terms.

The code is available on GitHub

Support our work

We are impressed by the uptake of %{application_name} both in the UK and internationally and are really keen to hear how you are using the tool and promoting it in your context. We are aware that others have run training courses, developed guidance materials and advocated use of the tool. Please notify us of this as it helps to show impact.

We are currently investigating options for revenue generation. This will help us serve the increased demand more effectively and safeguard the long-term sustainability of %{application_name}. Plans will be released for consultation soon but we also welcome your suggestions on how best to support our work.

"],"Terms of use":["Terms of use"],"

The %{organisation_name} ('%{organisation_abbreviation}') are consortia supported by %{legal_entity}. Our primary constituency is the research community, particularly the higher and further education sector.

%{application_name}

%{application_name} ('the tool', 'the system') is a tool developed by the %{organisation_abbreviation} as a shared resource for the research community. It is hosted by %{legal_entity}.

Your personal details

In order to help identify and administer your account with %{application_name}, we need to store your email address. We may also use it to contact you to obtain feedback on your use of the tool, or to inform you of the latest developments or releases. The information may be transferred between the %{organisation_abbreviation} partner institutions but only for legitimate %{organisation_abbreviation} purposes. We will not sell, rent or trade any personal information you provide to us.

Privacy policy

The information you enter into this system can be seen by you, people you have chosen to share access with, and - solely for the purposes of maintaining the service - system administrators at %{legal_entity}. We compile anonymised, automated and aggregated information from plans, but we will not directly access, make use of, or share your content with anyone else without your permission. Authorised officers of your home institution may access your plans for specific purposes - for example, to track compliance with funder/institutional requirements or to calculate storage requirements.

Freedom of Information

%{legal_entity} holds your plans on your behalf, but they are your property and responsibility. Any FOI applicants will be referred back to your home institution.

Passwords

Your password is stored in encrypted form and cannot be retrieved. If forgotten it has to be reset.

Cookies

Please note that %{application_name} uses Cookies. Further information about Cookies and how we use them is available on the main DCC website.


Use of the tool indicates that you understand and agree to these terms and conditions.

":["

The %{organisation_name} ('%{organisation_abbreviation}') are consortia supported by %{legal_entity}. Our primary constituency is the research community, particularly the higher and further education sector.

%{application_name}

%{application_name} ('the tool', 'the system') is a tool developed by the %{organisation_abbreviation} as a shared resource for the research community. It is hosted by %{legal_entity}.

Your personal details

In order to help identify and administer your account with %{application_name}, we need to store your email address. We may also use it to contact you to obtain feedback on your use of the tool, or to inform you of the latest developments or releases. The information may be transferred between the %{organisation_abbreviation} partner institutions but only for legitimate %{organisation_abbreviation} purposes. We will not sell, rent or trade any personal information you provide to us.

Privacy policy

The information you enter into this system can be seen by you, people you have chosen to share access with, and - solely for the purposes of maintaining the service - system administrators at %{legal_entity}. We compile anonymised, automated and aggregated information from plans, but we will not directly access, make use of, or share your content with anyone else without your permission. Authorised officers of your home institution may access your plans for specific purposes - for example, to track compliance with funder/institutional requirements or to calculate storage requirements.

Freedom of Information

%{legal_entity} holds your plans on your behalf, but they are your property and responsibility. Any FOI applicants will be referred back to your home institution.

Passwords

Your password is stored in encrypted form and cannot be retrieved. If forgotten it has to be reset.

Cookies

Please note that %{application_name} uses Cookies. Further information about Cookies and how we use them is available on the main DCC website.


Use of the tool indicates that you understand and agree to these terms and conditions.

"],"Public DMPs are plans created using the DMPTool and shared publicly by their owners. They are not vetted for quality, completeness, or adherence to funder guidelines.":["Public DMPs are plans created using the DMPTool and shared publicly by their owners. They are not vetted for quality, completeness, or adherence to funder guidelines."],"There are no public DMPs.":["There are no public DMPs."],"ago":["ago"],"from now":["from now"],"less than a minute":["less than a minute"],"about a minute":["about a minute"],"%{d} minutes":["%{d} minutes"],"about an hour":["about an hour"],"about %{d} hours":["about %{d} hours"],"a day":["a day"],"%{d} days":["%{d} days"],"about a month":["about a month"],"%{d} months":["%{d} months"],"about a year":["about a year"],"%{d} years":["%{d} years"],"":{"lang":"en_US","domain":"app","plural_forms":null}}}}; \ No newline at end of file diff --git a/lib/assets/javascripts/locale/es/app.js b/lib/assets/javascripts/locale/es/app.js new file mode 100644 index 0000000..faef33e --- /dev/null +++ b/lib/assets/javascripts/locale/es/app.js @@ -0,0 +1 @@ +var locales = locales || {}; locales['es'] = {"domain":"app","locale_data":{"app":{"%d-%m-%Y":["%d-%m-%Y"],"%d/%m/%Y":["%d/%m/%Y"],"%d %B, %Y":["%d %B, %Y"],"%a, %b %d %Y %H:%M:%S %z":["%a, %d %b %Y %H:%M:%S %z"],"%d %b %H:%M":["%d %b %H:%M"],"%d/%m/%Y %H:%M":["%d/%m/%Y %H:%M"],"%B %d, %Y %H:%M":["%B %d, %Y %H:%M"],"am":["am"],"pm":["pm"],"%{application_name}":["DMPonline"],"DMP title":[""],"%{organisation_name}":["Digital Curation Centre"],"Welcome.":["Bienvenido/a."],"

%{application_name} has been jointly developed by the %{organisation_name} to help you write data management plans.

":["

DMPonline ha sido desarrollado por el Digital Curation Centre como una herramienta para elaborar planes de gestión de datos.

"],"Screencast on how to use %{application_name}":["Video sobre cómo usar DMPonline"],"Your browser does not support the video tag.":["El navegador no soporta la etiqueta video."],"You need to sign in or sign up before continuing.":[""],"Language":[""],"Language name":[""],"Language abbreviation":[""],"Is default language":[""],"Yes":[""],"No":[""],"Organisation name":["Nombre de la entidad"],"Organisation":["Organización"],"Organisations":["Organizaciones"],"Organisation type":["Tipo de entidad"],"Parent organisation":["Organización superior"],"Organisation was successfully created.":["Se ha creado correctamente la organización."],"Organisation was successfully updated.":["Se ha actualizado correctamente la actualización."],"There seems to be a problem with your logo. Please upload it again.":[""],"Plans":["Planes"],"Title":["Título"],"Description":[""],"Guidance group":["Grupo de orientación"],"No guidance group":["Sin grupo de orientación"],"Guidance":["Guía"],"guidance":[""],"guidance on":[""],"Name":["Nombre"],"Abbreviation":["Abreviatura"],"Question":["Pregunta"],"Question Format":["Formato de la Pregunta"],"Questions":["Preguntas"],"Template title":["Título de la plantilla"],"Section title":["Título de la sección"],"Formatting":[""],"Max Pages":[""],"Phase title":["Título de la fase"],"Version title":["Título de la versión"],"Username":["Nombre de usuario"],"First name":["Nombre"],"Surname":["Apellidos"],"User":["Usuario"],"User was successfully created.":[""],"User role on an Organisation":["Función del usuario en una Organización"],"User role type":["Tipo de función de usuario"],"User role type was successfully created.":[""],"User role type was successfully updated.":[""],"User role":["Función del usuario"],"Role":["Función"],"User status":["Estado del usuario"],"User status was successfully created.":[""],"User status was successfully updated.":[""],"User type":["Tipo de usuario"],"User type was successfully created.":[""],"Last logged in":["Último acceso"],"Version number":["Número de versión"],"Details":["Detalles"],"Phases":["Fases"],"Phase":["Fase"],"Version":["Versión"],"Versions":["Versiones"],"Sections":["Secciones"],"Section":["Sección"],"Multiple question options":["Opciones de preguntas múltiples"],"Templates":["Plantillas"],"Template":["Modelo"],"Themes":["Temas"],"Theme":["Tema"],"Theme was successfully created.":[""],"Theme was successfully updated.":[""],"Suggested answer":["Respuesta sugerida"],"Suggested answers":["Respuestas sugeridas"],"old template field":["campo de la plantilla antigua"],"old theme field":["campo del tema antiguo"],"Token Permission Type":[""],"Permission Description":[""],"Token Permission":[""],"Organisation Token Permission":[""],"Settings updated successfully":[""],"Choose all themes that apply.":[""],"All themes":[""],"Selected themes":[""],"Choose all templates that apply.":[""],"All templates":["Todas las plantillas"],"Selected templates":[""],"Select question format":[""],"No template":[""],"No phase":[""],"No version":[""],"No section":[""],"Organisation language":[""],"Please select your default language from the dropdown list. This will be displayed to users in your organisation, unless they have a different preference or choose another language from the dropdown options on the homepage. If your language is not available and you wish to provide a translation, please contact us.":[""],"Admin area":["Área de administración"],"Admin Details":[""],"Users":["Usuarios"],"Organisation details":["Detalles de la entidad"],"These are the basic details for your organisation.":["Estos son los detalles básicos de su entidad."],"This is what displays as a label on your guidance, e.g. 'Glasgow guidance on Metadata'. It's best to use an abbreviation or short name.":["Esto es lo que se muestra como etiqueta para guiarle, ej: 'Guía de Glasgow sobre Metadatos'. Es preferible usar una abreviación o un nombre corto."],"Contact Email":[""],"The email address of an administrator at your organisation. Your users will use this address if they have questions.":[""],"List of users":["Listado de usuarios"],"Email address":["Dirección de correo electrónico"],"How many plans?":["¿Cuántos planes?"],"Privileges":[""],"Below is a list of users registered for your organisation. You can sort the data by each field.":["Debajo tiene la lista de usuarios registrados en su entidad. Puede ordenar los datos por campo."],"Logo Upload Failed.":[""],"Logo":[""],"Upload a new logo file":[""],"If you decide to use the default DMPRoadmap logo, please check this box to remove your current logo.":[""],"Top banner text":["Texto del banner superior"],"Website":["Sitio web"],"Main organisation":["Entidad principal"],"Last updated":["Última actualización"],"
Please enter information describing your organisation.
":["
Por favor, introduzca la información que describe su entidad.
"],"
Please enter information you would like your users to see while sign in. Do not enter more than 165 characteres.
":["
Por favor, introduzca la información que le gustaría que vieran sus usuarios al identificarse. No introduzca más de 165 caracteres.
"],"
Enter a description that helps you to differentiate between templates e.g. if you have ones for different audiences.
":["
Introduzca una descripción que ayude a distinguir las plantillas. Ej: Si van dirigidas a audiencias distintas.
"],"Please enter an abbreviation to your organisation's name.":["Por favor, introduzca una abreviatura del nombre de su entidad."],"Please enter a valid web address.":["Por favor, introduzca una dirección web válida."],"Please enter your organisation's name.":["Por favor, introduzca el nombre de su entidad."],"Add option":["Añadir opción"],"Add question":["Añadir pregunta"],"Add section":["Añadir sección"],"Remove":["Borrar"],"Order":["Orden"],"Text":["Texto"],"Default":["Por defecto"],"User org role was successfully created.":[""],"User org role was successfully updated.":[""],"API Privleges?":[""],"Edit User Privileges":[""],"Guidance list":["Listado de orientaciones"],"Should this guidance apply:":["Esta guía se refiere a:"],"by themes":["por tema"],"by question":["por pregunta"],"Published":["Publicado"],"Created":["Creación"],"Actions":["Acciones"],"Add guidance":["Añadir orientación"],"Guidance was successfully created.":["La orientación se creó correctamente."],"Guidance was successfully updated.":["La orientación se actualizó correctamente."],"
Please enter guidance text for this theme.
":["
Por favor, introduzca un texto de orientación para este tema.
"],"New guidance":["Nueva orientación"],"View all guidance":["Ver todas las orientaciones"],"Enter your guidance here. You can include links where needed.":["Introduzca sus orientaciones aquí. Puede incluir enlaces si lo cree necesario."],"Decide whether your guidance should display by themes (default) or if it only pertains to a specific question in one of the funder templates.":["Decida si su orientación debe ordenarse por temas (opción por defecto) o si sólo pertenece a una pregunta concreta de una plantilla de una agencia de financiación."],"Select which theme(s) this guidance relates to.":["Seleccione a el/los tema(s) relacionados con esta orientación."],"Select the relevant template, phase, version, section and question from the following dropdown options to define which specific question this guidance should display on.":["Seleccione la plantilla, fase, versión, sección y pregunta de la siguiente lista desplegable para definir las preguntas que esta guía debe mostrar."],"Select which group this guidance relates to.":["Seleccione a que grupo pertenece esta guía."],"Check this box when you are ready for this guidance to appear on user's plans.":[""],"

You can write pieces of guidance to be displayed by theme (e.g. generic guidance on storage and backup that should present across the board) or you can write guidance for specific questions. Writing generic guidance by theme saves you time and effort as your advice will be automatically displayed across all templates rather than having to write guidance to accompany each.

You will usually want your guidance to display on all templates, however there may be cases where you only want it to show for specific funders e.g. if you have specific instructions for applicants to BBSRC for example. This can be set too if needed.

":["

Puede escribir las porciones de la guía que se mostraran por tema (ej: una guía genérica sobre almacenamiento y copias de seguridad que debe presentarse en la página principal) o puede escribir guías para preguntas en concreto. Escribir una guía genérica por tema le ahorra tiempo y esfuerzo porque ésta será mostrada automáticamente en todas sus plantillas.

Probablemente querrá que su guía se muestre en todas sus plantillas, aunque puede haber casos en los que quiera que se muestre sólo para algunas agencias de financiación. Ej: Si tiene instrucciones particulares para BBSRC. Éstas también pueden detallarse si fuera necesario.

"],"You are about to delete '%{guidance_summary}'. Are you sure?":["Está a punto de borrar '%{guidance_summary}'. ¿Está seguro?"],"Add guidance group":["Añadir grupo de orientación"],"Guidance group list":["Listado de grupos de orientación"],"Optional subset":["Subconjunto opcional"],"e.g. School/ Department":["ej: Escuela / Departmento"],"Please enter the group title":["Por favor, introduzca el título del grupo"],"If the guidance is only meant for a subset of users e.g. those in a specific college or institute, check this box. Users will be able to select to display this subset guidance when answering questions in the 'create plan' wizard.":["Si la guía está dirigida a un subconjunto de los usuarios (ej: los pertenecientes a un colegio o instituto), seleccione esta opción. Los usuarios serán capaces de seleccionar esta guía cuando respondan sus preguntas durante la creación del plan."],"Select which templates you want the guidance to display on. This will usually be all templates.":["Selecciones que plantillas debe de mostrar la guía. Normalmente serán todas las plantillas."],"Add an appropriate name for your guidance group e.g. Glasgow guidance. This name will be used to tell the end user where the guidance has come from e.g. 'Glasgow Guidance on Metadata'":["Añada un nombre adecuado para el grupo de su guía (Ej: Guía de Glasgow). Este nombre se usará para indicar a los usuarios finales la procedencia de la guía (Ej: 'Guía de metadatos de Glasgow')"],"

First create a guidance group. This could be institution wide or a subset e.g. a particular College / School, Institute or department. When you create guidance you'll be asked to assign it to a guidance group.

":["

Primero cree un grupo de guías. Este podrá abarcar toda la institución o un subconjunto de la misma (ej: una escuela, colegio o departamento en particular). Cuando cree una guía, necesitará asignarla a un grupo de guías.

"],"You are about to delete '%{guidance_group_name}'. This will affect guidance. Are you sure?":["Está a punto de borrar el grupo '%{guidance_group_name}'. Esto afectará a la orientación. ¿Está seguro?"],"Guidance group was successfully created.":["El grupo de orientación se creó correctamente."],"Guidance group was successfully updated.":["El grupo de orientación se actualizó correctamente."],"Guidance group was successfully deleted.":["El grupo de orientación se borró correctamente."],"Template History":[""],"Create a template":["Crear una plantilla"],"New template":["Nueva plantilla"],"Template details":["Detalles de la plantilla"],"Edit template details":["Editar plantilla"],"View all templates":["Ver todas las plantillas"],"Funders templates":["Plantillas de financiador"],"Please enter a title for your template.":["Por favor, introduzca un título para la plantilla."],"Please enter section title":["Por favor, introduzca el título de la sección"],"
Please enter template description for this theme.
":["
Por favor, introduzca la descripción de la plantilla para este tema.
"],"

If you wish to add an institutional template for a Data Management Plan, use the 'create template' button. You can create more than one template if desired e.g. one for researchers and one for PhD students.

Your template will be presented to users within your institution when no funder templates apply. If you want to add questions to funder templates use the 'customise template' options below.

":["

Si desea añadir una plantilla institucional para un Plan de Gestión de Datos, use el botón 'crear plantilla'. Podrá crear más de una plantilla si lo cree conveniente. Ej: para investigadores y otro para estudiantes de postgrado.

Su plantilla se presentará a los usuarios de su institución cuando no sean aplicables plantillas de agencias de financiación. Si quiere aññadir preguntas a las plantillas de las agencias de financiación, use las siguientes opciones de 'personalizar plantilla'

"],"

To create a new template, first enter a title and description. Once you have saved this you will be presented with options to add one or more phases.

":["

Para crear una plantilla nueva, en primer lugar introduzca un título y una descripción. Tras grabar se le dará la opción de añadir una o más fases.

"],"

Here you can view previously published versions of your template. These can no longer be modified.

":[""],"Enter a description that helps you to differentiate between templates e.g. if you have ones for different audiences":["Introduzca una descripción que le ayude a diferenciar las plantillas. Ej: Si tiene varias para diferentes audiencias"],"Own templates":["Sus plantillas"],"Add new phase +":["Añadir fase nueva +"],"View phase":["Ver fase"],"Edit phase":["Editar fase"],"Back to edit view":["Volver a editar la vista"],"Edit phase details":["Editar los detalles de las fase"],"Phase details":["Detalles de la fase"],"Order of display":["Orden de presentación"],"

Here you set the title that users will see. If you intend to have multiple phases for you DMP, this should be clear in the title and description.

":["

Aquí indicará el título mostrado a los usuarios. Si piensa tener varias fases en su PGD, esto debería quedar claro en el título y la descripción.

"],"Enter a title for the phase e.g. intial DMP, full DMP... This is what users will see in the tabs when completing a plan. If you only have one phase, call it something generic e.g. Glasgow DMP":["Por favor, introduzca un título para la fase"],"This allows you to order the phases of your template.":["Esto le permite ordenar las fases de su plantilla."],"Enter a basic description. This will be presented to users on the 'Admin Plan' tab, above the summary of the sections and questions which they will be asked to answer.":["Teclee una descripción básica. Se les presentará a los usuarios bajo el resumen de secciones y preguntas solicitadas."],"You are about to delete '%{phase_title}'. This will affect versions, sections and questions linked to this phase. Are you sure?":["Va a eliminar '%{phase_title}'. Esto afectará a versiones, secciones y preguntas enlazadas con esta fase. ¿Está seguro?"],"When you create a new phase for your template, a version will automatically be created. Once you complete the form below you will be provided with options to create sections and questions.":["Cuando crea una fase nueva para su plantilla, se creará automáticamente una versión. Una vez complete el siguiente formulario se le darán las opciones para crear secciones y preguntas."],"Version details":["Detalles de la versión"],"New section title":["Título de la nueva sección"],"

Enter a basic description. This could be a summary of what is covered in the section or instructions on how to answer. This text will be displayed in the coloured banner once a section is opened to edit.
":["
Teclee una descripción básica. Puede ser un resumen sobre que cubre esta sección o instrucciones sobre como responder las preguntas. Este texto se mostrará en un banner cada vez que se edite esta sección.
"],"This allows you to order sections.":["Le permite ordenar las secciones."],"Created at":["Creado el"],"Please ensure you have created at least one phase with a published version.":["Por favor, asegúrese de que ha creado al menos una fase con una versión publicada."],"Customise":["Personalizar"],"Customised":[""],"Edit customisation":["Editar la personalización"],"Update Customisation":[""],"Information was successfully created.":["La información se creó correctamente."],"Information was successfully updated.":["La información se actualizó correctamente."],"Information was successfully deleted.":["Information se destruyó correctamente"],"Published templates cannot be edited.":[""],"You are about to delete '%{section_title}'. This will affect questions linked to this section. Are you sure?":["Va a borrar '%{section_title}'. Esta acción afectará las preguntas enlazadas con esta sección. ¿Está seguro?"],"Yes [Unpublished Changes]":[""],"Yes [Original Template Has Changed]":[""],"Make big changes":["Make big changes"],"Make small changes":["Make small changes"],"Edit":["Editar"],"A first version is created automatically. If you want to make major changes to published versions later (e.g. add section or questions) please create a new version. If you only want to fix typos or make small changes that do not alter meanings, edit the current version.":["A first version is created automatically. If you want to make major changes to published versions later (e.g. add section or questions) please create a new version. If you only want to fix typos or make sma ll changes that do not alter meanings, edit the current version."],"Enter a basic description as an internal reference to describe the difference between versions":["Enter a basic description."],"You are about to delete '%{version_title}'. This will affect sections and questions linked to this version. Are you sure?":["You are about to delete '%{version_title}'. This will affect sections and questions linked to this version. Are you sure?"],"Edit alert":["Edit alert"],"Please consider the kind of changes you are about to make as this plan is already published and might be in use":["Please consider the kind of changes you are about to make as this plan is already published and might be in use"],"Question text":["Texto de la pregunta"],"Question number":["Número de la pregunta"],"Edit question":["Editar la pregunta"],"Delete question":["Borrar la pregunta"],"Answer format":["Formato de la respuesta"],"Display additional comment area.":["Mostrar un área de comentarios adicional."],"Additional comment area will be displayed.":["Se mostrará un área adicional para comentarios."],"No additional comment area will be displayed.":["No se mostrará un área adicional para comentarios."],"Example of answer":["Respuesta de ejemplo"],"You can add an example or suggested answer to help users respond. These will be presented above the answer box and can be copied/ pasted.":["Puede añadir un ejemplo o respuesta sugerida para ayudar a responder a sus usuarios. Se presentará bajo la caja de respuestas y pueden ser copiada y pegada."],"Suggested answer/ Example":["Respuesta sugerida / ejemplo"],"Add suggested answer/ example":["Añadir respuesta sugerida / ejemplo"],"Edit suggested answer/ example":["Editar respuesta sugerida / ejemplo"],"You are about to delete a suggested answer/ example for '%{question_text}'. Are you sure?":["Va a eliminar una respuesta sugerida / ejemplo de '%{question_text}'. ¿Está seguro?"],"Default value":["Valor por defecto"],"This allows you to order questions within a section.":["Le permite ordenar las preguntas de una sección."],"You can choose from:
  • - text area (large box for paragraphs);
  • - text field (for a short answer);
  • - checkboxes where options are presented in a list and multiple values can be selected;
  • - radio buttons where options are presented in a list but only one can be selected;
  • - dropdown like this box - only one option can be selected;
  • - multiple select box allows users to select several options from a scrollable list, using the CTRL key;
":["Puede elegir entre:
  • - área de texto (caja grande para párrafos);
  • - campo de texto (para una respuesta corta);
  • - checkboxes donde las opciones se presentan como una lista y pueden seleccionarse varios valores;
  • - botones de radio, donde se presenta una lista de opciones para elegir sólo una de ellas;
  • - lista despegable - sólo puede seleccionarse una opción;
  • - lista de selección múltiple que permite a los usuarios seleccionar varias opciones de una lista desplazable usando la tecla CTRL;
"],"Anything you enter here will display in the answer box. If you want an answer in a certain format (e.g. tables), you can enter that style here.":["Cualquier texto que introduzca aquí se mostrará en la caja de respuesta. Si quiere una respuesta en un formato concreto (ej: tablas), puede crear ese estilo aquí."],"

Select themes that are relevant to this question.

This allows your generic institution-level guidance to be drawn in, as well as that from other sources e.g. the %{organisation_abbreviation} or any Schools/Departments that you provide guidance for.

You can select multiple themes by using the CTRL button.

":["

Seleccione los temas relevantes para esta pregunta.

Le permite crear guías genéricas a nivel de institución o de otras fuentes. Ej. para el DCC o cualquier escuela o departamento a la que se dirija la guía.

Puede seleccionar varios temas usando el botón CTRL.

"],"Default answer":["Respuesta por defecto"],"Enter specific guidance to accompany this question. If you have guidance by themes too, this will be pulled in based on your selections below so it's best not to duplicate too much text.":["Introduzca la guía concreta para esta pregunta. Si también tiene guías temáticas, se eligirán en función de su slección, por lo que es preferible no duplicar mucho texto."],"You are about to delete '%{question_text}'. Are you sure?":["Va a eliminar '%{question_text}'. ¿Está seguro?"],"Enter any options that you wish to display. If you want to pre-set one option as selected, check the default box.":["Introduzca las opciones que quiere mostrar. Si quiere que una opción esté seleccionada por defecto, marque la casilla correspondiente."],"Home":["Inicio"],"Return to the home page":["Volver a la página inicial"],"Super admin area":["Área de super administrador"],"Edit profile":["Editar perfil"],"View plans":["Ver planes"],"Create plan":["Crear un plan"],"About":["Acerca de"],"Future plans":["Hoja de ruta"],"Help":["Ayuda"],"Public DMPs":["DMP Públicos"],"Contact":["Contacto"],"The %{organisation_abbreviation} is funded by":["El DCC está financiado por"],"format":[""],"Change language":[""],"Sign in":["Conectar"],"Sign out":["Desconectar"],"Sign up":["Registrarse"],"New to %{application_name}? Sign up today.":["¿Nuevo en DMPonline? Regístrese ya."],"Signed in as ":["Registrado como "],"Or, sign in with your institutional credentials":["O conectar con sus credenciales institucionales"]," (UK users only)":[" (sólo usuarios del Reino Unido)"],"Email":["Correo electrónico"],"Subject":[""],"Message":[""],"You must enter a valid email address.":["Debe introducir una dirección de correo electrónico válida."],"

Please note that your email address is used as your username. If you change this, remember to use your new email address on sign in.

":["

Por favor, tenga en cuenta que su dirección de correo electrónico se usa como su nombre de usuario. Si cambia esto, recuerde usar su nueva dirección de correo electrónico al conectar.

"],"You can edit any of the details below.":["Puede editar cualquiera de los siguientes datos."],"Remember me":["Recordarme"],"My organisation isn't listed.":["No se muestra mi organización."],"Password":["Clave"],"Current password":["Clave actual"],"New password":["Nueva clave"],"Password confirmation":["Confirmación de clave"],"Change your password":["Cambiar su clave"],"Forgot your password?":["¿Olvidó su clave?"],"Your password must contain at least 8 characters.":["Su clave ha de tener al menos 8 caracteres."],"This must match what you entered in the previous field.":["Ha de coincidir con lo que introdujo en el campo anterior."],"Didn't receive confirmation instructions?":["¿No recibió instrucciones de confirmación?"],"Didn't receive unlock instructions?":["¿No recibió instrucciones para el desbloqueo?"],"Reset password instructions":["Reiniciar las instrucciones de la clave"],"If you would like to change your password please complete the following fields.":["Si quiere cambiar su clave, por favor, rellene los siguientes campos."]," I accept the terms and conditions *":[" Acepto los términos y condiciones *"],"You must accept the terms and conditions to register.":[""],"That email address is already registered.":[""],"This must be a valid email address - a message will be sent to it for confirmation.":[""],"Error processing registration. Please check that you have entered a valid email address and that your chosen password is at least 8 characters long.":[""],"API token":[""],"API Information":[""],"How to use the API":[""],"You have been granted permission by your organisation to use our API.":[""],"Your API token and instructions for using the API endpoints can be found here.":[""],"API Permission Granted":[""],"Text area":["Text area"],"Text field":["Text field"],"Radio buttons":["Radio buttons"],"Check box":["Check box"],"Dropdown":["Dropdown"],"Multi select box":["Multi select box"],"Export":["Exportar"],"By ":[""]," on ":[""],"Read more on the ":[""],"Your permissions relating to ":[""]," have changed. You now have ":[""],"access.":[""],"Your access to ":[""]," has been removed.":[""],"You have been given ":[""]," access to ":[""],"... (continued)":[""],"Security check":[""],"Error!":["¡Error!"],"Comment":["Comentario"],"Send":["Enviar"],"Ok":[""],"None":["Ninguno/a"],"false":["falso"],"Note":["Nota"],"Me":["Yo"],"View":["Ver"],"History":[""],"Save":["Guardar"],"Preview":["Previsualización"],"Saving...":["Guardando..."],"Loading...":["Cargando..."],"Removing...":["Borrando..."],"Unsaved changes":["Deshaciendo cambios"],"Unlink account":["Desvincular cuenta"],"Share":["Compartir"],"Delete":["Borrar"],"Create":["Crear"],"Update":["Actualizar"],"Cancel":["Cancelar"],"Back":["Volver"],"Discard":["Descartar"],"Publish":[""],"Before submitting, please consider:":[""],"Last name":["Apellidos"],"Please enter your first name.":["Por favor, introduzca su nombre."],"Please enter your surname or family name.":["Por favor, introduzca sus apellidos."],"Owner":["Propietario"],"ORCID number":["Número ORCID"],"ORCID number is a persistent digital identifier that distinguishes each researcher, more info.":["El número ORCID es un identificador digital persistente que identifica a cada investigador, más información."],"%{application_name} doesn't recognise your institutional credentials - either you haven't created an account with us or you haven't linked these details to your existing account.
--> If you do not have an account with %{application_name}, please complete the form below.
--> If you have an account with %{application_name}, please Sign in so we can link your account to your institutional credentials.
Once you have created and/or linked your account, you'll be able to sign in with your institutional credentials directly.":["DMPonline no reconoce las credenciales de su institución - o usted no ha creado una cuenta con con nosotros o no ha vinculado los detalles de la cuenta en DMPonline con la cuenta de su institución.
--> Si usted no tiene una cuenta en DMPonline, por favor, rellene el siguiente formulario.
--> Si usted tiene una cuenta en DMPonline, por favor Identifíquese de forma que podamos vincular su cuenta con las credenciales de su institución.
Una vez ha creado y/o vinculado su cuenta, podrá identificarse con las credenciales de su institución directamente."],"Your account is linked to your institutional credentials.":["Su cuenta enstá vinculada con las credenciales de su institución."],"Link your %{application_name} account to your institutional credentials (UK users only)":["Vincule su cuenta de DMPonline con las credenciales de su institución (Sólo para usuarios del Reino Unido)"],"Unlink your institutional credentials":["Desvincule las credenciales de su institución"],"Unlink institutional credentials alert":["Desvincule las alertas relacionadas con las credenciales de su institución"],"

You are about to unlink %{application_name} of your institutional credentials, would you like to continue?

":["

Va a desvincular DMPonline de las credenciales de su institución, ¿Quiere continuar?

"],"Select a phase":[""],"Select a version":[""],"Select a section":[""],"Select a question":[""],"Select a template":[""],"info@dcc.ac.uk":[""],"You have been given access to a Data Management Plan":[""],"DMP permissions changed":[""],"DMP access removed":[""],"Answers":["Respuestas"],"Answer questions":["Responder"],"Last edited":["Última edición"],"Select an action":["Seleccionar una acción"],"Answered ":["Contestado "]," by ":[" por "],"Example answer":["Respuesta de ejemplo"],"Not answered yet":["Aún no respondido/a"],"No questions have been answered":["No se ha respondido a las preguntas"],"Policy Expectations":["Política esperada"],"Share note":["Compartir nota"],"Notes":["Notas"],"A question can only have one answer.":["Una pregunta sólo puede tener una respuesta."],"The question must belong to the correct template.":["La pregunta debe pertenecer a la plantilla correcta."],"Add note":["Añadir nota"],"Share note with collaborators":["Compartir nota con colaboradores"],"Noted by:":["Anotado por:"],"Are you sure you would like to remove this note?":["¿Seguro que quiere eliminar esta nota?"],"Note removed by":["Nota borrada por"],"Note removed by you":["Nota borrada por usted"],"Comment was successfully created.":[""],"Comment was successfully updated.":[""],"Comment has been removed.":[""],"Funder":["Financiador"],"Institution":["Institución"],"Project":["Proyecto"],"School":["Facultad"],"Publisher":["Editor"],"Other guidance":["Otra orientación"],"Unit":["Unidad"],"Please enter the name of your organisation.":["Por favor, introduzca el nombre de su entidad."],"Edit plan details":["Editar los detalles del plan"],"Grant number":["Título de subvención"],"Grant reference number if applicable [POST-AWARD DMPs ONLY]":["Número de referencia de la subvención si es aplicable [SÓLO PGDs YA ADJUDICADOS]"],"Not applicable/not listed.":["No aplicable / no listado/a."],"There are a number of possible templates you could use. Please choose one.":["Hay varias plantillas que podría usar. Por favor, elija una."],"Plan name":["Nombre de proyecto"],"My plan":["Mi proyecto"],"Plan was successfully created.":["Plan creado con éxito"],"Plan was successfully updated.":[""],"Principal Investigator/Researcher":["Investigador principal"],"Name of Principal Investigator(s) or main researcher(s) on the project.":["Nombre del/de los Investigador/es Principal/es o investigador/es principal/es del proyecto."],"Principal Investigator/Researcher ID":["ID del Investigador Principal"],"E.g ORCID http://orcid.org/.":["P.e. ORCID http://orcid.org/."],"Research funder if relevant":["Financiador del proyecto si es apropiado"],"Funder name":["Nombre del financiador del proyecto"],"Summary about the questions":["Resumen sobre las preguntas"],"Plan details":["Detalles"],"

From here you can download your plan in various formats. This may be useful if you need to submit your plan as part of a grant application.
Select what format you wish to use and click to 'Export'.

":["

Desde aquí puede descargar su plan en varios formatos. Esto puede ser útil si necesita enviar su plan para solicitar una subvención.
Seleccione qué formato quiere usar y haga clic en 'Exportar'.

"],"questions answered":["preguntas respondidas"],"You have altered answers but have not saved them:":["Ha modificado las respuestas, pero todavía no las ha grabado:"],"Would you like to save them now?":["¿Quere grabar los cambios ahora?"],"Unsaved answers":["Preguntas sin contestar"],"Answer was successfully recorded.":[""],"There was an error saving the answer.":[""],"No change in answer content - not saved.":[""],"Plan data contact":["Datos de contacto del plan"],"Name (if different to above), telephone and email contact details":["Nombre (si es diferente del de más arriba), teléfono y dirección de correo electrónico"],"If applying for funding, state the name exactly as in the grant proposal.":["Si se solicita financiación, indique el nombre exactamente como en la propuesta de subvención."],"

Questions to consider:

  • - What is the nature of your research project?
  • - What research questions are you addressing?
  • - For what purpose are the data being collected or created?

Guidance:

Briefly summarise the type of study (or studies) to help others understand the purposes for which the data are being collected or created.

":["

Preguntas a considerar:

  • - ¿Cual es la naturaleza de su proyecto de investigación?
  • - ¿Qué temas de investigación está tratando?
  • - ¿Para qué propósito se están recogiendo o creando los datos?

Orientación:

Resuma brevemente el tipo de estudio (o estudios) para ayudar a otros a comprender los propósitos para los cuales se están recogiendo o crendo los datos.

"],"ID":["ID"],"A pertinent ID as determined by the funder and/or institution.":["El ID tal como lo determinó la institución u organismo financiador."],"This plan is based on:":["Este plan está basado en:"],"My plans":["Mis planes"],"Visibility":["Visibilidad"],"Private":["Privado"],"Organisational":["Organizativo"],"Public":["Público"],"Test/Practice":["Prueba/Práctica"],"Private (owners, co-owners, and administrators only) See our Terms of Use.":["Privado (propietarios, copropietarios y administradores solamente) Consulte nuestras Condiciones de uso."],"Organisational (visibile to others within your organisation)":["Con otros miembros de su organización"],"Public (Your DMP will appear on the Public DMPs page of this site)":["Publicamente en la web. Su DMP aparecerá en la página Public DMPs de este sitio."],"Test/Practice (your plan is not visible to other users) See our Terms of Use.":["Prueba / Práctica (su plan no es visible para otros usuarios) Vea nuestras Condiciones de uso."],"Not specified (will be visible to others within your organisation by default)":["No especificado (será visible para otros dentro de su organización de forma predeterminada)"],"The items you select here will be displayed in the table below. You can sort the data by each of these headings or filter by entering a text string in the search box.":["Los items que seleccione se mostarán en la siguiente tabla. Puede ordenar los datos según sus encabezados o filtrar tecleando textos en la caja de búsqueda."],"

Welcome.
You are now ready to create your first DMP.
Click the 'Create plan' button below to begin.

":["

Bienvenido.
Ya está listo para crear su primer PGD.
Haga clic en el botón 'Crear un plan' para comenzar.

"],"

The table below lists the plans that you have created, and any that have been shared with you by others.
These can be edited, shared, exported or deleted at anytime.

":["

La siguiente tabla lista los planes que usted ha creado, así como los que otros investigadores hayan compartido con usted.
Se pueden editar, compartir, exportar o borrar en cualquier momento.

"],"This page gives you an overview of your plan. It tells what your plan is based on and gives an overview of the questions that you will be asked.":["Esta página le proporciona una visión general de su plan. Le dice en qué está basado su plan y le da una visión general de las preguntas que se le harán."],"Please fill in the basic project details below and click 'Update' to save":["Por favor, rellene los detalles básicos del proyecto y haga clic en 'Actualizar' para guardarlos"],"Are you sure you wish to delete this plan? If the plan is being shared with other users, by deleting it from your list, the plan will be deleted from their plan list as well":["¿Está seguro de que quiere borrar este plan?"],"Confirm plan details":["Confirmar los detalles del plan"],"Where your funder or institution doesn't have specific requirements (or if you left these options blank), you will see the %{organisation_abbreviation} Checklist. This offers a generic set of DMP questions and guidance. For more details see: DMP checklist 2013.":["Donde su financiador o institución no tenga requisitos específicos (o si dejó estas opciones en blanco), verá la lista de verificación del DCC. Esto proporciona un conjunto genérico de preguntas y orientación para el PGD. Para más detalles ver: DMP checklist 2013 [en inglés]."],"Yes, create plan":["Si, crear el plan"],"You have selected the Default DMP, which is based on the %{organisation_abbreviation} Checklist. This offers a generic set of DMP questions and guidance. For more details see: DMP checklist 2013.":["Ha seleccionado el PGD por Defecto, que está basado en la lista de comprobación del DCC. Ofrece un conjunto genérico de preguntas y guías relacionadas con los PGDs. Para más información, puede ver: DMP checklist 2013."],"Please note: %{org_name} provides a DMP template. If you wish to use it select 'Cancel', otherwise select 'Create plan'":["Tenga en cuenta que %{org_name} provee una plantilla para PGDs. Si quiere usar esta plantilla, seleccione 'Cancelar', si no, seleccione 'Crear un plan'"],"Shared?":["¿Compartido?"],"

You can give other people access to your plan here. There are three permission levels.

  • Users with \"read only\" access can only read the plan.
  • Editors can contribute to the plan.
  • Co-owners can also contribute to the plan, but additionally can edit the plan details and control access to the plan.

Add each collaborator in turn by entering their email address below, choosing a permission level and clicking \"Add collaborator\".

Those you invite will receive an email notification that they have access to this plan, inviting them to register with %{application_name} if they don\\'t already have an account. A notification is also issued when a user\\'s permission level is changed.

":["

Aquí puede dar a otras personas acceso a su plan. Hay tres niveles de permiso.

  • Los usuarios con acceso de \"sólo lectura\" sólo pueden leer el plan.
  • Los Editores pueden contribuir al plan.
  • Los Co-propietarios pueden también contribuir, editar los detalles y controlar el acceso al plan.

Añada cada colaborador individualmente introduciendo su dirección de correo electrónico, seleccionando un nivel de permiso y haciendo clic en \"Añadir colaborador\".

Aquellos a quienes invite recibirán un aviso por correo electrónico indicando que tienen acceso al plan e invitándoles a registrarse en DMPonline si no tienen ya una cuenta. También se envia un aviso si se cambia el nivel de permiso de un usuario.

"],"Collaborators":["Colaboradores"],"Add collaborator":["Añadir colaborador"],"Add":["Añadir"],"Permissions":["Permisos"],"Editors can contribute to plans. Co-owners have additional rights to edit plan details and control access.":["Los editores pueden contribuir a los planes. Los co-propietarios tienen derechos adicionales para editar los detalles del plan y controlar el acceso al mismo."],"Remove user access":["Eliminar acceso de usuario"],"Are you sure?":["¿Está seguro?"],"Co-owner":["Co-propietario"],"Read only":["Sólo lectura"],"This section is locked for editing by ":["Esta sección está bloqueda para su edición por "],"Create a new plan":["Crear un nuevo plan"],"

Please select from the following drop-downs so we can determine what questions and guidance should be displayed in your plan.

If you aren't responding to specific requirements from a funder or an institution, select here to write a generic DMP based on the most common themes.

":["

Por favor, seleccione la información de los siguientes desplegables, de forma que podamos determinar qué preguntas y orientación han de ser mostrados en su plan.

Si no responde a los requisitos específicos de un financiador o institución, seleccione aquí para crear un PGD genérico basado en los temas más comunes.

"],"Default DMP":["PGD por defecto"],"If applying for funding, select your research funder.":["Si se solicita financiación, seleccione el organismo financiador de su investigación."],"Otherwise leave blank.":["Si no, déjelo en blanco."],"Name of funder, if applicable.":["Nombre del financiador, si corresponde."],"To see institutional questions and/or guidance, select your organisation.":["Para ver preguntas y/u orientación relativas a su institución, seleccione su entidad."],"You may leave blank or select a different organisation to your own.":["Puede dejar en blanco o seleccionar una entidad distinta a la suya."],"Tick to select any other sources of guidance you wish to see.":["Marque para seleccionar cualquier otra fuente de orientación que quiera ver."],"Configure":["Configuración"],"Template Owner":["Propietario de la plantilla"],"Identifier":["Identificador"],"Principal Investigator / Researcher":["Principal Investigador / Científico"]," - ":[""],"Organization":["Organización"],"Filter plans":["Filtro de planes"],"Filter":["Filtrar"],"No plans match '%{filter}'":[""],"No matches":["Ningún plan coincide con '%{filter}'"],"User added to project":[""],"Invitation issued successfully.":[""],"Please enter an email address":[""],"Sharing details successfully updated.":[""],"Access removed":[""],"Project was successfully updated.":[""],"Project was successfully created.":[""],"Details successfully updated.":[""],"Choose a template":[""],"Question not answered.":["Pregunta no respondida."],"This document was generated by %{application_name} (http://dmponline.dcc.ac.uk)":["Este documento fue generado por DMPonline (http://dmponline.dcc.ac.uk)"],"approx. %{space_used}% of available space used (max %{num_pages} pages)":["aprox. %{space_used}% de disponibilidad del espacio usado (máx. %{num_pages} páginas)"],"approx. %{space_used}% of available space used":[""],"Plan Name":["Nombre del Proyecto"],"Plan ID":["Identificador del Proyecto"],"Plan Data Contact":["Datos de contacto del proyecto"],"Plan Description":["Descripción"],"Your ORCID":[""],"%{value} is not a valid format":[""],"Settings":["Preferencias"],"Settings - My plans":["Preferencias - Mis planes"],"The table below lists the available columns that can be shown on the 'My plans' list. Choose which you would like to appear.":["La siguiente tabla muestra las columnas que pueden mostrarse en la lista 'Mis planes'. Elija cuales quiere que se muestren."],"'name' must be included in column list.":["'nombre' tiene que estar en la lista de columnas."],"Duplicate column name. Please only include each column once.":["Nombre de columna duplicado. Por favor, indique cada columna sólo una vez."],"Unknown column name.":["Nombre de columna desconocido."],"The plan is incomplete.":["El plan es incompleto."],"File Name":["Título del plan"],"Reset":["Reiniciar"],"(Using custom PDF formatting values)":["(Usando valores personalizados para el formato del PDF)"],"(Using template PDF formatting values)":["(Usando valores de la plantilla para el formato del template PDF)"],"(Using default PDF formatting values)":["(Usando valores por defecto para el formato del template PDF)"],"Included Elements":["Elementos incluídos"],"PDF Formatting":["Dando formato al PDF"],"Face":["Estilo"],"Size":["Tamaño"],"Font":[""],"Margin":["Margen"],"Top":["Superior"],"Bottom":["Inferior"],"Left":["Izquierdo"],"Right":["Derecho"],"Maximum number of pages":["Máximo número de páginas"],"A required setting has not been provided":["No se ha indicado un valor obligatorio"],"Margin value is invalid":["El valor del margen no es válido"],"Margin cannot be negative":["El margen no puede ser negativo"],"Unknown margin. Can only be 'top', 'bottom', 'left' or 'right'":["Margen desconocido. Sólo puede ser 'superior', 'inferior', 'izquierdo' or 'derecho'"],"Invalid font size":["Tamaño de fuente inválido"],"Invalid font face":["Estilo de fuente inválido"],"Unknown formatting setting":["Valores de formato desconocidos"],"Invalid maximum pages":["Número de páginas inválido"],"This account does not have access to that plan.":[""],"Question text is empty, please enter your question.":[""],"add guidance text":[""],"select a question":[""],"select at least one theme":[""],"select a guidance group":[""],"Please only enter up to 165 characters, you have used":[""],"If you are entering an URL try to use something like http://tinyurl.com/ to make it smaller.":[""],"You have unsaved answers in the following sections:\\n":[""],"Resend confirmation instructions":[""],"Welcome to %{application_name}":[""],"Thank you for registering at %{application_name}. Please confirm your email address:":[""],"Click here to confirm your account":[""],"(or copy":[""],"into your browser).":[""],"A colleague has invited you to contribute to their Data Management Plan at":[""],"Click here to accept the invitation":[""],"

If you don't want to accept the invitation, please ignore this email.
Your account won't be created until you access the link above and set your password.

":[""],"Someone has requested a link to change your":[""],"password. You can do this through the link below.":[""],"

If you didn't request this, please ignore this email.

Your password won't change until you access the link above and create a new one.

":[""],"Hello":[""],"Your ":[""]," account has been locked due to an excessive number of unsuccessful sign in attempts.":[""],"Click the link below to unlock your account:":[""],"Unlock my account":[""],"Currently waiting confirmation for: ":[""],"Resend unlock instructions":[""],"{\"Error\":\"Bad credentials\"}":["{\"Error\":\"Bad credentials\"}"],"{\"Error\":\"Organisation does not exist\"}":["{\"Error\":\"Organization does not exist\"}"],"{\"Error\":\"Organisation specified is not a funder\"}":["{\"Error\":\"Organization specified is not a funder\"}"],"{\"Error\":\"Organisation has more than one template and template name unspecified or invalid\"}":["{\"Error\":\"Organization has more than one template and template name unspecified or invalid\"}"],"{\"Error\":\"You do not have authorisation to view this endpoint\"}":["{\"Error\":\"You do not have authorisation to view this endpoint\"}"],"{\"Error\":\"You do not have authorisation to view this resource\"}":["{\"Error\":\"You do not have authorisation to view this resource\"}"],"Your account has bee connected to %{scheme}":["Tu cuenta se ha conectado a %{scheme}"],"We could not connect your account to %{scheme}":["No pudimos conectar tu cuenta a %{scheme}"],"Your account has been disconnected from %{scheme}":["Su cuenta se ha desconectado de %{scheme}"],"We were unable to disconnect your account from %{scheme}":["No hemos podido desconectar tu cuenta de %{scheme}"],"It does not look like you have setup an account with us yet. Please fill in the following information to complete your registration.":["No ha configurado una cuenta. Por favor complete su registro."],"We were unable to verify your account. Please use the following form to create a new account. You will be able to link your new account afterward.":["No hemos podido verificar tu cuenta. Utilice el siguiente formulario para crear una cuenta nueva. Podrá vincular su nueva cuenta posteriormente."],"http://orcid.org/sites/default/files/images/orcid_16x16.png":["http://orcid.org/sites/default/files/images/orcid_16x16.png"],"https://orcid.org/%{id}":["https://orcid.org/%{id}"],"Create or Connect your ORCID ID":["Cree o conecte su ID de ORCID ID"],"ORCID provides a persistent digital identifier that distinguishes you from other researchers. Learn more at orcid.org":["ORCID proporciona un identificador digital persistente que lo distingue de otros investigadores. Más información en orcid.org"],"Are you sure you want to disconnect your ORCID ID?":["¿Está seguro de que desea desconectar su ORCID ID?"],"Disconnect your account from ORCID. You can reconnect at any time.":["Desconecte su cuenta de ORCID. Puede volver a conectarse en cualquier momento."],"Research Institute":["Instituto de Investigación"],"Digital Curation Centre":["Centro de Cura Digital"],"admin":["admin"],"org_admin":["org_admin"],"user":["user"],"add_organisations":["add_organisations"],"change_org_affiliation":["change_org_affiliation"],"grant_permissions":["grant_permissions"],"modify_templates":["modify_templates"],"modify_guidance":["modify_guidance"],"use_api":["use_api"],"change_org_details":["change_org_details"],"grant_api_to_orgs":["grant_api_to_orgs"],"guidances":["guidances"],"plans":["plans"],"templates":["templates"],"statistics":["statistics"],"ago":[""],"from now":[""],"less than a minute":[""],"about a minute":[""],"%{d} minutes":[""],"about an hour":[""],"about %{d} hours":[""],"a day":[""],"%{d} days":[""],"about a month":[""],"%{d} months":[""],"about a year":[""],"%{d} years":[""],"":{"lang":"es","domain":"app","plural_forms":null}}}}; \ No newline at end of file diff --git a/lib/assets/javascripts/locale/fr/app.js b/lib/assets/javascripts/locale/fr/app.js new file mode 100644 index 0000000..60ea63e --- /dev/null +++ b/lib/assets/javascripts/locale/fr/app.js @@ -0,0 +1 @@ +var locales = locales || {}; locales['fr'] = {"domain":"app","locale_data":{"app":{"%d-%m-%Y":["%d-%m-%Y"],"%d/%m/%Y":["%d/%m/%Y"],"%d %B, %Y":["%d %B, %Y"],"%a, %b %d %Y %H:%M:%S %z":["%a, %d %b %Y %H:%M:%S %z"],"%d %b %H:%M":["%d %b %H:%M"],"%d/%m/%Y %H:%M":["%d/%m/%Y %H:%M"],"%B %d, %Y %H:%M":["%B %d, %Y %H:%M"],"am":["am"],"pm":["pm"],"%{application_name}":["DMPonline"],"DMP title":[""],"%{organisation_name}":["Digital Curation Centre"],"Welcome.":["Bienvenue !"],"

%{application_name} has been jointly developed by the %{organisation_name} to help you write data management plans.

":["

DMPonline est un développement du Digital Curation Centre (Centre de curation numérique britannique - DCC) pour vous aider dans la rédaction de plans de gestion de données, ou DMP.

"],"Screencast on how to use %{application_name}":["Vidéo en ligne sur lutilisation de DMPonline"],"Your browser does not support the video tag.":["La balise