From 9154780062b5336d61e3af57c247e2a7887eeba2 Mon Sep 17 00:00:00 2001 From: briri Date: Wed, 28 Sep 2022 09:29:12 -0700 Subject: [PATCH 01/23] some accessibility fixes discovered during audit of dmptool. mostly missing labels for form elements --- app/views/contributors/_form.html.erb | 3 ++- app/views/layouts/application.html.erb | 1 - app/views/layouts/modal_search/_form.html.erb | 3 ++- app/views/paginable/plans/_privately_visible.html.erb | 3 +++ app/views/plans/_guidance_selection.html.erb | 2 +- app/views/plans/_project_details.html.erb | 8 ++++---- app/views/plans/_share_form.html.erb | 4 +++- app/views/plans/new.html.erb | 4 ++-- .../questions/_new_edit_question_textarea.html.erb | 4 ++-- app/views/research_outputs/_form.html.erb | 11 ++++++----- app/views/research_outputs/licenses/_form.html.erb | 3 ++- .../research_outputs/repositories/_search.html.erb | 2 ++ 12 files changed, 29 insertions(+), 19 deletions(-) diff --git a/app/views/contributors/_form.html.erb b/app/views/contributors/_form.html.erb index e848cc8cd6..4c9ef30562 100644 --- a/app/views/contributors/_form.html.erb +++ b/app/views/contributors/_form.html.erb @@ -80,7 +80,8 @@ roles_tooltip = _("Select each role that applies to the contributor.") <%= form.check_box hash.keys.first.to_sym, value: hash.values.first, data: { toggle: "tooltip" }, - title: ContributorPresenter.role_tooltip(symbol: hash.keys.first) %> + title: ContributorPresenter.role_tooltip(symbol: hash.keys.first), + aria: { label: ContributorPresenter.role_symbol_to_string(symbol: hash.keys.first) } %> <%= ContributorPresenter.role_symbol_to_string(symbol: hash.keys.first) %> diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 889b85f939..413a834038 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -101,7 +101,6 @@ diff --git a/app/views/layouts/modal_search/_form.html.erb b/app/views/layouts/modal_search/_form.html.erb index a6a15e59cd..cf4501d08b 100644 --- a/app/views/layouts/modal_search/_form.html.erb +++ b/app/views/layouts/modal_search/_form.html.erb @@ -60,7 +60,8 @@ no_results_msg = _("No results matched your filter criteria.") <%= f.text_field :search_term, class: "form-control autocomplete col-md-6", - placeholder: search_placeholder %> + placeholder: search_placeholder, + aria: { label: search_placeholder } %>
<%= f.button _("Apply filter(s)"), diff --git a/app/views/paginable/plans/_privately_visible.html.erb b/app/views/paginable/plans/_privately_visible.html.erb index cc1ad4d421..ceb5476c41 100644 --- a/app/views/paginable/plans/_privately_visible.html.erb +++ b/app/views/paginable/plans/_privately_visible.html.erb @@ -29,6 +29,9 @@ <% if plan.administerable_by?(current_user.id) then %> <%= check_box_tag :is_test, "1", (plan.visibility === "is_test"), class: "set_test_plan", + aria: { + label: "#{plan.title} - test plan flag" + }, data: { remote: true, method: :post, url: set_test_plan_path(plan) } %> <% else %> diff --git a/app/views/plans/_guidance_selection.html.erb b/app/views/plans/_guidance_selection.html.erb index d133819103..57013276e0 100644 --- a/app/views/plans/_guidance_selection.html.erb +++ b/app/views/plans/_guidance_selection.html.erb @@ -6,7 +6,7 @@

<%= _('To help you write your plan, %{application_name} can show you guidance from a variety of organisations.') % { application_name: app_name } %>

-

<%= _('Select up to 6 organisations to see their guidance.') %>

+ <%= _('Select up to 6 organisations to see their guidance.') %>
    <%= render partial: "guidance_choices", locals: { choices: important_ggs, form: form, diff --git a/app/views/plans/_project_details.html.erb b/app/views/plans/_project_details.html.erb index 125d3cabfc..f82690ee68 100644 --- a/app/views/plans/_project_details.html.erb +++ b/app/views/plans/_project_details.html.erb @@ -32,12 +32,12 @@ ethics_report_tooltip = _("Link to a protocol from a meeting with an ethics comm
    - <%= form.label(:description, _('Project abstract'), class: 'control-label') %> + <%= form.label(:description, _('Project abstract'), class: 'control-label', id: 'project-description-label') %>
    <%= project_abstract_tooltip %> <%= form.text_area :description, rows: 6, class: 'form-control tinymce', - spellcheck: true, "aria-required": false %> + spellcheck: true, aria: { required: false, labelledby: 'project-description-label' } %>
    @@ -118,7 +118,7 @@ ethics_report_tooltip = _("Link to a protocol from a meeting with an ethics comm
- <%= form.label(:ethical_issues_description, _('Describe any ethical concerns'), class: 'control-label') %> + <%= form.label(:ethical_issues_description, _('Describe any ethical concerns'), class: 'control-label', id: 'plan-ethical-description') %>
<%= ethics_description_tooltip %> @@ -126,7 +126,7 @@ ethics_report_tooltip = _("Link to a protocol from a meeting with an ethics comm rows: 6, class: 'form-control tinymce', spellcheck: true, - "aria-required": false %> + aria: { required: false, labelledby: 'plan-ethical-description' } %>
diff --git a/app/views/plans/_share_form.html.erb b/app/views/plans/_share_form.html.erb index f9ec141049..da8c51e541 100644 --- a/app/views/plans/_share_form.html.erb +++ b/app/views/plans/_share_form.html.erb @@ -6,10 +6,12 @@ <% permissions_tooltip = _('Co-owner: Has admin-rights to the plan (can invite other users, view the plan, answer questions, or comment). Editor: Has edit-rights to the plan (can view the plan, answer questions, or comment). Read Only: Has read-rights to the plan (can view the plan or comment)') %>

<%= _('Set plan visibility') %>

-

<%= _('Public or organisational visibility is intended for finished plans. You must answer at least %{percentage}%% of the questions to enable these options. Note: test plans are set to private visibility by default.') % { :percentage => Rails.configuration.x.plans.default_percentage_answered } %>

<% allow_visibility = @plan.visibility_allowed? %> <%= form_with model: @plan, id: "set_visibility" do |f| %> > + +

<%= _('Public or organisational visibility is intended for finished plans. You must answer at least %{percentage}%% of the questions to enable these options. Note: test plans are set to private visibility by default.') % { :percentage => Rails.configuration.x.plans.default_percentage_answered } %>

+
<%= label_tag :visibility_privately_visible do %> diff --git a/app/views/plans/new.html.erb b/app/views/plans/new.html.erb index f30598a83e..d2d3ed23bb 100644 --- a/app/views/plans/new.html.erb +++ b/app/views/plans/new.html.erb @@ -24,7 +24,7 @@
<%= project_title_tooltip %> - <%= f.text_field(:title, class: 'form-control', 'aria-describedby': 'project-title', 'aria-required': 'true', 'aria-label': 'project-title', + <%= f.text_field(:title, class: 'form-control', 'aria-labelledby': 'project-title', 'aria-required': 'true', 'aria-label': 'project-title', 'data-toggle': 'tooltip', 'data-placement': 'bottom', spellcheck: true, @@ -109,7 +109,7 @@
<%= select_tag(:plan_template_id, "", name: 'plan[template_id]', - class: 'form-control', 'aria-describedby': 'template-selection') %> + class: 'form-control', 'aria-labelledby': 'template-selection') %>
diff --git a/app/views/questions/_new_edit_question_textarea.html.erb b/app/views/questions/_new_edit_question_textarea.html.erb index 0c12f5489d..7f3a60bd7b 100644 --- a/app/views/questions/_new_edit_question_textarea.html.erb +++ b/app/views/questions/_new_edit_question_textarea.html.erb @@ -8,7 +8,7 @@ within a paragraph. %>
-
+
<%= f.label(:text, sanitize(question.text), class: 'control-label') %>
<% if locking || readonly %> @@ -16,6 +16,6 @@ <%= sanitize("

#{answer.text || question.default_value}

") %>
<% else %> - <%= text_area_tag('answer[text]', answer.text || question.default_value, id: "answer-text-#{question.id}", class: "form-control tinymce_answer") %> + <%= text_area_tag('answer[text]', answer.text || question.default_value, id: "answer-text-#{question.id}", class: "form-control tinymce_answer", aria: { labelledby: "question-text-#{question.id}" })) %> <% end %>
\ No newline at end of file diff --git a/app/views/research_outputs/_form.html.erb b/app/views/research_outputs/_form.html.erb index 4f34ebd62e..e4508aa459 100644 --- a/app/views/research_outputs/_form.html.erb +++ b/app/views/research_outputs/_form.html.erb @@ -24,7 +24,7 @@ repository_tooltip = _("Repositories preserve, manage, and provide access to man selected: (research_output.output_type.present? ? research_output.output_type : "" ) }, { class: "form-control", - aria: { required: true }, + aria: { required: true, label: _("Research output type") }, data: { remote: true, url: plan_output_type_selection_path(plan), method: :get } } %>
@@ -56,11 +56,11 @@ repository_tooltip = _("Repositories preserve, manage, and provide access to man
- <%= f.label(:description, _("Description"), class: "control-label") %> + <%= f.label(:description, _("Description"), class: "control-label", id: 'research-output-description') %>
- <%= f.text_area :description, rows: 4, class: 'form-control tinymce', data: { toggle: "tooltip" } %> + <%= f.text_area :description, rows: 4, class: 'form-control tinymce', data: { toggle: "tooltip" }, aria: { labelledby: 'research-output-description' } %>
@@ -161,12 +161,13 @@ repository_tooltip = _("Repositories preserve, manage, and provide access to man
<% file_size = presenter.converted_file_size(size: f.object.byte_size) %> - <%= f.number_field "file_size", min: 1, step: 0.1, value: file_size[:size], class: "form-control" %> + <%= f.number_field "file_size", min: 1, step: 0.1, value: file_size[:size], class: "form-control", aria: { label: _("Anticipated file size") %> <%= f.select "file_size_unit", options_for_select(presenter.selectable_size_units, file_size[:unit]), { selected: file_size[:unit] }, - { class: "form-control float-left" } %> + { class: "form-control float-left", + aria: { label: _('File size units') } } %>
diff --git a/app/views/research_outputs/licenses/_form.html.erb b/app/views/research_outputs/licenses/_form.html.erb index a77815de1b..6d4db22bd4 100644 --- a/app/views/research_outputs/licenses/_form.html.erb +++ b/app/views/research_outputs/licenses/_form.html.erb @@ -16,7 +16,8 @@ show_preferred = selected.nil? || (selected != 0 && preferred_licenses.map { |ar options = show_preferred ? preferred_licenses : presenter.complete_licenses guidance = show_preferred ? preferred_guidance : default_guidance -args = { include_blank: _("- Please select one -"), selected: selected, class: "form-control" } +args = { include_blank: _("- Please select one -"), selected: selected, class: "form-control", + aria: { label: _('Initial license') } } args[:data] = { remote: true, url: plan_license_selection_path(research_output.plan), method: :get } if show_preferred %>
diff --git a/app/views/research_outputs/repositories/_search.html.erb b/app/views/research_outputs/repositories/_search.html.erb index e83facca88..1b79b93ff4 100644 --- a/app/views/research_outputs/repositories/_search.html.erb +++ b/app/views/research_outputs/repositories/_search.html.erb @@ -11,6 +11,7 @@ options_for_select(ResearchOutputPresenter.selectable_subjects), include_blank: _("- Select a subject area -"), class: "form-control", + aria: { label: _('Select a subject area') }, title: by_subject_tooltip, data: { toggle: "tooltip", placement: "bottom" } %> @@ -20,6 +21,7 @@ options_for_select(ResearchOutputPresenter.selectable_repository_types), include_blank: _("- Select a repository type -"), class: "form-control", + aria: { label: _('Select a repository type') }, title: by_type_tooltip, data: { toggle: "tooltip", placement: "bottom" } %> From cd6fed43bae901974d6975c3b710b77c888b9f9d Mon Sep 17 00:00:00 2001 From: briri Date: Thu, 27 Oct 2022 14:16:09 -0700 Subject: [PATCH 02/23] updated bin/setup so that its simpler to install the system --- .env.mysql2 | 48 +++ .env.postgresql | 48 +++ Gemfile.lock | 5 +- bin/setup | 79 ++-- config/credentials.yml.example | 23 -- config/credentials.yml.mysql2 | 26 ++ config/credentials.yml.postgresql | 26 ++ config/database.yml.sample | 13 +- config/initializers/dragonfly.rb | 4 +- db/schema.rb | 592 +++++------------------------- good_config/credentials.yml.enc | 1 + good_config/database.yml | 15 + good_config/master.key | 1 + 13 files changed, 320 insertions(+), 561 deletions(-) create mode 100644 .env.mysql2 create mode 100644 .env.postgresql delete mode 100644 config/credentials.yml.example create mode 100644 config/credentials.yml.mysql2 create mode 100644 config/credentials.yml.postgresql create mode 100644 good_config/credentials.yml.enc create mode 100644 good_config/database.yml create mode 100644 good_config/master.key diff --git a/.env.mysql2 b/.env.mysql2 new file mode 100644 index 0000000000..78e7d04490 --- /dev/null +++ b/.env.mysql2 @@ -0,0 +1,48 @@ +# DMPRoadmap dotenv file + +# Rails log level +RAILS_LOG_LEVEL=debug +# Whether or not Rails should log to STDOUT. If false it will log to `./logs/[env].log` +RAILS_LOG_TO_STDOUT=true +# Whether or not Rails will be serving your static assets +RAILS_SERVE_STATIC_FILES=false +# Maximum number of Puma threads +RAILS_MAX_THREADS=5 +# Maximum number of Puma workers +WEB_CONCURRENCY=2 +# The port puma will use to host the Rails app +PORT=3000 + +# Rails 6.1+ has a white-list of valid domains. You must set this for your production env! +DMPROADMAP_HOST=localhost + +# The location of the wkhtmltopdf app. Once bundler has installed it, you can find it with +# `which wkhtmltopdf` on linux/osx systems. +WICKED_PDF_PATH=/usr/local/bin/wkhtmltopdf + +# Database settings. +DB_ADAPTER=mysql2 +DB_HOST=localhost +DB_PORT=3306 +DB_POOL_SIZE=16 +DB_NAME=roadmap + +# Whether or not the Dragonfly gem should use AWS S3 to store logos. If 'false' the logos will +# be stored on the local disk. If true, you must provide the `AWS_` prefixed values. +DRAGONFLY_AWS=false +AWS_REGION= +AWS_BUCKET_NAME= + +# If you have a Rollbar account and want to redcord errors there, add your token here +ROLLBAR_ACCESS_TOKEN= +ROLLBAR_ENV= + +# Translation IO variables. The Domain can be either `app` or `client` and is typically defined +# when running `bin/rails translations:sync DOMAIN=app`. `client` will use any of your +# customized content in ./app/views/branded and `app` is for the core roadmap translations. +# Include your Translation.io API key for the appropriate domains: +# app => TRANSLATION_API_ROADMAP +# client => TRANSLATION_API_CLIENT +# DOMAIN=app +# TRANSLATION_API_ROADMAP= +# TRANSLATION_API_CLIENT= diff --git a/.env.postgresql b/.env.postgresql new file mode 100644 index 0000000000..d6570a81ce --- /dev/null +++ b/.env.postgresql @@ -0,0 +1,48 @@ +# DMPRoadmap dotenv file + +# Rails log level +RAILS_LOG_LEVEL=debug +# Whether or not Rails should log to STDOUT. If false it will log to `./logs/[env].log` +RAILS_LOG_TO_STDOUT=true +# Whether or not Rails will be serving your static assets +RAILS_SERVE_STATIC_FILES=false +# Maximum number of Puma threads +RAILS_MAX_THREADS=5 +# Maximum number of Puma workers +WEB_CONCURRENCY=2 +# The port puma will use to host the Rails app +PORT=3000 + +# Rails 6.1+ has a white-list of valid domains. You must set this for your production env! +DMPROADMAP_HOST=localhost + +# The location of the wkhtmltopdf app. Once bundler has installed it, you can find it with +# `which wkhtmltopdf` on linux/osx systems. +WICKED_PDF_PATH=/usr/local/bin/wkhtmltopdf + +# Database settings. +DB_ADAPTER=postgresql +DB_HOST=localhost +DB_PORT=5432 +DB_POOL_SIZE=16 +DB_NAME=roadmap + +# Whether or not the Dragonfly gem should use AWS S3 to store logos. If 'false' the logos will +# be stored on the local disk. If true, you must provide the `AWS_` prefixed values. +DRAGONFLY_AWS=false +AWS_REGION= +AWS_BUCKET_NAME= + +# If you have a Rollbar account and want to redcord errors there, add your token here +ROLLBAR_ACCESS_TOKEN= +ROLLBAR_ENV= + +# Translation IO variables. The Domain can be either `app` or `client` and is typically defined +# when running `bin/rails translations:sync DOMAIN=app`. `client` will use any of your +# customized content in ./app/views/branded and `app` is for the core roadmap translations. +# Include your Translation.io API key for the appropriate domains: +# app => TRANSLATION_API_ROADMAP +# client => TRANSLATION_API_CLIENT +DOMAIN=app +TRANSLATION_API_ROADMAP= +TRANSLATION_API_CLIENT= diff --git a/Gemfile.lock b/Gemfile.lock index 575e507936..670aa8b1d7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -268,6 +268,8 @@ GEM mysql2 (0.5.4) nenv (0.3.0) nio4r (2.5.8) + nokogiri (1.13.9-arm64-darwin) + racc (~> 1.4) nokogiri (1.13.9-x86_64-linux) racc (~> 1.4) notiffany (0.1.3) @@ -498,6 +500,7 @@ GEM zeitwerk (2.6.1) PLATFORMS + arm64-darwin-21 x86_64-linux DEPENDENCIES @@ -580,4 +583,4 @@ RUBY VERSION ruby 2.7.6p219 BUNDLED WITH - 2.3.15 + 2.3.24 diff --git a/bin/setup b/bin/setup index d49acbfd70..8eeaeeca9b 100755 --- a/bin/setup +++ b/bin/setup @@ -9,32 +9,61 @@ def system!(*args) system(*args) || abort("\n== Command #{args} failed ==") end -chdir APP_ROOT do - # This script is a starting point to setup your application. - # Add necessary setup steps to this file. - - puts '== Installing dependencies ==' - system! 'gem install bundler --conservative' - system('bundle check') || system!('bundle install') - - puts "\n== Copying sample files ==" - %w[ - config/database.yml.sample - config/initializers/wicked_pdf.rb.example - ].each do |file| - new_file = file.gsub('.sample', '').gsub('.example', '') - cp file, new_file unless File.exist?(new_file) - end +valid_db = ARGV.length > 0 && %w[mysql postgres].include?(ARGV[0].to_s.downcase.strip) - puts "\n== Preparing database ==" - system! 'bin/rails db:prepare' +if valid_db + db_adapter = ARGV[0].to_s.downcase.strip == 'mysql' ? 'mysql2' : 'postgresql' - puts "\n== Fetching mime types and adding to database ==" - system! 'bin/rails mime_types:load' + chdir APP_ROOT do + # This script is a starting point to setup your application. + # Add necessary setup steps to this file. - puts "\n== Removing old logs and tempfiles ==" - system! 'bin/rails log:clear tmp:clear' + puts '== Installing dependencies ==' + system! 'gem install bundler --conservative' + system('bundle check') || system!('bundle install') + system! 'yarn install' - puts "\n== Restarting application server ==" - system! 'bin/rails restart' -end + puts "\n== Copying sample files ==" + cp 'config/database.yml.sample', 'config/database.yml' + cp 'config/initializers/wicked_pdf.rb.example', 'config/initializers/wicked_pdf.rb' + cp ".env.#{db_adapter}", '.env' + + puts "\n== Opening .env in editor ... please update as needed ==" + puts " In particular make sure your DB settings are correct." + sleep(3) + system! 'vi .env' + + puts "\n== Preparing credentials file ==" + system! "EDITOR='echo \"$(cat config/credentials.yml.#{db_adapter})\" >' bin/rails credentials:edit" + + puts "\n== Opening credentials editor ... please update as needed ==" + puts " In particular make sure your DB settings are correct." + sleep(3) + system! 'EDITOR=vi bin/rails credentials:edit' + + puts "\n== Preparing database ==" + system! 'bin/rails db:prepare' + + puts "\n== Populating License table ==" + system! 'bin/rails external_api:load_spdx_licenses' + + puts "\n== Populating Metadata Standards table ==" + system! 'bin/rails external_api:load_rdamsc_standards' + + puts "\n== Populating Research Domains table ==" + system! 'bin/rails external_api:add_field_of_science_to_research_domains' + + puts "\n== Removing old logs and tempfiles ==" + system! 'bin/rails log:clear tmp:clear' + + puts "\n== Restarting application server ==" + system! 'bin/rails restart' + + puts "\n== !!We highly recommend that you populate the Repositories table, but this can take" + puts "in excess of 10 minutes so we do not run it as part of this setup!!" + puts " To run it on your own: `bin/rails external_api:load_re3data_repos`" + end +else + puts "\n== You MUST specify the type of DB you would like to use. Either mysql or postgres ==" + puts "== For example: `ruby bin/setup postgres` ==" +end \ No newline at end of file diff --git a/config/credentials.yml.example b/config/credentials.yml.example deleted file mode 100644 index 4b1ab3068a..0000000000 --- a/config/credentials.yml.example +++ /dev/null @@ -1,23 +0,0 @@ -# This is an example credentials file. -# To real credentials file is encrypted. -# To create it run -# EDITOR=my_ave_editor rails credentials:edit -# and paste the rest of this file in, filling in the correct values -# -# If you need to generate a new secret you can run the `rails secret` utility - -database: - host: "my_host_name" - username: "my_db_user" - password: "my_db_password" - -devise_pepper: "my_pepper" - -dragonfly_secret: "my_secret" - -recaptcha: - site_key: "mykey" - secret_key: "my_secret" - -# Used as the base secret for all MessageVerifiers in Rails, including the one protecting cookies. -secret_key_base: "my_secret" diff --git a/config/credentials.yml.mysql2 b/config/credentials.yml.mysql2 new file mode 100644 index 0000000000..60593b82d2 --- /dev/null +++ b/config/credentials.yml.mysql2 @@ -0,0 +1,26 @@ +# DMPRoadmap Rails credentials file +# To generate secrets and peppers, run the following in another tab/window `bin/rails secret` + +# Used as the base secret for all MessageVerifiers in Rails, including the one protecting cookies. +secret_key_base: my_secret_key + +# Database credentials +db_username: root +db_password: + +# Devise credentials (used for user password encryption) +secret_key: my_secret_key +devise_pepper: my_pepper + +# Used by the Dragonfly gem for creating random hashes for org logos +dragonfly_secret: my_secret_key + +# AWS credentials used by the config/initializers/dragonfly.rb to access your S3 bucket (if applicable) +# aws: +# access_key_id: 12345 +# secret_access_key: 34567 + +# Recaptcha credentials +recaptcha: + site_key: 11111 + secret_key: 22222 \ No newline at end of file diff --git a/config/credentials.yml.postgresql b/config/credentials.yml.postgresql new file mode 100644 index 0000000000..4625ba451f --- /dev/null +++ b/config/credentials.yml.postgresql @@ -0,0 +1,26 @@ +# DMPRoadmap Rails credentials file +# To generate secrets and peppers, run the following in another tab/window `bin/rails secret` + +# Used as the base secret for all MessageVerifiers in Rails, including the one protecting cookies. +secret_key_base: my_secret_key + +# Database credentials +db_username: postgres +db_password: + +# Devise credentials (used for user password encryption) +secret_key: my_secret_key +devise_pepper: my_pepper + +# Used by the Dragonfly gem for creating random hashes for org logos +dragonfly_secret: my_secret_key + +# AWS credentials used by the config/initializers/dragonfly.rb to access your S3 bucket (if applicable) +# aws: +# access_key_id: 12345 +# secret_access_key: 34567 + +# Recaptcha credentials +recaptcha: + site_key: 11111 + secret_key: 22222 \ No newline at end of file diff --git a/config/database.yml.sample b/config/database.yml.sample index 8f0ba4b01f..ea0354e1d4 100644 --- a/config/database.yml.sample +++ b/config/database.yml.sample @@ -1,9 +1,12 @@ defaults: &defaults - adapter: <%= ENV['DB_ADAPTER'] || 'postgresql' %> - encoding: <%= ENV['DB_ADAPTER'] == "mysql2" ? "utf8mb4" : "" %> - username: <%= ENV["DB_ADAPTER"] == "postgresql" ? 'postgres' : 'root' %> - database: roadmap_<%= ENV['RAILS_ENV'] %> - pool: 16 + adapter: <%= ENV.fetch('DB_ADAPTER', 'postgresql') %> + encoding: <%= ENV.fetch('DB_ADAPTER', 'postgresql') == 'mysql2' ? 'utf8mb4' : '' %> + pool: <%= ENV.fetch('DB_POOL_SIZE', 16) %> + host: <%= ENV.fetch('DB_HOST', 'localhost') %> + port: <%= ENV.fetch('DB_PORT', '5432') %> + database: <%= ENV.fetch('DB_NAME', 'roadmap') %> + username: <%= ENV.fetch('DB_USERNAME', Rails.application.credentials.db_username) %> + password: <%= ENV.fetch('DB_PASSWORD', Rails.application.credentials.db_password) %> development: <<: *defaults diff --git a/config/initializers/dragonfly.rb b/config/initializers/dragonfly.rb index 98eef0ba86..d4e71a3102 100644 --- a/config/initializers/dragonfly.rb +++ b/config/initializers/dragonfly.rb @@ -17,8 +17,8 @@ require 'dragonfly/s3_data_store' datastore(:s3, { bucket_name: ENV.fetch('AWS_BUCKET_NAME', nil), - access_key_id: ENV.fetch('AWS_ACCESS_KEY_ID', nil), - secret_access_key: ENV.fetch('AWS_SECRET_ACCESS_KEY', nil), + access_key_id: ENV.fetch('AWS_ACCESS_KEY_ID', Rails.application.credentials.aws.access_key_id), + secret_access_key: ENV.fetch('AWS_SECRET_ACCESS_KEY', Rails.application.credentials.aws.secret_access_key), region: ENV.fetch('AWS_REGION', nil), root_path: Rails.env, url_scheme: 'https' diff --git a/db/schema.rb b/db/schema.rb index 56dbfef7d4..1f95e589f3 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -2,43 +2,21 @@ # of editing this file, please use the migrations feature of Active Record to # incrementally modify your database, and then regenerate this schema definition. # -# Note that this schema.rb definition is the authoritative source for your -# database schema. If you need to create the application database on another -# system, you should be using db:schema:load, not running all the migrations -# from scratch. The latter is a flawed and unsustainable approach (the more migrations -# you'll amass, the slower it'll run and the greater likelihood for issues). +# This file is the source Rails uses to define your schema when running `bin/rails +# db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to +# be faster and is potentially less error prone than running all of your +# migrations from scratch. Old migrations may fail to apply correctly if those +# migrations use external dependencies or application code. # # It's strongly recommended that you check this file into your version control system. ActiveRecord::Schema.define(version: 2022_03_15_104737) do - create_table "annotations", id: :integer, force: :cascade do |t| - t.integer "question_id" - t.integer "org_id" - t.text "text" - t.integer "type", default: 0, null: false - t.datetime "created_at" - t.datetime "updated_at" - t.string "versionable_id", limit: 36 - t.index ["org_id"], name: "fk_rails_aca7521f72" - t.index ["question_id"], name: "index_annotations_on_question_id" - t.index ["versionable_id"], name: "index_annotations_on_versionable_id" - end +# Could not dump table "annotations" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "answers", id: :integer, force: :cascade do |t| - t.text "text" - t.integer "plan_id" - t.integer "user_id" - t.integer "question_id" - t.datetime "created_at" - t.datetime "updated_at" - t.integer "lock_version", default: 0 - t.index ["plan_id"], name: "fk_rails_84a6005a3e" - t.index ["plan_id"], name: "index_answers_on_plan_id" - t.index ["question_id"], name: "fk_rails_3d5ed4418f" - t.index ["question_id"], name: "index_answers_on_question_id" - t.index ["user_id"], name: "fk_rails_584be190c2" - end +# Could not dump table "answers" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 create_table "answers_question_options", id: false, force: :cascade do |t| t.integer "answer_id", null: false @@ -46,162 +24,44 @@ t.index ["answer_id"], name: "index_answers_question_options_on_answer_id" end - create_table "api_clients", id: :integer, force: :cascade do |t| - t.string "name", null: false - t.string "description" - t.string "homepage" - t.string "contact_name" - t.string "contact_email" - t.string "client_id", null: false - t.string "client_secret", null: false - t.datetime "last_access" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.integer "org_id" - t.text "redirect_uri" - t.string "scopes", default: "", null: false - t.boolean "confidential", default: true - t.boolean "trusted", default: false - t.integer "callback_method" - t.string "callback_uri" - t.index ["name"], name: "index_oauth_applications_on_name" - end +# Could not dump table "api_clients" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "conditions", id: :integer, force: :cascade do |t| - t.integer "question_id" - t.text "option_list" - t.integer "action_type" - t.integer "number" - t.text "remove_data" - t.text "webhook_data" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["question_id"], name: "index_conditions_on_question_id" - end +# Could not dump table "conditions" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "contributors", id: :integer, force: :cascade do |t| - t.string "name" - t.string "email" - t.string "phone" - t.integer "roles", null: false - t.integer "org_id" - t.integer "plan_id", null: false - t.datetime "created_at" - t.datetime "updated_at" - t.index ["email"], name: "index_contributors_on_email" - t.index ["name", "id", "org_id"], name: "index_contrib_id_and_org_id" - t.index ["org_id"], name: "index_contributors_on_org_id" - t.index ["plan_id"], name: "index_contributors_on_plan_id" - t.index ["roles"], name: "index_contributors_on_roles" - end +# Could not dump table "contributors" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "departments", id: :integer, force: :cascade do |t| - t.string "name" - t.string "code" - t.integer "org_id" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["org_id"], name: "index_departments_on_org_id" - end +# Could not dump table "departments" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "exported_plans", id: :integer, force: :cascade do |t| - t.integer "plan_id" - t.integer "user_id" - t.string "format" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.integer "phase_id" - end +# Could not dump table "exported_plans" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "external_api_access_tokens", force: :cascade do |t| - t.bigint "user_id", null: false - t.string "external_service_name", null: false - t.string "access_token", null: false - t.string "refresh_token" - t.datetime "expires_at" - t.datetime "revoked_at" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["expires_at"], name: "index_external_api_access_tokens_on_expires_at" - t.index ["external_service_name"], name: "index_external_api_access_tokens_on_external_service_name" - t.index ["user_id", "external_service_name"], name: "index_external_tokens_on_user_and_service" - t.index ["user_id"], name: "index_external_api_access_tokens_on_user_id" - end +# Could not dump table "external_api_access_tokens" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "guidance_groups", id: :integer, force: :cascade do |t| - t.string "name" - t.integer "org_id" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.boolean "optional_subset", default: false, null: false - t.boolean "published", default: false, null: false - t.index ["org_id"], name: "index_guidance_groups_on_org_id" - end +# Could not dump table "guidance_groups" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "guidances", id: :integer, force: :cascade do |t| - t.text "text" - t.integer "guidance_group_id" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.boolean "published" - t.index ["guidance_group_id"], name: "index_guidances_on_guidance_group_id" - end +# Could not dump table "guidances" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "identifier_schemes", id: :integer, force: :cascade do |t| - t.string "name" - t.string "description" - t.boolean "active" - t.datetime "created_at" - t.datetime "updated_at" - t.string "logo_url" - t.string "identifier_prefix" - t.integer "context" - t.string "external_service" - end +# Could not dump table "identifier_schemes" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "identifiers", id: :integer, force: :cascade do |t| - t.string "value", null: false - t.text "attrs" - t.integer "identifier_scheme_id" - t.integer "identifiable_id" - t.string "identifiable_type" - t.datetime "created_at" - t.datetime "updated_at" - t.index ["identifiable_type", "identifiable_id"], name: "index_identifiers_on_identifiable_type_and_identifiable_id" - t.index ["identifier_scheme_id", "identifiable_id", "identifiable_type"], name: "index_identifiers_on_scheme_and_type_and_id" - t.index ["identifier_scheme_id", "value"], name: "index_identifiers_on_identifier_scheme_id_and_value" - end +# Could not dump table "identifiers" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "languages", id: :integer, force: :cascade do |t| - t.string "abbreviation" - t.string "description" - t.string "name" - t.boolean "default_language" - end +# Could not dump table "languages" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "licenses", force: :cascade do |t| - t.string "name", null: false - t.string "identifier", null: false - t.string "uri", null: false - t.boolean "osi_approved", default: false - t.boolean "deprecated", default: false - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["identifier", "osi_approved", "deprecated"], name: "index_license_on_identifier_and_criteria" - t.index ["identifier"], name: "index_licenses_on_identifier" - t.index ["uri"], name: "index_licenses_on_uri" - end +# Could not dump table "licenses" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "metadata_standards", force: :cascade do |t| - t.string "title" - t.text "description" - t.string "rdamsc_id" - t.string "uri" - t.json "locations" - t.json "related_entities" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - end +# Could not dump table "metadata_standards" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 create_table "metadata_standards_research_outputs", force: :cascade do |t| t.bigint "metadata_standard_id" @@ -210,17 +70,8 @@ t.index ["research_output_id"], name: "metadata_research_outputs_on_ro" end - create_table "notes", id: :integer, force: :cascade do |t| - t.integer "user_id" - t.text "text" - t.boolean "archived", default: false, null: false - t.integer "answer_id" - t.integer "archived_by" - t.datetime "created_at" - t.datetime "updated_at" - t.index ["answer_id"], name: "index_notes_on_answer_id" - t.index ["user_id"], name: "fk_rails_7f2323ad43" - end +# Could not dump table "notes" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 create_table "notification_acknowledgements", id: :integer, force: :cascade do |t| t.integer "user_id" @@ -231,18 +82,8 @@ t.index ["user_id"], name: "index_notification_acknowledgements_on_user_id" end - create_table "notifications", id: :integer, force: :cascade do |t| - t.integer "notification_type" - t.string "title" - t.integer "level" - t.text "body" - t.boolean "dismissable" - t.date "starts_at" - t.date "expires_at" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.boolean "enabled", default: true - end +# Could not dump table "notifications" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 create_table "org_token_permissions", id: :integer, force: :cascade do |t| t.integer "org_id" @@ -253,78 +94,17 @@ t.index ["token_permission_type_id"], name: "fk_rails_2aa265f538" end - create_table "orgs", id: :integer, force: :cascade do |t| - t.string "name" - t.string "abbreviation" - t.string "target_url" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.boolean "is_other", default: false, null: false - t.integer "region_id" - t.integer "language_id" - t.string "logo_uid" - t.string "logo_name" - t.string "contact_email" - t.integer "org_type", default: 0, null: false - t.text "links" - t.boolean "feedback_enabled", default: false - t.text "feedback_msg" - t.string "contact_name" - t.boolean "managed", default: false, null: false - t.string "api_create_plan_email_subject" - t.text "api_create_plan_email_body" - t.index ["language_id"], name: "fk_rails_5640112cab" - t.index ["region_id"], name: "fk_rails_5a6adf6bab" - t.string "helpdesk_email" - end +# Could not dump table "orgs" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "perms", id: :integer, force: :cascade do |t| - t.string "name" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - end +# Could not dump table "perms" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "phases", id: :integer, force: :cascade do |t| - t.string "title" - t.text "description" - t.integer "number" - t.integer "template_id" - t.datetime "created_at" - t.datetime "updated_at" - t.boolean "modifiable" - t.string "versionable_id", limit: 36 - t.index ["template_id"], name: "index_phases_on_template_id" - t.index ["versionable_id"], name: "index_phases_on_versionable_id" - end +# Could not dump table "phases" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "plans", id: :integer, force: :cascade do |t| - t.string "title" - t.integer "template_id" - t.datetime "created_at" - t.datetime "updated_at" - t.string "identifier" - t.text "description" - t.integer "visibility", default: 3, null: false - t.boolean "feedback_requested", default: false - t.boolean "complete", default: false - t.integer "org_id" - t.integer "funder_id" - t.integer "grant_id" - t.integer "api_client_id" - t.datetime "start_date" - t.datetime "end_date" - t.boolean "ethical_issues" - t.text "ethical_issues_description" - t.string "ethical_issues_report" - t.integer "funding_status" - t.bigint "research_domain_id" - t.index ["funder_id"], name: "index_plans_on_funder_id" - t.index ["grant_id"], name: "index_plans_on_grant_id" - t.index ["org_id"], name: "index_plans_on_org_id" - t.index ["research_domain_id"], name: "index_plans_on_fos_id" - t.index ["template_id"], name: "index_plans_on_template_id" - t.index ["api_client_id"], name: "index_plans_on_api_client_id" - end +# Could not dump table "plans" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 create_table "plans_guidance_groups", id: :integer, force: :cascade do |t| t.integer "guidance_group_id" @@ -334,56 +114,20 @@ t.index ["plan_id"], name: "fk_rails_13d0671430" end - create_table "prefs", id: :integer, force: :cascade do |t| - t.text "settings" - t.integer "user_id" - end +# Could not dump table "prefs" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "question_format_labels", id: false, force: :cascade do |t| - t.integer "id" - t.string "description" - t.integer "question_id" - t.integer "number" - t.datetime "created_at" - t.datetime "updated_at" - end +# Could not dump table "question_format_labels" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "question_formats", id: :integer, force: :cascade do |t| - t.string "title" - t.text "description" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.boolean "option_based", default: false - t.integer "formattype", default: 0 - end +# Could not dump table "question_formats" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "question_options", id: :integer, force: :cascade do |t| - t.integer "question_id" - t.string "text" - t.integer "number" - t.boolean "is_default" - t.datetime "created_at" - t.datetime "updated_at" - t.string "versionable_id", limit: 36 - t.index ["question_id"], name: "index_question_options_on_question_id" - t.index ["versionable_id"], name: "index_question_options_on_versionable_id" - end +# Could not dump table "question_options" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "questions", id: :integer, force: :cascade do |t| - t.text "text" - t.text "default_value" - t.integer "number" - t.integer "section_id" - t.datetime "created_at" - t.datetime "updated_at" - t.integer "question_format_id" - t.boolean "option_comment_display", default: true - t.boolean "modifiable" - t.string "versionable_id", limit: 36 - t.index ["question_format_id"], name: "fk_rails_4fbc38c8c7" - t.index ["section_id"], name: "index_questions_on_section_id" - t.index ["versionable_id"], name: "index_questions_on_versionable_id" - end +# Could not dump table "questions" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 create_table "questions_themes", id: false, force: :cascade do |t| t.integer "question_id", null: false @@ -391,41 +135,14 @@ t.index ["question_id"], name: "index_questions_themes_on_question_id" end - create_table "regions", id: :integer, force: :cascade do |t| - t.string "abbreviation" - t.string "description" - t.string "name" - t.integer "super_region_id" - end +# Could not dump table "regions" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "related_identifiers", force: :cascade do |t| - t.bigint "identifier_scheme_id" - t.integer "identifier_type", null: false - t.integer "relation_type", null: false - t.bigint "identifiable_id" - t.string "identifiable_type" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.string "value", null: false - t.index ["identifiable_id", "identifiable_type", "relation_type"], name: "index_relateds_on_identifiable_and_relation_type" - t.index ["identifier_scheme_id"], name: "index_related_identifiers_on_identifier_scheme_id" - t.index ["identifier_type"], name: "index_related_identifiers_on_identifier_type" - t.index ["relation_type"], name: "index_related_identifiers_on_relation_type" - end +# Could not dump table "related_identifiers" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "repositories", force: :cascade do |t| - t.string "name", null: false - t.text "description", null: false - t.string "homepage" - t.string "contact" - t.string "uri", null: false - t.json "info" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["homepage"], name: "index_repositories_on_homepage" - t.index ["name"], name: "index_repositories_on_name" - t.index ["uri"], name: "index_repositories_on_uri" - end +# Could not dump table "repositories" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 create_table "repositories_research_outputs", force: :cascade do |t| t.bigint "research_output_id" @@ -434,36 +151,11 @@ t.index ["research_output_id"], name: "index_repositories_research_outputs_on_research_output_id" end - create_table "research_domains", force: :cascade do |t| - t.string "identifier", null: false - t.string "label", null: false - t.bigint "parent_id" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["parent_id"], name: "index_research_domains_on_parent_id" - end +# Could not dump table "research_domains" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "research_outputs", force: :cascade do |t| - t.integer "plan_id" - t.integer "output_type", default: 3, null: false - t.string "output_type_description" - t.string "title", null: false - t.string "abbreviation" - t.integer "display_order" - t.boolean "is_default" - t.text "description" - t.integer "access", default: 0, null: false - t.datetime "release_date" - t.boolean "personal_data" - t.boolean "sensitive_data" - t.bigint "byte_size" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.bigint "license_id" - t.index ["license_id"], name: "index_research_outputs_on_license_id" - t.index ["output_type"], name: "index_research_outputs_on_output_type" - t.index ["plan_id"], name: "index_research_outputs_on_plan_id" - end +# Could not dump table "research_outputs" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 create_table "roles", id: :integer, force: :cascade do |t| t.integer "user_id" @@ -476,89 +168,26 @@ t.index ["user_id"], name: "index_roles_on_user_id" end - create_table "sections", id: :integer, force: :cascade do |t| - t.string "title" - t.text "description" - t.integer "number" - t.datetime "created_at" - t.datetime "updated_at" - t.integer "phase_id" - t.boolean "modifiable" - t.string "versionable_id", limit: 36 - t.index ["phase_id"], name: "index_sections_on_phase_id" - t.index ["versionable_id"], name: "index_sections_on_versionable_id" - end +# Could not dump table "sections" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "sessions", id: :integer, force: :cascade do |t| - t.string "session_id", limit: 64, null: false - t.text "data" - t.datetime "created_at" - t.datetime "updated_at" - t.index ["session_id"], name: "index_sessions_on_session_id", unique: true - t.index ["updated_at"], name: "index_sessions_on_updated_at" - end +# Could not dump table "sessions" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "settings", id: :integer, force: :cascade do |t| - t.string "var" - t.text "value" - t.integer "target_id", null: false - t.string "target_type" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - end +# Could not dump table "settings" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "stats", id: :integer, force: :cascade do |t| - t.bigint "count", default: 0 - t.date "date", null: false - t.string "type", null: false - t.integer "org_id" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.text "details" - t.boolean "filtered", default: false - end +# Could not dump table "stats" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "subscriptions", force: :cascade do |t| - t.bigint "plan_id" - t.integer "subscription_types", null: false - t.string "callback_uri" - t.bigint "subscriber_id" - t.string "subscriber_type" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.datetime "last_notified" - t.index ["plan_id"], name: "index_subscriptions_on_plan_id" - t.index ["subscriber_id", "subscriber_type", "plan_id"], name: "index_subscribers_on_identifiable_and_plan_id" - end +# Could not dump table "subscriptions" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "templates", id: :integer, force: :cascade do |t| - t.string "title" - t.text "description" - t.boolean "published" - t.integer "org_id" - t.string "locale" - t.boolean "is_default" - t.datetime "created_at" - t.datetime "updated_at" - t.integer "version" - t.integer "visibility" - t.integer "customization_of" - t.integer "family_id" - t.boolean "archived" - t.text "links" - t.index ["family_id", "version"], name: "index_templates_on_family_id_and_version", unique: true - t.index ["family_id"], name: "index_templates_on_family_id" - t.index ["org_id", "family_id"], name: "template_organisation_dmptemplate_index" - t.index ["org_id"], name: "index_templates_on_org_id" - end +# Could not dump table "templates" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "themes", id: :integer, force: :cascade do |t| - t.string "title" - t.text "description" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.string "locale" - end +# Could not dump table "themes" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 create_table "themes_in_guidance", id: false, force: :cascade do |t| t.integer "theme_id" @@ -567,61 +196,14 @@ t.index ["theme_id"], name: "index_themes_in_guidance_on_theme_id" end - create_table "token_permission_types", id: :integer, force: :cascade do |t| - t.string "token_type" - t.text "text_description" - t.datetime "created_at" - t.datetime "updated_at" - end +# Could not dump table "token_permission_types" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "trackers", id: :integer, force: :cascade do |t| - t.integer "org_id" - t.string "code" - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.index ["org_id"], name: "index_trackers_on_org_id" - end +# Could not dump table "trackers" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 - create_table "users", id: :integer, force: :cascade do |t| - t.string "firstname" - t.string "surname" - t.string "email", limit: 80, default: "", null: false - t.datetime "created_at", null: false - t.datetime "updated_at", null: false - t.string "encrypted_password" - t.string "reset_password_token" - t.datetime "reset_password_sent_at" - t.datetime "remember_created_at" - t.integer "sign_in_count", default: 0 - t.datetime "current_sign_in_at" - t.datetime "last_sign_in_at" - t.string "current_sign_in_ip" - t.string "last_sign_in_ip" - t.string "confirmation_token" - t.datetime "confirmed_at" - t.datetime "confirmation_sent_at" - t.string "invitation_token" - t.datetime "invitation_created_at" - t.datetime "invitation_sent_at" - t.datetime "invitation_accepted_at" - t.string "other_organisation" - t.boolean "accept_terms" - t.integer "org_id" - t.string "api_token" - t.integer "invited_by_id" - t.string "invited_by_type" - t.integer "language_id" - t.string "recovery_email" - t.string "ldap_password" - t.string "ldap_username" - t.boolean "active", default: true - t.integer "department_id" - t.datetime "last_api_access" - t.index ["department_id"], name: "fk_rails_f29bf9cdf2" - t.index ["email"], name: "index_users_on_email" - t.index ["language_id"], name: "fk_rails_45f4f12508" - t.index ["org_id"], name: "index_users_on_org_id" - end +# Could not dump table "users" because of following ActiveRecord::StatementInvalid +# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 create_table "users_perms", id: false, force: :cascade do |t| t.integer "user_id" diff --git a/good_config/credentials.yml.enc b/good_config/credentials.yml.enc new file mode 100644 index 0000000000..144bc1f74b --- /dev/null +++ b/good_config/credentials.yml.enc @@ -0,0 +1 @@ +IBWhaJPnD4UfetdD0l3jhu5VLdRgUhZcM2H/hBSq3NR3s+jehjci58bm/IHPWj3KrCe7OyNXQRghf3FO1yJdNEMm7MyJ2Abz4gfNQVrk2jykI2/Y6XyxzoZWx9urHcikTrvVqyJVXEg5ngQy/R3+oWPW2E+DSisAg9Bh8dAyfWUm/IwLz1B4tFKW5PLzbogA5/hi6YizO45Fo+H3WKkpJqXujkrtyINaNlbr9sqamFWfIIa6/nw5kWKHnA3/orCD+jZT614lGlR/p4w6XLudYpZmHAbjXn7CFHlY2Wld61IK5P4jxEgn1AkSOpazzse3ns0XAEBJgjSreMp4GUt/yyNvr3ibig6zbZ8pFOleUhaUnXZaeRZgKbfS72gbj9uUI1d/v0L+rQ8iQ+k49guXKZG8HVe0tGBVwTrEIAk+0h7edVPoHgiwpreiPDdV8CHz7TzAtuPIFzSe3i9xNtmT57anqk2I2ROWiToqxhGnK+UzZ4poQ6wAlbFcSeaxd1ElHbbD42/fC7W0WkNIeeElgRzTogvAfnBhJIscz6i0XDbwUgqg+oUXk8KKtu9wtbgGj9NZMBKJjfXa/I/49W7JrAUbcCbRWY8+6O3oXsLeWqHmRl0y+s2qO3ijXYHI9+CTEgvdImDV8acWfAfxYZ1b5lnZyyLvKUVRz4YP24P3mPmV6LwY8NJt1s2OMsyZICHG8ySNLJ+3pXnnAjBuGCzAAlcfOyBGUP10ok3TOcMp3wR9Z/3sUOvgf2lYahJz0F7HYsDdDhISQEBPJkDL0BcfJrTajWIEWpGsZNsxThtuYvGib6i8DCoGin/IPTMU9vERhR3zwDARKGQlzw6X2V7UOWGlWIqjob77FDQ4A1po4+J5CL0MhrxPkqNw1KqUU61IF0LimTu/nUwqEpQNCJ8eVpMgLM9kUn1MMEkOEhO9StaiLhSm28p5XGwN7LcR/mr6v4MEbHmKJThK+y+o4tDJi3zrmnuy5SOWsip2CW/c4qNXC1q+7U+wdXstgEWso1LeeLhgbg/UK/SU9BGM5DrurUaoww0oPCOIOqWFdNk+eHpe6zrsXmvxY40G5Zxvcmp+47rNd7MJL8cXSM3g0QUg1ydFfgxxjw06GY8GwYSMwXfbL+ur9BTIz2K55/nEW23wI9Sp8i7cc1xTBHPyTSD3HWZrPc03HxJ1JKM1YGDkla763+M/eeEbth4tn2w324y8XYkIJrFgAtOVHPulVwMPkJO423irHexNBzetnayLZPlUQDq99/y6L0/PkAKXUNzSLGwwmLjxL3TcDKLmqgMs1kPW4xKCYA622Tp+wsuq4itbbRLpHMCRdJ2ZurhH2MURBdLYXuk4vE+mfme5dz9QnUJXd5PQkD5Yd8znGa2QUyQjiLV4rkIwmoa1dYlxIuttXoo4vv1amoBWKsio/3Fb9Ejeh1OL7b3pqhpvL/KYrul+fL5cXVjGoOCkrOgwur3cnJlwOEso5BEk37591JJchdLAURLzFlkpPIgXyTkrqUXCBsNsJyC/IvLpczRAUOrMMT2ObVFhmsPZqw6cRBc=--ZCewPrkk5Vd0bk2d--vVXBb3ZcLaCDVY2kMjtIuw== \ No newline at end of file diff --git a/good_config/database.yml b/good_config/database.yml new file mode 100644 index 0000000000..c2ee8ac190 --- /dev/null +++ b/good_config/database.yml @@ -0,0 +1,15 @@ +defaults: &defaults + adapter: <%= ENV.fetch('DB_ADAPTER', 'postgresql') %> + encoding: <%= ENV.fetch('DB_ADAPTER', 'postgresql') == 'mysql2' ? 'utf8mb4' : '' %> + pool: <%= ENV.fetch('DB_POOL_SIZE', 16) %> + host: <%= ENV.fetch('DB_HOST', 'localhost') %> + port: <%= ENV.fetch('DB_PORT', '5432') %> + database: <%= ENV.fetch('DB_NAME', 'roadmap') %> + username: <%= ENV.fetch('DB_USERNAME', 'postgres') %> + password: <%= ENV.fetch('DB_PASSWORD') %> + +development: + <<: *defaults + +test: + <<: *defaults diff --git a/good_config/master.key b/good_config/master.key new file mode 100644 index 0000000000..a1b1e6944a --- /dev/null +++ b/good_config/master.key @@ -0,0 +1 @@ +d4f99cb351c8870e5ca740411cf07987 \ No newline at end of file From add60e27092bb6172d914c7fc2054c37bf41bfe8 Mon Sep 17 00:00:00 2001 From: briri Date: Thu, 27 Oct 2022 14:28:13 -0700 Subject: [PATCH 03/23] removed unused files and reverted schema.rb --- db/schema.rb | 592 +++++++++++++++++++++++++++----- good_config/credentials.yml.enc | 1 - good_config/database.yml | 15 - good_config/master.key | 1 - 4 files changed, 505 insertions(+), 104 deletions(-) delete mode 100644 good_config/credentials.yml.enc delete mode 100644 good_config/database.yml delete mode 100644 good_config/master.key diff --git a/db/schema.rb b/db/schema.rb index 1f95e589f3..56dbfef7d4 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -2,21 +2,43 @@ # of editing this file, please use the migrations feature of Active Record to # incrementally modify your database, and then regenerate this schema definition. # -# This file is the source Rails uses to define your schema when running `bin/rails -# db:schema:load`. When creating a new database, `bin/rails db:schema:load` tends to -# be faster and is potentially less error prone than running all of your -# migrations from scratch. Old migrations may fail to apply correctly if those -# migrations use external dependencies or application code. +# Note that this schema.rb definition is the authoritative source for your +# database schema. If you need to create the application database on another +# system, you should be using db:schema:load, not running all the migrations +# from scratch. The latter is a flawed and unsustainable approach (the more migrations +# you'll amass, the slower it'll run and the greater likelihood for issues). # # It's strongly recommended that you check this file into your version control system. ActiveRecord::Schema.define(version: 2022_03_15_104737) do -# Could not dump table "annotations" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "annotations", id: :integer, force: :cascade do |t| + t.integer "question_id" + t.integer "org_id" + t.text "text" + t.integer "type", default: 0, null: false + t.datetime "created_at" + t.datetime "updated_at" + t.string "versionable_id", limit: 36 + t.index ["org_id"], name: "fk_rails_aca7521f72" + t.index ["question_id"], name: "index_annotations_on_question_id" + t.index ["versionable_id"], name: "index_annotations_on_versionable_id" + end -# Could not dump table "answers" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "answers", id: :integer, force: :cascade do |t| + t.text "text" + t.integer "plan_id" + t.integer "user_id" + t.integer "question_id" + t.datetime "created_at" + t.datetime "updated_at" + t.integer "lock_version", default: 0 + t.index ["plan_id"], name: "fk_rails_84a6005a3e" + t.index ["plan_id"], name: "index_answers_on_plan_id" + t.index ["question_id"], name: "fk_rails_3d5ed4418f" + t.index ["question_id"], name: "index_answers_on_question_id" + t.index ["user_id"], name: "fk_rails_584be190c2" + end create_table "answers_question_options", id: false, force: :cascade do |t| t.integer "answer_id", null: false @@ -24,44 +46,162 @@ t.index ["answer_id"], name: "index_answers_question_options_on_answer_id" end -# Could not dump table "api_clients" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "api_clients", id: :integer, force: :cascade do |t| + t.string "name", null: false + t.string "description" + t.string "homepage" + t.string "contact_name" + t.string "contact_email" + t.string "client_id", null: false + t.string "client_secret", null: false + t.datetime "last_access" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.integer "org_id" + t.text "redirect_uri" + t.string "scopes", default: "", null: false + t.boolean "confidential", default: true + t.boolean "trusted", default: false + t.integer "callback_method" + t.string "callback_uri" + t.index ["name"], name: "index_oauth_applications_on_name" + end -# Could not dump table "conditions" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "conditions", id: :integer, force: :cascade do |t| + t.integer "question_id" + t.text "option_list" + t.integer "action_type" + t.integer "number" + t.text "remove_data" + t.text "webhook_data" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["question_id"], name: "index_conditions_on_question_id" + end -# Could not dump table "contributors" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "contributors", id: :integer, force: :cascade do |t| + t.string "name" + t.string "email" + t.string "phone" + t.integer "roles", null: false + t.integer "org_id" + t.integer "plan_id", null: false + t.datetime "created_at" + t.datetime "updated_at" + t.index ["email"], name: "index_contributors_on_email" + t.index ["name", "id", "org_id"], name: "index_contrib_id_and_org_id" + t.index ["org_id"], name: "index_contributors_on_org_id" + t.index ["plan_id"], name: "index_contributors_on_plan_id" + t.index ["roles"], name: "index_contributors_on_roles" + end -# Could not dump table "departments" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "departments", id: :integer, force: :cascade do |t| + t.string "name" + t.string "code" + t.integer "org_id" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["org_id"], name: "index_departments_on_org_id" + end -# Could not dump table "exported_plans" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "exported_plans", id: :integer, force: :cascade do |t| + t.integer "plan_id" + t.integer "user_id" + t.string "format" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.integer "phase_id" + end -# Could not dump table "external_api_access_tokens" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "external_api_access_tokens", force: :cascade do |t| + t.bigint "user_id", null: false + t.string "external_service_name", null: false + t.string "access_token", null: false + t.string "refresh_token" + t.datetime "expires_at" + t.datetime "revoked_at" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["expires_at"], name: "index_external_api_access_tokens_on_expires_at" + t.index ["external_service_name"], name: "index_external_api_access_tokens_on_external_service_name" + t.index ["user_id", "external_service_name"], name: "index_external_tokens_on_user_and_service" + t.index ["user_id"], name: "index_external_api_access_tokens_on_user_id" + end -# Could not dump table "guidance_groups" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "guidance_groups", id: :integer, force: :cascade do |t| + t.string "name" + t.integer "org_id" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.boolean "optional_subset", default: false, null: false + t.boolean "published", default: false, null: false + t.index ["org_id"], name: "index_guidance_groups_on_org_id" + end -# Could not dump table "guidances" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "guidances", id: :integer, force: :cascade do |t| + t.text "text" + t.integer "guidance_group_id" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.boolean "published" + t.index ["guidance_group_id"], name: "index_guidances_on_guidance_group_id" + end -# Could not dump table "identifier_schemes" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "identifier_schemes", id: :integer, force: :cascade do |t| + t.string "name" + t.string "description" + t.boolean "active" + t.datetime "created_at" + t.datetime "updated_at" + t.string "logo_url" + t.string "identifier_prefix" + t.integer "context" + t.string "external_service" + end -# Could not dump table "identifiers" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "identifiers", id: :integer, force: :cascade do |t| + t.string "value", null: false + t.text "attrs" + t.integer "identifier_scheme_id" + t.integer "identifiable_id" + t.string "identifiable_type" + t.datetime "created_at" + t.datetime "updated_at" + t.index ["identifiable_type", "identifiable_id"], name: "index_identifiers_on_identifiable_type_and_identifiable_id" + t.index ["identifier_scheme_id", "identifiable_id", "identifiable_type"], name: "index_identifiers_on_scheme_and_type_and_id" + t.index ["identifier_scheme_id", "value"], name: "index_identifiers_on_identifier_scheme_id_and_value" + end -# Could not dump table "languages" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "languages", id: :integer, force: :cascade do |t| + t.string "abbreviation" + t.string "description" + t.string "name" + t.boolean "default_language" + end -# Could not dump table "licenses" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "licenses", force: :cascade do |t| + t.string "name", null: false + t.string "identifier", null: false + t.string "uri", null: false + t.boolean "osi_approved", default: false + t.boolean "deprecated", default: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["identifier", "osi_approved", "deprecated"], name: "index_license_on_identifier_and_criteria" + t.index ["identifier"], name: "index_licenses_on_identifier" + t.index ["uri"], name: "index_licenses_on_uri" + end -# Could not dump table "metadata_standards" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "metadata_standards", force: :cascade do |t| + t.string "title" + t.text "description" + t.string "rdamsc_id" + t.string "uri" + t.json "locations" + t.json "related_entities" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end create_table "metadata_standards_research_outputs", force: :cascade do |t| t.bigint "metadata_standard_id" @@ -70,8 +210,17 @@ t.index ["research_output_id"], name: "metadata_research_outputs_on_ro" end -# Could not dump table "notes" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "notes", id: :integer, force: :cascade do |t| + t.integer "user_id" + t.text "text" + t.boolean "archived", default: false, null: false + t.integer "answer_id" + t.integer "archived_by" + t.datetime "created_at" + t.datetime "updated_at" + t.index ["answer_id"], name: "index_notes_on_answer_id" + t.index ["user_id"], name: "fk_rails_7f2323ad43" + end create_table "notification_acknowledgements", id: :integer, force: :cascade do |t| t.integer "user_id" @@ -82,8 +231,18 @@ t.index ["user_id"], name: "index_notification_acknowledgements_on_user_id" end -# Could not dump table "notifications" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "notifications", id: :integer, force: :cascade do |t| + t.integer "notification_type" + t.string "title" + t.integer "level" + t.text "body" + t.boolean "dismissable" + t.date "starts_at" + t.date "expires_at" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.boolean "enabled", default: true + end create_table "org_token_permissions", id: :integer, force: :cascade do |t| t.integer "org_id" @@ -94,17 +253,78 @@ t.index ["token_permission_type_id"], name: "fk_rails_2aa265f538" end -# Could not dump table "orgs" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "orgs", id: :integer, force: :cascade do |t| + t.string "name" + t.string "abbreviation" + t.string "target_url" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.boolean "is_other", default: false, null: false + t.integer "region_id" + t.integer "language_id" + t.string "logo_uid" + t.string "logo_name" + t.string "contact_email" + t.integer "org_type", default: 0, null: false + t.text "links" + t.boolean "feedback_enabled", default: false + t.text "feedback_msg" + t.string "contact_name" + t.boolean "managed", default: false, null: false + t.string "api_create_plan_email_subject" + t.text "api_create_plan_email_body" + t.index ["language_id"], name: "fk_rails_5640112cab" + t.index ["region_id"], name: "fk_rails_5a6adf6bab" + t.string "helpdesk_email" + end -# Could not dump table "perms" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "perms", id: :integer, force: :cascade do |t| + t.string "name" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end -# Could not dump table "phases" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "phases", id: :integer, force: :cascade do |t| + t.string "title" + t.text "description" + t.integer "number" + t.integer "template_id" + t.datetime "created_at" + t.datetime "updated_at" + t.boolean "modifiable" + t.string "versionable_id", limit: 36 + t.index ["template_id"], name: "index_phases_on_template_id" + t.index ["versionable_id"], name: "index_phases_on_versionable_id" + end -# Could not dump table "plans" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "plans", id: :integer, force: :cascade do |t| + t.string "title" + t.integer "template_id" + t.datetime "created_at" + t.datetime "updated_at" + t.string "identifier" + t.text "description" + t.integer "visibility", default: 3, null: false + t.boolean "feedback_requested", default: false + t.boolean "complete", default: false + t.integer "org_id" + t.integer "funder_id" + t.integer "grant_id" + t.integer "api_client_id" + t.datetime "start_date" + t.datetime "end_date" + t.boolean "ethical_issues" + t.text "ethical_issues_description" + t.string "ethical_issues_report" + t.integer "funding_status" + t.bigint "research_domain_id" + t.index ["funder_id"], name: "index_plans_on_funder_id" + t.index ["grant_id"], name: "index_plans_on_grant_id" + t.index ["org_id"], name: "index_plans_on_org_id" + t.index ["research_domain_id"], name: "index_plans_on_fos_id" + t.index ["template_id"], name: "index_plans_on_template_id" + t.index ["api_client_id"], name: "index_plans_on_api_client_id" + end create_table "plans_guidance_groups", id: :integer, force: :cascade do |t| t.integer "guidance_group_id" @@ -114,20 +334,56 @@ t.index ["plan_id"], name: "fk_rails_13d0671430" end -# Could not dump table "prefs" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "prefs", id: :integer, force: :cascade do |t| + t.text "settings" + t.integer "user_id" + end -# Could not dump table "question_format_labels" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "question_format_labels", id: false, force: :cascade do |t| + t.integer "id" + t.string "description" + t.integer "question_id" + t.integer "number" + t.datetime "created_at" + t.datetime "updated_at" + end -# Could not dump table "question_formats" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "question_formats", id: :integer, force: :cascade do |t| + t.string "title" + t.text "description" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.boolean "option_based", default: false + t.integer "formattype", default: 0 + end -# Could not dump table "question_options" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "question_options", id: :integer, force: :cascade do |t| + t.integer "question_id" + t.string "text" + t.integer "number" + t.boolean "is_default" + t.datetime "created_at" + t.datetime "updated_at" + t.string "versionable_id", limit: 36 + t.index ["question_id"], name: "index_question_options_on_question_id" + t.index ["versionable_id"], name: "index_question_options_on_versionable_id" + end -# Could not dump table "questions" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "questions", id: :integer, force: :cascade do |t| + t.text "text" + t.text "default_value" + t.integer "number" + t.integer "section_id" + t.datetime "created_at" + t.datetime "updated_at" + t.integer "question_format_id" + t.boolean "option_comment_display", default: true + t.boolean "modifiable" + t.string "versionable_id", limit: 36 + t.index ["question_format_id"], name: "fk_rails_4fbc38c8c7" + t.index ["section_id"], name: "index_questions_on_section_id" + t.index ["versionable_id"], name: "index_questions_on_versionable_id" + end create_table "questions_themes", id: false, force: :cascade do |t| t.integer "question_id", null: false @@ -135,14 +391,41 @@ t.index ["question_id"], name: "index_questions_themes_on_question_id" end -# Could not dump table "regions" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "regions", id: :integer, force: :cascade do |t| + t.string "abbreviation" + t.string "description" + t.string "name" + t.integer "super_region_id" + end -# Could not dump table "related_identifiers" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "related_identifiers", force: :cascade do |t| + t.bigint "identifier_scheme_id" + t.integer "identifier_type", null: false + t.integer "relation_type", null: false + t.bigint "identifiable_id" + t.string "identifiable_type" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.string "value", null: false + t.index ["identifiable_id", "identifiable_type", "relation_type"], name: "index_relateds_on_identifiable_and_relation_type" + t.index ["identifier_scheme_id"], name: "index_related_identifiers_on_identifier_scheme_id" + t.index ["identifier_type"], name: "index_related_identifiers_on_identifier_type" + t.index ["relation_type"], name: "index_related_identifiers_on_relation_type" + end -# Could not dump table "repositories" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "repositories", force: :cascade do |t| + t.string "name", null: false + t.text "description", null: false + t.string "homepage" + t.string "contact" + t.string "uri", null: false + t.json "info" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["homepage"], name: "index_repositories_on_homepage" + t.index ["name"], name: "index_repositories_on_name" + t.index ["uri"], name: "index_repositories_on_uri" + end create_table "repositories_research_outputs", force: :cascade do |t| t.bigint "research_output_id" @@ -151,11 +434,36 @@ t.index ["research_output_id"], name: "index_repositories_research_outputs_on_research_output_id" end -# Could not dump table "research_domains" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "research_domains", force: :cascade do |t| + t.string "identifier", null: false + t.string "label", null: false + t.bigint "parent_id" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["parent_id"], name: "index_research_domains_on_parent_id" + end -# Could not dump table "research_outputs" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "research_outputs", force: :cascade do |t| + t.integer "plan_id" + t.integer "output_type", default: 3, null: false + t.string "output_type_description" + t.string "title", null: false + t.string "abbreviation" + t.integer "display_order" + t.boolean "is_default" + t.text "description" + t.integer "access", default: 0, null: false + t.datetime "release_date" + t.boolean "personal_data" + t.boolean "sensitive_data" + t.bigint "byte_size" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.bigint "license_id" + t.index ["license_id"], name: "index_research_outputs_on_license_id" + t.index ["output_type"], name: "index_research_outputs_on_output_type" + t.index ["plan_id"], name: "index_research_outputs_on_plan_id" + end create_table "roles", id: :integer, force: :cascade do |t| t.integer "user_id" @@ -168,26 +476,89 @@ t.index ["user_id"], name: "index_roles_on_user_id" end -# Could not dump table "sections" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "sections", id: :integer, force: :cascade do |t| + t.string "title" + t.text "description" + t.integer "number" + t.datetime "created_at" + t.datetime "updated_at" + t.integer "phase_id" + t.boolean "modifiable" + t.string "versionable_id", limit: 36 + t.index ["phase_id"], name: "index_sections_on_phase_id" + t.index ["versionable_id"], name: "index_sections_on_versionable_id" + end -# Could not dump table "sessions" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "sessions", id: :integer, force: :cascade do |t| + t.string "session_id", limit: 64, null: false + t.text "data" + t.datetime "created_at" + t.datetime "updated_at" + t.index ["session_id"], name: "index_sessions_on_session_id", unique: true + t.index ["updated_at"], name: "index_sessions_on_updated_at" + end -# Could not dump table "settings" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "settings", id: :integer, force: :cascade do |t| + t.string "var" + t.text "value" + t.integer "target_id", null: false + t.string "target_type" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + end -# Could not dump table "stats" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "stats", id: :integer, force: :cascade do |t| + t.bigint "count", default: 0 + t.date "date", null: false + t.string "type", null: false + t.integer "org_id" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.text "details" + t.boolean "filtered", default: false + end -# Could not dump table "subscriptions" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "subscriptions", force: :cascade do |t| + t.bigint "plan_id" + t.integer "subscription_types", null: false + t.string "callback_uri" + t.bigint "subscriber_id" + t.string "subscriber_type" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.datetime "last_notified" + t.index ["plan_id"], name: "index_subscriptions_on_plan_id" + t.index ["subscriber_id", "subscriber_type", "plan_id"], name: "index_subscribers_on_identifiable_and_plan_id" + end -# Could not dump table "templates" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "templates", id: :integer, force: :cascade do |t| + t.string "title" + t.text "description" + t.boolean "published" + t.integer "org_id" + t.string "locale" + t.boolean "is_default" + t.datetime "created_at" + t.datetime "updated_at" + t.integer "version" + t.integer "visibility" + t.integer "customization_of" + t.integer "family_id" + t.boolean "archived" + t.text "links" + t.index ["family_id", "version"], name: "index_templates_on_family_id_and_version", unique: true + t.index ["family_id"], name: "index_templates_on_family_id" + t.index ["org_id", "family_id"], name: "template_organisation_dmptemplate_index" + t.index ["org_id"], name: "index_templates_on_org_id" + end -# Could not dump table "themes" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "themes", id: :integer, force: :cascade do |t| + t.string "title" + t.text "description" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.string "locale" + end create_table "themes_in_guidance", id: false, force: :cascade do |t| t.integer "theme_id" @@ -196,14 +567,61 @@ t.index ["theme_id"], name: "index_themes_in_guidance_on_theme_id" end -# Could not dump table "token_permission_types" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "token_permission_types", id: :integer, force: :cascade do |t| + t.string "token_type" + t.text "text_description" + t.datetime "created_at" + t.datetime "updated_at" + end -# Could not dump table "trackers" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "trackers", id: :integer, force: :cascade do |t| + t.integer "org_id" + t.string "code" + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.index ["org_id"], name: "index_trackers_on_org_id" + end -# Could not dump table "users" because of following ActiveRecord::StatementInvalid -# Mysql2::Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'NULL' at line 1 + create_table "users", id: :integer, force: :cascade do |t| + t.string "firstname" + t.string "surname" + t.string "email", limit: 80, default: "", null: false + t.datetime "created_at", null: false + t.datetime "updated_at", null: false + t.string "encrypted_password" + t.string "reset_password_token" + t.datetime "reset_password_sent_at" + t.datetime "remember_created_at" + t.integer "sign_in_count", default: 0 + t.datetime "current_sign_in_at" + t.datetime "last_sign_in_at" + t.string "current_sign_in_ip" + t.string "last_sign_in_ip" + t.string "confirmation_token" + t.datetime "confirmed_at" + t.datetime "confirmation_sent_at" + t.string "invitation_token" + t.datetime "invitation_created_at" + t.datetime "invitation_sent_at" + t.datetime "invitation_accepted_at" + t.string "other_organisation" + t.boolean "accept_terms" + t.integer "org_id" + t.string "api_token" + t.integer "invited_by_id" + t.string "invited_by_type" + t.integer "language_id" + t.string "recovery_email" + t.string "ldap_password" + t.string "ldap_username" + t.boolean "active", default: true + t.integer "department_id" + t.datetime "last_api_access" + t.index ["department_id"], name: "fk_rails_f29bf9cdf2" + t.index ["email"], name: "index_users_on_email" + t.index ["language_id"], name: "fk_rails_45f4f12508" + t.index ["org_id"], name: "index_users_on_org_id" + end create_table "users_perms", id: false, force: :cascade do |t| t.integer "user_id" diff --git a/good_config/credentials.yml.enc b/good_config/credentials.yml.enc deleted file mode 100644 index 144bc1f74b..0000000000 --- a/good_config/credentials.yml.enc +++ /dev/null @@ -1 +0,0 @@ -IBWhaJPnD4UfetdD0l3jhu5VLdRgUhZcM2H/hBSq3NR3s+jehjci58bm/IHPWj3KrCe7OyNXQRghf3FO1yJdNEMm7MyJ2Abz4gfNQVrk2jykI2/Y6XyxzoZWx9urHcikTrvVqyJVXEg5ngQy/R3+oWPW2E+DSisAg9Bh8dAyfWUm/IwLz1B4tFKW5PLzbogA5/hi6YizO45Fo+H3WKkpJqXujkrtyINaNlbr9sqamFWfIIa6/nw5kWKHnA3/orCD+jZT614lGlR/p4w6XLudYpZmHAbjXn7CFHlY2Wld61IK5P4jxEgn1AkSOpazzse3ns0XAEBJgjSreMp4GUt/yyNvr3ibig6zbZ8pFOleUhaUnXZaeRZgKbfS72gbj9uUI1d/v0L+rQ8iQ+k49guXKZG8HVe0tGBVwTrEIAk+0h7edVPoHgiwpreiPDdV8CHz7TzAtuPIFzSe3i9xNtmT57anqk2I2ROWiToqxhGnK+UzZ4poQ6wAlbFcSeaxd1ElHbbD42/fC7W0WkNIeeElgRzTogvAfnBhJIscz6i0XDbwUgqg+oUXk8KKtu9wtbgGj9NZMBKJjfXa/I/49W7JrAUbcCbRWY8+6O3oXsLeWqHmRl0y+s2qO3ijXYHI9+CTEgvdImDV8acWfAfxYZ1b5lnZyyLvKUVRz4YP24P3mPmV6LwY8NJt1s2OMsyZICHG8ySNLJ+3pXnnAjBuGCzAAlcfOyBGUP10ok3TOcMp3wR9Z/3sUOvgf2lYahJz0F7HYsDdDhISQEBPJkDL0BcfJrTajWIEWpGsZNsxThtuYvGib6i8DCoGin/IPTMU9vERhR3zwDARKGQlzw6X2V7UOWGlWIqjob77FDQ4A1po4+J5CL0MhrxPkqNw1KqUU61IF0LimTu/nUwqEpQNCJ8eVpMgLM9kUn1MMEkOEhO9StaiLhSm28p5XGwN7LcR/mr6v4MEbHmKJThK+y+o4tDJi3zrmnuy5SOWsip2CW/c4qNXC1q+7U+wdXstgEWso1LeeLhgbg/UK/SU9BGM5DrurUaoww0oPCOIOqWFdNk+eHpe6zrsXmvxY40G5Zxvcmp+47rNd7MJL8cXSM3g0QUg1ydFfgxxjw06GY8GwYSMwXfbL+ur9BTIz2K55/nEW23wI9Sp8i7cc1xTBHPyTSD3HWZrPc03HxJ1JKM1YGDkla763+M/eeEbth4tn2w324y8XYkIJrFgAtOVHPulVwMPkJO423irHexNBzetnayLZPlUQDq99/y6L0/PkAKXUNzSLGwwmLjxL3TcDKLmqgMs1kPW4xKCYA622Tp+wsuq4itbbRLpHMCRdJ2ZurhH2MURBdLYXuk4vE+mfme5dz9QnUJXd5PQkD5Yd8znGa2QUyQjiLV4rkIwmoa1dYlxIuttXoo4vv1amoBWKsio/3Fb9Ejeh1OL7b3pqhpvL/KYrul+fL5cXVjGoOCkrOgwur3cnJlwOEso5BEk37591JJchdLAURLzFlkpPIgXyTkrqUXCBsNsJyC/IvLpczRAUOrMMT2ObVFhmsPZqw6cRBc=--ZCewPrkk5Vd0bk2d--vVXBb3ZcLaCDVY2kMjtIuw== \ No newline at end of file diff --git a/good_config/database.yml b/good_config/database.yml deleted file mode 100644 index c2ee8ac190..0000000000 --- a/good_config/database.yml +++ /dev/null @@ -1,15 +0,0 @@ -defaults: &defaults - adapter: <%= ENV.fetch('DB_ADAPTER', 'postgresql') %> - encoding: <%= ENV.fetch('DB_ADAPTER', 'postgresql') == 'mysql2' ? 'utf8mb4' : '' %> - pool: <%= ENV.fetch('DB_POOL_SIZE', 16) %> - host: <%= ENV.fetch('DB_HOST', 'localhost') %> - port: <%= ENV.fetch('DB_PORT', '5432') %> - database: <%= ENV.fetch('DB_NAME', 'roadmap') %> - username: <%= ENV.fetch('DB_USERNAME', 'postgres') %> - password: <%= ENV.fetch('DB_PASSWORD') %> - -development: - <<: *defaults - -test: - <<: *defaults diff --git a/good_config/master.key b/good_config/master.key deleted file mode 100644 index a1b1e6944a..0000000000 --- a/good_config/master.key +++ /dev/null @@ -1 +0,0 @@ -d4f99cb351c8870e5ca740411cf07987 \ No newline at end of file From 5a8ab0b69ad516c3f35214d8b4224337c33e31bc Mon Sep 17 00:00:00 2001 From: briri Date: Fri, 28 Oct 2022 11:44:20 -0700 Subject: [PATCH 04/23] updated github actions to work with changed sample config files. some rubocop fixes. reran Brakeman --- .github/workflows/mysql.yml | 5 ++-- .github/workflows/postgres.yml | 3 +- app/controllers/concerns/paginable.rb | 2 +- app/models/language.rb | 2 +- app/models/settings/template.rb | 4 +-- bin/setup | 1 + config/brakeman.ignore | 42 ++------------------------- config/initializers/dragonfly.rb | 6 ++-- spec/mixins/versionable_model.rb | 2 +- 9 files changed, 17 insertions(+), 50 deletions(-) diff --git a/.github/workflows/mysql.yml b/.github/workflows/mysql.yml index 6cc54855ec..901a88a3a4 100644 --- a/.github/workflows/mysql.yml +++ b/.github/workflows/mysql.yml @@ -28,15 +28,16 @@ jobs: cache: 'yarn' # Copy all of the example configs over - - name: 'Setup Default Configuration' + - name: 'Setup the application' run: | cp config/database.yml.sample config/database.yml cp config/initializers/contact_us.rb.example config/initializers/contact_us.rb cp config/initializers/wicked_pdf.rb.example config/initializers/wicked_pdf.rb + cp .env.mysql2 .env # Stub out the Rails credentials file so that we can start the Rails app - name: 'Setup Credentials' - run: EDITOR='echo "$(cat config/credentials.yml.example)" >' bundle exec rails credentials:edit + run: EDITOR='echo "$(cat config/credentials.yml.mysql2)" >' bundle exec rails credentials:edit # Set the path to the wkhtmltopdf executable - name: 'Determine wkhtmltopdf location' diff --git a/.github/workflows/postgres.yml b/.github/workflows/postgres.yml index 7d5c3978a1..dc2cb55594 100644 --- a/.github/workflows/postgres.yml +++ b/.github/workflows/postgres.yml @@ -55,12 +55,13 @@ jobs: cp config/database.yml.sample config/database.yml cp config/initializers/contact_us.rb.example config/initializers/contact_us.rb cp config/initializers/wicked_pdf.rb.example config/initializers/wicked_pdf.rb + cp .env.postgresql .env # Stub out the Rails credentials file so that we can start the Rails app - name: 'Setup Credentials' run: | # generate a default credential file and key - EDITOR='echo "$(cat config/credentials.yml.example)" >' bundle exec rails credentials:edit + EDITOR='echo "$(cat config/credentials.yml.postgresql)" >' bundle exec rails credentials:edit # Set the path to the wkhtmltopdf executable - name: 'Determine wkhtmltopdf location' diff --git a/app/controllers/concerns/paginable.rb b/app/controllers/concerns/paginable.rb index 71d3eacb01..3c89151fe2 100644 --- a/app/controllers/concerns/paginable.rb +++ b/app/controllers/concerns/paginable.rb @@ -8,7 +8,7 @@ module Paginable ## # Regex to validate sort_field param is safe - SORT_COLUMN_FORMAT = /[\w_]+\.[\w_]+$/.freeze + SORT_COLUMN_FORMAT = /[\w_]+\.[\w_]+$/ PAGINATION_QUERY_PARAMS = %i[page sort_field sort_direction search controller action].freeze diff --git a/app/models/language.rb b/app/models/language.rb index d08a701911..3755e29bac 100644 --- a/app/models/language.rb +++ b/app/models/language.rb @@ -19,7 +19,7 @@ class Language < ApplicationRecord ABBREVIATION_MAXIMUM_LENGTH = 5 - ABBREVIATION_FORMAT = /\A[a-z]{2}(-[A-Z]{2})?\Z/.freeze + ABBREVIATION_FORMAT = /\A[a-z]{2}(-[A-Z]{2})?\Z/ NAME_MAXIMUM_LENGTH = 20 diff --git a/app/models/settings/template.rb b/app/models/settings/template.rb index a0ee4c6377..21ef58b928 100644 --- a/app/models/settings/template.rb +++ b/app/models/settings/template.rb @@ -21,8 +21,8 @@ class Template < RailsSettings::SettingObject 'Arial, Helvetica, Sans-Serif' ].freeze - VALID_FONT_SIZE_RANGE = (8..14).freeze - VALID_MARGIN_RANGE = (5..25).freeze + VALID_FONT_SIZE_RANGE = (8..14) + VALID_MARGIN_RANGE = (5..25) VALID_ADMIN_FIELDS = %w[project_name project_identifier grant_title principal_investigator project_data_contact diff --git a/bin/setup b/bin/setup index 8eeaeeca9b..890ca48512 100755 --- a/bin/setup +++ b/bin/setup @@ -25,6 +25,7 @@ if valid_db puts "\n== Copying sample files ==" cp 'config/database.yml.sample', 'config/database.yml' + cp 'config/initializers/contact_us.rb.example', 'config/initializers/contact_us.rb' cp 'config/initializers/wicked_pdf.rb.example', 'config/initializers/wicked_pdf.rb' cp ".env.#{db_adapter}", '.env' diff --git a/config/brakeman.ignore b/config/brakeman.ignore index e052e80999..a42dcc794a 100644 --- a/config/brakeman.ignore +++ b/config/brakeman.ignore @@ -23,25 +23,6 @@ ], "note": "" }, - { - "warning_type": "Unmaintained Dependency", - "warning_code": 121, - "fingerprint": "9a3951031616a07c8e02c86652f537e92c08685da97f5ec2b12d5d3602b55bb8", - "check_name": "EOLRuby", - "message": "Support for Ruby 2.6.3 ended on 2022-03-31", - "file": "Gemfile.lock", - "line": 325, - "link": "https://brakemanscanner.org/docs/warning_types/unmaintained_dependency/", - "code": null, - "render_path": null, - "location": null, - "user_input": null, - "confidence": "High", - "cwe_id": [ - 1104 - ], - "note": "" - }, { "warning_type": "Redirect", "warning_code": 18, @@ -49,7 +30,7 @@ "check_name": "Redirect", "message": "Possible unprotected redirect", "file": "app/controllers/plans_controller.rb", - "line": 393, + "line": 392, "link": "https://brakemanscanner.org/docs/warning_types/redirect/", "code": "redirect_to(Plan.deep_copy(Plan.find(params[:id])), :notice => success_message(Plan.deep_copy(Plan.find(params[:id])), _(\"copied\")))", "render_path": null, @@ -65,25 +46,6 @@ ], "note": "" }, - { - "warning_type": "Unmaintained Dependency", - "warning_code": 120, - "fingerprint": "d84924377155b41e094acae7404ec2e521629d86f97b0ff628e3d1b263f8101c", - "check_name": "EOLRails", - "message": "Support for Rails 5.2.8.1 ended on 2022-06-01", - "file": "Gemfile.lock", - "line": 325, - "link": "https://brakemanscanner.org/docs/warning_types/unmaintained_dependency/", - "code": null, - "render_path": null, - "location": null, - "user_input": null, - "confidence": "High", - "cwe_id": [ - 1104 - ], - "note": "" - }, { "warning_type": "Redirect", "warning_code": 18, @@ -108,6 +70,6 @@ "note": "" } ], - "updated": "2022-08-10 07:47:14 -0700", + "updated": "2022-10-28 11:43:26 -0700", "brakeman_version": "5.3.1" } diff --git a/config/initializers/dragonfly.rb b/config/initializers/dragonfly.rb index d4e71a3102..17f04ffff0 100644 --- a/config/initializers/dragonfly.rb +++ b/config/initializers/dragonfly.rb @@ -17,8 +17,10 @@ require 'dragonfly/s3_data_store' datastore(:s3, { bucket_name: ENV.fetch('AWS_BUCKET_NAME', nil), - access_key_id: ENV.fetch('AWS_ACCESS_KEY_ID', Rails.application.credentials.aws.access_key_id), - secret_access_key: ENV.fetch('AWS_SECRET_ACCESS_KEY', Rails.application.credentials.aws.secret_access_key), + access_key_id: ENV.fetch('AWS_ACCESS_KEY_ID', + Rails.application.credentials.aws.access_key_id), + secret_access_key: ENV.fetch('AWS_SECRET_ACCESS_KEY', + Rails.application.credentials.aws.secret_access_key), region: ENV.fetch('AWS_REGION', nil), root_path: Rails.env, url_scheme: 'https' diff --git a/spec/mixins/versionable_model.rb b/spec/mixins/versionable_model.rb index 66c6ce883f..aa6ed1c9c1 100644 --- a/spec/mixins/versionable_model.rb +++ b/spec/mixins/versionable_model.rb @@ -2,7 +2,7 @@ require 'rails_helper' -UUID_REGEX = /\A[\w\d]{8}(-[\w\d]{4}){3}-[\w\d]{12}\Z/i.freeze +UUID_REGEX = /\A[\w\d]{8}(-[\w\d]{4}){3}-[\w\d]{12}\Z/i shared_examples_for 'VersionableModel' do context 'attributes' do From 53fa945d1e1e46bca561a9725df78477a2bb8462 Mon Sep 17 00:00:00 2001 From: briri Date: Fri, 28 Oct 2022 11:52:16 -0700 Subject: [PATCH 05/23] revert some rubocop changes since they were auto-corrected with the wrong version --- app/controllers/concerns/paginable.rb | 2 +- app/models/language.rb | 2 +- app/models/settings/template.rb | 4 ++-- spec/mixins/versionable_model.rb | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/controllers/concerns/paginable.rb b/app/controllers/concerns/paginable.rb index 3c89151fe2..71d3eacb01 100644 --- a/app/controllers/concerns/paginable.rb +++ b/app/controllers/concerns/paginable.rb @@ -8,7 +8,7 @@ module Paginable ## # Regex to validate sort_field param is safe - SORT_COLUMN_FORMAT = /[\w_]+\.[\w_]+$/ + SORT_COLUMN_FORMAT = /[\w_]+\.[\w_]+$/.freeze PAGINATION_QUERY_PARAMS = %i[page sort_field sort_direction search controller action].freeze diff --git a/app/models/language.rb b/app/models/language.rb index 3755e29bac..d08a701911 100644 --- a/app/models/language.rb +++ b/app/models/language.rb @@ -19,7 +19,7 @@ class Language < ApplicationRecord ABBREVIATION_MAXIMUM_LENGTH = 5 - ABBREVIATION_FORMAT = /\A[a-z]{2}(-[A-Z]{2})?\Z/ + ABBREVIATION_FORMAT = /\A[a-z]{2}(-[A-Z]{2})?\Z/.freeze NAME_MAXIMUM_LENGTH = 20 diff --git a/app/models/settings/template.rb b/app/models/settings/template.rb index 21ef58b928..a0ee4c6377 100644 --- a/app/models/settings/template.rb +++ b/app/models/settings/template.rb @@ -21,8 +21,8 @@ class Template < RailsSettings::SettingObject 'Arial, Helvetica, Sans-Serif' ].freeze - VALID_FONT_SIZE_RANGE = (8..14) - VALID_MARGIN_RANGE = (5..25) + VALID_FONT_SIZE_RANGE = (8..14).freeze + VALID_MARGIN_RANGE = (5..25).freeze VALID_ADMIN_FIELDS = %w[project_name project_identifier grant_title principal_investigator project_data_contact diff --git a/spec/mixins/versionable_model.rb b/spec/mixins/versionable_model.rb index aa6ed1c9c1..66c6ce883f 100644 --- a/spec/mixins/versionable_model.rb +++ b/spec/mixins/versionable_model.rb @@ -2,7 +2,7 @@ require 'rails_helper' -UUID_REGEX = /\A[\w\d]{8}(-[\w\d]{4}){3}-[\w\d]{12}\Z/i +UUID_REGEX = /\A[\w\d]{8}(-[\w\d]{4}){3}-[\w\d]{12}\Z/i.freeze shared_examples_for 'VersionableModel' do context 'attributes' do From 51bd0a9d5cf70e0f934a0bef62105f455a560383 Mon Sep 17 00:00:00 2001 From: pengyin-shan Date: Fri, 4 Nov 2022 12:19:38 -0400 Subject: [PATCH 06/23] fix YAML safe load capatibility potential error --- Gemfile.lock | 5 ++++- config/environments/development.rb | 4 ++++ config/environments/production.rb | 4 ++++ config/environments/test.rb | 4 ++++ db/schema.rb | 2 +- 5 files changed, 17 insertions(+), 2 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 575e507936..993eeec238 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -268,6 +268,8 @@ GEM mysql2 (0.5.4) nenv (0.3.0) nio4r (2.5.8) + nokogiri (1.13.9-arm64-darwin) + racc (~> 1.4) nokogiri (1.13.9-x86_64-linux) racc (~> 1.4) notiffany (0.1.3) @@ -498,6 +500,7 @@ GEM zeitwerk (2.6.1) PLATFORMS + arm64-darwin-22 x86_64-linux DEPENDENCIES @@ -580,4 +583,4 @@ RUBY VERSION ruby 2.7.6p219 BUNDLED WITH - 2.3.15 + 2.3.25 diff --git a/config/environments/development.rb b/config/environments/development.rb index ade256c04b..5968bc09ee 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -82,6 +82,10 @@ # routes, locales, etc. This feature depends on the listen gem. config.file_watcher = ActiveSupport::EventedFileUpdateChecker + # CVE-2022-32224: add some compatibility with YAML.safe_load + # Rails 5,6,7 are using YAML.safe_load as the default YAML deserializer + config.active_record.yaml_column_permitted_classes = [ActiveSupport::HashWithIndifferentAccess, Symbol, Date, Time] + # Uncomment if you wish to allow Action Cable access from any origin. # config.action_cable.disable_request_forgery_protection = true diff --git a/config/environments/production.rb b/config/environments/production.rb index 9d17aeffdc..a39e298cef 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -102,6 +102,10 @@ # Do not dump schema after migrations. config.active_record.dump_schema_after_migration = false + # CVE-2022-32224: add some compatibility with YAML.safe_load + # Rails 5,6,7 are using YAML.safe_load as the default YAML deserializer + config.active_record.yaml_column_permitted_classes = [ActiveSupport::HashWithIndifferentAccess, Symbol, Date, Time] + # Inserts middleware to perform automatic connection switching. # The `database_selector` hash is used to pass options to the DatabaseSelector # middleware. The `delay` is used to determine how long to wait after a write diff --git a/config/environments/test.rb b/config/environments/test.rb index 7d008cd214..bb0460eca1 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -62,6 +62,10 @@ # config.action_view.annotate_rendered_view_with_filenames = true config.i18n.enforce_available_locales = false + + # CVE-2022-32224: add some compatibility with YAML.safe_load + # Rails 5,6,7 are using YAML.safe_load as the default YAML deserializer + config.active_record.yaml_column_permitted_classes = [ActiveSupport::HashWithIndifferentAccess, Symbol, Date, Time] end # Used by Rails' routes url_helpers (typically when including a link in an email) diff --git a/db/schema.rb b/db/schema.rb index 56dbfef7d4..ae11e2f118 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -666,4 +666,4 @@ add_foreign_key "users", "departments" add_foreign_key "users", "languages" add_foreign_key "users", "orgs" -end +end \ No newline at end of file From 3e5c7c7d1d7615bb5608094dbbf1d84d64d1daa7 Mon Sep 17 00:00:00 2001 From: pengyin-shan Date: Fri, 4 Nov 2022 13:23:24 -0400 Subject: [PATCH 07/23] move common config setting to application.rb --- config/application.rb | 5 +++++ config/environments/development.rb | 4 ---- config/environments/production.rb | 4 ---- config/environments/test.rb | 4 ---- 4 files changed, 5 insertions(+), 12 deletions(-) diff --git a/config/application.rb b/config/application.rb index 2074f1f43d..8471b03c29 100644 --- a/config/application.rb +++ b/config/application.rb @@ -26,6 +26,11 @@ class Application < Rails::Application # --------------------------------- # # Ensure that Zeitwerk knows to load our classes in the lib directory config.eager_load_paths << config.root.join('lib') + + # CVE-2022-32224: add some compatibility with YAML.safe_load + # Rails 5,6,7 are using YAML.safe_load as the default YAML deserializer + config.active_record.yaml_column_permitted_classes = [ActiveSupport::HashWithIndifferentAccess, Symbol, Date, Time] + # Have Zeitwerk skip generators because the generator templates are # incompatible with the Rails module/class naming conventions Rails.autoloaders.main.ignore(config.root.join('lib/generators')) diff --git a/config/environments/development.rb b/config/environments/development.rb index 5968bc09ee..ade256c04b 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -82,10 +82,6 @@ # routes, locales, etc. This feature depends on the listen gem. config.file_watcher = ActiveSupport::EventedFileUpdateChecker - # CVE-2022-32224: add some compatibility with YAML.safe_load - # Rails 5,6,7 are using YAML.safe_load as the default YAML deserializer - config.active_record.yaml_column_permitted_classes = [ActiveSupport::HashWithIndifferentAccess, Symbol, Date, Time] - # Uncomment if you wish to allow Action Cable access from any origin. # config.action_cable.disable_request_forgery_protection = true diff --git a/config/environments/production.rb b/config/environments/production.rb index a39e298cef..9d17aeffdc 100644 --- a/config/environments/production.rb +++ b/config/environments/production.rb @@ -102,10 +102,6 @@ # Do not dump schema after migrations. config.active_record.dump_schema_after_migration = false - # CVE-2022-32224: add some compatibility with YAML.safe_load - # Rails 5,6,7 are using YAML.safe_load as the default YAML deserializer - config.active_record.yaml_column_permitted_classes = [ActiveSupport::HashWithIndifferentAccess, Symbol, Date, Time] - # Inserts middleware to perform automatic connection switching. # The `database_selector` hash is used to pass options to the DatabaseSelector # middleware. The `delay` is used to determine how long to wait after a write diff --git a/config/environments/test.rb b/config/environments/test.rb index bb0460eca1..7d008cd214 100644 --- a/config/environments/test.rb +++ b/config/environments/test.rb @@ -62,10 +62,6 @@ # config.action_view.annotate_rendered_view_with_filenames = true config.i18n.enforce_available_locales = false - - # CVE-2022-32224: add some compatibility with YAML.safe_load - # Rails 5,6,7 are using YAML.safe_load as the default YAML deserializer - config.active_record.yaml_column_permitted_classes = [ActiveSupport::HashWithIndifferentAccess, Symbol, Date, Time] end # Used by Rails' routes url_helpers (typically when including a link in an email) From 6402f59cfbba3b2387ab05576747de5b7947ace8 Mon Sep 17 00:00:00 2001 From: briri Date: Tue, 8 Nov 2022 07:47:19 -0800 Subject: [PATCH 08/23] attempt to make setup work with Windows --- bin/setup | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/bin/setup b/bin/setup index 890ca48512..133ca6d88f 100755 --- a/bin/setup +++ b/bin/setup @@ -29,18 +29,21 @@ if valid_db cp 'config/initializers/wicked_pdf.rb.example', 'config/initializers/wicked_pdf.rb' cp ".env.#{db_adapter}", '.env' + puts "\n== Preparing credentials file ==" + system! "EDITOR='echo \"$(cat config/credentials.yml.#{db_adapter})\" >' bin/rails credentials:edit" + + # Set the editor based on the platform + ENV['EDITOR'] = Gem.win_platform? ? 'code --wait' : 'vim' + puts "\n== Opening .env in editor ... please update as needed ==" puts " In particular make sure your DB settings are correct." sleep(3) - system! 'vi .env' - - puts "\n== Preparing credentials file ==" - system! "EDITOR='echo \"$(cat config/credentials.yml.#{db_adapter})\" >' bin/rails credentials:edit" + system! '$EDITOR .env' puts "\n== Opening credentials editor ... please update as needed ==" puts " In particular make sure your DB settings are correct." sleep(3) - system! 'EDITOR=vi bin/rails credentials:edit' + system! 'bin/rails credentials:edit' puts "\n== Preparing database ==" system! 'bin/rails db:prepare' From 77da243026d60bf77d43592b88f2501135897eb5 Mon Sep 17 00:00:00 2001 From: pengyin-shan Date: Mon, 14 Nov 2022 16:51:09 -0500 Subject: [PATCH 09/23] add translation format for feedback notification page --- app/views/user_mailer/feedback_notification.html.erb | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/app/views/user_mailer/feedback_notification.html.erb b/app/views/user_mailer/feedback_notification.html.erb index b2352e9b52..ca64b9d4cf 100644 --- a/app/views/user_mailer/feedback_notification.html.erb +++ b/app/views/user_mailer/feedback_notification.html.erb @@ -2,18 +2,21 @@ <%= _('Hello %{user_name},') % {user_name: @recipient_name} %>

- <%= sanitize _(%Q{%{requestor} has requested feedback on a plan %{link_html}. To add comments, please visit the 'Plans' page under the Admin menu in %{tool_name} and open the plan.}) % { + <%= + sanitize _('%{requestor} has requested feedback on a plan %{link_html}. To add comments, please visit the "Plans" page under the Admin menu in %{tool_name} and open the plan.') % { requestor: @requestor_name, plan_name: @plan_name, tool_name: tool_name, allow_change_prefs: false, link_html: link_to(@plan_name, plan_url(@plan)) - } %> + } + %>

- Alternatively, you can click the link below:
+ <%= _("Alternatively, you can click the link below:") %> +
<%= link_to plan_url(@plan), plan_url(@plan) %>

-<%= render partial: 'email_signature', locals: { allow_change_prefs: false } %> +<%= render partial: 'email_signature', locals: { allow_change_prefs: false } %> \ No newline at end of file From edf0b5bee77cdf8b8d1a9096eb2f7c4709688cc6 Mon Sep 17 00:00:00 2001 From: pengyin-shan Date: Mon, 14 Nov 2022 17:50:35 -0500 Subject: [PATCH 10/23] add translation format for at_csv.rb --- app/models/user/at_csv.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/user/at_csv.rb b/app/models/user/at_csv.rb index 81d79bc1c2..6946cb251b 100644 --- a/app/models/user/at_csv.rb +++ b/app/models/user/at_csv.rb @@ -4,8 +4,8 @@ class User # Helper to export a list of Users as CSV class AtCsv - HEADERS = ['Name', 'E-Mail', 'Created Date', 'Last Activity', 'Plans', - 'Current Privileges', 'Active', 'Department'].freeze + HEADERS = [_("Name"), _("E-Mail"), _("Created Date"), _("Last Activity"), _("Plans"), + _("Current Privileges"), _("Active"), _("Department")].freeze def initialize(users) @users = users From 9ac45a356a2eaf349fb16f186fd0e5d8166e8e79 Mon Sep 17 00:00:00 2001 From: pengyin-shan Date: Mon, 14 Nov 2022 18:01:05 -0500 Subject: [PATCH 11/23] fix rubocop --- app/models/user/at_csv.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/user/at_csv.rb b/app/models/user/at_csv.rb index 6946cb251b..8cddb0f74e 100644 --- a/app/models/user/at_csv.rb +++ b/app/models/user/at_csv.rb @@ -4,8 +4,8 @@ class User # Helper to export a list of Users as CSV class AtCsv - HEADERS = [_("Name"), _("E-Mail"), _("Created Date"), _("Last Activity"), _("Plans"), - _("Current Privileges"), _("Active"), _("Department")].freeze + HEADERS = [_('Name'), _('E-Mail'), _('Created Date'), _('Last Activity'), _('Plans'), + _('Current Privileges'), _('Active'), _('Department')].freeze def initialize(users) @users = users From f3388065c4db0de0c56827038d762c9b219db27b Mon Sep 17 00:00:00 2001 From: pengyin-shan Date: Mon, 14 Nov 2022 18:30:47 -0500 Subject: [PATCH 12/23] update webdriver to 5.2 for a webdriver bug on M-powered Mac --- Gemfile | 2 +- Gemfile.lock | 28 ++++++++++++++-------------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Gemfile b/Gemfile index 4406242641..b66c3e792d 100644 --- a/Gemfile +++ b/Gemfile @@ -272,7 +272,7 @@ group :test do gem 'capybara' gem 'selenium-webdriver' # Easy installation and use of web drivers to run system tests with browsers - gem 'webdrivers' + gem 'webdrivers', '~> 5.2' # Automatically create snapshots when Cucumber steps fail with Capybara # and Rails (http://github.com/mattheworiordan/capybara-screenshot) diff --git a/Gemfile.lock b/Gemfile.lock index 575e507936..9cd557e789 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -104,13 +104,7 @@ GEM rack-test (>= 0.6.3) regexp_parser (>= 1.5, < 3.0) xpath (~> 3.2) - capybara-webmock (0.6.0) - capybara (>= 2.4, < 4) - rack (>= 1.4) - rack-proxy (>= 0.6.0) - rexml (>= 3.2) - selenium-webdriver (~> 3.0) - webrick (>= 1.7) + capybara-webmock (0.1.0) childprocess (3.0.0) coderay (1.1.3) concurrent-ruby (1.1.10) @@ -268,6 +262,8 @@ GEM mysql2 (0.5.4) nenv (0.3.0) nio4r (2.5.8) + nokogiri (1.13.9-arm64-darwin) + racc (~> 1.4) nokogiri (1.13.9-x86_64-linux) racc (~> 1.4) notiffany (0.1.3) @@ -417,9 +413,11 @@ GEM sprockets (> 3.0) sprockets-rails tilt - selenium-webdriver (3.142.7) - childprocess (>= 0.5, < 4.0) - rubyzip (>= 1.2.2) + selenium-webdriver (4.6.1) + childprocess (>= 0.5, < 5.0) + rexml (~> 3.2, >= 3.2.5) + rubyzip (>= 1.2.2, < 3.0) + websocket (~> 1.0) semantic_range (3.0.0) shellany (0.0.1) shoulda (4.0.0) @@ -468,10 +466,10 @@ GEM activemodel (>= 6.0.0) bindex (>= 0.4.0) railties (>= 6.0.0) - webdrivers (4.7.0) + webdrivers (5.2.0) nokogiri (~> 1.6) rubyzip (>= 1.3.0) - selenium-webdriver (> 3.141, < 5.0) + selenium-webdriver (~> 4.0) webmock (3.18.1) addressable (>= 2.8.0) crack (>= 0.3.2) @@ -482,6 +480,7 @@ GEM railties (>= 5.2) semantic_range (>= 2.3.0) webrick (1.7.0) + websocket (1.2.9) websocket-driver (0.7.5) websocket-extensions (>= 0.1.0) websocket-extensions (0.1.5) @@ -498,6 +497,7 @@ GEM zeitwerk (2.6.1) PLATFORMS + arm64-darwin-22 x86_64-linux DEPENDENCIES @@ -568,7 +568,7 @@ DEPENDENCIES translation turbo-rails web-console - webdrivers + webdrivers (~> 5.2) webmock webpacker wicked_pdf @@ -580,4 +580,4 @@ RUBY VERSION ruby 2.7.6p219 BUNDLED WITH - 2.3.15 + 2.3.25 From acd8fa0347e68196310a5bfa31922a1b545a71d7 Mon Sep 17 00:00:00 2001 From: pengyin-shan Date: Tue, 15 Nov 2022 12:23:00 -0500 Subject: [PATCH 13/23] add tranlsation formats for usage section --- app/views/guidance_groups/_guidance_group_form.html.erb | 6 +++--- app/views/plans/_request_feedback_form.html.erb | 6 +++++- app/views/usage/_total_usage.html.erb | 4 ++-- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/app/views/guidance_groups/_guidance_group_form.html.erb b/app/views/guidance_groups/_guidance_group_form.html.erb index a0384f0095..b5bd06bd25 100644 --- a/app/views/guidance_groups/_guidance_group_form.html.erb +++ b/app/views/guidance_groups/_guidance_group_form.html.erb @@ -5,20 +5,20 @@ published_tip = _("Check this box when you are ready for guidance associated wit subset_tip = _("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.") %>
- <%= form.label :name, class: "control-label" %> + <%= form.label(:name, _('Name'), class: "control-label") %> <%= form.text_field :name, class: "form-control", spellcheck: true, aria: { required: true }, data: { toggle: 'tooltip' }, title: name_tip %>
<%= form.check_box :published, data: { toggle: 'tooltip' }, title: published_tip %> - <%= form.label :published, class: "control-label" %> + <%= form.label(:published, _("Published"), class: "control-label") %>
<%# Only display the optional subset flag if allowed. Otherwise default to 'false' %> <% if allow_subset_flag %>
<%= form.check_box :optional_subset, data: { toggle: 'tooltip' }, title: subset_tip %> - <%= form.label :optional_subset, class: "control-label" %><%= _(' (e.g. School/ Department) ') %> + <%= form.label(:optional_subset, _("Optional subset"), class: "control-label") %><%= _(' (e.g. School/ Department) ') %>
<% else %> <%= form.hidden_field :optional_subset, value: "0" %> diff --git a/app/views/plans/_request_feedback_form.html.erb b/app/views/plans/_request_feedback_form.html.erb index 0001332f82..2df9f00bdc 100644 --- a/app/views/plans/_request_feedback_form.html.erb +++ b/app/views/plans/_request_feedback_form.html.erb @@ -4,7 +4,11 @@
<% if plan.owner_and_coowners.include?(current_user) && plan.owner.org.feedback_enabled? %>

<%= _('Request expert feedback') %>

-

<%= _("Click below to give data management staff at #{plan.owner.org.name}, the Plan Owner's org, access to read and comment on your plan.") %>

+ <%= + _("

Click below to give data management staff at %{owner_org}, the Plan Owner's org, access to read and comment on your plan.

") % { + owner_org: plan.owner.org.name, + } + %>
<%= sanitize plan.owner.org.feedback_msg.to_s % { user_name: current_user.name(false), plan_name: plan.title, organisation_email: current_user.org.contact_email } %>
diff --git a/app/views/usage/_total_usage.html.erb b/app/views/usage/_total_usage.html.erb index ad27cdd515..e1c0e67023 100644 --- a/app/views/usage/_total_usage.html.erb +++ b/app/views/usage/_total_usage.html.erb @@ -4,11 +4,11 @@
-

<%= user_count.to_i %> Total users

+

<%= user_count.to_i %> <%= _('Total users') %>

-

<%= plan_count.to_i %> Total plans

+

<%= plan_count.to_i %> <%= _( 'Total plans') %>

<%= form_tag('/usage', method: :get, id: :filter_plans_form) do |f| %> <%= label_tag :filtered do %> <%= check_box_tag(:filtered, "true", @filtered) %> From 67cd05264d7e71f8d32591dd0ea9164885a56dc0 Mon Sep 17 00:00:00 2001 From: pengyin-shan Date: Tue, 15 Nov 2022 12:25:36 -0500 Subject: [PATCH 14/23] move the

tag out of translation section --- app/views/plans/_request_feedback_form.html.erb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/views/plans/_request_feedback_form.html.erb b/app/views/plans/_request_feedback_form.html.erb index 2df9f00bdc..777b419b20 100644 --- a/app/views/plans/_request_feedback_form.html.erb +++ b/app/views/plans/_request_feedback_form.html.erb @@ -4,11 +4,13 @@

<% if plan.owner_and_coowners.include?(current_user) && plan.owner.org.feedback_enabled? %>

<%= _('Request expert feedback') %>

- <%= - _("

Click below to give data management staff at %{owner_org}, the Plan Owner's org, access to read and comment on your plan.

") % { +

+ <%= + _("Click below to give data management staff at %{owner_org}, the Plan Owner's org, access to read and comment on your plan.") % { owner_org: plan.owner.org.name, } %> +

<%= sanitize plan.owner.org.feedback_msg.to_s % { user_name: current_user.name(false), plan_name: plan.title, organisation_email: current_user.org.contact_email } %>
From 820d21ee37302b7de9604892d89cdd465628bc2a Mon Sep 17 00:00:00 2001 From: briri Date: Thu, 17 Nov 2022 07:54:50 -0800 Subject: [PATCH 15/23] switched from db:prepare to db:create --- bin/setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/setup b/bin/setup index 133ca6d88f..54cd0c40a1 100755 --- a/bin/setup +++ b/bin/setup @@ -46,7 +46,7 @@ if valid_db system! 'bin/rails credentials:edit' puts "\n== Preparing database ==" - system! 'bin/rails db:prepare' + system! 'bin/rails db:setup' puts "\n== Populating License table ==" system! 'bin/rails external_api:load_spdx_licenses' From b283674a83d2a9686a96623d83a70acee75f6d3e Mon Sep 17 00:00:00 2001 From: Benjamin FAURE Date: Mon, 21 Nov 2022 14:32:11 +0100 Subject: [PATCH 16/23] Created editorconfig file --- .editorconfig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000000..3606776e3b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,17 @@ +# EditorConfig is awesome: https://EditorConfig.org + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true + + +# Matches multiple files with brace expansion notation +# Set default charset +[*.{js,rb,erb}] +charset = utf-8 +indent_style = space +indent_size = 2 \ No newline at end of file From cef8c3cf32915d69ac76405ae99175c747060011 Mon Sep 17 00:00:00 2001 From: pengyin-shan Date: Wed, 23 Nov 2022 14:37:43 -0500 Subject: [PATCH 17/23] remove the extra Affiliation row in csv download --- app/models/concerns/exportable_plan.rb | 1 - 1 file changed, 1 deletion(-) diff --git a/app/models/concerns/exportable_plan.rb b/app/models/concerns/exportable_plan.rb index 7936eaffd3..f754802a8d 100644 --- a/app/models/concerns/exportable_plan.rb +++ b/app/models/concerns/exportable_plan.rb @@ -161,7 +161,6 @@ def prepare_coversheet_for_csv(csv, _headings, hash) csv << [_('Contributor: '), format(_('%{other}'), other: hash[:other].map(&:name).join(', '))] end csv << [_('Affiliation: '), format(_('%{affiliation}'), affiliation: hash[:affiliation])] - csv << ['Affiliation: ', format(_('%{affiliation}'), affiliation: hash[:affiliation])] csv << if hash[:funder].present? [_('Template: '), format(_('%{funder}'), funder: hash[:funder])] else From e0fe6906b58571a63fb24fcbe21cfe5d88edc1a6 Mon Sep 17 00:00:00 2001 From: pengyin-shan Date: Wed, 23 Nov 2022 15:01:09 -0500 Subject: [PATCH 18/23] change github action ubuntu version to ubuntu-20.04 instead of ubuntu-latest --- .github/workflows/brakeman.yml | 2 +- .github/workflows/eslint.yml | 2 +- .github/workflows/mysql.yml | 2 +- .github/workflows/postgres.yml | 2 +- .github/workflows/rubocop.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/brakeman.yml b/.github/workflows/brakeman.yml index 3ec6812cdd..a9e037de4a 100644 --- a/.github/workflows/brakeman.yml +++ b/.github/workflows/brakeman.yml @@ -8,7 +8,7 @@ on: jobs: brakeman: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 diff --git a/.github/workflows/eslint.yml b/.github/workflows/eslint.yml index 0a9756355d..ac13cdc40a 100644 --- a/.github/workflows/eslint.yml +++ b/.github/workflows/eslint.yml @@ -5,7 +5,7 @@ on: [push, pull_request] jobs: eslint: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: # Checkout the repo diff --git a/.github/workflows/mysql.yml b/.github/workflows/mysql.yml index 6cc54855ec..d5ca9de887 100644 --- a/.github/workflows/mysql.yml +++ b/.github/workflows/mysql.yml @@ -4,7 +4,7 @@ on: [pull_request] jobs: mysql: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 # Define environment variables for MySQL and Rails env: diff --git a/.github/workflows/postgres.yml b/.github/workflows/postgres.yml index 7d5c3978a1..f873581d3a 100644 --- a/.github/workflows/postgres.yml +++ b/.github/workflows/postgres.yml @@ -4,7 +4,7 @@ on: [pull_request] jobs: postgresql: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 services: # Postgres installation diff --git a/.github/workflows/rubocop.yml b/.github/workflows/rubocop.yml index 57e84481cc..e88e953abe 100644 --- a/.github/workflows/rubocop.yml +++ b/.github/workflows/rubocop.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: rubocop: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: # Checkout the repo From 2e6dc4bae419bafb0f6fea6cb8b92700321cbc80 Mon Sep 17 00:00:00 2001 From: pengyin-shan Date: Fri, 25 Nov 2022 15:25:29 -0500 Subject: [PATCH 19/23] fix routes.rb to replace some double quotes with single quotes --- config/routes.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/routes.rb b/config/routes.rb index 8c7a5d5aa4..5954d44591 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -44,7 +44,7 @@ end end - # You can have the root of your site routed with "root" + # You can have the root of your site routed with 'root' # just remember to delete public/index.html. patch 'locale/:locale' => 'session_locales#update', as: 'locale' @@ -139,15 +139,15 @@ end # Ajax endpoint for ResearchOutput.output_type selection - get "output_type_selection", controller: "research_outputs", action: "select_output_type" + get 'output_type_selection', controller: 'research_outputs', action: 'select_output_type' # Ajax endpoint for ResearchOutput.license_id selection - get "license_selection", controller: "research_outputs", action: "select_license" + get 'license_selection', controller: 'research_outputs', action: 'select_license' # AJAX endpoints for repository search and selection - get :repository_search, controller: "research_outputs" + get :repository_search, controller: 'research_outputs' # AJAX endpoints for metadata standards search and selection - get :metadata_standard_search, controller: "research_outputs" + get :metadata_standard_search, controller: 'research_outputs' end resources :usage, only: [:index] @@ -229,7 +229,7 @@ end # Paginable actions for research_outputs resources :research_outputs, only: %i[index] do - get "index/:page", action: :index, on: :collection, as: :index + get 'index/:page', action: :index, on: :collection, as: :index end end From 8dc8b75426ebb21303e097eb13f642fb41c2bb87 Mon Sep 17 00:00:00 2001 From: briri Date: Mon, 28 Nov 2022 09:08:18 -0800 Subject: [PATCH 20/23] fixed typo in research_outputs view --- app/views/research_outputs/_form.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/research_outputs/_form.html.erb b/app/views/research_outputs/_form.html.erb index e4508aa459..4e6dcb6373 100644 --- a/app/views/research_outputs/_form.html.erb +++ b/app/views/research_outputs/_form.html.erb @@ -161,7 +161,7 @@ repository_tooltip = _("Repositories preserve, manage, and provide access to man
<% file_size = presenter.converted_file_size(size: f.object.byte_size) %> - <%= f.number_field "file_size", min: 1, step: 0.1, value: file_size[:size], class: "form-control", aria: { label: _("Anticipated file size") %> + <%= f.number_field "file_size", min: 1, step: 0.1, value: file_size[:size], class: "form-control", aria: { label: _("Anticipated file size") } %> <%= f.select "file_size_unit", options_for_select(presenter.selectable_size_units, file_size[:unit]), From 22e9c6428079f2f86ff1b2f4d1b6df93f0cd62f2 Mon Sep 17 00:00:00 2001 From: briri Date: Mon, 28 Nov 2022 10:19:48 -0800 Subject: [PATCH 21/23] fixed typo in textarea question view --- app/views/questions/_new_edit_question_textarea.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/questions/_new_edit_question_textarea.html.erb b/app/views/questions/_new_edit_question_textarea.html.erb index 7f3a60bd7b..ae52892b9c 100644 --- a/app/views/questions/_new_edit_question_textarea.html.erb +++ b/app/views/questions/_new_edit_question_textarea.html.erb @@ -16,6 +16,6 @@ <%= sanitize("

#{answer.text || question.default_value}

") %>
<% else %> - <%= text_area_tag('answer[text]', answer.text || question.default_value, id: "answer-text-#{question.id}", class: "form-control tinymce_answer", aria: { labelledby: "question-text-#{question.id}" })) %> + <%= text_area_tag('answer[text]', answer.text || question.default_value, id: "answer-text-#{question.id}", class: "form-control tinymce_answer", aria: { labelledby: "question-text-#{question.id}" }) %> <% end %>
\ No newline at end of file From c6e68ccd146117c6fbb32b5d3a65f198475758b6 Mon Sep 17 00:00:00 2001 From: pengyin-shan Date: Wed, 30 Nov 2022 14:13:30 -0500 Subject: [PATCH 22/23] bundle, yarn update and translation.io update --- Gemfile.lock | 59 +- config/locale/app.pot | 417 +- config/locale/de/LC_MESSAGES/app.mo | Bin 153983 -> 154925 bytes config/locale/de/app.po | 448 +- config/locale/en/LC_MESSAGES/app.mo | Bin 0 -> 142884 bytes config/locale/en/app.po | 6653 ++++++++++++++++++++++++ config/locale/en_CA/LC_MESSAGES/app.mo | Bin 630 -> 649 bytes config/locale/en_CA/app.po | 419 +- config/locale/en_GB/LC_MESSAGES/app.mo | Bin 1916 -> 1935 bytes config/locale/en_GB/app.po | 419 +- config/locale/en_US/LC_MESSAGES/app.mo | Bin 21173 -> 21192 bytes config/locale/en_US/app.po | 419 +- config/locale/es/LC_MESSAGES/app.mo | Bin 150899 -> 151868 bytes config/locale/es/app.po | 450 +- config/locale/fi/LC_MESSAGES/app.mo | Bin 145673 -> 146539 bytes config/locale/fi/app.po | 483 +- config/locale/fr_CA/LC_MESSAGES/app.mo | Bin 129392 -> 129140 bytes config/locale/fr_CA/app.po | 446 +- config/locale/fr_FR/LC_MESSAGES/app.mo | Bin 153769 -> 154730 bytes config/locale/fr_FR/app.po | 460 +- config/locale/pt_BR/LC_MESSAGES/app.mo | Bin 149294 -> 150231 bytes config/locale/pt_BR/app.po | 452 +- config/locale/sv_FI/LC_MESSAGES/app.mo | Bin 145388 -> 146258 bytes config/locale/sv_FI/app.po | 447 +- config/locale/tr_TR/LC_MESSAGES/app.mo | Bin 132810 -> 132354 bytes config/locale/tr_TR/app.po | 448 +- config/locales/.translation_io | 2 +- yarn.lock | 610 +-- 28 files changed, 9966 insertions(+), 2666 deletions(-) create mode 100644 config/locale/en/LC_MESSAGES/app.mo create mode 100644 config/locale/en/app.po diff --git a/Gemfile.lock b/Gemfile.lock index 86d6090d67..9c48ed2690 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -47,7 +47,7 @@ GEM activerecord (6.1.7) activemodel (= 6.1.7) activesupport (= 6.1.7) - activerecord_json_validator (2.1.1) + activerecord_json_validator (2.1.3) activerecord (>= 4.2.0, < 8) json_schemer (~> 0.2.18) activestorage (6.1.7) @@ -82,11 +82,11 @@ GEM bindex (0.8.1) binding_of_caller (1.0.0) debug_inspector (>= 0.0.1) - bootsnap (1.13.0) + bootsnap (1.15.0) msgpack (~> 1.2) - brakeman (5.3.1) + brakeman (5.4.0) builder (3.2.4) - bullet (7.0.3) + bullet (7.0.4) activesupport (>= 3.0.0) uniform_notifier (~> 1.11) bundle-audit (0.1.0) @@ -95,7 +95,7 @@ GEM bundler (>= 1.2.0, < 3) thor (~> 1.0) byebug (11.1.3) - capybara (3.37.1) + capybara (3.38.0) addressable matrix mini_mime (>= 0.1.3) @@ -105,7 +105,7 @@ GEM regexp_parser (>= 1.5, < 3.0) xpath (~> 3.2) capybara-webmock (0.1.0) - childprocess (3.0.0) + childprocess (4.1.0) coderay (1.1.3) concurrent-ruby (1.1.10) contact_us (1.2.0) @@ -144,19 +144,19 @@ GEM ecma-re-validator (0.4.0) regexp_parser (~> 2.2) erubi (1.11.0) - excon (0.93.1) + excon (0.94.0) execjs (2.8.1) factory_bot (6.2.1) activesupport (>= 5.0.0) factory_bot_rails (6.2.0) factory_bot (~> 6.2.0) railties (>= 5.0.0) - faker (2.23.0) + faker (3.0.0) i18n (>= 1.8.11, < 2) - faraday (2.6.0) + faraday (2.7.1) faraday-net_http (>= 2.0, < 3.1) ruby2_keywords (>= 0.0.4) - faraday-net_http (3.0.1) + faraday-net_http (3.0.2) ffi (1.15.5) flag_shih_tzu (0.3.23) fog-aws (3.15.0) @@ -214,7 +214,7 @@ GEM actionview (>= 5.0.0) activesupport (>= 5.0.0) json (2.6.2) - json_schemer (0.2.21) + json_schemer (0.2.23) ecma-re-validator (~> 0.3) hana (~> 1.3) regexp_parser (~> 2.0) @@ -255,7 +255,8 @@ GEM rake mini_mime (1.1.2) minitest (5.16.3) - mocha (1.16.0) + mocha (2.0.2) + ruby2_keywords (>= 0.0.5) msgpack (1.6.0) multi_json (1.15.0) multi_xml (0.6.0) @@ -294,9 +295,9 @@ GEM options (2.3.2) orm_adapter (0.5.0) parallel (1.22.1) - parser (3.1.2.1) + parser (3.1.3.0) ast (~> 2.4.1) - pg (1.4.4) + pg (1.4.5) prime (0.1.2) forwardable singleton @@ -311,13 +312,13 @@ GEM nio4r (~> 2.0) pundit (2.2.0) activesupport (>= 3.0.0) - pundit-matchers (1.7.0) + pundit-matchers (1.8.4) rspec-rails (>= 3.0.0) racc (1.6.0) rack (2.2.4) rack-mini-profiler (3.0.0) rack (>= 1.2.0) - rack-protection (3.0.2) + rack-protection (3.0.4) rack rack-proxy (0.7.4) rack @@ -360,7 +361,7 @@ GEM ffi (~> 1.0) recaptcha (5.12.3) json - regexp_parser (2.6.0) + regexp_parser (2.6.1) responders (3.0.1) actionpack (>= 5.0) railties (>= 5.0) @@ -368,14 +369,14 @@ GEM rollbar (3.3.2) rspec-collection_matchers (1.2.0) rspec-expectations (>= 2.99.0.beta1) - rspec-core (3.11.0) - rspec-support (~> 3.11.0) - rspec-expectations (3.11.1) + rspec-core (3.12.0) + rspec-support (~> 3.12.0) + rspec-expectations (3.12.0) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.11.0) - rspec-mocks (3.11.1) + rspec-support (~> 3.12.0) + rspec-mocks (3.12.0) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.11.0) + rspec-support (~> 3.12.0) rspec-rails (6.0.1) actionpack (>= 6.1) activesupport (>= 6.1) @@ -384,8 +385,8 @@ GEM rspec-expectations (~> 3.11) rspec-mocks (~> 3.11) rspec-support (~> 3.11) - rspec-support (3.11.1) - rubocop (1.37.1) + rspec-support (3.12.0) + rubocop (1.39.0) json (~> 2.3) parallel (~> 1.10) parser (>= 3.1.2.1) @@ -447,7 +448,7 @@ GEM thor (1.2.1) tilt (2.0.11) tomparse (0.4.2) - translation (1.32) + translation (1.34) gettext (~> 3.2, >= 3.2.5, <= 3.4.3) turbo-rails (1.3.2) actionpack (>= 6.0.0) @@ -494,10 +495,10 @@ GEM yard-tomdoc (0.7.1) tomparse (>= 0.4.0) yard - zeitwerk (2.6.1) + zeitwerk (2.6.6) PLATFORMS - arm64-darwin-21 + arm64-darwin-22 x86_64-linux DEPENDENCIES @@ -580,4 +581,4 @@ RUBY VERSION ruby 2.7.6p219 BUNDLED WITH - 2.3.24 + 2.3.25 diff --git a/config/locale/app.pot b/config/locale/app.pot index dfc1d9e076..f7708a352d 100644 --- a/config/locale/app.pot +++ b/config/locale/app.pot @@ -1,15 +1,15 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) 2022 app -# This file is distributed under the same license as the app package. +# Copyright (C) 2022 DMPRoadmap-Development +# This file is distributed under the same license as the DMPRoadmap-Development package. # FIRST AUTHOR , 2022. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: app 1.0\n" +"Project-Id-Version: DMPRoadmap-Development 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2022-10-25 16:02+0000\n" -"PO-Revision-Date: 2022-10-25 16:02+0000\n" +"POT-Creation-Date: 2022-11-30 14:11-0500\n" +"PO-Revision-Date: 2022-11-30 14:11-0500\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" @@ -259,7 +259,7 @@ msgstr "" #: ../../app/controllers/contributors_controller.rb:72 #: ../../app/controllers/guidance_groups_controller.rb:55 #: ../../app/controllers/guidances_controller.rb:75 -#: ../../app/controllers/notes_controller.rb:89 +#: ../../app/controllers/notes_controller.rb:88 #: ../../app/controllers/org_admin/departments_controller.rb:50 #: ../../app/controllers/org_admin/sections_controller.rb:103 #: ../../app/controllers/org_admin/templates_controller.rb:205 @@ -279,7 +279,7 @@ msgstr "" #: ../../app/controllers/contributors_controller.rb:74 #: ../../app/controllers/guidance_groups_controller.rb:57 #: ../../app/controllers/guidances_controller.rb:77 -#: ../../app/controllers/notes_controller.rb:107 +#: ../../app/controllers/notes_controller.rb:106 #: ../../app/controllers/org_admin/departments_controller.rb:52 #: ../../app/controllers/org_admin/sections_controller.rb:105 #: ../../app/controllers/org_admin/templates_controller.rb:210 @@ -295,7 +295,7 @@ msgid "save" msgstr "" #: ../../app/controllers/contributors_controller.rb:84 -#: ../../app/controllers/notes_controller.rb:131 +#: ../../app/controllers/notes_controller.rb:130 #: ../../app/controllers/org_admin/templates_controller.rb:238 #: ../../app/controllers/research_outputs_controller.rb:74 #: ../../app/controllers/super_admin/orgs_controller.rb:94 @@ -303,7 +303,7 @@ msgid "removed" msgstr "" #: ../../app/controllers/contributors_controller.rb:87 -#: ../../app/controllers/notes_controller.rb:149 +#: ../../app/controllers/notes_controller.rb:148 #: ../../app/controllers/org_admin/templates_controller.rb:240 #: ../../app/controllers/research_outputs_controller.rb:77 #: ../../app/controllers/super_admin/orgs_controller.rb:97 @@ -329,7 +329,7 @@ msgstr "" #: ../../app/controllers/guidance_groups_controller.rb:31 #: ../../app/controllers/guidances_controller.rb:53 -#: ../../app/controllers/notes_controller.rb:48 +#: ../../app/controllers/notes_controller.rb:47 #: ../../app/controllers/org_admin/departments_controller.rb:26 #: ../../app/controllers/org_admin/phases_controller.rb:121 #: ../../app/controllers/org_admin/questions_controller.rb:94 @@ -345,7 +345,7 @@ msgstr "" #: ../../app/controllers/guidance_groups_controller.rb:34 #: ../../app/controllers/guidances_controller.rb:55 -#: ../../app/controllers/notes_controller.rb:67 +#: ../../app/controllers/notes_controller.rb:66 #: ../../app/controllers/org_admin/departments_controller.rb:30 #: ../../app/controllers/org_admin/phases_controller.rb:123 #: ../../app/controllers/org_admin/questions_controller.rb:96 @@ -1082,17 +1082,17 @@ msgid "Owner" msgstr "" #: ../../app/helpers/plans_helper.rb:10 -#: ../../app/views/plans/_share_form.html.erb:127 +#: ../../app/views/plans/_share_form.html.erb:129 msgid "Co-owner" msgstr "" #: ../../app/helpers/plans_helper.rb:12 -#: ../../app/views/plans/_share_form.html.erb:133 +#: ../../app/views/plans/_share_form.html.erb:135 msgid "Editor" msgstr "" #: ../../app/helpers/plans_helper.rb:14 -#: ../../app/views/plans/_share_form.html.erb:139 +#: ../../app/views/plans/_share_form.html.erb:141 msgid "Read only" msgstr "" @@ -1101,7 +1101,7 @@ msgid "Public" msgstr "" #: ../../app/helpers/plans_helper.rb:26 ../../app/helpers/plans_helper.rb:28 -#: ../../app/views/layouts/application.html.erb:129 +#: ../../app/views/layouts/application.html.erb:128 msgid "Private" msgstr "" @@ -1114,7 +1114,7 @@ msgid "Public: anyone can view." msgstr "" #: ../../app/helpers/plans_helper.rb:39 -#: ../../app/views/layouts/application.html.erb:130 +#: ../../app/views/layouts/application.html.erb:129 msgid "Private: restricted to me and people I invite." msgstr "" @@ -1341,62 +1341,61 @@ msgid "Affiliation: " msgstr "" #: ../../app/models/concerns/exportable_plan.rb:163 -#: ../../app/models/concerns/exportable_plan.rb:164 msgid "%{affiliation}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:166 -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:165 +#: ../../app/models/concerns/exportable_plan.rb:167 #: ../../app/views/shared/export/_plan_coversheet.erb:32 #: ../../app/views/shared/export/_plan_txt.erb:22 #: ../../app/views/shared/export/_plan_txt.erb:24 msgid "Template: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:166 +#: ../../app/models/concerns/exportable_plan.rb:165 msgid "%{funder}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:167 msgid "%{template}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 #: ../../app/views/shared/export/_plan_txt.erb:27 msgid "Grant number: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 msgid "%{grant_number}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 #: ../../app/views/shared/export/_plan_coversheet.erb:42 #: ../../app/views/shared/export/_plan_txt.erb:30 msgid "Project abstract: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 msgid "%{description}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 #: ../../app/views/shared/export/_plan_coversheet.erb:58 #: ../../app/views/shared/export/_plan_txt.erb:33 msgid "Last modified: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 msgid "%{date}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:175 +#: ../../app/models/concerns/exportable_plan.rb:174 #: ../../app/views/shared/export/_plan_coversheet.erb:65 #: ../../app/views/shared/export/_plan_txt.erb:34 msgid "Copyright information:" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:176 +#: ../../app/models/concerns/exportable_plan.rb:175 msgid "" "The above plan creator(s) have agreed that others may use as\n" " much of the text of this plan as they would like in their own pla" @@ -1410,12 +1409,12 @@ msgid "" " your project or proposal" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:199 +#: ../../app/models/concerns/exportable_plan.rb:198 msgid "Not Answered" msgstr "" #: ../../app/models/concerns/validation_messages.rb:11 -#: ../../app/models/template.rb:226 +#: ../../app/models/template.rb:223 msgid "can't be blank" msgstr "" @@ -1504,7 +1503,7 @@ msgstr "" msgid "private" msgstr "" -#: ../../app/models/plan.rb:617 +#: ../../app/models/plan.rb:615 msgid "must be after the start date" msgstr "" @@ -1548,51 +1547,51 @@ msgstr "" msgid "Invalid maximum pages" msgstr "" -#: ../../app/models/template.rb:254 +#: ../../app/models/template.rb:251 msgid "A historical template cannot be retrieved for being modified" msgstr "" -#: ../../app/models/template.rb:378 +#: ../../app/models/template.rb:375 msgid "generate_copy! requires an organisation target" msgstr "" -#: ../../app/models/template.rb:387 +#: ../../app/models/template.rb:384 msgid "Copy of %{template}" msgstr "" -#: ../../app/models/template.rb:394 +#: ../../app/models/template.rb:391 msgid "generate_version! requires a published template" msgstr "" -#: ../../app/models/template.rb:408 +#: ../../app/models/template.rb:405 msgid "customize! requires an organisation target" msgstr "" -#: ../../app/models/template.rb:411 +#: ../../app/models/template.rb:408 msgid "customize! requires a template from a funder" msgstr "" -#: ../../app/models/template.rb:447 +#: ../../app/models/template.rb:444 msgid "You can not publish a published template. " msgstr "" -#: ../../app/models/template.rb:451 +#: ../../app/models/template.rb:448 msgid "You can not publish a historical version of this template. " msgstr "" -#: ../../app/models/template.rb:456 +#: ../../app/models/template.rb:453 msgid "You can not publish a template without phases. " msgstr "" -#: ../../app/models/template.rb:461 +#: ../../app/models/template.rb:458 msgid "You can not publish a template without sections in a phase. " msgstr "" -#: ../../app/models/template.rb:466 +#: ../../app/models/template.rb:463 msgid "You can not publish a template without questions in a section. " msgstr "" -#: ../../app/models/template.rb:470 +#: ../../app/models/template.rb:467 msgid "Conditions in the template refer backwards" msgstr "" @@ -1600,6 +1599,58 @@ msgstr "" msgid "A Data Management Plan in %{application_name} has been shared with you" msgstr "" +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 +#: ../../app/views/contributors/_form.html.erb:10 +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:8 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 +#: ../../app/views/org_admin/departments/edit.html.erb:14 +#: ../../app/views/org_admin/departments/new.html.erb:14 +#: ../../app/views/paginable/api_clients/_index.html.erb:6 +#: ../../app/views/paginable/contributors/_index.html.erb:7 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 +#: ../../app/views/paginable/themes/_index.html.erb:4 +#: ../../app/views/paginable/users/_index.html.erb:20 +#: ../../app/views/super_admin/api_clients/_form.html.erb:11 +msgid "Name" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +msgid "E-Mail" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Created Date" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Last Activity" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/layouts/_branding.html.erb:71 +#: ../../app/views/org_admin/users/edit.html.erb:71 +#: ../../app/views/paginable/users/_index.html.erb:26 +#: ../../app/views/super_admin/users/edit.html.erb:105 +msgid "Plans" +msgstr "" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/users/_index.html.erb:27 +msgid "Current Privileges" +msgstr "" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/notifications/_index.html.erb:8 +#: ../../app/views/paginable/users/_index.html.erb:28 +#: ../../app/views/super_admin/notifications/_form.html.erb:34 +msgid "Active" +msgstr "" + +#: ../../app/models/user/at_csv.rb:8 +msgid "Department" +msgstr "" + #: ../../app/policies/api/v0/guidance_group_policy.rb:11 #: ../../app/policies/api/v0/guidance_policy.rb:11 #: ../../app/policies/api/v0/statistics_policy.rb:11 @@ -1795,7 +1846,7 @@ msgid "Please wait, Standards are loading" msgstr "" #: ../../app/views/answers/_new_edit.html.erb:68 -#: ../../app/views/contributors/_form.html.erb:94 +#: ../../app/views/contributors/_form.html.erb:95 #: ../../app/views/devise/passwords/edit.html.erb:35 #: ../../app/views/devise/registrations/_password_details.html.erb:31 #: ../../app/views/devise/registrations/_personal_details.html.erb:90 @@ -1816,7 +1867,7 @@ msgstr "" #: ../../app/views/plans/_edit_details.html.erb:11 #: ../../app/views/plans/_guidance_selection.html.erb:23 #: ../../app/views/questions/_preview_question.html.erb:111 -#: ../../app/views/research_outputs/_form.html.erb:177 +#: ../../app/views/research_outputs/_form.html.erb:178 #: ../../app/views/super_admin/api_clients/_form.html.erb:67 #: ../../app/views/super_admin/notifications/_form.html.erb:66 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -1857,20 +1908,6 @@ msgstr "" msgid "This answer triggers email(s) to " msgstr "" -#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 -#: ../../app/views/contributors/_form.html.erb:10 -#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 -#: ../../app/views/org_admin/departments/edit.html.erb:14 -#: ../../app/views/org_admin/departments/new.html.erb:14 -#: ../../app/views/paginable/api_clients/_index.html.erb:6 -#: ../../app/views/paginable/contributors/_index.html.erb:7 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 -#: ../../app/views/paginable/themes/_index.html.erb:4 -#: ../../app/views/paginable/users/_index.html.erb:20 -#: ../../app/views/super_admin/api_clients/_form.html.erb:11 -msgid "Name" -msgstr "" - #: ../../app/views/contact_us/contacts/_new_left.html.erb:13 #: ../../app/views/contact_us/contacts/_new_right.html.erb:23 #: ../../app/views/contributors/_form.html.erb:19 @@ -1880,7 +1917,7 @@ msgstr "" #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/contributors/_index.html.erb:11 #: ../../app/views/paginable/users/_index.html.erb:21 -#: ../../app/views/plans/_share_form.html.erb:107 +#: ../../app/views/plans/_share_form.html.erb:109 #: ../../app/views/shared/_create_account_form.html.erb:12 #: ../../app/views/shared/_sign_in_form.html.erb:3 #: ../../app/views/super_admin/users/edit.html.erb:15 @@ -1906,7 +1943,7 @@ msgid "Security check" msgstr "" #: ../../app/views/contact_us/contacts/_new_left.html.erb:43 -#: ../../app/views/plans/_share_form.html.erb:146 +#: ../../app/views/plans/_share_form.html.erb:148 msgid "Submit" msgstr "" @@ -1931,8 +1968,8 @@ msgstr "" #: ../../app/views/contact_us/contacts/new.html.erb:10 #: ../../app/views/layouts/_branding.html.erb:41 -#: ../../app/views/layouts/_footer.html.erb:24 -#: ../../app/views/layouts/_footer.html.erb:30 +#: ../../app/views/layouts/_footer.html.erb:23 +#: ../../app/views/layouts/_footer.html.erb:29 #: ../../app/views/org_admin/plans/index.html.erb:40 #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:39 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:24 @@ -1975,7 +2012,7 @@ msgstr "" msgid "Roles" msgstr "" -#: ../../app/views/contributors/_form.html.erb:96 +#: ../../app/views/contributors/_form.html.erb:97 #: ../../app/views/layouts/modal_search/_result.html.erb:23 #: ../../app/views/notes/_archive.html.erb:10 #: ../../app/views/notes/_list.html.erb:16 @@ -1989,16 +2026,16 @@ msgstr "" #: ../../app/views/paginable/guidance_groups/_index.html.erb:56 #: ../../app/views/paginable/guidances/_index.html.erb:61 #: ../../app/views/paginable/orgs/_index.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:75 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:78 #: ../../app/views/paginable/research_outputs/_index.html.erb:53 #: ../../app/views/paginable/templates/_customisable.html.erb:67 #: ../../app/views/paginable/templates/_organisational.html.erb:74 -#: ../../app/views/plans/_share_form.html.erb:89 -#: ../../app/views/research_outputs/_form.html.erb:179 +#: ../../app/views/plans/_share_form.html.erb:91 +#: ../../app/views/research_outputs/_form.html.erb:180 msgid "Remove" msgstr "" -#: ../../app/views/contributors/_form.html.erb:99 +#: ../../app/views/contributors/_form.html.erb:100 #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:29 #: ../../app/views/guidances/new_edit.html.erb:50 #: ../../app/views/notes/_archive.html.erb:11 @@ -2009,7 +2046,7 @@ msgstr "" #: ../../app/views/org_admin/questions/_form.html.erb:105 #: ../../app/views/plans/_guidance_selection.html.erb:35 #: ../../app/views/plans/new.html.erb:124 -#: ../../app/views/research_outputs/_form.html.erb:182 +#: ../../app/views/research_outputs/_form.html.erb:183 #: ../../app/views/super_admin/api_clients/_form.html.erb:86 #: ../../app/views/super_admin/notifications/_form.html.erb:73 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -2189,16 +2226,16 @@ msgstr "" msgid "Hello" msgstr "" -#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 -msgid "Your" -msgstr "" - #: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 msgid "" "account has been locked due to an excessive number of unsuccessful sign in att" "empts." msgstr "" +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 +msgid "Your" +msgstr "" + #: ../../app/views/devise/mailer/unlock_instructions.html.erb:6 msgid "Click the link below to unlock your account" msgstr "" @@ -2422,7 +2459,6 @@ msgid "Do you have a %{application_name} account?" msgstr "" #: ../../app/views/devise/registrations/new.html.erb:22 -#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 @@ -2469,6 +2505,27 @@ msgid "" "this subset guidance when answering questions in the 'create plan' wizard." msgstr "" +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:15 +#: ../../app/views/org_admin/templates/_form.html.erb:35 +#: ../../app/views/org_admin/templates/_row.html.erb:10 +#: ../../app/views/org_admin/templates/_row.html.erb:13 +#: ../../app/views/org_admin/templates/_show.html.erb:19 +#: ../../app/views/org_admin/templates/_show.html.erb:22 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 +#: ../../app/views/paginable/guidances/_index.html.erb:37 +#: ../../app/views/paginable/templates/_customisable.html.erb:31 +#: ../../app/views/paginable/templates/_customisable.html.erb:34 +#: ../../app/views/paginable/templates/_history.html.erb:8 +#: ../../app/views/paginable/templates/_organisational.html.erb:36 +#: ../../app/views/paginable/templates/_organisational.html.erb:39 +msgid "Published" +msgstr "" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 +msgid "Optional subset" +msgstr "" + #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 msgid " (e.g. School/ Department) " msgstr "" @@ -2618,13 +2675,6 @@ msgstr "" msgid "Admin" msgstr "" -#: ../../app/views/layouts/_branding.html.erb:71 -#: ../../app/views/org_admin/users/edit.html.erb:71 -#: ../../app/views/paginable/users/_index.html.erb:26 -#: ../../app/views/super_admin/users/edit.html.erb:105 -msgid "Plans" -msgstr "" - #: ../../app/views/layouts/_branding.html.erb:77 #: ../../app/views/org_admin/templates/index.html.erb:4 #: ../../app/views/paginable/orgs/_index.html.erb:8 @@ -2692,11 +2742,7 @@ msgid "Privacy statement" msgstr "" #: ../../app/views/layouts/_footer.html.erb:17 -msgid "Accessibility statement" -msgstr "" - -#: ../../app/views/layouts/_footer.html.erb:18 -msgid "Github" +msgid "GitHub" msgstr "" #: ../../app/views/layouts/_navigation.html.erb:12 @@ -2778,86 +2824,86 @@ msgid "%{application_name}" msgstr "" #: ../../app/views/layouts/application.html.erb:91 -msgid "Error:" +msgid "Notice:" msgstr "" #: ../../app/views/layouts/application.html.erb:91 -msgid "Notice:" +msgid "Error:" msgstr "" #: ../../app/views/layouts/application.html.erb:102 msgid "Loading..." msgstr "" -#: ../../app/views/layouts/application.html.erb:122 +#: ../../app/views/layouts/application.html.erb:121 #: ../../app/views/plans/new.html.erb:2 msgid "This field is required." msgstr "" -#: ../../app/views/layouts/application.html.erb:124 +#: ../../app/views/layouts/application.html.erb:123 #: ../../app/views/shared/_create_account_form.html.erb:31 msgid "Show password" msgstr "" -#: ../../app/views/layouts/application.html.erb:125 +#: ../../app/views/layouts/application.html.erb:124 msgid "Select an organisation from the list." msgstr "" -#: ../../app/views/layouts/application.html.erb:126 +#: ../../app/views/layouts/application.html.erb:125 msgid "My organisation isn't listed" msgstr "" -#: ../../app/views/layouts/application.html.erb:128 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:39 +#: ../../app/views/layouts/application.html.erb:127 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:42 msgid "N/A" msgstr "" -#: ../../app/views/layouts/application.html.erb:132 +#: ../../app/views/layouts/application.html.erb:131 msgid "Hide list." msgstr "" -#: ../../app/views/layouts/application.html.erb:133 +#: ../../app/views/layouts/application.html.erb:132 msgid "See the full list of partner institutions." msgstr "" -#: ../../app/views/layouts/application.html.erb:135 +#: ../../app/views/layouts/application.html.erb:134 msgid "" "Unable to find a suitable template for the research organisation and funder yo" "u selected." msgstr "" -#: ../../app/views/layouts/application.html.erb:136 +#: ../../app/views/layouts/application.html.erb:135 msgid "Please select a research organisation and funder to continue." msgstr "" -#: ../../app/views/layouts/application.html.erb:138 +#: ../../app/views/layouts/application.html.erb:137 msgid "Loading ..." msgstr "" -#: ../../app/views/layouts/application.html.erb:139 +#: ../../app/views/layouts/application.html.erb:138 msgid "Unable to load the section's content at this time." msgstr "" -#: ../../app/views/layouts/application.html.erb:140 +#: ../../app/views/layouts/application.html.erb:139 msgid "Unable to load the question's content at this time." msgstr "" -#: ../../app/views/layouts/application.html.erb:141 +#: ../../app/views/layouts/application.html.erb:140 msgid "Opens in a new window" msgstr "" -#: ../../app/views/layouts/application.html.erb:143 +#: ../../app/views/layouts/application.html.erb:142 msgid "" "%{n} results are available, use up and down arrows to navigate suggestions. Us" "e the Enter key to select a suggestion or the Escape key to close the suggesti" "ons." msgstr "" -#: ../../app/views/layouts/application.html.erb:144 +#: ../../app/views/layouts/application.html.erb:143 msgid "No results are available for your entry." msgstr "" -#: ../../app/views/layouts/application.html.erb:145 +#: ../../app/views/layouts/application.html.erb:144 msgid "Searching ..." msgstr "" @@ -2871,7 +2917,7 @@ msgid "No results matched your filter criteria." msgstr "" #: ../../app/views/layouts/modal_search/_form.html.erb:41 -#: ../../app/views/layouts/modal_search/_form.html.erb:83 +#: ../../app/views/layouts/modal_search/_form.html.erb:84 msgid "Close" msgstr "" @@ -2879,7 +2925,7 @@ msgstr "" msgid "%{topic} search" msgstr "" -#: ../../app/views/layouts/modal_search/_form.html.erb:66 +#: ../../app/views/layouts/modal_search/_form.html.erb:67 msgid "Apply filter(s)" msgstr "" @@ -2915,7 +2961,7 @@ msgstr "" #: ../../app/views/paginable/guidance_groups/_index.html.erb:49 #: ../../app/views/paginable/guidances/_index.html.erb:54 #: ../../app/views/paginable/orgs/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:58 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 #: ../../app/views/paginable/research_outputs/_index.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:56 #: ../../app/views/paginable/templates/_organisational.html.erb:56 @@ -3179,13 +3225,13 @@ msgstr "" #: ../../app/views/paginable/orgs/_index.html.erb:10 #: ../../app/views/paginable/orgs/_index.html.erb:30 #: ../../app/views/paginable/plans/_privately_visible.html.erb:13 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:53 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:56 #: ../../app/views/paginable/research_outputs/_index.html.erb:23 #: ../../app/views/paginable/research_outputs/_index.html.erb:48 #: ../../app/views/paginable/templates/_customisable.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:10 #: ../../app/views/paginable/templates/_organisational.html.erb:53 -#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:53 msgid "Actions" msgstr "" @@ -3426,21 +3472,6 @@ msgstr "" msgid "Status" msgstr "" -#: ../../app/views/org_admin/templates/_form.html.erb:35 -#: ../../app/views/org_admin/templates/_row.html.erb:10 -#: ../../app/views/org_admin/templates/_row.html.erb:13 -#: ../../app/views/org_admin/templates/_show.html.erb:19 -#: ../../app/views/org_admin/templates/_show.html.erb:22 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 -#: ../../app/views/paginable/guidances/_index.html.erb:37 -#: ../../app/views/paginable/templates/_customisable.html.erb:31 -#: ../../app/views/paginable/templates/_customisable.html.erb:34 -#: ../../app/views/paginable/templates/_history.html.erb:8 -#: ../../app/views/paginable/templates/_organisational.html.erb:36 -#: ../../app/views/paginable/templates/_organisational.html.erb:39 -msgid "Published" -msgstr "" - #: ../../app/views/org_admin/templates/_form.html.erb:37 #: ../../app/views/org_admin/templates/_row.html.erb:16 #: ../../app/views/org_admin/templates/_show.html.erb:26 @@ -3778,7 +3809,7 @@ msgstr "" #: ../../app/views/orgs/admin_edit.html.erb:22 #: ../../app/views/plans/_navigation.html.erb:33 -#: ../../app/views/plans/_request_feedback_form.html.erb:13 +#: ../../app/views/plans/_request_feedback_form.html.erb:19 #: ../../app/views/static_pages/help.html.erb:45 msgid "Request feedback" msgstr "" @@ -3867,13 +3898,9 @@ msgid "" "ou sure?" msgstr "" -#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 -msgid "Optional subset" -msgstr "" - #: ../../app/views/paginable/guidance_groups/_index.html.erb:31 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:45 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:48 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:12 @@ -3881,8 +3908,8 @@ msgid "No" msgstr "" #: ../../app/views/paginable/guidance_groups/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:43 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:46 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:11 @@ -3928,12 +3955,6 @@ msgstr "" msgid "Expiration" msgstr "" -#: ../../app/views/paginable/notifications/_index.html.erb:8 -#: ../../app/views/paginable/users/_index.html.erb:28 -#: ../../app/views/super_admin/notifications/_form.html.erb:34 -msgid "Active" -msgstr "" - #: ../../app/views/paginable/orgs/_index.html.erb:6 msgid "Administrator Email" msgstr "" @@ -3989,8 +4010,8 @@ msgstr "" #: #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:21 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:73 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:9 #: ../../app/views/paginable/templates/_history.html.erb:6 #: ../../app/views/paginable/templates/_organisational.html.erb:2 @@ -4038,31 +4059,31 @@ msgstr "" msgid "Shared" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 #: ../../app/views/plans/_navigation.html.erb:28 msgid "Share" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:65 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:68 #: ../../app/views/paginable/templates/_organisational.html.erb:67 msgid "Copy" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 #: ../../app/views/paginable/templates/_history.html.erb:58 msgid "View" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" -"Are you sure you wish to remove this public plan? This will remove it from the" -" Public DMPs page but any collaborators will still be able to access it." +"Are you sure you wish to remove this plan? Any collaborators will still be abl" +"e to access it." msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" -"Are you sure you wish to remove this plan? Any collaborators will still be abl" -"e to access it." +"Are you sure you wish to remove this public plan? This will remove it from the" +" Public DMPs page but any collaborators will still be able to access it." msgstr "" #: ../../app/views/paginable/plans/_publicly_visible.html.erb:17 @@ -4208,10 +4229,6 @@ msgstr "" msgid "Last activity" msgstr "" -#: ../../app/views/paginable/users/_index.html.erb:27 -msgid "Current Privileges" -msgstr "" - #: ../../app/views/paginable/users/_index.html.erb:46 msgid "Edit Profile" msgstr "" @@ -4497,11 +4514,17 @@ msgstr "" msgid "Request expert feedback" msgstr "" -#: ../../app/views/plans/_request_feedback_form.html.erb:11 -msgid "You can continue to edit and download the plan in the interim." +#: ../../app/views/plans/_request_feedback_form.html.erb:9 +msgid "" +"Click below to give data management staff at %{owner_org}, the Plan Owner's or" +"g, access to read and comment on your plan." msgstr "" #: ../../app/views/plans/_request_feedback_form.html.erb:17 +msgid "You can continue to edit and download the plan in the interim." +msgstr "" + +#: ../../app/views/plans/_request_feedback_form.html.erb:23 msgid "Feedback has been requested." msgstr "" @@ -4517,52 +4540,52 @@ msgstr "" msgid "Set plan visibility" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:9 +#: ../../app/views/plans/_share_form.html.erb:13 msgid "" "Public or organisational visibility is intended for finished plans. You must a" "nswer at least %{percentage}%% of the questions to enable these options. Note:" " test plans are set to private visibility by default." msgstr "" -#: ../../app/views/plans/_share_form.html.erb:19 +#: ../../app/views/plans/_share_form.html.erb:21 msgid "" "Private: visible to me, specified collaborators and administrators at my organ" "isation" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:27 +#: ../../app/views/plans/_share_form.html.erb:29 #: ../../app/views/user_mailer/plan_visibility.html.erb:12 msgid "Organisation: anyone at my organisation can view" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:35 +#: ../../app/views/plans/_share_form.html.erb:37 msgid "Public: anyone can view" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:42 +#: ../../app/views/plans/_share_form.html.erb:44 msgid "Manage collaborators" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:43 +#: ../../app/views/plans/_share_form.html.erb:45 msgid "" "Invite specific people to read, edit, or administer your plan. Invitees will r" "eceive an email notification that they have access to this plan." msgstr "" -#: ../../app/views/plans/_share_form.html.erb:48 +#: ../../app/views/plans/_share_form.html.erb:50 msgid "Email address" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:49 -#: ../../app/views/plans/_share_form.html.erb:122 +#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:124 msgid "Permissions" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:89 +#: ../../app/views/plans/_share_form.html.erb:91 msgid "Are you sure?" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:100 +#: ../../app/views/plans/_share_form.html.erb:102 msgid "Invite collaborators" msgstr "" @@ -4739,6 +4762,10 @@ msgstr "" msgid "Please describe the output type" msgstr "" +#: ../../app/views/research_outputs/_form.html.erb:27 +msgid "Research output type" +msgstr "" + #: ../../app/views/research_outputs/_form.html.erb:44 msgid "Abbreviation" msgstr "" @@ -4779,10 +4806,15 @@ msgid "Initial access level" msgstr "" #: ../../app/views/research_outputs/_form.html.erb:158 +#: ../../app/views/research_outputs/_form.html.erb:164 #: ../../app/views/shared/export/_plan_outputs.erb:23 msgid "Anticipated file size" msgstr "" +#: ../../app/views/research_outputs/_form.html.erb:170 +msgid "File size units" +msgstr "" + #: ../../app/views/research_outputs/edit.html.erb:12 msgid "Editing %{research_output_title}" msgstr "" @@ -4800,11 +4832,12 @@ msgstr "" msgid "Add a research output" msgstr "" -#: ../../app/views/research_outputs/licenses/_form.html.erb:24 +#: ../../app/views/research_outputs/licenses/_form.html.erb:20 +#: ../../app/views/research_outputs/licenses/_form.html.erb:25 msgid "Initial license" msgstr "" -#: ../../app/views/research_outputs/licenses/_form.html.erb:30 +#: ../../app/views/research_outputs/licenses/_form.html.erb:31 msgid "For guidance on selecting a license:" msgstr "" @@ -4828,10 +4861,18 @@ msgstr "" msgid "- Select a subject area -" msgstr "" -#: ../../app/views/research_outputs/repositories/_search.html.erb:21 +#: ../../app/views/research_outputs/repositories/_search.html.erb:14 +msgid "Select a subject area" +msgstr "" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:22 msgid "- Select a repository type -" msgstr "" +#: ../../app/views/research_outputs/repositories/_search.html.erb:24 +msgid "Select a repository type" +msgstr "" + #: ../../app/views/research_outputs/repositories/_search_result.html.erb:20 msgid "Click to view repositories related to %{subject}" msgstr "" @@ -5118,11 +5159,11 @@ msgid "on the homepage." msgstr "" #: ../../app/views/static_pages/about_us.html.erb:35 -msgid "Please visit the" +msgid "page for guidance." msgstr "" #: ../../app/views/static_pages/about_us.html.erb:35 -msgid "page for guidance." +msgid "Please visit the" msgstr "" #: ../../app/views/static_pages/about_us.html.erb:37 @@ -5674,6 +5715,14 @@ msgstr "" msgid "Statistics on your Templates" msgstr "" +#: ../../app/views/usage/_total_usage.html.erb:7 +msgid "Total users" +msgstr "" + +#: ../../app/views/usage/_total_usage.html.erb:11 +msgid "Total plans" +msgstr "" + #: ../../app/views/usage/_total_usage.html.erb:15 msgid "Excluding Test Plans" msgstr "" @@ -5800,13 +5849,17 @@ msgstr "" msgid "Hello %{user_name}," msgstr "" -#: ../../app/views/user_mailer/feedback_notification.html.erb:5 +#: ../../app/views/user_mailer/feedback_notification.html.erb:6 msgid "" "%{requestor} has requested feedback on a plan %{link_html}. To add comments, p" -"lease visit the 'Plans' page under the Admin menu in %{tool_name} and open the" +"lease visit the \"Plans\" page under the Admin menu in %{tool_name} and open the" " plan." msgstr "" +#: ../../app/views/user_mailer/feedback_notification.html.erb:17 +msgid "Alternatively, you can click the link below:" +msgstr "" + #: ../../app/views/user_mailer/new_comment.html.erb:5 msgid "" "%{commenter_name} has commented on your plan %{plan_title}. To view the commen" @@ -5885,19 +5938,19 @@ msgid "Hello %{recipient_name}," msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " is creating a Data Management Plan and has answered " +msgid " to " msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " to " +msgid " based on the template " msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " in a plan called " +msgid " is creating a Data Management Plan and has answered " msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " based on the template " +msgid " in a plan called " msgstr "" #: ../../app/views/user_mailer/sharing_notification.html.erb:5 @@ -6037,11 +6090,11 @@ msgid "Download users" msgstr "" #: ../../app/views/users/refresh_token.js.erb:1 -msgid "Successfully regenerate your API token." +msgid "Unable to regenerate your API token." msgstr "" #: ../../app/views/users/refresh_token.js.erb:1 -msgid "Unable to regenerate your API token." +msgid "Successfully regenerate your API token." msgstr "" #: i18n_placeholders.rb:4 diff --git a/config/locale/de/LC_MESSAGES/app.mo b/config/locale/de/LC_MESSAGES/app.mo index f9205e9ce98ff149ebe7c06ae0f497f97e6bda62..a2eba675e5af7e18a8097dc7d03d4b2e9a12c63b 100644 GIT binary patch delta 26992 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 delta 26209 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 diff --git a/config/locale/de/app.po b/config/locale/de/app.po index 05b3a17607..890cbd1fc8 100644 --- a/config/locale/de/app.po +++ b/config/locale/de/app.po @@ -1,14 +1,14 @@ -# German translations for app package. -# Copyright (C) 2022 app -# This file is distributed under the same license as the app package. +# German translations for DMPRoadmap-Development package. +# Copyright (C) 2022 DMPRoadmap-Development +# This file is distributed under the same license as the DMPRoadmap-Development package. # FIRST AUTHOR , 2022. # msgid "" msgstr "" -"Project-Id-Version: app 1.0\n" +"Project-Id-Version: DMPRoadmap-Development 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2022-10-25 16:02+0000\n" -"PO-Revision-Date: 2022-10-25 18:03+0200\n" +"POT-Creation-Date: 2022-11-30 14:11-0500\n" +"PO-Revision-Date: 2022-11-30 20:11+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: German\n" "Language: de\n" @@ -267,7 +267,7 @@ msgstr "Hinzugefügt" #: ../../app/controllers/contributors_controller.rb:72 #: ../../app/controllers/guidance_groups_controller.rb:55 #: ../../app/controllers/guidances_controller.rb:75 -#: ../../app/controllers/notes_controller.rb:89 +#: ../../app/controllers/notes_controller.rb:88 #: ../../app/controllers/org_admin/departments_controller.rb:50 #: ../../app/controllers/org_admin/sections_controller.rb:103 #: ../../app/controllers/org_admin/templates_controller.rb:205 @@ -287,7 +287,7 @@ msgstr "gespeichert" #: ../../app/controllers/contributors_controller.rb:74 #: ../../app/controllers/guidance_groups_controller.rb:57 #: ../../app/controllers/guidances_controller.rb:77 -#: ../../app/controllers/notes_controller.rb:107 +#: ../../app/controllers/notes_controller.rb:106 #: ../../app/controllers/org_admin/departments_controller.rb:52 #: ../../app/controllers/org_admin/sections_controller.rb:105 #: ../../app/controllers/org_admin/templates_controller.rb:210 @@ -303,7 +303,7 @@ msgid "save" msgstr "Speichern" #: ../../app/controllers/contributors_controller.rb:84 -#: ../../app/controllers/notes_controller.rb:131 +#: ../../app/controllers/notes_controller.rb:130 #: ../../app/controllers/org_admin/templates_controller.rb:238 #: ../../app/controllers/research_outputs_controller.rb:74 #: ../../app/controllers/super_admin/orgs_controller.rb:94 @@ -311,7 +311,7 @@ msgid "removed" msgstr "entfernt" #: ../../app/controllers/contributors_controller.rb:87 -#: ../../app/controllers/notes_controller.rb:149 +#: ../../app/controllers/notes_controller.rb:148 #: ../../app/controllers/org_admin/templates_controller.rb:240 #: ../../app/controllers/research_outputs_controller.rb:77 #: ../../app/controllers/super_admin/orgs_controller.rb:97 @@ -337,7 +337,7 @@ msgstr "Bei der Anforderung von Feedback für diesen Plan ist ein Fehler aufgetr #: ../../app/controllers/guidance_groups_controller.rb:31 #: ../../app/controllers/guidances_controller.rb:53 -#: ../../app/controllers/notes_controller.rb:48 +#: ../../app/controllers/notes_controller.rb:47 #: ../../app/controllers/org_admin/departments_controller.rb:26 #: ../../app/controllers/org_admin/phases_controller.rb:121 #: ../../app/controllers/org_admin/questions_controller.rb:94 @@ -353,7 +353,7 @@ msgstr "Erstellt" #: ../../app/controllers/guidance_groups_controller.rb:34 #: ../../app/controllers/guidances_controller.rb:55 -#: ../../app/controllers/notes_controller.rb:67 +#: ../../app/controllers/notes_controller.rb:66 #: ../../app/controllers/org_admin/departments_controller.rb:30 #: ../../app/controllers/org_admin/phases_controller.rb:123 #: ../../app/controllers/org_admin/questions_controller.rb:96 @@ -1151,17 +1151,17 @@ msgid "Owner" msgstr "Besitzer" #: ../../app/helpers/plans_helper.rb:10 -#: ../../app/views/plans/_share_form.html.erb:127 +#: ../../app/views/plans/_share_form.html.erb:129 msgid "Co-owner" msgstr "Miteigentümer" #: ../../app/helpers/plans_helper.rb:12 -#: ../../app/views/plans/_share_form.html.erb:133 +#: ../../app/views/plans/_share_form.html.erb:135 msgid "Editor" msgstr "Bearbeiter" #: ../../app/helpers/plans_helper.rb:14 -#: ../../app/views/plans/_share_form.html.erb:139 +#: ../../app/views/plans/_share_form.html.erb:141 msgid "Read only" msgstr "Nur Lesen" @@ -1170,7 +1170,7 @@ msgid "Public" msgstr "Öffentlichkeit" #: ../../app/helpers/plans_helper.rb:26 ../../app/helpers/plans_helper.rb:28 -#: ../../app/views/layouts/application.html.erb:129 +#: ../../app/views/layouts/application.html.erb:128 msgid "Private" msgstr "Private" @@ -1183,7 +1183,7 @@ msgid "Public: anyone can view." msgstr "Öffentlich: Jeder kann sehen." #: ../../app/helpers/plans_helper.rb:39 -#: ../../app/views/layouts/application.html.erb:130 +#: ../../app/views/layouts/application.html.erb:129 msgid "Private: restricted to me and people I invite." msgstr "Privat: beschränkt auf mich und Leute, die ich einlade." @@ -1410,62 +1410,61 @@ msgid "Affiliation: " msgstr "Zugehörigkeit:" #: ../../app/models/concerns/exportable_plan.rb:163 -#: ../../app/models/concerns/exportable_plan.rb:164 msgid "%{affiliation}" msgstr "%{affiliation}" -#: ../../app/models/concerns/exportable_plan.rb:166 -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:165 +#: ../../app/models/concerns/exportable_plan.rb:167 #: ../../app/views/shared/export/_plan_coversheet.erb:32 #: ../../app/views/shared/export/_plan_txt.erb:22 #: ../../app/views/shared/export/_plan_txt.erb:24 msgid "Template: " msgstr "Vorlage:" -#: ../../app/models/concerns/exportable_plan.rb:166 +#: ../../app/models/concerns/exportable_plan.rb:165 msgid "%{funder}" msgstr "%{funder}" -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:167 msgid "%{template}" msgstr "%{template}" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 #: ../../app/views/shared/export/_plan_txt.erb:27 msgid "Grant number: " msgstr "Grant Nummer:" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 msgid "%{grant_number}" msgstr "%{grant_number}" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 #: ../../app/views/shared/export/_plan_coversheet.erb:42 #: ../../app/views/shared/export/_plan_txt.erb:30 msgid "Project abstract: " msgstr "Projekt Zusammenfassung:" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 msgid "%{description}" msgstr "%{description}" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 #: ../../app/views/shared/export/_plan_coversheet.erb:58 #: ../../app/views/shared/export/_plan_txt.erb:33 msgid "Last modified: " msgstr "Zuletzt bearbeitet:" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 msgid "%{date}" msgstr "%{date}" -#: ../../app/models/concerns/exportable_plan.rb:175 +#: ../../app/models/concerns/exportable_plan.rb:174 #: ../../app/views/shared/export/_plan_coversheet.erb:65 #: ../../app/views/shared/export/_plan_txt.erb:34 msgid "Copyright information:" msgstr "Informationen zu Urheberrechten:" -#: ../../app/models/concerns/exportable_plan.rb:176 +#: ../../app/models/concerns/exportable_plan.rb:175 msgid "" "The above plan creator(s) have agreed that others may use as\n" " much of the text of this plan as they would like in their own pla" @@ -1489,12 +1488,12 @@ msgstr "" "             bedeutet nicht, dass der (die) Schöpfer (s) sich mit\n" "             Ihr Projekt oder Vorschlag" -#: ../../app/models/concerns/exportable_plan.rb:199 +#: ../../app/models/concerns/exportable_plan.rb:198 msgid "Not Answered" msgstr "Nicht beantwortet" #: ../../app/models/concerns/validation_messages.rb:11 -#: ../../app/models/template.rb:226 +#: ../../app/models/template.rb:223 msgid "can't be blank" msgstr "darf nicht leer sein" @@ -1584,7 +1583,7 @@ msgstr "Test" msgid "private" msgstr "privat" -#: ../../app/models/plan.rb:617 +#: ../../app/models/plan.rb:615 msgid "must be after the start date" msgstr "muss nach dem Startdatum liegen" @@ -1628,53 +1627,53 @@ msgstr "Unbekannte Formatierungseinstellung" msgid "Invalid maximum pages" msgstr "Ungültige maximale Anzahl von Seiten" -#: ../../app/models/template.rb:254 +#: ../../app/models/template.rb:251 msgid "A historical template cannot be retrieved for being modified" msgstr "Eine alte Vorlage kann nicht zur Bearbeitung wiederhergestellt werden" -#: ../../app/models/template.rb:378 +#: ../../app/models/template.rb:375 msgid "generate_copy! requires an organisation target" msgstr "generate_copy! erfordert ein Organisationsziel" -#: ../../app/models/template.rb:387 +#: ../../app/models/template.rb:384 msgid "Copy of %{template}" msgstr "Kopie von %{template}" -#: ../../app/models/template.rb:394 +#: ../../app/models/template.rb:391 msgid "generate_version! requires a published template" msgstr "generate_version! benötigt eine veröffentlichte Vorlage" -#: ../../app/models/template.rb:408 +#: ../../app/models/template.rb:405 msgid "customize! requires an organisation target" msgstr "customize! erfordert ein Organisationsziel" -#: ../../app/models/template.rb:411 +#: ../../app/models/template.rb:408 msgid "customize! requires a template from a funder" msgstr "customize! benötigt eine Vorlage von einem Forschungsförderer" -#: ../../app/models/template.rb:447 +#: ../../app/models/template.rb:444 msgid "You can not publish a published template. " msgstr "Sie können keine bereits veröffentlichte Vorlage erneut veröffentlichen." -#: ../../app/models/template.rb:451 +#: ../../app/models/template.rb:448 msgid "You can not publish a historical version of this template. " msgstr "Sie können keine veraltete Version dieser Vorlage veröffentlichen." -#: ../../app/models/template.rb:456 +#: ../../app/models/template.rb:453 msgid "You can not publish a template without phases. " msgstr "Sie können keine Vorlage ohne Phasen veröffentlichen." -#: ../../app/models/template.rb:461 +#: ../../app/models/template.rb:458 msgid "You can not publish a template without sections in a phase. " msgstr "" "Sie können keine Vorlage veröffentlichen, deren Phasen keine Abschnitte enthal" "ten." -#: ../../app/models/template.rb:466 +#: ../../app/models/template.rb:463 msgid "You can not publish a template without questions in a section. " msgstr "Sie können keine Vorlage veröffentlichen, die Abschnitte ohne Fragen enthält." -#: ../../app/models/template.rb:470 +#: ../../app/models/template.rb:467 msgid "Conditions in the template refer backwards" msgstr "Die Bedingungen in der Vorlage beziehen sich rückwärts" @@ -1682,6 +1681,58 @@ msgstr "Die Bedingungen in der Vorlage beziehen sich rückwärts" msgid "A Data Management Plan in %{application_name} has been shared with you" msgstr "Ein Datenmanagementplan in %{application_name} wurde für Sie freigegeben" +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 +#: ../../app/views/contributors/_form.html.erb:10 +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:8 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 +#: ../../app/views/org_admin/departments/edit.html.erb:14 +#: ../../app/views/org_admin/departments/new.html.erb:14 +#: ../../app/views/paginable/api_clients/_index.html.erb:6 +#: ../../app/views/paginable/contributors/_index.html.erb:7 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 +#: ../../app/views/paginable/themes/_index.html.erb:4 +#: ../../app/views/paginable/users/_index.html.erb:20 +#: ../../app/views/super_admin/api_clients/_form.html.erb:11 +msgid "Name" +msgstr "Name" + +#: ../../app/models/user/at_csv.rb:7 +msgid "E-Mail" +msgstr "Email" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Created Date" +msgstr "Datum der Erstellung" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Last Activity" +msgstr "Letzte Aktivität" + +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/layouts/_branding.html.erb:71 +#: ../../app/views/org_admin/users/edit.html.erb:71 +#: ../../app/views/paginable/users/_index.html.erb:26 +#: ../../app/views/super_admin/users/edit.html.erb:105 +msgid "Plans" +msgstr "Pläne" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/users/_index.html.erb:27 +msgid "Current Privileges" +msgstr "Aktuelle Rechte" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/notifications/_index.html.erb:8 +#: ../../app/views/paginable/users/_index.html.erb:28 +#: ../../app/views/super_admin/notifications/_form.html.erb:34 +msgid "Active" +msgstr "Aktiv" + +#: ../../app/models/user/at_csv.rb:8 +msgid "Department" +msgstr "Abteilung" + #: ../../app/policies/api/v0/guidance_group_policy.rb:11 #: ../../app/policies/api/v0/guidance_policy.rb:11 #: ../../app/policies/api/v0/statistics_policy.rb:11 @@ -1891,7 +1942,7 @@ msgid "Please wait, Standards are loading" msgstr "Bitte warten Sie, die Standards werden geladen" #: ../../app/views/answers/_new_edit.html.erb:68 -#: ../../app/views/contributors/_form.html.erb:94 +#: ../../app/views/contributors/_form.html.erb:95 #: ../../app/views/devise/passwords/edit.html.erb:35 #: ../../app/views/devise/registrations/_password_details.html.erb:31 #: ../../app/views/devise/registrations/_personal_details.html.erb:90 @@ -1912,7 +1963,7 @@ msgstr "Bitte warten Sie, die Standards werden geladen" #: ../../app/views/plans/_edit_details.html.erb:11 #: ../../app/views/plans/_guidance_selection.html.erb:23 #: ../../app/views/questions/_preview_question.html.erb:111 -#: ../../app/views/research_outputs/_form.html.erb:177 +#: ../../app/views/research_outputs/_form.html.erb:178 #: ../../app/views/super_admin/api_clients/_form.html.erb:67 #: ../../app/views/super_admin/notifications/_form.html.erb:66 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -1953,20 +2004,6 @@ msgstr " Fragen aus Ihrem Plan." msgid "This answer triggers email(s) to " msgstr "Diese Antwort löst E-Mail (s) an aus" -#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 -#: ../../app/views/contributors/_form.html.erb:10 -#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 -#: ../../app/views/org_admin/departments/edit.html.erb:14 -#: ../../app/views/org_admin/departments/new.html.erb:14 -#: ../../app/views/paginable/api_clients/_index.html.erb:6 -#: ../../app/views/paginable/contributors/_index.html.erb:7 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 -#: ../../app/views/paginable/themes/_index.html.erb:4 -#: ../../app/views/paginable/users/_index.html.erb:20 -#: ../../app/views/super_admin/api_clients/_form.html.erb:11 -msgid "Name" -msgstr "Name" - #: ../../app/views/contact_us/contacts/_new_left.html.erb:13 #: ../../app/views/contact_us/contacts/_new_right.html.erb:23 #: ../../app/views/contributors/_form.html.erb:19 @@ -1976,7 +2013,7 @@ msgstr "Name" #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/contributors/_index.html.erb:11 #: ../../app/views/paginable/users/_index.html.erb:21 -#: ../../app/views/plans/_share_form.html.erb:107 +#: ../../app/views/plans/_share_form.html.erb:109 #: ../../app/views/shared/_create_account_form.html.erb:12 #: ../../app/views/shared/_sign_in_form.html.erb:3 #: ../../app/views/super_admin/users/edit.html.erb:15 @@ -2002,7 +2039,7 @@ msgid "Security check" msgstr "Sicherheitskontrolle" #: ../../app/views/contact_us/contacts/_new_left.html.erb:43 -#: ../../app/views/plans/_share_form.html.erb:146 +#: ../../app/views/plans/_share_form.html.erb:148 msgid "Submit" msgstr "Abschicken" @@ -2033,8 +2070,8 @@ msgstr "" #: ../../app/views/contact_us/contacts/new.html.erb:10 #: ../../app/views/layouts/_branding.html.erb:41 -#: ../../app/views/layouts/_footer.html.erb:24 -#: ../../app/views/layouts/_footer.html.erb:30 +#: ../../app/views/layouts/_footer.html.erb:23 +#: ../../app/views/layouts/_footer.html.erb:29 #: ../../app/views/org_admin/plans/index.html.erb:40 #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:39 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:24 @@ -2077,7 +2114,7 @@ msgstr "Zugehörigkeit" msgid "Roles" msgstr "Rollen" -#: ../../app/views/contributors/_form.html.erb:96 +#: ../../app/views/contributors/_form.html.erb:97 #: ../../app/views/layouts/modal_search/_result.html.erb:23 #: ../../app/views/notes/_archive.html.erb:10 #: ../../app/views/notes/_list.html.erb:16 @@ -2091,16 +2128,16 @@ msgstr "Rollen" #: ../../app/views/paginable/guidance_groups/_index.html.erb:56 #: ../../app/views/paginable/guidances/_index.html.erb:61 #: ../../app/views/paginable/orgs/_index.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:75 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:78 #: ../../app/views/paginable/research_outputs/_index.html.erb:53 #: ../../app/views/paginable/templates/_customisable.html.erb:67 #: ../../app/views/paginable/templates/_organisational.html.erb:74 -#: ../../app/views/plans/_share_form.html.erb:89 -#: ../../app/views/research_outputs/_form.html.erb:179 +#: ../../app/views/plans/_share_form.html.erb:91 +#: ../../app/views/research_outputs/_form.html.erb:180 msgid "Remove" msgstr "Entfernen" -#: ../../app/views/contributors/_form.html.erb:99 +#: ../../app/views/contributors/_form.html.erb:100 #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:29 #: ../../app/views/guidances/new_edit.html.erb:50 #: ../../app/views/notes/_archive.html.erb:11 @@ -2111,7 +2148,7 @@ msgstr "Entfernen" #: ../../app/views/org_admin/questions/_form.html.erb:105 #: ../../app/views/plans/_guidance_selection.html.erb:35 #: ../../app/views/plans/new.html.erb:124 -#: ../../app/views/research_outputs/_form.html.erb:182 +#: ../../app/views/research_outputs/_form.html.erb:183 #: ../../app/views/super_admin/api_clients/_form.html.erb:86 #: ../../app/views/super_admin/notifications/_form.html.erb:73 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -2306,10 +2343,6 @@ msgstr "" msgid "Hello" msgstr "Hello" -#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 -msgid "Your" -msgstr "Ihre" - #: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 msgid "" "account has been locked due to an excessive number of unsuccessful sign in att" @@ -2318,6 +2351,10 @@ msgstr "" "Das Konto wurde aufgrund einer übermäßigen Anzahl fehlgeschlagener Anmeldevers" "uche gesperrt." +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 +msgid "Your" +msgstr "Ihre" + #: ../../app/views/devise/mailer/unlock_instructions.html.erb:6 msgid "Click the link below to unlock your account" msgstr "Klicken Sie auf den Link unten, Ihr Konto zu entsperren" @@ -2571,7 +2608,6 @@ msgid "Do you have a %{application_name} account?" msgstr "Hast du einen %{application_name}-Account?" #: ../../app/views/devise/registrations/new.html.erb:22 -#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 @@ -2628,6 +2664,27 @@ msgstr "" "Die Nutzer können die Anzeige von Hilfestellungen dieser Untergruppe im 'Plan " "erstellen'-Assistenten auswählen." +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:15 +#: ../../app/views/org_admin/templates/_form.html.erb:35 +#: ../../app/views/org_admin/templates/_row.html.erb:10 +#: ../../app/views/org_admin/templates/_row.html.erb:13 +#: ../../app/views/org_admin/templates/_show.html.erb:19 +#: ../../app/views/org_admin/templates/_show.html.erb:22 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 +#: ../../app/views/paginable/guidances/_index.html.erb:37 +#: ../../app/views/paginable/templates/_customisable.html.erb:31 +#: ../../app/views/paginable/templates/_customisable.html.erb:34 +#: ../../app/views/paginable/templates/_history.html.erb:8 +#: ../../app/views/paginable/templates/_organisational.html.erb:36 +#: ../../app/views/paginable/templates/_organisational.html.erb:39 +msgid "Published" +msgstr "Veröffentlicht" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 +msgid "Optional subset" +msgstr "Optionale Untergruppe" + #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 msgid " (e.g. School/ Department) " msgstr " (z.B. Institut / Einrichtung)" @@ -2801,13 +2858,6 @@ msgstr "Früher" msgid "Admin" msgstr "Administrator" -#: ../../app/views/layouts/_branding.html.erb:71 -#: ../../app/views/org_admin/users/edit.html.erb:71 -#: ../../app/views/paginable/users/_index.html.erb:26 -#: ../../app/views/super_admin/users/edit.html.erb:105 -msgid "Plans" -msgstr "Pläne" - #: ../../app/views/layouts/_branding.html.erb:77 #: ../../app/views/org_admin/templates/index.html.erb:4 #: ../../app/views/paginable/orgs/_index.html.erb:8 @@ -2875,11 +2925,7 @@ msgid "Privacy statement" msgstr "Datenschutzerklärung" #: ../../app/views/layouts/_footer.html.erb:17 -msgid "Accessibility statement" -msgstr "Erklärung zur Barrierefreiheit" - -#: ../../app/views/layouts/_footer.html.erb:18 -msgid "Github" +msgid "GitHub" msgstr "Github" #: ../../app/views/layouts/_navigation.html.erb:12 @@ -2960,50 +3006,50 @@ msgstr "Abmelden" msgid "%{application_name}" msgstr "%{application_name}" -#: ../../app/views/layouts/application.html.erb:91 -msgid "Error:" -msgstr "Error:" - #: ../../app/views/layouts/application.html.erb:91 msgid "Notice:" msgstr "Beachten:" +#: ../../app/views/layouts/application.html.erb:91 +msgid "Error:" +msgstr "Error:" + #: ../../app/views/layouts/application.html.erb:102 msgid "Loading..." msgstr "Laden..." -#: ../../app/views/layouts/application.html.erb:122 +#: ../../app/views/layouts/application.html.erb:121 #: ../../app/views/plans/new.html.erb:2 msgid "This field is required." msgstr "Dieses Feld wird benötigt." -#: ../../app/views/layouts/application.html.erb:124 +#: ../../app/views/layouts/application.html.erb:123 #: ../../app/views/shared/_create_account_form.html.erb:31 msgid "Show password" msgstr "Passwort anzeigen" -#: ../../app/views/layouts/application.html.erb:125 +#: ../../app/views/layouts/application.html.erb:124 msgid "Select an organisation from the list." msgstr "Wählen Sie eine Organisation aus der Liste aus." -#: ../../app/views/layouts/application.html.erb:126 +#: ../../app/views/layouts/application.html.erb:125 msgid "My organisation isn't listed" msgstr "Meine Organisation ist nicht aufgeführt" -#: ../../app/views/layouts/application.html.erb:128 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:39 +#: ../../app/views/layouts/application.html.erb:127 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:42 msgid "N/A" msgstr "N / A" -#: ../../app/views/layouts/application.html.erb:132 +#: ../../app/views/layouts/application.html.erb:131 msgid "Hide list." msgstr "Liste ausblenden" -#: ../../app/views/layouts/application.html.erb:133 +#: ../../app/views/layouts/application.html.erb:132 msgid "See the full list of partner institutions." msgstr "Siehe die vollständige Liste der Partnereinrichtungen." -#: ../../app/views/layouts/application.html.erb:135 +#: ../../app/views/layouts/application.html.erb:134 msgid "" "Unable to find a suitable template for the research organisation and funder yo" "u selected." @@ -3011,27 +3057,27 @@ msgstr "" "Es konnte keine geeignete Vorlage für die von Ihnen ausgewählte Forschungsorga" "nisation und den ausgewählten Geldgeber gefunden werden." -#: ../../app/views/layouts/application.html.erb:136 +#: ../../app/views/layouts/application.html.erb:135 msgid "Please select a research organisation and funder to continue." msgstr "Bitte wählen Sie eine Forschungsorganisation und Förderer, um fortzufahren." -#: ../../app/views/layouts/application.html.erb:138 +#: ../../app/views/layouts/application.html.erb:137 msgid "Loading ..." msgstr "Laden ..." -#: ../../app/views/layouts/application.html.erb:139 +#: ../../app/views/layouts/application.html.erb:138 msgid "Unable to load the section's content at this time." msgstr "Der Inhalt des Abschnitts konnte zu diesem Zeitpunkt nicht geladen werden." -#: ../../app/views/layouts/application.html.erb:140 +#: ../../app/views/layouts/application.html.erb:139 msgid "Unable to load the question's content at this time." msgstr "Der Inhalt der Frage konnte zu diesem Zeitpunkt nicht geladen werden." -#: ../../app/views/layouts/application.html.erb:141 +#: ../../app/views/layouts/application.html.erb:140 msgid "Opens in a new window" msgstr "Wird in einem neuen Fenster geöffnet" -#: ../../app/views/layouts/application.html.erb:143 +#: ../../app/views/layouts/application.html.erb:142 msgid "" "%{n} results are available, use up and down arrows to navigate suggestions. Us" "e the Enter key to select a suggestion or the Escape key to close the suggesti" @@ -3042,11 +3088,11 @@ msgstr "" "en Vorschlag auszuwählen, oder die Escape-Taste, um die Vorschläge zu schließe" "n." -#: ../../app/views/layouts/application.html.erb:144 +#: ../../app/views/layouts/application.html.erb:143 msgid "No results are available for your entry." msgstr "Für Ihren Eintrag sind keine Ergebnisse verfügbar." -#: ../../app/views/layouts/application.html.erb:145 +#: ../../app/views/layouts/application.html.erb:144 msgid "Searching ..." msgstr "Suchen ..." @@ -3060,7 +3106,7 @@ msgid "No results matched your filter criteria." msgstr "Keine Ergebnisse entsprechen Ihren Filterkriterien." #: ../../app/views/layouts/modal_search/_form.html.erb:41 -#: ../../app/views/layouts/modal_search/_form.html.erb:83 +#: ../../app/views/layouts/modal_search/_form.html.erb:84 msgid "Close" msgstr "Nah dran" @@ -3068,7 +3114,7 @@ msgstr "Nah dran" msgid "%{topic} search" msgstr "%{topic} suchen" -#: ../../app/views/layouts/modal_search/_form.html.erb:66 +#: ../../app/views/layouts/modal_search/_form.html.erb:67 msgid "Apply filter(s)" msgstr "Filter anwenden" @@ -3104,7 +3150,7 @@ msgstr "Einen Kommentar hinzufügen" #: ../../app/views/paginable/guidance_groups/_index.html.erb:49 #: ../../app/views/paginable/guidances/_index.html.erb:54 #: ../../app/views/paginable/orgs/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:58 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 #: ../../app/views/paginable/research_outputs/_index.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:56 #: ../../app/views/paginable/templates/_organisational.html.erb:56 @@ -3382,13 +3428,13 @@ msgstr "Art" #: ../../app/views/paginable/orgs/_index.html.erb:10 #: ../../app/views/paginable/orgs/_index.html.erb:30 #: ../../app/views/paginable/plans/_privately_visible.html.erb:13 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:53 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:56 #: ../../app/views/paginable/research_outputs/_index.html.erb:23 #: ../../app/views/paginable/research_outputs/_index.html.erb:48 #: ../../app/views/paginable/templates/_customisable.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:10 #: ../../app/views/paginable/templates/_organisational.html.erb:53 -#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:53 msgid "Actions" msgstr "Aktionen" @@ -3666,21 +3712,6 @@ msgstr "nur für interne Nutzung bei %{org_name} " msgid "Status" msgstr "Status" -#: ../../app/views/org_admin/templates/_form.html.erb:35 -#: ../../app/views/org_admin/templates/_row.html.erb:10 -#: ../../app/views/org_admin/templates/_row.html.erb:13 -#: ../../app/views/org_admin/templates/_show.html.erb:19 -#: ../../app/views/org_admin/templates/_show.html.erb:22 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 -#: ../../app/views/paginable/guidances/_index.html.erb:37 -#: ../../app/views/paginable/templates/_customisable.html.erb:31 -#: ../../app/views/paginable/templates/_customisable.html.erb:34 -#: ../../app/views/paginable/templates/_history.html.erb:8 -#: ../../app/views/paginable/templates/_organisational.html.erb:36 -#: ../../app/views/paginable/templates/_organisational.html.erb:39 -msgid "Published" -msgstr "Veröffentlicht" - #: ../../app/views/org_admin/templates/_form.html.erb:37 #: ../../app/views/org_admin/templates/_row.html.erb:16 #: ../../app/views/org_admin/templates/_show.html.erb:26 @@ -4052,7 +4083,7 @@ msgstr "Profil Information" #: ../../app/views/orgs/admin_edit.html.erb:22 #: ../../app/views/plans/_navigation.html.erb:33 -#: ../../app/views/plans/_request_feedback_form.html.erb:13 +#: ../../app/views/plans/_request_feedback_form.html.erb:19 #: ../../app/views/static_pages/help.html.erb:45 msgid "Request feedback" msgstr "Feedback anfordern" @@ -4145,13 +4176,9 @@ msgstr "" "Sie möchten '%{department_name}' löschen. Dies wirkt sich auf die Erläuterunge" "n aus. Sind Sie sicher?" -#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 -msgid "Optional subset" -msgstr "Optionale Untergruppe" - #: ../../app/views/paginable/guidance_groups/_index.html.erb:31 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:45 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:48 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:12 @@ -4159,8 +4186,8 @@ msgid "No" msgstr "Keine" #: ../../app/views/paginable/guidance_groups/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:43 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:46 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:11 @@ -4208,12 +4235,6 @@ msgstr "Anfang" msgid "Expiration" msgstr "Ablauf" -#: ../../app/views/paginable/notifications/_index.html.erb:8 -#: ../../app/views/paginable/users/_index.html.erb:28 -#: ../../app/views/super_admin/notifications/_form.html.erb:34 -msgid "Active" -msgstr "Aktiv" - #: ../../app/views/paginable/orgs/_index.html.erb:6 msgid "Administrator Email" msgstr "Administrator-E-Mail" @@ -4280,8 +4301,8 @@ msgstr "Erstellt" #: #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:21 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:73 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:9 #: ../../app/views/paginable/templates/_history.html.erb:6 #: ../../app/views/paginable/templates/_organisational.html.erb:2 @@ -4329,22 +4350,30 @@ msgstr "Rolle" msgid "Shared" msgstr "Gemeinsam genutzt" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 #: ../../app/views/plans/_navigation.html.erb:28 msgid "Share" msgstr "Teilen" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:65 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:68 #: ../../app/views/paginable/templates/_organisational.html.erb:67 msgid "Copy" msgstr "Kopieren" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 #: ../../app/views/paginable/templates/_history.html.erb:58 msgid "View" msgstr "Ansicht" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 +msgid "" +"Are you sure you wish to remove this plan? Any collaborators will still be abl" +"e to access it." +msgstr "" +"Sind Sie sicher, dass Sie diesen Plan entfernen möchten? Alle Mitarbeiter könn" +"en weiterhin darauf zugreifen." + +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" "Are you sure you wish to remove this public plan? This will remove it from the" " Public DMPs page but any collaborators will still be able to access it." @@ -4353,14 +4382,6 @@ msgstr "" "er öffentlichen DMP-Seite entfernt, aber alle Mitarbeiter können weiterhin dar" "auf zugreifen." -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 -msgid "" -"Are you sure you wish to remove this plan? Any collaborators will still be abl" -"e to access it." -msgstr "" -"Sind Sie sicher, dass Sie diesen Plan entfernen möchten? Alle Mitarbeiter könn" -"en weiterhin darauf zugreifen." - #: ../../app/views/paginable/plans/_publicly_visible.html.erb:17 msgid "Not Applicable" msgstr "Unzutreffend" @@ -4525,10 +4546,6 @@ msgstr "Datum der Erstellung" msgid "Last activity" msgstr "Letzte Aktivität" -#: ../../app/views/paginable/users/_index.html.erb:27 -msgid "Current Privileges" -msgstr "Aktuelle Rechte" - #: ../../app/views/paginable/users/_index.html.erb:46 msgid "Edit Profile" msgstr "Profil bearbeiten" @@ -4834,11 +4851,20 @@ msgstr "" msgid "Request expert feedback" msgstr "Fordern Sie Experten-Feedback an" -#: ../../app/views/plans/_request_feedback_form.html.erb:11 +#: ../../app/views/plans/_request_feedback_form.html.erb:9 +msgid "" +"Click below to give data management staff at %{owner_org}, the Plan Owner's or" +"g, access to read and comment on your plan." +msgstr "" +"Klicken Sie unten, um den Datenverwaltungsmitarbeitern von %{owner_org}, der O" +"rganisation des Planbesitzers, Zugriff zum Lesen und Kommentieren Ihres Plans " +"zu gewähren." + +#: ../../app/views/plans/_request_feedback_form.html.erb:17 msgid "You can continue to edit and download the plan in the interim." msgstr "Sie können den Plan in der Zwischenzeit weiter bearbeiten und herunterladen." -#: ../../app/views/plans/_request_feedback_form.html.erb:17 +#: ../../app/views/plans/_request_feedback_form.html.erb:23 msgid "Feedback has been requested." msgstr "Feedback wurde angefordert." @@ -4859,7 +4885,7 @@ msgstr "" msgid "Set plan visibility" msgstr "Plansicht festlegen" -#: ../../app/views/plans/_share_form.html.erb:9 +#: ../../app/views/plans/_share_form.html.erb:13 msgid "" "Public or organisational visibility is intended for finished plans. You must a" "nswer at least %{percentage}%% of the questions to enable these options. Note:" @@ -4870,7 +4896,7 @@ msgstr "" "ionen zu aktivieren. Hinweis: Testpläne sind standardmäßig auf private Sichtba" "rkeit eingestellt." -#: ../../app/views/plans/_share_form.html.erb:19 +#: ../../app/views/plans/_share_form.html.erb:21 msgid "" "Private: visible to me, specified collaborators and administrators at my organ" "isation" @@ -4878,20 +4904,20 @@ msgstr "" "Privat: Für mich sichtbar, bestimmte Mitarbeiter und Administratoren in meiner" " Organisation" -#: ../../app/views/plans/_share_form.html.erb:27 +#: ../../app/views/plans/_share_form.html.erb:29 #: ../../app/views/user_mailer/plan_visibility.html.erb:12 msgid "Organisation: anyone at my organisation can view" msgstr "Organisation: Jeder in meiner Organisation kann anzeigen" -#: ../../app/views/plans/_share_form.html.erb:35 +#: ../../app/views/plans/_share_form.html.erb:37 msgid "Public: anyone can view" msgstr "Öffentlich: Jeder kann sehen" -#: ../../app/views/plans/_share_form.html.erb:42 +#: ../../app/views/plans/_share_form.html.erb:44 msgid "Manage collaborators" msgstr "Mitarbeiter verwalten" -#: ../../app/views/plans/_share_form.html.erb:43 +#: ../../app/views/plans/_share_form.html.erb:45 msgid "" "Invite specific people to read, edit, or administer your plan. Invitees will r" "eceive an email notification that they have access to this plan." @@ -4900,20 +4926,20 @@ msgstr "" " zu verwalten. Eingeladene erhalten eine E-Mail-Benachrichtigung, dass sie Zug" "riff auf diesen Plan haben." -#: ../../app/views/plans/_share_form.html.erb:48 +#: ../../app/views/plans/_share_form.html.erb:50 msgid "Email address" msgstr "E-Mail-Adresse" -#: ../../app/views/plans/_share_form.html.erb:49 -#: ../../app/views/plans/_share_form.html.erb:122 +#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:124 msgid "Permissions" msgstr "Zugriffsrechte" -#: ../../app/views/plans/_share_form.html.erb:89 +#: ../../app/views/plans/_share_form.html.erb:91 msgid "Are you sure?" msgstr "Sind Sie sicher?" -#: ../../app/views/plans/_share_form.html.erb:100 +#: ../../app/views/plans/_share_form.html.erb:102 msgid "Invite collaborators" msgstr "Laden Sie Mitarbeiter ein" @@ -5128,6 +5154,10 @@ msgstr "" msgid "Please describe the output type" msgstr "Bitte beschreiben Sie den Ausgabetyp" +#: ../../app/views/research_outputs/_form.html.erb:27 +msgid "Research output type" +msgstr "Art der Forschungsausgabe" + #: ../../app/views/research_outputs/_form.html.erb:44 msgid "Abbreviation" msgstr "Abkürzung" @@ -5168,10 +5198,15 @@ msgid "Initial access level" msgstr "Anfängliche Zugriffsebene" #: ../../app/views/research_outputs/_form.html.erb:158 +#: ../../app/views/research_outputs/_form.html.erb:164 #: ../../app/views/shared/export/_plan_outputs.erb:23 msgid "Anticipated file size" msgstr "Voraussichtliche Dateigröße" +#: ../../app/views/research_outputs/_form.html.erb:170 +msgid "File size units" +msgstr "Einheiten der Dateigröße" + #: ../../app/views/research_outputs/edit.html.erb:12 msgid "Editing %{research_output_title}" msgstr "Bearbeiten %{research_output_title}" @@ -5189,11 +5224,12 @@ msgstr "Bitte listen Sie Ihre erwarteten Forschungsergebnisse auf." msgid "Add a research output" msgstr "Fügen Sie einen Forschungsoutput hinzu" -#: ../../app/views/research_outputs/licenses/_form.html.erb:24 +#: ../../app/views/research_outputs/licenses/_form.html.erb:20 +#: ../../app/views/research_outputs/licenses/_form.html.erb:25 msgid "Initial license" msgstr "Erstlizenz" -#: ../../app/views/research_outputs/licenses/_form.html.erb:30 +#: ../../app/views/research_outputs/licenses/_form.html.erb:31 msgid "For guidance on selecting a license:" msgstr "Anleitung zur Auswahl einer Lizenz:" @@ -5221,10 +5257,18 @@ msgstr "Wählen Sie einen Themenbereich aus, um Ihre Suche zu verfeinern." msgid "- Select a subject area -" msgstr "- Fachgebiet auswählen -" -#: ../../app/views/research_outputs/repositories/_search.html.erb:21 +#: ../../app/views/research_outputs/repositories/_search.html.erb:14 +msgid "Select a subject area" +msgstr "- Fachgebiet auswählen -" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:22 msgid "- Select a repository type -" msgstr "- Wählen Sie einen Repository-Typ aus -" +#: ../../app/views/research_outputs/repositories/_search.html.erb:24 +msgid "Select a repository type" +msgstr "- Wählen Sie einen Repository-Typ aus -" + #: ../../app/views/research_outputs/repositories/_search_result.html.erb:20 msgid "Click to view repositories related to %{subject}" msgstr "Klicken Sie hier, um Repositories im Zusammenhang mit %{subject} anzuzeigen" @@ -5550,14 +5594,14 @@ msgstr "Einloggen" msgid "on the homepage." msgstr "auf der Startseite." -#: ../../app/views/static_pages/about_us.html.erb:35 -msgid "Please visit the" -msgstr "Bitte besuchen Sie die" - #: ../../app/views/static_pages/about_us.html.erb:35 msgid "page for guidance." msgstr "Seite zur Orientierung." +#: ../../app/views/static_pages/about_us.html.erb:35 +msgid "Please visit the" +msgstr "Bitte besuchen Sie die" + #: ../../app/views/static_pages/about_us.html.erb:37 msgid "Customising for your Organisation" msgstr "Customizing für Ihre Organisation" @@ -6265,6 +6309,14 @@ msgstr "Nr. Pläne basierend auf Ihren Vorlagen erstellt" msgid "Statistics on your Templates" msgstr "Statistiken zu Ihren Vorlagen" +#: ../../app/views/usage/_total_usage.html.erb:7 +msgid "Total users" +msgstr "Gesamtzahl der Nutzer" + +#: ../../app/views/usage/_total_usage.html.erb:11 +msgid "Total plans" +msgstr "Gesamtpläne" + #: ../../app/views/usage/_total_usage.html.erb:15 msgid "Excluding Test Plans" msgstr "Testpläne ausschließen" @@ -6413,16 +6465,20 @@ msgstr "" msgid "Hello %{user_name}," msgstr "Hallo %{user_name}," -#: ../../app/views/user_mailer/feedback_notification.html.erb:5 +#: ../../app/views/user_mailer/feedback_notification.html.erb:6 msgid "" "%{requestor} has requested feedback on a plan %{link_html}. To add comments, p" -"lease visit the 'Plans' page under the Admin menu in %{tool_name} and open the" +"lease visit the \"Plans\" page under the Admin menu in %{tool_name} and open the" " plan." msgstr "" "%{requestor} hat Feedback zu einem Plan angefordert %{link_html}. Um Kommentar" "e hinzuzufügen, besuchen Sie die Seite \"Pläne\" unter dem Menü \"Admin\" in %{too" "l_name} und öffnen Sie den Plan." +#: ../../app/views/user_mailer/feedback_notification.html.erb:17 +msgid "Alternatively, you can click the link below:" +msgstr "Alternativ können Sie auf den folgenden Link klicken:" + #: ../../app/views/user_mailer/new_comment.html.erb:5 msgid "" "%{commenter_name} has commented on your plan %{plan_title}. To view the commen" @@ -6511,22 +6567,22 @@ msgstr "" msgid "Hello %{recipient_name}," msgstr "Hallo %{recipient_name}," -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " is creating a Data Management Plan and has answered " -msgstr " erstellt einen Datenverwaltungsplan und hat geantwortet" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " to " msgstr " zu" -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " in a plan called " -msgstr " in einem Plan namens" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " based on the template " msgstr " basierend auf der Vorlage" +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " is creating a Data Management Plan and has answered " +msgstr " erstellt einen Datenverwaltungsplan und hat geantwortet" + +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " in a plan called " +msgstr " in einem Plan namens" + #: ../../app/views/user_mailer/sharing_notification.html.erb:5 msgid "" "Your colleague %{inviter_name} has invited you to contribute to \n" @@ -6682,14 +6738,14 @@ msgstr "" msgid "Download users" msgstr "Nutzer herunterladen" -#: ../../app/views/users/refresh_token.js.erb:1 -msgid "Successfully regenerate your API token." -msgstr "Generieren Sie Ihr API-Token erfolgreich neu." - #: ../../app/views/users/refresh_token.js.erb:1 msgid "Unable to regenerate your API token." msgstr "Ihr API-Token kann nicht neu generiert werden." +#: ../../app/views/users/refresh_token.js.erb:1 +msgid "Successfully regenerate your API token." +msgstr "Generieren Sie Ihr API-Token erfolgreich neu." + #: i18n_placeholders.rb:4 msgid "activerecord.errors.messages.record_invalid" msgstr "activerecord.errors.messages.record_invalid" diff --git a/config/locale/en/LC_MESSAGES/app.mo b/config/locale/en/LC_MESSAGES/app.mo new file mode 100644 index 0000000000000000000000000000000000000000..4d0d6541cbdc20aa74926fdb7a903d03fb7b230a GIT binary patch literal 142884 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, 2022. +# +msgid "" +msgstr "" +"Project-Id-Version: DMPRoadmap-Development 1.0\n" +"Report-Msgid-Bugs-To: contact@translation.io\n" +"POT-Creation-Date: 2022-11-30 14:11-0500\n" +"PO-Revision-Date: 2022-11-30 14:11-0500\n" +"Last-Translator: FULL NAME \n" +"Language-Team: English\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"\n" + +#: ../../app/controllers/answers_controller.rb:25 +msgid "" +"There is no question with id %{question_id} associated to plan id %{plan_id} f" +"or which to create or update an answer" +msgstr "" +"There is no question with id %{question_id} associated to plan id %{plan_id} f" +"or which to create or update an answer" + +#: ../../app/controllers/answers_controller.rb:33 +msgid "There is no plan with id %{id} for which to create or update an answer" +msgstr "There is no plan with id %{id} for which to create or update an answer" + +#: ../../app/controllers/api/v0/base_controller.rb:130 +msgid "Bad Credentials" +msgstr "Bad Credentials" + +#: ../../app/controllers/api/v0/departments_controller.rb:22 +msgid "Departments code and name must be unique" +msgstr "Departments code and name must be unique" + +#: ../../app/controllers/api/v0/plans_controller.rb:28 +msgid "user must be in your organisation" +msgstr "user must be in your organisation" + +#: ../../app/controllers/api/v0/plans_controller.rb:59 +msgid "Bad Parameters" +msgstr "Bad Parameters" + +#: ../../app/controllers/api/v0/statistics_controller.rb:41 +#: ../../app/controllers/api/v0/statistics_controller.rb:89 +#: ../../app/controllers/api/v0/statistics_controller.rb:136 +#: ../../app/controllers/usage_controller.rb:66 +#: ../../app/controllers/usage_controller.rb:87 +msgid "Month" +msgstr "Month" + +#: ../../app/controllers/api/v0/statistics_controller.rb:41 +#: ../../app/controllers/usage_controller.rb:66 +msgid "No. Users joined" +msgstr "No. Users joined" + +#: ../../app/controllers/api/v0/statistics_controller.rb:47 +#: ../../app/controllers/api/v0/statistics_controller.rb:95 +#: ../../app/controllers/api/v0/statistics_controller.rb:142 +#: ../../app/controllers/usage_controller.rb:72 +#: ../../app/controllers/usage_controller.rb:93 +msgid "Total" +msgstr "Total" + +#: ../../app/controllers/api/v0/statistics_controller.rb:48 +msgid "users_joined" +msgstr "users_joined" + +#: ../../app/controllers/api/v0/statistics_controller.rb:89 +#: ../../app/controllers/usage_controller.rb:87 +msgid "No. Completed Plans" +msgstr "No. Completed Plans" + +#: ../../app/controllers/api/v0/statistics_controller.rb:96 +msgid "completed_plans" +msgstr "completed_plans" + +#: ../../app/controllers/api/v0/statistics_controller.rb:136 +msgid "No. Plans" +msgstr "No. Plans" + +#: ../../app/controllers/api/v0/statistics_controller.rb:143 +msgid "plans" +msgstr "plans" + +#: ../../app/controllers/api/v1/authentication_controller.rb:47 +msgid "Missing or invalid JSON" +msgstr "Missing or invalid JSON" + +#: ../../app/controllers/api/v1/base_api_controller.rb:79 +msgid "Invalid JSON format" +msgstr "Invalid JSON format" + +#: ../../app/controllers/api/v1/plans_controller.rb:18 +msgid "Plan not found" +msgstr "Plan not found" + +#: ../../app/controllers/api/v1/plans_controller.rb:36 +msgid "Unable to create your DMP" +msgstr "Unable to create your DMP" + +#: ../../app/controllers/api/v1/plans_controller.rb:37 +msgid "Plan already exists. Send an update instead." +msgstr "Plan already exists. Send an update instead." + +#: ../../app/controllers/api/v1/plans_controller.rb:38 +msgid "" +"Could not determine ownership of the DMP. Please add an\n" +" :affiliation to the :contact" +msgstr "" +"Could not determine ownership of the DMP. Please add an\n" +" :affiliation to the :contact" + +#: ../../app/controllers/api/v1/plans_controller.rb:70 +msgid "Invalid JSON!" +msgstr "Invalid JSON!" + +#: ../../app/controllers/api/v1/plans_controller.rb:73 +msgid "Invalid JSON" +msgstr "Invalid JSON" + +#: ../../app/controllers/api/v1/plans_controller.rb:90 +msgid "No Plans found" +msgstr "No Plans found" + +#: ../../app/controllers/application_controller.rb:36 +msgid "You are not authorized to perform this action." +msgstr "You are not authorized to perform this action." + +#: ../../app/controllers/application_controller.rb:40 +msgid "You need to sign in or sign up before continuing." +msgstr "You need to sign in or sign up before continuing." + +#: ../../app/controllers/application_controller.rb:108 +msgid "Unable to %{action} the %{object}. %{errors}" +msgstr "Unable to %{action} the %{object}. %{errors}" + +#: ../../app/controllers/application_controller.rb:114 +msgid "Successfully %{action} the %{object}." +msgstr "Successfully %{action} the %{object}." + +#: ../../app/controllers/application_controller.rb:127 +msgid "API client" +msgstr "API client" + +#: ../../app/controllers/application_controller.rb:128 +msgid "plan" +msgstr "plan" + +#: ../../app/controllers/application_controller.rb:129 +msgid "guidance group" +msgstr "guidance group" + +#: ../../app/controllers/application_controller.rb:130 +msgid "comment" +msgstr "comment" + +#: ../../app/controllers/application_controller.rb:131 +msgid "organisation" +msgstr "organisation" + +#: ../../app/controllers/application_controller.rb:132 +msgid "permission" +msgstr "permission" + +#: ../../app/controllers/application_controller.rb:133 +msgid "preferences" +msgstr "preferences" + +#: ../../app/controllers/application_controller.rb:134 +msgid "profile" +msgstr "profile" + +#: ../../app/controllers/application_controller.rb:134 +msgid "user" +msgstr "user" + +#: ../../app/controllers/application_controller.rb:135 +msgid "question option" +msgstr "question option" + +#: ../../app/controllers/application_controller.rb:181 +msgid "Record Not Found" +msgstr "Record Not Found" + +#: ../../app/controllers/concerns/paginable.rb:45 +msgid "scope should be an ActiveRecord::Relation object" +msgstr "scope should be an ActiveRecord::Relation object" + +#: ../../app/controllers/concerns/paginable.rb:47 +msgid "path_params should be a Hash object" +msgstr "path_params should be a Hash object" + +#: ../../app/controllers/concerns/paginable.rb:48 +msgid "query_params should be a Hash object" +msgstr "query_params should be a Hash object" + +#: ../../app/controllers/concerns/paginable.rb:49 +msgid "locals should be a Hash object" +msgstr "locals should be a Hash object" + +#: ../../app/controllers/concerns/paginable.rb:70 +msgid "Restricted access to View All the records" +msgstr "Restricted access to View All the records" + +#: ../../app/controllers/concerns/paginable.rb:183 +msgid "Sort by %{sort_field}" +msgstr "Sort by %{sort_field}" + +#: ../../app/controllers/concerns/template_methods.rb:8 +msgid "customisation" +msgstr "customisation" + +#: ../../app/controllers/concerns/template_methods.rb:8 +msgid "template" +msgstr "template" + +#: ../../app/controllers/concerns/versionable.rb:21 +msgid "obj should be a Template, Phase, Section, Question, or Annotation" +msgstr "obj should be a Template, Phase, Section, Question, or Annotation" + +#: ../../app/controllers/concerns/versionable.rb:47 +#: ../../app/controllers/concerns/versionable.rb:66 +msgid "obj should be a Phase, Section, Question, or Annotation" +msgstr "obj should be a Phase, Section, Question, or Annotation" + +#: ../../app/controllers/concerns/versionable.rb:90 +msgid "The search_space does not respond to each" +msgstr "The search_space does not respond to each" + +#: ../../app/controllers/concerns/versionable.rb:94 +msgid "The search space does not have elements associated" +msgstr "The search space does not have elements associated" + +#: ../../app/controllers/contact_us/contacts_controller.rb:13 +msgid "Captcha verification failed, please retry." +msgstr "Captcha verification failed, please retry." + +#: ../../app/controllers/contact_us/contacts_controller.rb:18 +msgid "Contact email was successfully sent." +msgstr "Contact email was successfully sent." + +#: ../../app/controllers/contact_us/contacts_controller.rb:20 +msgid "Unable to submit your request" +msgstr "Unable to submit your request" + +#: ../../app/controllers/contributors_controller.rb:40 +#: ../../app/controllers/contributors_controller.rb:56 +#: ../../app/controllers/research_outputs_controller.rb:42 +msgid "add" +msgstr "add" + +#: ../../app/controllers/contributors_controller.rb:54 +#: ../../app/controllers/research_outputs_controller.rb:40 +msgid "added" +msgstr "added" + +#: ../../app/controllers/contributors_controller.rb:72 +#: ../../app/controllers/guidance_groups_controller.rb:55 +#: ../../app/controllers/guidances_controller.rb:75 +#: ../../app/controllers/notes_controller.rb:88 +#: ../../app/controllers/org_admin/departments_controller.rb:50 +#: ../../app/controllers/org_admin/sections_controller.rb:103 +#: ../../app/controllers/org_admin/templates_controller.rb:205 +#: ../../app/controllers/orgs_controller.rb:92 +#: ../../app/controllers/plans_controller.rb:280 +#: ../../app/controllers/plans_controller.rb:283 +#: ../../app/controllers/registrations_controller.rb:249 +#: ../../app/controllers/registrations_controller.rb:253 +#: ../../app/controllers/registrations_controller.rb:280 +#: ../../app/controllers/registrations_controller.rb:284 +#: ../../app/controllers/research_outputs_controller.rb:60 +#: ../../app/controllers/users_controller.rb:103 +#: ../../app/controllers/users_controller.rb:131 +msgid "saved" +msgstr "saved" + +#: ../../app/controllers/contributors_controller.rb:74 +#: ../../app/controllers/guidance_groups_controller.rb:57 +#: ../../app/controllers/guidances_controller.rb:77 +#: ../../app/controllers/notes_controller.rb:106 +#: ../../app/controllers/org_admin/departments_controller.rb:52 +#: ../../app/controllers/org_admin/sections_controller.rb:105 +#: ../../app/controllers/org_admin/templates_controller.rb:210 +#: ../../app/controllers/orgs_controller.rb:94 +#: ../../app/controllers/plans_controller.rb:289 +#: ../../app/controllers/plans_controller.rb:292 +#: ../../app/controllers/plans_controller.rb:296 +#: ../../app/controllers/plans_controller.rb:299 +#: ../../app/controllers/registrations_controller.rb:256 +#: ../../app/controllers/registrations_controller.rb:287 +#: ../../app/controllers/research_outputs_controller.rb:63 +msgid "save" +msgstr "save" + +#: ../../app/controllers/contributors_controller.rb:84 +#: ../../app/controllers/notes_controller.rb:130 +#: ../../app/controllers/org_admin/templates_controller.rb:238 +#: ../../app/controllers/research_outputs_controller.rb:74 +#: ../../app/controllers/super_admin/orgs_controller.rb:94 +msgid "removed" +msgstr "removed" + +#: ../../app/controllers/contributors_controller.rb:87 +#: ../../app/controllers/notes_controller.rb:148 +#: ../../app/controllers/org_admin/templates_controller.rb:240 +#: ../../app/controllers/research_outputs_controller.rb:77 +#: ../../app/controllers/super_admin/orgs_controller.rb:97 +msgid "remove" +msgstr "remove" + +#: ../../app/controllers/contributors_controller.rb:161 +#: ../../app/controllers/research_outputs_controller.rb:208 +msgid "plan not found" +msgstr "plan not found" + +#: ../../app/controllers/contributors_controller.rb:169 +msgid "contributor not found" +msgstr "contributor not found" + +#: ../../app/controllers/feedback_requests_controller.rb:9 +msgid "Unable to submit your request for feedback at this time." +msgstr "Unable to submit your request for feedback at this time." + +#: ../../app/controllers/feedback_requests_controller.rb:10 +msgid "An error occurred when requesting feedback for this plan." +msgstr "An error occurred when requesting feedback for this plan." + +#: ../../app/controllers/guidance_groups_controller.rb:31 +#: ../../app/controllers/guidances_controller.rb:53 +#: ../../app/controllers/notes_controller.rb:47 +#: ../../app/controllers/org_admin/departments_controller.rb:26 +#: ../../app/controllers/org_admin/phases_controller.rb:121 +#: ../../app/controllers/org_admin/questions_controller.rb:94 +#: ../../app/controllers/org_admin/sections_controller.rb:79 +#: ../../app/controllers/org_admin/templates_controller.rb:181 +#: ../../app/controllers/plans_controller.rb:120 +#: ../../app/controllers/super_admin/api_clients_controller.rb:44 +#: ../../app/controllers/super_admin/notifications_controller.rb:38 +#: ../../app/controllers/super_admin/orgs_controller.rb:61 +#: ../../app/controllers/super_admin/themes_controller.rb:21 +msgid "created" +msgstr "created" + +#: ../../app/controllers/guidance_groups_controller.rb:34 +#: ../../app/controllers/guidances_controller.rb:55 +#: ../../app/controllers/notes_controller.rb:66 +#: ../../app/controllers/org_admin/departments_controller.rb:30 +#: ../../app/controllers/org_admin/phases_controller.rb:123 +#: ../../app/controllers/org_admin/questions_controller.rb:96 +#: ../../app/controllers/org_admin/sections_controller.rb:86 +#: ../../app/controllers/org_admin/templates_controller.rb:183 +#: ../../app/controllers/plans_controller.rb:151 +#: ../../app/controllers/super_admin/api_clients_controller.rb:50 +#: ../../app/controllers/super_admin/notifications_controller.rb:41 +#: ../../app/controllers/super_admin/orgs_controller.rb:64 +#: ../../app/controllers/super_admin/themes_controller.rb:24 +msgid "create" +msgstr "create" + +#: ../../app/controllers/guidance_groups_controller.rb:69 +msgid "Your guidance group has been published and is now available to users." +msgstr "Your guidance group has been published and is now available to users." + +#: ../../app/controllers/guidance_groups_controller.rb:72 +#: ../../app/controllers/guidances_controller.rb:113 +msgid "publish" +msgstr "publish" + +#: ../../app/controllers/guidance_groups_controller.rb:83 +msgid "Your guidance group is no longer published and will not be available to users." +msgstr "Your guidance group is no longer published and will not be available to users." + +#: ../../app/controllers/guidance_groups_controller.rb:85 +#: ../../app/controllers/guidances_controller.rb:130 +msgid "unpublish" +msgstr "unpublish" + +#: ../../app/controllers/guidance_groups_controller.rb:95 +#: ../../app/controllers/guidances_controller.rb:94 +#: ../../app/controllers/org_admin/departments_controller.rb:66 +#: ../../app/controllers/org_admin/phases_controller.rb:179 +#: ../../app/controllers/org_admin/question_options_controller.rb:24 +#: ../../app/controllers/org_admin/questions_controller.rb:197 +#: ../../app/controllers/org_admin/sections_controller.rb:128 +#: ../../app/controllers/plans_controller.rb:342 +#: ../../app/controllers/super_admin/api_clients_controller.rb:81 +#: ../../app/controllers/super_admin/notifications_controller.rb:85 +#: ../../app/controllers/super_admin/themes_controller.rb:51 +msgid "deleted" +msgstr "deleted" + +#: ../../app/controllers/guidance_groups_controller.rb:97 +#: ../../app/controllers/guidances_controller.rb:96 +#: ../../app/controllers/org_admin/departments_controller.rb:68 +#: ../../app/controllers/org_admin/phases_controller.rb:181 +#: ../../app/controllers/org_admin/question_options_controller.rb:26 +#: ../../app/controllers/org_admin/questions_controller.rb:199 +#: ../../app/controllers/org_admin/sections_controller.rb:130 +#: ../../app/controllers/plans_controller.rb:347 +#: ../../app/controllers/super_admin/api_clients_controller.rb:84 +#: ../../app/controllers/super_admin/notifications_controller.rb:88 +#: ../../app/controllers/super_admin/themes_controller.rb:54 +msgid "delete" +msgstr "delete" + +#: ../../app/controllers/guidances_controller.rb:110 +msgid "Your guidance has been published and is now available to users." +msgstr "Your guidance has been published and is now available to users." + +#: ../../app/controllers/guidances_controller.rb:127 +msgid "Your guidance is no longer published and will not be available to users." +msgstr "Your guidance is no longer published and will not be available to users." + +#: ../../app/controllers/identifiers_controller.rb:19 +msgid "Successfully unlinked your account from %{is}." +msgstr "Successfully unlinked your account from %{is}." + +#: ../../app/controllers/identifiers_controller.rb:22 +msgid "Unable to unlink your account from %{is}." +msgstr "Unable to unlink your account from %{is}." + +#: ../../app/controllers/org_admin/phases_controller.rb:17 +#: ../../app/controllers/org_admin/templates_controller.rb:115 +msgid "" +"You are viewing a historical version of this template. You will not be able to" +" make changes." +msgstr "" +"You are viewing a historical version of this template. You will not be able to" +" make changes." + +#: ../../app/controllers/org_admin/phases_controller.rb:105 +msgid "You cannot add a phase to a historical version of a template." +msgstr "You cannot add a phase to a historical version of a template." + +#: ../../app/controllers/org_admin/phases_controller.rb:126 +msgid "Unable to create a new version of this template.
" +msgstr "Unable to create a new version of this template.
" + +#: ../../app/controllers/org_admin/phases_controller.rb:147 +#: ../../app/controllers/org_admin/questions_controller.rb:166 +#: ../../app/controllers/org_admin/users_controller.rb:30 +#: ../../app/controllers/plans_controller.rb:415 +#: ../../app/controllers/super_admin/api_clients_controller.rb:68 +#: ../../app/controllers/super_admin/notifications_controller.rb:52 +#: ../../app/controllers/super_admin/themes_controller.rb:39 +#: ../../app/controllers/super_admin/users_controller.rb:54 +#: ../../app/controllers/users_controller.rb:108 +msgid "updated" +msgstr "updated" + +#: ../../app/controllers/org_admin/phases_controller.rb:149 +#: ../../app/controllers/org_admin/questions_controller.rb:169 +#: ../../app/controllers/org_admin/users_controller.rb:32 +#: ../../app/controllers/plans_controller.rb:418 +#: ../../app/controllers/super_admin/api_clients_controller.rb:70 +#: ../../app/controllers/super_admin/notifications_controller.rb:55 +#: ../../app/controllers/super_admin/themes_controller.rb:41 +#: ../../app/controllers/super_admin/users_controller.rb:56 +msgid "update" +msgstr "update" + +#: ../../app/controllers/org_admin/phases_controller.rb:152 +#: ../../app/controllers/org_admin/phases_controller.rb:184 +#: ../../app/controllers/org_admin/question_options_controller.rb:29 +#: ../../app/controllers/org_admin/questions_controller.rb:99 +#: ../../app/controllers/org_admin/questions_controller.rb:202 +#: ../../app/controllers/org_admin/sections_controller.rb:108 +msgid "Unable to create a new version of this template." +msgstr "Unable to create a new version of this template." + +#: ../../app/controllers/org_admin/plans_controller.rb:36 +msgid "%{plan_owner} has been notified that you have finished providing feedback" +msgstr "%{plan_owner} has been notified that you have finished providing feedback" + +#: ../../app/controllers/org_admin/plans_controller.rb:40 +msgid "Unable to notify user that you have finished providing feedback." +msgstr "Unable to notify user that you have finished providing feedback." + +#: ../../app/controllers/org_admin/plans_controller.rb:56 +#: ../../app/views/plans/_project_details.html.erb:14 +msgid "Project title" +msgstr "Project title" + +#: ../../app/controllers/org_admin/plans_controller.rb:57 +#: ../../app/views/paginable/plans/_index.html.erb:6 +#: ../../app/views/paginable/plans/_org_admin.html.erb:19 +#: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:13 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:6 +#: ../../app/views/paginable/plans/_publicly_visible.html.erb:6 +msgid "Template" +msgstr "Template" + +#: ../../app/controllers/org_admin/plans_controller.rb:58 +#: ../../app/helpers/plans_helper.rb:22 +#: ../../app/helpers/settings_template_helper.rb:16 +#: ../../app/views/devise/registrations/_password_confirmation.html.erb:22 +#: ../../app/views/orgs/_profile_form.html.erb:155 +#: ../../app/views/paginable/orgs/_index.html.erb:5 +#: ../../app/views/paginable/plans/_index.html.erb:7 +#: ../../app/views/paginable/plans/_org_admin.html.erb:20 +#: ../../app/views/paginable/plans/_publicly_visible.html.erb:7 +#: ../../app/views/paginable/templates/_index.html.erb:6 +#: ../../app/views/paginable/templates/_organisational.html.erb:12 +#: ../../app/views/paginable/users/_index.html.erb:23 +#: ../../app/views/shared/org_selectors/_combined.html.erb:11 +#: ../../app/views/shared/org_selectors/_external_only.html.erb:9 +#: ../../app/views/shared/org_selectors/_local_only.html.erb:7 +msgid "Organisation" +msgstr "Organisation" + +#: ../../app/controllers/org_admin/plans_controller.rb:59 +msgid "Owner name" +msgstr "Owner name" + +#: ../../app/controllers/org_admin/plans_controller.rb:60 +msgid "Owner email" +msgstr "Owner email" + +#: ../../app/controllers/org_admin/plans_controller.rb:61 +#: ../../app/views/paginable/plans/_index.html.erb:9 +#: ../../app/views/paginable/plans/_org_admin.html.erb:23 +#: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:18 +msgid "Updated" +msgstr "Updated" + +#: ../../app/controllers/org_admin/plans_controller.rb:62 +#: ../../app/views/org_admin/templates/_form.html.erb:17 +#: ../../app/views/org_admin/templates/_show.html.erb:32 +#: ../../app/views/paginable/plans/_index.html.erb:10 +#: ../../app/views/paginable/plans/_org_admin.html.erb:24 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:10 +msgid "Visibility" +msgstr "Visibility" + +#: ../../app/controllers/org_admin/sections_controller.rb:71 +msgid "Unable to create a new section. The phase you specified does not exist." +msgstr "Unable to create a new section. The phase you specified does not exist." + +#: ../../app/controllers/org_admin/sections_controller.rb:133 +msgid "Unable to delete this version of the template." +msgstr "Unable to delete this version of the template." + +#: ../../app/controllers/org_admin/template_copies_controller.rb:20 +#: ../../app/controllers/plans_controller.rb:394 +msgid "copy" +msgstr "copy" + +#: +#: ../../app/controllers/org_admin/template_customization_transfers_controller.rb:28 +msgid "That template is no longer customizable." +msgstr "That template is no longer customizable." + +#: ../../app/controllers/org_admin/template_customizations_controller.rb:21 +msgid "Unable to customize that template." +msgstr "Unable to customize that template." + +#: ../../app/controllers/org_admin/template_customizations_controller.rb:24 +msgid "That template is not customizable." +msgstr "That template is not customizable." + +#: ../../app/controllers/org_admin/templates_controller.rb:21 +#: ../../app/views/org_admin/templates/index.html.erb:43 +msgid "All Templates" +msgstr "All Templates" + +#: ../../app/controllers/org_admin/templates_controller.rb:47 +#: ../../app/views/org_admin/templates/index.html.erb:52 +msgid "%{org_name} Templates" +msgstr "%{org_name} Templates" + +#: ../../app/controllers/org_admin/templates_controller.rb:49 +#: ../../app/views/org_admin/templates/index.html.erb:54 +msgid "Own Templates" +msgstr "Own Templates" + +#: ../../app/controllers/org_admin/templates_controller.rb:84 +msgid "Customizable Templates" +msgstr "Customizable Templates" + +#: ../../app/controllers/org_admin/templates_controller.rb:216 +msgid "Error parsing links for a %{template}" +msgstr "Error parsing links for a %{template}" + +#: ../../app/controllers/org_admin/templates_controller.rb:344 +#: ../../app/controllers/public_pages_controller.rb:67 +msgid "Template created using the %{application_name} service. Last modified %{date}" +msgstr "Template created using the %{application_name} service. Last modified %{date}" + +#: ../../app/controllers/org_admin/templates_controller.rb:356 +#: ../../app/controllers/public_pages_controller.rb:80 +msgid "Unable to download the DMP Template at this time." +msgstr "Unable to download the DMP Template at this time." + +#: ../../app/controllers/orgs_controller.rb:120 +msgid "No organisations are currently registered." +msgstr "No organisations are currently registered." + +#: ../../app/controllers/orgs_controller.rb:131 +msgid "Please choose an organisation" +msgstr "Please choose an organisation" + +#: ../../app/controllers/orgs_controller.rb:140 +msgid "Your organisation does not seem to be properly configured." +msgstr "Your organisation does not seem to be properly configured." + +#: ../../app/controllers/plan_exports_controller.rb:99 +msgid "Created using %{application_name}. Last modified %{date}" +msgstr "Created using %{application_name}. Last modified %{date}" + +#: ../../app/controllers/plans_controller.rb:52 +msgid "This is a" +msgstr "This is a" + +#: ../../app/controllers/plans_controller.rb:52 +msgid "test plan" +msgstr "test plan" + +#: ../../app/controllers/plans_controller.rb:70 +msgid "Unable to identify a suitable template for your plan." +msgstr "Unable to identify a suitable template for your plan." + +#: ../../app/controllers/plans_controller.rb:84 +msgid "My Plan (%{title})" +msgstr "My Plan (%{title})" + +#: ../../app/controllers/plans_controller.rb:86 +msgid "%{user_name} Plan" +msgstr "%{user_name} Plan" + +#: ../../app/controllers/plans_controller.rb:124 +msgid "This plan is based on the default template." +msgstr "This plan is based on the default template." + +#: ../../app/controllers/plans_controller.rb:129 +#: ../../app/controllers/plans_controller.rb:133 +msgid "This plan is based on the" +msgstr "This plan is based on the" + +#: ../../app/controllers/plans_controller.rb:129 +msgid "template with customisations by the" +msgstr "template with customisations by the" + +#: ../../app/controllers/plans_controller.rb:392 +msgid "copied" +msgstr "copied" + +#: ../../app/controllers/plans_controller.rb:423 +msgid "" +"Unable to change the plan's status since it is needed at least %{percentage} p" +"ercentage responded" +msgstr "" +"Unable to change the plan's status since it is needed at least %{percentage} p" +"ercentage responded" + +#: ../../app/controllers/plans_controller.rb:429 +msgid "Unable to find plan id %{plan_id}" +msgstr "Unable to find plan id %{plan_id}" + +#: ../../app/controllers/plans_controller.rb:444 +msgid "Your project is now a test." +msgstr "Your project is now a test." + +#: ../../app/controllers/plans_controller.rb:444 +msgid "Your project is no longer a test." +msgstr "Your project is no longer a test." + +#: ../../app/controllers/plans_controller.rb:448 +msgid "Unable to change the plan's test status" +msgstr "Unable to change the plan's test status" + +#: ../../app/controllers/plans_controller.rb:461 +msgid "There is no plan associated with id %{s" +msgstr "There is no plan associated with id %{s" + +#: ../../app/controllers/registrations_controller.rb:34 +msgid "" +"Please make a choice below. After linking your\n" +" details to a %{application_name} account,\n" +" you will be able to sign in directly with your\n" +" institutional credentials." +msgstr "" +"Please make a choice below. After linking your\n" +" details to a %{application_name} account,\n" +" you will be able to sign in directly with your\n" +" institutional credentials." + +#: ../../app/controllers/registrations_controller.rb:58 +msgid "You must accept the terms and conditions to register." +msgstr "You must accept the terms and conditions to register." + +#: ../../app/controllers/registrations_controller.rb:61 +msgid "Please select an organisation from the list, or choose Other." +msgstr "Please select an organisation from the list, or choose Other." + +#: ../../app/controllers/registrations_controller.rb:74 +msgid "That email address is already registered." +msgstr "That email address is already registered." + +#: ../../app/controllers/registrations_controller.rb:115 +msgid "" +"Welcome! You have signed up successfully with your\n" +" institutional credentials. You will now be a" +"ble to access\n" +" your account with them." +msgstr "" +"Welcome! You have signed up successfully with your\n" +" institutional credentials. You will now be a" +"ble to access\n" +" your account with them." + +#: ../../app/controllers/registrations_controller.rb:173 +msgid "Save Unsuccessful. " +msgstr "Save Unsuccessful. " + +#: ../../app/controllers/registrations_controller.rb:177 +msgid "Please enter an email address. " +msgstr "Please enter an email address. " + +#: ../../app/controllers/registrations_controller.rb:181 +msgid "Please enter a First name. " +msgstr "Please enter a First name. " + +#: ../../app/controllers/registrations_controller.rb:185 +msgid "Please enter a Last name. " +msgstr "Please enter a Last name. " + +#: ../../app/controllers/registrations_controller.rb:189 +msgid "" +"Please select an organisation from the list, or enter your organisation's name" +"." +msgstr "" +"Please select an organisation from the list, or enter your organisation's name" +"." + +#: ../../app/controllers/registrations_controller.rb:212 +msgid "Please enter your password to change email address." +msgstr "Please enter your password to change email address." + +#: ../../app/controllers/registrations_controller.rb:218 +msgid "" +"Save unsuccessful. \\\n" +" That email address is already registered. \\\n" +" You must enter a unique email address." +msgstr "" +"Save unsuccessful. \\\n" +" That email address is already registered. \\\n" +" You must enter a unique email address." + +#: ../../app/controllers/registrations_controller.rb:224 +msgid "Invalid password" +msgstr "Invalid password" + +#: ../../app/controllers/registrations_controller.rb:268 +msgid "Please enter your current password" +msgstr "Please enter your current password" + +#: ../../app/controllers/registrations_controller.rb:270 +msgid "Please enter a password confirmation" +msgstr "Please enter a password confirmation" + +#: ../../app/controllers/registrations_controller.rb:272 +msgid "Password and comfirmation must match" +msgstr "Password and comfirmation must match" + +#: ../../app/controllers/research_outputs_controller.rb:217 +msgid "research output not found" +msgstr "research output not found" + +#: ../../app/controllers/roles_controller.rb:26 +msgid "" +"Cannot share plan with %{email} since that email matches\n" +" with the owner of the plan." +msgstr "" +"Cannot share plan with %{email} since that email matches\n" +" with the owner of the plan." + +#: ../../app/controllers/roles_controller.rb:36 +msgid "Plan is already shared with %{email}." +msgstr "Plan is already shared with %{email}." + +#: ../../app/controllers/roles_controller.rb:43 +#: ../../app/views/shared/_create_account_form.html.erb:4 +msgid "First Name" +msgstr "First Name" + +#: ../../app/controllers/roles_controller.rb:44 +msgid "Surname" +msgstr "Surname" + +#: ../../app/controllers/roles_controller.rb:47 +msgid "Invitation to %{email} issued successfully." +msgstr "Invitation to %{email} issued successfully." + +#: ../../app/controllers/roles_controller.rb:52 +msgid "Plan shared with %{email}." +msgstr "Plan shared with %{email}." + +#: ../../app/controllers/roles_controller.rb:64 +msgid "" +"You must provide a valid email address and select a permission\n" +" level." +msgstr "" +"You must provide a valid email address and select a permission\n" +" level." + +#: ../../app/controllers/roles_controller.rb:71 +msgid "Please enter an email address" +msgstr "Please enter an email address" + +#: ../../app/controllers/roles_controller.rb:90 +msgid "" +"Successfully changed the permissions for %{email}. They have been\n" +" notified via email." +msgstr "" +"Successfully changed the permissions for %{email}. They have been\n" +" notified via email." + +#: ../../app/controllers/roles_controller.rb:107 +msgid "Access removed" +msgstr "Access removed" + +#: ../../app/controllers/roles_controller.rb:122 +msgid "Plan removed" +msgstr "Plan removed" + +#: ../../app/controllers/roles_controller.rb:124 +msgid "Unable to remove the plan" +msgstr "Unable to remove the plan" + +#: ../../app/controllers/sessions_controller.rb:34 +msgid "" +"Your account has been successfully linked to your institutional credentials. Y" +"ou will now be able to sign in with them." +msgstr "" +"Your account has been successfully linked to your institutional credentials. Y" +"ou will now be able to sign in with them." + +#: ../../app/controllers/settings/plans_controller.rb:38 +msgid "Export settings updated successfully." +msgstr "Export settings updated successfully." + +#: ../../app/controllers/settings/plans_controller.rb:40 +msgid "An error has occurred while saving/resetting your export settings." +msgstr "An error has occurred while saving/resetting your export settings." + +#: ../../app/controllers/super_admin/api_clients_controller.rb:45 +msgid ". The API credentials have been emailed to %{email}" +msgstr ". The API credentials have been emailed to %{email}" + +#: ../../app/controllers/super_admin/notifications_controller.rb:70 +msgid "Your notification is now active." +msgstr "Your notification is now active." + +#: ../../app/controllers/super_admin/notifications_controller.rb:70 +msgid "Your notification is no longer active." +msgstr "Your notification is no longer active." + +#: ../../app/controllers/super_admin/notifications_controller.rb:74 +msgid "Unable to change the notification's active status" +msgstr "Unable to change the notification's active status" + +#: ../../app/controllers/super_admin/notifications_controller.rb:105 +msgid "There is no notification associated with id %{id}" +msgstr "There is no notification associated with id %{id}" + +#: ../../app/controllers/super_admin/org_swaps_controller.rb:24 +msgid "" +"Your organisation affiliation has been changed. You may now edit templates for" +" %{org_name}." +msgstr "" +"Your organisation affiliation has been changed. You may now edit templates for" +" %{org_name}." + +#: ../../app/controllers/super_admin/org_swaps_controller.rb:28 +msgid "Unable to change your organisation affiliation at this time." +msgstr "Unable to change your organisation affiliation at this time." + +#: ../../app/controllers/super_admin/org_swaps_controller.rb:31 +msgid "Unknown organisation." +msgstr "Unknown organisation." + +#: ../../app/controllers/super_admin/orgs_controller.rb:70 +msgid "There seems to be a problem with your logo. Please upload it again." +msgstr "There seems to be a problem with your logo. Please upload it again." + +#: ../../app/controllers/super_admin/orgs_controller.rb:137 +msgid "An error occurred while trying to merge the Organisations." +msgstr "An error occurred while trying to merge the Organisations." + +#: ../../app/controllers/super_admin/orgs_controller.rb:141 +msgid "Unable to merge the two Organisations at this time." +msgstr "Unable to merge the two Organisations at this time." + +#: ../../app/controllers/super_admin/orgs_controller.rb:145 +msgid "Unable to determine what records need to be merged." +msgstr "Unable to determine what records need to be merged." + +#: ../../app/controllers/super_admin/users_controller.rb:69 +msgid "" +"You attempted to merge 2 accounts with the same email address.\n" +" Please merge with a different email address." +msgstr "" +"You attempted to merge 2 accounts with the same email address.\n" +" Please merge with a different email address." + +#: ../../app/controllers/super_admin/users_controller.rb:111 +msgid "archived" +msgstr "archived" + +#: ../../app/controllers/super_admin/users_controller.rb:113 +msgid "archive" +msgstr "archive" + +#: ../../app/controllers/super_admin/users_controller.rb:134 +msgid "merged" +msgstr "merged" + +#: ../../app/controllers/super_admin/users_controller.rb:136 +msgid "merge" +msgstr "merge" + +#: ../../app/controllers/users/invitations_controller.rb:33 +msgid "" +"You are already signed in as another user. Please log out to activate your inv" +"itation." +msgstr "" +"You are already signed in as another user. Please log out to activate your inv" +"itation." + +#: ../../app/controllers/users/omniauth_callbacks_controller.rb:46 +msgid "Successfully signed in" +msgstr "Successfully signed in" + +#: ../../app/controllers/users/omniauth_callbacks_controller.rb:59 +msgid "Your account has been successfully linked to %{scheme}." +msgstr "Your account has been successfully linked to %{scheme}." + +#: ../../app/controllers/users/omniauth_callbacks_controller.rb:63 +msgid "Unable to link your account to %{scheme}." +msgstr "Unable to link your account to %{scheme}." + +#: ../../app/controllers/users_controller.rb:149 +msgid "Successfully %{action} %{username}'s account." +msgstr "Successfully %{action} %{username}'s account." + +#: ../../app/controllers/users_controller.rb:150 +msgid "activated" +msgstr "activated" + +#: ../../app/controllers/users_controller.rb:150 +msgid "deactivated" +msgstr "deactivated" + +#: ../../app/controllers/users_controller.rb:156 +msgid "Unable to %{action} %{username}" +msgstr "Unable to %{action} %{username}" + +#: ../../app/controllers/users_controller.rb:157 +msgid "activate" +msgstr "activate" + +#: ../../app/controllers/users_controller.rb:157 +msgid "deactivate" +msgstr "deactivate" + +#: ../../app/helpers/annotations_helper.rb:7 +msgid "" +"You can add an example answer to help users respond. These will be presented a" +"bove the answer box and can be copied/ pasted." +msgstr "" +"You can add an example answer to help users respond. These will be presented a" +"bove the answer box and can be copied/ pasted." + +#: ../../app/helpers/annotations_helper.rb:8 +msgid "" +"Enter specific guidance to accompany this question. If you have guidance by th" +"emes too, this will be pulled in based on your selections below so it's best n" +"ot to duplicate too much text." +msgstr "" +"Enter specific guidance to accompany this question. If you have guidance by th" +"emes too, this will be pulled in based on your selections below so it's best n" +"ot to duplicate too much text." + +#: ../../app/helpers/conditions_helper.rb:193 +msgid "Answering" +msgstr "Answering" + +#: ../../app/helpers/conditions_helper.rb:197 +msgid " will send an email with subject %{subject_name}" +msgstr " will send an email with subject %{subject_name}" + +#: ../../app/helpers/conditions_helper.rb:203 +msgid " will remove question " +msgstr " will remove question " + +#: ../../app/helpers/conditions_helper.rb:204 +msgid " will remove questions " +msgstr " will remove questions " + +#: ../../app/helpers/customizable_template_link_helper.rb:13 +msgid "Transfer customisation" +msgstr "Transfer customisation" + +#: ../../app/helpers/customizable_template_link_helper.rb:18 +msgid "Edit customisation" +msgstr "Edit customisation" + +#: ../../app/helpers/customizable_template_link_helper.rb:22 +msgid "Customise" +msgstr "Customise" + +#: ../../app/helpers/exports_helper.rb:38 +msgid "Creators:" +msgstr "Creators:" + +#: ../../app/helpers/exports_helper.rb:38 +#: ../../app/models/concerns/exportable_plan.rb:147 +#: ../../app/views/shared/export/_plan_coversheet.erb:8 +#: ../../app/views/shared/export/_plan_txt.erb:4 +msgid "Creator:" +msgstr "Creator:" + +#: ../../app/helpers/feedbacks_helper.rb:6 +msgid "%{application_name}: Your plan has been submitted for feedback" +msgstr "%{application_name}: Your plan has been submitted for feedback" + +#: ../../app/helpers/feedbacks_helper.rb:10 +msgid "" +"

Hello %{user_name}.

Your plan \"%{plan_name}\" has been submitted for f" +"eedback from an\n" +" administrator at your organisation. If you have questions pertaining to " +"this action, please contact us\n" +" at %{organisation_email}.

" +msgstr "" +"

Hello %{user_name}.

Your plan \"%{plan_name}\" has been submitted for f" +"eedback from an\n" +" administrator at your organisation. If you have questions pertaining to " +"this action, please contact us\n" +" at %{organisation_email}.

" + +#: ../../app/helpers/identifier_helper.rb:6 +#: ../../spec/helpers/identifier_helper_spec.rb:14 +msgid "None defined" +msgstr "None defined" + +#: ../../app/helpers/mailer_helper.rb:31 +msgid "co-owner" +msgstr "co-owner" + +#: ../../app/helpers/mailer_helper.rb:32 ../../app/helpers/mailer_helper.rb:38 +msgid "write and edit the plan in a collaborative manner." +msgstr "write and edit the plan in a collaborative manner." + +#: ../../app/helpers/mailer_helper.rb:33 +msgid "You can also grant rights to other collaborators." +msgstr "You can also grant rights to other collaborators." + +#: ../../app/helpers/mailer_helper.rb:37 +msgid "editor" +msgstr "editor" + +#: ../../app/helpers/mailer_helper.rb:43 +msgid "read-only" +msgstr "read-only" + +#: ../../app/helpers/mailer_helper.rb:44 +msgid "read the plan and leave comments." +msgstr "read the plan and leave comments." + +#: ../../app/helpers/orgs_helper.rb:14 +msgid "" +"

A data librarian from %{org_name} will respond to your request within 48\n" +" hours. If you have questions pertaining to this action please contact u" +"s\n" +" at %{organisation_email}.

" +msgstr "" +"

A data librarian from %{org_name} will respond to your request within 48\n" +" hours. If you have questions pertaining to this action please contact u" +"s\n" +" at %{organisation_email}.

" + +#: ../../app/helpers/perms_helper.rb:9 +msgid "Add organisations" +msgstr "Add organisations" + +#: ../../app/helpers/perms_helper.rb:10 +#: ../../app/views/org_admin/templates/index.html.erb:25 +msgid "Change affiliation" +msgstr "Change affiliation" + +#: ../../app/helpers/perms_helper.rb:11 +#: ../../app/views/users/_admin_grant_permissions.html.erb:21 +msgid "Manage user privileges" +msgstr "Manage user privileges" + +#: ../../app/helpers/perms_helper.rb:12 +#: ../../app/views/users/_admin_grant_permissions.html.erb:25 +msgid "Manage templates" +msgstr "Manage templates" + +#: ../../app/helpers/perms_helper.rb:13 +#: ../../app/views/users/_admin_grant_permissions.html.erb:29 +msgid "Manage guidance" +msgstr "Manage guidance" + +#: ../../app/helpers/perms_helper.rb:14 +msgid "API rights" +msgstr "API rights" + +#: ../../app/helpers/perms_helper.rb:15 +#: ../../app/views/users/_admin_grant_permissions.html.erb:37 +msgid "Manage organisation details" +msgstr "Manage organisation details" + +#: ../../app/helpers/perms_helper.rb:16 +msgid "Grant API to organisations" +msgstr "Grant API to organisations" + +#: ../../app/helpers/plans_helper.rb:8 +#: ../../app/views/paginable/plans/_index.html.erb:8 +#: ../../app/views/paginable/plans/_org_admin.html.erb:21 +#: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:16 +#: ../../app/views/paginable/plans/_publicly_visible.html.erb:8 +msgid "Owner" +msgstr "Owner" + +#: ../../app/helpers/plans_helper.rb:10 +#: ../../app/views/plans/_share_form.html.erb:129 +msgid "Co-owner" +msgstr "Co-owner" + +#: ../../app/helpers/plans_helper.rb:12 +#: ../../app/views/plans/_share_form.html.erb:135 +msgid "Editor" +msgstr "Editor" + +#: ../../app/helpers/plans_helper.rb:14 +#: ../../app/views/plans/_share_form.html.erb:141 +msgid "Read only" +msgstr "Read only" + +#: ../../app/helpers/plans_helper.rb:24 +msgid "Public" +msgstr "Public" + +#: ../../app/helpers/plans_helper.rb:26 ../../app/helpers/plans_helper.rb:28 +#: ../../app/views/layouts/application.html.erb:128 +msgid "Private" +msgstr "Private" + +#: ../../app/helpers/plans_helper.rb:35 +msgid "Organisation: anyone at my organisation can view." +msgstr "Organisation: anyone at my organisation can view." + +#: ../../app/helpers/plans_helper.rb:37 +msgid "Public: anyone can view." +msgstr "Public: anyone can view." + +#: ../../app/helpers/plans_helper.rb:39 +#: ../../app/views/layouts/application.html.erb:129 +msgid "Private: restricted to me and people I invite." +msgstr "Private: restricted to me and people I invite." + +#: ../../app/helpers/settings_template_helper.rb:8 +#: ../../app/helpers/settings_template_helper.rb:19 +msgid "Unknown column name." +msgstr "Unknown column name." + +#: ../../app/helpers/settings_template_helper.rb:9 +msgid "Plan Name" +msgstr "Plan Name" + +#: ../../app/helpers/settings_template_helper.rb:10 +msgid "Plan ID" +msgstr "Plan ID" + +#: ../../app/helpers/settings_template_helper.rb:11 +msgid "Grant number" +msgstr "Grant number" + +#: ../../app/helpers/settings_template_helper.rb:12 +msgid "Principal Investigator / Researcher" +msgstr "Principal Investigator / Researcher" + +#: ../../app/helpers/settings_template_helper.rb:13 +msgid "Plan Data Contact" +msgstr "Plan Data Contact" + +#: ../../app/helpers/settings_template_helper.rb:14 +msgid "Plan Description" +msgstr "Plan Description" + +#: ../../app/helpers/settings_template_helper.rb:15 +#: ../../app/views/orgs/_profile_form.html.erb:143 +#: ../../app/views/paginable/templates/_customisable.html.erb:7 +#: ../../app/views/paginable/templates/_organisational.html.erb:12 +#: ../../app/views/plans/_project_details.html.erb:156 +#: ../../app/views/plans/_show_details.html.erb:12 +#: ../../app/views/plans/new.html.erb:86 +msgid "Funder" +msgstr "Funder" + +#: ../../app/helpers/settings_template_helper.rb:17 +msgid "Your ORCID" +msgstr "Your ORCID" + +#: ../../app/helpers/super_admin/orgs/merge_helper.rb:20 +msgid "None" +msgstr "None" + +#: ../../app/helpers/super_admin/orgs/merge_helper.rb:30 +msgid "Guidance for: %{themes}" +msgstr "Guidance for: %{themes}" + +#: ../../app/helpers/super_admin/orgs/merge_helper.rb:51 +msgid "Nothing to merge" +msgstr "Nothing to merge" + +#: ../../app/helpers/super_admin/orgs/merge_helper.rb:53 +msgid "

The following %{object_types} will be moved over to '%{org_name}':

" +msgstr "

The following %{object_types} will be moved over to '%{org_name}':

" + +#: ../../app/helpers/template_helper.rb:48 +#: ../../app/views/plans/index.html.erb:29 +#: ../../app/views/plans/new.html.erb:123 +#: ../../app/views/shared/_create_plan_modal.html.erb:5 +#: ../../spec/features/locales_spec.rb:53 +#: ../../spec/features/locales_spec.rb:69 +msgid "Create plan" +msgstr "Create plan" + +#: ../../app/helpers/usage_helper.rb:65 +msgid "Last month" +msgstr "Last month" + +#: ../../app/helpers/usage_helper.rb:66 +msgid "Last 3 months" +msgstr "Last 3 months" + +#: ../../app/helpers/usage_helper.rb:67 +msgid "Last 6 months" +msgstr "Last 6 months" + +#: ../../app/helpers/usage_helper.rb:68 +msgid "Last 9 months" +msgstr "Last 9 months" + +#: ../../app/helpers/usage_helper.rb:69 +msgid "Last 12 months" +msgstr "Last 12 months" + +#: ../../app/mailers/user_mailer.rb:17 +#: ../../app/views/devise/mailer/invitation_instructions.html.erb:5 +#: ../../app/views/devise/mailer/reset_password_instructions.html.erb:5 +#: ../../app/views/user_mailer/_email_signature.html.erb:2 +msgid "Query or feedback related to %{tool_name}" +msgstr "Query or feedback related to %{tool_name}" + +#: ../../app/mailers/user_mailer.rb:25 +msgid "Welcome to %{tool_name}" +msgstr "Welcome to %{tool_name}" + +#: ../../app/mailers/user_mailer.rb:62 +msgid "A Data Management Plan in %{tool_name} has been shared with you" +msgstr "A Data Management Plan in %{tool_name} has been shared with you" + +#: ../../app/mailers/user_mailer.rb:79 +msgid "Changed permissions on a Data Management Plan in %{tool_name}" +msgstr "Changed permissions on a Data Management Plan in %{tool_name}" + +#: ../../app/mailers/user_mailer.rb:94 +msgid "Permissions removed on a DMP in %{tool_name}" +msgstr "Permissions removed on a DMP in %{tool_name}" + +#: ../../app/mailers/user_mailer.rb:112 +msgid "%{user_name} has requested feedback on a %{tool_name} plan" +msgstr "%{user_name} has requested feedback on a %{tool_name} plan" + +#: ../../app/mailers/user_mailer.rb:135 +msgid "%{tool_name}: Expert feedback has been provided for %{plan_title}" +msgstr "%{tool_name}: Expert feedback has been provided for %{plan_title}" + +#: ../../app/mailers/user_mailer.rb:153 +msgid "DMP Visibility Changed: %{plan_title}" +msgstr "DMP Visibility Changed: %{plan_title}" + +#: ../../app/mailers/user_mailer.rb:182 +msgid "%{tool_name}: A new comment was added to %{plan_title}" +msgstr "%{tool_name}: A new comment was added to %{plan_title}" + +#: ../../app/mailers/user_mailer.rb:198 +msgid "Administrator privileges granted in %{tool_name}" +msgstr "Administrator privileges granted in %{tool_name}" + +#: ../../app/mailers/user_mailer.rb:216 +msgid "%{tool_name} API changes" +msgstr "%{tool_name} API changes" + +#: ../../app/models/concerns/exportable_plan.rb:30 +msgid "Phase" +msgstr "Phase" + +#: ../../app/models/concerns/exportable_plan.rb:32 +#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119 +msgid "Section" +msgstr "Section" + +#: ../../app/models/concerns/exportable_plan.rb:32 +#: ../../app/models/exported_plan.rb:116 +msgid "Question" +msgstr "Question" + +#: ../../app/models/concerns/exportable_plan.rb:32 +#: ../../app/models/concerns/exportable_plan.rb:34 +#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119 +msgid "Answer" +msgstr "Answer" + +#: ../../app/models/concerns/exportable_plan.rb:134 +msgid " Customised By: " +msgstr " Customised By: " + +#: ../../app/models/concerns/exportable_plan.rb:143 +#: ../../app/views/shared/export/_plan_coversheet.erb:6 +msgid "Title: " +msgstr "Title: " + +#: ../../app/models/concerns/exportable_plan.rb:143 +msgid "%{title}" +msgstr "%{title}" + +#: ../../app/models/concerns/exportable_plan.rb:145 +#: ../../app/views/shared/export/_plan_txt.erb:4 +msgid "Creators: " +msgstr "Creators: " + +#: ../../app/models/concerns/exportable_plan.rb:145 +#: ../../app/models/concerns/exportable_plan.rb:147 +msgid "%{authors}" +msgstr "%{authors}" + +#: ../../app/models/concerns/exportable_plan.rb:150 +#: ../../app/views/shared/export/_plan_coversheet.erb:14 +#: ../../app/views/shared/export/_plan_txt.erb:9 +msgid "Principal Investigator: " +msgstr "Principal Investigator: " + +#: ../../app/models/concerns/exportable_plan.rb:151 +msgid "%{investigation}" +msgstr "%{investigation}" + +#: ../../app/models/concerns/exportable_plan.rb:154 +msgid "Date Manager: " +msgstr "Date Manager: " + +#: ../../app/models/concerns/exportable_plan.rb:155 +msgid "%{data_curation}" +msgstr "%{data_curation}" + +#: ../../app/models/concerns/exportable_plan.rb:158 +#: ../../app/views/shared/export/_plan_coversheet.erb:20 +#: ../../app/views/shared/export/_plan_txt.erb:15 +msgid "Project Administrator: " +msgstr "Project Administrator: " + +#: ../../app/models/concerns/exportable_plan.rb:158 +msgid "%{pa}" +msgstr "%{pa}" + +#: ../../app/models/concerns/exportable_plan.rb:161 +#: ../../app/views/shared/export/_plan_coversheet.erb:23 +#: ../../app/views/shared/export/_plan_txt.erb:18 +msgid "Contributor: " +msgstr "Contributor: " + +#: ../../app/models/concerns/exportable_plan.rb:161 +msgid "%{other}" +msgstr "%{other}" + +#: ../../app/models/concerns/exportable_plan.rb:163 +#: ../../app/views/shared/export/_plan_coversheet.erb:26 +#: ../../app/views/shared/export/_plan_txt.erb:20 +msgid "Affiliation: " +msgstr "Affiliation: " + +#: ../../app/models/concerns/exportable_plan.rb:163 +msgid "%{affiliation}" +msgstr "%{affiliation}" + +#: ../../app/models/concerns/exportable_plan.rb:165 +#: ../../app/models/concerns/exportable_plan.rb:167 +#: ../../app/views/shared/export/_plan_coversheet.erb:32 +#: ../../app/views/shared/export/_plan_txt.erb:22 +#: ../../app/views/shared/export/_plan_txt.erb:24 +msgid "Template: " +msgstr "Template: " + +#: ../../app/models/concerns/exportable_plan.rb:165 +msgid "%{funder}" +msgstr "%{funder}" + +#: ../../app/models/concerns/exportable_plan.rb:167 +msgid "%{template}" +msgstr "%{template}" + +#: ../../app/models/concerns/exportable_plan.rb:169 +#: ../../app/views/shared/export/_plan_txt.erb:27 +msgid "Grant number: " +msgstr "Grant number: " + +#: ../../app/models/concerns/exportable_plan.rb:169 +msgid "%{grant_number}" +msgstr "%{grant_number}" + +#: ../../app/models/concerns/exportable_plan.rb:171 +#: ../../app/views/shared/export/_plan_coversheet.erb:42 +#: ../../app/views/shared/export/_plan_txt.erb:30 +msgid "Project abstract: " +msgstr "Project abstract: " + +#: ../../app/models/concerns/exportable_plan.rb:171 +msgid "%{description}" +msgstr "%{description}" + +#: ../../app/models/concerns/exportable_plan.rb:173 +#: ../../app/views/shared/export/_plan_coversheet.erb:58 +#: ../../app/views/shared/export/_plan_txt.erb:33 +msgid "Last modified: " +msgstr "Last modified: " + +#: ../../app/models/concerns/exportable_plan.rb:173 +msgid "%{date}" +msgstr "%{date}" + +#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/views/shared/export/_plan_coversheet.erb:65 +#: ../../app/views/shared/export/_plan_txt.erb:34 +msgid "Copyright information:" +msgstr "Copyright information:" + +#: ../../app/models/concerns/exportable_plan.rb:175 +msgid "" +"The above plan creator(s) have agreed that others may use as\n" +" much of the text of this plan as they would like in their own pla" +"ns,\n" +" and customise it as necessary. You do not need to credit the crea" +"tor(s)\n" +" as the source of the language used, but using any of the plan's t" +"ext\n" +" does not imply that the creator(s) endorse, or have any relations" +"hip to,\n" +" your project or proposal" +msgstr "" +"The above plan creator(s) have agreed that others may use as\n" +" much of the text of this plan as they would like in their own pla" +"ns,\n" +" and customise it as necessary. You do not need to credit the crea" +"tor(s)\n" +" as the source of the language used, but using any of the plan's t" +"ext\n" +" does not imply that the creator(s) endorse, or have any relations" +"hip to,\n" +" your project or proposal" + +#: ../../app/models/concerns/exportable_plan.rb:198 +msgid "Not Answered" +msgstr "Not Answered" + +#: ../../app/models/concerns/validation_messages.rb:11 +#: ../../app/models/template.rb:223 +msgid "can't be blank" +msgstr "can't be blank" + +#: ../../app/models/concerns/validation_messages.rb:13 +#: ../../app/models/identifier.rb:134 +msgid "must be unique" +msgstr "must be unique" + +#: ../../app/models/concerns/validation_messages.rb:15 +msgid "isn't a valid value" +msgstr "isn't a valid value" + +#: ../../app/models/concerns/validation_messages.rb:17 +msgid "You must have at least one option with accompanying text." +msgstr "You must have at least one option with accompanying text." + +#: ../../app/models/concerns/validation_messages.rb:19 +msgid "for 'Question text' can't be blank." +msgstr "for 'Question text' can't be blank." + +#: ../../app/models/contributor.rb:56 +msgid "You must specify at least one role." +msgstr "You must specify at least one role." + +#: ../../app/models/contributor.rb:132 ../../app/models/contributor.rb:135 +msgid "can't be blank." +msgstr "can't be blank." + +#: ../../app/models/contributor.rb:139 +msgid "can't be blank if no email is provided." +msgstr "can't be blank if no email is provided." + +#: ../../app/models/contributor.rb:140 +msgid "can't be blank if no name is provided." +msgstr "can't be blank if no name is provided." + +#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119 +msgid "Selected option(s)" +msgstr "Selected option(s)" + +#: ../../app/models/exported_plan.rb:117 ../../app/models/exported_plan.rb:119 +msgid "Answered by" +msgstr "Answered by" + +#: ../../app/models/exported_plan.rb:117 ../../app/models/exported_plan.rb:120 +msgid "Answered at" +msgstr "Answered at" + +#: ../../app/models/exported_plan.rb:165 +msgid "Details" +msgstr "Details" + +#: ../../app/models/exported_plan.rb:189 +msgid "" +"Question not answered.\n" +msgstr "" +"Question not answered.\n" + +#: ../../app/models/identifier.rb:141 +msgid "already assigned a value" +msgstr "already assigned a value" + +#: ../../app/models/org.rb:46 +msgid "Feedback email message" +msgstr "Feedback email message" + +#: ../../app/models/org.rb:123 +msgid "must be one of the following formats: jpeg, jpg, png, gif, bmp" +msgstr "must be one of the following formats: jpeg, jpg, png, gif, bmp" + +#: ../../app/models/org.rb:128 +msgid "can't be larger than 500KB" +msgstr "can't be larger than 500KB" + +#: ../../app/models/plan.rb:60 +msgid "organisational" +msgstr "organisational" + +#: ../../app/models/plan.rb:61 +msgid "public" +msgstr "public" + +#: ../../app/models/plan.rb:62 +msgid "test" +msgstr "test" + +#: ../../app/models/plan.rb:63 +msgid "private" +msgstr "private" + +#: ../../app/models/plan.rb:615 +msgid "must be after the start date" +msgstr "must be after the start date" + +#: ../../app/models/question.rb:151 +msgid "guidance on" +msgstr "guidance on" + +#: ../../app/models/role.rb:64 +msgid "can't be less than zero" +msgstr "can't be less than zero" + +#: ../../app/models/settings/template.rb:80 +msgid "A required setting has not been provided" +msgstr "A required setting has not been provided" + +#: ../../app/models/settings/template.rb:82 +msgid "Margin value is invalid" +msgstr "Margin value is invalid" + +#: ../../app/models/settings/template.rb:84 +msgid "Margin cannot be negative" +msgstr "Margin cannot be negative" + +#: ../../app/models/settings/template.rb:86 +msgid "Unknown margin. Can only be 'top', 'bottom', 'left' or 'right'" +msgstr "Unknown margin. Can only be 'top', 'bottom', 'left' or 'right'" + +#: ../../app/models/settings/template.rb:88 +msgid "Invalid font size" +msgstr "Invalid font size" + +#: ../../app/models/settings/template.rb:90 +msgid "Invalid font face" +msgstr "Invalid font face" + +#: ../../app/models/settings/template.rb:92 +msgid "Unknown formatting setting" +msgstr "Unknown formatting setting" + +#: ../../app/models/settings/template.rb:99 +msgid "Invalid maximum pages" +msgstr "Invalid maximum pages" + +#: ../../app/models/template.rb:251 +msgid "A historical template cannot be retrieved for being modified" +msgstr "A historical template cannot be retrieved for being modified" + +#: ../../app/models/template.rb:375 +msgid "generate_copy! requires an organisation target" +msgstr "generate_copy! requires an organisation target" + +#: ../../app/models/template.rb:384 +msgid "Copy of %{template}" +msgstr "Copy of %{template}" + +#: ../../app/models/template.rb:391 +msgid "generate_version! requires a published template" +msgstr "generate_version! requires a published template" + +#: ../../app/models/template.rb:405 +msgid "customize! requires an organisation target" +msgstr "customize! requires an organisation target" + +#: ../../app/models/template.rb:408 +msgid "customize! requires a template from a funder" +msgstr "customize! requires a template from a funder" + +#: ../../app/models/template.rb:444 +msgid "You can not publish a published template. " +msgstr "You can not publish a published template. " + +#: ../../app/models/template.rb:448 +msgid "You can not publish a historical version of this template. " +msgstr "You can not publish a historical version of this template. " + +#: ../../app/models/template.rb:453 +msgid "You can not publish a template without phases. " +msgstr "You can not publish a template without phases. " + +#: ../../app/models/template.rb:458 +msgid "You can not publish a template without sections in a phase. " +msgstr "You can not publish a template without sections in a phase. " + +#: ../../app/models/template.rb:463 +msgid "You can not publish a template without questions in a section. " +msgstr "You can not publish a template without questions in a section. " + +#: ../../app/models/template.rb:467 +msgid "Conditions in the template refer backwards" +msgstr "Conditions in the template refer backwards" + +#: ../../app/models/user.rb:384 +msgid "A Data Management Plan in %{application_name} has been shared with you" +msgstr "A Data Management Plan in %{application_name} has been shared with you" + +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 +#: ../../app/views/contributors/_form.html.erb:10 +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:8 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 +#: ../../app/views/org_admin/departments/edit.html.erb:14 +#: ../../app/views/org_admin/departments/new.html.erb:14 +#: ../../app/views/paginable/api_clients/_index.html.erb:6 +#: ../../app/views/paginable/contributors/_index.html.erb:7 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 +#: ../../app/views/paginable/themes/_index.html.erb:4 +#: ../../app/views/paginable/users/_index.html.erb:20 +#: ../../app/views/super_admin/api_clients/_form.html.erb:11 +msgid "Name" +msgstr "Name" + +#: ../../app/models/user/at_csv.rb:7 +msgid "E-Mail" +msgstr "E-Mail" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Created Date" +msgstr "Created Date" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Last Activity" +msgstr "Last Activity" + +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/layouts/_branding.html.erb:71 +#: ../../app/views/org_admin/users/edit.html.erb:71 +#: ../../app/views/paginable/users/_index.html.erb:26 +#: ../../app/views/super_admin/users/edit.html.erb:105 +msgid "Plans" +msgstr "Plans" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/users/_index.html.erb:27 +msgid "Current Privileges" +msgstr "Current Privileges" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/notifications/_index.html.erb:8 +#: ../../app/views/paginable/users/_index.html.erb:28 +#: ../../app/views/super_admin/notifications/_form.html.erb:34 +msgid "Active" +msgstr "Active" + +#: ../../app/models/user/at_csv.rb:8 +msgid "Department" +msgstr "Department" + +#: ../../app/policies/api/v0/guidance_group_policy.rb:11 +#: ../../app/policies/api/v0/guidance_policy.rb:11 +#: ../../app/policies/api/v0/statistics_policy.rb:11 +msgid "must have access to guidances api" +msgstr "must have access to guidances api" + +#: ../../app/policies/api/v0/plans_policy.rb:11 +msgid "must have access to plans api" +msgstr "must have access to plans api" + +#: ../../app/policies/api/v0/template_policy.rb:9 +msgid "must have access to templates api" +msgstr "must have access to templates api" + +#: ../../app/policies/research_output_policy.rb:8 +msgid "must be logged in" +msgstr "must be logged in" + +#: ../../app/policies/research_output_policy.rb:10 +msgid "are not authorized to view that plan" +msgstr "are not authorized to view that plan" + +#: ../../app/presenters/contributor_presenter.rb:42 +msgid "Data Manager" +msgstr "Data Manager" + +#: ../../app/presenters/contributor_presenter.rb:44 +msgid "Project Administrator" +msgstr "Project Administrator" + +#: ../../app/presenters/contributor_presenter.rb:46 +msgid "Principal Investigator" +msgstr "Principal Investigator" + +#: ../../app/presenters/contributor_presenter.rb:48 +msgid "Other" +msgstr "Other" + +#: ../../app/presenters/contributor_presenter.rb:56 +msgid "" +"Management activities to annotate (produce metadata), scrub data and maintain " +"research data (including software code, where it is necessary for interpreting" +" the data itself) for initial use and later re-use." +msgstr "" +"Management activities to annotate (produce metadata), scrub data and maintain " +"research data (including software code, where it is necessary for interpreting" +" the data itself) for initial use and later re-use." + +#: ../../app/presenters/contributor_presenter.rb:58 +msgid "" +"Conducting a research and investigation process, specifically performing the e" +"xperiments, or data/evidence collection." +msgstr "" +"Conducting a research and investigation process, specifically performing the e" +"xperiments, or data/evidence collection." + +#: ../../app/presenters/contributor_presenter.rb:60 +msgid "" +"Management and coordination responsibility for the research activity planning " +"and execution." +msgstr "" +"Management and coordination responsibility for the research activity planning " +"and execution." + +#: ../../app/presenters/research_output_presenter.rb:81 +msgid "Generalist (multidisciplinary)" +msgstr "Generalist (multidisciplinary)" + +#: ../../app/presenters/research_output_presenter.rb:82 +msgid "Discipline specific" +msgstr "Discipline specific" + +#: ../../app/presenters/research_output_presenter.rb:83 +msgid "Institutional" +msgstr "Institutional" + +#: ../../app/presenters/research_output_presenter.rb:119 +#: ../../app/presenters/research_output_presenter.rb:126 +#: ../../app/presenters/research_output_presenter.rb:133 +msgid "None specified" +msgstr "None specified" + +#: ../../app/presenters/research_output_presenter.rb:140 +#: ../../app/presenters/research_output_presenter.rb:147 +msgid "Unspecified" +msgstr "Unspecified" + +#: ../../app/services/api/v1/auth/jwt/authentication_service.rb:34 +msgid "Invalid grant type" +msgstr "Invalid grant type" + +#: ../../app/services/api/v1/auth/jwt/authentication_service.rb:70 +msgid "Invalid credentials" +msgstr "Invalid credentials" + +#: ../../app/services/api/v1/auth/jwt/authorization_service.rb:29 +msgid "Invalid token" +msgstr "Invalid token" + +#: ../../app/services/api/v1/auth/jwt/authorization_service.rb:46 +msgid "Token expired" +msgstr "Token expired" + +#: ../../app/services/api/v1/auth/jwt/authorization_service.rb:53 +msgid "Missing token" +msgstr "Missing token" + +#: ../../app/services/api/v1/json_validation_service.rb:7 +msgid ":title and the contact's :mbox are both required fields" +msgstr ":title and the contact's :mbox are both required fields" + +#: ../../app/services/api/v1/json_validation_service.rb:8 +msgid ":type and :identifier are required for all ids" +msgstr ":type and :identifier are required for all ids" + +#: ../../app/services/api/v1/json_validation_service.rb:9 +msgid ":name is required for every :affiliation and :funding" +msgstr ":name is required for every :affiliation and :funding" + +#: ../../app/services/api/v1/json_validation_service.rb:10 +msgid ":role and either the :name or :email are required for each :contributor" +msgstr ":role and either the :name or :email are required for each :contributor" + +#: ../../app/services/api/v1/json_validation_service.rb:11 +msgid ":name, :funder_id or :grant_id are required for each funding" +msgstr ":name, :funder_id or :grant_id are required for each funding" + +#: ../../app/services/api/v1/json_validation_service.rb:12 +msgid ":title is required for each :dataset" +msgstr ":title is required for each :dataset" + +#: ../../app/services/api/v1/json_validation_service.rb:53 +#: ../../spec/services/api/v1/json_validation_service_spec.rb:128 +msgid "invalid JSON" +msgstr "invalid JSON" + +#: ../../app/services/template/upgrade_customization_service.rb:67 +msgid "upgrade_customization! requires a customised template" +msgstr "upgrade_customization! requires a customised template" + +#: ../../app/services/template/upgrade_customization_service.rb:71 +msgid "" +"upgrade cannot be carried out since there is no published template of its curr" +"ent funder" +msgstr "" +"upgrade cannot be carried out since there is no published template of its curr" +"ent funder" + +#: ../../app/validators/after_validator.rb:5 +msgid "must be after %{date}" +msgstr "must be after %{date}" + +#: ../../app/validators/org_links_validator.rb:11 +msgid "A key \"org\" is expected for links hash" +msgstr "A key \"org\" is expected for links hash" + +#: ../../app/validators/org_links_validator.rb:14 +#: ../../app/validators/template_links_validator.rb:23 +msgid "A hash is expected for links" +msgstr "A hash is expected for links" + +#: ../../app/validators/template_links_validator.rb:15 +msgid "The key %{key} does not have a valid set of object links" +msgstr "The key %{key} does not have a valid set of object links" + +#: ../../app/validators/template_links_validator.rb:19 +msgid "A key %{key} is expected for links hash" +msgstr "A key %{key} is expected for links hash" + +#: ../../app/views/answers/_locking.html.erb:5 +msgid "The following answer cannot be saved" +msgstr "The following answer cannot be saved" + +#: ../../app/views/answers/_locking.html.erb:8 +msgid "" +"since %{name} saved the answer below while you were editing. Please, combine y" +"our changes and then save the answer again." +msgstr "" +"since %{name} saved the answer below while you were editing. Please, combine y" +"our changes and then save the answer again." + +#: ../../app/views/answers/_new_edit.html.erb:15 +msgid "Your Selected Standards:" +msgstr "Your Selected Standards:" + +#: ../../app/views/answers/_new_edit.html.erb:19 +msgid "Add Standard" +msgstr "Add Standard" + +#: ../../app/views/answers/_new_edit.html.erb:21 +msgid "Please select a subject" +msgstr "Please select a subject" + +#: ../../app/views/answers/_new_edit.html.erb:24 +msgid "Please select a sub-subject" +msgstr "Please select a sub-subject" + +#: ../../app/views/answers/_new_edit.html.erb:30 +msgid "Browse Standards" +msgstr "Browse Standards" + +#: ../../app/views/answers/_new_edit.html.erb:35 +msgid "Please wait, Standards are loading" +msgstr "Please wait, Standards are loading" + +#: ../../app/views/answers/_new_edit.html.erb:68 +#: ../../app/views/contributors/_form.html.erb:95 +#: ../../app/views/devise/passwords/edit.html.erb:35 +#: ../../app/views/devise/registrations/_password_details.html.erb:31 +#: ../../app/views/devise/registrations/_personal_details.html.erb:90 +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:28 +#: ../../app/views/guidances/new_edit.html.erb:49 +#: ../../app/views/notes/_edit.html.erb:10 +#: ../../app/views/notes/_new.html.erb:13 +#: ../../app/views/org_admin/departments/edit.html.erb:23 +#: ../../app/views/org_admin/departments/new.html.erb:23 +#: ../../app/views/org_admin/phases/_form.html.erb:25 +#: ../../app/views/org_admin/questions/_form.html.erb:99 +#: ../../app/views/org_admin/questions/_show.html.erb:209 +#: ../../app/views/org_admin/sections/_form.html.erb:17 +#: ../../app/views/org_admin/templates/_form.html.erb:82 +#: ../../app/views/org_admin/users/edit.html.erb:54 +#: ../../app/views/orgs/_feedback_form.html.erb:38 +#: ../../app/views/orgs/_profile_form.html.erb:182 +#: ../../app/views/plans/_edit_details.html.erb:11 +#: ../../app/views/plans/_guidance_selection.html.erb:23 +#: ../../app/views/questions/_preview_question.html.erb:111 +#: ../../app/views/research_outputs/_form.html.erb:178 +#: ../../app/views/super_admin/api_clients/_form.html.erb:67 +#: ../../app/views/super_admin/notifications/_form.html.erb:66 +#: ../../app/views/super_admin/themes/_form.html.erb:13 +#: ../../app/views/super_admin/users/edit.html.erb:61 +#: ../../app/views/users/_admin_grant_permissions.html.erb:68 +#: ../../app/views/users/_notification_preferences.html.erb:47 +msgid "Save" +msgstr "Save" + +#: ../../app/views/answers/_new_edit.html.erb:76 +#: ../../app/views/org_admin/questions/_show.html.erb:62 +#: ../../app/views/questions/_preview_question.html.erb:69 +#: ../../app/views/questions/_preview_question.html.erb:88 +msgid "example answer" +msgstr "example answer" + +#: ../../app/views/answers/_status.html.erb:5 +msgid "Saving..." +msgstr "Saving..." + +#: ../../app/views/answers/_status.html.erb:9 +msgid "Answered" +msgstr "Answered" + +#: ../../app/views/answers/_status.html.erb:10 +msgid " by %{user_name}" +msgstr " by %{user_name}" + +#: ../../app/views/answers/_status.html.erb:15 +msgid "This answer removes " +msgstr "This answer removes " + +#: ../../app/views/answers/_status.html.erb:15 +msgid " questions from your plan." +msgstr " questions from your plan." + +#: ../../app/views/answers/_status.html.erb:21 +msgid "This answer triggers email(s) to " +msgstr "This answer triggers email(s) to " + +#: ../../app/views/contact_us/contacts/_new_left.html.erb:13 +#: ../../app/views/contact_us/contacts/_new_right.html.erb:23 +#: ../../app/views/contributors/_form.html.erb:19 +#: ../../app/views/devise/passwords/new.html.erb:18 +#: ../../app/views/devise/registrations/_personal_details.html.erb:10 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:20 +#: ../../app/views/org_admin/users/edit.html.erb:14 +#: ../../app/views/paginable/contributors/_index.html.erb:11 +#: ../../app/views/paginable/users/_index.html.erb:21 +#: ../../app/views/plans/_share_form.html.erb:109 +#: ../../app/views/shared/_create_account_form.html.erb:12 +#: ../../app/views/shared/_sign_in_form.html.erb:3 +#: ../../app/views/super_admin/users/edit.html.erb:15 +#: ../../app/views/super_admin/users/edit.html.erb:93 +msgid "Email" +msgstr "Email" + +#: ../../app/views/contact_us/contacts/_new_left.html.erb:22 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:26 +msgid "Subject" +msgstr "Subject" + +#: ../../app/views/contact_us/contacts/_new_left.html.erb:30 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:32 +#: ../../app/views/orgs/_feedback_form.html.erb:26 +msgid "Message" +msgstr "Message" + +#: ../../app/views/contact_us/contacts/_new_left.html.erb:39 +#: ../../app/views/devise/passwords/edit.html.erb:30 +#: ../../app/views/shared/_create_account_form.html.erb:46 +msgid "Security check" +msgstr "Security check" + +#: ../../app/views/contact_us/contacts/_new_left.html.erb:43 +#: ../../app/views/plans/_share_form.html.erb:148 +msgid "Submit" +msgstr "Submit" + +#: ../../app/views/contact_us/contacts/_new_right.html.erb:17 +msgid "Helpline" +msgstr "Helpline" + +#: ../../app/views/contact_us/contacts/new.html.erb:1 +#: ../../app/views/contact_us/contacts/new.html.erb:4 +msgid "Contact Us" +msgstr "Contact Us" + +#: ../../app/views/contact_us/contacts/new.html.erb:6 +msgid "" +"%{application_name} is provided by the %{organisation_name}.
You can fin" +"d out more about us on our website (new window)%{open_in_new_window_text}. If you " +"would like to contact us about %{application_name}, please fill out the form b" +"elow." +msgstr "" +"%{application_name} is provided by the %{organisation_name}.
You can fin" +"d out more about us on our website (new window)%{open_in_new_window_text}. If you " +"would like to contact us about %{application_name}, please fill out the form b" +"elow." + +#: ../../app/views/contact_us/contacts/new.html.erb:10 +#: ../../app/views/layouts/_branding.html.erb:41 +#: ../../app/views/layouts/_footer.html.erb:23 +#: ../../app/views/layouts/_footer.html.erb:29 +#: ../../app/views/org_admin/plans/index.html.erb:40 +#: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:39 +#: ../../app/views/paginable/plans/_publicly_visible.html.erb:24 +#: ../../app/views/paginable/templates/_history.html.erb:28 +#: ../../app/views/paginable/templates/_history.html.erb:35 +#: ../../app/views/paginable/templates/_organisational.html.erb:85 +#: ../../app/views/paginable/templates/_publicly_visible.html.erb:29 +#: ../../app/views/paginable/templates/_publicly_visible.html.erb:36 +#: ../../app/views/plans/_download_form.html.erb:130 +#: ../../app/views/static_pages/about_us.html.erb:22 +#: ../../app/views/static_pages/about_us.html.erb:29 +#: ../../app/views/static_pages/termsuse.html.erb:46 +msgid "Opens in new window" +msgstr "Opens in new window" + +#: ../../app/views/contributors/_form.html.erb:4 +msgid "Phone numbers should only include numbers and dashes ('-')." +msgstr "Phone numbers should only include numbers and dashes ('-')." + +#: ../../app/views/contributors/_form.html.erb:5 +msgid "Select each role that applies to the contributor." +msgstr "Select each role that applies to the contributor." + +#: ../../app/views/contributors/_form.html.erb:33 +#: ../../app/views/paginable/contributors/_index.html.erb:9 +msgid "ORCID" +msgstr "ORCID" + +#: ../../app/views/contributors/_form.html.erb:44 +msgid "Phone number" +msgstr "Phone number" + +#: ../../app/views/contributors/_form.html.erb:64 +#: ../../app/views/paginable/contributors/_index.html.erb:14 +msgid "Affiliation" +msgstr "Affiliation" + +#: ../../app/views/contributors/_form.html.erb:72 +#: ../../app/views/paginable/contributors/_index.html.erb:16 +msgid "Roles" +msgstr "Roles" + +#: ../../app/views/contributors/_form.html.erb:97 +#: ../../app/views/layouts/modal_search/_result.html.erb:23 +#: ../../app/views/notes/_archive.html.erb:10 +#: ../../app/views/notes/_list.html.erb:16 +#: ../../app/views/notes/_list.html.erb:19 +#: ../../app/views/org_admin/conditions/_container.html.erb:11 +#: ../../app/views/org_admin/conditions/_form.html.erb:31 +#: ../../app/views/org_admin/question_options/_option_fields.html.erb:40 +#: ../../app/views/paginable/api_clients/_index.html.erb:44 +#: ../../app/views/paginable/contributors/_index.html.erb:55 +#: ../../app/views/paginable/departments/_index.html.erb:28 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:56 +#: ../../app/views/paginable/guidances/_index.html.erb:61 +#: ../../app/views/paginable/orgs/_index.html.erb:35 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:78 +#: ../../app/views/paginable/research_outputs/_index.html.erb:53 +#: ../../app/views/paginable/templates/_customisable.html.erb:67 +#: ../../app/views/paginable/templates/_organisational.html.erb:74 +#: ../../app/views/plans/_share_form.html.erb:91 +#: ../../app/views/research_outputs/_form.html.erb:180 +msgid "Remove" +msgstr "Remove" + +#: ../../app/views/contributors/_form.html.erb:100 +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:29 +#: ../../app/views/guidances/new_edit.html.erb:50 +#: ../../app/views/notes/_archive.html.erb:11 +#: ../../app/views/notes/_edit.html.erb:11 +#: ../../app/views/org_admin/departments/edit.html.erb:24 +#: ../../app/views/org_admin/departments/new.html.erb:24 +#: ../../app/views/org_admin/questions/_form.html.erb:103 +#: ../../app/views/org_admin/questions/_form.html.erb:105 +#: ../../app/views/plans/_guidance_selection.html.erb:35 +#: ../../app/views/plans/new.html.erb:124 +#: ../../app/views/research_outputs/_form.html.erb:183 +#: ../../app/views/super_admin/api_clients/_form.html.erb:86 +#: ../../app/views/super_admin/notifications/_form.html.erb:73 +#: ../../app/views/super_admin/themes/_form.html.erb:19 +#: ../../app/views/super_admin/users/_confirm_merge.html.erb:15 +#: ../../app/views/users/_admin_grant_permissions.html.erb:69 +msgid "Cancel" +msgstr "Cancel" + +#: ../../app/views/contributors/edit.html.erb:12 +msgid "Editing contributor" +msgstr "Editing contributor" + +#: ../../app/views/contributors/edit.html.erb:13 +#: ../../app/views/contributors/new.html.erb:13 +msgid "View all contributors" +msgstr "View all contributors" + +#: ../../app/views/contributors/index.html.erb:14 +msgid "" +"Please list the project’s Principal Investigator(s) and those responsible for " +"data management." +msgstr "" +"Please list the project’s Principal Investigator(s) and those responsible for " +"data management." + +#: ../../app/views/contributors/index.html.erb:29 +msgid "No contributors have been defined." +msgstr "No contributors have been defined." + +#: ../../app/views/contributors/index.html.erb:32 +msgid "Add a contributor" +msgstr "Add a contributor" + +#: ../../app/views/contributors/new.html.erb:12 +msgid "New contributor" +msgstr "New contributor" + +#: ../../app/views/devise/invitations/edit.html.erb:1 +#: ../../app/views/devise/invitations/edit.html.erb:4 +msgid "Create an account to view the plan" +msgstr "Create an account to view the plan" + +#: ../../app/views/devise/invitations/edit.html.erb:5 +msgid "" +"You will need to create an account in order to accept your invitation to view " +"the data management plan (DMP)." +msgstr "" +"You will need to create an account in order to accept your invitation to view " +"the data management plan (DMP)." + +#: ../../app/views/devise/invitations/edit.html.erb:15 +#: ../../app/views/devise/passwords/edit.html.erb:15 +#: ../../app/views/devise/registrations/_password_details.html.erb:13 +msgid "New password" +msgstr "New password" + +#: ../../app/views/devise/invitations/edit.html.erb:19 +#: ../../app/views/devise/passwords/edit.html.erb:19 +#: ../../app/views/devise/registrations/_password_details.html.erb:18 +msgid "Password confirmation" +msgstr "Password confirmation" + +#: ../../app/views/devise/invitations/edit.html.erb:23 +#: ../../app/views/devise/registrations/_personal_details.html.erb:16 +#: ../../app/views/org_admin/users/edit.html.erb:19 +#: ../../app/views/super_admin/users/edit.html.erb:20 +msgid "First name" +msgstr "First name" + +#: ../../app/views/devise/invitations/edit.html.erb:28 +#: ../../app/views/devise/registrations/_personal_details.html.erb:21 +#: ../../app/views/org_admin/users/edit.html.erb:24 +#: ../../app/views/super_admin/users/edit.html.erb:25 +msgid "Last name" +msgstr "Last name" + +#: ../../app/views/devise/invitations/edit.html.erb:40 +#: ../../app/views/devise/registrations/new.html.erb:43 +#: ../../app/views/devise/registrations/new.html.erb:58 +#: ../../app/views/shared/_access_controls.html.erb:11 +#: ../../app/views/shared/_create_account_form.html.erb:50 +msgid "Create account" +msgstr "Create account" + +#: ../../app/views/devise/mailer/confirmation_instructions.html.erb:2 +msgid "Welcome to %{application_name}" +msgstr "Welcome to %{application_name}" + +#: ../../app/views/devise/mailer/confirmation_instructions.html.erb:4 +msgid "Thank you for registering. Please confirm your email address" +msgstr "Thank you for registering. Please confirm your email address" + +#: ../../app/views/devise/mailer/confirmation_instructions.html.erb:6 +msgid "Click here to confirm your account" +msgstr "Click here to confirm your account" + +#: ../../app/views/devise/mailer/confirmation_instructions.html.erb:6 +msgid "or copy" +msgstr "or copy" + +#: ../../app/views/devise/mailer/confirmation_instructions.html.erb:6 +msgid "into your browser" +msgstr "into your browser" + +#: ../../app/views/devise/mailer/invitation_instructions.html.erb:18 +#: ../../app/views/user_mailer/new_comment.html.erb:2 +msgid "Hello %{user_name}" +msgstr "Hello %{user_name}" + +#: ../../app/views/devise/mailer/invitation_instructions.html.erb:21 +msgid "" +"Your colleague %{inviter_name} has invited you to contribute to their Data Ma" +"nagement Plan in %{tool_name}" +msgstr "" +"Your colleague %{inviter_name} has invited you to contribute to their Data Ma" +"nagement Plan in %{tool_name}" + +#: ../../app/views/devise/mailer/invitation_instructions.html.erb:28 +#: ../../app/views/user_mailer/sharing_notification.html.erb:11 +msgid "" +"%{click_here} to accept the invitation, (or copy %{link} into your browser). I" +"f you don't want to accept the invitation, please ignore this email." +msgstr "" +"%{click_here} to accept the invitation, (or copy %{link} into your browser). I" +"f you don't want to accept the invitation, please ignore this email." + +#: ../../app/views/devise/mailer/invitation_instructions.html.erb:29 +#: ../../app/views/user_mailer/sharing_notification.html.erb:12 +msgid "Click here" +msgstr "Click here" + +#: ../../app/views/devise/mailer/invitation_instructions.html.erb:33 +#: ../../app/views/devise/mailer/reset_password_instructions.html.erb:20 +#: ../../app/views/user_mailer/_email_signature.html.erb:10 +#: ../../app/views/user_mailer/welcome_notification.html.erb:8 +msgid "All the best" +msgstr "All the best" + +#: ../../app/views/devise/mailer/invitation_instructions.html.erb:35 +#: ../../app/views/devise/mailer/reset_password_instructions.html.erb:22 +#: ../../app/views/user_mailer/_email_signature.html.erb:12 +#: ../../app/views/user_mailer/welcome_notification.html.erb:10 +msgid "The %{tool_name} team" +msgstr "The %{tool_name} team" + +#: ../../app/views/devise/mailer/invitation_instructions.html.erb:38 +#: ../../app/views/devise/mailer/reset_password_instructions.html.erb:25 +#: ../../app/views/user_mailer/_email_signature.html.erb:18 +#: ../../app/views/user_mailer/welcome_notification.html.erb:13 +msgid "Please do not reply to this email." +msgstr "Please do not reply to this email." + +#: ../../app/views/devise/mailer/invitation_instructions.html.erb:39 +msgid "" +"If you have any questions or need help, please contact us at %{helpdesk_email}" +" or visit %{contact_us_url}" +msgstr "" +"If you have any questions or need help, please contact us at %{helpdesk_email}" +" or visit %{contact_us_url}" + +#: ../../app/views/devise/mailer/reset_password_instructions.html.erb:12 +msgid "Hello %{user_email}" +msgstr "Hello %{user_email}" + +#: ../../app/views/devise/mailer/reset_password_instructions.html.erb:15 +msgid "" +"Someone has requested a link to change your %{tool_name} password. You can do " +"this through the link below." +msgstr "" +"Someone has requested a link to change your %{tool_name} password. You can do " +"this through the link below." + +#: ../../app/views/devise/mailer/reset_password_instructions.html.erb:17 +msgid "Change my password" +msgstr "Change my password" + +#: ../../app/views/devise/mailer/reset_password_instructions.html.erb:18 +msgid "If you didn't request this, please ignore this email." +msgstr "If you didn't request this, please ignore this email." + +#: ../../app/views/devise/mailer/reset_password_instructions.html.erb:25 +#: ../../app/views/user_mailer/_email_signature.html.erb:19 +msgid "" +"If you have any questions or need help, please contact us at %{helpdesk_email}" +" or visit %{contact_us}" +msgstr "" +"If you have any questions or need help, please contact us at %{helpdesk_email}" +" or visit %{contact_us}" + +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:2 +msgid "Hello" +msgstr "Hello" + +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 +msgid "" +"account has been locked due to an excessive number of unsuccessful sign in att" +"empts." +msgstr "" +"account has been locked due to an excessive number of unsuccessful sign in att" +"empts." + +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 +msgid "Your" +msgstr "Your" + +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:6 +msgid "Click the link below to unlock your account" +msgstr "Click the link below to unlock your account" + +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:8 +msgid "Unlock my account" +msgstr "Unlock my account" + +#: ../../app/views/devise/passwords/edit.html.erb:1 +#: ../../app/views/devise/passwords/edit.html.erb:4 +msgid "Change your password" +msgstr "Change your password" + +#: ../../app/views/devise/passwords/edit.html.erb:24 +#: ../../app/views/devise/registrations/_password_details.html.erb:25 +msgid "Show passwords" +msgstr "Show passwords" + +#: ../../app/views/devise/passwords/new.html.erb:1 +#: ../../app/views/devise/passwords/new.html.erb:8 +#: ../../app/views/devise/shared/_links.erb:2 +msgid "Forgot your password?" +msgstr "Forgot your password?" + +#: ../../app/views/devise/passwords/new.html.erb:5 +msgid "The email address you entered is not registered." +msgstr "The email address you entered is not registered." + +#: ../../app/views/devise/passwords/new.html.erb:10 +msgid "" +"Please enter your email below and we will send you instructions on how to rese" +"t your password." +msgstr "" +"Please enter your email below and we will send you instructions on how to rese" +"t your password." + +#: ../../app/views/devise/passwords/new.html.erb:22 +msgid "Send" +msgstr "Send" + +#: ../../app/views/devise/registrations/_api_token.html.erb:6 +msgid "Access token" +msgstr "Access token" + +#: ../../app/views/devise/registrations/_api_token.html.erb:10 +msgid "Click the button below to generate an API token" +msgstr "Click the button below to generate an API token" + +#: ../../app/views/devise/registrations/_api_token.html.erb:14 +msgid "Documentation" +msgstr "Documentation" + +#: ../../app/views/devise/registrations/_api_token.html.erb:16 +msgid "" +"See the documentation for v0 for more details on " +"the original API which includes access to statistics, the full text of plans a" +"nd the ability to connect users with departments." +msgstr "" +"See the documentation for v0 for more details on " +"the original API which includes access to statistics, the full text of plans a" +"nd the ability to connect users with departments." + +#: ../../app/views/devise/registrations/_api_token.html.erb:18 +msgid "" +"See the documentation for v1 for more details on " +"the API that supports the RDA Common metadata st" +"andard for DMPs." +msgstr "" +"See the documentation for v1 for more details on " +"the API that supports the RDA Common metadata st" +"andard for DMPs." + +#: ../../app/views/devise/registrations/_api_token.html.erb:21 +msgid "Regenerate token" +msgstr "Regenerate token" + +#: ../../app/views/devise/registrations/_external_identifier.html.erb:5 +#: ../../app/views/devise/registrations/_external_identifier.html.erb:21 +msgid "" +"ORCID provides a persistent digital identifier that distinguishes you from oth" +"er researchers. Learn more at orcid.org" +msgstr "" +"ORCID provides a persistent digital identifier that distinguishes you from oth" +"er researchers. Learn more at orcid.org" + +#: ../../app/views/devise/registrations/_external_identifier.html.erb:7 +msgid "ORCID logo" +msgstr "ORCID logo" + +#: ../../app/views/devise/registrations/_external_identifier.html.erb:9 +msgid "Create or connect your ORCID iD" +msgstr "Create or connect your ORCID iD" + +#: ../../app/views/devise/registrations/_external_identifier.html.erb:12 +#: ../../app/views/devise/registrations/_external_identifier.html.erb:40 +#: ../../app/views/devise/registrations/_personal_details.html.erb:73 +msgid "Institutional credentials" +msgstr "Institutional credentials" + +#: ../../app/views/devise/registrations/_external_identifier.html.erb:14 +msgid "Link your institutional credentials" +msgstr "Link your institutional credentials" + +#: ../../app/views/devise/registrations/_external_identifier.html.erb:16 +msgid "Link your institutional credentials to access your account with them." +msgstr "Link your institutional credentials to access your account with them." + +#: ../../app/views/devise/registrations/_external_identifier.html.erb:22 +msgid "Disconnect your account from ORCID. You can reconnect at any time." +msgstr "Disconnect your account from ORCID. You can reconnect at any time." + +#: ../../app/views/devise/registrations/_external_identifier.html.erb:23 +msgid "Are you sure you want to disconnect your ORCID ID?" +msgstr "Are you sure you want to disconnect your ORCID ID?" + +#: ../../app/views/devise/registrations/_external_identifier.html.erb:36 +msgid "" +"Your account has been linked to your organisation. You can now login with that" +" method." +msgstr "" +"Your account has been linked to your organisation. You can now login with that" +" method." + +#: ../../app/views/devise/registrations/_external_identifier.html.erb:37 +msgid "Unlink your account from your organisation. You can link again at any time." +msgstr "Unlink your account from your organisation. You can link again at any time." + +#: ../../app/views/devise/registrations/_external_identifier.html.erb:38 +msgid "Are you sure you want to unlink your institutional credentials?" +msgstr "Are you sure you want to unlink your institutional credentials?" + +#: ../../app/views/devise/registrations/_password_confirmation.html.erb:9 +msgid "" +"Your email address is also your login id and therefore an important part of yo" +"ur account information. For your safety we require you to confirm your passwor" +"d to make this change." +msgstr "" +"Your email address is also your login id and therefore an important part of yo" +"ur account information. For your safety we require you to confirm your passwor" +"d to make this change." + +#: ../../app/views/devise/registrations/_password_confirmation.html.erb:11 +#: ../../app/views/devise/registrations/edit.html.erb:17 +#: ../../app/views/shared/_create_account_form.html.erb:25 +#: ../../app/views/shared/_sign_in_form.html.erb:7 +msgid "Password" +msgstr "Password" + +#: ../../app/views/devise/registrations/_password_confirmation.html.erb:19 +msgid "" +"Are you sure you want to change your organisational affiliation? Doing so will" +" remove your administrative privileges." +msgstr "" +"Are you sure you want to change your organisational affiliation? Doing so will" +" remove your administrative privileges." + +#: ../../app/views/devise/registrations/_password_confirmation.html.erb:27 +msgid "Yes, I understand that I will lose my administrative privileges" +msgstr "Yes, I understand that I will lose my administrative privileges" + +#: ../../app/views/devise/registrations/_password_details.html.erb:3 +msgid "" +"If you would like to change your password please complete the following fields" +"." +msgstr "" +"If you would like to change your password please complete the following fields" +"." + +#: ../../app/views/devise/registrations/_password_details.html.erb:8 +msgid "Current password" +msgstr "Current password" + +#: ../../app/views/devise/registrations/_personal_details.html.erb:3 +msgid "" +"Please note that your email address is used as your username. If you change th" +"is, remember to use your new email address on sign in." +msgstr "" +"Please note that your email address is used as your username. If you change th" +"is, remember to use your new email address on sign in." + +#: ../../app/views/devise/registrations/_personal_details.html.erb:6 +msgid "You can edit any of the details below." +msgstr "You can edit any of the details below." + +#: ../../app/views/devise/registrations/_personal_details.html.erb:26 +msgid "" +"Changing your organisation will result in the loss of your administrative priv" +"ileges." +msgstr "" +"Changing your organisation will result in the loss of your administrative priv" +"ileges." + +#: ../../app/views/devise/registrations/_personal_details.html.erb:43 +#: ../../app/views/org_admin/users/edit.html.erb:31 +#: ../../app/views/super_admin/users/edit.html.erb:41 +msgid "Department or school" +msgstr "Department or school" + +#: ../../app/views/devise/registrations/_personal_details.html.erb:55 +#: ../../app/views/layouts/_signin_signout.html.erb:6 +#: ../../app/views/org_admin/users/edit.html.erb:43 +#: ../../app/views/super_admin/users/edit.html.erb:53 +msgid "Language" +msgstr "Language" + +#: ../../app/views/devise/registrations/_personal_details.html.erb:64 +msgid "My privileges" +msgstr "My privileges" + +#: ../../app/views/devise/registrations/_personal_details.html.erb:65 +#: ../../app/views/users/_current_privileges.html.erb:3 +msgid "Super Admin" +msgstr "Super Admin" + +#: ../../app/views/devise/registrations/_personal_details.html.erb:65 +#: ../../app/views/users/_current_privileges.html.erb:5 +msgid "Organisational Admin" +msgstr "Organisational Admin" + +#: ../../app/views/devise/registrations/edit.html.erb:1 +#: ../../app/views/devise/registrations/edit.html.erb:4 +#: ../../app/views/layouts/_signin_signout.html.erb:29 +msgid "Edit profile" +msgstr "Edit profile" + +#: ../../app/views/devise/registrations/edit.html.erb:13 +msgid "Personal Details" +msgstr "Personal Details" + +#: ../../app/views/devise/registrations/edit.html.erb:22 +msgid "API Access" +msgstr "API Access" + +#: ../../app/views/devise/registrations/edit.html.erb:27 +msgid "Notification Preferences" +msgstr "Notification Preferences" + +#: ../../app/views/devise/registrations/new.html.erb:3 +msgid "Sign in or Create account" +msgstr "Sign in or Create account" + +#: ../../app/views/devise/registrations/new.html.erb:15 +msgid "Do you have a %{application_name} account?" +msgstr "Do you have a %{application_name} account?" + +#: ../../app/views/devise/registrations/new.html.erb:22 +#: ../../app/views/layouts/_signin_signout.html.erb:41 +#: ../../app/views/shared/_access_controls.html.erb:5 +#: ../../app/views/shared/_sign_in_form.html.erb:19 +msgid "Sign in" +msgstr "Sign in" + +#: ../../app/views/devise/registrations/new.html.erb:25 +msgid "This will link your existing account to your credentials." +msgstr "This will link your existing account to your credentials." + +#: ../../app/views/devise/registrations/new.html.erb:34 +msgid "No %{application_name} account?" +msgstr "No %{application_name} account?" + +#: ../../app/views/devise/registrations/new.html.erb:46 +msgid "This will create an account and link it to your credentials." +msgstr "This will create an account and link it to your credentials." + +#: ../../app/views/devise/shared/_links.erb:6 +msgid "Didn't receive confirmation instructions?" +msgstr "Didn't receive confirmation instructions?" + +#: ../../app/views/devise/shared/_links.erb:10 +msgid "Didn't receive unlock instructions?" +msgstr "Didn't receive unlock instructions?" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:3 +msgid "" +"Add an appropriate name for your guidance group. This name will tell the end u" +"ser where the guidance has come from. We suggest you use the organisation or d" +"epartment name e.g. \"OU\" or \"Maths & Stats\"" +msgstr "" +"Add an appropriate name for your guidance group. This name will tell the end u" +"ser where the guidance has come from. We suggest you use the organisation or d" +"epartment name e.g. \"OU\" or \"Maths & Stats\"" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:4 +msgid "" +"Check this box when you are ready for guidance associated with this group to a" +"ppear on user's plans." +msgstr "" +"Check this box when you are ready for guidance associated with this group to a" +"ppear on user's plans." + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:5 +msgid "" +"If the guidance is only meant for a subset of users e.g. those in a specific c" +"ollege or institute, check this box. Users will be able to select to display " +"this subset guidance when answering questions in the 'create plan' wizard." +msgstr "" +"If the guidance is only meant for a subset of users e.g. those in a specific c" +"ollege or institute, check this box. Users will be able to select to display " +"this subset guidance when answering questions in the 'create plan' wizard." + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:15 +#: ../../app/views/org_admin/templates/_form.html.erb:35 +#: ../../app/views/org_admin/templates/_row.html.erb:10 +#: ../../app/views/org_admin/templates/_row.html.erb:13 +#: ../../app/views/org_admin/templates/_show.html.erb:19 +#: ../../app/views/org_admin/templates/_show.html.erb:22 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 +#: ../../app/views/paginable/guidances/_index.html.erb:37 +#: ../../app/views/paginable/templates/_customisable.html.erb:31 +#: ../../app/views/paginable/templates/_customisable.html.erb:34 +#: ../../app/views/paginable/templates/_history.html.erb:8 +#: ../../app/views/paginable/templates/_organisational.html.erb:36 +#: ../../app/views/paginable/templates/_organisational.html.erb:39 +msgid "Published" +msgstr "Published" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 +msgid "Optional subset" +msgstr "Optional subset" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 +msgid " (e.g. School/ Department) " +msgstr " (e.g. School/ Department) " + +#: ../../app/views/guidance_groups/_index_by_theme.html.erb:10 +#: ../../app/views/guidance_groups/_show.html.erb:6 +#: ../../app/views/org_admin/phases/_index.html.erb:6 +#: ../../app/views/org_admin/phases/container.html.erb:47 +#: ../../app/views/phases/_edit_plan_answers.html.erb:9 +msgid "expand all" +msgstr "expand all" + +#: ../../app/views/guidance_groups/_index_by_theme.html.erb:12 +#: ../../app/views/guidance_groups/_show.html.erb:8 +#: ../../app/views/org_admin/phases/_index.html.erb:8 +#: ../../app/views/org_admin/phases/container.html.erb:51 +#: ../../app/views/phases/_edit_plan_answers.html.erb:11 +msgid "collapse all" +msgstr "collapse all" + +#: ../../app/views/guidance_groups/admin_edit.html.erb:1 +#: ../../app/views/guidance_groups/admin_edit.html.erb:4 +#: ../../app/views/guidance_groups/admin_new.html.erb:1 +#: ../../app/views/guidance_groups/admin_new.html.erb:4 +#: ../../app/views/guidances/new_edit.html.erb:34 +#: ../../app/views/paginable/guidances/_index.html.erb:8 +msgid "Guidance group" +msgstr "Guidance group" + +#: ../../app/views/guidance_groups/admin_edit.html.erb:5 +#: ../../app/views/guidance_groups/admin_new.html.erb:5 +#: ../../app/views/guidances/new_edit.html.erb:17 +msgid "View all guidance" +msgstr "View all guidance" + +#: ../../app/views/guidances/_guidance_display.html.erb:10 +#: ../../app/views/guidances/admin_index.html.erb:2 +#: ../../app/views/guidances/admin_index.html.erb:5 +#: ../../app/views/guidances/new_edit.html.erb:12 +#: ../../app/views/guidances/new_edit.html.erb:16 +#: ../../app/views/layouts/_branding.html.erb:82 +#: ../../app/views/org_admin/annotations/_form.html.erb:3 +#: ../../app/views/org_admin/questions/_show.html.erb:78 +#: ../../app/views/paginable/themes/_index.html.erb:5 +#: ../../app/views/phases/_guidances_notes.html.erb:10 +#: ../../app/views/super_admin/themes/_form.html.erb:9 +#: ../../app/views/template_exports/template_export.docx.erb:39 +#: ../../app/views/template_exports/template_export.pdf.erb:81 +msgid "Guidance" +msgstr "Guidance" + +#: ../../app/views/guidances/admin_index.html.erb:8 +msgid "" +"First create a guidance group. This could be organisation wide or a subset e.g" +". a particular College / School, Institute or department. When you create guid" +"ance you'll be asked to assign it to a guidance group." +msgstr "" +"First create a guidance group. This could be organisation wide or a subset e.g" +". a particular College / School, Institute or department. When you create guid" +"ance you'll be asked to assign it to a guidance group." + +#: ../../app/views/guidances/admin_index.html.erb:15 +msgid "Guidance group list" +msgstr "Guidance group list" + +#: ../../app/views/guidances/admin_index.html.erb:26 +msgid "Create a guidance group" +msgstr "Create a guidance group" + +#: ../../app/views/guidances/admin_index.html.erb:29 +msgid "Guidance list" +msgstr "Guidance list" + +#: ../../app/views/guidances/admin_index.html.erb:32 +msgid "" +"You can write pieces of guidance to be displayed by theme (e.g. generic guidan" +"ce on storage and backup that should present across the board). Writing generi" +"c guidance by theme saves you time and effort as your advice will be automatic" +"ally displayed across all templates rather than having to write guidance to ac" +"company each." +msgstr "" +"You can write pieces of guidance to be displayed by theme (e.g. generic guidan" +"ce on storage and backup that should present across the board). Writing generi" +"c guidance by theme saves you time and effort as your advice will be automatic" +"ally displayed across all templates rather than having to write guidance to ac" +"company each." + +#: ../../app/views/guidances/admin_index.html.erb:35 +msgid "" +"If you do have a need to provide guidance for specific funders that would not " +"be useful to a wider audience (e.g. if you have specific instructions for appl" +"icants to BBSRC for example), you can do so by adding guidance to a specific q" +"uestion when you edit your template." +msgstr "" +"If you do have a need to provide guidance for specific funders that would not " +"be useful to a wider audience (e.g. if you have specific instructions for appl" +"icants to BBSRC for example), you can do so by adding guidance to a specific q" +"uestion when you edit your template." + +#: ../../app/views/guidances/admin_index.html.erb:48 +msgid "Create guidance" +msgstr "Create guidance" + +#: ../../app/views/guidances/new_edit.html.erb:10 +msgid "Enter your guidance here. You can include links where needed." +msgstr "Enter your guidance here. You can include links where needed." + +#: ../../app/views/guidances/new_edit.html.erb:32 +msgid "" +"Select one or more themes that are relevant to this guidance. This will displa" +"y your generic organisation-level guidance, or any Schools/Departments for whi" +"ch you create guidance groups, across all templates that have questions with t" +"he corresponding theme tags." +msgstr "" +"Select one or more themes that are relevant to this guidance. This will displa" +"y your generic organisation-level guidance, or any Schools/Departments for whi" +"ch you create guidance groups, across all templates that have questions with t" +"he corresponding theme tags." + +#: ../../app/views/guidances/new_edit.html.erb:37 +msgid "Select which group this guidance relates to." +msgstr "Select which group this guidance relates to." + +#: ../../app/views/guidances/new_edit.html.erb:44 +msgid "Check this box when you are ready for this guidance to appear on user's plans." +msgstr "Check this box when you are ready for this guidance to appear on user's plans." + +#: ../../app/views/guidances/new_edit.html.erb:45 +msgid "Published?" +msgstr "Published?" + +#: ../../app/views/home/_welcome.html.erb:5 +msgid "" +"

%{application_name} has been developed by the %{organisation_name}<" +"/strong> to help you write data management plans.

" +msgstr "" +"

%{application_name} has been developed by the %{organisation_name}<" +"/strong> to help you write data management plans.

" + +#: ../../app/views/home/_welcome.html.erb:11 +msgid "Getting started:" +msgstr "Getting started:" + +#: ../../app/views/kaminari/_first_page.html.erb:10 +msgid "First" +msgstr "First" + +#: ../../app/views/kaminari/_gap.html.erb:8 +msgid "..." +msgstr "..." + +#: ../../app/views/kaminari/_last_page.html.erb:10 +msgid "Last" +msgstr "Last" + +#: ../../app/views/kaminari/_next_page.html.erb:10 +msgid "Next" +msgstr "Next" + +#: ../../app/views/kaminari/_prev_page.html.erb:10 +msgid "Previous" +msgstr "Previous" + +#: ../../app/views/layouts/_branding.html.erb:65 +msgid "Admin" +msgstr "Admin" + +#: ../../app/views/layouts/_branding.html.erb:77 +#: ../../app/views/org_admin/templates/index.html.erb:4 +#: ../../app/views/paginable/orgs/_index.html.erb:8 +msgid "Templates" +msgstr "Templates" + +#: ../../app/views/layouts/_branding.html.erb:87 +#: ../../app/views/super_admin/orgs/index.html.erb:2 +#: ../../app/views/super_admin/orgs/index.html.erb:6 +msgid "Organisations" +msgstr "Organisations" + +#: ../../app/views/layouts/_branding.html.erb:92 +#: ../../app/views/orgs/admin_edit.html.erb:1 +#: ../../app/views/orgs/admin_edit.html.erb:6 +msgid "Organisation details" +msgstr "Organisation details" + +#: ../../app/views/layouts/_branding.html.erb:98 +msgid "Users" +msgstr "Users" + +#: ../../app/views/layouts/_branding.html.erb:103 +#: ../../app/views/org_admin/questions/_show.html.erb:88 +#: ../../app/views/org_admin/shared/_theme_selector.html.erb:16 +#: ../../app/views/paginable/guidances/_index.html.erb:7 +#: ../../app/views/super_admin/themes/index.html.erb:1 +#: ../../app/views/super_admin/themes/index.html.erb:4 +msgid "Themes" +msgstr "Themes" + +#: ../../app/views/layouts/_branding.html.erb:108 +msgid "Usage" +msgstr "Usage" + +#: ../../app/views/layouts/_branding.html.erb:113 +msgid "Api Clients" +msgstr "Api Clients" + +#: ../../app/views/layouts/_branding.html.erb:116 +#: ../../app/views/org_admin/plans/index.html.erb:11 +#: ../../app/views/super_admin/notifications/index.html.erb:1 +#: ../../app/views/super_admin/notifications/index.html.erb:4 +msgid "Notifications" +msgstr "Notifications" + +#: ../../app/views/layouts/_footer.html.erb:13 +msgid "About" +msgstr "About" + +#: ../../app/views/layouts/_footer.html.erb:14 +msgid "Contact us" +msgstr "Contact us" + +#: ../../app/views/layouts/_footer.html.erb:15 +#: ../../app/views/static_pages/termsuse.html.erb:1 +#: ../../app/views/static_pages/termsuse.html.erb:4 +msgid "Terms of use" +msgstr "Terms of use" + +#: ../../app/views/layouts/_footer.html.erb:16 +#: ../../app/views/static_pages/privacy.html.erb:1 +#: ../../app/views/static_pages/privacy.html.erb:4 +msgid "Privacy statement" +msgstr "Privacy statement" + +#: ../../app/views/layouts/_footer.html.erb:17 +msgid "GitHub" +msgstr "GitHub" + +#: ../../app/views/layouts/_navigation.html.erb:12 +#: ../../app/views/orgs/_profile_form.html.erb:55 +msgid "logo" +msgstr "logo" + +#: ../../app/views/layouts/_navigation.html.erb:23 +#: ../../app/views/plans/index.html.erb:1 +#: ../../app/views/plans/index.html.erb:4 +msgid "My Dashboard" +msgstr "My Dashboard" + +#: ../../app/views/layouts/_navigation.html.erb:26 +msgid "Create plans" +msgstr "Create plans" + +#: ../../app/views/layouts/_navigation.html.erb:31 +msgid "Reference" +msgstr "Reference" + +#: ../../app/views/layouts/_navigation.html.erb:36 +#: ../../app/views/layouts/_navigation.html.erb:47 +#: ../../app/views/public_pages/plan_index.html.erb:1 +#: ../../app/views/public_pages/plan_index.html.erb:4 +msgid "Public DMPs" +msgstr "Public DMPs" + +#: ../../app/views/layouts/_navigation.html.erb:39 +#: ../../app/views/layouts/_navigation.html.erb:50 +#: ../../app/views/public_pages/template_index.html.erb:1 +#: ../../app/views/public_pages/template_index.html.erb:4 +msgid "DMP Templates" +msgstr "DMP Templates" + +#: ../../app/views/layouts/_navigation.html.erb:44 +msgid "Home" +msgstr "Home" + +#: ../../app/views/layouts/_navigation.html.erb:55 +#: ../../app/views/static_pages/about_us.html.erb:35 +#: ../../app/views/static_pages/help.html.erb:1 +#: ../../app/views/static_pages/help.html.erb:4 +msgid "Help" +msgstr "Help" + +#: ../../app/views/layouts/_paginable.html.erb:22 +msgid "There are no records associated" +msgstr "There are no records associated" + +#: ../../app/views/layouts/_paginable.html.erb:34 +msgid "View all search results" +msgstr "View all search results" + +#: ../../app/views/layouts/_paginable.html.erb:36 +msgid "View less search results" +msgstr "View less search results" + +#: ../../app/views/layouts/_paginable.html.erb:38 +#: ../../app/views/layouts/_paginable.html.erb:49 +msgid "Clear search results" +msgstr "Clear search results" + +#: ../../app/views/layouts/_paginable.html.erb:42 +msgid "View all" +msgstr "View all" + +#: ../../app/views/layouts/_paginable.html.erb:44 +msgid "View less" +msgstr "View less" + +#: ../../app/views/layouts/_signin_signout.html.erb:32 +msgid "Logout" +msgstr "Logout" + +#: ../../app/views/layouts/application.html.erb:32 +#: ../../app/views/static_pages/termsuse.html.erb:14 +msgid "%{application_name}" +msgstr "%{application_name}" + +#: ../../app/views/layouts/application.html.erb:91 +msgid "Notice:" +msgstr "Notice:" + +#: ../../app/views/layouts/application.html.erb:91 +msgid "Error:" +msgstr "Error:" + +#: ../../app/views/layouts/application.html.erb:102 +msgid "Loading..." +msgstr "Loading..." + +#: ../../app/views/layouts/application.html.erb:121 +#: ../../app/views/plans/new.html.erb:2 +msgid "This field is required." +msgstr "This field is required." + +#: ../../app/views/layouts/application.html.erb:123 +#: ../../app/views/shared/_create_account_form.html.erb:31 +msgid "Show password" +msgstr "Show password" + +#: ../../app/views/layouts/application.html.erb:124 +msgid "Select an organisation from the list." +msgstr "Select an organisation from the list." + +#: ../../app/views/layouts/application.html.erb:125 +msgid "My organisation isn't listed" +msgstr "My organisation isn't listed" + +#: ../../app/views/layouts/application.html.erb:127 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:42 +msgid "N/A" +msgstr "N/A" + +#: ../../app/views/layouts/application.html.erb:131 +msgid "Hide list." +msgstr "Hide list." + +#: ../../app/views/layouts/application.html.erb:132 +msgid "See the full list of partner institutions." +msgstr "See the full list of partner institutions." + +#: ../../app/views/layouts/application.html.erb:134 +msgid "" +"Unable to find a suitable template for the research organisation and funder yo" +"u selected." +msgstr "" +"Unable to find a suitable template for the research organisation and funder yo" +"u selected." + +#: ../../app/views/layouts/application.html.erb:135 +msgid "Please select a research organisation and funder to continue." +msgstr "Please select a research organisation and funder to continue." + +#: ../../app/views/layouts/application.html.erb:137 +msgid "Loading ..." +msgstr "Loading ..." + +#: ../../app/views/layouts/application.html.erb:138 +msgid "Unable to load the section's content at this time." +msgstr "Unable to load the section's content at this time." + +#: ../../app/views/layouts/application.html.erb:139 +msgid "Unable to load the question's content at this time." +msgstr "Unable to load the question's content at this time." + +#: ../../app/views/layouts/application.html.erb:140 +msgid "Opens in a new window" +msgstr "Opens in a new window" + +#: ../../app/views/layouts/application.html.erb:142 +msgid "" +"%{n} results are available, use up and down arrows to navigate suggestions. Us" +"e the Enter key to select a suggestion or the Escape key to close the suggesti" +"ons." +msgstr "" +"%{n} results are available, use up and down arrows to navigate suggestions. Us" +"e the Enter key to select a suggestion or the Escape key to close the suggesti" +"ons." + +#: ../../app/views/layouts/application.html.erb:143 +msgid "No results are available for your entry." +msgstr "No results are available for your entry." + +#: ../../app/views/layouts/application.html.erb:144 +msgid "Searching ..." +msgstr "Searching ..." + +#: ../../app/views/layouts/modal_search/_form.html.erb:24 +msgid "- Enter a search term %{examples} -" +msgstr "- Enter a search term %{examples} -" + +#: ../../app/views/layouts/modal_search/_form.html.erb:25 +#: ../../app/views/layouts/modal_search/_results.html.erb:20 +msgid "No results matched your filter criteria." +msgstr "No results matched your filter criteria." + +#: ../../app/views/layouts/modal_search/_form.html.erb:41 +#: ../../app/views/layouts/modal_search/_form.html.erb:84 +msgid "Close" +msgstr "Close" + +#: ../../app/views/layouts/modal_search/_form.html.erb:44 +msgid "%{topic} search" +msgstr "%{topic} search" + +#: ../../app/views/layouts/modal_search/_form.html.erb:67 +msgid "Apply filter(s)" +msgstr "Apply filter(s)" + +#: ../../app/views/layouts/modal_search/_result.html.erb:20 +msgid "Select" +msgstr "Select" + +#: ../../app/views/layouts/modal_search/_result.html.erb:22 +msgid "Click to select %{item_name}" +msgstr "Click to select %{item_name}" + +#: ../../app/views/layouts/modal_search/_result.html.erb:25 +msgid "Click to remove %{item_name}" +msgstr "Click to remove %{item_name}" + +#: ../../app/views/notes/_archive.html.erb:8 +msgid "Are you sure you want to remove this comment?" +msgstr "Are you sure you want to remove this comment?" + +#: ../../app/views/notes/_edit.html.erb:5 +msgid "Edit comment to share with collaborators" +msgstr "Edit comment to share with collaborators" + +#: ../../app/views/notes/_layout.html.erb:21 +msgid "Add Comment" +msgstr "Add Comment" + +#: ../../app/views/notes/_list.html.erb:15 +#: ../../app/views/org_admin/questions/_show.html.erb:218 +#: ../../app/views/paginable/api_clients/_index.html.erb:43 +#: ../../app/views/paginable/contributors/_index.html.erb:53 +#: ../../app/views/paginable/departments/_index.html.erb:27 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:49 +#: ../../app/views/paginable/guidances/_index.html.erb:54 +#: ../../app/views/paginable/orgs/_index.html.erb:33 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 +#: ../../app/views/paginable/research_outputs/_index.html.erb:51 +#: ../../app/views/paginable/templates/_history.html.erb:56 +#: ../../app/views/paginable/templates/_organisational.html.erb:56 +#: ../../app/views/paginable/users/_index.html.erb:81 +msgid "Edit" +msgstr "Edit" + +#: ../../app/views/notes/_new.html.erb:8 +msgid "Add comments to share with collaborators" +msgstr "Add comments to share with collaborators" + +#: ../../app/views/notes/_title.html.erb:3 +msgid "Comments" +msgstr "Comments" + +#: ../../app/views/org_admin/annotations/_form.html.erb:3 +msgid "Example answer" +msgstr "Example answer" + +#: ../../app/views/org_admin/annotations/_show.html.erb:4 +msgid "%{org} Example Answer" +msgstr "%{org} Example Answer" + +#: ../../app/views/org_admin/conditions/_add.html.erb:3 +msgid "Add condition" +msgstr "Add condition" + +#: ../../app/views/org_admin/conditions/_container.html.erb:5 +msgid "Option" +msgstr "Option" + +#: ../../app/views/org_admin/conditions/_container.html.erb:8 +#: ../../app/views/super_admin/orgs/_analysis.html.erb:47 +msgid "Action" +msgstr "Action" + +#: ../../app/views/org_admin/conditions/_form.html.erb:25 +msgid "Edit email" +msgstr "Edit email" + +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:6 +msgid "Send email" +msgstr "Send email" + +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:21 +msgid "recipient_email@example.com" +msgstr "recipient_email@example.com" + +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:33 +msgid "Email content" +msgstr "Email content" + +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:37 +msgid "Discard " +msgstr "Discard " + +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:38 +msgid "Save " +msgstr "Save " + +#: ../../app/views/org_admin/departments/edit.html.erb:4 +msgid "Edit the School/Department" +msgstr "Edit the School/Department" + +#: ../../app/views/org_admin/departments/edit.html.erb:5 +#: ../../app/views/org_admin/departments/new.html.erb:5 +msgid "View all departments" +msgstr "View all departments" + +#: ../../app/views/org_admin/departments/edit.html.erb:15 +#: ../../app/views/org_admin/departments/new.html.erb:15 +msgid "Add the name of a school/department." +msgstr "Add the name of a school/department." + +#: ../../app/views/org_admin/departments/edit.html.erb:18 +#: ../../app/views/org_admin/departments/new.html.erb:18 +msgid "Abbreviated name or code" +msgstr "Abbreviated name or code" + +#: ../../app/views/org_admin/departments/edit.html.erb:19 +#: ../../app/views/org_admin/departments/new.html.erb:19 +msgid "Add the abbreviated name or code for the school/department." +msgstr "Add the abbreviated name or code for the school/department." + +#: ../../app/views/org_admin/departments/new.html.erb:4 +msgid "Create a School/Department" +msgstr "Create a School/Department" + +#: ../../app/views/org_admin/phases/_form.html.erb:1 +msgid "" +"Enter a title for the phase e.g. initial DMP, full DMP... This is what users w" +"ill see in the tabs when completing a plan. If you only have one phase, call i" +"t something generic e.g. Glasgow DMP" +msgstr "" +"Enter a title for the phase e.g. initial DMP, full DMP... This is what users w" +"ill see in the tabs when completing a plan. If you only have one phase, call i" +"t something generic e.g. Glasgow DMP" + +#: ../../app/views/org_admin/phases/_form.html.erb:5 +#: ../../app/views/org_admin/phases/_show.html.erb:2 +#: ../../app/views/org_admin/sections/_form.html.erb:5 +#: ../../app/views/org_admin/templates/_form.html.erb:4 +#: ../../app/views/org_admin/templates/_show.html.erb:3 +#: ../../app/views/paginable/notifications/_index.html.erb:4 +#: ../../app/views/paginable/research_outputs/_index.html.erb:7 +#: ../../app/views/paginable/templates/_history.html.erb:5 +#: ../../app/views/research_outputs/_form.html.erb:41 +#: ../../app/views/shared/export/_plan_outputs.erb:18 +#: ../../app/views/super_admin/notifications/_form.html.erb:6 +#: ../../app/views/super_admin/themes/_form.html.erb:5 +msgid "Title" +msgstr "Title" + +#: ../../app/views/org_admin/phases/_form.html.erb:12 +#: ../../app/views/org_admin/phases/_show.html.erb:4 +msgid "Order of display" +msgstr "Order of display" + +#: ../../app/views/org_admin/phases/_form.html.erb:15 +msgid "This allows you to order the phases of your template." +msgstr "This allows you to order the phases of your template." + +#: ../../app/views/org_admin/phases/_form.html.erb:19 +msgid "" +"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." +msgstr "" +"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." + +#: ../../app/views/org_admin/phases/_form.html.erb:20 +#: ../../app/views/org_admin/phases/_show.html.erb:6 +#: ../../app/views/org_admin/sections/_form.html.erb:11 +#: ../../app/views/org_admin/templates/_form.html.erb:10 +#: ../../app/views/org_admin/templates/_show.html.erb:5 +#: ../../app/views/paginable/templates/_organisational.html.erb:10 +#: ../../app/views/research_outputs/_form.html.erb:59 +#: ../../app/views/super_admin/api_clients/_form.html.erb:21 +msgid "Description" +msgstr "Description" + +#: ../../app/views/org_admin/phases/_new.html.erb:1 +#: ../../app/views/org_admin/phases/container.html.erb:21 +msgid "Phase details" +msgstr "Phase details" + +#: ../../app/views/org_admin/phases/_new.html.erb:2 +msgid "" +"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 t" +"o create sections and questions." +msgstr "" +"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 t" +"o create sections and questions." + +#: ../../app/views/org_admin/phases/_overview.html.erb:2 +msgid "Template Overview" +msgstr "Template Overview" + +#: ../../app/views/org_admin/phases/_phase.html.erb:9 +msgid "Customise phase" +msgstr "Customise phase" + +#: ../../app/views/org_admin/phases/_phase.html.erb:11 +msgid "Edit phase" +msgstr "Edit phase" + +#: ../../app/views/org_admin/phases/_phase.html.erb:13 +msgid "Show phase" +msgstr "Show phase" + +#: ../../app/views/org_admin/phases/_phase.html.erb:16 +msgid "Delete phase" +msgstr "Delete phase" + +#: ../../app/views/org_admin/phases/_phase.html.erb:17 +msgid "" +"You are about to delete the '%{phase_title}' phase. This will remove all of th" +"e sections and questions listed below. Are you sure?" +msgstr "" +"You are about to delete the '%{phase_title}' phase. This will remove all of th" +"e sections and questions listed below. Are you sure?" + +#: ../../app/views/org_admin/phases/_phase.html.erb:18 +#: ../../app/views/paginable/guidances/_index.html.erb:62 +msgid "... (continued)" +msgstr "... (continued)" + +#: ../../app/views/org_admin/phases/_phase.html.erb:36 +#: ../../app/views/org_admin/phases/container.html.erb:37 +msgid "Sections" +msgstr "Sections" + +#: ../../app/views/org_admin/phases/_phase.html.erb:37 +#: ../../app/views/org_admin/questions/_index.html.erb:1 +msgid "Questions" +msgstr "Questions" + +#: ../../app/views/org_admin/phases/container.html.erb:7 +#: ../../app/views/org_admin/templates/container.html.erb:6 +#: ../../app/views/org_admin/templates/history.html.erb:6 +#: ../../app/views/org_admin/templates/new.html.erb:4 +msgid "View all templates" +msgstr "View all templates" + +#: ../../app/views/org_admin/phases/container.html.erb:24 +msgid "Preview" +msgstr "Preview" + +#: ../../app/views/org_admin/phases/container.html.erb:62 +msgid "Drag arrows to rearrange sections." +msgstr "Drag arrows to rearrange sections." + +#: ../../app/views/org_admin/phases/container.html.erb:64 +msgid "You may place them before or after the main template sections." +msgstr "You may place them before or after the main template sections." + +#: ../../app/views/org_admin/phases/container.html.erb:67 +msgid "Re-order sections" +msgstr "Re-order sections" + +#: ../../app/views/org_admin/phases/preview.html.erb:11 +msgid "Back to customise phase" +msgstr "Back to customise phase" + +#: ../../app/views/org_admin/phases/preview.html.erb:18 +msgid "Back to edit phase" +msgstr "Back to edit phase" + +#: ../../app/views/org_admin/phases/preview.html.erb:26 +msgid "Back to phase" +msgstr "Back to phase" + +#: ../../app/views/org_admin/phases/preview.html.erb:38 +#: ../../app/views/phases/_overview.html.erb:6 +msgid "Write plan" +msgstr "Write plan" + +#: ../../app/views/org_admin/plans/index.html.erb:4 +msgid "%{org_name} Plans" +msgstr "%{org_name} Plans" + +#: ../../app/views/org_admin/plans/index.html.erb:16 +msgid "Plan" +msgstr "Plan" + +#: ../../app/views/org_admin/plans/index.html.erb:17 +msgid "Requestor" +msgstr "Requestor" + +#: ../../app/views/org_admin/plans/index.html.erb:18 +#: ../../app/views/paginable/research_outputs/_index.html.erb:10 +#: ../../app/views/research_outputs/_form.html.erb:14 +#: ../../app/views/shared/export/_plan_outputs.erb:19 +msgid "Type" +msgstr "Type" + +#: ../../app/views/org_admin/plans/index.html.erb:19 +#: ../../app/views/paginable/api_clients/_index.html.erb:20 +#: ../../app/views/paginable/api_clients/_index.html.erb:40 +#: ../../app/views/paginable/contributors/_index.html.erb:19 +#: ../../app/views/paginable/contributors/_index.html.erb:50 +#: ../../app/views/paginable/departments/_index.html.erb:7 +#: ../../app/views/paginable/departments/_index.html.erb:24 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:10 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:46 +#: ../../app/views/paginable/guidances/_index.html.erb:11 +#: ../../app/views/paginable/guidances/_index.html.erb:51 +#: ../../app/views/paginable/orgs/_index.html.erb:10 +#: ../../app/views/paginable/orgs/_index.html.erb:30 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:13 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:56 +#: ../../app/views/paginable/research_outputs/_index.html.erb:23 +#: ../../app/views/paginable/research_outputs/_index.html.erb:48 +#: ../../app/views/paginable/templates/_customisable.html.erb:51 +#: ../../app/views/paginable/templates/_history.html.erb:10 +#: ../../app/views/paginable/templates/_organisational.html.erb:53 +#: ../../app/views/plans/_share_form.html.erb:53 +msgid "Actions" +msgstr "Actions" + +#: ../../app/views/org_admin/plans/index.html.erb:28 +msgid "Feedback requested" +msgstr "Feedback requested" + +#: ../../app/views/org_admin/plans/index.html.erb:29 +msgid "Complete" +msgstr "Complete" + +#: ../../app/views/org_admin/plans/index.html.erb:29 +msgid "Notify the plan owner that I have finished providing feedback" +msgstr "Notify the plan owner that I have finished providing feedback" + +#: ../../app/views/org_admin/plans/index.html.erb:39 +msgid "" +"Download plans (new window)%{open_in_new_window_text}" +msgstr "" +"Download plans (new window)%{open_in_new_window_text}" + +#: ../../app/views/org_admin/question_options/_option_fields.html.erb:3 +msgid "Order" +msgstr "Order" + +#: ../../app/views/org_admin/question_options/_option_fields.html.erb:6 +#: ../../app/views/paginable/guidances/_index.html.erb:6 +#: ../../app/views/shared/_links.html.erb:13 +msgid "Text" +msgstr "Text" + +#: ../../app/views/org_admin/question_options/_option_fields.html.erb:9 +msgid "Default" +msgstr "Default" + +#: ../../app/views/org_admin/question_options/_option_fields.html.erb:48 +msgid "Add option" +msgstr "Add option" + +#: ../../app/views/org_admin/questions/_form.html.erb:1 +msgid "" +"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." +msgstr "" +"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." + +#: ../../app/views/org_admin/questions/_form.html.erb:4 +msgid "Question %{number}:" +msgstr "Question %{number}:" + +#: ../../app/views/org_admin/questions/_form.html.erb:4 +msgid "New question:" +msgstr "New question:" + +#: ../../app/views/org_admin/questions/_form.html.erb:15 +msgid "Question Number" +msgstr "Question Number" + +#: ../../app/views/org_admin/questions/_form.html.erb:22 +#: ../../app/views/org_admin/questions/_show.html.erb:15 +msgid "Question text" +msgstr "Question text" + +#: ../../app/views/org_admin/questions/_form.html.erb:28 +#: ../../app/views/org_admin/questions/_show.html.erb:42 +msgid "Answer format" +msgstr "Answer format" + +#: ../../app/views/org_admin/questions/_form.html.erb:38 +msgid "" +"You can choose from:
  • - text area (large box for paragraphs);
  • -" +" text field (for a short answer);
  • - checkboxes where options are pres" +"ented 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, usi" +"ng the CTRL key;
" +msgstr "" +"You can choose from:
  • - text area (large box for paragraphs);
  • -" +" text field (for a short answer);
  • - checkboxes where options are pres" +"ented 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, usi" +"ng the CTRL key;
" + +#: ../../app/views/org_admin/questions/_form.html.erb:49 +#: ../../app/views/org_admin/questions/_form.html.erb:57 +msgid "Add Conditions" +msgstr "Add Conditions" + +#: ../../app/views/org_admin/questions/_form.html.erb:56 +msgid "Save this question before adding conditions." +msgstr "Save this question before adding conditions." + +#: ../../app/views/org_admin/questions/_form.html.erb:66 +msgid "Display additional comment area." +msgstr "Display additional comment area." + +#: ../../app/views/org_admin/questions/_form.html.erb:72 +msgid "Default answer" +msgstr "Default answer" + +#: ../../app/views/org_admin/questions/_form.html.erb:95 +msgid "" +"Select one or more themes that are relevant to this question. This will allow " +"similarly themed organisation-level guidance to appear alongside your question" +"." +msgstr "" +"Select one or more themes that are relevant to this question. This will allow " +"similarly themed organisation-level guidance to appear alongside your question" +"." + +#: ../../app/views/org_admin/questions/_form.html.erb:102 +#: ../../app/views/org_admin/sections/_form.html.erb:19 +#: ../../app/views/super_admin/api_clients/_form.html.erb:79 +#: ../../app/views/super_admin/notifications/_form.html.erb:68 +#: ../../app/views/super_admin/themes/_form.html.erb:15 +msgid "Delete" +msgstr "Delete" + +#: ../../app/views/org_admin/questions/_form.html.erb:102 +msgid "You are about to delete question #%{question_number}. Are you sure?" +msgstr "You are about to delete question #%{question_number}. Are you sure?" + +#: ../../app/views/org_admin/questions/_index.html.erb:14 +msgid "Add Question" +msgstr "Add Question" + +#: ../../app/views/org_admin/questions/_index.html.erb:19 +msgid "New Question" +msgstr "New Question" + +#: ../../app/views/org_admin/questions/_show.html.erb:13 +msgid "Question number" +msgstr "Question number" + +#: ../../app/views/org_admin/questions/_show.html.erb:23 +msgid "Question options" +msgstr "Question options" + +#: ../../app/views/org_admin/questions/_show.html.erb:29 +msgid "Default value" +msgstr "Default value" + +#: ../../app/views/org_admin/questions/_show.html.erb:46 +msgid "Additional comment area will be displayed." +msgstr "Additional comment area will be displayed." + +#: ../../app/views/org_admin/questions/_show.html.erb:48 +msgid "No additional comment area will be displayed." +msgstr "No additional comment area will be displayed." + +#: ../../app/views/org_admin/questions/_show.html.erb:54 +msgid "Question conditions" +msgstr "Question conditions" + +#: ../../app/views/org_admin/questions/_show.html.erb:89 +msgid "No themes selected" +msgstr "No themes selected" + +#: ../../app/views/org_admin/questions/_show.html.erb:100 +msgid "Themed Guidance" +msgstr "Themed Guidance" + +#: ../../app/views/org_admin/questions/_show.html.erb:118 +msgid "" +"Click the links below to view organisational guidance\n" +" related to the themes associated with this question." +msgstr "" +"Click the links below to view organisational guidance\n" +" related to the themes associated with this question." + +#: ../../app/views/org_admin/questions/_show.html.erb:169 +msgid "" +"Note: New plans will automatically display this guidance.\n" +" Users then have the ability to hide/display the guidance when edit" +"ing their plan." +msgstr "" +"Note: New plans will automatically display this guidance.\n" +" Users then have the ability to hide/display the guidance when edit" +"ing their plan." + +#: ../../app/views/org_admin/questions/_show.html.erb:172 +msgid "" +"There is no organisational guidance related to the themes associated with this" +" question." +msgstr "" +"There is no organisational guidance related to the themes associated with this" +" question." + +#: ../../app/views/org_admin/questions/_show.html.erb:182 +#: ../../app/views/org_admin/questions/_show.html.erb:194 +#: ../../app/views/org_admin/questions/_show.html.erb:224 +msgid "Annotations" +msgstr "Annotations" + +#: ../../app/views/org_admin/questions/_show.html.erb:188 +#: ../../app/views/org_admin/questions/_show.html.erb:230 +msgid "None provided" +msgstr "None provided" + +#: ../../app/views/org_admin/sections/_edit.html.erb:3 +msgid "Section details" +msgstr "Section details" + +#: ../../app/views/org_admin/sections/_form.html.erb:1 +msgid "" +"Enter a basic description. This could be a summary of what is covered in the s" +"ection or instructions on how to answer. This text will be displayed in the co" +"loured banner once a section is opened to edit." +msgstr "" +"Enter a basic description. This could be a summary of what is covered in the s" +"ection or instructions on how to answer. This text will be displayed in the co" +"loured banner once a section is opened to edit." + +#: ../../app/views/org_admin/sections/_form.html.erb:6 +msgid "Enter a title for the section" +msgstr "Enter a title for the section" + +#: ../../app/views/org_admin/sections/_form.html.erb:20 +msgid "" +"You are about to delete '%{section_title}'. This will affect questions linked " +"to this section. Are you sure?" +msgstr "" +"You are about to delete '%{section_title}'. This will affect questions linked " +"to this section. Are you sure?" + +#: ../../app/views/org_admin/sections/_index.html.erb:61 +msgid "Add a new section" +msgstr "Add a new section" + +#: ../../app/views/org_admin/shared/_theme_selector.html.erb:43 +msgid "No themes have been defined. Please contact your administrator for assistance." +msgstr "No themes have been defined. Please contact your administrator for assistance." + +#: ../../app/views/org_admin/templates/_form.html.erb:1 +msgid "" +"Enter a description that helps you to differentiate between templates e.g. if " +"you have ones for different audiences" +msgstr "" +"Enter a description that helps you to differentiate between templates e.g. if " +"you have ones for different audiences" + +#: ../../app/views/org_admin/templates/_form.html.erb:19 +msgid "" +"Checking this box prevents the template from appearing in the public list of t" +"emplates." +msgstr "" +"Checking this box prevents the template from appearing in the public list of t" +"emplates." + +#: ../../app/views/org_admin/templates/_form.html.erb:25 +#: ../../app/views/org_admin/templates/_show.html.erb:35 +msgid "for internal %{org_name} use only" +msgstr "for internal %{org_name} use only" + +#: ../../app/views/org_admin/templates/_form.html.erb:32 +#: ../../app/views/org_admin/templates/_show.html.erb:13 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:7 +#: ../../app/views/paginable/guidances/_index.html.erb:9 +#: ../../app/views/paginable/templates/_customisable.html.erb:8 +#: ../../app/views/paginable/templates/_index.html.erb:7 +#: ../../app/views/paginable/templates/_organisational.html.erb:14 +msgid "Status" +msgstr "Status" + +#: ../../app/views/org_admin/templates/_form.html.erb:37 +#: ../../app/views/org_admin/templates/_row.html.erb:16 +#: ../../app/views/org_admin/templates/_show.html.erb:26 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:24 +#: ../../app/views/paginable/guidances/_index.html.erb:35 +#: ../../app/views/paginable/templates/_customisable.html.erb:37 +#: ../../app/views/paginable/templates/_organisational.html.erb:42 +msgid "Unpublished" +msgstr "Unpublished" + +#: ../../app/views/org_admin/templates/_form.html.erb:39 +#: ../../app/views/paginable/templates/_history.html.erb:19 +msgid "Draft" +msgstr "Draft" + +#: ../../app/views/org_admin/templates/_form.html.erb:46 +#: ../../app/views/org_admin/templates/_show.html.erb:41 +msgid "Created at" +msgstr "Created at" + +#: ../../app/views/org_admin/templates/_form.html.erb:52 +#: ../../app/views/org_admin/templates/_show.html.erb:43 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:9 +#: ../../app/views/paginable/guidances/_index.html.erb:10 +#: ../../app/views/paginable/templates/_history.html.erb:9 +msgid "Last updated" +msgstr "Last updated" + +#: ../../app/views/org_admin/templates/_form.html.erb:64 +#: ../../app/views/paginable/templates/_publicly_visible.html.erb:10 +msgid "Funder Links" +msgstr "Funder Links" + +#: ../../app/views/org_admin/templates/_form.html.erb:67 +msgid "" +"Add links to funder websites that provide additional information about the req" +"uirements for this template" +msgstr "" +"Add links to funder websites that provide additional information about the req" +"uirements for this template" + +#: ../../app/views/org_admin/templates/_form.html.erb:73 +msgid "Sample Plan Links" +msgstr "Sample Plan Links" + +#: ../../app/views/org_admin/templates/_form.html.erb:76 +msgid "Add links to sample plans if provided by the funder." +msgstr "Add links to sample plans if provided by the funder." + +#: ../../app/views/org_admin/templates/_navigation.html.erb:3 +msgid "Template details" +msgstr "Template details" + +#: ../../app/views/org_admin/templates/_navigation.html.erb:15 +msgid "Add new phase" +msgstr "Add new phase" + +#: ../../app/views/org_admin/templates/_row.html.erb:12 +msgid "This template is published changes but has unpublished changes!" +msgstr "This template is published changes but has unpublished changes!" + +#: ../../app/views/org_admin/templates/_show.html.erb:16 +#: ../../app/views/paginable/templates/_customisable.html.erb:27 +msgid "Original funder template has changed!" +msgstr "Original funder template has changed!" + +#: ../../app/views/org_admin/templates/_show.html.erb:19 +#: ../../app/views/org_admin/templates/_show.html.erb:22 +msgid "Customisations are published" +msgstr "Customisations are published" + +#: ../../app/views/org_admin/templates/_show.html.erb:21 +#: ../../app/views/paginable/templates/_customisable.html.erb:33 +#: ../../app/views/paginable/templates/_organisational.html.erb:38 +msgid "" +"You have unpublished changes! Select \"Publish changes\" in the Actions menu whe" +"n you are ready to make them available to users." +msgstr "" +"You have unpublished changes! Select \"Publish changes\" in the Actions menu whe" +"n you are ready to make them available to users." + +#: ../../app/views/org_admin/templates/_show.html.erb:26 +msgid "Customisations are unpublished" +msgstr "Customisations are unpublished" + +#: ../../app/views/org_admin/templates/_show.html.erb:37 +msgid "available to the public" +msgstr "available to the public" + +#: ../../app/views/org_admin/templates/container.html.erb:5 +#: ../../app/views/org_admin/templates/new.html.erb:3 +msgid "New Template" +msgstr "New Template" + +#: ../../app/views/org_admin/templates/history.html.erb:4 +msgid "Template Customisation History" +msgstr "Template Customisation History" + +#: ../../app/views/org_admin/templates/history.html.erb:4 +msgid "Template History" +msgstr "Template History" + +#: ../../app/views/org_admin/templates/history.html.erb:10 +msgid "" +"Here you can view previously published versions of your template. These can n" +"o longer be modified." +msgstr "" +"Here you can view previously published versions of your template. These can n" +"o longer be modified." + +#: ../../app/views/org_admin/templates/history.html.erb:28 +msgid "This template is new and does not yet have any publication history." +msgstr "This template is new and does not yet have any publication history." + +#: ../../app/views/org_admin/templates/index.html.erb:10 +msgid "" +"If you would like to modify one of the templates below, you must first change " +"your organisation affiliation." +msgstr "" +"If you would like to modify one of the templates below, you must first change " +"your organisation affiliation." + +#: ../../app/views/org_admin/templates/index.html.erb:32 +msgid "" +"If you wish to add an organisational 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 pres" +"ented to users within your organisation when no funder templates apply. If you" +" want to add questions to funder templates use the 'customise template' option" +"s below." +msgstr "" +"If you wish to add an organisational 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 pres" +"ented to users within your organisation when no funder templates apply. If you" +" want to add questions to funder templates use the 'customise template' option" +"s below." + +#: ../../app/views/org_admin/templates/index.html.erb:63 +msgid "Customisable Templates" +msgstr "Customisable Templates" + +#: ../../app/views/org_admin/templates/index.html.erb:80 +#: ../../app/views/org_admin/templates/index.html.erb:93 +msgid "All (%{count})" +msgstr "All (%{count})" + +#: ../../app/views/org_admin/templates/index.html.erb:83 +#: ../../app/views/org_admin/templates/index.html.erb:96 +msgid "Published (%{count})" +msgstr "Published (%{count})" + +#: ../../app/views/org_admin/templates/index.html.erb:86 +#: ../../app/views/org_admin/templates/index.html.erb:99 +msgid "Unpublished (%{count})" +msgstr "Unpublished (%{count})" + +#: ../../app/views/org_admin/templates/index.html.erb:89 +msgid "Not customised (%{count})" +msgstr "Not customised (%{count})" + +#: ../../app/views/org_admin/templates/index.html.erb:118 +msgid "Create a template" +msgstr "Create a template" + +#: ../../app/views/org_admin/users/edit.html.erb:4 +#: ../../app/views/super_admin/users/edit.html.erb:1 +#: ../../app/views/super_admin/users/edit.html.erb:5 +msgid "Editing profile for %{username}" +msgstr "Editing profile for %{username}" + +#: ../../app/views/org_admin/users/edit.html.erb:5 +#: ../../app/views/super_admin/users/edit.html.erb:6 +msgid "View all users" +msgstr "View all users" + +#: ../../app/views/org_admin/users/plans.html.erb:3 +msgid "Plans of %{username}" +msgstr "Plans of %{username}" + +#: ../../app/views/orgs/_departments.html.erb:1 +#: ../../app/views/orgs/admin_edit.html.erb:26 +msgid "Schools/Departments" +msgstr "Schools/Departments" + +#: ../../app/views/orgs/_departments.html.erb:13 +msgid "Create school/department" +msgstr "Create school/department" + +#: ../../app/views/orgs/_external_identifiers.html.erb:5 +#: ../../app/views/paginable/users/_index.html.erb:29 +msgid "Identifiers" +msgstr "Identifiers" + +#: ../../app/views/orgs/_external_identifiers.html.erb:38 +msgid "Please enter your Shibboleth Entity ID" +msgstr "Please enter your Shibboleth Entity ID" + +#: ../../app/views/orgs/_external_identifiers.html.erb:50 +msgid "Organisation Lookup" +msgstr "Organisation Lookup" + +#: ../../app/views/orgs/_external_identifiers.html.erb:69 +msgid "" +"If any of the above identifiers are incorrect or missing, please contact us to have them updated." +msgstr "" +"If any of the above identifiers are incorrect or missing, please contact us to have them updated." + +#: ../../app/views/orgs/_feedback_form.html.erb:3 +#: ../../app/views/orgs/_feedback_form.html.erb:7 +msgid "Request Feedback" +msgstr "Request Feedback" + +#: ../../app/views/orgs/_feedback_form.html.erb:12 +msgid "On" +msgstr "On" + +#: ../../app/views/orgs/_feedback_form.html.erb:16 +msgid "Off" +msgstr "Off" + +#: ../../app/views/orgs/_feedback_form.html.erb:22 +msgid "Request Expert Feedback - Message Displayed on Share Plan Tab:" +msgstr "Request Expert Feedback - Message Displayed on Share Plan Tab:" + +#: ../../app/views/orgs/_feedback_form.html.erb:31 +msgid "Sample Message" +msgstr "Sample Message" + +#: ../../app/views/orgs/_merge_form.html.erb:3 +msgid "Merge Organisations" +msgstr "Merge Organisations" + +#: ../../app/views/orgs/_merge_form.html.erb:7 +msgid "" +"Please select the Organisation that will replace the current organisation: '%{org_name}
'." +msgstr "" +"Please select the Organisation that will replace the current organisation: '%{org_name}
'." + +#: ../../app/views/orgs/_merge_form.html.erb:8 +msgid "" +" Then click the 'analyze' button to review the proposed changes. Note that no " +"changes will take place until you have reviewed and approve of the changes." +msgstr "" +" Then click the 'analyze' button to review the proposed changes. Note that no " +"changes will take place until you have reviewed and approve of the changes." + +#: ../../app/views/orgs/_merge_form.html.erb:18 +msgid "Analyze" +msgstr "Analyze" + +#: ../../app/views/orgs/_profile_form.html.erb:4 +msgid "Links will be displayed next to your organisation's logo" +msgstr "Links will be displayed next to your organisation's logo" + +#: ../../app/views/orgs/_profile_form.html.erb:5 +msgid "" +"This information can only be changed by a system administrator. Contact the He" +"lp Desk if you have questions or to request changes." +msgstr "" +"This information can only be changed by a system administrator. Contact the He" +"lp Desk if you have questions or to request changes." + +#: ../../app/views/orgs/_profile_form.html.erb:21 +msgid "Organisation full name" +msgstr "Organisation full name" + +#: ../../app/views/orgs/_profile_form.html.erb:27 +msgid "Organisation abbreviated name" +msgstr "Organisation abbreviated name" + +#: ../../app/views/orgs/_profile_form.html.erb:38 +msgid "" +"A managed Org is one that can have its own Guidance and/or Templates. An unman" +"aged Org is one that was automatically created by the system when a user enter" +"ed/selected it." +msgstr "" +"A managed Org is one that can have its own Guidance and/or Templates. An unman" +"aged Org is one that was automatically created by the system when a user enter" +"ed/selected it." + +#: ../../app/views/orgs/_profile_form.html.erb:39 +msgid "Managed? (allows Org Admins to access the Admin menu)" +msgstr "Managed? (allows Org Admins to access the Admin menu)" + +#: ../../app/views/orgs/_profile_form.html.erb:51 +msgid "Organization logo" +msgstr "Organization logo" + +#: ../../app/views/orgs/_profile_form.html.erb:59 +msgid "This will remove your organisation's logo" +msgstr "This will remove your organisation's logo" + +#: ../../app/views/orgs/_profile_form.html.erb:60 +msgid "Remove logo" +msgstr "Remove logo" + +#: ../../app/views/orgs/_profile_form.html.erb:62 +#: ../../app/views/orgs/shibboleth_ds.html.erb:34 +#: ../../app/views/plans/new.html.erb:64 ../../app/views/plans/new.html.erb:93 +#: ../../app/views/shared/_sign_in_form.html.erb:23 +msgid "or" +msgstr "or" + +#: ../../app/views/orgs/_profile_form.html.erb:79 +msgid "Organisation URLs" +msgstr "Organisation URLs" + +#: ../../app/views/orgs/_profile_form.html.erb:91 +#: ../../app/views/orgs/_profile_form.html.erb:96 +msgid "Help Desk email" +msgstr "Help Desk email" + +#: ../../app/views/orgs/_profile_form.html.erb:105 +msgid "Administrator contact" +msgstr "Administrator contact" + +#: ../../app/views/orgs/_profile_form.html.erb:110 +msgid "Contact email" +msgstr "Contact email" + +#: ../../app/views/orgs/_profile_form.html.erb:114 +#: ../../app/views/shared/_links.html.erb:35 +msgid "Link text" +msgstr "Link text" + +#: ../../app/views/orgs/_profile_form.html.erb:122 +msgid "Google Analytics Tracker" +msgstr "Google Analytics Tracker" + +#: ../../app/views/orgs/_profile_form.html.erb:128 +msgid "Tracker Code" +msgstr "Tracker Code" + +#: ../../app/views/orgs/_profile_form.html.erb:139 +msgid "Organisation Types" +msgstr "Organisation Types" + +#: ../../app/views/orgs/_profile_form.html.erb:149 +msgid "Institution" +msgstr "Institution" + +#: ../../app/views/orgs/_profile_form.html.erb:162 +msgid "Organisation type(s)" +msgstr "Organisation type(s)" + +#: ../../app/views/orgs/admin_edit.html.erb:9 +#: ../../app/views/super_admin/orgs/new.html.erb:7 +msgid "View all organisations" +msgstr "View all organisations" + +#: ../../app/views/orgs/admin_edit.html.erb:18 +#: ../../app/views/super_admin/orgs/new.html.erb:16 +msgid "Profile information" +msgstr "Profile information" + +#: ../../app/views/orgs/admin_edit.html.erb:22 +#: ../../app/views/plans/_navigation.html.erb:33 +#: ../../app/views/plans/_request_feedback_form.html.erb:19 +#: ../../app/views/static_pages/help.html.erb:45 +msgid "Request feedback" +msgstr "Request feedback" + +#: ../../app/views/orgs/admin_edit.html.erb:31 +#: ../../app/views/super_admin/users/_confirm_merge.html.erb:14 +msgid "Merge" +msgstr "Merge" + +#: ../../app/views/orgs/shibboleth_ds.html.erb:1 +#: ../../app/views/orgs/shibboleth_ds.html.erb:4 +msgid "Find your organisation to sign in" +msgstr "Find your organisation to sign in" + +#: ../../app/views/orgs/shibboleth_ds.html.erb:12 +msgid "Look up your organisation here" +msgstr "Look up your organisation here" + +#: ../../app/views/orgs/shibboleth_ds.html.erb:16 +msgid "Please select one" +msgstr "Please select one" + +#: ../../app/views/orgs/shibboleth_ds.html.erb:30 +#: ../../app/views/usage/_user_statistics.html.erb:76 +msgid "Go" +msgstr "Go" + +#: ../../app/views/orgs/shibboleth_ds.html.erb:36 +msgid "See the full list of participating institutions" +msgstr "See the full list of participating institutions" + +#: ../../app/views/orgs/shibboleth_ds.html.erb:76 +msgid "Organisation not in the list?" +msgstr "Organisation not in the list?" + +#: ../../app/views/orgs/shibboleth_ds.html.erb:78 +msgid "Create an account with any email address" +msgstr "Create an account with any email address" + +#: ../../app/views/paginable/api_clients/_index.html.erb:9 +#: ../../app/views/super_admin/orgs/_analysis.html.erb:57 +msgid "Org" +msgstr "Org" + +#: ../../app/views/paginable/api_clients/_index.html.erb:12 +#: ../../app/views/super_admin/api_clients/_form.html.erb:15 +msgid "Homepage" +msgstr "Homepage" + +#: ../../app/views/paginable/api_clients/_index.html.erb:15 +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:42 +msgid "Contact" +msgstr "Contact" + +#: ../../app/views/paginable/api_clients/_index.html.erb:18 +msgid "Last Accessed" +msgstr "Last Accessed" + +#: ../../app/views/paginable/api_clients/_index.html.erb:30 +#: ../../app/views/super_admin/api_clients/_form.html.erb:59 +msgid "Never" +msgstr "Never" + +#: ../../app/views/paginable/api_clients/_index.html.erb:44 +msgid "" +"You are about to delete '%{client_name}'. They will no longer be able to acces" +"s the API. Are you sure?" +msgstr "" +"You are about to delete '%{client_name}'. They will no longer be able to acces" +"s the API. Are you sure?" + +#: ../../app/views/paginable/contributors/_index.html.erb:57 +msgid "You are about to delete '%{contributor_name}'. Are you sure?" +msgstr "You are about to delete '%{contributor_name}'. Are you sure?" + +#: ../../app/views/paginable/departments/_index.html.erb:5 +#: ../../app/views/paginable/users/_index.html.erb:22 +msgid "School or Department" +msgstr "School or Department" + +#: ../../app/views/paginable/departments/_index.html.erb:6 +msgid "Abbreviated Name or Code" +msgstr "Abbreviated Name or Code" + +#: ../../app/views/paginable/departments/_index.html.erb:28 +msgid "" +"You are about to delete '%{department_name}'. This will affect guidance. Are y" +"ou sure?" +msgstr "" +"You are about to delete '%{department_name}'. This will affect guidance. Are y" +"ou sure?" + +#: ../../app/views/paginable/guidance_groups/_index.html.erb:31 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:48 +#: ../../app/views/paginable/templates/_history.html.erb:42 +#: ../../app/views/paginable/users/_index.html.erb:92 +#: ../../app/views/shared/_create_plan_modal.html.erb:12 +msgid "No" +msgstr "No" + +#: ../../app/views/paginable/guidance_groups/_index.html.erb:33 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:46 +#: ../../app/views/paginable/templates/_history.html.erb:42 +#: ../../app/views/paginable/users/_index.html.erb:92 +#: ../../app/views/shared/_create_plan_modal.html.erb:11 +msgid "Yes" +msgstr "Yes" + +#: ../../app/views/paginable/guidance_groups/_index.html.erb:51 +#: ../../app/views/paginable/guidances/_index.html.erb:57 +#: ../../app/views/paginable/templates/_customisable.html.erb:58 +#: ../../app/views/paginable/templates/_organisational.html.erb:59 +msgid "Unpublish" +msgstr "Unpublish" + +#: ../../app/views/paginable/guidance_groups/_index.html.erb:53 +#: ../../app/views/paginable/guidances/_index.html.erb:59 +#: ../../app/views/paginable/templates/_customisable.html.erb:63 +#: ../../app/views/paginable/templates/_organisational.html.erb:64 +msgid "Publish" +msgstr "Publish" + +#: ../../app/views/paginable/guidance_groups/_index.html.erb:56 +msgid "" +"You are about to delete '%{guidance_group_name}'. This will affect guidance. A" +"re you sure?" +msgstr "" +"You are about to delete '%{guidance_group_name}'. This will affect guidance. A" +"re you sure?" + +#: ../../app/views/paginable/guidances/_index.html.erb:62 +msgid "You are about to delete '%{guidance_summary}'. Are you sure?" +msgstr "You are about to delete '%{guidance_summary}'. Are you sure?" + +#: ../../app/views/paginable/notifications/_index.html.erb:5 +#: ../../app/views/super_admin/notifications/_form.html.erb:15 +msgid "Level" +msgstr "Level" + +#: ../../app/views/paginable/notifications/_index.html.erb:6 +#: ../../app/views/super_admin/notifications/_form.html.erb:40 +msgid "Start" +msgstr "Start" + +#: ../../app/views/paginable/notifications/_index.html.erb:7 +#: ../../app/views/super_admin/notifications/_form.html.erb:48 +msgid "Expiration" +msgstr "Expiration" + +#: ../../app/views/paginable/orgs/_index.html.erb:6 +msgid "Administrator Email" +msgstr "Administrator Email" + +#: ../../app/views/paginable/orgs/_index.html.erb:7 +msgid "Organisation Type(s)" +msgstr "Organisation Type(s)" + +#: ../../app/views/paginable/orgs/_index.html.erb:9 +msgid "Managed" +msgstr "Managed" + +#: ../../app/views/paginable/orgs/_index.html.erb:35 +msgid "You are about to delete '%{org_name}'. Are you sure?" +msgstr "You are about to delete '%{org_name}'. Are you sure?" + +#: ../../app/views/paginable/plans/_index.html.erb:5 +#: ../../app/views/paginable/plans/_org_admin.html.erb:18 +#: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:9 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:5 +#: ../../app/views/paginable/plans/_publicly_visible.html.erb:5 +#: ../../app/views/plans/_show_details.html.erb:4 +msgid "Project Title" +msgstr "Project Title" + +#: ../../app/views/paginable/plans/_index.html.erb:28 +#: ../../app/views/paginable/plans/_org_admin.html.erb:43 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:9 +msgid "Test" +msgstr "Test" + +#: ../../app/views/paginable/plans/_org_admin.html.erb:3 +msgid "" +" The data on the usage dashboard is historical in nature. This means that t" +"he number of records below may not\n" +" match the count shown on the usage dashboard. For example if one of your u" +"sers created a plan in October and\n" +" then removed that plan in November, it would have been included on the usa" +"ge dashboard's total for October but\n" +" would not appear in the list below.\n" +msgstr "" +" The data on the usage dashboard is historical in nature. This means that t" +"he number of records below may not\n" +" match the count shown on the usage dashboard. For example if one of your u" +"sers created a plan in October and\n" +" then removed that plan in November, it would have been included on the usa" +"ge dashboard's total for October but\n" +" would not appear in the list below.\n" + +#: ../../app/views/paginable/plans/_org_admin.html.erb:12 +msgid "" +"Note: You can filter this table by 'Created' dates. Enter the month abbreviati" +"on and a 4 digit year into the search box above.
For example: 'Oct 2019' or" +" 'Jun 2013'." +msgstr "" +"Note: You can filter this table by 'Created' dates. Enter the month abbreviati" +"on and a 4 digit year into the search box above.
For example: 'Oct 2019' or" +" 'Jun 2013'." + +#: ../../app/views/paginable/plans/_org_admin.html.erb:22 +msgid "Created" +msgstr "Created" + +#: +#: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:21 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:73 +#: ../../app/views/paginable/plans/_publicly_visible.html.erb:9 +#: ../../app/views/paginable/templates/_history.html.erb:6 +#: ../../app/views/paginable/templates/_organisational.html.erb:2 +#: ../../app/views/paginable/templates/_publicly_visible.html.erb:7 +#: ../../app/views/plans/_navigation.html.erb:38 +#: ../../app/views/usage/_user_statistics.html.erb:23 +#: ../../app/views/usage/_user_statistics.html.erb:38 +msgid "Download" +msgstr "Download" + +#: +#: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:31 +#: ../../app/views/paginable/plans/_publicly_visible.html.erb:18 +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:47 +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:52 +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:55 +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:60 +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:68 +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:69 +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:74 +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:77 +msgid "Unknown" +msgstr "Unknown" + +#: +#: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:38 +#: ../../app/views/paginable/plans/_publicly_visible.html.erb:23 +#: ../../app/views/paginable/templates/_history.html.erb:27 +#: ../../app/views/paginable/templates/_history.html.erb:34 +#: ../../app/views/paginable/templates/_organisational.html.erb:84 +#: ../../app/views/paginable/templates/_publicly_visible.html.erb:28 +#: ../../app/views/paginable/templates/_publicly_visible.html.erb:35 +msgid "(new window)" +msgstr "(new window)" + +#: ../../app/views/paginable/plans/_privately_visible.html.erb:7 +msgid "Edited" +msgstr "Edited" + +#: ../../app/views/paginable/plans/_privately_visible.html.erb:8 +msgid "Role" +msgstr "Role" + +#: ../../app/views/paginable/plans/_privately_visible.html.erb:11 +msgid "Shared" +msgstr "Shared" + +#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 +#: ../../app/views/plans/_navigation.html.erb:28 +msgid "Share" +msgstr "Share" + +#: ../../app/views/paginable/plans/_privately_visible.html.erb:68 +#: ../../app/views/paginable/templates/_organisational.html.erb:67 +msgid "Copy" +msgstr "Copy" + +#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 +#: ../../app/views/paginable/templates/_history.html.erb:58 +msgid "View" +msgstr "View" + +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 +msgid "" +"Are you sure you wish to remove this plan? Any collaborators will still be abl" +"e to access it." +msgstr "" +"Are you sure you wish to remove this plan? Any collaborators will still be abl" +"e to access it." + +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 +msgid "" +"Are you sure you wish to remove this public plan? This will remove it from the" +" Public DMPs page but any collaborators will still be able to access it." +msgstr "" +"Are you sure you wish to remove this public plan? This will remove it from the" +" Public DMPs page but any collaborators will still be able to access it." + +#: ../../app/views/paginable/plans/_publicly_visible.html.erb:17 +msgid "Not Applicable" +msgstr "Not Applicable" + +#: ../../app/views/paginable/research_outputs/_index.html.erb:13 +msgid "Repository" +msgstr "Repository" + +#: ../../app/views/paginable/research_outputs/_index.html.erb:16 +msgid "Release date" +msgstr "Release date" + +#: ../../app/views/paginable/research_outputs/_index.html.erb:19 +msgid "Access level" +msgstr "Access level" + +#: ../../app/views/paginable/research_outputs/_index.html.erb:55 +msgid "You are about to delete '%{research_output_title}'. Are you sure?" +msgstr "You are about to delete '%{research_output_title}'. Are you sure?" + +#: ../../app/views/paginable/templates/_customisable.html.erb:6 +#: ../../app/views/paginable/templates/_index.html.erb:5 +#: ../../app/views/paginable/templates/_organisational.html.erb:8 +#: ../../app/views/paginable/templates/_publicly_visible.html.erb:6 +msgid "Template Name" +msgstr "Template Name" + +#: ../../app/views/paginable/templates/_customisable.html.erb:9 +#: ../../app/views/paginable/templates/_index.html.erb:8 +#: ../../app/views/paginable/templates/_organisational.html.erb:15 +msgid "Edited Date" +msgstr "Edited Date" + +#: ../../app/views/paginable/templates/_customisable.html.erb:26 +msgid "" +"Select 'Transfer customisation' in the Actions menu to review your customisati" +"on(s) and make any necessary changes. When you are done, you must return to th" +"e Actions menu and publish your customisation(s)." +msgstr "" +"Select 'Transfer customisation' in the Actions menu to review your customisati" +"on(s) and make any necessary changes. When you are done, you must return to th" +"e Actions menu and publish your customisation(s)." + +#: ../../app/views/paginable/templates/_customisable.html.erb:41 +msgid "Not customized" +msgstr "Not customized" + +#: ../../app/views/paginable/templates/_customisable.html.erb:56 +#: ../../app/views/paginable/templates/_organisational.html.erb:57 +msgid "History" +msgstr "History" + +#: ../../app/views/paginable/templates/_customisable.html.erb:61 +#: ../../app/views/paginable/templates/_organisational.html.erb:62 +msgid "Publish changes" +msgstr "Publish changes" + +#: ../../app/views/paginable/templates/_customisable.html.erb:69 +msgid "" +"Are you sure you want to remove your customization of \"%{template_title}\"? Any" +" published versions will become unavailable to users." +msgstr "" +"Are you sure you want to remove your customization of \"%{template_title}\"? Any" +" published versions will become unavailable to users." + +#: ../../app/views/paginable/templates/_history.html.erb:7 +msgid "Version" +msgstr "Version" + +#: ../../app/views/paginable/templates/_history.html.erb:50 +msgid "Edit customizations" +msgstr "Edit customizations" + +#: ../../app/views/paginable/templates/_history.html.erb:52 +msgid "View customizations" +msgstr "View customizations" + +#: ../../app/views/paginable/templates/_organisational.html.erb:76 +msgid "" +"Are you sure you want to remove \"%{template_title}\"? Any published versions wi" +"ll become unavailable to users." +msgstr "" +"Are you sure you want to remove \"%{template_title}\"? Any published versions wi" +"ll become unavailable to users." + +#: ../../app/views/paginable/templates/_organisational.html.erb:90 +#: ../../app/views/shared/_copy_link_modal.html.erb:6 +#: ../../app/views/shared/_copy_link_modal.html.erb:13 +msgid "Copy link" +msgstr "Copy link" + +#: ../../app/views/paginable/templates/_publicly_visible.html.erb:1 +msgid "Sample plans are provided by a funder, an organisation or a trusted party." +msgstr "Sample plans are provided by a funder, an organisation or a trusted party." + +#: ../../app/views/paginable/templates/_publicly_visible.html.erb:8 +msgid "Organisation Name" +msgstr "Organisation Name" + +#: ../../app/views/paginable/templates/_publicly_visible.html.erb:9 +msgid "Last Updated" +msgstr "Last Updated" + +#: ../../app/views/paginable/templates/_publicly_visible.html.erb:11 +#: ../../app/views/plans/new.html.erb:1 ../../app/views/plans/new.html.erb:11 +msgid "Create a new plan" +msgstr "Create a new plan" + +#: ../../app/views/paginable/templates/_publicly_visible.html.erb:13 +msgid "Sample Plans" +msgstr "Sample Plans" + +#: ../../app/views/paginable/templates/_publicly_visible.html.erb:13 +msgid "(if available)" +msgstr "(if available)" + +#: ../../app/views/paginable/templates/_publicly_visible.html.erb:47 +msgid "Copy link to create a new plan" +msgstr "Copy link to create a new plan" + +#: ../../app/views/paginable/templates/_publicly_visible.html.erb:49 +msgid "Requires login" +msgstr "Requires login" + +#: ../../app/views/paginable/users/_index.html.erb:4 +msgid "" +" The data on the usage dashboard is historical in nature. This means that t" +"he number of records below may not\n" +" match the count shown on the usage dashboard. For example if one of your u" +"sers joined in October and then\n" +" moved to a different organization or deactivated their account, they would" +" have been included on the usage\n" +" dashboard's total for October but would not appear in the list below.\n" +msgstr "" +" The data on the usage dashboard is historical in nature. This means that t" +"he number of records below may not\n" +" match the count shown on the usage dashboard. For example if one of your u" +"sers joined in October and then\n" +" moved to a different organization or deactivated their account, they would" +" have been included on the usage\n" +" dashboard's total for October but would not appear in the list below.\n" + +#: ../../app/views/paginable/users/_index.html.erb:13 +msgid "" +"Note: You can filter this table by 'Created date'. Enter the month abbreviatio" +"n and a 4 digit year into the search box above.
For example: 'Oct 2019' or " +"'Jun 2013'." +msgstr "" +"Note: You can filter this table by 'Created date'. Enter the month abbreviatio" +"n and a 4 digit year into the search box above.
For example: 'Oct 2019' or " +"'Jun 2013'." + +#: ../../app/views/paginable/users/_index.html.erb:24 +msgid "Created date" +msgstr "Created date" + +#: ../../app/views/paginable/users/_index.html.erb:25 +msgid "Last activity" +msgstr "Last activity" + +#: ../../app/views/paginable/users/_index.html.erb:46 +msgid "Edit Profile" +msgstr "Edit Profile" + +#: ../../app/views/phases/_edit_plan_answers.html.erb:77 +msgid "Comments & Guidance" +msgstr "Comments & Guidance" + +#: ../../app/views/phases/_overview.html.erb:5 +msgid "Instructions" +msgstr "Instructions" + +#: ../../app/views/plans/_download_form.html.erb:6 +msgid "Format" +msgstr "Format" + +#: ../../app/views/plans/_download_form.html.erb:15 +msgid "Download settings" +msgstr "Download settings" + +#: ../../app/views/plans/_download_form.html.erb:19 +msgid "Select phase to download" +msgstr "Select phase to download" + +#: ../../app/views/plans/_download_form.html.erb:26 +msgid "Optional plan components" +msgstr "Optional plan components" + +#: ../../app/views/plans/_download_form.html.erb:30 +msgid "project details coversheet" +msgstr "project details coversheet" + +#: ../../app/views/plans/_download_form.html.erb:36 +msgid "question text and section headings" +msgstr "question text and section headings" + +#: ../../app/views/plans/_download_form.html.erb:42 +msgid "unanswered questions" +msgstr "unanswered questions" + +#: ../../app/views/plans/_download_form.html.erb:49 +msgid "research outputs" +msgstr "research outputs" + +#: ../../app/views/plans/_download_form.html.erb:57 +msgid "supplementary section(s) not requested by funding organisation" +msgstr "supplementary section(s) not requested by funding organisation" + +#: ../../app/views/plans/_download_form.html.erb:65 +msgid "PDF formatting" +msgstr "PDF formatting" + +#: ../../app/views/plans/_download_form.html.erb:68 +msgid "Font" +msgstr "Font" + +#: ../../app/views/plans/_download_form.html.erb:71 +msgid "Margin (mm)" +msgstr "Margin (mm)" + +#: ../../app/views/plans/_download_form.html.erb:76 +msgid "Face" +msgstr "Face" + +#: ../../app/views/plans/_download_form.html.erb:84 +msgid "Size" +msgstr "Size" + +#: ../../app/views/plans/_download_form.html.erb:92 +msgid "Top" +msgstr "Top" + +#: ../../app/views/plans/_download_form.html.erb:101 +msgid "Bottom" +msgstr "Bottom" + +#: ../../app/views/plans/_download_form.html.erb:110 +msgid "Left" +msgstr "Left" + +#: ../../app/views/plans/_download_form.html.erb:119 +msgid "Right" +msgstr "Right" + +#: ../../app/views/plans/_download_form.html.erb:130 +msgid "" +"Download Plan (new window)%{open_in_new_window_text}" +msgstr "" +"Download Plan (new window)%{open_in_new_window_text}" + +#: ../../app/views/plans/_edit_details.html.erb:14 +#: ../../app/views/plans/_guidance_selection.html.erb:38 +msgid "Select Guidance" +msgstr "Select Guidance" + +#: ../../app/views/plans/_guidance_selection.html.erb:6 +msgid "" +"To help you write your plan, %{application_name} can show you guidance from a " +"variety of organisations." +msgstr "" +"To help you write your plan, %{application_name} can show you guidance from a " +"variety of organisations." + +#: ../../app/views/plans/_guidance_selection.html.erb:9 +msgid "Select up to 6 organisations to see their guidance." +msgstr "Select up to 6 organisations to see their guidance." + +#: ../../app/views/plans/_guidance_selection.html.erb:18 +msgid "Find guidance from additional organisations below" +msgstr "Find guidance from additional organisations below" + +#: ../../app/views/plans/_guidance_selection.html.erb:19 +msgid "See the full list" +msgstr "See the full list" + +#: ../../app/views/plans/_guidance_selection.html.erb:26 +msgid "There is no additional guidance for this template." +msgstr "There is no additional guidance for this template." + +#: ../../app/views/plans/_guidance_selection.html.erb:40 +msgid "" +"To help you write your plan, %{application_name} can show you guidance from a " +"variety of organisations. Please choose up to 6 organisations of the following" +" organisations who offer guidance relevant to your plan." +msgstr "" +"To help you write your plan, %{application_name} can show you guidance from a " +"variety of organisations. Please choose up to 6 organisations of the following" +" organisations who offer guidance relevant to your plan." + +#: ../../app/views/plans/_guidance_selection.html.erb:42 +msgid "Don't forget to save your changes after making your selections." +msgstr "Don't forget to save your changes after making your selections." + +#: ../../app/views/plans/_navigation.html.erb:4 +msgid "Project Details" +msgstr "Project Details" + +#: ../../app/views/plans/_navigation.html.erb:7 +msgid "Contributors" +msgstr "Contributors" + +#: ../../app/views/plans/_navigation.html.erb:11 +msgid "Plan overview" +msgstr "Plan overview" + +#: ../../app/views/plans/_navigation.html.erb:16 +msgid "Write Plan" +msgstr "Write Plan" + +#: ../../app/views/plans/_navigation.html.erb:22 +msgid "Research Outputs" +msgstr "Research Outputs" + +#: ../../app/views/plans/_overview_details.html.erb:9 +msgid "" +"This plan is based on the \"%{template_title}\" template provided by %{org_name}" +"." +msgstr "" +"This plan is based on the \"%{template_title}\" template provided by %{org_name}" +"." + +#: ../../app/views/plans/_overview_details.html.erb:17 +msgid "Template version %{template_version}, published on %{published_date}" +msgstr "Template version %{template_version}, published on %{published_date}" + +#: ../../app/views/plans/_overview_details.html.erb:42 +msgid "%{phase_title} (%{sections_size} %{sections}, %{questions_size} %{questions})" +msgstr "%{phase_title} (%{sections_size} %{sections}, %{questions_size} %{questions})" + +#: ../../app/views/plans/_overview_details.html.erb:43 +msgid "section" +msgid_plural "sections" +msgstr[0] "section" +msgstr[1] "sections" + +#: ../../app/views/plans/_overview_details.html.erb:45 +msgid "question" +msgid_plural "questions" +msgstr[0] "question" +msgstr[1] "questions" + +#: ../../app/views/plans/_progress.html.erb:11 +msgid "answered" +msgstr "answered" + +#: ../../app/views/plans/_project_details.html.erb:4 +msgid "If applying for funding, state the name exactly as in the grant proposal." +msgstr "If applying for funding, state the name exactly as in the grant proposal." + +#: ../../app/views/plans/_project_details.html.erb:5 +msgid "" +"Briefly summarise your research project to help others understand the purposes" +" for which the data are being collected or created." +msgstr "" +"Briefly summarise your research project to help others understand the purposes" +" for which the data are being collected or created." + +#: ../../app/views/plans/_project_details.html.erb:6 +msgid "A pertinent ID as determined by the funder and/or organisation." +msgstr "A pertinent ID as determined by the funder and/or organisation." + +#: ../../app/views/plans/_project_details.html.erb:7 +msgid "" +"Whether there are any potential ethical issues related to data that this DMP d" +"escribes" +msgstr "" +"Whether there are any potential ethical issues related to data that this DMP d" +"escribes" + +#: ../../app/views/plans/_project_details.html.erb:8 +msgid "Description of the ethical issues" +msgstr "Description of the ethical issues" + +#: ../../app/views/plans/_project_details.html.erb:9 +msgid "Link to a protocol from a meeting with an ethics commitee" +msgstr "Link to a protocol from a meeting with an ethics commitee" + +#: ../../app/views/plans/_project_details.html.erb:27 +#: ../../app/views/plans/new.html.erb:38 +msgid "mock project for testing, practice, or educational purposes" +msgstr "mock project for testing, practice, or educational purposes" + +#: ../../app/views/plans/_project_details.html.erb:35 +msgid "Project abstract" +msgstr "Project abstract" + +#: ../../app/views/plans/_project_details.html.erb:47 +msgid "Research domain" +msgstr "Research domain" + +#: ../../app/views/plans/_project_details.html.erb:52 +#: ../../app/views/plans/_project_details.html.erb:173 +#: ../../app/views/research_outputs/_form.html.erb:23 +#: ../../app/views/research_outputs/licenses/_form.html.erb:19 +msgid "- Please select one -" +msgstr "- Please select one -" + +#: ../../app/views/plans/_project_details.html.erb:62 +msgid "Project Start" +msgstr "Project Start" + +#: ../../app/views/plans/_project_details.html.erb:65 +msgid "The estimated date on which you will begin this project." +msgstr "The estimated date on which you will begin this project." + +#: ../../app/views/plans/_project_details.html.erb:68 +msgid "Project End" +msgstr "Project End" + +#: ../../app/views/plans/_project_details.html.erb:71 +msgid "The estimated date on which you will complete this project." +msgstr "The estimated date on which you will complete this project." + +#: ../../app/views/plans/_project_details.html.erb:80 +msgid "Landing page" +msgstr "Landing page" + +#: ../../app/views/plans/_project_details.html.erb:93 +#: ../../app/views/plans/_show_details.html.erb:22 +msgid "ID" +msgstr "ID" + +#: ../../app/views/plans/_project_details.html.erb:114 +msgid "Research outputs may have ethical concerns" +msgstr "Research outputs may have ethical concerns" + +#: ../../app/views/plans/_project_details.html.erb:121 +msgid "Describe any ethical concerns" +msgstr "Describe any ethical concerns" + +#: ../../app/views/plans/_project_details.html.erb:134 +msgid "Ethical protocols" +msgstr "Ethical protocols" + +#: ../../app/views/plans/_project_details.html.erb:167 +msgid "Funding status" +msgstr "Funding status" + +#: ../../app/views/plans/_project_details.html.erb:181 +msgid "Grant number/url" +msgstr "Grant number/url" + +#: ../../app/views/plans/_project_details.html.erb:195 +msgid "Grant number:" +msgstr "Grant number:" + +#: ../../app/views/plans/_project_details.html.erb:199 +msgid "" +"Provide a URL to the award's landing page if possible, if not please provide t" +"he award/grant number." +msgstr "" +"Provide a URL to the award's landing page if possible, if not please provide t" +"he award/grant number." + +#: ../../app/views/plans/_request_feedback_form.html.erb:6 +msgid "Request expert feedback" +msgstr "Request expert feedback" + +#: ../../app/views/plans/_request_feedback_form.html.erb:9 +msgid "" +"Click below to give data management staff at %{owner_org}, the Plan Owner's or" +"g, access to read and comment on your plan." +msgstr "" +"Click below to give data management staff at %{owner_org}, the Plan Owner's or" +"g, access to read and comment on your plan." + +#: ../../app/views/plans/_request_feedback_form.html.erb:17 +msgid "You can continue to edit and download the plan in the interim." +msgstr "You can continue to edit and download the plan in the interim." + +#: ../../app/views/plans/_request_feedback_form.html.erb:23 +msgid "Feedback has been requested." +msgstr "Feedback has been requested." + +#: ../../app/views/plans/_share_form.html.erb:6 +msgid "" +"Co-owner: Has admin-rights to the plan (can invite other users, view the plan," +" answer questions, or comment). Editor: Has edit-rights to the plan (can view " +"the plan, answer questions, or comment). Read Only: Has read-rights to the pla" +"n (can view the plan or comment)" +msgstr "" +"Co-owner: Has admin-rights to the plan (can invite other users, view the plan," +" answer questions, or comment). Editor: Has edit-rights to the plan (can view " +"the plan, answer questions, or comment). Read Only: Has read-rights to the pla" +"n (can view the plan or comment)" + +#: ../../app/views/plans/_share_form.html.erb:8 +msgid "Set plan visibility" +msgstr "Set plan visibility" + +#: ../../app/views/plans/_share_form.html.erb:13 +msgid "" +"Public or organisational visibility is intended for finished plans. You must a" +"nswer at least %{percentage}%% of the questions to enable these options. Note:" +" test plans are set to private visibility by default." +msgstr "" +"Public or organisational visibility is intended for finished plans. You must a" +"nswer at least %{percentage}%% of the questions to enable these options. Note:" +" test plans are set to private visibility by default." + +#: ../../app/views/plans/_share_form.html.erb:21 +msgid "" +"Private: visible to me, specified collaborators and administrators at my organ" +"isation" +msgstr "" +"Private: visible to me, specified collaborators and administrators at my organ" +"isation" + +#: ../../app/views/plans/_share_form.html.erb:29 +#: ../../app/views/user_mailer/plan_visibility.html.erb:12 +msgid "Organisation: anyone at my organisation can view" +msgstr "Organisation: anyone at my organisation can view" + +#: ../../app/views/plans/_share_form.html.erb:37 +msgid "Public: anyone can view" +msgstr "Public: anyone can view" + +#: ../../app/views/plans/_share_form.html.erb:44 +msgid "Manage collaborators" +msgstr "Manage collaborators" + +#: ../../app/views/plans/_share_form.html.erb:45 +msgid "" +"Invite specific people to read, edit, or administer your plan. Invitees will r" +"eceive an email notification that they have access to this plan." +msgstr "" +"Invite specific people to read, edit, or administer your plan. Invitees will r" +"eceive an email notification that they have access to this plan." + +#: ../../app/views/plans/_share_form.html.erb:50 +msgid "Email address" +msgstr "Email address" + +#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:124 +msgid "Permissions" +msgstr "Permissions" + +#: ../../app/views/plans/_share_form.html.erb:91 +msgid "Are you sure?" +msgstr "Are you sure?" + +#: ../../app/views/plans/_share_form.html.erb:102 +msgid "Invite collaborators" +msgstr "Invite collaborators" + +#: ../../app/views/plans/_show_details.html.erb:6 +msgid "Project Abstract" +msgstr "Project Abstract" + +#: ../../app/views/plans/_show_details.html.erb:8 +msgid "Start and End Dates" +msgstr "Start and End Dates" + +#: ../../app/views/plans/_show_details.html.erb:14 +msgid "Grant Number" +msgstr "Grant Number" + +#: ../../app/views/plans/_show_details.html.erb:19 +msgid "Landing Page" +msgstr "Landing Page" + +#: ../../app/views/plans/index.html.erb:8 +msgid "" +"The table below lists the plans that you have created, and that have been shar" +"ed with you by others. You can edit, share, download, make a copy, or remove t" +"hese plans at any time." +msgstr "" +"The table below lists the plans that you have created, and that have been shar" +"ed with you by others. You can edit, share, download, make a copy, or remove t" +"hese plans at any time." + +#: ../../app/views/plans/index.html.erb:10 +msgid "Welcome" +msgstr "Welcome" + +#: ../../app/views/plans/index.html.erb:11 +msgid "You are now ready to create your first DMP." +msgstr "You are now ready to create your first DMP." + +#: ../../app/views/plans/index.html.erb:12 +msgid "Click the 'Create plan' button below to begin." +msgstr "Click the 'Create plan' button below to begin." + +#: ../../app/views/plans/index.html.erb:35 +msgid "%{org_title} Plans" +msgstr "%{org_title} Plans" + +#: ../../app/views/plans/index.html.erb:36 +msgid "" +"The table below lists the plans that users at your organisation have created a" +"nd shared within your organisation. This allows you to download a PDF and view" +" their plans as samples or to discover new research data." +msgstr "" +"The table below lists the plans that users at your organisation have created a" +"nd shared within your organisation. This allows you to download a PDF and view" +" their plans as samples or to discover new research data." + +#: ../../app/views/plans/new.html.erb:3 +msgid "If applying for funding, state the project title exactly as in the proposal." +msgstr "If applying for funding, state the project title exactly as in the proposal." + +#: ../../app/views/plans/new.html.erb:4 +msgid "You must select a research organisation from the list or click the checkbox." +msgstr "You must select a research organisation from the list or click the checkbox." + +#: ../../app/views/plans/new.html.erb:5 +msgid "Please select a valid research organisation from the list." +msgstr "Please select a valid research organisation from the list." + +#: ../../app/views/plans/new.html.erb:6 +msgid "You must select a funder from the list or click the checkbox." +msgstr "You must select a funder from the list or click the checkbox." + +#: ../../app/views/plans/new.html.erb:7 +msgid "Please select a valid funding organisation from the list." +msgstr "Please select a valid funding organisation from the list." + +#: ../../app/views/plans/new.html.erb:14 +msgid "" +"Before you get started, we need some information about your research project t" +"o set you up with the best DMP template for your needs." +msgstr "" +"Before you get started, we need some information about your research project t" +"o set you up with the best DMP template for your needs." + +#: ../../app/views/plans/new.html.erb:23 +msgid "What research project are you planning?" +msgstr "What research project are you planning?" + +#: ../../app/views/plans/new.html.erb:47 +msgid "Select the primary research organisation" +msgstr "Select the primary research organisation" + +#: ../../app/views/plans/new.html.erb:67 +msgid "" +"No research organisation associated with this plan or my research organisation" +" is not listed" +msgstr "" +"No research organisation associated with this plan or my research organisation" +" is not listed" + +#: ../../app/views/plans/new.html.erb:77 +msgid "Select the primary funding organisation" +msgstr "Select the primary funding organisation" + +#: ../../app/views/plans/new.html.erb:96 +msgid "No funder associated with this plan or my funder is not listed" +msgstr "No funder associated with this plan or my funder is not listed" + +#: ../../app/views/plans/new.html.erb:108 +msgid "Which DMP template would you like to use?" +msgstr "Which DMP template would you like to use?" + +#: ../../app/views/plans/new.html.erb:111 +msgid "Please select a template" +msgstr "Please select a template" + +#: ../../app/views/plans/new.html.erb:116 +msgid "We found multiple DMP templates corresponding to your funder." +msgstr "We found multiple DMP templates corresponding to your funder." + +#: ../../app/views/public_pages/plan_index.html.erb:8 +msgid "" +"Public DMPs are plans created using the %{application_name} service and shared" +" publicly by their owners. They are not vetted for quality, completeness, or a" +"dherence to funder guidelines." +msgstr "" +"Public DMPs are plans created using the %{application_name} service and shared" +" publicly by their owners. They are not vetted for quality, completeness, or a" +"dherence to funder guidelines." + +#: ../../app/views/public_pages/plan_index.html.erb:12 +msgid "There are currently no public DMPs." +msgstr "There are currently no public DMPs." + +#: ../../app/views/public_pages/template_index.html.erb:6 +msgid "Templates are provided by a funder, an organisation, or a trusted party." +msgstr "Templates are provided by a funder, an organisation, or a trusted party." + +#: ../../app/views/public_pages/template_index.html.erb:8 +msgid "There are currently no public Templates." +msgstr "There are currently no public Templates." + +#: ../../app/views/questions/_new_edit_question_option_based.html.erb:42 +msgid "Additional Information" +msgstr "Additional Information" + +#: ../../app/views/questions/_preview_question.html.erb:78 +msgid "Comment" +msgstr "Comment" + +#: ../../app/views/questions/_preview_question.html.erb:103 +msgid "Text field" +msgstr "Text field" + +#: ../../app/views/questions/_preview_question.html.erb:106 +msgid "Text area" +msgstr "Text area" + +#: ../../app/views/questions/_preview_question.html.erb:113 +msgid "Not answered yet" +msgstr "Not answered yet" + +#: ../../app/views/research_outputs/_form.html.erb:6 +msgid "" +"Your research output abbreviation can be used as a reference when answering th" +"is plan's questions." +msgstr "" +"Your research output abbreviation can be used as a reference when answering th" +"is plan's questions." + +#: ../../app/views/research_outputs/_form.html.erb:7 +msgid "" +"Any data that could potentially identify a specific individual. Any informatio" +"n that can be used to distinguish one person from another and can be used for " +"de-anonymizing anonymous data can be considered personally identifiable data. " +"(From https://codata.org/rdm-glossary/personally-identifiable-information/)" +msgstr "" +"Any data that could potentially identify a specific individual. Any informatio" +"n that can be used to distinguish one person from another and can be used for " +"de-anonymizing anonymous data can be considered personally identifiable data. " +"(From https://codata.org/rdm-glossary/personally-identifiable-information/)" + +#: ../../app/views/research_outputs/_form.html.erb:8 +msgid "" +"Repositories preserve, manage, and provide access to many types of digital mat" +"erials in a variety of formats. Materials in online repositories are curated t" +"o enable search, discovery, and reuse. There must be sufficient control for th" +"e digital material to be authentic, reliable, accessible and usable on a conti" +"nuing basis. (From https://codata.org/rdm-glossary/personally-identifiable-inf" +"ormation/)" +msgstr "" +"Repositories preserve, manage, and provide access to many types of digital mat" +"erials in a variety of formats. Materials in online repositories are curated t" +"o enable search, discovery, and reuse. There must be sufficient control for th" +"e digital material to be authentic, reliable, accessible and usable on a conti" +"nuing basis. (From https://codata.org/rdm-glossary/personally-identifiable-inf" +"ormation/)" + +#: ../../app/views/research_outputs/_form.html.erb:16 +msgid "Please describe the output type" +msgstr "Please describe the output type" + +#: ../../app/views/research_outputs/_form.html.erb:27 +msgid "Research output type" +msgstr "Research output type" + +#: ../../app/views/research_outputs/_form.html.erb:44 +msgid "Abbreviation" +msgstr "Abbreviation" + +#: ../../app/views/research_outputs/_form.html.erb:73 +#: ../../app/views/shared/export/_plan_outputs.erb:26 +msgid "May contain sensitive data?" +msgstr "May contain sensitive data?" + +#: ../../app/views/research_outputs/_form.html.erb:80 +msgid "May contain personally identifiable information?" +msgstr "May contain personally identifiable information?" + +#: ../../app/views/research_outputs/_form.html.erb:90 +msgid "Intended repositories" +msgstr "Intended repositories" + +#: ../../app/views/research_outputs/_form.html.erb:99 +msgid "Add a repository" +msgstr "Add a repository" + +#: ../../app/views/research_outputs/_form.html.erb:114 +msgid "Metadata standards" +msgstr "Metadata standards" + +#: ../../app/views/research_outputs/_form.html.erb:122 +msgid "Add a metadata standard" +msgstr "Add a metadata standard" + +#: ../../app/views/research_outputs/_form.html.erb:136 +#: ../../app/views/shared/export/_plan_outputs.erb:20 +msgid "Anticipated release date" +msgstr "Anticipated release date" + +#: ../../app/views/research_outputs/_form.html.erb:140 +#: ../../app/views/shared/export/_plan_outputs.erb:21 +msgid "Initial access level" +msgstr "Initial access level" + +#: ../../app/views/research_outputs/_form.html.erb:158 +#: ../../app/views/research_outputs/_form.html.erb:164 +#: ../../app/views/shared/export/_plan_outputs.erb:23 +msgid "Anticipated file size" +msgstr "Anticipated file size" + +#: ../../app/views/research_outputs/_form.html.erb:170 +msgid "File size units" +msgstr "File size units" + +#: ../../app/views/research_outputs/edit.html.erb:12 +msgid "Editing %{research_output_title}" +msgstr "Editing %{research_output_title}" + +#: ../../app/views/research_outputs/edit.html.erb:13 +#: ../../app/views/research_outputs/new.html.erb:13 +msgid "View all research outputs" +msgstr "View all research outputs" + +#: ../../app/views/research_outputs/index.html.erb:14 +msgid "Please list your anticipated research output(s)." +msgstr "Please list your anticipated research output(s)." + +#: ../../app/views/research_outputs/index.html.erb:30 +msgid "Add a research output" +msgstr "Add a research output" + +#: ../../app/views/research_outputs/licenses/_form.html.erb:20 +#: ../../app/views/research_outputs/licenses/_form.html.erb:25 +msgid "Initial license" +msgstr "Initial license" + +#: ../../app/views/research_outputs/licenses/_form.html.erb:31 +msgid "For guidance on selecting a license:" +msgstr "For guidance on selecting a license:" + +#: ../../app/views/research_outputs/new.html.erb:12 +msgid "New research output" +msgstr "New research output" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:5 +msgid "" +"Refine your search to discipline specific, institutional or generalist reposit" +"ories. When the use of domain-specific repositories is not available, generali" +"st repositories are a good option and accept all types of data regardless of t" +"ype, format, content, or discipline." +msgstr "" +"Refine your search to discipline specific, institutional or generalist reposit" +"ories. When the use of domain-specific repositories is not available, generali" +"st repositories are a good option and accept all types of data regardless of t" +"ype, format, content, or discipline." + +#: ../../app/views/research_outputs/repositories/_search.html.erb:6 +msgid "Select a subject area to refine your search." +msgstr "Select a subject area to refine your search." + +#: ../../app/views/research_outputs/repositories/_search.html.erb:12 +msgid "- Select a subject area -" +msgstr "- Select a subject area -" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:14 +msgid "Select a subject area" +msgstr "Select a subject area" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:22 +msgid "- Select a repository type -" +msgstr "- Select a repository type -" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:24 +msgid "Select a repository type" +msgstr "Select a repository type" + +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:20 +msgid "Click to view repositories related to %{subject}" +msgstr "Click to view repositories related to %{subject}" + +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:32 +msgid "More info" +msgstr "More info" + +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:37 +msgid "Repository URL" +msgstr "Repository URL" + +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:51 +msgid "Data access" +msgstr "Data access" + +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:54 +msgid "Persistent identifier type" +msgstr "Persistent identifier type" + +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:57 +msgid "Policies" +msgstr "Policies" + +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:66 +msgid "Data upload" +msgstr "Data upload" + +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:73 +msgid "Provider type" +msgstr "Provider type" + +#: ../../app/views/research_outputs/repositories/_search_result.html.erb:76 +msgid "Repository type" +msgstr "Repository type" + +#: ../../app/views/shared/_create_account_form.html.erb:8 +msgid "Last Name" +msgstr "Last Name" + +#: ../../app/views/shared/_create_account_form.html.erb:39 +msgid "I accept the" +msgstr "I accept the" + +#: ../../app/views/shared/_create_account_form.html.erb:40 +msgid "terms and conditions" +msgstr "terms and conditions" + +#: ../../app/views/shared/_create_plan_modal.html.erb:8 +msgid "Would you like to create a plan based on the \"%{name}\" template?" +msgstr "Would you like to create a plan based on the \"%{name}\" template?" + +#: ../../app/views/shared/_links.html.erb:7 +msgid "Links" +msgstr "Links" + +#: ../../app/views/shared/_links.html.erb:8 +msgid "Up to " +msgstr "Up to " + +#: ../../app/views/shared/_links.html.erb:28 +msgid "URL" +msgstr "URL" + +#: ../../app/views/shared/_links.html.erb:42 +msgid "Remove this link" +msgstr "Remove this link" + +#: ../../app/views/shared/_links.html.erb:53 +msgid "+ Add an additional URL" +msgstr "+ Add an additional URL" + +#: ../../app/views/shared/_search.html.erb:15 +msgid "Only Show Admins" +msgstr "Only Show Admins" + +#: ../../app/views/shared/_search.html.erb:20 +#: ../../app/views/super_admin/users/edit.html.erb:96 +msgid "Search" +msgstr "Search" + +#: ../../app/views/shared/_sign_in_form.html.erb:11 +msgid "Forgot password?" +msgstr "Forgot password?" + +#: ../../app/views/shared/_sign_in_form.html.erb:16 +msgid "Remember email" +msgstr "Remember email" + +#: ../../app/views/shared/_sign_in_form.html.erb:27 +msgid "Sign in with your institutional credentials" +msgstr "Sign in with your institutional credentials" + +#: ../../app/views/shared/_table_filter.html.erb:1 +msgid "Remove the filter" +msgstr "Remove the filter" + +#: ../../app/views/shared/_table_filter.html.erb:6 +msgid "Filter plans" +msgstr "Filter plans" + +#: ../../app/views/shared/export/_plan.erb:55 +#: ../../app/views/shared/export/_plan_txt.erb:67 +msgid "Question not answered." +msgstr "Question not answered." + +#: ../../app/views/shared/export/_plan_coversheet.erb:2 +msgid "Plan Overview" +msgstr "Plan Overview" + +#: ../../app/views/shared/export/_plan_coversheet.erb:3 +#: ../../app/views/shared/export/_plan_txt.erb:82 +msgid "A Data Management Plan created using %{application_name}" +msgstr "A Data Management Plan created using %{application_name}" + +#: ../../app/views/shared/export/_plan_coversheet.erb:17 +#: ../../app/views/shared/export/_plan_txt.erb:12 +msgid "Data Manager: " +msgstr "Data Manager: " + +#: ../../app/views/shared/export/_plan_coversheet.erb:29 +msgid "Funder: " +msgstr "Funder: " + +#: ../../app/views/shared/export/_plan_coversheet.erb:38 +msgid "ORCID iD: " +msgstr "ORCID iD: " + +#: ../../app/views/shared/export/_plan_coversheet.erb:47 +msgid "ID: " +msgstr "ID: " + +#: ../../app/views/shared/export/_plan_coversheet.erb:51 +msgid "Start date: " +msgstr "Start date: " + +#: ../../app/views/shared/export/_plan_coversheet.erb:55 +msgid "End date: " +msgstr "End date: " + +#: ../../app/views/shared/export/_plan_coversheet.erb:61 +msgid "Grant number / URL: " +msgstr "Grant number / URL: " + +#: ../../app/views/shared/export/_plan_coversheet.erb:68 +#: ../../app/views/shared/export/_plan_txt.erb:35 +msgid "" +" The above plan creator(s) have agreed that others may use as much of the text" +" of this plan as they would like in their own plans, and customise it as neces" +"sary. You do not need to credit the creator(s) as the source of the language u" +"sed, but using any of the plan's text does not imply that the creator(s) endor" +"se, or have any relationship to, your project or proposal" +msgstr "" +" The above plan creator(s) have agreed that others may use as much of the text" +" of this plan as they would like in their own plans, and customise it as neces" +"sary. You do not need to credit the creator(s) as the source of the language u" +"sed, but using any of the plan's text does not imply that the creator(s) endor" +"se, or have any relationship to, your project or proposal" + +#: ../../app/views/shared/export/_plan_outputs.erb:3 +msgid "Planned Research Outputs" +msgstr "Planned Research Outputs" + +#: ../../app/views/shared/export/_plan_outputs.erb:14 +msgid "Planned research output details" +msgstr "Planned research output details" + +#: ../../app/views/shared/export/_plan_outputs.erb:22 +msgid "Intended repository(ies)" +msgstr "Intended repository(ies)" + +#: ../../app/views/shared/export/_plan_outputs.erb:24 +msgid "License" +msgstr "License" + +#: ../../app/views/shared/export/_plan_outputs.erb:25 +msgid "Metadata standard(s)" +msgstr "Metadata standard(s)" + +#: ../../app/views/shared/export/_plan_outputs.erb:27 +msgid "May contain PII?" +msgstr "May contain PII?" + +#: ../../app/views/shared/org_selectors/_combined.html.erb:15 +#: ../../app/views/shared/org_selectors/_external_only.html.erb:13 +#: ../../app/views/shared/org_selectors/_local_only.html.erb:13 +msgid "Begin typing to see a list of suggestions." +msgstr "Begin typing to see a list of suggestions." + +#: ../../app/views/shared/org_selectors/_combined.html.erb:50 +#: ../../app/views/shared/org_selectors/_external_only.html.erb:45 +msgid "" +"A new entry will be created for the organisation you have named above. Please " +"double check that your organisation does not appear in the list in a slightly " +"different form." +msgstr "" +"A new entry will be created for the organisation you have named above. Please " +"double check that your organisation does not appear in the list in a slightly " +"different form." + +#: ../../app/views/shared/org_selectors/_local_only.html.erb:48 +msgid "The name you entered was not one of the listed suggestions!" +msgstr "The name you entered was not one of the listed suggestions!" + +#: ../../app/views/static_pages/about_us.html.erb:1 +#: ../../app/views/static_pages/about_us.html.erb:4 +msgid "About %{application_name}" +msgstr "About %{application_name}" + +#: ../../app/views/static_pages/about_us.html.erb:11 +msgid "" +"Scholarly researchers today are increasingly required to engage in a range of " +"data management activities to comply with organisational policies, or as a pre" +"condition for publication or grant funding. To aid researchers in creating eff" +"ective Data Management Plans (DMPs), we have worked closely with funders and u" +"niversities to develop an online application: DMPRoadmap. The tool provides de" +"tailed guidance and links to general and organisational resources and walks a " +"researcher through the process of generating a comprehensive plan tailored to " +"specific DMP requirements." +msgstr "" +"Scholarly researchers today are increasingly required to engage in a range of " +"data management activities to comply with organisational policies, or as a pre" +"condition for publication or grant funding. To aid researchers in creating eff" +"ective Data Management Plans (DMPs), we have worked closely with funders and u" +"niversities to develop an online application: DMPRoadmap. The tool provides de" +"tailed guidance and links to general and organisational resources and walks a " +"researcher through the process of generating a comprehensive plan tailored to " +"specific DMP requirements." + +#: ../../app/views/static_pages/about_us.html.erb:13 +msgid "DMP Background" +msgstr "DMP Background" + +#: ../../app/views/static_pages/about_us.html.erb:15 +msgid "" +"The Digital Curation Centre and UC3 team at the California Digital Library hav" +"e developed and delivered tools for data management planning since the advent " +"of open data policies in 2011. " +msgstr "" +"The Digital Curation Centre and UC3 team at the California Digital Library hav" +"e developed and delivered tools for data management planning since the advent " +"of open data policies in 2011. " + +#: ../../app/views/static_pages/about_us.html.erb:16 +msgid " (DCC-UK) and " +msgstr " (DCC-UK) and " + +#: ../../app/views/static_pages/about_us.html.erb:17 +msgid "" +"(CDL-US) are now established in our national contexts as the resource for rese" +"archers seeking guidance in creating DMPs. We have worked together from the ou" +"tset to share experiences, but with the explosion of interest in both of our t" +"ools across the globe we formalized our partnership to co-develop and maintain" +" a single open-source platform for DMPs. By working together we can extend our" +" reach, keep costs down, and move best practices forward, allowing us to parti" +"cipate in a truly global open science ecosystem." +msgstr "" +"(CDL-US) are now established in our national contexts as the resource for rese" +"archers seeking guidance in creating DMPs. We have worked together from the ou" +"tset to share experiences, but with the explosion of interest in both of our t" +"ools across the globe we formalized our partnership to co-develop and maintain" +" a single open-source platform for DMPs. By working together we can extend our" +" reach, keep costs down, and move best practices forward, allowing us to parti" +"cipate in a truly global open science ecosystem." + +#: ../../app/views/static_pages/about_us.html.erb:19 +msgid "" +"The new platform will be separate from the services each of our teams runs on " +"top of it. Our shared goal: provide a combined DMPRoadmap platform as a core i" +"nfrastructure for DMPs. Future enhancements will focus on making DMPs machine " +"actionable so please continue sharing your use cases." +msgstr "" +"The new platform will be separate from the services each of our teams runs on " +"top of it. Our shared goal: provide a combined DMPRoadmap platform as a core i" +"nfrastructure for DMPs. Future enhancements will focus on making DMPs machine " +"actionable so please continue sharing your use cases." + +#: ../../app/views/static_pages/about_us.html.erb:21 +msgid "We invite you to peruse the DMPRoadmap GitHub wiki to learn how to " +msgstr "We invite you to peruse the DMPRoadmap GitHub wiki to learn how to " + +#: ../../app/views/static_pages/about_us.html.erb:22 +msgid "" +"get involved (new window)%{open_in_new_window_text}" +msgstr "" +"get involved (new window)%{open_in_new_window_text}" + +#: ../../app/views/static_pages/about_us.html.erb:28 +msgid " in the project. You can also report bugs and request new features via " +msgstr " in the project. You can also report bugs and request new features via " + +#: ../../app/views/static_pages/about_us.html.erb:29 +msgid "GitHub Issues" +msgstr "GitHub Issues" + +#: ../../app/views/static_pages/about_us.html.erb:31 +msgid "Getting Started" +msgstr "Getting Started" + +#: ../../app/views/static_pages/about_us.html.erb:33 +msgid "If you have an account please sign in and start creating or editing your DMP." +msgstr "If you have an account please sign in and start creating or editing your DMP." + +#: ../../app/views/static_pages/about_us.html.erb:34 +msgid "If you do not have a %{application_name} account, click on" +msgstr "If you do not have a %{application_name} account, click on" + +#: ../../app/views/static_pages/about_us.html.erb:34 +msgid "Sign up" +msgstr "Sign up" + +#: ../../app/views/static_pages/about_us.html.erb:34 +msgid "on the homepage." +msgstr "on the homepage." + +#: ../../app/views/static_pages/about_us.html.erb:35 +msgid "page for guidance." +msgstr "page for guidance." + +#: ../../app/views/static_pages/about_us.html.erb:35 +msgid "Please visit the" +msgstr "Please visit the" + +#: ../../app/views/static_pages/about_us.html.erb:37 +msgid "Customising for your Organisation" +msgstr "Customising for your Organisation" + +#: ../../app/views/static_pages/about_us.html.erb:39 +msgid "" +"Organisations can customise the tool to highlight local requirements, resource" +"s, and services. Organisational templates can be added to address local DMP re" +"quirements, and additional sections and questions can be included in funder te" +"mplates. Users from participating organisations that configure the tool for si" +"ngle sign-on can log in with their own organisational accounts." +msgstr "" +"Organisations can customise the tool to highlight local requirements, resource" +"s, and services. Organisational templates can be added to address local DMP re" +"quirements, and additional sections and questions can be included in funder te" +"mplates. Users from participating organisations that configure the tool for si" +"ngle sign-on can log in with their own organisational accounts." + +#: ../../app/views/static_pages/help.html.erb:11 +msgid "" +"When you log in to %{application_name} you will be directed to the 'My Dashboa" +"rd' page. From here you can edit, share, download, copy or remove any of your " +"plans. You will also see plans that have been shared with you by others." +msgstr "" +"When you log in to %{application_name} you will be directed to the 'My Dashboa" +"rd' page. From here you can edit, share, download, copy or remove any of your " +"plans. You will also see plans that have been shared with you by others." + +#: ../../app/views/static_pages/help.html.erb:13 +msgid "Create a plan" +msgstr "Create a plan" + +#: ../../app/views/static_pages/help.html.erb:15 +msgid "" +"To create a plan, click the 'Create plan' button from the 'My Dashboard' page " +"or the top menu. Select options from the menus and tickboxes to determine what" +" questions and guidance you should be presented with. Confirm your selection b" +"y clicking 'Create plan.'" +msgstr "" +"To create a plan, click the 'Create plan' button from the 'My Dashboard' page " +"or the top menu. Select options from the menus and tickboxes to determine what" +" questions and guidance you should be presented with. Confirm your selection b" +"y clicking 'Create plan.'" + +#: ../../app/views/static_pages/help.html.erb:17 +msgid "Write your plan" +msgstr "Write your plan" + +#: ../../app/views/static_pages/help.html.erb:19 +msgid "" +"The tabbed interface allows you to navigate through different functions when e" +"diting your plan." +msgstr "" +"The tabbed interface allows you to navigate through different functions when e" +"diting your plan." + +#: ../../app/views/static_pages/help.html.erb:21 +msgid "'Project Details' includes basic administrative details." +msgstr "'Project Details' includes basic administrative details." + +#: ../../app/views/static_pages/help.html.erb:22 +msgid "" +"'Plan Overview' tells you what template and guidance your plan is based on and" +" gives you an overview to the questions that you will be asked." +msgstr "" +"'Plan Overview' tells you what template and guidance your plan is based on and" +" gives you an overview to the questions that you will be asked." + +#: ../../app/views/static_pages/help.html.erb:23 +msgid "" +"The following tab(s) present the questions to answer. There may be more than o" +"ne tab if your funder or university asks different sets of questions at differ" +"ent stages e.g. at grant application and post-award." +msgstr "" +"The following tab(s) present the questions to answer. There may be more than o" +"ne tab if your funder or university asks different sets of questions at differ" +"ent stages e.g. at grant application and post-award." + +#: ../../app/views/static_pages/help.html.erb:24 +msgid "'Share' allows you to invite others to read or contribute to your plan." +msgstr "'Share' allows you to invite others to read or contribute to your plan." + +#: ../../app/views/static_pages/help.html.erb:25 +msgid "" +"'Download' allows you to download your plan in various formats. This may be us" +"eful if you need to submit your plan as part of a grant application." +msgstr "" +"'Download' allows you to download your plan in various formats. This may be us" +"eful if you need to submit your plan as part of a grant application." + +#: ../../app/views/static_pages/help.html.erb:28 +msgid "" +"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." +msgstr "" +"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." + +#: ../../app/views/static_pages/help.html.erb:30 +msgid "" +"Guidance is displayed in the right-hand panel. If you need more guidance or fi" +"nd there is too much, you can make adjustments on the ‘Project Details’ tab." +msgstr "" +"Guidance is displayed in the right-hand panel. If you need more guidance or fi" +"nd there is too much, you can make adjustments on the ‘Project Details’ tab." + +#: ../../app/views/static_pages/help.html.erb:32 +msgid "Share plans" +msgstr "Share plans" + +#: ../../app/views/static_pages/help.html.erb:34 +msgid "" +"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 radio buttons and click to 'Add collaborator.' Adjust permissions or r" +"emove collaborators at any time via the drop-down options." +msgstr "" +"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 radio buttons and click to 'Add collaborator.' Adjust permissions or r" +"emove collaborators at any time via the drop-down options." + +#: ../../app/views/static_pages/help.html.erb:36 +msgid "The ‘Share’ tab is also where you can set your plan visibility." +msgstr "The ‘Share’ tab is also where you can set your plan visibility." + +#: ../../app/views/static_pages/help.html.erb:38 +msgid "Private: restricted to you and your collaborators." +msgstr "Private: restricted to you and your collaborators." + +#: ../../app/views/static_pages/help.html.erb:39 +msgid "Organisational: anyone at your organisation can view your plan." +msgstr "Organisational: anyone at your organisation can view your plan." + +#: ../../app/views/static_pages/help.html.erb:40 +msgid "Public: anyone can view your plan in the Public DMPs list." +msgstr "Public: anyone can view your plan in the Public DMPs list." + +#: ../../app/views/static_pages/help.html.erb:43 +msgid "" +"By default all new and test plans will be set to ‘Private’ visibility. ‘Public" +"’ and ‘Organisational’ visibility are intended for finished plans. You must an" +"swer at least 50% of the questions to enable these options." +msgstr "" +"By default all new and test plans will be set to ‘Private’ visibility. ‘Public" +"’ and ‘Organisational’ visibility are intended for finished plans. You must an" +"swer at least 50% of the questions to enable these options." + +#: ../../app/views/static_pages/help.html.erb:46 +msgid "" +"There may also be an option to request feedback on your plan. This is availabl" +"e when research support staff at your organisation have enabled this service. " +"Click to ‘Request feedback’ and your local administrators will be alerted to y" +"our request. Their comments will be visible in the ‘Comments’ field adjacent t" +"o each question. You will be notified by email when an administrator provides " +"feedback." +msgstr "" +"There may also be an option to request feedback on your plan. This is availabl" +"e when research support staff at your organisation have enabled this service. " +"Click to ‘Request feedback’ and your local administrators will be alerted to y" +"our request. Their comments will be visible in the ‘Comments’ field adjacent t" +"o each question. You will be notified by email when an administrator provides " +"feedback." + +#: ../../app/views/static_pages/help.html.erb:49 +msgid "Download plans" +msgstr "Download plans" + +#: ../../app/views/static_pages/help.html.erb:50 +msgid "" +"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 form" +"at you would like to view/download your plan in and click to download. You can" +" also adjust the formatting (font type, size and margins) for PDF files, which" +" may be helpful if working to page limits." +msgstr "" +"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 form" +"at you would like to view/download your plan in and click to download. You can" +" also adjust the formatting (font type, size and margins) for PDF files, which" +" may be helpful if working to page limits." + +#: ../../app/views/static_pages/privacy.html.erb:10 +msgid "Information about you: how we use it and with whom we share it" +msgstr "Information about you: how we use it and with whom we share it" + +#: ../../app/views/static_pages/privacy.html.erb:11 +msgid "" +"The information you provide will be used by the %{org_name} to offer you acces" +"s to and personalisation of the %{application_name} service." +msgstr "" +"The information you provide will be used by the %{org_name} to offer you acces" +"s to and personalisation of the %{application_name} service." + +#: ../../app/views/static_pages/privacy.html.erb:13 +msgid "" +"The %{org_name} processes the personal data of %{application_name} users in or" +"der to deliver and improve the %{application_name} service in a customised man" +"ner and to ensure each user receives relevant information." +msgstr "" +"The %{org_name} processes the personal data of %{application_name} users in or" +"der to deliver and improve the %{application_name} service in a customised man" +"ner and to ensure each user receives relevant information." + +#: ../../app/views/static_pages/privacy.html.erb:15 +msgid "" +"The processing of your personal data by the %{org_name} is necessary for pursu" +"ing the following legitimate interests:" +msgstr "" +"The processing of your personal data by the %{org_name} is necessary for pursu" +"ing the following legitimate interests:" + +#: ../../app/views/static_pages/privacy.html.erb:18 +msgid "" +"To provide access to the %{application_name} service and personalisation of yo" +"ur user experience e.g. provision of relevant templates and guidance for your " +"organisation." +msgstr "" +"To provide access to the %{application_name} service and personalisation of yo" +"ur user experience e.g. provision of relevant templates and guidance for your " +"organisation." + +#: ../../app/views/static_pages/privacy.html.erb:20 +msgid "" +"To keep you up to date with news about %{application_name} such as new feature" +"s or improvements, or changes to our Privacy Policy." +msgstr "" +"To keep you up to date with news about %{application_name} such as new feature" +"s or improvements, or changes to our Privacy Policy." + +#: ../../app/views/static_pages/privacy.html.erb:22 +msgid "For network and information security purposes." +msgstr "For network and information security purposes." + +#: ../../app/views/static_pages/privacy.html.erb:24 +msgid "" +"We will hold the personal data you provided us for as long as you continue usi" +"ng the %{application_name} service. Your personal data can be removed from thi" +"s service upon request to the %{application_name} team within a period of 30 d" +"ays." +msgstr "" +"We will hold the personal data you provided us for as long as you continue usi" +"ng the %{application_name} service. Your personal data can be removed from thi" +"s service upon request to the %{application_name} team within a period of 30 d" +"ays." + +#: ../../app/views/static_pages/privacy.html.erb:26 +msgid "" +"If you have any questions, please contact the %{application_name} team at: %{helpdesk_email}" +msgstr "" +"If you have any questions, please contact the %{application_name} team at: %{helpdesk_email}" + +#: ../../app/views/static_pages/privacy.html.erb:30 +msgid "" +"This statement was last revised on %{revdate} and may be revised at any time w" +"ith prior notice." +msgstr "" +"This statement was last revised on %{revdate} and may be revised at any time w" +"ith prior notice." + +#: ../../app/views/static_pages/termsuse.html.erb:12 +msgid "" +"(CDL) are consortia supported by the University of Edinburgh and the Universit" +"y of California, respectively. Our primary constituency is the research commun" +"ity. We provide services to the UK, US and international higher education sect" +"or. " +msgstr "" +"(CDL) are consortia supported by the University of Edinburgh and the Universit" +"y of California, respectively. Our primary constituency is the research commun" +"ity. We provide services to the UK, US and international higher education sect" +"or. " + +#: ../../app/views/static_pages/termsuse.html.erb:16 +msgid "" +"%{application_name} ('the tool', 'the system') is a tool developed by the DCC " +"and CDL as a shared resource for the research community. It is hosted at CDL b" +"y the University of California Curation Center." +msgstr "" +"%{application_name} ('the tool', 'the system') is a tool developed by the DCC " +"and CDL as a shared resource for the research community. It is hosted at CDL b" +"y the University of California Curation Center." + +#: ../../app/views/static_pages/termsuse.html.erb:18 +msgid "" +"

Your personal details and consent notice

\n" +"\n" +"

In order to help identify and administer your account with %{applicat" +"ion_name}, we need to store your name and email address. We may also use it to" +" contact you to obtain feedback on your use of the tool, or to inform you of t" +"he latest developments or releases. The information may be transferred between" +" the DCC and CDL but only for the following legitimate DCC and CDL purposes: m" +"arketing, improving our services and informing you of relevant content and eve" +"nts. We will not sell, rent, or trade any personal information you provide to " +"us.\n" +"\n" +"\n" +" By using this system, you consent to the collection, retention, and us" +"e of your personal information in accordance with the above. You have the righ" +"t to ask us not to process your personal details for marketing purposes.

\n" +"\n" +"

Privacy policy

\n" +"\n" +"

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 mainta" +"ining the service - system administrators at DCC and CDL. We compile anonymize" +"d, automated, and aggregated information from plans, but we will not directly " +"access, make use of, or share your content with anyone else without your permi" +"ssion. Authorized officers of your home organisation may access your plans for" +" specific purposes - for example, to track compliance with funder/organisation" +"al requirements, to calculate storage requirements, or to assess demand for da" +"ta management services across disciplines.

\n" +"\n" +"

Freedom of Information

\n" +"\n" +"

DCC and CDL hold your plans on your behalf, but they are your propert" +"y and responsibility. Any FOIA applicants will be referred back to your home o" +"rganisation.

\n" +"\n" +"

Passwords

\n" +"

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

\n" +"\n" +"

Cookies

\n" +"\n" +"

Please note that %{application_name} uses Cookies. Further informatio" +"n about Cookies and how we use them is available on the main DCC website (new window)%{open_in_new_window_text}.<" +"/p>\n" +"\n" +"

Third party APIs

\n" +"\n" +"

Certain features on this website utilize third party services and API" +"s such as InCommon/Shibboleth or third party hosting of common JavaScript libr" +"aries or web fonts. Information used by an external service is governed by the" +" privacy policy of that service.

\n" +"\n" +"

Revisions

\n" +"\n" +"

This statement was last revised on October 5, 2017 and may be revised" +" at any time. Use of the tool indicates that you understand and agree to these" +" terms and conditions.

" +msgstr "" +"

Your personal details and consent notice

\n" +"\n" +"

In order to help identify and administer your account with %{applicat" +"ion_name}, we need to store your name and email address. We may also use it to" +" contact you to obtain feedback on your use of the tool, or to inform you of t" +"he latest developments or releases. The information may be transferred between" +" the DCC and CDL but only for the following legitimate DCC and CDL purposes: m" +"arketing, improving our services and informing you of relevant content and eve" +"nts. We will not sell, rent, or trade any personal information you provide to " +"us.\n" +"\n" +"\n" +" By using this system, you consent to the collection, retention, and us" +"e of your personal information in accordance with the above. You have the righ" +"t to ask us not to process your personal details for marketing purposes.

\n" +"\n" +"

Privacy policy

\n" +"\n" +"

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 mainta" +"ining the service - system administrators at DCC and CDL. We compile anonymize" +"d, automated, and aggregated information from plans, but we will not directly " +"access, make use of, or share your content with anyone else without your permi" +"ssion. Authorized officers of your home organisation may access your plans for" +" specific purposes - for example, to track compliance with funder/organisation" +"al requirements, to calculate storage requirements, or to assess demand for da" +"ta management services across disciplines.

\n" +"\n" +"

Freedom of Information

\n" +"\n" +"

DCC and CDL hold your plans on your behalf, but they are your propert" +"y and responsibility. Any FOIA applicants will be referred back to your home o" +"rganisation.

\n" +"\n" +"

Passwords

\n" +"

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

\n" +"\n" +"

Cookies

\n" +"\n" +"

Please note that %{application_name} uses Cookies. Further informatio" +"n about Cookies and how we use them is available on the main DCC website (new window)%{open_in_new_window_text}.<" +"/p>\n" +"\n" +"

Third party APIs

\n" +"\n" +"

Certain features on this website utilize third party services and API" +"s such as InCommon/Shibboleth or third party hosting of common JavaScript libr" +"aries or web fonts. Information used by an external service is governed by the" +" privacy policy of that service.

\n" +"\n" +"

Revisions

\n" +"\n" +"

This statement was last revised on October 5, 2017 and may be revised" +" at any time. Use of the tool indicates that you understand and agree to these" +" terms and conditions.

" + +#: ../../app/views/super_admin/api_clients/_form.html.erb:29 +msgid "Contact Name" +msgstr "Contact Name" + +#: ../../app/views/super_admin/api_clients/_form.html.erb:33 +msgid "Contact Email" +msgstr "Contact Email" + +#: ../../app/views/super_admin/api_clients/_form.html.erb:47 +msgid "Client ID" +msgstr "Client ID" + +#: ../../app/views/super_admin/api_clients/_form.html.erb:51 +msgid "Client Secret" +msgstr "Client Secret" + +#: ../../app/views/super_admin/api_clients/_form.html.erb:58 +msgid "Last accessed on" +msgstr "Last accessed on" + +#: ../../app/views/super_admin/api_clients/_form.html.erb:70 +msgid "Refresh client ID and secret" +msgstr "Refresh client ID and secret" + +#: ../../app/views/super_admin/api_clients/_form.html.erb:74 +msgid "Email credentials to contact" +msgstr "Email credentials to contact" + +#: ../../app/views/super_admin/api_clients/_form.html.erb:83 +msgid "Are you sure you want to delete the API client: \"%{name}\"" +msgstr "Are you sure you want to delete the API client: \"%{name}\"" + +#: ../../app/views/super_admin/api_clients/edit.html.erb:1 +msgid "Editing API client" +msgstr "Editing API client" + +#: ../../app/views/super_admin/api_clients/edit.html.erb:3 +msgid "Editing API Client" +msgstr "Editing API Client" + +#: ../../app/views/super_admin/api_clients/edit.html.erb:4 +#: ../../app/views/super_admin/api_clients/new.html.erb:4 +msgid "View all API clients" +msgstr "View all API clients" + +#: ../../app/views/super_admin/api_clients/email_credentials.js.erb:1 +msgid "The credentials have been sent to %{email}." +msgstr "The credentials have been sent to %{email}." + +#: ../../app/views/super_admin/api_clients/index.html.erb:1 +#: ../../app/views/super_admin/api_clients/index.html.erb:6 +msgid "API Clients" +msgstr "API Clients" + +#: ../../app/views/super_admin/api_clients/index.html.erb:8 +msgid "Create Api Client" +msgstr "Create Api Client" + +#: ../../app/views/super_admin/api_clients/new.html.erb:1 +msgid "New API client" +msgstr "New API client" + +#: ../../app/views/super_admin/api_clients/new.html.erb:3 +msgid "New API Client" +msgstr "New API Client" + +#: ../../app/views/super_admin/api_clients/refresh_credentials.js.erb:1 +msgid "Successfully regenerated the client credentials." +msgstr "Successfully regenerated the client credentials." + +#: ../../app/views/super_admin/api_clients/refresh_credentials.js.erb:1 +msgid "Unable to regenerate the client credentials." +msgstr "Unable to regenerate the client credentials." + +#: ../../app/views/super_admin/notifications/_form.html.erb:20 +msgid "" +"Info: Simple information message, displayed in blue.
Warning: warning message, for signaling something unusual, displa" +"yed in orange.
Danger: error message, for anything critic" +"al, displayed in red" +msgstr "" +"Info: Simple information message, displayed in blue.
Warning: warning message, for signaling something unusual, displa" +"yed in orange.
Danger: error message, for anything critic" +"al, displayed in red" + +#: ../../app/views/super_admin/notifications/_form.html.erb:27 +msgid "Dismissable" +msgstr "Dismissable" + +#: ../../app/views/super_admin/notifications/_form.html.erb:57 +msgid "Body" +msgstr "Body" + +#: ../../app/views/super_admin/notifications/_form.html.erb:72 +msgid "Are you sure you want to delete the notification \"%{title}\"" +msgstr "Are you sure you want to delete the notification \"%{title}\"" + +#: ../../app/views/super_admin/notifications/edit.html.erb:1 +#: ../../app/views/super_admin/notifications/edit.html.erb:5 +msgid "Editing Notification" +msgstr "Editing Notification" + +#: ../../app/views/super_admin/notifications/edit.html.erb:6 +#: ../../app/views/super_admin/notifications/new.html.erb:4 +msgid "View all notifications" +msgstr "View all notifications" + +#: ../../app/views/super_admin/notifications/index.html.erb:10 +msgid "+ Add New Notification" +msgstr "+ Add New Notification" + +#: ../../app/views/super_admin/notifications/new.html.erb:1 +msgid "New notification" +msgstr "New notification" + +#: ../../app/views/super_admin/notifications/new.html.erb:3 +msgid "New Notification" +msgstr "New Notification" + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:9 +msgid "Merging '%{from_org_name}' into '%{to_org_name}'" +msgstr "Merging '%{from_org_name}' into '%{to_org_name}'" + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:11 +msgid "Summary:" +msgstr "Summary:" + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:12 +msgid "" +"Counts of '%{to_org_name}' records before and after a merge with %{from_org_na" +"me}." +msgstr "" +"Counts of '%{to_org_name}' records before and after a merge with %{from_org_na" +"me}." + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:17 +#: ../../app/views/super_admin/orgs/_analysis.html.erb:44 +msgid "Record Type" +msgstr "Record Type" + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:18 +msgid "'%{to_org_name}' Count - before merge" +msgstr "'%{to_org_name}' Count - before merge" + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:19 +msgid "'%{to_org_name}' Count - after merge" +msgstr "'%{to_org_name}' Count - after merge" + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:38 +msgid "Details:" +msgstr "Details:" + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:39 +msgid "" +"The table below shows the specific changes that will occur during the merge pr" +"ocess. Once the merge is complete, '%{from_org_name}' will be deleted. You can" +" then consolidate/correct any merge issues (e.g. remove any departments that w" +"ere duplicated)" +msgstr "" +"The table below shows the specific changes that will occur during the merge pr" +"ocess. Once the merge is complete, '%{from_org_name}' will be deleted. You can" +" then consolidate/correct any merge issues (e.g. remove any departments that w" +"ere duplicated)" + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:45 +msgid "%{from_org_name} - Before" +msgstr "%{from_org_name} - Before" + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:46 +msgid "%{to_org_name} - Before" +msgstr "%{to_org_name} - Before" + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:61 +msgid "The following attributes will be updated" +msgstr "The following attributes will be updated" + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:91 +msgid "" +"Warning: The changes proposed above will be committed to the database. '%{org_" +"name}' will then be deleted." +msgstr "" +"Warning: The changes proposed above will be committed to the database. '%{org_" +"name}' will then be deleted." + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:92 +msgid "These changes cannot be undone! Do not proceed unless you are certain." +msgstr "These changes cannot be undone! Do not proceed unless you are certain." + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:93 +msgid "" +"You may find it helpful to make a note of the expected number of records for e" +"ach category that will be merged before continuing." +msgstr "" +"You may find it helpful to make a note of the expected number of records for e" +"ach category that will be merged before continuing." + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:95 +msgid "" +"Warning: '%{from_org_name}' has Plans that are currently in the review process" +". The Org admins may not be able to see these plans after the merge!" +msgstr "" +"Warning: '%{from_org_name}' has Plans that are currently in the review process" +". The Org admins may not be able to see these plans after the merge!" + +#: ../../app/views/super_admin/orgs/_analysis.html.erb:97 +msgid "Merge records" +msgstr "Merge records" + +#: ../../app/views/super_admin/orgs/index.html.erb:8 +msgid "Create Organisation" +msgstr "Create Organisation" + +#: ../../app/views/super_admin/orgs/merge_analyze.js.erb:7 +msgid "" +"Something went wrong and we were unable to analyze a merge between these two o" +"rganisations." +msgstr "" +"Something went wrong and we were unable to analyze a merge between these two o" +"rganisations." + +#: ../../app/views/super_admin/orgs/new.html.erb:4 +msgid "New organisation" +msgstr "New organisation" + +#: ../../app/views/super_admin/themes/_form.html.erb:17 +msgid "Are you sure you want to delete the theme \"%{title}\"?" +msgstr "Are you sure you want to delete the theme \"%{title}\"?" + +#: ../../app/views/super_admin/themes/edit.html.erb:3 +#: ../../app/views/super_admin/themes/new.html.erb:3 +msgid "View all themes" +msgstr "View all themes" + +#: ../../app/views/super_admin/themes/index.html.erb:10 +msgid "+ Add New Theme" +msgstr "+ Add New Theme" + +#: ../../app/views/super_admin/themes/new.html.erb:2 +msgid "New theme" +msgstr "New theme" + +#: ../../app/views/super_admin/users/_confirm_merge.html.erb:2 +msgid "" +"
The selected user's content will be merged into the account for %{user_ema" +"il}.
The selected account will then be removed" +msgstr "" +"
The selected user's content will be merged into the account for %{user_ema" +"il}.
The selected account will then be removed" + +#: ../../app/views/super_admin/users/edit.html.erb:63 +msgid "Archive" +msgstr "Archive" + +#: ../../app/views/super_admin/users/edit.html.erb:64 +msgid "" +"You are about to archive %{user_name}. This will remove their personal inform" +"ation, but retain their plans, answers, and comments. They will be unable to " +"sign-in. Are you sure?" +msgstr "" +"You are about to archive %{user_name}. This will remove their personal inform" +"ation, but retain their plans, answers, and comments. They will be unable to " +"sign-in. Are you sure?" + +#: ../../app/views/super_admin/users/edit.html.erb:81 +msgid "Merge Accounts" +msgstr "Merge Accounts" + +#: ../../app/views/super_admin/users/edit.html.erb:85 +msgid "First, search for a user by email, then select them from the list." +msgstr "First, search for a user by email, then select them from the list." + +#: ../../app/views/template_exports/template_export.docx.erb:29 +#: ../../app/views/template_exports/template_export.pdf.erb:73 +msgid "default" +msgstr "default" + +#: ../../app/views/template_exports/template_export.docx.erb:39 +#: ../../app/views/template_exports/template_export.pdf.erb:81 +msgid "Example Answer" +msgstr "Example Answer" + +#: ../../app/views/usage/_plans_created_chart.html.erb:11 +msgid "There is no data available for plans created yet." +msgstr "There is no data available for plans created yet." + +#: ../../app/views/usage/_template_statistics.html.erb:3 +msgid "No. plans created based off your templates" +msgstr "No. plans created based off your templates" + +#: ../../app/views/usage/_template_statistics_accordion.html.erb:11 +msgid "Statistics on your Templates" +msgstr "Statistics on your Templates" + +#: ../../app/views/usage/_total_usage.html.erb:7 +msgid "Total users" +msgstr "Total users" + +#: ../../app/views/usage/_total_usage.html.erb:11 +msgid "Total plans" +msgstr "Total plans" + +#: ../../app/views/usage/_total_usage.html.erb:15 +msgid "Excluding Test Plans" +msgstr "Excluding Test Plans" + +#: ../../app/views/usage/_total_usage.html.erb:29 +msgid "csv download field separator" +msgstr "csv download field separator" + +#: ../../app/views/usage/_total_usage.html.erb:37 +msgid "Download global usage" +msgstr "Download global usage" + +#: ../../app/views/usage/_total_usage.html.erb:44 +msgid "Download Monthly Usage" +msgstr "Download Monthly Usage" + +#: ../../app/views/usage/_user_statistics.html.erb:4 +msgid "" +"The graphs display new users and plans for your organisation over the past yea" +"r. You can download a CSV report for each graph." +msgstr "" +"The graphs display new users and plans for your organisation over the past yea" +"r. You can download a CSV report for each graph." + +#: ../../app/views/usage/_user_statistics.html.erb:12 +msgid "" +"Move the mouse pointer over the bars of a chart to see numbers. Click on the b" +"ar to see the list of these users/plans to interrogate statistics in more deta" +"il" +msgstr "" +"Move the mouse pointer over the bars of a chart to see numbers. Click on the b" +"ar to see the list of these users/plans to interrogate statistics in more deta" +"il" + +#: ../../app/views/usage/_user_statistics.html.erb:19 +msgid "No. users joined during last year" +msgstr "No. users joined during last year" + +#: ../../app/views/usage/_user_statistics.html.erb:34 +msgid "No. plans during last year" +msgstr "No. plans during last year" + +#: ../../app/views/usage/_user_statistics.html.erb:57 +msgid "No. plans by template" +msgstr "No. plans by template" + +#: ../../app/views/usage/_user_statistics.html.erb:67 +msgid "Time period" +msgstr "Time period" + +#: ../../app/views/usage/_user_statistics.html.erb:85 +msgid "Download all" +msgstr "Download all" + +#: ../../app/views/usage/_user_statistics_accordion.html.erb:11 +msgid "Statistics on your Users" +msgstr "Statistics on your Users" + +#: ../../app/views/usage/_users_joined_chart.html.erb:11 +msgid "There is no data available for users joined yet." +msgstr "There is no data available for users joined yet." + +#: ../../app/views/usage/index.html.erb:1 +#: ../../app/views/usage/index.html.erb:5 +msgid "Usage statistics" +msgstr "Usage statistics" + +#: ../../app/views/user_mailer/_email_signature.html.erb:16 +msgid "You may change your notification preferences on your profile page. " +msgstr "You may change your notification preferences on your profile page. " + +#: ../../app/views/user_mailer/admin_privileges.html.erb:2 +#: ../../app/views/user_mailer/plan_visibility.html.erb:2 +#: ../../app/views/user_mailer/sharing_notification.html.erb:2 +msgid "Hello %{username}" +msgstr "Hello %{username}" + +#: ../../app/views/user_mailer/admin_privileges.html.erb:6 +msgid "You have been granted administrator privileges in %{tool_name}:" +msgstr "You have been granted administrator privileges in %{tool_name}:" + +#: ../../app/views/user_mailer/admin_privileges.html.erb:13 +msgid "You have been revoked administrator privileges in %{tool_name}." +msgstr "You have been revoked administrator privileges in %{tool_name}." + +#: ../../app/views/user_mailer/admin_privileges.html.erb:17 +msgid "" +"More information about administering the %{tool_name} for users at your organi" +"sation is available at the %{help_url}." +msgstr "" +"More information about administering the %{tool_name} for users at your organi" +"sation is available at the %{help_url}." + +#: ../../app/views/user_mailer/api_credentials.html.erb:2 +msgid "Hello %{name}," +msgstr "Hello %{name}," + +#: ../../app/views/user_mailer/api_credentials.html.erb:8 +msgid "Please use the following credentials when accessing the %{tool_name} API." +msgstr "Please use the following credentials when accessing the %{tool_name} API." + +#: ../../app/views/user_mailer/api_credentials.html.erb:23 +msgid "Please refer to the API documentation at: %{api_documentation_url}" +msgstr "Please refer to the API documentation at: %{api_documentation_url}" + +#: ../../app/views/user_mailer/api_credentials.html.erb:29 +msgid "" +"Do not share these credentials. They for use with the %{external_application} " +"application. If you do share your credentials with another application we rese" +"rve the right to revoke your access to the API." +msgstr "" +"Do not share these credentials. They for use with the %{external_application} " +"application. If you do share your credentials with another application we rese" +"rve the right to revoke your access to the API." + +#: ../../app/views/user_mailer/api_credentials.html.erb:34 +msgid "" +"If you did not request access to the %{tool_name} API or did not request for y" +"our credentials to be renewed, please contact us at %{helpdesk_email}" +msgstr "" +"If you did not request access to the %{tool_name} API or did not request for y" +"our credentials to be renewed, please contact us at %{helpdesk_email}" + +#: ../../app/views/user_mailer/feedback_complete.html.erb:2 +msgid "Hello %{recipient_name}" +msgstr "Hello %{recipient_name}" + +#: ../../app/views/user_mailer/feedback_complete.html.erb:5 +msgid "" +"%{commenter} has finished providing feedback on the plan \"%{link_html}\". Comm" +"ents can be found in the 'Write plan' tab on the right side of the page (Guida" +"nce/Comments)." +msgstr "" +"%{commenter} has finished providing feedback on the plan \"%{link_html}\". Comm" +"ents can be found in the 'Write plan' tab on the right side of the page (Guida" +"nce/Comments)." + +#: ../../app/views/user_mailer/feedback_notification.html.erb:2 +msgid "Hello %{user_name}," +msgstr "Hello %{user_name}," + +#: ../../app/views/user_mailer/feedback_notification.html.erb:6 +msgid "" +"%{requestor} has requested feedback on a plan %{link_html}. To add comments, p" +"lease visit the \"Plans\" page under the Admin menu in %{tool_name} and open the" +" plan." +msgstr "" +"%{requestor} has requested feedback on a plan %{link_html}. To add comments, p" +"lease visit the \"Plans\" page under the Admin menu in %{tool_name} and open the" +" plan." + +#: ../../app/views/user_mailer/feedback_notification.html.erb:17 +msgid "Alternatively, you can click the link below:" +msgstr "Alternatively, you can click the link below:" + +#: ../../app/views/user_mailer/new_comment.html.erb:5 +msgid "" +"%{commenter_name} has commented on your plan %{plan_title}. To view the commen" +"ts, follow the link to the DMP below, or navigate to the plan via My Dashboard" +" page in %{tool_name}." +msgstr "" +"%{commenter_name} has commented on your plan %{plan_title}. To view the commen" +"ts, follow the link to the DMP below, or navigate to the plan via My Dashboard" +" page in %{tool_name}." + +#: ../../app/views/user_mailer/new_comment.html.erb:10 +msgid "Below is a summary of the sections and questions which have comments." +msgstr "Below is a summary of the sections and questions which have comments." + +#: ../../app/views/user_mailer/new_comment.html.erb:11 +msgid "" +"You can see the comments in the right-hand panel, adjacent to the guidance for" +" each question." +msgstr "" +"You can see the comments in the right-hand panel, adjacent to the guidance for" +" each question." + +#: ../../app/views/user_mailer/new_comment.html.erb:15 +msgid "DMP: %{phase_link}" +msgstr "DMP: %{phase_link}" + +#: ../../app/views/user_mailer/new_comment.html.erb:18 +msgid "Section name: %{section_title}" +msgstr "Section name: %{section_title}" + +#: ../../app/views/user_mailer/new_comment.html.erb:21 +msgid "Question: %{question_number}" +msgstr "Question: %{question_number}" + +#: ../../app/views/user_mailer/permissions_change_notification.html.erb:2 +msgid "Hello %{recepientname}" +msgstr "Hello %{recepientname}" + +#: ../../app/views/user_mailer/permissions_change_notification.html.erb:5 +msgid "" +"Your permissions relating to %{plan_title} have changed. You now have %{type} " +"access. This means you can %{placeholder1} %{placeholder2}" +msgstr "" +"Your permissions relating to %{plan_title} have changed. You now have %{type} " +"access. This means you can %{placeholder1} %{placeholder2}" + +#: ../../app/views/user_mailer/plan_access_removed.html.erb:2 +msgid "Hello " +msgstr "Hello " + +#: ../../app/views/user_mailer/plan_access_removed.html.erb:5 +msgid "Your access to " +msgstr "Your access to " + +#: ../../app/views/user_mailer/plan_access_removed.html.erb:5 +msgid " has been removed by " +msgstr " has been removed by " + +#: ../../app/views/user_mailer/plan_visibility.html.erb:5 +msgid "The plan %{plan_title} had its visibility changed to %{plan_visibility}." +msgstr "The plan %{plan_title} had its visibility changed to %{plan_visibility}." + +#: ../../app/views/user_mailer/plan_visibility.html.erb:9 +msgid "Visibility definitions:" +msgstr "Visibility definitions:" + +#: ../../app/views/user_mailer/plan_visibility.html.erb:11 +msgid "Private: restricted to me and my collaborators" +msgstr "Private: restricted to me and my collaborators" + +#: ../../app/views/user_mailer/plan_visibility.html.erb:13 +msgid "Public: anyone can view on the web" +msgstr "Public: anyone can view on the web" + +#: ../../app/views/user_mailer/plan_visibility.html.erb:17 +msgid "" +"If you have questions pertaining to this action, please visit the My Dashboard" +" page in %{tool_name}" +msgstr "" +"If you have questions pertaining to this action, please visit the My Dashboard" +" page in %{tool_name}" + +#: ../../app/views/user_mailer/question_answered.html.erb:2 +msgid "Hello %{recipient_name}," +msgstr "Hello %{recipient_name}," + +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " to " +msgstr " to " + +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " based on the template " +msgstr " based on the template " + +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " is creating a Data Management Plan and has answered " +msgstr " is creating a Data Management Plan and has answered " + +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " in a plan called " +msgstr " in a plan called " + +#: ../../app/views/user_mailer/sharing_notification.html.erb:5 +msgid "" +"Your colleague %{inviter_name} has invited you to contribute to \n" +" their Data Management Plan in %{tool_name}" +msgstr "" +"Your colleague %{inviter_name} has invited you to contribute to \n" +" their Data Management Plan in %{tool_name}" + +#: ../../app/views/user_mailer/welcome_notification.html.erb:2 +msgid "Welcome to %{tool_name}, %{username}" +msgstr "Welcome to %{tool_name}, %{username}" + +#: ../../app/views/user_mailer/welcome_notification.html.erb:5 +msgid "" +"%{tool_name} will help you to develop your Data Management Plan. If you have a" +"ny queries or feedback as you use the tool, please contact us at %{helpdesk_em" +"ail} or visit %{contact_us}" +msgstr "" +"%{tool_name} will help you to develop your Data Management Plan. If you have a" +"ny queries or feedback as you use the tool, please contact us at %{helpdesk_em" +"ail} or visit %{contact_us}" + +#: ../../app/views/user_mailer/welcome_notification.html.erb:13 +msgid "You may change your notification preferences on your profile page." +msgstr "You may change your notification preferences on your profile page." + +#: ../../app/views/users/_admin_grant_permissions.html.erb:9 +msgid "Editing privileges for %{username}" +msgstr "Editing privileges for %{username}" + +#: ../../app/views/users/_admin_grant_permissions.html.erb:19 +msgid "" +"Allows the user to assign permissions to other users within the same organisat" +"ion. Users can only assign permissions they own themselves" +msgstr "" +"Allows the user to assign permissions to other users within the same organisat" +"ion. Users can only assign permissions they own themselves" + +#: ../../app/views/users/_admin_grant_permissions.html.erb:23 +msgid "" +"Allows the user to create new organisational templates, edit existing ones and" +" customise funder templates" +msgstr "" +"Allows the user to create new organisational templates, edit existing ones and" +" customise funder templates" + +#: ../../app/views/users/_admin_grant_permissions.html.erb:27 +msgid "Allows the user to create and edit guidance" +msgstr "Allows the user to create and edit guidance" + +#: ../../app/views/users/_admin_grant_permissions.html.erb:31 +msgid "" +"Provides the user with an API token and grants rights to harvest information f" +"rom the tool" +msgstr "" +"Provides the user with an API token and grants rights to harvest information f" +"rom the tool" + +#: ../../app/views/users/_admin_grant_permissions.html.erb:33 +msgid "Use API" +msgstr "Use API" + +#: ../../app/views/users/_admin_grant_permissions.html.erb:35 +msgid "" +"Allows the user to amend the organisation details (name, URL etc) and add basi" +"c branding such as the logo" +msgstr "" +"Allows the user to amend the organisation details (name, URL etc) and add basi" +"c branding such as the logo" + +#: ../../app/views/users/_admin_grant_permissions.html.erb:39 +msgid "Allows the user to review plans submitted by organisational users" +msgstr "Allows the user to review plans submitted by organisational users" + +#: ../../app/views/users/_admin_grant_permissions.html.erb:41 +msgid "Review plans" +msgstr "Review plans" + +#: ../../app/views/users/_admin_grant_permissions.html.erb:51 +msgid "Allows the user to create new organisations" +msgstr "Allows the user to create new organisations" + +#: ../../app/views/users/_admin_grant_permissions.html.erb:53 +msgid "Add Organisations" +msgstr "Add Organisations" + +#: ../../app/views/users/_admin_grant_permissions.html.erb:55 +msgid "Allows the user to manage organisation affiliation" +msgstr "Allows the user to manage organisation affiliation" + +#: ../../app/views/users/_admin_grant_permissions.html.erb:57 +msgid "Manage organisation affiliation" +msgstr "Manage organisation affiliation" + +#: ../../app/views/users/_admin_grant_permissions.html.erb:59 +msgid "Allows the user to grant API access to organisations." +msgstr "Allows the user to grant API access to organisations." + +#: ../../app/views/users/_admin_grant_permissions.html.erb:61 +msgid "Grant API access" +msgstr "Grant API access" + +#: ../../app/views/users/_notification_preferences.html.erb:6 +msgid "Select all" +msgstr "Select all" + +#: ../../app/views/users/_notification_preferences.html.erb:7 +msgid "Deselect all" +msgstr "Deselect all" + +#: ../../app/views/users/_notification_preferences.html.erb:13 +msgid "A new comment has been added to my DMP" +msgstr "A new comment has been added to my DMP" + +#: ../../app/views/users/_notification_preferences.html.erb:18 +msgid "A plan has been shared with me" +msgstr "A plan has been shared with me" + +#: ../../app/views/users/_notification_preferences.html.erb:23 +msgid "Admin privileges granted to me" +msgstr "Admin privileges granted to me" + +#: ../../app/views/users/_notification_preferences.html.erb:29 +msgid "Feedback has been requested for my DMP" +msgstr "Feedback has been requested for my DMP" + +#: ../../app/views/users/_notification_preferences.html.erb:34 +msgid "Feedback has been provided for my DMP" +msgstr "Feedback has been provided for my DMP" + +#: ../../app/views/users/_notification_preferences.html.erb:43 +msgid "My DMP's visibility has changed" +msgstr "My DMP's visibility has changed" + +#: ../../app/views/users/admin_index.html.erb:1 +#: ../../app/views/users/admin_index.html.erb:5 +msgid "User accounts" +msgstr "User accounts" + +#: ../../app/views/users/admin_index.html.erb:12 +msgid "" +"Below is a list of users registered for your organisation. You can\n" +" sort the data by each field." +msgstr "" +"Below is a list of users registered for your organisation. You can\n" +" sort the data by each field." + +#: ../../app/views/users/admin_index.html.erb:22 +msgid "Download users" +msgstr "Download users" + +#: ../../app/views/users/refresh_token.js.erb:1 +msgid "Unable to regenerate your API token." +msgstr "Unable to regenerate your API token." + +#: ../../app/views/users/refresh_token.js.erb:1 +msgid "Successfully regenerate your API token." +msgstr "Successfully regenerate your API token." + +#: i18n_placeholders.rb:4 +msgid "activerecord.errors.messages.record_invalid" +msgstr "activerecord.errors.messages.record_invalid" + +#: i18n_placeholders.rb:6 +msgid "activerecord.errors.models.user.attributes.current_password.invalid" +msgstr "activerecord.errors.models.user.attributes.current_password.invalid" + +#: i18n_placeholders.rb:8 +msgid "activerecord.errors.models.user.attributes.email.blank" +msgstr "activerecord.errors.models.user.attributes.email.blank" + +#: i18n_placeholders.rb:10 +msgid "activerecord.errors.models.user.attributes.password.blank" +msgstr "activerecord.errors.models.user.attributes.password.blank" + +#: i18n_placeholders.rb:12 +msgid "activerecord.errors.models.user.attributes.password_confirmation.confirmation" +msgstr "activerecord.errors.models.user.attributes.password_confirmation.confirmation" diff --git a/config/locale/en_CA/LC_MESSAGES/app.mo b/config/locale/en_CA/LC_MESSAGES/app.mo index 5b531deb7aed9d68b4d016acc9b1b849a9cd01e9..be3cfc431d0676d7792d14607d83795e3f0c2fb4 100644 GIT binary patch delta 102 zcmeyy(#bl(Mz)cWf#CoH0|P4%J25dZ7y@YzAk7D)t0qQPi@Ep)1m!2DoYMh7y@ZiAk7D)(, 2022. # msgid "" msgstr "" -"Project-Id-Version: app 1.0\n" +"Project-Id-Version: DMPRoadmap-Development 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2022-10-25 16:02+0000\n" -"PO-Revision-Date: 2022-10-25 18:02+0200\n" +"POT-Creation-Date: 2022-11-30 14:11-0500\n" +"PO-Revision-Date: 2022-11-30 20:11+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: English\n" "Language: en_CA\n" @@ -259,7 +259,7 @@ msgstr "" #: ../../app/controllers/contributors_controller.rb:72 #: ../../app/controllers/guidance_groups_controller.rb:55 #: ../../app/controllers/guidances_controller.rb:75 -#: ../../app/controllers/notes_controller.rb:89 +#: ../../app/controllers/notes_controller.rb:88 #: ../../app/controllers/org_admin/departments_controller.rb:50 #: ../../app/controllers/org_admin/sections_controller.rb:103 #: ../../app/controllers/org_admin/templates_controller.rb:205 @@ -279,7 +279,7 @@ msgstr "" #: ../../app/controllers/contributors_controller.rb:74 #: ../../app/controllers/guidance_groups_controller.rb:57 #: ../../app/controllers/guidances_controller.rb:77 -#: ../../app/controllers/notes_controller.rb:107 +#: ../../app/controllers/notes_controller.rb:106 #: ../../app/controllers/org_admin/departments_controller.rb:52 #: ../../app/controllers/org_admin/sections_controller.rb:105 #: ../../app/controllers/org_admin/templates_controller.rb:210 @@ -295,7 +295,7 @@ msgid "save" msgstr "" #: ../../app/controllers/contributors_controller.rb:84 -#: ../../app/controllers/notes_controller.rb:131 +#: ../../app/controllers/notes_controller.rb:130 #: ../../app/controllers/org_admin/templates_controller.rb:238 #: ../../app/controllers/research_outputs_controller.rb:74 #: ../../app/controllers/super_admin/orgs_controller.rb:94 @@ -303,7 +303,7 @@ msgid "removed" msgstr "" #: ../../app/controllers/contributors_controller.rb:87 -#: ../../app/controllers/notes_controller.rb:149 +#: ../../app/controllers/notes_controller.rb:148 #: ../../app/controllers/org_admin/templates_controller.rb:240 #: ../../app/controllers/research_outputs_controller.rb:77 #: ../../app/controllers/super_admin/orgs_controller.rb:97 @@ -329,7 +329,7 @@ msgstr "" #: ../../app/controllers/guidance_groups_controller.rb:31 #: ../../app/controllers/guidances_controller.rb:53 -#: ../../app/controllers/notes_controller.rb:48 +#: ../../app/controllers/notes_controller.rb:47 #: ../../app/controllers/org_admin/departments_controller.rb:26 #: ../../app/controllers/org_admin/phases_controller.rb:121 #: ../../app/controllers/org_admin/questions_controller.rb:94 @@ -345,7 +345,7 @@ msgstr "" #: ../../app/controllers/guidance_groups_controller.rb:34 #: ../../app/controllers/guidances_controller.rb:55 -#: ../../app/controllers/notes_controller.rb:67 +#: ../../app/controllers/notes_controller.rb:66 #: ../../app/controllers/org_admin/departments_controller.rb:30 #: ../../app/controllers/org_admin/phases_controller.rb:123 #: ../../app/controllers/org_admin/questions_controller.rb:96 @@ -1082,17 +1082,17 @@ msgid "Owner" msgstr "" #: ../../app/helpers/plans_helper.rb:10 -#: ../../app/views/plans/_share_form.html.erb:127 +#: ../../app/views/plans/_share_form.html.erb:129 msgid "Co-owner" msgstr "" #: ../../app/helpers/plans_helper.rb:12 -#: ../../app/views/plans/_share_form.html.erb:133 +#: ../../app/views/plans/_share_form.html.erb:135 msgid "Editor" msgstr "" #: ../../app/helpers/plans_helper.rb:14 -#: ../../app/views/plans/_share_form.html.erb:139 +#: ../../app/views/plans/_share_form.html.erb:141 msgid "Read only" msgstr "" @@ -1101,7 +1101,7 @@ msgid "Public" msgstr "" #: ../../app/helpers/plans_helper.rb:26 ../../app/helpers/plans_helper.rb:28 -#: ../../app/views/layouts/application.html.erb:129 +#: ../../app/views/layouts/application.html.erb:128 msgid "Private" msgstr "" @@ -1114,7 +1114,7 @@ msgid "Public: anyone can view." msgstr "" #: ../../app/helpers/plans_helper.rb:39 -#: ../../app/views/layouts/application.html.erb:130 +#: ../../app/views/layouts/application.html.erb:129 msgid "Private: restricted to me and people I invite." msgstr "" @@ -1341,62 +1341,61 @@ msgid "Affiliation: " msgstr "" #: ../../app/models/concerns/exportable_plan.rb:163 -#: ../../app/models/concerns/exportable_plan.rb:164 msgid "%{affiliation}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:166 -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:165 +#: ../../app/models/concerns/exportable_plan.rb:167 #: ../../app/views/shared/export/_plan_coversheet.erb:32 #: ../../app/views/shared/export/_plan_txt.erb:22 #: ../../app/views/shared/export/_plan_txt.erb:24 msgid "Template: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:166 +#: ../../app/models/concerns/exportable_plan.rb:165 msgid "%{funder}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:167 msgid "%{template}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 #: ../../app/views/shared/export/_plan_txt.erb:27 msgid "Grant number: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 msgid "%{grant_number}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 #: ../../app/views/shared/export/_plan_coversheet.erb:42 #: ../../app/views/shared/export/_plan_txt.erb:30 msgid "Project abstract: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 msgid "%{description}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 #: ../../app/views/shared/export/_plan_coversheet.erb:58 #: ../../app/views/shared/export/_plan_txt.erb:33 msgid "Last modified: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 msgid "%{date}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:175 +#: ../../app/models/concerns/exportable_plan.rb:174 #: ../../app/views/shared/export/_plan_coversheet.erb:65 #: ../../app/views/shared/export/_plan_txt.erb:34 msgid "Copyright information:" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:176 +#: ../../app/models/concerns/exportable_plan.rb:175 msgid "" "The above plan creator(s) have agreed that others may use as\n" " much of the text of this plan as they would like in their own pla" @@ -1410,12 +1409,12 @@ msgid "" " your project or proposal" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:199 +#: ../../app/models/concerns/exportable_plan.rb:198 msgid "Not Answered" msgstr "" #: ../../app/models/concerns/validation_messages.rb:11 -#: ../../app/models/template.rb:226 +#: ../../app/models/template.rb:223 msgid "can't be blank" msgstr "can't be blank" @@ -1505,7 +1504,7 @@ msgstr "" msgid "private" msgstr "" -#: ../../app/models/plan.rb:617 +#: ../../app/models/plan.rb:615 msgid "must be after the start date" msgstr "" @@ -1549,51 +1548,51 @@ msgstr "" msgid "Invalid maximum pages" msgstr "" -#: ../../app/models/template.rb:254 +#: ../../app/models/template.rb:251 msgid "A historical template cannot be retrieved for being modified" msgstr "" -#: ../../app/models/template.rb:378 +#: ../../app/models/template.rb:375 msgid "generate_copy! requires an organisation target" msgstr "" -#: ../../app/models/template.rb:387 +#: ../../app/models/template.rb:384 msgid "Copy of %{template}" msgstr "" -#: ../../app/models/template.rb:394 +#: ../../app/models/template.rb:391 msgid "generate_version! requires a published template" msgstr "" -#: ../../app/models/template.rb:408 +#: ../../app/models/template.rb:405 msgid "customize! requires an organisation target" msgstr "" -#: ../../app/models/template.rb:411 +#: ../../app/models/template.rb:408 msgid "customize! requires a template from a funder" msgstr "" -#: ../../app/models/template.rb:447 +#: ../../app/models/template.rb:444 msgid "You can not publish a published template. " msgstr "" -#: ../../app/models/template.rb:451 +#: ../../app/models/template.rb:448 msgid "You can not publish a historical version of this template. " msgstr "" -#: ../../app/models/template.rb:456 +#: ../../app/models/template.rb:453 msgid "You can not publish a template without phases. " msgstr "" -#: ../../app/models/template.rb:461 +#: ../../app/models/template.rb:458 msgid "You can not publish a template without sections in a phase. " msgstr "" -#: ../../app/models/template.rb:466 +#: ../../app/models/template.rb:463 msgid "You can not publish a template without questions in a section. " msgstr "" -#: ../../app/models/template.rb:470 +#: ../../app/models/template.rb:467 msgid "Conditions in the template refer backwards" msgstr "" @@ -1601,6 +1600,58 @@ msgstr "" msgid "A Data Management Plan in %{application_name} has been shared with you" msgstr "" +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 +#: ../../app/views/contributors/_form.html.erb:10 +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:8 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 +#: ../../app/views/org_admin/departments/edit.html.erb:14 +#: ../../app/views/org_admin/departments/new.html.erb:14 +#: ../../app/views/paginable/api_clients/_index.html.erb:6 +#: ../../app/views/paginable/contributors/_index.html.erb:7 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 +#: ../../app/views/paginable/themes/_index.html.erb:4 +#: ../../app/views/paginable/users/_index.html.erb:20 +#: ../../app/views/super_admin/api_clients/_form.html.erb:11 +msgid "Name" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +msgid "E-Mail" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Created Date" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Last Activity" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/layouts/_branding.html.erb:71 +#: ../../app/views/org_admin/users/edit.html.erb:71 +#: ../../app/views/paginable/users/_index.html.erb:26 +#: ../../app/views/super_admin/users/edit.html.erb:105 +msgid "Plans" +msgstr "" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/users/_index.html.erb:27 +msgid "Current Privileges" +msgstr "" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/notifications/_index.html.erb:8 +#: ../../app/views/paginable/users/_index.html.erb:28 +#: ../../app/views/super_admin/notifications/_form.html.erb:34 +msgid "Active" +msgstr "" + +#: ../../app/models/user/at_csv.rb:8 +msgid "Department" +msgstr "" + #: ../../app/policies/api/v0/guidance_group_policy.rb:11 #: ../../app/policies/api/v0/guidance_policy.rb:11 #: ../../app/policies/api/v0/statistics_policy.rb:11 @@ -1796,7 +1847,7 @@ msgid "Please wait, Standards are loading" msgstr "" #: ../../app/views/answers/_new_edit.html.erb:68 -#: ../../app/views/contributors/_form.html.erb:94 +#: ../../app/views/contributors/_form.html.erb:95 #: ../../app/views/devise/passwords/edit.html.erb:35 #: ../../app/views/devise/registrations/_password_details.html.erb:31 #: ../../app/views/devise/registrations/_personal_details.html.erb:90 @@ -1817,7 +1868,7 @@ msgstr "" #: ../../app/views/plans/_edit_details.html.erb:11 #: ../../app/views/plans/_guidance_selection.html.erb:23 #: ../../app/views/questions/_preview_question.html.erb:111 -#: ../../app/views/research_outputs/_form.html.erb:177 +#: ../../app/views/research_outputs/_form.html.erb:178 #: ../../app/views/super_admin/api_clients/_form.html.erb:67 #: ../../app/views/super_admin/notifications/_form.html.erb:66 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -1858,20 +1909,6 @@ msgstr "" msgid "This answer triggers email(s) to " msgstr "" -#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 -#: ../../app/views/contributors/_form.html.erb:10 -#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 -#: ../../app/views/org_admin/departments/edit.html.erb:14 -#: ../../app/views/org_admin/departments/new.html.erb:14 -#: ../../app/views/paginable/api_clients/_index.html.erb:6 -#: ../../app/views/paginable/contributors/_index.html.erb:7 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 -#: ../../app/views/paginable/themes/_index.html.erb:4 -#: ../../app/views/paginable/users/_index.html.erb:20 -#: ../../app/views/super_admin/api_clients/_form.html.erb:11 -msgid "Name" -msgstr "" - #: ../../app/views/contact_us/contacts/_new_left.html.erb:13 #: ../../app/views/contact_us/contacts/_new_right.html.erb:23 #: ../../app/views/contributors/_form.html.erb:19 @@ -1881,7 +1918,7 @@ msgstr "" #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/contributors/_index.html.erb:11 #: ../../app/views/paginable/users/_index.html.erb:21 -#: ../../app/views/plans/_share_form.html.erb:107 +#: ../../app/views/plans/_share_form.html.erb:109 #: ../../app/views/shared/_create_account_form.html.erb:12 #: ../../app/views/shared/_sign_in_form.html.erb:3 #: ../../app/views/super_admin/users/edit.html.erb:15 @@ -1907,7 +1944,7 @@ msgid "Security check" msgstr "" #: ../../app/views/contact_us/contacts/_new_left.html.erb:43 -#: ../../app/views/plans/_share_form.html.erb:146 +#: ../../app/views/plans/_share_form.html.erb:148 msgid "Submit" msgstr "" @@ -1932,8 +1969,8 @@ msgstr "" #: ../../app/views/contact_us/contacts/new.html.erb:10 #: ../../app/views/layouts/_branding.html.erb:41 -#: ../../app/views/layouts/_footer.html.erb:24 -#: ../../app/views/layouts/_footer.html.erb:30 +#: ../../app/views/layouts/_footer.html.erb:23 +#: ../../app/views/layouts/_footer.html.erb:29 #: ../../app/views/org_admin/plans/index.html.erb:40 #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:39 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:24 @@ -1976,7 +2013,7 @@ msgstr "" msgid "Roles" msgstr "" -#: ../../app/views/contributors/_form.html.erb:96 +#: ../../app/views/contributors/_form.html.erb:97 #: ../../app/views/layouts/modal_search/_result.html.erb:23 #: ../../app/views/notes/_archive.html.erb:10 #: ../../app/views/notes/_list.html.erb:16 @@ -1990,16 +2027,16 @@ msgstr "" #: ../../app/views/paginable/guidance_groups/_index.html.erb:56 #: ../../app/views/paginable/guidances/_index.html.erb:61 #: ../../app/views/paginable/orgs/_index.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:75 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:78 #: ../../app/views/paginable/research_outputs/_index.html.erb:53 #: ../../app/views/paginable/templates/_customisable.html.erb:67 #: ../../app/views/paginable/templates/_organisational.html.erb:74 -#: ../../app/views/plans/_share_form.html.erb:89 -#: ../../app/views/research_outputs/_form.html.erb:179 +#: ../../app/views/plans/_share_form.html.erb:91 +#: ../../app/views/research_outputs/_form.html.erb:180 msgid "Remove" msgstr "" -#: ../../app/views/contributors/_form.html.erb:99 +#: ../../app/views/contributors/_form.html.erb:100 #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:29 #: ../../app/views/guidances/new_edit.html.erb:50 #: ../../app/views/notes/_archive.html.erb:11 @@ -2010,7 +2047,7 @@ msgstr "" #: ../../app/views/org_admin/questions/_form.html.erb:105 #: ../../app/views/plans/_guidance_selection.html.erb:35 #: ../../app/views/plans/new.html.erb:124 -#: ../../app/views/research_outputs/_form.html.erb:182 +#: ../../app/views/research_outputs/_form.html.erb:183 #: ../../app/views/super_admin/api_clients/_form.html.erb:86 #: ../../app/views/super_admin/notifications/_form.html.erb:73 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -2190,16 +2227,16 @@ msgstr "" msgid "Hello" msgstr "" -#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 -msgid "Your" -msgstr "" - #: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 msgid "" "account has been locked due to an excessive number of unsuccessful sign in att" "empts." msgstr "" +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 +msgid "Your" +msgstr "" + #: ../../app/views/devise/mailer/unlock_instructions.html.erb:6 msgid "Click the link below to unlock your account" msgstr "" @@ -2423,7 +2460,6 @@ msgid "Do you have a %{application_name} account?" msgstr "" #: ../../app/views/devise/registrations/new.html.erb:22 -#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 @@ -2470,6 +2506,27 @@ msgid "" "this subset guidance when answering questions in the 'create plan' wizard." msgstr "" +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:15 +#: ../../app/views/org_admin/templates/_form.html.erb:35 +#: ../../app/views/org_admin/templates/_row.html.erb:10 +#: ../../app/views/org_admin/templates/_row.html.erb:13 +#: ../../app/views/org_admin/templates/_show.html.erb:19 +#: ../../app/views/org_admin/templates/_show.html.erb:22 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 +#: ../../app/views/paginable/guidances/_index.html.erb:37 +#: ../../app/views/paginable/templates/_customisable.html.erb:31 +#: ../../app/views/paginable/templates/_customisable.html.erb:34 +#: ../../app/views/paginable/templates/_history.html.erb:8 +#: ../../app/views/paginable/templates/_organisational.html.erb:36 +#: ../../app/views/paginable/templates/_organisational.html.erb:39 +msgid "Published" +msgstr "" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 +msgid "Optional subset" +msgstr "" + #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 msgid " (e.g. School/ Department) " msgstr "" @@ -2619,13 +2676,6 @@ msgstr "" msgid "Admin" msgstr "" -#: ../../app/views/layouts/_branding.html.erb:71 -#: ../../app/views/org_admin/users/edit.html.erb:71 -#: ../../app/views/paginable/users/_index.html.erb:26 -#: ../../app/views/super_admin/users/edit.html.erb:105 -msgid "Plans" -msgstr "" - #: ../../app/views/layouts/_branding.html.erb:77 #: ../../app/views/org_admin/templates/index.html.erb:4 #: ../../app/views/paginable/orgs/_index.html.erb:8 @@ -2693,11 +2743,7 @@ msgid "Privacy statement" msgstr "" #: ../../app/views/layouts/_footer.html.erb:17 -msgid "Accessibility statement" -msgstr "" - -#: ../../app/views/layouts/_footer.html.erb:18 -msgid "Github" +msgid "GitHub" msgstr "" #: ../../app/views/layouts/_navigation.html.erb:12 @@ -2779,86 +2825,86 @@ msgid "%{application_name}" msgstr "" #: ../../app/views/layouts/application.html.erb:91 -msgid "Error:" +msgid "Notice:" msgstr "" #: ../../app/views/layouts/application.html.erb:91 -msgid "Notice:" +msgid "Error:" msgstr "" #: ../../app/views/layouts/application.html.erb:102 msgid "Loading..." msgstr "" -#: ../../app/views/layouts/application.html.erb:122 +#: ../../app/views/layouts/application.html.erb:121 #: ../../app/views/plans/new.html.erb:2 msgid "This field is required." msgstr "" -#: ../../app/views/layouts/application.html.erb:124 +#: ../../app/views/layouts/application.html.erb:123 #: ../../app/views/shared/_create_account_form.html.erb:31 msgid "Show password" msgstr "" -#: ../../app/views/layouts/application.html.erb:125 +#: ../../app/views/layouts/application.html.erb:124 msgid "Select an organisation from the list." msgstr "" -#: ../../app/views/layouts/application.html.erb:126 +#: ../../app/views/layouts/application.html.erb:125 msgid "My organisation isn't listed" msgstr "" -#: ../../app/views/layouts/application.html.erb:128 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:39 +#: ../../app/views/layouts/application.html.erb:127 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:42 msgid "N/A" msgstr "" -#: ../../app/views/layouts/application.html.erb:132 +#: ../../app/views/layouts/application.html.erb:131 msgid "Hide list." msgstr "" -#: ../../app/views/layouts/application.html.erb:133 +#: ../../app/views/layouts/application.html.erb:132 msgid "See the full list of partner institutions." msgstr "" -#: ../../app/views/layouts/application.html.erb:135 +#: ../../app/views/layouts/application.html.erb:134 msgid "" "Unable to find a suitable template for the research organisation and funder yo" "u selected." msgstr "" -#: ../../app/views/layouts/application.html.erb:136 +#: ../../app/views/layouts/application.html.erb:135 msgid "Please select a research organisation and funder to continue." msgstr "" -#: ../../app/views/layouts/application.html.erb:138 +#: ../../app/views/layouts/application.html.erb:137 msgid "Loading ..." msgstr "" -#: ../../app/views/layouts/application.html.erb:139 +#: ../../app/views/layouts/application.html.erb:138 msgid "Unable to load the section's content at this time." msgstr "" -#: ../../app/views/layouts/application.html.erb:140 +#: ../../app/views/layouts/application.html.erb:139 msgid "Unable to load the question's content at this time." msgstr "" -#: ../../app/views/layouts/application.html.erb:141 +#: ../../app/views/layouts/application.html.erb:140 msgid "Opens in a new window" msgstr "" -#: ../../app/views/layouts/application.html.erb:143 +#: ../../app/views/layouts/application.html.erb:142 msgid "" "%{n} results are available, use up and down arrows to navigate suggestions. Us" "e the Enter key to select a suggestion or the Escape key to close the suggesti" "ons." msgstr "" -#: ../../app/views/layouts/application.html.erb:144 +#: ../../app/views/layouts/application.html.erb:143 msgid "No results are available for your entry." msgstr "" -#: ../../app/views/layouts/application.html.erb:145 +#: ../../app/views/layouts/application.html.erb:144 msgid "Searching ..." msgstr "" @@ -2872,7 +2918,7 @@ msgid "No results matched your filter criteria." msgstr "" #: ../../app/views/layouts/modal_search/_form.html.erb:41 -#: ../../app/views/layouts/modal_search/_form.html.erb:83 +#: ../../app/views/layouts/modal_search/_form.html.erb:84 msgid "Close" msgstr "" @@ -2880,7 +2926,7 @@ msgstr "" msgid "%{topic} search" msgstr "" -#: ../../app/views/layouts/modal_search/_form.html.erb:66 +#: ../../app/views/layouts/modal_search/_form.html.erb:67 msgid "Apply filter(s)" msgstr "" @@ -2916,7 +2962,7 @@ msgstr "" #: ../../app/views/paginable/guidance_groups/_index.html.erb:49 #: ../../app/views/paginable/guidances/_index.html.erb:54 #: ../../app/views/paginable/orgs/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:58 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 #: ../../app/views/paginable/research_outputs/_index.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:56 #: ../../app/views/paginable/templates/_organisational.html.erb:56 @@ -3180,13 +3226,13 @@ msgstr "" #: ../../app/views/paginable/orgs/_index.html.erb:10 #: ../../app/views/paginable/orgs/_index.html.erb:30 #: ../../app/views/paginable/plans/_privately_visible.html.erb:13 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:53 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:56 #: ../../app/views/paginable/research_outputs/_index.html.erb:23 #: ../../app/views/paginable/research_outputs/_index.html.erb:48 #: ../../app/views/paginable/templates/_customisable.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:10 #: ../../app/views/paginable/templates/_organisational.html.erb:53 -#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:53 msgid "Actions" msgstr "" @@ -3427,21 +3473,6 @@ msgstr "" msgid "Status" msgstr "" -#: ../../app/views/org_admin/templates/_form.html.erb:35 -#: ../../app/views/org_admin/templates/_row.html.erb:10 -#: ../../app/views/org_admin/templates/_row.html.erb:13 -#: ../../app/views/org_admin/templates/_show.html.erb:19 -#: ../../app/views/org_admin/templates/_show.html.erb:22 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 -#: ../../app/views/paginable/guidances/_index.html.erb:37 -#: ../../app/views/paginable/templates/_customisable.html.erb:31 -#: ../../app/views/paginable/templates/_customisable.html.erb:34 -#: ../../app/views/paginable/templates/_history.html.erb:8 -#: ../../app/views/paginable/templates/_organisational.html.erb:36 -#: ../../app/views/paginable/templates/_organisational.html.erb:39 -msgid "Published" -msgstr "" - #: ../../app/views/org_admin/templates/_form.html.erb:37 #: ../../app/views/org_admin/templates/_row.html.erb:16 #: ../../app/views/org_admin/templates/_show.html.erb:26 @@ -3779,7 +3810,7 @@ msgstr "" #: ../../app/views/orgs/admin_edit.html.erb:22 #: ../../app/views/plans/_navigation.html.erb:33 -#: ../../app/views/plans/_request_feedback_form.html.erb:13 +#: ../../app/views/plans/_request_feedback_form.html.erb:19 #: ../../app/views/static_pages/help.html.erb:45 msgid "Request feedback" msgstr "" @@ -3868,13 +3899,9 @@ msgid "" "ou sure?" msgstr "" -#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 -msgid "Optional subset" -msgstr "" - #: ../../app/views/paginable/guidance_groups/_index.html.erb:31 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:45 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:48 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:12 @@ -3882,8 +3909,8 @@ msgid "No" msgstr "" #: ../../app/views/paginable/guidance_groups/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:43 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:46 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:11 @@ -3929,12 +3956,6 @@ msgstr "" msgid "Expiration" msgstr "" -#: ../../app/views/paginable/notifications/_index.html.erb:8 -#: ../../app/views/paginable/users/_index.html.erb:28 -#: ../../app/views/super_admin/notifications/_form.html.erb:34 -msgid "Active" -msgstr "" - #: ../../app/views/paginable/orgs/_index.html.erb:6 msgid "Administrator Email" msgstr "" @@ -3990,8 +4011,8 @@ msgstr "" #: #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:21 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:73 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:9 #: ../../app/views/paginable/templates/_history.html.erb:6 #: ../../app/views/paginable/templates/_organisational.html.erb:2 @@ -4039,31 +4060,31 @@ msgstr "" msgid "Shared" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 #: ../../app/views/plans/_navigation.html.erb:28 msgid "Share" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:65 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:68 #: ../../app/views/paginable/templates/_organisational.html.erb:67 msgid "Copy" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 #: ../../app/views/paginable/templates/_history.html.erb:58 msgid "View" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" -"Are you sure you wish to remove this public plan? This will remove it from the" -" Public DMPs page but any collaborators will still be able to access it." +"Are you sure you wish to remove this plan? Any collaborators will still be abl" +"e to access it." msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" -"Are you sure you wish to remove this plan? Any collaborators will still be abl" -"e to access it." +"Are you sure you wish to remove this public plan? This will remove it from the" +" Public DMPs page but any collaborators will still be able to access it." msgstr "" #: ../../app/views/paginable/plans/_publicly_visible.html.erb:17 @@ -4209,10 +4230,6 @@ msgstr "" msgid "Last activity" msgstr "" -#: ../../app/views/paginable/users/_index.html.erb:27 -msgid "Current Privileges" -msgstr "" - #: ../../app/views/paginable/users/_index.html.erb:46 msgid "Edit Profile" msgstr "" @@ -4498,11 +4515,17 @@ msgstr "" msgid "Request expert feedback" msgstr "" -#: ../../app/views/plans/_request_feedback_form.html.erb:11 -msgid "You can continue to edit and download the plan in the interim." +#: ../../app/views/plans/_request_feedback_form.html.erb:9 +msgid "" +"Click below to give data management staff at %{owner_org}, the Plan Owner's or" +"g, access to read and comment on your plan." msgstr "" #: ../../app/views/plans/_request_feedback_form.html.erb:17 +msgid "You can continue to edit and download the plan in the interim." +msgstr "" + +#: ../../app/views/plans/_request_feedback_form.html.erb:23 msgid "Feedback has been requested." msgstr "" @@ -4518,52 +4541,52 @@ msgstr "" msgid "Set plan visibility" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:9 +#: ../../app/views/plans/_share_form.html.erb:13 msgid "" "Public or organisational visibility is intended for finished plans. You must a" "nswer at least %{percentage}%% of the questions to enable these options. Note:" " test plans are set to private visibility by default." msgstr "" -#: ../../app/views/plans/_share_form.html.erb:19 +#: ../../app/views/plans/_share_form.html.erb:21 msgid "" "Private: visible to me, specified collaborators and administrators at my organ" "isation" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:27 +#: ../../app/views/plans/_share_form.html.erb:29 #: ../../app/views/user_mailer/plan_visibility.html.erb:12 msgid "Organisation: anyone at my organisation can view" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:35 +#: ../../app/views/plans/_share_form.html.erb:37 msgid "Public: anyone can view" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:42 +#: ../../app/views/plans/_share_form.html.erb:44 msgid "Manage collaborators" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:43 +#: ../../app/views/plans/_share_form.html.erb:45 msgid "" "Invite specific people to read, edit, or administer your plan. Invitees will r" "eceive an email notification that they have access to this plan." msgstr "" -#: ../../app/views/plans/_share_form.html.erb:48 +#: ../../app/views/plans/_share_form.html.erb:50 msgid "Email address" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:49 -#: ../../app/views/plans/_share_form.html.erb:122 +#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:124 msgid "Permissions" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:89 +#: ../../app/views/plans/_share_form.html.erb:91 msgid "Are you sure?" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:100 +#: ../../app/views/plans/_share_form.html.erb:102 msgid "Invite collaborators" msgstr "" @@ -4740,6 +4763,10 @@ msgstr "" msgid "Please describe the output type" msgstr "" +#: ../../app/views/research_outputs/_form.html.erb:27 +msgid "Research output type" +msgstr "" + #: ../../app/views/research_outputs/_form.html.erb:44 msgid "Abbreviation" msgstr "" @@ -4780,10 +4807,15 @@ msgid "Initial access level" msgstr "" #: ../../app/views/research_outputs/_form.html.erb:158 +#: ../../app/views/research_outputs/_form.html.erb:164 #: ../../app/views/shared/export/_plan_outputs.erb:23 msgid "Anticipated file size" msgstr "" +#: ../../app/views/research_outputs/_form.html.erb:170 +msgid "File size units" +msgstr "" + #: ../../app/views/research_outputs/edit.html.erb:12 msgid "Editing %{research_output_title}" msgstr "" @@ -4801,11 +4833,12 @@ msgstr "" msgid "Add a research output" msgstr "" -#: ../../app/views/research_outputs/licenses/_form.html.erb:24 +#: ../../app/views/research_outputs/licenses/_form.html.erb:20 +#: ../../app/views/research_outputs/licenses/_form.html.erb:25 msgid "Initial license" msgstr "" -#: ../../app/views/research_outputs/licenses/_form.html.erb:30 +#: ../../app/views/research_outputs/licenses/_form.html.erb:31 msgid "For guidance on selecting a license:" msgstr "" @@ -4829,10 +4862,18 @@ msgstr "" msgid "- Select a subject area -" msgstr "" -#: ../../app/views/research_outputs/repositories/_search.html.erb:21 +#: ../../app/views/research_outputs/repositories/_search.html.erb:14 +msgid "Select a subject area" +msgstr "" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:22 msgid "- Select a repository type -" msgstr "" +#: ../../app/views/research_outputs/repositories/_search.html.erb:24 +msgid "Select a repository type" +msgstr "" + #: ../../app/views/research_outputs/repositories/_search_result.html.erb:20 msgid "Click to view repositories related to %{subject}" msgstr "" @@ -5119,11 +5160,11 @@ msgid "on the homepage." msgstr "" #: ../../app/views/static_pages/about_us.html.erb:35 -msgid "Please visit the" +msgid "page for guidance." msgstr "" #: ../../app/views/static_pages/about_us.html.erb:35 -msgid "page for guidance." +msgid "Please visit the" msgstr "" #: ../../app/views/static_pages/about_us.html.erb:37 @@ -5675,6 +5716,14 @@ msgstr "" msgid "Statistics on your Templates" msgstr "" +#: ../../app/views/usage/_total_usage.html.erb:7 +msgid "Total users" +msgstr "" + +#: ../../app/views/usage/_total_usage.html.erb:11 +msgid "Total plans" +msgstr "" + #: ../../app/views/usage/_total_usage.html.erb:15 msgid "Excluding Test Plans" msgstr "" @@ -5801,13 +5850,17 @@ msgstr "" msgid "Hello %{user_name}," msgstr "" -#: ../../app/views/user_mailer/feedback_notification.html.erb:5 +#: ../../app/views/user_mailer/feedback_notification.html.erb:6 msgid "" "%{requestor} has requested feedback on a plan %{link_html}. To add comments, p" -"lease visit the 'Plans' page under the Admin menu in %{tool_name} and open the" +"lease visit the \"Plans\" page under the Admin menu in %{tool_name} and open the" " plan." msgstr "" +#: ../../app/views/user_mailer/feedback_notification.html.erb:17 +msgid "Alternatively, you can click the link below:" +msgstr "" + #: ../../app/views/user_mailer/new_comment.html.erb:5 msgid "" "%{commenter_name} has commented on your plan %{plan_title}. To view the commen" @@ -5886,19 +5939,19 @@ msgid "Hello %{recipient_name}," msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " is creating a Data Management Plan and has answered " +msgid " to " msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " to " +msgid " based on the template " msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " in a plan called " +msgid " is creating a Data Management Plan and has answered " msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " based on the template " +msgid " in a plan called " msgstr "" #: ../../app/views/user_mailer/sharing_notification.html.erb:5 @@ -6038,11 +6091,11 @@ msgid "Download users" msgstr "" #: ../../app/views/users/refresh_token.js.erb:1 -msgid "Successfully regenerate your API token." +msgid "Unable to regenerate your API token." msgstr "" #: ../../app/views/users/refresh_token.js.erb:1 -msgid "Unable to regenerate your API token." +msgid "Successfully regenerate your API token." msgstr "" #: i18n_placeholders.rb:4 diff --git a/config/locale/en_GB/LC_MESSAGES/app.mo b/config/locale/en_GB/LC_MESSAGES/app.mo index 8e54d9cdf7bc3da37ab6c8d54cc0c794f286eb3b..10dba7640fed1180fd790a3a6512aeb4ff20a534 100644 GIT binary patch delta 272 zcmXZVzY76j7zgkNhcb}pl0lS#^y+;N%gwjRk8H*(@1Ss3t}7G5Vj&hO{sNobXyTvn zN0!8p9YB)mbd_kb9BMyN_9EN`R&{Q73l@;=a^fNkg>-JWF* z#-_~->B^C1kLAQUW|d|`uo};cx-JCc4bEfT4(myGI2~FOW|)rD^BUJQhG+CNj$Va} I`&sz}|KA`hIRF3v delta 253 zcmeC@|HC)oOnn|B0|PS)1A_AZU@p_K$@G4fk6dGivej6-x^4Z0ckfN zEexb%fizGlLm`l62h!zGem#%|8p+TKr1^k!7myYN(ldcHNZo264MYr^*%+W-i- r0{nG@Qp+-nGxPIwT@p)DtrUz5jEr;*A?hrw42-o6j5e=jdBg+&UV9>- diff --git a/config/locale/en_GB/app.po b/config/locale/en_GB/app.po index 3f335f8a56..037d483fa4 100644 --- a/config/locale/en_GB/app.po +++ b/config/locale/en_GB/app.po @@ -1,14 +1,14 @@ -# English translations for app package. -# Copyright (C) 2022 app -# This file is distributed under the same license as the app package. +# English translations for DMPRoadmap-Development package. +# Copyright (C) 2022 DMPRoadmap-Development +# This file is distributed under the same license as the DMPRoadmap-Development package. # FIRST AUTHOR , 2022. # msgid "" msgstr "" -"Project-Id-Version: app 1.0\n" +"Project-Id-Version: DMPRoadmap-Development 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2022-10-25 16:02+0000\n" -"PO-Revision-Date: 2022-10-25 18:03+0200\n" +"POT-Creation-Date: 2022-11-30 14:11-0500\n" +"PO-Revision-Date: 2022-11-30 20:11+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: English\n" "Language: en_GB\n" @@ -259,7 +259,7 @@ msgstr "" #: ../../app/controllers/contributors_controller.rb:72 #: ../../app/controllers/guidance_groups_controller.rb:55 #: ../../app/controllers/guidances_controller.rb:75 -#: ../../app/controllers/notes_controller.rb:89 +#: ../../app/controllers/notes_controller.rb:88 #: ../../app/controllers/org_admin/departments_controller.rb:50 #: ../../app/controllers/org_admin/sections_controller.rb:103 #: ../../app/controllers/org_admin/templates_controller.rb:205 @@ -279,7 +279,7 @@ msgstr "" #: ../../app/controllers/contributors_controller.rb:74 #: ../../app/controllers/guidance_groups_controller.rb:57 #: ../../app/controllers/guidances_controller.rb:77 -#: ../../app/controllers/notes_controller.rb:107 +#: ../../app/controllers/notes_controller.rb:106 #: ../../app/controllers/org_admin/departments_controller.rb:52 #: ../../app/controllers/org_admin/sections_controller.rb:105 #: ../../app/controllers/org_admin/templates_controller.rb:210 @@ -295,7 +295,7 @@ msgid "save" msgstr "" #: ../../app/controllers/contributors_controller.rb:84 -#: ../../app/controllers/notes_controller.rb:131 +#: ../../app/controllers/notes_controller.rb:130 #: ../../app/controllers/org_admin/templates_controller.rb:238 #: ../../app/controllers/research_outputs_controller.rb:74 #: ../../app/controllers/super_admin/orgs_controller.rb:94 @@ -303,7 +303,7 @@ msgid "removed" msgstr "" #: ../../app/controllers/contributors_controller.rb:87 -#: ../../app/controllers/notes_controller.rb:149 +#: ../../app/controllers/notes_controller.rb:148 #: ../../app/controllers/org_admin/templates_controller.rb:240 #: ../../app/controllers/research_outputs_controller.rb:77 #: ../../app/controllers/super_admin/orgs_controller.rb:97 @@ -329,7 +329,7 @@ msgstr "" #: ../../app/controllers/guidance_groups_controller.rb:31 #: ../../app/controllers/guidances_controller.rb:53 -#: ../../app/controllers/notes_controller.rb:48 +#: ../../app/controllers/notes_controller.rb:47 #: ../../app/controllers/org_admin/departments_controller.rb:26 #: ../../app/controllers/org_admin/phases_controller.rb:121 #: ../../app/controllers/org_admin/questions_controller.rb:94 @@ -345,7 +345,7 @@ msgstr "" #: ../../app/controllers/guidance_groups_controller.rb:34 #: ../../app/controllers/guidances_controller.rb:55 -#: ../../app/controllers/notes_controller.rb:67 +#: ../../app/controllers/notes_controller.rb:66 #: ../../app/controllers/org_admin/departments_controller.rb:30 #: ../../app/controllers/org_admin/phases_controller.rb:123 #: ../../app/controllers/org_admin/questions_controller.rb:96 @@ -1082,17 +1082,17 @@ msgid "Owner" msgstr "" #: ../../app/helpers/plans_helper.rb:10 -#: ../../app/views/plans/_share_form.html.erb:127 +#: ../../app/views/plans/_share_form.html.erb:129 msgid "Co-owner" msgstr "" #: ../../app/helpers/plans_helper.rb:12 -#: ../../app/views/plans/_share_form.html.erb:133 +#: ../../app/views/plans/_share_form.html.erb:135 msgid "Editor" msgstr "" #: ../../app/helpers/plans_helper.rb:14 -#: ../../app/views/plans/_share_form.html.erb:139 +#: ../../app/views/plans/_share_form.html.erb:141 msgid "Read only" msgstr "" @@ -1101,7 +1101,7 @@ msgid "Public" msgstr "" #: ../../app/helpers/plans_helper.rb:26 ../../app/helpers/plans_helper.rb:28 -#: ../../app/views/layouts/application.html.erb:129 +#: ../../app/views/layouts/application.html.erb:128 msgid "Private" msgstr "" @@ -1114,7 +1114,7 @@ msgid "Public: anyone can view." msgstr "" #: ../../app/helpers/plans_helper.rb:39 -#: ../../app/views/layouts/application.html.erb:130 +#: ../../app/views/layouts/application.html.erb:129 msgid "Private: restricted to me and people I invite." msgstr "" @@ -1341,62 +1341,61 @@ msgid "Affiliation: " msgstr "" #: ../../app/models/concerns/exportable_plan.rb:163 -#: ../../app/models/concerns/exportable_plan.rb:164 msgid "%{affiliation}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:166 -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:165 +#: ../../app/models/concerns/exportable_plan.rb:167 #: ../../app/views/shared/export/_plan_coversheet.erb:32 #: ../../app/views/shared/export/_plan_txt.erb:22 #: ../../app/views/shared/export/_plan_txt.erb:24 msgid "Template: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:166 +#: ../../app/models/concerns/exportable_plan.rb:165 msgid "%{funder}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:167 msgid "%{template}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 #: ../../app/views/shared/export/_plan_txt.erb:27 msgid "Grant number: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 msgid "%{grant_number}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 #: ../../app/views/shared/export/_plan_coversheet.erb:42 #: ../../app/views/shared/export/_plan_txt.erb:30 msgid "Project abstract: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 msgid "%{description}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 #: ../../app/views/shared/export/_plan_coversheet.erb:58 #: ../../app/views/shared/export/_plan_txt.erb:33 msgid "Last modified: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 msgid "%{date}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:175 +#: ../../app/models/concerns/exportable_plan.rb:174 #: ../../app/views/shared/export/_plan_coversheet.erb:65 #: ../../app/views/shared/export/_plan_txt.erb:34 msgid "Copyright information:" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:176 +#: ../../app/models/concerns/exportable_plan.rb:175 msgid "" "The above plan creator(s) have agreed that others may use as\n" " much of the text of this plan as they would like in their own pla" @@ -1410,12 +1409,12 @@ msgid "" " your project or proposal" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:199 +#: ../../app/models/concerns/exportable_plan.rb:198 msgid "Not Answered" msgstr "" #: ../../app/models/concerns/validation_messages.rb:11 -#: ../../app/models/template.rb:226 +#: ../../app/models/template.rb:223 msgid "can't be blank" msgstr "can't be blank" @@ -1505,7 +1504,7 @@ msgstr "" msgid "private" msgstr "" -#: ../../app/models/plan.rb:617 +#: ../../app/models/plan.rb:615 msgid "must be after the start date" msgstr "" @@ -1549,51 +1548,51 @@ msgstr "" msgid "Invalid maximum pages" msgstr "" -#: ../../app/models/template.rb:254 +#: ../../app/models/template.rb:251 msgid "A historical template cannot be retrieved for being modified" msgstr "" -#: ../../app/models/template.rb:378 +#: ../../app/models/template.rb:375 msgid "generate_copy! requires an organisation target" msgstr "" -#: ../../app/models/template.rb:387 +#: ../../app/models/template.rb:384 msgid "Copy of %{template}" msgstr "" -#: ../../app/models/template.rb:394 +#: ../../app/models/template.rb:391 msgid "generate_version! requires a published template" msgstr "" -#: ../../app/models/template.rb:408 +#: ../../app/models/template.rb:405 msgid "customize! requires an organisation target" msgstr "" -#: ../../app/models/template.rb:411 +#: ../../app/models/template.rb:408 msgid "customize! requires a template from a funder" msgstr "" -#: ../../app/models/template.rb:447 +#: ../../app/models/template.rb:444 msgid "You can not publish a published template. " msgstr "" -#: ../../app/models/template.rb:451 +#: ../../app/models/template.rb:448 msgid "You can not publish a historical version of this template. " msgstr "" -#: ../../app/models/template.rb:456 +#: ../../app/models/template.rb:453 msgid "You can not publish a template without phases. " msgstr "" -#: ../../app/models/template.rb:461 +#: ../../app/models/template.rb:458 msgid "You can not publish a template without sections in a phase. " msgstr "" -#: ../../app/models/template.rb:466 +#: ../../app/models/template.rb:463 msgid "You can not publish a template without questions in a section. " msgstr "" -#: ../../app/models/template.rb:470 +#: ../../app/models/template.rb:467 msgid "Conditions in the template refer backwards" msgstr "" @@ -1601,6 +1600,58 @@ msgstr "" msgid "A Data Management Plan in %{application_name} has been shared with you" msgstr "" +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 +#: ../../app/views/contributors/_form.html.erb:10 +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:8 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 +#: ../../app/views/org_admin/departments/edit.html.erb:14 +#: ../../app/views/org_admin/departments/new.html.erb:14 +#: ../../app/views/paginable/api_clients/_index.html.erb:6 +#: ../../app/views/paginable/contributors/_index.html.erb:7 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 +#: ../../app/views/paginable/themes/_index.html.erb:4 +#: ../../app/views/paginable/users/_index.html.erb:20 +#: ../../app/views/super_admin/api_clients/_form.html.erb:11 +msgid "Name" +msgstr "Name" + +#: ../../app/models/user/at_csv.rb:7 +msgid "E-Mail" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Created Date" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Last Activity" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/layouts/_branding.html.erb:71 +#: ../../app/views/org_admin/users/edit.html.erb:71 +#: ../../app/views/paginable/users/_index.html.erb:26 +#: ../../app/views/super_admin/users/edit.html.erb:105 +msgid "Plans" +msgstr "" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/users/_index.html.erb:27 +msgid "Current Privileges" +msgstr "" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/notifications/_index.html.erb:8 +#: ../../app/views/paginable/users/_index.html.erb:28 +#: ../../app/views/super_admin/notifications/_form.html.erb:34 +msgid "Active" +msgstr "" + +#: ../../app/models/user/at_csv.rb:8 +msgid "Department" +msgstr "" + #: ../../app/policies/api/v0/guidance_group_policy.rb:11 #: ../../app/policies/api/v0/guidance_policy.rb:11 #: ../../app/policies/api/v0/statistics_policy.rb:11 @@ -1796,7 +1847,7 @@ msgid "Please wait, Standards are loading" msgstr "" #: ../../app/views/answers/_new_edit.html.erb:68 -#: ../../app/views/contributors/_form.html.erb:94 +#: ../../app/views/contributors/_form.html.erb:95 #: ../../app/views/devise/passwords/edit.html.erb:35 #: ../../app/views/devise/registrations/_password_details.html.erb:31 #: ../../app/views/devise/registrations/_personal_details.html.erb:90 @@ -1817,7 +1868,7 @@ msgstr "" #: ../../app/views/plans/_edit_details.html.erb:11 #: ../../app/views/plans/_guidance_selection.html.erb:23 #: ../../app/views/questions/_preview_question.html.erb:111 -#: ../../app/views/research_outputs/_form.html.erb:177 +#: ../../app/views/research_outputs/_form.html.erb:178 #: ../../app/views/super_admin/api_clients/_form.html.erb:67 #: ../../app/views/super_admin/notifications/_form.html.erb:66 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -1858,20 +1909,6 @@ msgstr "" msgid "This answer triggers email(s) to " msgstr "" -#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 -#: ../../app/views/contributors/_form.html.erb:10 -#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 -#: ../../app/views/org_admin/departments/edit.html.erb:14 -#: ../../app/views/org_admin/departments/new.html.erb:14 -#: ../../app/views/paginable/api_clients/_index.html.erb:6 -#: ../../app/views/paginable/contributors/_index.html.erb:7 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 -#: ../../app/views/paginable/themes/_index.html.erb:4 -#: ../../app/views/paginable/users/_index.html.erb:20 -#: ../../app/views/super_admin/api_clients/_form.html.erb:11 -msgid "Name" -msgstr "Name" - #: ../../app/views/contact_us/contacts/_new_left.html.erb:13 #: ../../app/views/contact_us/contacts/_new_right.html.erb:23 #: ../../app/views/contributors/_form.html.erb:19 @@ -1881,7 +1918,7 @@ msgstr "Name" #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/contributors/_index.html.erb:11 #: ../../app/views/paginable/users/_index.html.erb:21 -#: ../../app/views/plans/_share_form.html.erb:107 +#: ../../app/views/plans/_share_form.html.erb:109 #: ../../app/views/shared/_create_account_form.html.erb:12 #: ../../app/views/shared/_sign_in_form.html.erb:3 #: ../../app/views/super_admin/users/edit.html.erb:15 @@ -1907,7 +1944,7 @@ msgid "Security check" msgstr "" #: ../../app/views/contact_us/contacts/_new_left.html.erb:43 -#: ../../app/views/plans/_share_form.html.erb:146 +#: ../../app/views/plans/_share_form.html.erb:148 msgid "Submit" msgstr "Submit" @@ -1932,8 +1969,8 @@ msgstr "" #: ../../app/views/contact_us/contacts/new.html.erb:10 #: ../../app/views/layouts/_branding.html.erb:41 -#: ../../app/views/layouts/_footer.html.erb:24 -#: ../../app/views/layouts/_footer.html.erb:30 +#: ../../app/views/layouts/_footer.html.erb:23 +#: ../../app/views/layouts/_footer.html.erb:29 #: ../../app/views/org_admin/plans/index.html.erb:40 #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:39 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:24 @@ -1976,7 +2013,7 @@ msgstr "" msgid "Roles" msgstr "" -#: ../../app/views/contributors/_form.html.erb:96 +#: ../../app/views/contributors/_form.html.erb:97 #: ../../app/views/layouts/modal_search/_result.html.erb:23 #: ../../app/views/notes/_archive.html.erb:10 #: ../../app/views/notes/_list.html.erb:16 @@ -1990,16 +2027,16 @@ msgstr "" #: ../../app/views/paginable/guidance_groups/_index.html.erb:56 #: ../../app/views/paginable/guidances/_index.html.erb:61 #: ../../app/views/paginable/orgs/_index.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:75 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:78 #: ../../app/views/paginable/research_outputs/_index.html.erb:53 #: ../../app/views/paginable/templates/_customisable.html.erb:67 #: ../../app/views/paginable/templates/_organisational.html.erb:74 -#: ../../app/views/plans/_share_form.html.erb:89 -#: ../../app/views/research_outputs/_form.html.erb:179 +#: ../../app/views/plans/_share_form.html.erb:91 +#: ../../app/views/research_outputs/_form.html.erb:180 msgid "Remove" msgstr "" -#: ../../app/views/contributors/_form.html.erb:99 +#: ../../app/views/contributors/_form.html.erb:100 #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:29 #: ../../app/views/guidances/new_edit.html.erb:50 #: ../../app/views/notes/_archive.html.erb:11 @@ -2010,7 +2047,7 @@ msgstr "" #: ../../app/views/org_admin/questions/_form.html.erb:105 #: ../../app/views/plans/_guidance_selection.html.erb:35 #: ../../app/views/plans/new.html.erb:124 -#: ../../app/views/research_outputs/_form.html.erb:182 +#: ../../app/views/research_outputs/_form.html.erb:183 #: ../../app/views/super_admin/api_clients/_form.html.erb:86 #: ../../app/views/super_admin/notifications/_form.html.erb:73 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -2190,16 +2227,16 @@ msgstr "" msgid "Hello" msgstr "" -#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 -msgid "Your" -msgstr "" - #: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 msgid "" "account has been locked due to an excessive number of unsuccessful sign in att" "empts." msgstr "" +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 +msgid "Your" +msgstr "" + #: ../../app/views/devise/mailer/unlock_instructions.html.erb:6 msgid "Click the link below to unlock your account" msgstr "" @@ -2423,7 +2460,6 @@ msgid "Do you have a %{application_name} account?" msgstr "" #: ../../app/views/devise/registrations/new.html.erb:22 -#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 @@ -2470,6 +2506,27 @@ msgid "" "this subset guidance when answering questions in the 'create plan' wizard." msgstr "" +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:15 +#: ../../app/views/org_admin/templates/_form.html.erb:35 +#: ../../app/views/org_admin/templates/_row.html.erb:10 +#: ../../app/views/org_admin/templates/_row.html.erb:13 +#: ../../app/views/org_admin/templates/_show.html.erb:19 +#: ../../app/views/org_admin/templates/_show.html.erb:22 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 +#: ../../app/views/paginable/guidances/_index.html.erb:37 +#: ../../app/views/paginable/templates/_customisable.html.erb:31 +#: ../../app/views/paginable/templates/_customisable.html.erb:34 +#: ../../app/views/paginable/templates/_history.html.erb:8 +#: ../../app/views/paginable/templates/_organisational.html.erb:36 +#: ../../app/views/paginable/templates/_organisational.html.erb:39 +msgid "Published" +msgstr "" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 +msgid "Optional subset" +msgstr "" + #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 msgid " (e.g. School/ Department) " msgstr "" @@ -2619,13 +2676,6 @@ msgstr "" msgid "Admin" msgstr "" -#: ../../app/views/layouts/_branding.html.erb:71 -#: ../../app/views/org_admin/users/edit.html.erb:71 -#: ../../app/views/paginable/users/_index.html.erb:26 -#: ../../app/views/super_admin/users/edit.html.erb:105 -msgid "Plans" -msgstr "" - #: ../../app/views/layouts/_branding.html.erb:77 #: ../../app/views/org_admin/templates/index.html.erb:4 #: ../../app/views/paginable/orgs/_index.html.erb:8 @@ -2693,11 +2743,7 @@ msgid "Privacy statement" msgstr "" #: ../../app/views/layouts/_footer.html.erb:17 -msgid "Accessibility statement" -msgstr "" - -#: ../../app/views/layouts/_footer.html.erb:18 -msgid "Github" +msgid "GitHub" msgstr "" #: ../../app/views/layouts/_navigation.html.erb:12 @@ -2779,86 +2825,86 @@ msgid "%{application_name}" msgstr "" #: ../../app/views/layouts/application.html.erb:91 -msgid "Error:" +msgid "Notice:" msgstr "" #: ../../app/views/layouts/application.html.erb:91 -msgid "Notice:" +msgid "Error:" msgstr "" #: ../../app/views/layouts/application.html.erb:102 msgid "Loading..." msgstr "" -#: ../../app/views/layouts/application.html.erb:122 +#: ../../app/views/layouts/application.html.erb:121 #: ../../app/views/plans/new.html.erb:2 msgid "This field is required." msgstr "" -#: ../../app/views/layouts/application.html.erb:124 +#: ../../app/views/layouts/application.html.erb:123 #: ../../app/views/shared/_create_account_form.html.erb:31 msgid "Show password" msgstr "" -#: ../../app/views/layouts/application.html.erb:125 +#: ../../app/views/layouts/application.html.erb:124 msgid "Select an organisation from the list." msgstr "" -#: ../../app/views/layouts/application.html.erb:126 +#: ../../app/views/layouts/application.html.erb:125 msgid "My organisation isn't listed" msgstr "" -#: ../../app/views/layouts/application.html.erb:128 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:39 +#: ../../app/views/layouts/application.html.erb:127 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:42 msgid "N/A" msgstr "" -#: ../../app/views/layouts/application.html.erb:132 +#: ../../app/views/layouts/application.html.erb:131 msgid "Hide list." msgstr "" -#: ../../app/views/layouts/application.html.erb:133 +#: ../../app/views/layouts/application.html.erb:132 msgid "See the full list of partner institutions." msgstr "" -#: ../../app/views/layouts/application.html.erb:135 +#: ../../app/views/layouts/application.html.erb:134 msgid "" "Unable to find a suitable template for the research organisation and funder yo" "u selected." msgstr "" -#: ../../app/views/layouts/application.html.erb:136 +#: ../../app/views/layouts/application.html.erb:135 msgid "Please select a research organisation and funder to continue." msgstr "" -#: ../../app/views/layouts/application.html.erb:138 +#: ../../app/views/layouts/application.html.erb:137 msgid "Loading ..." msgstr "" -#: ../../app/views/layouts/application.html.erb:139 +#: ../../app/views/layouts/application.html.erb:138 msgid "Unable to load the section's content at this time." msgstr "" -#: ../../app/views/layouts/application.html.erb:140 +#: ../../app/views/layouts/application.html.erb:139 msgid "Unable to load the question's content at this time." msgstr "" -#: ../../app/views/layouts/application.html.erb:141 +#: ../../app/views/layouts/application.html.erb:140 msgid "Opens in a new window" msgstr "" -#: ../../app/views/layouts/application.html.erb:143 +#: ../../app/views/layouts/application.html.erb:142 msgid "" "%{n} results are available, use up and down arrows to navigate suggestions. Us" "e the Enter key to select a suggestion or the Escape key to close the suggesti" "ons." msgstr "" -#: ../../app/views/layouts/application.html.erb:144 +#: ../../app/views/layouts/application.html.erb:143 msgid "No results are available for your entry." msgstr "" -#: ../../app/views/layouts/application.html.erb:145 +#: ../../app/views/layouts/application.html.erb:144 msgid "Searching ..." msgstr "" @@ -2872,7 +2918,7 @@ msgid "No results matched your filter criteria." msgstr "" #: ../../app/views/layouts/modal_search/_form.html.erb:41 -#: ../../app/views/layouts/modal_search/_form.html.erb:83 +#: ../../app/views/layouts/modal_search/_form.html.erb:84 msgid "Close" msgstr "" @@ -2880,7 +2926,7 @@ msgstr "" msgid "%{topic} search" msgstr "" -#: ../../app/views/layouts/modal_search/_form.html.erb:66 +#: ../../app/views/layouts/modal_search/_form.html.erb:67 msgid "Apply filter(s)" msgstr "" @@ -2916,7 +2962,7 @@ msgstr "" #: ../../app/views/paginable/guidance_groups/_index.html.erb:49 #: ../../app/views/paginable/guidances/_index.html.erb:54 #: ../../app/views/paginable/orgs/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:58 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 #: ../../app/views/paginable/research_outputs/_index.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:56 #: ../../app/views/paginable/templates/_organisational.html.erb:56 @@ -3180,13 +3226,13 @@ msgstr "" #: ../../app/views/paginable/orgs/_index.html.erb:10 #: ../../app/views/paginable/orgs/_index.html.erb:30 #: ../../app/views/paginable/plans/_privately_visible.html.erb:13 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:53 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:56 #: ../../app/views/paginable/research_outputs/_index.html.erb:23 #: ../../app/views/paginable/research_outputs/_index.html.erb:48 #: ../../app/views/paginable/templates/_customisable.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:10 #: ../../app/views/paginable/templates/_organisational.html.erb:53 -#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:53 msgid "Actions" msgstr "" @@ -3427,21 +3473,6 @@ msgstr "" msgid "Status" msgstr "" -#: ../../app/views/org_admin/templates/_form.html.erb:35 -#: ../../app/views/org_admin/templates/_row.html.erb:10 -#: ../../app/views/org_admin/templates/_row.html.erb:13 -#: ../../app/views/org_admin/templates/_show.html.erb:19 -#: ../../app/views/org_admin/templates/_show.html.erb:22 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 -#: ../../app/views/paginable/guidances/_index.html.erb:37 -#: ../../app/views/paginable/templates/_customisable.html.erb:31 -#: ../../app/views/paginable/templates/_customisable.html.erb:34 -#: ../../app/views/paginable/templates/_history.html.erb:8 -#: ../../app/views/paginable/templates/_organisational.html.erb:36 -#: ../../app/views/paginable/templates/_organisational.html.erb:39 -msgid "Published" -msgstr "" - #: ../../app/views/org_admin/templates/_form.html.erb:37 #: ../../app/views/org_admin/templates/_row.html.erb:16 #: ../../app/views/org_admin/templates/_show.html.erb:26 @@ -3779,7 +3810,7 @@ msgstr "" #: ../../app/views/orgs/admin_edit.html.erb:22 #: ../../app/views/plans/_navigation.html.erb:33 -#: ../../app/views/plans/_request_feedback_form.html.erb:13 +#: ../../app/views/plans/_request_feedback_form.html.erb:19 #: ../../app/views/static_pages/help.html.erb:45 msgid "Request feedback" msgstr "" @@ -3868,13 +3899,9 @@ msgid "" "ou sure?" msgstr "" -#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 -msgid "Optional subset" -msgstr "" - #: ../../app/views/paginable/guidance_groups/_index.html.erb:31 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:45 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:48 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:12 @@ -3882,8 +3909,8 @@ msgid "No" msgstr "" #: ../../app/views/paginable/guidance_groups/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:43 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:46 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:11 @@ -3929,12 +3956,6 @@ msgstr "" msgid "Expiration" msgstr "" -#: ../../app/views/paginable/notifications/_index.html.erb:8 -#: ../../app/views/paginable/users/_index.html.erb:28 -#: ../../app/views/super_admin/notifications/_form.html.erb:34 -msgid "Active" -msgstr "" - #: ../../app/views/paginable/orgs/_index.html.erb:6 msgid "Administrator Email" msgstr "" @@ -3990,8 +4011,8 @@ msgstr "" #: #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:21 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:73 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:9 #: ../../app/views/paginable/templates/_history.html.erb:6 #: ../../app/views/paginable/templates/_organisational.html.erb:2 @@ -4039,31 +4060,31 @@ msgstr "" msgid "Shared" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 #: ../../app/views/plans/_navigation.html.erb:28 msgid "Share" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:65 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:68 #: ../../app/views/paginable/templates/_organisational.html.erb:67 msgid "Copy" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 #: ../../app/views/paginable/templates/_history.html.erb:58 msgid "View" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" -"Are you sure you wish to remove this public plan? This will remove it from the" -" Public DMPs page but any collaborators will still be able to access it." +"Are you sure you wish to remove this plan? Any collaborators will still be abl" +"e to access it." msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" -"Are you sure you wish to remove this plan? Any collaborators will still be abl" -"e to access it." +"Are you sure you wish to remove this public plan? This will remove it from the" +" Public DMPs page but any collaborators will still be able to access it." msgstr "" #: ../../app/views/paginable/plans/_publicly_visible.html.erb:17 @@ -4211,10 +4232,6 @@ msgstr "" msgid "Last activity" msgstr "" -#: ../../app/views/paginable/users/_index.html.erb:27 -msgid "Current Privileges" -msgstr "" - #: ../../app/views/paginable/users/_index.html.erb:46 msgid "Edit Profile" msgstr "" @@ -4500,11 +4517,17 @@ msgstr "" msgid "Request expert feedback" msgstr "" -#: ../../app/views/plans/_request_feedback_form.html.erb:11 -msgid "You can continue to edit and download the plan in the interim." +#: ../../app/views/plans/_request_feedback_form.html.erb:9 +msgid "" +"Click below to give data management staff at %{owner_org}, the Plan Owner's or" +"g, access to read and comment on your plan." msgstr "" #: ../../app/views/plans/_request_feedback_form.html.erb:17 +msgid "You can continue to edit and download the plan in the interim." +msgstr "" + +#: ../../app/views/plans/_request_feedback_form.html.erb:23 msgid "Feedback has been requested." msgstr "" @@ -4520,52 +4543,52 @@ msgstr "" msgid "Set plan visibility" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:9 +#: ../../app/views/plans/_share_form.html.erb:13 msgid "" "Public or organisational visibility is intended for finished plans. You must a" "nswer at least %{percentage}%% of the questions to enable these options. Note:" " test plans are set to private visibility by default." msgstr "" -#: ../../app/views/plans/_share_form.html.erb:19 +#: ../../app/views/plans/_share_form.html.erb:21 msgid "" "Private: visible to me, specified collaborators and administrators at my organ" "isation" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:27 +#: ../../app/views/plans/_share_form.html.erb:29 #: ../../app/views/user_mailer/plan_visibility.html.erb:12 msgid "Organisation: anyone at my organisation can view" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:35 +#: ../../app/views/plans/_share_form.html.erb:37 msgid "Public: anyone can view" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:42 +#: ../../app/views/plans/_share_form.html.erb:44 msgid "Manage collaborators" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:43 +#: ../../app/views/plans/_share_form.html.erb:45 msgid "" "Invite specific people to read, edit, or administer your plan. Invitees will r" "eceive an email notification that they have access to this plan." msgstr "" -#: ../../app/views/plans/_share_form.html.erb:48 +#: ../../app/views/plans/_share_form.html.erb:50 msgid "Email address" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:49 -#: ../../app/views/plans/_share_form.html.erb:122 +#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:124 msgid "Permissions" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:89 +#: ../../app/views/plans/_share_form.html.erb:91 msgid "Are you sure?" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:100 +#: ../../app/views/plans/_share_form.html.erb:102 msgid "Invite collaborators" msgstr "" @@ -4742,6 +4765,10 @@ msgstr "" msgid "Please describe the output type" msgstr "" +#: ../../app/views/research_outputs/_form.html.erb:27 +msgid "Research output type" +msgstr "" + #: ../../app/views/research_outputs/_form.html.erb:44 msgid "Abbreviation" msgstr "" @@ -4782,10 +4809,15 @@ msgid "Initial access level" msgstr "" #: ../../app/views/research_outputs/_form.html.erb:158 +#: ../../app/views/research_outputs/_form.html.erb:164 #: ../../app/views/shared/export/_plan_outputs.erb:23 msgid "Anticipated file size" msgstr "" +#: ../../app/views/research_outputs/_form.html.erb:170 +msgid "File size units" +msgstr "" + #: ../../app/views/research_outputs/edit.html.erb:12 msgid "Editing %{research_output_title}" msgstr "" @@ -4803,11 +4835,12 @@ msgstr "" msgid "Add a research output" msgstr "" -#: ../../app/views/research_outputs/licenses/_form.html.erb:24 +#: ../../app/views/research_outputs/licenses/_form.html.erb:20 +#: ../../app/views/research_outputs/licenses/_form.html.erb:25 msgid "Initial license" msgstr "" -#: ../../app/views/research_outputs/licenses/_form.html.erb:30 +#: ../../app/views/research_outputs/licenses/_form.html.erb:31 msgid "For guidance on selecting a license:" msgstr "" @@ -4831,10 +4864,18 @@ msgstr "" msgid "- Select a subject area -" msgstr "" -#: ../../app/views/research_outputs/repositories/_search.html.erb:21 +#: ../../app/views/research_outputs/repositories/_search.html.erb:14 +msgid "Select a subject area" +msgstr "" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:22 msgid "- Select a repository type -" msgstr "" +#: ../../app/views/research_outputs/repositories/_search.html.erb:24 +msgid "Select a repository type" +msgstr "" + #: ../../app/views/research_outputs/repositories/_search_result.html.erb:20 msgid "Click to view repositories related to %{subject}" msgstr "" @@ -5121,11 +5162,11 @@ msgid "on the homepage." msgstr "" #: ../../app/views/static_pages/about_us.html.erb:35 -msgid "Please visit the" +msgid "page for guidance." msgstr "" #: ../../app/views/static_pages/about_us.html.erb:35 -msgid "page for guidance." +msgid "Please visit the" msgstr "" #: ../../app/views/static_pages/about_us.html.erb:37 @@ -5677,6 +5718,14 @@ msgstr "" msgid "Statistics on your Templates" msgstr "" +#: ../../app/views/usage/_total_usage.html.erb:7 +msgid "Total users" +msgstr "" + +#: ../../app/views/usage/_total_usage.html.erb:11 +msgid "Total plans" +msgstr "" + #: ../../app/views/usage/_total_usage.html.erb:15 msgid "Excluding Test Plans" msgstr "" @@ -5803,13 +5852,17 @@ msgstr "" msgid "Hello %{user_name}," msgstr "" -#: ../../app/views/user_mailer/feedback_notification.html.erb:5 +#: ../../app/views/user_mailer/feedback_notification.html.erb:6 msgid "" "%{requestor} has requested feedback on a plan %{link_html}. To add comments, p" -"lease visit the 'Plans' page under the Admin menu in %{tool_name} and open the" +"lease visit the \"Plans\" page under the Admin menu in %{tool_name} and open the" " plan." msgstr "" +#: ../../app/views/user_mailer/feedback_notification.html.erb:17 +msgid "Alternatively, you can click the link below:" +msgstr "" + #: ../../app/views/user_mailer/new_comment.html.erb:5 msgid "" "%{commenter_name} has commented on your plan %{plan_title}. To view the commen" @@ -5888,19 +5941,19 @@ msgid "Hello %{recipient_name}," msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " is creating a Data Management Plan and has answered " +msgid " to " msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " to " +msgid " based on the template " msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " in a plan called " +msgid " is creating a Data Management Plan and has answered " msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " based on the template " +msgid " in a plan called " msgstr "" #: ../../app/views/user_mailer/sharing_notification.html.erb:5 @@ -6040,11 +6093,11 @@ msgid "Download users" msgstr "" #: ../../app/views/users/refresh_token.js.erb:1 -msgid "Successfully regenerate your API token." +msgid "Unable to regenerate your API token." msgstr "" #: ../../app/views/users/refresh_token.js.erb:1 -msgid "Unable to regenerate your API token." +msgid "Successfully regenerate your API token." msgstr "" #: i18n_placeholders.rb:4 diff --git a/config/locale/en_US/LC_MESSAGES/app.mo b/config/locale/en_US/LC_MESSAGES/app.mo index de80a35841ed90af319d8e2e6d43ce562ac03021..790f499179fb2f8e8daa1c86d1a34322cce24ba7 100644 GIT binary patch delta 1051 zcmXZbTS${(9LMpWW)8z;GhNi0rC6=W)?N>3wld3(rs-gk6p7i0K$}7*2pU#&Ar+KF zLDZdzL?BoZdJ$9?kp&&h?xGXkm|YY>frGwJ?_linJpcE3pTqz8zYhk|o)4rAf18u& zO_Lr6qy>^{*GN6|BUnTKS;&rOSkim?`RKxFJc3EQfQL)%{tqmnzqd@P!1G8*qj(%= za1nNtOTBoyTnT-pkt8q=Kl4^Ge#eFAS}VD61un%f7GNu8;VI0)vsj2%(T(>p7st`e z^AYFbPke%ZkiBcHGGV_sQz^YAkW(cs!7q53OeC?B{>5sErv9SYKENjA#$4RtmnN4=ld66k)p-K4}Y{6mNhmK}4X9jf8 zFn4|%%@y23QygO$#3{_i{D?iS2)P|u$cLhCEW|q_Lk|B+cU?nMB;J0gtGzo=7dsK_ rjCXg%jvniu4AeWVKv`(HRbFjbflx(%FzB%(r6D3EA#0>1*jD@x8Jd%t delta 1032 zcmXZbOGs2v9LMqBXf-98Wi?illZKW$IbFxsG@9m+_83cx3M4C9L`h-eBBT~w3W_jj z(F8@{B4SW?ibS@E9<&I;qO34m6urRNL>Mh1wD0K-%*^Nf|M%SU_@6V+60W-m*U;B= zyUQg#ERz;V3T%+Ni5swic-V6CKk+SbTDi0sC$JNfcnS9go%jR#iJK~c`VK ziMiNTDV@jTm9q7PMv_DZzTmAwe2+_T20fTlEv>>5^kFkDz@wOrr?3ER^x$pG!BI5h zJjc2C5ue~UWbGQLv7HwuYoymC{^Ck}8IrD2i6ovRJ`N}bRtghvY_2|Vz=*F{X zCc1!T$CuG8dVowctkV zMT(-Q*ow2b4_h0hSD3&Z*b|ZJ(kMTU5zlV$Nke#i*$?*llTTB zJEcL)-Q|?>F;aa^pc!}>+ib@Wnv!2b#!^3;(odtgbQx__34LfveggMnA0EJ87&aZ+ zb~|T&1, 2022. # msgid "" msgstr "" -"Project-Id-Version: app 1.0\n" +"Project-Id-Version: DMPRoadmap-Development 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2022-10-25 16:02+0000\n" -"PO-Revision-Date: 2022-10-25 18:03+0200\n" +"POT-Creation-Date: 2022-11-30 14:11-0500\n" +"PO-Revision-Date: 2022-11-30 20:11+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: English\n" "Language: en_US\n" @@ -259,7 +259,7 @@ msgstr "" #: ../../app/controllers/contributors_controller.rb:72 #: ../../app/controllers/guidance_groups_controller.rb:55 #: ../../app/controllers/guidances_controller.rb:75 -#: ../../app/controllers/notes_controller.rb:89 +#: ../../app/controllers/notes_controller.rb:88 #: ../../app/controllers/org_admin/departments_controller.rb:50 #: ../../app/controllers/org_admin/sections_controller.rb:103 #: ../../app/controllers/org_admin/templates_controller.rb:205 @@ -279,7 +279,7 @@ msgstr "" #: ../../app/controllers/contributors_controller.rb:74 #: ../../app/controllers/guidance_groups_controller.rb:57 #: ../../app/controllers/guidances_controller.rb:77 -#: ../../app/controllers/notes_controller.rb:107 +#: ../../app/controllers/notes_controller.rb:106 #: ../../app/controllers/org_admin/departments_controller.rb:52 #: ../../app/controllers/org_admin/sections_controller.rb:105 #: ../../app/controllers/org_admin/templates_controller.rb:210 @@ -295,7 +295,7 @@ msgid "save" msgstr "" #: ../../app/controllers/contributors_controller.rb:84 -#: ../../app/controllers/notes_controller.rb:131 +#: ../../app/controllers/notes_controller.rb:130 #: ../../app/controllers/org_admin/templates_controller.rb:238 #: ../../app/controllers/research_outputs_controller.rb:74 #: ../../app/controllers/super_admin/orgs_controller.rb:94 @@ -303,7 +303,7 @@ msgid "removed" msgstr "" #: ../../app/controllers/contributors_controller.rb:87 -#: ../../app/controllers/notes_controller.rb:149 +#: ../../app/controllers/notes_controller.rb:148 #: ../../app/controllers/org_admin/templates_controller.rb:240 #: ../../app/controllers/research_outputs_controller.rb:77 #: ../../app/controllers/super_admin/orgs_controller.rb:97 @@ -329,7 +329,7 @@ msgstr "" #: ../../app/controllers/guidance_groups_controller.rb:31 #: ../../app/controllers/guidances_controller.rb:53 -#: ../../app/controllers/notes_controller.rb:48 +#: ../../app/controllers/notes_controller.rb:47 #: ../../app/controllers/org_admin/departments_controller.rb:26 #: ../../app/controllers/org_admin/phases_controller.rb:121 #: ../../app/controllers/org_admin/questions_controller.rb:94 @@ -345,7 +345,7 @@ msgstr "" #: ../../app/controllers/guidance_groups_controller.rb:34 #: ../../app/controllers/guidances_controller.rb:55 -#: ../../app/controllers/notes_controller.rb:67 +#: ../../app/controllers/notes_controller.rb:66 #: ../../app/controllers/org_admin/departments_controller.rb:30 #: ../../app/controllers/org_admin/phases_controller.rb:123 #: ../../app/controllers/org_admin/questions_controller.rb:96 @@ -1086,17 +1086,17 @@ msgid "Owner" msgstr "" #: ../../app/helpers/plans_helper.rb:10 -#: ../../app/views/plans/_share_form.html.erb:127 +#: ../../app/views/plans/_share_form.html.erb:129 msgid "Co-owner" msgstr "" #: ../../app/helpers/plans_helper.rb:12 -#: ../../app/views/plans/_share_form.html.erb:133 +#: ../../app/views/plans/_share_form.html.erb:135 msgid "Editor" msgstr "" #: ../../app/helpers/plans_helper.rb:14 -#: ../../app/views/plans/_share_form.html.erb:139 +#: ../../app/views/plans/_share_form.html.erb:141 msgid "Read only" msgstr "" @@ -1105,7 +1105,7 @@ msgid "Public" msgstr "" #: ../../app/helpers/plans_helper.rb:26 ../../app/helpers/plans_helper.rb:28 -#: ../../app/views/layouts/application.html.erb:129 +#: ../../app/views/layouts/application.html.erb:128 msgid "Private" msgstr "" @@ -1118,7 +1118,7 @@ msgid "Public: anyone can view." msgstr "" #: ../../app/helpers/plans_helper.rb:39 -#: ../../app/views/layouts/application.html.erb:130 +#: ../../app/views/layouts/application.html.erb:129 msgid "Private: restricted to me and people I invite." msgstr "" @@ -1345,62 +1345,61 @@ msgid "Affiliation: " msgstr "" #: ../../app/models/concerns/exportable_plan.rb:163 -#: ../../app/models/concerns/exportable_plan.rb:164 msgid "%{affiliation}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:166 -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:165 +#: ../../app/models/concerns/exportable_plan.rb:167 #: ../../app/views/shared/export/_plan_coversheet.erb:32 #: ../../app/views/shared/export/_plan_txt.erb:22 #: ../../app/views/shared/export/_plan_txt.erb:24 msgid "Template: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:166 +#: ../../app/models/concerns/exportable_plan.rb:165 msgid "%{funder}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:167 msgid "%{template}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 #: ../../app/views/shared/export/_plan_txt.erb:27 msgid "Grant number: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 msgid "%{grant_number}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 #: ../../app/views/shared/export/_plan_coversheet.erb:42 #: ../../app/views/shared/export/_plan_txt.erb:30 msgid "Project abstract: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 msgid "%{description}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 #: ../../app/views/shared/export/_plan_coversheet.erb:58 #: ../../app/views/shared/export/_plan_txt.erb:33 msgid "Last modified: " msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 msgid "%{date}" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:175 +#: ../../app/models/concerns/exportable_plan.rb:174 #: ../../app/views/shared/export/_plan_coversheet.erb:65 #: ../../app/views/shared/export/_plan_txt.erb:34 msgid "Copyright information:" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:176 +#: ../../app/models/concerns/exportable_plan.rb:175 msgid "" "The above plan creator(s) have agreed that others may use as\n" " much of the text of this plan as they would like in their own pla" @@ -1414,12 +1413,12 @@ msgid "" " your project or proposal" msgstr "" -#: ../../app/models/concerns/exportable_plan.rb:199 +#: ../../app/models/concerns/exportable_plan.rb:198 msgid "Not Answered" msgstr "" #: ../../app/models/concerns/validation_messages.rb:11 -#: ../../app/models/template.rb:226 +#: ../../app/models/template.rb:223 msgid "can't be blank" msgstr "can't be blank" @@ -1509,7 +1508,7 @@ msgstr "" msgid "private" msgstr "" -#: ../../app/models/plan.rb:617 +#: ../../app/models/plan.rb:615 msgid "must be after the start date" msgstr "" @@ -1553,51 +1552,51 @@ msgstr "" msgid "Invalid maximum pages" msgstr "" -#: ../../app/models/template.rb:254 +#: ../../app/models/template.rb:251 msgid "A historical template cannot be retrieved for being modified" msgstr "" -#: ../../app/models/template.rb:378 +#: ../../app/models/template.rb:375 msgid "generate_copy! requires an organisation target" msgstr "generate_copy! requires an organization target" -#: ../../app/models/template.rb:387 +#: ../../app/models/template.rb:384 msgid "Copy of %{template}" msgstr "" -#: ../../app/models/template.rb:394 +#: ../../app/models/template.rb:391 msgid "generate_version! requires a published template" msgstr "" -#: ../../app/models/template.rb:408 +#: ../../app/models/template.rb:405 msgid "customize! requires an organisation target" msgstr "customize! requires an organization target" -#: ../../app/models/template.rb:411 +#: ../../app/models/template.rb:408 msgid "customize! requires a template from a funder" msgstr "" -#: ../../app/models/template.rb:447 +#: ../../app/models/template.rb:444 msgid "You can not publish a published template. " msgstr "" -#: ../../app/models/template.rb:451 +#: ../../app/models/template.rb:448 msgid "You can not publish a historical version of this template. " msgstr "" -#: ../../app/models/template.rb:456 +#: ../../app/models/template.rb:453 msgid "You can not publish a template without phases. " msgstr "" -#: ../../app/models/template.rb:461 +#: ../../app/models/template.rb:458 msgid "You can not publish a template without sections in a phase. " msgstr "" -#: ../../app/models/template.rb:466 +#: ../../app/models/template.rb:463 msgid "You can not publish a template without questions in a section. " msgstr "" -#: ../../app/models/template.rb:470 +#: ../../app/models/template.rb:467 msgid "Conditions in the template refer backwards" msgstr "" @@ -1605,6 +1604,58 @@ msgstr "" msgid "A Data Management Plan in %{application_name} has been shared with you" msgstr "" +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 +#: ../../app/views/contributors/_form.html.erb:10 +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:8 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 +#: ../../app/views/org_admin/departments/edit.html.erb:14 +#: ../../app/views/org_admin/departments/new.html.erb:14 +#: ../../app/views/paginable/api_clients/_index.html.erb:6 +#: ../../app/views/paginable/contributors/_index.html.erb:7 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 +#: ../../app/views/paginable/themes/_index.html.erb:4 +#: ../../app/views/paginable/users/_index.html.erb:20 +#: ../../app/views/super_admin/api_clients/_form.html.erb:11 +msgid "Name" +msgstr "Name" + +#: ../../app/models/user/at_csv.rb:7 +msgid "E-Mail" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Created Date" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Last Activity" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/layouts/_branding.html.erb:71 +#: ../../app/views/org_admin/users/edit.html.erb:71 +#: ../../app/views/paginable/users/_index.html.erb:26 +#: ../../app/views/super_admin/users/edit.html.erb:105 +msgid "Plans" +msgstr "" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/users/_index.html.erb:27 +msgid "Current Privileges" +msgstr "" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/notifications/_index.html.erb:8 +#: ../../app/views/paginable/users/_index.html.erb:28 +#: ../../app/views/super_admin/notifications/_form.html.erb:34 +msgid "Active" +msgstr "" + +#: ../../app/models/user/at_csv.rb:8 +msgid "Department" +msgstr "" + #: ../../app/policies/api/v0/guidance_group_policy.rb:11 #: ../../app/policies/api/v0/guidance_policy.rb:11 #: ../../app/policies/api/v0/statistics_policy.rb:11 @@ -1800,7 +1851,7 @@ msgid "Please wait, Standards are loading" msgstr "" #: ../../app/views/answers/_new_edit.html.erb:68 -#: ../../app/views/contributors/_form.html.erb:94 +#: ../../app/views/contributors/_form.html.erb:95 #: ../../app/views/devise/passwords/edit.html.erb:35 #: ../../app/views/devise/registrations/_password_details.html.erb:31 #: ../../app/views/devise/registrations/_personal_details.html.erb:90 @@ -1821,7 +1872,7 @@ msgstr "" #: ../../app/views/plans/_edit_details.html.erb:11 #: ../../app/views/plans/_guidance_selection.html.erb:23 #: ../../app/views/questions/_preview_question.html.erb:111 -#: ../../app/views/research_outputs/_form.html.erb:177 +#: ../../app/views/research_outputs/_form.html.erb:178 #: ../../app/views/super_admin/api_clients/_form.html.erb:67 #: ../../app/views/super_admin/notifications/_form.html.erb:66 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -1862,20 +1913,6 @@ msgstr "" msgid "This answer triggers email(s) to " msgstr "" -#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 -#: ../../app/views/contributors/_form.html.erb:10 -#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 -#: ../../app/views/org_admin/departments/edit.html.erb:14 -#: ../../app/views/org_admin/departments/new.html.erb:14 -#: ../../app/views/paginable/api_clients/_index.html.erb:6 -#: ../../app/views/paginable/contributors/_index.html.erb:7 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 -#: ../../app/views/paginable/themes/_index.html.erb:4 -#: ../../app/views/paginable/users/_index.html.erb:20 -#: ../../app/views/super_admin/api_clients/_form.html.erb:11 -msgid "Name" -msgstr "Name" - #: ../../app/views/contact_us/contacts/_new_left.html.erb:13 #: ../../app/views/contact_us/contacts/_new_right.html.erb:23 #: ../../app/views/contributors/_form.html.erb:19 @@ -1885,7 +1922,7 @@ msgstr "Name" #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/contributors/_index.html.erb:11 #: ../../app/views/paginable/users/_index.html.erb:21 -#: ../../app/views/plans/_share_form.html.erb:107 +#: ../../app/views/plans/_share_form.html.erb:109 #: ../../app/views/shared/_create_account_form.html.erb:12 #: ../../app/views/shared/_sign_in_form.html.erb:3 #: ../../app/views/super_admin/users/edit.html.erb:15 @@ -1911,7 +1948,7 @@ msgid "Security check" msgstr "" #: ../../app/views/contact_us/contacts/_new_left.html.erb:43 -#: ../../app/views/plans/_share_form.html.erb:146 +#: ../../app/views/plans/_share_form.html.erb:148 msgid "Submit" msgstr "Submit" @@ -1936,8 +1973,8 @@ msgstr "" #: ../../app/views/contact_us/contacts/new.html.erb:10 #: ../../app/views/layouts/_branding.html.erb:41 -#: ../../app/views/layouts/_footer.html.erb:24 -#: ../../app/views/layouts/_footer.html.erb:30 +#: ../../app/views/layouts/_footer.html.erb:23 +#: ../../app/views/layouts/_footer.html.erb:29 #: ../../app/views/org_admin/plans/index.html.erb:40 #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:39 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:24 @@ -1980,7 +2017,7 @@ msgstr "" msgid "Roles" msgstr "" -#: ../../app/views/contributors/_form.html.erb:96 +#: ../../app/views/contributors/_form.html.erb:97 #: ../../app/views/layouts/modal_search/_result.html.erb:23 #: ../../app/views/notes/_archive.html.erb:10 #: ../../app/views/notes/_list.html.erb:16 @@ -1994,16 +2031,16 @@ msgstr "" #: ../../app/views/paginable/guidance_groups/_index.html.erb:56 #: ../../app/views/paginable/guidances/_index.html.erb:61 #: ../../app/views/paginable/orgs/_index.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:75 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:78 #: ../../app/views/paginable/research_outputs/_index.html.erb:53 #: ../../app/views/paginable/templates/_customisable.html.erb:67 #: ../../app/views/paginable/templates/_organisational.html.erb:74 -#: ../../app/views/plans/_share_form.html.erb:89 -#: ../../app/views/research_outputs/_form.html.erb:179 +#: ../../app/views/plans/_share_form.html.erb:91 +#: ../../app/views/research_outputs/_form.html.erb:180 msgid "Remove" msgstr "" -#: ../../app/views/contributors/_form.html.erb:99 +#: ../../app/views/contributors/_form.html.erb:100 #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:29 #: ../../app/views/guidances/new_edit.html.erb:50 #: ../../app/views/notes/_archive.html.erb:11 @@ -2014,7 +2051,7 @@ msgstr "" #: ../../app/views/org_admin/questions/_form.html.erb:105 #: ../../app/views/plans/_guidance_selection.html.erb:35 #: ../../app/views/plans/new.html.erb:124 -#: ../../app/views/research_outputs/_form.html.erb:182 +#: ../../app/views/research_outputs/_form.html.erb:183 #: ../../app/views/super_admin/api_clients/_form.html.erb:86 #: ../../app/views/super_admin/notifications/_form.html.erb:73 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -2194,16 +2231,16 @@ msgstr "" msgid "Hello" msgstr "" -#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 -msgid "Your" -msgstr "" - #: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 msgid "" "account has been locked due to an excessive number of unsuccessful sign in att" "empts." msgstr "" +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 +msgid "Your" +msgstr "" + #: ../../app/views/devise/mailer/unlock_instructions.html.erb:6 msgid "Click the link below to unlock your account" msgstr "" @@ -2431,7 +2468,6 @@ msgid "Do you have a %{application_name} account?" msgstr "" #: ../../app/views/devise/registrations/new.html.erb:22 -#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 @@ -2481,6 +2517,27 @@ msgid "" "this subset guidance when answering questions in the 'create plan' wizard." msgstr "" +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:15 +#: ../../app/views/org_admin/templates/_form.html.erb:35 +#: ../../app/views/org_admin/templates/_row.html.erb:10 +#: ../../app/views/org_admin/templates/_row.html.erb:13 +#: ../../app/views/org_admin/templates/_show.html.erb:19 +#: ../../app/views/org_admin/templates/_show.html.erb:22 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 +#: ../../app/views/paginable/guidances/_index.html.erb:37 +#: ../../app/views/paginable/templates/_customisable.html.erb:31 +#: ../../app/views/paginable/templates/_customisable.html.erb:34 +#: ../../app/views/paginable/templates/_history.html.erb:8 +#: ../../app/views/paginable/templates/_organisational.html.erb:36 +#: ../../app/views/paginable/templates/_organisational.html.erb:39 +msgid "Published" +msgstr "" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 +msgid "Optional subset" +msgstr "" + #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 msgid " (e.g. School/ Department) " msgstr "" @@ -2637,13 +2694,6 @@ msgstr "" msgid "Admin" msgstr "" -#: ../../app/views/layouts/_branding.html.erb:71 -#: ../../app/views/org_admin/users/edit.html.erb:71 -#: ../../app/views/paginable/users/_index.html.erb:26 -#: ../../app/views/super_admin/users/edit.html.erb:105 -msgid "Plans" -msgstr "" - #: ../../app/views/layouts/_branding.html.erb:77 #: ../../app/views/org_admin/templates/index.html.erb:4 #: ../../app/views/paginable/orgs/_index.html.erb:8 @@ -2711,11 +2761,7 @@ msgid "Privacy statement" msgstr "" #: ../../app/views/layouts/_footer.html.erb:17 -msgid "Accessibility statement" -msgstr "" - -#: ../../app/views/layouts/_footer.html.erb:18 -msgid "Github" +msgid "GitHub" msgstr "" #: ../../app/views/layouts/_navigation.html.erb:12 @@ -2797,49 +2843,49 @@ msgid "%{application_name}" msgstr "" #: ../../app/views/layouts/application.html.erb:91 -msgid "Error:" +msgid "Notice:" msgstr "" #: ../../app/views/layouts/application.html.erb:91 -msgid "Notice:" +msgid "Error:" msgstr "" #: ../../app/views/layouts/application.html.erb:102 msgid "Loading..." msgstr "" -#: ../../app/views/layouts/application.html.erb:122 +#: ../../app/views/layouts/application.html.erb:121 #: ../../app/views/plans/new.html.erb:2 msgid "This field is required." msgstr "" -#: ../../app/views/layouts/application.html.erb:124 +#: ../../app/views/layouts/application.html.erb:123 #: ../../app/views/shared/_create_account_form.html.erb:31 msgid "Show password" msgstr "" -#: ../../app/views/layouts/application.html.erb:125 +#: ../../app/views/layouts/application.html.erb:124 msgid "Select an organisation from the list." msgstr "Select an organization from the list." -#: ../../app/views/layouts/application.html.erb:126 +#: ../../app/views/layouts/application.html.erb:125 msgid "My organisation isn't listed" msgstr "My organization isn't listed" -#: ../../app/views/layouts/application.html.erb:128 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:39 +#: ../../app/views/layouts/application.html.erb:127 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:42 msgid "N/A" msgstr "" -#: ../../app/views/layouts/application.html.erb:132 +#: ../../app/views/layouts/application.html.erb:131 msgid "Hide list." msgstr "" -#: ../../app/views/layouts/application.html.erb:133 +#: ../../app/views/layouts/application.html.erb:132 msgid "See the full list of partner institutions." msgstr "" -#: ../../app/views/layouts/application.html.erb:135 +#: ../../app/views/layouts/application.html.erb:134 msgid "" "Unable to find a suitable template for the research organisation and funder yo" "u selected." @@ -2847,38 +2893,38 @@ msgstr "" "Unable to find a suitable template for the research organization and funder yo" "u selected." -#: ../../app/views/layouts/application.html.erb:136 +#: ../../app/views/layouts/application.html.erb:135 msgid "Please select a research organisation and funder to continue." msgstr "Please select a research organization and funder to continue." -#: ../../app/views/layouts/application.html.erb:138 +#: ../../app/views/layouts/application.html.erb:137 msgid "Loading ..." msgstr "" -#: ../../app/views/layouts/application.html.erb:139 +#: ../../app/views/layouts/application.html.erb:138 msgid "Unable to load the section's content at this time." msgstr "" -#: ../../app/views/layouts/application.html.erb:140 +#: ../../app/views/layouts/application.html.erb:139 msgid "Unable to load the question's content at this time." msgstr "" -#: ../../app/views/layouts/application.html.erb:141 +#: ../../app/views/layouts/application.html.erb:140 msgid "Opens in a new window" msgstr "" -#: ../../app/views/layouts/application.html.erb:143 +#: ../../app/views/layouts/application.html.erb:142 msgid "" "%{n} results are available, use up and down arrows to navigate suggestions. Us" "e the Enter key to select a suggestion or the Escape key to close the suggesti" "ons." msgstr "" -#: ../../app/views/layouts/application.html.erb:144 +#: ../../app/views/layouts/application.html.erb:143 msgid "No results are available for your entry." msgstr "" -#: ../../app/views/layouts/application.html.erb:145 +#: ../../app/views/layouts/application.html.erb:144 msgid "Searching ..." msgstr "" @@ -2892,7 +2938,7 @@ msgid "No results matched your filter criteria." msgstr "" #: ../../app/views/layouts/modal_search/_form.html.erb:41 -#: ../../app/views/layouts/modal_search/_form.html.erb:83 +#: ../../app/views/layouts/modal_search/_form.html.erb:84 msgid "Close" msgstr "" @@ -2900,7 +2946,7 @@ msgstr "" msgid "%{topic} search" msgstr "" -#: ../../app/views/layouts/modal_search/_form.html.erb:66 +#: ../../app/views/layouts/modal_search/_form.html.erb:67 msgid "Apply filter(s)" msgstr "" @@ -2936,7 +2982,7 @@ msgstr "" #: ../../app/views/paginable/guidance_groups/_index.html.erb:49 #: ../../app/views/paginable/guidances/_index.html.erb:54 #: ../../app/views/paginable/orgs/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:58 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 #: ../../app/views/paginable/research_outputs/_index.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:56 #: ../../app/views/paginable/templates/_organisational.html.erb:56 @@ -3200,13 +3246,13 @@ msgstr "" #: ../../app/views/paginable/orgs/_index.html.erb:10 #: ../../app/views/paginable/orgs/_index.html.erb:30 #: ../../app/views/paginable/plans/_privately_visible.html.erb:13 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:53 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:56 #: ../../app/views/paginable/research_outputs/_index.html.erb:23 #: ../../app/views/paginable/research_outputs/_index.html.erb:48 #: ../../app/views/paginable/templates/_customisable.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:10 #: ../../app/views/paginable/templates/_organisational.html.erb:53 -#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:53 msgid "Actions" msgstr "" @@ -3453,21 +3499,6 @@ msgstr "" msgid "Status" msgstr "" -#: ../../app/views/org_admin/templates/_form.html.erb:35 -#: ../../app/views/org_admin/templates/_row.html.erb:10 -#: ../../app/views/org_admin/templates/_row.html.erb:13 -#: ../../app/views/org_admin/templates/_show.html.erb:19 -#: ../../app/views/org_admin/templates/_show.html.erb:22 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 -#: ../../app/views/paginable/guidances/_index.html.erb:37 -#: ../../app/views/paginable/templates/_customisable.html.erb:31 -#: ../../app/views/paginable/templates/_customisable.html.erb:34 -#: ../../app/views/paginable/templates/_history.html.erb:8 -#: ../../app/views/paginable/templates/_organisational.html.erb:36 -#: ../../app/views/paginable/templates/_organisational.html.erb:39 -msgid "Published" -msgstr "" - #: ../../app/views/org_admin/templates/_form.html.erb:37 #: ../../app/views/org_admin/templates/_row.html.erb:16 #: ../../app/views/org_admin/templates/_show.html.erb:26 @@ -3813,7 +3844,7 @@ msgstr "" #: ../../app/views/orgs/admin_edit.html.erb:22 #: ../../app/views/plans/_navigation.html.erb:33 -#: ../../app/views/plans/_request_feedback_form.html.erb:13 +#: ../../app/views/plans/_request_feedback_form.html.erb:19 #: ../../app/views/static_pages/help.html.erb:45 msgid "Request feedback" msgstr "" @@ -3902,13 +3933,9 @@ msgid "" "ou sure?" msgstr "" -#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 -msgid "Optional subset" -msgstr "" - #: ../../app/views/paginable/guidance_groups/_index.html.erb:31 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:45 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:48 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:12 @@ -3916,8 +3943,8 @@ msgid "No" msgstr "" #: ../../app/views/paginable/guidance_groups/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:43 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:46 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:11 @@ -3963,12 +3990,6 @@ msgstr "" msgid "Expiration" msgstr "" -#: ../../app/views/paginable/notifications/_index.html.erb:8 -#: ../../app/views/paginable/users/_index.html.erb:28 -#: ../../app/views/super_admin/notifications/_form.html.erb:34 -msgid "Active" -msgstr "" - #: ../../app/views/paginable/orgs/_index.html.erb:6 msgid "Administrator Email" msgstr "" @@ -4024,8 +4045,8 @@ msgstr "" #: #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:21 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:73 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:9 #: ../../app/views/paginable/templates/_history.html.erb:6 #: ../../app/views/paginable/templates/_organisational.html.erb:2 @@ -4073,31 +4094,31 @@ msgstr "" msgid "Shared" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 #: ../../app/views/plans/_navigation.html.erb:28 msgid "Share" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:65 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:68 #: ../../app/views/paginable/templates/_organisational.html.erb:67 msgid "Copy" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 #: ../../app/views/paginable/templates/_history.html.erb:58 msgid "View" msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" -"Are you sure you wish to remove this public plan? This will remove it from the" -" Public DMPs page but any collaborators will still be able to access it." +"Are you sure you wish to remove this plan? Any collaborators will still be abl" +"e to access it." msgstr "" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" -"Are you sure you wish to remove this plan? Any collaborators will still be abl" -"e to access it." +"Are you sure you wish to remove this public plan? This will remove it from the" +" Public DMPs page but any collaborators will still be able to access it." msgstr "" #: ../../app/views/paginable/plans/_publicly_visible.html.erb:17 @@ -4246,10 +4267,6 @@ msgstr "" msgid "Last activity" msgstr "" -#: ../../app/views/paginable/users/_index.html.erb:27 -msgid "Current Privileges" -msgstr "" - #: ../../app/views/paginable/users/_index.html.erb:46 msgid "Edit Profile" msgstr "" @@ -4542,11 +4559,17 @@ msgstr "" msgid "Request expert feedback" msgstr "" -#: ../../app/views/plans/_request_feedback_form.html.erb:11 -msgid "You can continue to edit and download the plan in the interim." +#: ../../app/views/plans/_request_feedback_form.html.erb:9 +msgid "" +"Click below to give data management staff at %{owner_org}, the Plan Owner's or" +"g, access to read and comment on your plan." msgstr "" #: ../../app/views/plans/_request_feedback_form.html.erb:17 +msgid "You can continue to edit and download the plan in the interim." +msgstr "" + +#: ../../app/views/plans/_request_feedback_form.html.erb:23 msgid "Feedback has been requested." msgstr "" @@ -4562,7 +4585,7 @@ msgstr "" msgid "Set plan visibility" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:9 +#: ../../app/views/plans/_share_form.html.erb:13 msgid "" "Public or organisational visibility is intended for finished plans. You must a" "nswer at least %{percentage}%% of the questions to enable these options. Note:" @@ -4572,7 +4595,7 @@ msgstr "" "nswer at least %{percentage}%% of the questions to enable these options. Note:" " test plans are set to private visibility by default." -#: ../../app/views/plans/_share_form.html.erb:19 +#: ../../app/views/plans/_share_form.html.erb:21 msgid "" "Private: visible to me, specified collaborators and administrators at my organ" "isation" @@ -4580,39 +4603,39 @@ msgstr "" "Private: visible to me, specified collaborators and administrators at my organ" "ization" -#: ../../app/views/plans/_share_form.html.erb:27 +#: ../../app/views/plans/_share_form.html.erb:29 #: ../../app/views/user_mailer/plan_visibility.html.erb:12 msgid "Organisation: anyone at my organisation can view" msgstr "Organization: anyone at my organization can view" -#: ../../app/views/plans/_share_form.html.erb:35 +#: ../../app/views/plans/_share_form.html.erb:37 msgid "Public: anyone can view" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:42 +#: ../../app/views/plans/_share_form.html.erb:44 msgid "Manage collaborators" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:43 +#: ../../app/views/plans/_share_form.html.erb:45 msgid "" "Invite specific people to read, edit, or administer your plan. Invitees will r" "eceive an email notification that they have access to this plan." msgstr "" -#: ../../app/views/plans/_share_form.html.erb:48 +#: ../../app/views/plans/_share_form.html.erb:50 msgid "Email address" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:49 -#: ../../app/views/plans/_share_form.html.erb:122 +#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:124 msgid "Permissions" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:89 +#: ../../app/views/plans/_share_form.html.erb:91 msgid "Are you sure?" msgstr "" -#: ../../app/views/plans/_share_form.html.erb:100 +#: ../../app/views/plans/_share_form.html.erb:102 msgid "Invite collaborators" msgstr "" @@ -4794,6 +4817,10 @@ msgstr "" msgid "Please describe the output type" msgstr "" +#: ../../app/views/research_outputs/_form.html.erb:27 +msgid "Research output type" +msgstr "" + #: ../../app/views/research_outputs/_form.html.erb:44 msgid "Abbreviation" msgstr "" @@ -4834,10 +4861,15 @@ msgid "Initial access level" msgstr "" #: ../../app/views/research_outputs/_form.html.erb:158 +#: ../../app/views/research_outputs/_form.html.erb:164 #: ../../app/views/shared/export/_plan_outputs.erb:23 msgid "Anticipated file size" msgstr "" +#: ../../app/views/research_outputs/_form.html.erb:170 +msgid "File size units" +msgstr "" + #: ../../app/views/research_outputs/edit.html.erb:12 msgid "Editing %{research_output_title}" msgstr "" @@ -4855,11 +4887,12 @@ msgstr "" msgid "Add a research output" msgstr "" -#: ../../app/views/research_outputs/licenses/_form.html.erb:24 +#: ../../app/views/research_outputs/licenses/_form.html.erb:20 +#: ../../app/views/research_outputs/licenses/_form.html.erb:25 msgid "Initial license" msgstr "" -#: ../../app/views/research_outputs/licenses/_form.html.erb:30 +#: ../../app/views/research_outputs/licenses/_form.html.erb:31 msgid "For guidance on selecting a license:" msgstr "" @@ -4883,10 +4916,18 @@ msgstr "" msgid "- Select a subject area -" msgstr "" -#: ../../app/views/research_outputs/repositories/_search.html.erb:21 +#: ../../app/views/research_outputs/repositories/_search.html.erb:14 +msgid "Select a subject area" +msgstr "" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:22 msgid "- Select a repository type -" msgstr "" +#: ../../app/views/research_outputs/repositories/_search.html.erb:24 +msgid "Select a repository type" +msgstr "" + #: ../../app/views/research_outputs/repositories/_search_result.html.erb:20 msgid "Click to view repositories related to %{subject}" msgstr "" @@ -5186,11 +5227,11 @@ msgid "on the homepage." msgstr "" #: ../../app/views/static_pages/about_us.html.erb:35 -msgid "Please visit the" +msgid "page for guidance." msgstr "" #: ../../app/views/static_pages/about_us.html.erb:35 -msgid "page for guidance." +msgid "Please visit the" msgstr "" #: ../../app/views/static_pages/about_us.html.erb:37 @@ -5764,6 +5805,14 @@ msgstr "" msgid "Statistics on your Templates" msgstr "" +#: ../../app/views/usage/_total_usage.html.erb:7 +msgid "Total users" +msgstr "" + +#: ../../app/views/usage/_total_usage.html.erb:11 +msgid "Total plans" +msgstr "" + #: ../../app/views/usage/_total_usage.html.erb:15 msgid "Excluding Test Plans" msgstr "" @@ -5892,13 +5941,17 @@ msgstr "" msgid "Hello %{user_name}," msgstr "" -#: ../../app/views/user_mailer/feedback_notification.html.erb:5 +#: ../../app/views/user_mailer/feedback_notification.html.erb:6 msgid "" "%{requestor} has requested feedback on a plan %{link_html}. To add comments, p" -"lease visit the 'Plans' page under the Admin menu in %{tool_name} and open the" +"lease visit the \"Plans\" page under the Admin menu in %{tool_name} and open the" " plan." msgstr "" +#: ../../app/views/user_mailer/feedback_notification.html.erb:17 +msgid "Alternatively, you can click the link below:" +msgstr "" + #: ../../app/views/user_mailer/new_comment.html.erb:5 msgid "" "%{commenter_name} has commented on your plan %{plan_title}. To view the commen" @@ -5977,19 +6030,19 @@ msgid "Hello %{recipient_name}," msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " is creating a Data Management Plan and has answered " +msgid " to " msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " to " +msgid " based on the template " msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " in a plan called " +msgid " is creating a Data Management Plan and has answered " msgstr "" #: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " based on the template " +msgid " in a plan called " msgstr "" #: ../../app/views/user_mailer/sharing_notification.html.erb:5 @@ -6135,11 +6188,11 @@ msgid "Download users" msgstr "" #: ../../app/views/users/refresh_token.js.erb:1 -msgid "Successfully regenerate your API token." +msgid "Unable to regenerate your API token." msgstr "" #: ../../app/views/users/refresh_token.js.erb:1 -msgid "Unable to regenerate your API token." +msgid "Successfully regenerate your API token." msgstr "" #: i18n_placeholders.rb:4 diff --git a/config/locale/es/LC_MESSAGES/app.mo b/config/locale/es/LC_MESSAGES/app.mo index d47919515db8e1a82363ae37f6a98bde4ee72f8d..da5bb85252c7dc022ad0fde441fae0fd8ab5c282 100644 GIT binary patch delta 27002 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 delta 26244 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 Lu2vTJi{k$Wy9=j8 diff --git a/config/locale/es/app.po b/config/locale/es/app.po index ab5c1a6584..a7b3ef820d 100644 --- a/config/locale/es/app.po +++ b/config/locale/es/app.po @@ -1,14 +1,14 @@ -# Spanish translations for app package. -# Copyright (C) 2022 app -# This file is distributed under the same license as the app package. +# Spanish translations for DMPRoadmap-Development package. +# Copyright (C) 2022 DMPRoadmap-Development +# This file is distributed under the same license as the DMPRoadmap-Development package. # FIRST AUTHOR , 2022. # msgid "" msgstr "" -"Project-Id-Version: app 1.0\n" +"Project-Id-Version: DMPRoadmap-Development 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2022-10-25 16:02+0000\n" -"PO-Revision-Date: 2022-10-25 18:03+0200\n" +"POT-Creation-Date: 2022-11-30 14:11-0500\n" +"PO-Revision-Date: 2022-11-30 20:11+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: Spanish\n" "Language: es\n" @@ -263,7 +263,7 @@ msgstr "Adicional" #: ../../app/controllers/contributors_controller.rb:72 #: ../../app/controllers/guidance_groups_controller.rb:55 #: ../../app/controllers/guidances_controller.rb:75 -#: ../../app/controllers/notes_controller.rb:89 +#: ../../app/controllers/notes_controller.rb:88 #: ../../app/controllers/org_admin/departments_controller.rb:50 #: ../../app/controllers/org_admin/sections_controller.rb:103 #: ../../app/controllers/org_admin/templates_controller.rb:205 @@ -283,7 +283,7 @@ msgstr "Guardado" #: ../../app/controllers/contributors_controller.rb:74 #: ../../app/controllers/guidance_groups_controller.rb:57 #: ../../app/controllers/guidances_controller.rb:77 -#: ../../app/controllers/notes_controller.rb:107 +#: ../../app/controllers/notes_controller.rb:106 #: ../../app/controllers/org_admin/departments_controller.rb:52 #: ../../app/controllers/org_admin/sections_controller.rb:105 #: ../../app/controllers/org_admin/templates_controller.rb:210 @@ -299,7 +299,7 @@ msgid "save" msgstr "Guardar" #: ../../app/controllers/contributors_controller.rb:84 -#: ../../app/controllers/notes_controller.rb:131 +#: ../../app/controllers/notes_controller.rb:130 #: ../../app/controllers/org_admin/templates_controller.rb:238 #: ../../app/controllers/research_outputs_controller.rb:74 #: ../../app/controllers/super_admin/orgs_controller.rb:94 @@ -307,7 +307,7 @@ msgid "removed" msgstr "remoto" #: ../../app/controllers/contributors_controller.rb:87 -#: ../../app/controllers/notes_controller.rb:149 +#: ../../app/controllers/notes_controller.rb:148 #: ../../app/controllers/org_admin/templates_controller.rb:240 #: ../../app/controllers/research_outputs_controller.rb:77 #: ../../app/controllers/super_admin/orgs_controller.rb:97 @@ -333,7 +333,7 @@ msgstr "Se produjo un error al solicitar comentarios para este plan." #: ../../app/controllers/guidance_groups_controller.rb:31 #: ../../app/controllers/guidances_controller.rb:53 -#: ../../app/controllers/notes_controller.rb:48 +#: ../../app/controllers/notes_controller.rb:47 #: ../../app/controllers/org_admin/departments_controller.rb:26 #: ../../app/controllers/org_admin/phases_controller.rb:121 #: ../../app/controllers/org_admin/questions_controller.rb:94 @@ -349,7 +349,7 @@ msgstr "creado" #: ../../app/controllers/guidance_groups_controller.rb:34 #: ../../app/controllers/guidances_controller.rb:55 -#: ../../app/controllers/notes_controller.rb:67 +#: ../../app/controllers/notes_controller.rb:66 #: ../../app/controllers/org_admin/departments_controller.rb:30 #: ../../app/controllers/org_admin/phases_controller.rb:123 #: ../../app/controllers/org_admin/questions_controller.rb:96 @@ -1138,17 +1138,17 @@ msgid "Owner" msgstr "Propietario" #: ../../app/helpers/plans_helper.rb:10 -#: ../../app/views/plans/_share_form.html.erb:127 +#: ../../app/views/plans/_share_form.html.erb:129 msgid "Co-owner" msgstr "Co-propietario" #: ../../app/helpers/plans_helper.rb:12 -#: ../../app/views/plans/_share_form.html.erb:133 +#: ../../app/views/plans/_share_form.html.erb:135 msgid "Editor" msgstr "Editor" #: ../../app/helpers/plans_helper.rb:14 -#: ../../app/views/plans/_share_form.html.erb:139 +#: ../../app/views/plans/_share_form.html.erb:141 msgid "Read only" msgstr "Sólo lectura" @@ -1157,7 +1157,7 @@ msgid "Public" msgstr "Público" #: ../../app/helpers/plans_helper.rb:26 ../../app/helpers/plans_helper.rb:28 -#: ../../app/views/layouts/application.html.erb:129 +#: ../../app/views/layouts/application.html.erb:128 msgid "Private" msgstr "Privado" @@ -1170,7 +1170,7 @@ msgid "Public: anyone can view." msgstr "Público: cualquiera puede ver." #: ../../app/helpers/plans_helper.rb:39 -#: ../../app/views/layouts/application.html.erb:130 +#: ../../app/views/layouts/application.html.erb:129 msgid "Private: restricted to me and people I invite." msgstr "Privado: restringido a mí y a las personas que invito." @@ -1397,62 +1397,61 @@ msgid "Affiliation: " msgstr "Afiliación:" #: ../../app/models/concerns/exportable_plan.rb:163 -#: ../../app/models/concerns/exportable_plan.rb:164 msgid "%{affiliation}" msgstr "%{affiliation}" -#: ../../app/models/concerns/exportable_plan.rb:166 -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:165 +#: ../../app/models/concerns/exportable_plan.rb:167 #: ../../app/views/shared/export/_plan_coversheet.erb:32 #: ../../app/views/shared/export/_plan_txt.erb:22 #: ../../app/views/shared/export/_plan_txt.erb:24 msgid "Template: " msgstr "Modelo:" -#: ../../app/models/concerns/exportable_plan.rb:166 +#: ../../app/models/concerns/exportable_plan.rb:165 msgid "%{funder}" msgstr "%{funder}" -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:167 msgid "%{template}" msgstr "%{template}" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 #: ../../app/views/shared/export/_plan_txt.erb:27 msgid "Grant number: " msgstr "Conceder número:" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 msgid "%{grant_number}" msgstr "%{grant_number}" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 #: ../../app/views/shared/export/_plan_coversheet.erb:42 #: ../../app/views/shared/export/_plan_txt.erb:30 msgid "Project abstract: " msgstr "Resumen del proyecto:" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 msgid "%{description}" msgstr "%{description}" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 #: ../../app/views/shared/export/_plan_coversheet.erb:58 #: ../../app/views/shared/export/_plan_txt.erb:33 msgid "Last modified: " msgstr "Última modificación:" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 msgid "%{date}" msgstr "%{date}" -#: ../../app/models/concerns/exportable_plan.rb:175 +#: ../../app/models/concerns/exportable_plan.rb:174 #: ../../app/views/shared/export/_plan_coversheet.erb:65 #: ../../app/views/shared/export/_plan_txt.erb:34 msgid "Copyright information:" msgstr "Informacion registrada:" -#: ../../app/models/concerns/exportable_plan.rb:176 +#: ../../app/models/concerns/exportable_plan.rb:175 msgid "" "The above plan creator(s) have agreed that others may use as\n" " much of the text of this plan as they would like in their own pla" @@ -1476,12 +1475,12 @@ msgstr "" "alguna con\n" "             tu proyecto o propuesta" -#: ../../app/models/concerns/exportable_plan.rb:199 +#: ../../app/models/concerns/exportable_plan.rb:198 msgid "Not Answered" msgstr "Sin respuesta" #: ../../app/models/concerns/validation_messages.rb:11 -#: ../../app/models/template.rb:226 +#: ../../app/models/template.rb:223 msgid "can't be blank" msgstr "no puede estar en blanco" @@ -1571,7 +1570,7 @@ msgstr "Prueba" msgid "private" msgstr "Privado" -#: ../../app/models/plan.rb:617 +#: ../../app/models/plan.rb:615 msgid "must be after the start date" msgstr "debe ser posterior a la fecha de inicio" @@ -1617,51 +1616,51 @@ msgstr "Valores de formato desconocidos" msgid "Invalid maximum pages" msgstr "Número de páginas inválido" -#: ../../app/models/template.rb:254 +#: ../../app/models/template.rb:251 msgid "A historical template cannot be retrieved for being modified" msgstr "No se puede recuperar una plantilla histórica para modificarla." -#: ../../app/models/template.rb:378 +#: ../../app/models/template.rb:375 msgid "generate_copy! requires an organisation target" msgstr "generar_copia! requiere un objetivo de organización" -#: ../../app/models/template.rb:387 +#: ../../app/models/template.rb:384 msgid "Copy of %{template}" msgstr "Copia de %{template}" -#: ../../app/models/template.rb:394 +#: ../../app/models/template.rb:391 msgid "generate_version! requires a published template" msgstr "generar_versión! requiere una plantilla publicada" -#: ../../app/models/template.rb:408 +#: ../../app/models/template.rb:405 msgid "customize! requires an organisation target" msgstr "personalizar requiere un objetivo de organización" -#: ../../app/models/template.rb:411 +#: ../../app/models/template.rb:408 msgid "customize! requires a template from a funder" msgstr "personalizar requiere una plantilla de un financiador" -#: ../../app/models/template.rb:447 +#: ../../app/models/template.rb:444 msgid "You can not publish a published template. " msgstr "No se puede publicar una plantilla publicada." -#: ../../app/models/template.rb:451 +#: ../../app/models/template.rb:448 msgid "You can not publish a historical version of this template. " msgstr "No se puede publicar una versión histórica de esta plantilla." -#: ../../app/models/template.rb:456 +#: ../../app/models/template.rb:453 msgid "You can not publish a template without phases. " msgstr "No puedes publicar una plantilla sin fases." -#: ../../app/models/template.rb:461 +#: ../../app/models/template.rb:458 msgid "You can not publish a template without sections in a phase. " msgstr "No se puede publicar una plantilla sin secciones en una fase." -#: ../../app/models/template.rb:466 +#: ../../app/models/template.rb:463 msgid "You can not publish a template without questions in a section. " msgstr "No se puede publicar una plantilla sin preguntas en una sección." -#: ../../app/models/template.rb:470 +#: ../../app/models/template.rb:467 msgid "Conditions in the template refer backwards" msgstr "Las condiciones en la plantilla se refieren al revés" @@ -1669,6 +1668,58 @@ msgstr "Las condiciones en la plantilla se refieren al revés" msgid "A Data Management Plan in %{application_name} has been shared with you" msgstr "Se ha compartido un plan de gestión de datos en %{application_name} con usted" +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 +#: ../../app/views/contributors/_form.html.erb:10 +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:8 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 +#: ../../app/views/org_admin/departments/edit.html.erb:14 +#: ../../app/views/org_admin/departments/new.html.erb:14 +#: ../../app/views/paginable/api_clients/_index.html.erb:6 +#: ../../app/views/paginable/contributors/_index.html.erb:7 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 +#: ../../app/views/paginable/themes/_index.html.erb:4 +#: ../../app/views/paginable/users/_index.html.erb:20 +#: ../../app/views/super_admin/api_clients/_form.html.erb:11 +msgid "Name" +msgstr "Nombre" + +#: ../../app/models/user/at_csv.rb:7 +msgid "E-Mail" +msgstr "Email" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Created Date" +msgstr "Fecha de creación" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Last Activity" +msgstr "Última actividad" + +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/layouts/_branding.html.erb:71 +#: ../../app/views/org_admin/users/edit.html.erb:71 +#: ../../app/views/paginable/users/_index.html.erb:26 +#: ../../app/views/super_admin/users/edit.html.erb:105 +msgid "Plans" +msgstr "Planes" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/users/_index.html.erb:27 +msgid "Current Privileges" +msgstr "Privilegios actuales" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/notifications/_index.html.erb:8 +#: ../../app/views/paginable/users/_index.html.erb:28 +#: ../../app/views/super_admin/notifications/_form.html.erb:34 +msgid "Active" +msgstr "Activo" + +#: ../../app/models/user/at_csv.rb:8 +msgid "Department" +msgstr "Departamento" + #: ../../app/policies/api/v0/guidance_group_policy.rb:11 #: ../../app/policies/api/v0/guidance_policy.rb:11 #: ../../app/policies/api/v0/statistics_policy.rb:11 @@ -1878,7 +1929,7 @@ msgid "Please wait, Standards are loading" msgstr "Por favor espere, los estándares se están cargando." #: ../../app/views/answers/_new_edit.html.erb:68 -#: ../../app/views/contributors/_form.html.erb:94 +#: ../../app/views/contributors/_form.html.erb:95 #: ../../app/views/devise/passwords/edit.html.erb:35 #: ../../app/views/devise/registrations/_password_details.html.erb:31 #: ../../app/views/devise/registrations/_personal_details.html.erb:90 @@ -1899,7 +1950,7 @@ msgstr "Por favor espere, los estándares se están cargando." #: ../../app/views/plans/_edit_details.html.erb:11 #: ../../app/views/plans/_guidance_selection.html.erb:23 #: ../../app/views/questions/_preview_question.html.erb:111 -#: ../../app/views/research_outputs/_form.html.erb:177 +#: ../../app/views/research_outputs/_form.html.erb:178 #: ../../app/views/super_admin/api_clients/_form.html.erb:67 #: ../../app/views/super_admin/notifications/_form.html.erb:66 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -1940,20 +1991,6 @@ msgstr " preguntas de tu plan." msgid "This answer triggers email(s) to " msgstr "Esta respuesta activa los correos electrónicos a" -#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 -#: ../../app/views/contributors/_form.html.erb:10 -#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 -#: ../../app/views/org_admin/departments/edit.html.erb:14 -#: ../../app/views/org_admin/departments/new.html.erb:14 -#: ../../app/views/paginable/api_clients/_index.html.erb:6 -#: ../../app/views/paginable/contributors/_index.html.erb:7 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 -#: ../../app/views/paginable/themes/_index.html.erb:4 -#: ../../app/views/paginable/users/_index.html.erb:20 -#: ../../app/views/super_admin/api_clients/_form.html.erb:11 -msgid "Name" -msgstr "Nombre" - #: ../../app/views/contact_us/contacts/_new_left.html.erb:13 #: ../../app/views/contact_us/contacts/_new_right.html.erb:23 #: ../../app/views/contributors/_form.html.erb:19 @@ -1963,7 +2000,7 @@ msgstr "Nombre" #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/contributors/_index.html.erb:11 #: ../../app/views/paginable/users/_index.html.erb:21 -#: ../../app/views/plans/_share_form.html.erb:107 +#: ../../app/views/plans/_share_form.html.erb:109 #: ../../app/views/shared/_create_account_form.html.erb:12 #: ../../app/views/shared/_sign_in_form.html.erb:3 #: ../../app/views/super_admin/users/edit.html.erb:15 @@ -1989,7 +2026,7 @@ msgid "Security check" msgstr "Control de seguridad" #: ../../app/views/contact_us/contacts/_new_left.html.erb:43 -#: ../../app/views/plans/_share_form.html.erb:146 +#: ../../app/views/plans/_share_form.html.erb:148 msgid "Submit" msgstr "Enviar" @@ -2020,8 +2057,8 @@ msgstr "" #: ../../app/views/contact_us/contacts/new.html.erb:10 #: ../../app/views/layouts/_branding.html.erb:41 -#: ../../app/views/layouts/_footer.html.erb:24 -#: ../../app/views/layouts/_footer.html.erb:30 +#: ../../app/views/layouts/_footer.html.erb:23 +#: ../../app/views/layouts/_footer.html.erb:29 #: ../../app/views/org_admin/plans/index.html.erb:40 #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:39 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:24 @@ -2064,7 +2101,7 @@ msgstr "Afiliación" msgid "Roles" msgstr "Roles" -#: ../../app/views/contributors/_form.html.erb:96 +#: ../../app/views/contributors/_form.html.erb:97 #: ../../app/views/layouts/modal_search/_result.html.erb:23 #: ../../app/views/notes/_archive.html.erb:10 #: ../../app/views/notes/_list.html.erb:16 @@ -2078,16 +2115,16 @@ msgstr "Roles" #: ../../app/views/paginable/guidance_groups/_index.html.erb:56 #: ../../app/views/paginable/guidances/_index.html.erb:61 #: ../../app/views/paginable/orgs/_index.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:75 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:78 #: ../../app/views/paginable/research_outputs/_index.html.erb:53 #: ../../app/views/paginable/templates/_customisable.html.erb:67 #: ../../app/views/paginable/templates/_organisational.html.erb:74 -#: ../../app/views/plans/_share_form.html.erb:89 -#: ../../app/views/research_outputs/_form.html.erb:179 +#: ../../app/views/plans/_share_form.html.erb:91 +#: ../../app/views/research_outputs/_form.html.erb:180 msgid "Remove" msgstr "Borrar" -#: ../../app/views/contributors/_form.html.erb:99 +#: ../../app/views/contributors/_form.html.erb:100 #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:29 #: ../../app/views/guidances/new_edit.html.erb:50 #: ../../app/views/notes/_archive.html.erb:11 @@ -2098,7 +2135,7 @@ msgstr "Borrar" #: ../../app/views/org_admin/questions/_form.html.erb:105 #: ../../app/views/plans/_guidance_selection.html.erb:35 #: ../../app/views/plans/new.html.erb:124 -#: ../../app/views/research_outputs/_form.html.erb:182 +#: ../../app/views/research_outputs/_form.html.erb:183 #: ../../app/views/super_admin/api_clients/_form.html.erb:86 #: ../../app/views/super_admin/notifications/_form.html.erb:73 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -2292,10 +2329,6 @@ msgstr "" msgid "Hello" msgstr "Hola" -#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 -msgid "Your" -msgstr "Tu" - #: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 msgid "" "account has been locked due to an excessive number of unsuccessful sign in att" @@ -2304,6 +2337,10 @@ msgstr "" "la cuenta se ha bloqueado debido a un número excesivo de intentos de inicio de" " sesión fallidos." +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 +msgid "Your" +msgstr "Tu" + #: ../../app/views/devise/mailer/unlock_instructions.html.erb:6 msgid "Click the link below to unlock your account" msgstr "Haga clic en el enlace de abajo para desbloquear su cuenta" @@ -2552,7 +2589,6 @@ msgid "Do you have a %{application_name} account?" msgstr "¿Tienes una cuenta %{application_name}?" #: ../../app/views/devise/registrations/new.html.erb:22 -#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 @@ -2608,6 +2644,27 @@ msgstr "" "ces de seleccionar esta guía cuando respondan sus preguntas durante la creació" "n del plan." +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:15 +#: ../../app/views/org_admin/templates/_form.html.erb:35 +#: ../../app/views/org_admin/templates/_row.html.erb:10 +#: ../../app/views/org_admin/templates/_row.html.erb:13 +#: ../../app/views/org_admin/templates/_show.html.erb:19 +#: ../../app/views/org_admin/templates/_show.html.erb:22 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 +#: ../../app/views/paginable/guidances/_index.html.erb:37 +#: ../../app/views/paginable/templates/_customisable.html.erb:31 +#: ../../app/views/paginable/templates/_customisable.html.erb:34 +#: ../../app/views/paginable/templates/_history.html.erb:8 +#: ../../app/views/paginable/templates/_organisational.html.erb:36 +#: ../../app/views/paginable/templates/_organisational.html.erb:39 +msgid "Published" +msgstr "Publicado" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 +msgid "Optional subset" +msgstr "Subconjunto opcional" + #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 msgid " (e.g. School/ Department) " msgstr " (por ejemplo, escuela / departamento)" @@ -2778,13 +2835,6 @@ msgstr "Anterior" msgid "Admin" msgstr "Administración" -#: ../../app/views/layouts/_branding.html.erb:71 -#: ../../app/views/org_admin/users/edit.html.erb:71 -#: ../../app/views/paginable/users/_index.html.erb:26 -#: ../../app/views/super_admin/users/edit.html.erb:105 -msgid "Plans" -msgstr "Planes" - #: ../../app/views/layouts/_branding.html.erb:77 #: ../../app/views/org_admin/templates/index.html.erb:4 #: ../../app/views/paginable/orgs/_index.html.erb:8 @@ -2852,11 +2902,7 @@ msgid "Privacy statement" msgstr "Declaracion de privacidad" #: ../../app/views/layouts/_footer.html.erb:17 -msgid "Accessibility statement" -msgstr "Declaración de accesibilidad" - -#: ../../app/views/layouts/_footer.html.erb:18 -msgid "Github" +msgid "GitHub" msgstr "Github" #: ../../app/views/layouts/_navigation.html.erb:12 @@ -2937,50 +2983,50 @@ msgstr "Cerrar Sesión" msgid "%{application_name}" msgstr "DMPonline" -#: ../../app/views/layouts/application.html.erb:91 -msgid "Error:" -msgstr "Error:" - #: ../../app/views/layouts/application.html.erb:91 msgid "Notice:" msgstr "Darse cuenta:" +#: ../../app/views/layouts/application.html.erb:91 +msgid "Error:" +msgstr "Error:" + #: ../../app/views/layouts/application.html.erb:102 msgid "Loading..." msgstr "Cargando..." -#: ../../app/views/layouts/application.html.erb:122 +#: ../../app/views/layouts/application.html.erb:121 #: ../../app/views/plans/new.html.erb:2 msgid "This field is required." msgstr "Este campo es requerido." -#: ../../app/views/layouts/application.html.erb:124 +#: ../../app/views/layouts/application.html.erb:123 #: ../../app/views/shared/_create_account_form.html.erb:31 msgid "Show password" msgstr "Mostrar contraseña" -#: ../../app/views/layouts/application.html.erb:125 +#: ../../app/views/layouts/application.html.erb:124 msgid "Select an organisation from the list." msgstr "Seleccione una organización de la lista." -#: ../../app/views/layouts/application.html.erb:126 +#: ../../app/views/layouts/application.html.erb:125 msgid "My organisation isn't listed" msgstr "Mi organización no está en la lista" -#: ../../app/views/layouts/application.html.erb:128 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:39 +#: ../../app/views/layouts/application.html.erb:127 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:42 msgid "N/A" msgstr "N / A" -#: ../../app/views/layouts/application.html.erb:132 +#: ../../app/views/layouts/application.html.erb:131 msgid "Hide list." msgstr "Ocultar lista" -#: ../../app/views/layouts/application.html.erb:133 +#: ../../app/views/layouts/application.html.erb:132 msgid "See the full list of partner institutions." msgstr "Vea la lista completa de instituciones asociadas." -#: ../../app/views/layouts/application.html.erb:135 +#: ../../app/views/layouts/application.html.erb:134 msgid "" "Unable to find a suitable template for the research organisation and funder yo" "u selected." @@ -2988,29 +3034,29 @@ msgstr "" "No se puede encontrar una plantilla adecuada para la organización de investiga" "ción y el financiador que seleccionó." -#: ../../app/views/layouts/application.html.erb:136 +#: ../../app/views/layouts/application.html.erb:135 msgid "Please select a research organisation and funder to continue." msgstr "" "Por favor seleccione una organización de investigación y financiador para cont" "inuar." -#: ../../app/views/layouts/application.html.erb:138 +#: ../../app/views/layouts/application.html.erb:137 msgid "Loading ..." msgstr "Cargando ..." -#: ../../app/views/layouts/application.html.erb:139 +#: ../../app/views/layouts/application.html.erb:138 msgid "Unable to load the section's content at this time." msgstr "No se puede cargar el contenido de la sección en este momento." -#: ../../app/views/layouts/application.html.erb:140 +#: ../../app/views/layouts/application.html.erb:139 msgid "Unable to load the question's content at this time." msgstr "No se puede cargar el contenido de la pregunta en este momento." -#: ../../app/views/layouts/application.html.erb:141 +#: ../../app/views/layouts/application.html.erb:140 msgid "Opens in a new window" msgstr "Se abre en una nueva ventana" -#: ../../app/views/layouts/application.html.erb:143 +#: ../../app/views/layouts/application.html.erb:142 msgid "" "%{n} results are available, use up and down arrows to navigate suggestions. Us" "e the Enter key to select a suggestion or the Escape key to close the suggesti" @@ -3020,11 +3066,11 @@ msgstr "" " abajo para navegar por las sugerencias. Use la tecla Intro para seleccionar u" "na sugerencia o la tecla Escape para cerrar las sugerencias." -#: ../../app/views/layouts/application.html.erb:144 +#: ../../app/views/layouts/application.html.erb:143 msgid "No results are available for your entry." msgstr "No hay resultados disponibles para su entrada." -#: ../../app/views/layouts/application.html.erb:145 +#: ../../app/views/layouts/application.html.erb:144 msgid "Searching ..." msgstr "Buscando ..." @@ -3038,7 +3084,7 @@ msgid "No results matched your filter criteria." msgstr "Ningún resultado coincidió con sus criterios de filtro." #: ../../app/views/layouts/modal_search/_form.html.erb:41 -#: ../../app/views/layouts/modal_search/_form.html.erb:83 +#: ../../app/views/layouts/modal_search/_form.html.erb:84 msgid "Close" msgstr "Cerrar" @@ -3046,7 +3092,7 @@ msgstr "Cerrar" msgid "%{topic} search" msgstr "%{topic} búsqueda" -#: ../../app/views/layouts/modal_search/_form.html.erb:66 +#: ../../app/views/layouts/modal_search/_form.html.erb:67 msgid "Apply filter(s)" msgstr "Aplicar filtro(s)" @@ -3082,7 +3128,7 @@ msgstr "Agregar comentario" #: ../../app/views/paginable/guidance_groups/_index.html.erb:49 #: ../../app/views/paginable/guidances/_index.html.erb:54 #: ../../app/views/paginable/orgs/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:58 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 #: ../../app/views/paginable/research_outputs/_index.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:56 #: ../../app/views/paginable/templates/_organisational.html.erb:56 @@ -3356,13 +3402,13 @@ msgstr "Escribe" #: ../../app/views/paginable/orgs/_index.html.erb:10 #: ../../app/views/paginable/orgs/_index.html.erb:30 #: ../../app/views/paginable/plans/_privately_visible.html.erb:13 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:53 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:56 #: ../../app/views/paginable/research_outputs/_index.html.erb:23 #: ../../app/views/paginable/research_outputs/_index.html.erb:48 #: ../../app/views/paginable/templates/_customisable.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:10 #: ../../app/views/paginable/templates/_organisational.html.erb:53 -#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:53 msgid "Actions" msgstr "Acciones" @@ -3637,21 +3683,6 @@ msgstr "solo para uso interno %{org_name}" msgid "Status" msgstr "Estado" -#: ../../app/views/org_admin/templates/_form.html.erb:35 -#: ../../app/views/org_admin/templates/_row.html.erb:10 -#: ../../app/views/org_admin/templates/_row.html.erb:13 -#: ../../app/views/org_admin/templates/_show.html.erb:19 -#: ../../app/views/org_admin/templates/_show.html.erb:22 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 -#: ../../app/views/paginable/guidances/_index.html.erb:37 -#: ../../app/views/paginable/templates/_customisable.html.erb:31 -#: ../../app/views/paginable/templates/_customisable.html.erb:34 -#: ../../app/views/paginable/templates/_history.html.erb:8 -#: ../../app/views/paginable/templates/_organisational.html.erb:36 -#: ../../app/views/paginable/templates/_organisational.html.erb:39 -msgid "Published" -msgstr "Publicado" - #: ../../app/views/org_admin/templates/_form.html.erb:37 #: ../../app/views/org_admin/templates/_row.html.erb:16 #: ../../app/views/org_admin/templates/_show.html.erb:26 @@ -4021,7 +4052,7 @@ msgstr "información del perfil" #: ../../app/views/orgs/admin_edit.html.erb:22 #: ../../app/views/plans/_navigation.html.erb:33 -#: ../../app/views/plans/_request_feedback_form.html.erb:13 +#: ../../app/views/plans/_request_feedback_form.html.erb:19 #: ../../app/views/static_pages/help.html.erb:45 msgid "Request feedback" msgstr "Solicitar comentarios" @@ -4114,13 +4145,9 @@ msgstr "" "Está a punto de eliminar '%{department_name}'. Esto afectará la orientación. ¿" "Estás seguro?" -#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 -msgid "Optional subset" -msgstr "Subconjunto opcional" - #: ../../app/views/paginable/guidance_groups/_index.html.erb:31 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:45 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:48 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:12 @@ -4128,8 +4155,8 @@ msgid "No" msgstr "No" #: ../../app/views/paginable/guidance_groups/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:43 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:46 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:11 @@ -4177,12 +4204,6 @@ msgstr "comienzo" msgid "Expiration" msgstr "Caducidad" -#: ../../app/views/paginable/notifications/_index.html.erb:8 -#: ../../app/views/paginable/users/_index.html.erb:28 -#: ../../app/views/super_admin/notifications/_form.html.erb:34 -msgid "Active" -msgstr "Activo" - #: ../../app/views/paginable/orgs/_index.html.erb:6 msgid "Administrator Email" msgstr "Email del administrador" @@ -4248,8 +4269,8 @@ msgstr "creado" #: #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:21 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:73 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:9 #: ../../app/views/paginable/templates/_history.html.erb:6 #: ../../app/views/paginable/templates/_organisational.html.erb:2 @@ -4297,30 +4318,22 @@ msgstr "Papel" msgid "Shared" msgstr "Compartido" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 #: ../../app/views/plans/_navigation.html.erb:28 msgid "Share" msgstr "Compartir" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:65 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:68 #: ../../app/views/paginable/templates/_organisational.html.erb:67 msgid "Copy" msgstr "Dupdo" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 #: ../../app/views/paginable/templates/_history.html.erb:58 msgid "View" msgstr "Ver" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 -msgid "" -"Are you sure you wish to remove this public plan? This will remove it from the" -" Public DMPs page but any collaborators will still be able to access it." -msgstr "" -"¿Estás seguro de que deseas eliminar este plan público? Esto lo eliminará de l" -"a página de DMP públicos, pero cualquier colaborador podrá acceder a él." - -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" "Are you sure you wish to remove this plan? Any collaborators will still be abl" "e to access it." @@ -4328,6 +4341,14 @@ msgstr "" "¿Estás seguro de que deseas eliminar este plan? Cualquier colaborador podrá se" "guir accediendo." +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 +msgid "" +"Are you sure you wish to remove this public plan? This will remove it from the" +" Public DMPs page but any collaborators will still be able to access it." +msgstr "" +"¿Estás seguro de que deseas eliminar este plan público? Esto lo eliminará de l" +"a página de DMP públicos, pero cualquier colaborador podrá acceder a él." + #: ../../app/views/paginable/plans/_publicly_visible.html.erb:17 msgid "Not Applicable" msgstr "No aplica" @@ -4491,10 +4512,6 @@ msgstr "Fecha de Creación" msgid "Last activity" msgstr "Última actividad" -#: ../../app/views/paginable/users/_index.html.erb:27 -msgid "Current Privileges" -msgstr "Privilegios actuales" - #: ../../app/views/paginable/users/_index.html.erb:46 msgid "Edit Profile" msgstr "Editar perfil" @@ -4799,11 +4816,20 @@ msgstr "" msgid "Request expert feedback" msgstr "Solicitar comentarios de expertos" -#: ../../app/views/plans/_request_feedback_form.html.erb:11 +#: ../../app/views/plans/_request_feedback_form.html.erb:9 +msgid "" +"Click below to give data management staff at %{owner_org}, the Plan Owner's or" +"g, access to read and comment on your plan." +msgstr "" +"Haga clic a continuación para otorgar al personal de administración de datos e" +"n %{owner_org}, la organización del propietario del plan, acceso para leer y c" +"omentar sobre su plan." + +#: ../../app/views/plans/_request_feedback_form.html.erb:17 msgid "You can continue to edit and download the plan in the interim." msgstr "Puede continuar editando y descargando el plan mientras tanto." -#: ../../app/views/plans/_request_feedback_form.html.erb:17 +#: ../../app/views/plans/_request_feedback_form.html.erb:23 msgid "Feedback has been requested." msgstr "Se ha solicitado retroalimentación." @@ -4824,7 +4850,7 @@ msgstr "" msgid "Set plan visibility" msgstr "Establecer visibilidad del plan" -#: ../../app/views/plans/_share_form.html.erb:9 +#: ../../app/views/plans/_share_form.html.erb:13 msgid "" "Public or organisational visibility is intended for finished plans. You must a" "nswer at least %{percentage}%% of the questions to enable these options. Note:" @@ -4835,7 +4861,7 @@ msgstr "" " opciones. Nota: los planes de prueba se establecen en visibilidad privada de " "forma predeterminada." -#: ../../app/views/plans/_share_form.html.erb:19 +#: ../../app/views/plans/_share_form.html.erb:21 msgid "" "Private: visible to me, specified collaborators and administrators at my organ" "isation" @@ -4843,20 +4869,20 @@ msgstr "" "Privado: visible para mí, colaboradores específicos y administradores en mi or" "ganización" -#: ../../app/views/plans/_share_form.html.erb:27 +#: ../../app/views/plans/_share_form.html.erb:29 #: ../../app/views/user_mailer/plan_visibility.html.erb:12 msgid "Organisation: anyone at my organisation can view" msgstr "Organización: cualquiera en mi organización puede ver" -#: ../../app/views/plans/_share_form.html.erb:35 +#: ../../app/views/plans/_share_form.html.erb:37 msgid "Public: anyone can view" msgstr "Público: cualquiera puede ver" -#: ../../app/views/plans/_share_form.html.erb:42 +#: ../../app/views/plans/_share_form.html.erb:44 msgid "Manage collaborators" msgstr "Gestionar colaboradores" -#: ../../app/views/plans/_share_form.html.erb:43 +#: ../../app/views/plans/_share_form.html.erb:45 msgid "" "Invite specific people to read, edit, or administer your plan. Invitees will r" "eceive an email notification that they have access to this plan." @@ -4865,20 +4891,20 @@ msgstr "" "dos recibirán una notificación por correo electrónico de que tienen acceso a e" "ste plan." -#: ../../app/views/plans/_share_form.html.erb:48 +#: ../../app/views/plans/_share_form.html.erb:50 msgid "Email address" msgstr "Dirección de correo electrónico" -#: ../../app/views/plans/_share_form.html.erb:49 -#: ../../app/views/plans/_share_form.html.erb:122 +#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:124 msgid "Permissions" msgstr "Permisos" -#: ../../app/views/plans/_share_form.html.erb:89 +#: ../../app/views/plans/_share_form.html.erb:91 msgid "Are you sure?" msgstr "¿Está seguro?" -#: ../../app/views/plans/_share_form.html.erb:100 +#: ../../app/views/plans/_share_form.html.erb:102 msgid "Invite collaborators" msgstr "Invitar a colaboradores" @@ -5089,6 +5115,10 @@ msgstr "" msgid "Please describe the output type" msgstr "Describa el tipo de salida" +#: ../../app/views/research_outputs/_form.html.erb:27 +msgid "Research output type" +msgstr "Tipo de salida de la investigación" + #: ../../app/views/research_outputs/_form.html.erb:44 msgid "Abbreviation" msgstr "Abreviatura" @@ -5129,10 +5159,15 @@ msgid "Initial access level" msgstr "Nivel de acceso inicial" #: ../../app/views/research_outputs/_form.html.erb:158 +#: ../../app/views/research_outputs/_form.html.erb:164 #: ../../app/views/shared/export/_plan_outputs.erb:23 msgid "Anticipated file size" msgstr "Tamaño de archivo previsto" +#: ../../app/views/research_outputs/_form.html.erb:170 +msgid "File size units" +msgstr "Unidades de tamaño de archivo" + #: ../../app/views/research_outputs/edit.html.erb:12 msgid "Editing %{research_output_title}" msgstr "Editando %{research_output_title}" @@ -5150,11 +5185,12 @@ msgstr "Enumere los resultados de su investigación anticipada." msgid "Add a research output" msgstr "Agregar un resultado de investigación" -#: ../../app/views/research_outputs/licenses/_form.html.erb:24 +#: ../../app/views/research_outputs/licenses/_form.html.erb:20 +#: ../../app/views/research_outputs/licenses/_form.html.erb:25 msgid "Initial license" msgstr "Licencia inicial" -#: ../../app/views/research_outputs/licenses/_form.html.erb:30 +#: ../../app/views/research_outputs/licenses/_form.html.erb:31 msgid "For guidance on selecting a license:" msgstr "Para obtener orientación sobre la selección de una licencia:" @@ -5182,10 +5218,18 @@ msgstr "Seleccione un área temática para refinar su búsqueda." msgid "- Select a subject area -" msgstr "- Seleccione un área temática -" -#: ../../app/views/research_outputs/repositories/_search.html.erb:21 +#: ../../app/views/research_outputs/repositories/_search.html.erb:14 +msgid "Select a subject area" +msgstr "Seleccione un área temática" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:22 msgid "- Select a repository type -" msgstr "- Seleccione un tipo de repositorio -" +#: ../../app/views/research_outputs/repositories/_search.html.erb:24 +msgid "Select a repository type" +msgstr "Seleccione un tipo de repositorio" + #: ../../app/views/research_outputs/repositories/_search_result.html.erb:20 msgid "Click to view repositories related to %{subject}" msgstr "Haga clic para ver los repositorios relacionados con %{subject}" @@ -5513,14 +5557,14 @@ msgstr "Contratar" msgid "on the homepage." msgstr "en la página de inicio." -#: ../../app/views/static_pages/about_us.html.erb:35 -msgid "Please visit the" -msgstr "Por favor visite el" - #: ../../app/views/static_pages/about_us.html.erb:35 msgid "page for guidance." msgstr "página de orientación." +#: ../../app/views/static_pages/about_us.html.erb:35 +msgid "Please visit the" +msgstr "Por favor visite el" + #: ../../app/views/static_pages/about_us.html.erb:37 msgid "Customising for your Organisation" msgstr "Personalización para su organización." @@ -6215,6 +6259,14 @@ msgstr "No. planes creados basados en sus plantillas" msgid "Statistics on your Templates" msgstr "Estadísticas en tus plantillas" +#: ../../app/views/usage/_total_usage.html.erb:7 +msgid "Total users" +msgstr "Usuarios totales" + +#: ../../app/views/usage/_total_usage.html.erb:11 +msgid "Total plans" +msgstr "Planes totales" + #: ../../app/views/usage/_total_usage.html.erb:15 msgid "Excluding Test Plans" msgstr "Excluyendo planes de prueba" @@ -6356,16 +6408,20 @@ msgstr "" msgid "Hello %{user_name}," msgstr "Hola %{user_name}," -#: ../../app/views/user_mailer/feedback_notification.html.erb:5 +#: ../../app/views/user_mailer/feedback_notification.html.erb:6 msgid "" "%{requestor} has requested feedback on a plan %{link_html}. To add comments, p" -"lease visit the 'Plans' page under the Admin menu in %{tool_name} and open the" +"lease visit the \"Plans\" page under the Admin menu in %{tool_name} and open the" " plan." msgstr "" "%{requestor} ha solicitado comentarios sobre un plan %{link_html}. Para agrega" -"r comentarios, visite la página 'Planes' en el menú Admin en %{tool_name} y ab" +"r comentarios, visite la página \"Planes\" en el menú Admin en %{tool_name} y ab" "ra el plan." +#: ../../app/views/user_mailer/feedback_notification.html.erb:17 +msgid "Alternatively, you can click the link below:" +msgstr "Alternativamente, puede hacer clic en el siguiente enlace:" + #: ../../app/views/user_mailer/new_comment.html.erb:5 msgid "" "%{commenter_name} has commented on your plan %{plan_title}. To view the commen" @@ -6454,22 +6510,22 @@ msgstr "" msgid "Hello %{recipient_name}," msgstr "Hola %{recipient_name}" -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " is creating a Data Management Plan and has answered " -msgstr " está creando un plan de gestión de datos y ha respondido" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " to " msgstr " a" -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " in a plan called " -msgstr " en un plan llamado" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " based on the template " msgstr " basado en la plantilla" +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " is creating a Data Management Plan and has answered " +msgstr " está creando un plan de gestión de datos y ha respondido" + +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " in a plan called " +msgstr " en un plan llamado" + #: ../../app/views/user_mailer/sharing_notification.html.erb:5 msgid "" "Your colleague %{inviter_name} has invited you to contribute to \n" @@ -6624,14 +6680,14 @@ msgstr "" msgid "Download users" msgstr "Descargar usuarios" -#: ../../app/views/users/refresh_token.js.erb:1 -msgid "Successfully regenerate your API token." -msgstr "Regenere con éxito su token de API." - #: ../../app/views/users/refresh_token.js.erb:1 msgid "Unable to regenerate your API token." msgstr "No se puede volver a generar su token de API." +#: ../../app/views/users/refresh_token.js.erb:1 +msgid "Successfully regenerate your API token." +msgstr "Regenere con éxito su token de API." + #: i18n_placeholders.rb:4 msgid "activerecord.errors.messages.record_invalid" msgstr "activerecord.errors.messages.record_invalid" diff --git a/config/locale/fi/LC_MESSAGES/app.mo b/config/locale/fi/LC_MESSAGES/app.mo index 8aeaf1b6b22b92f7d95d61b0d947f5d44b587aaf..e44d9f26765d1ed62b397b7a08298a7dc1d84938 100644 GIT binary patch delta 27522 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 R_jeU@dD52V4~Z)C{{Vb_YWM&E delta 26774 zcmZA91$b5E1IO`m?*@z*-L;@&gVEjHjWh!Wj1{nr#;YKb(kUrj5)z}k1W{U4P(TEf zR#HU%-`{=T`SASD^Bg{JpEu9F8|eL4eiQ%n^ZcCIcaFpLm9OLE#f^m=r(sIRsn%4f zj`Kku#~JN%oK83&zmIU7^rR2$=Qw%LgBful4kCXeE+C#i(s6R&E>!+G%!W5HGrq)z zRCm%0aGdfaw87js0qKjg0`uWo%#SCqBL0TzK)xu)$$};E4A#QQbRb={rtGQ(*#X>Skb0T!%?`1S{Z(cpAa2 zsE+-Gnb0S}ajIZ8EQqa;)pQbZCN9L!Ff`F|D&ao#um;X^0*|oz5T@SElnymB5jLFZ zB)t}9$L6R9_Ca+p0Sn+1)C_Dv?V%Hx3xCD3_!fOIY=o&_9?KK2KZ5zMMqnff>c}pv zh|Wkef=U=lv>SemQ_zp8Ns>7l6hJhg1X2bhtB0jRYci6?OeYJ{DpJB~k&!AP8r~r}v(4rkf@O66Hxkfs`UUG?&>Y99jD4^QEZvd!R0s=S9^Or}2De<~&m|c)mFvp{NJez(j0->d-#a zl)k|7SZ0An;5hv;1{Y!orvBWVj*6(wx);0Q8|0Zzr-i2DPtc=H@GpVPn0=ASD25q` zS42&9LmY=4P-}M$`(diZoMDVZy|Q)V^DvFeah9Q$YQsvCz74gB_u2S4)Bu0L zA?Ulxlpl%Sc0B~NduO0}zQks%!-B+Og7Cj`c7W zyI>nUjhQgt8dJ_wia>4>>Z0~ScT|BPs2)zR@wuqIuoi zEUKe5F()>|R2YF8XpG7CIKv23B4Hf*;Q`dtpF|ZrkJ=m8P@Cy7YGlqjvt&6?BQJ-l z*A~^GZWx3ysPfZL16Yk3*bXeD^M90p9`HM=$N!)Tre1GGlG9ocm0lV(lA1Q&5Y=D@ zOo@F^?L?tAk`0sV;Qz+xDP1+a-tk43HVP^^QK zF)eW$G`Cq#(rhiu+%o*a>SdXUQmA9%~!1ksE$XYPEkCj$8px#n3ebn)bnS!C(48);kYz&6sG}LZCj2h{$s0aLx7x0;lpWJEo%mvi* zJlT@WizYXQl28*fVk~A;0n~`*U@w>BEVA);yG#dC?lzk#3u>f!QOB_aX22$>_Bx}c zJ_^;|aCFnW^AQ2PAjYB!E<){rFHs{rWxb49iQht%dx>h$k9E+4v!hN;AV9`do@$6e|7@uQC?I-1yD;+2GvkwR0qRR4UIr8!BiXn0=3pVP*ZvmHS%vz z9lD0S@i)|xG~Q>9c{}vw`A$~?Dj1F$@c?9MoS`a!BT%QngCFB$Y>fW9;=Yv=aBgUWGO}xe~6w40v!*VFAV!pJ*|C&(NS>~wj^He7&{t2 z!5a7!wG^d~n~~PXf_f0Dqa#k3DgG355uc43*e2AT+KZae^Cy^pW&A;cruHRjZPK1J z@m#2>4YAflO?_)rLw!(tVFaq)WGsOTP#rvuQ}IXCb0SX}hoEMB>?!77Q#^$Pt^EvC zL(8n2toy8|F*W&DQ4QWgb>OkhcfK|=k{-3z`BCMIp~{yi@0e;(Gyy{HPV)8^AM6>6$$p&rx>Q({Nd@#~J7fzhbVI1>YKIp)D5sE&JnCZOH^ z7}b%KXUyhFkKYlmhg~u2H|BwZP-{9Gbvovu8rqDd@et|(Pf;EAKWk<-3u=jjQ8Qct zDerOW5zvDZ(c5Fx8qY*MU={k~epG{JFg2dXMEnVLu3LX=M)(BN5zk2P)lNRli>1*Y zo1+hQL0_H!9t6~IAJiTgU>%Mc*#uOB3#_X#1MzLB{G--OsB*ud9`q+_#LhX>;jE~& z&yPCZ1u%f;JB118!3{73+hZ_}MIE=*SR8*tEk(xj=3_O+Iu~1zeh@X{^cT#7gHSV7 z9y4N1)TwEOYOgPPaub+AAP6_2diX7BBo|R5xq<57Bb)x##?xFh4d+7biQ=eo^>7}x z#Wi>z*W#>8rhK)_X33jhX8!deXitJ36pQ*e9fewwJ(va$SMO z+hR8CgIRC{>QqccJ!cMPz)h(34_smXRq+@JYVa~@pMVYHayhWQFL39A!7i+XU{o92a81T}z~s8{(1SOsUIw>-8~`CH5& z&v&{I7=SU@7_XwHH27CDva+bP?0}l$9yZ<&wb=$@0UVEd@CMY<97C1Af}!}c)&I8n zy+Jkfv?n8ufOh+F)PsLOZI(YU2Rgr*W0MoLd5WUeww$#Ns$MJ1jNvvt0s9aiW8-(R zGx6uBW7+Bs^REUw-Z5XNd*gZH`I&D$_z4E1-#s&hB~T;miyD~+b)LtgHr+hb9{B=w z8g^naJdA#LA2rZtsCs_CGyh7+`Ma6QlBfsQMHT3R8d(%-#G^1TPQui<1~t`NZTu*z z{8`k%ezxgyfS#y^2jg@a8jBiX)`zBE z0II{GSOaUI%8y13XsV5`#?-`#6XJ{Ak%R1CxIn35&AgNunjd|@`}EB>ke2$FVDfWufqVwN@ zfTk!C^?+E^6b(mB*=Lv*XQ4W{6g2~@Q6t=rs&^DMBj2Jvj;~+|d}7n{zBbP(hyzG3 zhMq12W)sM!f~W_k{M&RO9cnEDQM)z-b7B)zM|z_kIKajSV+ir#s2N&=(Rdb%V3jxK zjoJ(K;+pk_`41(qo&>Gg52%seLN)xzroTX~?K{-2&i{{@fl{bVR~?&UOH}@1)QoIG z?e^W+2#=x$l&7Ns$vLM!%C=Akce8trKlIuDZGOBQ8RbsUp6dW z#jWgx+3(EMH*mSUpCN;>68S5zDqh2anA78Sc^j^d=Sb*_A7Vuxmoo`>qAJ$*H5Er- z01w!S8qt*$F7G#@0Cr#*;&V_PK7~E-PrQt6Qn{RMSk%wuu*%Lgtc#v2sa@V(o||81 zYE6q{0SrTpxIG5oho}cELGAkUSQ>rOn)Gt`0r7sQ-F*lf;6qHna_L;oJUYG(_2AmP z4$1d8;|P=|;Tz0~?hGy`2yXckU3-lxE59a>B7b>bR^yZNl%cA*Rb= zro0`NBR&o_6MImb@)GJay+ple3g+oRqOT~Sls2X*cT*z}R8r5S7UXV~<4sHIqnez-EP z$Mo<^64aw3s2*QMb?70g1MjTa^O=!{pf+bi%#1xypA~~qujDbPSNIG}jjJ#xZbrRd zPNC{w^bnXy;64t(5A(acUlM;u?cyRF_D2|n8gb`9m-kKB3)R5Ks3lo|r|8TSz%6YO$sW6c6Crvnz`_cdB7&qxBb2&_W&?2h#*YDE8_c5S*s<~U`Lt%|#xQA$UhntCOeA&%=1)aHr^ae2SruSA`mGpKg_Le1$ZhqY7=tLyx)CeV$9 z+gP85>Xb4|Frl;=@d<0nF!O3|fORN;9JNG#Wn9k3*bLQyZ&Am~zpQ!T)Wtr;M`Lxo zh0QRq9B*2k{}=)q$qbCaqv(ra<;{{*Ky9Ads3qx)nyCR;5f9@~e2s}XsDjIh!n>%Y zYFm+kVaiG_@9znkVNK!-(W4KMp9mDjf|XrPAU4G=7>!l%6iz^&D&_?;1@jQ!guU=I zw!@IB=2(qE?fS{6sh@+Isl!+SQ&clEQ>_~3U!U7UNYExbhC0uuP$T{pbx!Z1cK;I_ ze}&rhuIlC#6hKrKme8!v?_Ujg%C4b%zo!4ERJ(gr|K}K#cxpcuA*LKH#|1su1$E18p#V( z#S}Ho$8kmsB3=$du>+REaj3Q5fvOi$%RHzW>IK#aHNeiO7g9gWk0Vh7@_bG}Q@#|{ zqgAMHC>v2Ta1S-Ye^CwQscm+72z=XNX1b3 zopCruq23d}p`XrwLEbtVX$b1Wr!{J%eNi2VvgwI7J_*&4*{F^z#1C)<>c#U9s(zUU zW*`+&Gu#QwU|)=K@tJ|1BmyZKxtw2de`7P1Uo^F!im0hSf}_Yki))EDX>RtyU#Nyt zv@m8y%~SyD1yvQb2WHyz)2NQ$LCxI57My?Y8nrYpgkaR#c17*hC_IK998Cx6wKALO zNNdwE-!?Aq@Aos{DatLuE!eNEnev?N?3$z64MV+GYN2MfQ#+4Y``#pIjpA`PeuC;) zjrQiabV9|4p3Fx zrdW@JRv(xTmpP~x%2ia4?_h0whdTGQJGs0+Y7N39;!Cj;cI@nOTH{u1g+5(e-XB!j z;Wo})iLPd#zjQb4d!7)`i2g-wzU)1WB`}D1EmQ}3q1JY!&7X%Yh;Kx_y5FEi`VQ5> zv^~v0s$wJJA7WiRi6P1l_kJ(%IF$)RlMsttY2hcFOuSNz%li+Ij^ShCQ)0~wjEZwP ze-b}{-jNP;dH-dD&mi+D*8#P;7NNe>?!?0Q2NuOlgUvUhDp*A4|0RLhWCX;U50CAr zSL8L+v3!GiAq6CuDJz2-X)V<5Z-#ncCu=XqF%i%P`kJ%YRTeIFRt;ZhUcM9&3e@4I)JM81FGD8)GPfBUdBvA zIR6C++$Erqq#NpT24ODLT1`eZ{GIg{>cP)ZQ|mv>%v5bu{hkyN1K0WXGe{#7w#xM`pYs>cmco34{}F!m=t8Rz0NEUEYieyGGT^@v+O9h$FE! zrWj+sZa2j3#FwL%tm9a-Gy_mmKM~b|Rj7~i-KeGXT(JcnVQ~`Dd}8)MdDIJO4Qgf{ zpmy_XY>Lh}vsBH{&4|0BMi&05nes@~6rV*c={wXW%rxE@gl+ZtA4Z@J8RIYxuVO81 zG{O8dJQ4NEypP)b?ulkoWx^`N%VH&rMa|qA+=^FFALkP$nerP@`Dam^^B?s7``8Q0H|Rs^VtrLG->KP@jUgtoKmuJwk1^e^93= z*99s^PCO2){>_e~o&P13gR%`y-2L%o8tqtb&=4HZRAad`~E23QOe zQ011Oj@>HM<~?lFucDs!3+glAv4?;*MTXgCiprpRRuwy7b5w8EUBU^&%$Ocpg4q#!tggP~Ea4lx|+`K_|;SvqK&O(>-0~t3_756SOUl7it z-hfjVoA2=#QEThF#2llvs1XLDmMjdllyy;?v@dF438)T!j`|5{4XWI6ETXBuM?ml5 zj7v>Vi=vKYHPmrzjrw#Ohg#dMsHI85vv|1PS0H|g}z^y0hY5i zL63UclRyKEMeX(-s86>;)^AWFy^30j-%&H=x7;jIe$)udqaIwx+8DL=tx!u4g*xsY z)C+0Ba?ZbY_gWIPD|ew9{>~Qo4fWt>sI^Y9!mM!yR7ZnR4Ts=#tc@yn0e$eA^#-bg zw^1|u6!n~xD?R4Hc~_b>EQ@+zeH-t9>R^BL#bKzW8jae;bFc?4L5=8No9@5LEKzn; zx%{Y(6~PJ^X7l@d2xue&aSDz^oqNC4=4ZMd_>lN6oR6#5xV(QyTyrfQ;X`U7RwVt4 zbuRDUqWyr{Q{n5)7mS-YhIsW2=66De@DJ*h+-SZbd2(zr8Ld&feLn`Gd$XCD0@#EK zRZx3k+!nJ0Gf+#m61C=gQB!)vdKGml9-(GTe=VZpnG=Js1hN+QyL=n!8_iMFo9ZrVx2D)-tcE3s$D=mwQq)whM@{i=)RLXUa(D|hupGP166Uv- z!9da*?B@Kdfqo=tDuJ7L!SX6<58@9arf75AW~_yq={{{a&ZMIEpDSQ@*b zrhY00;!)Jh-9~Nd)CbK{XG0CxQ^+P%Ma@K0)W|+SRfs|z&!MO(n~q7i1W#dyLoV;X zm<~8>K5Xuzrrz&}nK^${I{{b^OQ254K;+HpafT4k6n=^WaRzFw+(%8tEU2jqK#jDn zwF|0VJnBQ~L)0-`Y}3C&jc`Bev*03XfZwAAcpKB`UHOuLj*I)4$;glTlnS#pMKv6O z+H50GFR0H^AFqdSEMCW^7=GNe_a!R+HENS*JK=JeG^ZeXJ8+V(a6I36NkBaeK4nH& z7`2&dpw_%0s)6p-7@I!|waLbz-jLgE`YF_l<~*vt&)24YZq(Elv++{s{rs;%K%1-? zYON-qW@I+1;Vr1CJcc?AKcZ&n0an43r_FnzHYz;^wP(iL_%bX?d=Kiq@+<0vcPEGGcgdg`^R8K z{0uAOajb;zupL&qV9I}n+6zljr)wu_i99E5!VT0nou{bH=DKLih^iQXn(7KRy#;nB z-VN2zK5UPdQJc5KB{M_i@Hz1=I2Bu8HXXfzys-HF?-lcxNKH{A*o11}9%`+hqGrVR zd$Tvvqefl;OJXSM+i(~3?ith!4M&Z1GHR+9p*p(T=3l_f&-u~p`i!Vg!%);ID~}m;{%aG^+O|eM zH~2T4W<+_enI0EFHB=27V>8qU=VB19wei!a({l~g@u#Q`r@Ln7)4ft5GS8*m3|^X*0*lT)bEaTayVenfTjHEQbLp)WI*`j*SNNIdGY_tfdQdAYg>iTTm*RB%=#H7%On1!-rz935 zy%|=(A*gy^qK@x%)C@gEy&3;Tou;h!%z#UH2xv-6p{BecYDQY1*0=|1Zw#_=l~)I6 zpmzTjn|~cOWB0KuKCw3c-7Lv^RQpF!oBTBDxt==&v}yiD?S(9Vn1+g3Ls26ri-oZo z>Q&nt+u~T%Cj1^l@HMJ~Meds=Xn@-7(Wv7*4AtIbWS|~rHUYhhSD`-VPnito0qQ|- zu`}j-V5V>wYG!6yS7Hm|J5e*0;-T3iSx_U+g?e8EqVh{%eXNW@I{zL5Iu2i;I`9o1 z#V4pW-2TYrT*Xs3ip}=LV^c2wQ}fqtbx^x~80s_QOVmu=M{UB)fAY6$SP7?K-oMQE zg>@LJ^B?leY@V*zhzHEVCZu0`Za%$=yf8B{1+{rLqB?pM`&0fdt|Q*+mCJd9e`5oD z@!IUA>VKP=Xn}fvv`2MxDSC9=t`jJa4=@yi-`HO~U{T`ZunlfP&6MjO^TTOL9IJd> zN=H(^H3M1qulc3+4b*!g;GOAs7c5JBFzS22>UW&~F$9j0p!3|2FVEVHtx*r`i+bR0 zOu*Y%7dyG!-jOUub^I=B^W}59y+5EdMYT5+_1W+-YST@`I&^d<_9uSX$K&??m(4YN z-A*_O$8a?kPT}_M*0ZPvZlD^xhuTDcqK>JP((T=3nNWKrCu+@0qTVZQumq04L|lz! zFmEci_n&mN^bpW)oQGj}-I~GA?fulMjcTAfYEw5!MW4Ay`NsqP@8KIYANPmC0vi%3%_C-Oqb5>{gBCl zdb5>5ZMtTt&wyFj6gQ&Ud4-xue}6NB*^qJ`rvL#>T{Tq0txzwFE~qu@hdS>AQSamKwDs{w*VtY zy%~?&^q)`-y+pmy(r0jcUsOS;JyIL>z@~Tt`(Y0Z&FJ=i2b_xKh~L0}CML=+V?wCZJ7K3-{tkjKPXIOb1qBYvMoQKn%(0_Wqsj60AV{E~xA!j|H{f(K^5r!RY{C+JVR(qONzWDF_I})U zL2b%$sLgr+b=+>DW-v{l+5J^epB+)yfpdQX^&K-`u<3BeV2?SEGf5av#&OiKXkNfL z8RLn6jWw})LGxl7jXFl>Y&=ULGZTHW7U_#I1b;>y!*qq+P6SrR6u1Jlsn>Z3==khK zZJx{65`V#xSgMHI`%kR8;t=8oQBzu>sN4I4%L>#?Bo;F-luf8t>*vwu>>ARy^^1z_Com(GsV%U z7u0IhF@A>HYj07T(KpoF9)JI10!|R>{1-#*{&J{e*9~>d;!&sJQ&i9Qq23$!Q6qb2 z4Jc*Ke@$x(REN8vPESA7j1NUWo&OmGv?iaU4=(d&@TC;>73oVGKaQHAZ>=v-BgtRd zypYPG22c+*(w3+Pcd+(Ey|@OTUQi>kAkTLu5zwyPZ2blGA(0`>?fti1bx;lOK{a^X z#=k>tq90KmeSn40w~X8SU9beIUTI8+Rk1xb!a!Vto?rq82?XISY>d8T&B$7yc5iPi zhO<#qe*krkA7U*GE@vLl8#RLiZ9KvHF={ENqLy+c7Q&=*oPSNlbrST>e}Gz>SEwFm zE^kI0fZn}<8gV()R5n0uu8!88s2PYvJ!m?r{0h_qcc5PJKcV)*>++m`y{l7KFl$x_ zHN_=Sp9vLE4Yfr*s4uFcaj0W964kNIsQ1Sn)C|?BXwnCvIy4IPVYLFa*S4YtkmMnt z5ud_Tcnj5mKTr>PhCR`#WTreEl|C1BN|vK$>I`bBt|Biwe(A$&oqLIXDB$9o-G5hC zHy=jijpo+=b1o66N#grg3MzcU9Y$gn8u>+G+ejVCALU+0oi*H3->W;3^m3G&gAKUb zlh=s)ZMh?9t0rl>G8(O}}I~(P6)!^Z~h-)cR<96&oS|^*|$j3b2`H0HzUm5L)nqnUc@5O=d6(~YlEnDYv z>(`X&Ve6%{W}w_2>Ln5XmU}Lp(3O>NHSWvy`Oa)I5=h8Qg)tP^MYud+UF`_hB7Xqk zjf8c@U_ZQy`^mdSCqBb%xRW$}9M7`#pOJoyTh}J?%2VbO!rG|b=Z_|F83mq_@FO;% zVmb;HCOn_;QNp^uCH@BavEQjhowDf1?cwGpZSVCdf94_F$;J=hBHAcmvb}!}B+d^< zPIlfu-h_W?SeITB9SHNIoO6mhin}Xm8@R_1Ud=<3uhq&Y{uK$`X|NUkK;3bq#}WR7 zyn>{w>B2a|KBFb^LAIUtT7O?EaBRK*sH_VXqwrt~{X&IrF&p_h`^i@t@?%N6VH@dB zxf!G-U$^XoDw98t^u<^iQ*+0^S5D=(dMLb)#&q#6a;6b3P8z>E@?NJ17vZi=OfRBt zq|c|^OVWRG&;W6o-5&x10^JAs+#Fo;_YaV%?6Erl1h+ZbExHEDO zreGP;b+skjiaXTyd<906#}CKe%a3piZhlsEn&YoDy4;qXPPi*+4NXxe17ZEZ+K>Eu zcoys=&5#bOU&O)JcRBlN8Pr|xBrja_tKeh3!l>gY4-+((Q^OenOL3}yo z-IO_px<+9|?(Ye2_5S}i2z+fbuTWthm5*@m;l8RGTnXG8Xruu7jOx~*;fKVl@UZ8ECz5uFc)s@< zc|+bX(!Qbo9m2Xw65quAA@S;ztwH$x>*;&-JzdGXK<-Ww_ftWG_>OQj(oYipg78_w zH*BTj|JPU&WtMO+=B`bdy8o9?@_*NT+K=G@YiwI1_5WWuOoc#h{iHI4On$@WjHKXY z3e6#&pYRCVXd1%&?BJXx?=j`a5Uxb{AmNR8#y%=eqp(*+!c)o9HG}&@ZoVjauRnGE zv)M>i3iT&BhmC(uMSdCX{p<3hq;Il~ZX_)|_W;WM!u^i>OZ$M<_>6csR)EIECwy(bYbTB&V3I>~Ec9JEy$&ukUUC8S3jN zo+UQk@x4OV$xHiQ+sfKOxe+@5yU7eDVFLF{?w-W=+lQsZ_1s^OUWE#!Xk;8NvyH`) zzL0oL;+aqv-(kI17UD;^vvG%${{|=6cI(>u-k<+}rTB3&$8zghK;|nGbo6>IVH?yp z-f-f*xX;=&6)R{Py-Zq3^6rxM7&F@RZ%Dtwy_xi!+?`1uMtl_EANA4Mgh)3k>?NFJ zD|IGKS8F;GL7ETprPX`=h`qQQ5xZiNoC4JUo3ybuK8U!k_1J^@cTCj#-BG~`q)#N> z`~E3H;0E_DGFFl?gZm2iY#I!}{-`TIomkBM6Y(dMze?UD!hdk5CqET=U*ZGqz2qfd z%?PC9?m_-xY;N28OzXeUmO6nKX>=ogK*1A)Gjk_jJ#DxqhLN9-Ti0N#e!ib#%go^c zgUH)VJeKfk+nMe*U-eoO4$=Gn1(_RcfiEcBhkG~i?lvus_#z5N*#}jyjhrJr`6@@* z03yA}({DcN;dWa;7xh|@c82(C(m$r&4dVWU(`f$N*oKBspf`mJa1S87(LOMWGD|3& zo^q!MHy~V!JNar$*#ye|hP81s<))&3I@Z;MbpGDqzbhSaU9~Cac}O7GcHq9vsA`SG zkIA3O?V>>!HMnK`}_Zyq_reG!?tmrvbwq%y#EiO9F)IFnYGBzGtO=9iYDK? z|D1ee<{>lrnoZyqg@)OLm*ne;r_4Kyq!TgN0P~U;gt{7%e~`O5;Scb8+KAvzzSdK& z6zP7XW%agcp6~sk&`siG5*y=M?po9u&;6Er74b#fn+T8QzQp~4c=GiJft%bjX;$zQhkwrv~vA+{+1nLwb3_0farx2%I1gK|`TrBwush3n!-~ zTb4Tdp;gym>gr3wEL*-R@eCwQr%XY-&0U)CN$v;a2NC~>yg=HyLwr4UAWc^v$~+;hGvWE% z{DRDh(&zsiBBi-?m7stwe#_?lo$co~zLj`s8cMM7u{8DnBe^Xm~?p|JMfX4}JKB&4w}Dy8hyBZX3u& zxx6;Lj!o-L{t*@A>SsF^gq64#kQPDt)P%d>KwPQue@;NxCnPSW(WS&cqrv%vr;*l* zcxm0l^VqTraTs}7skfH9G4~;hyBrB|V70fAU^^ z__HMiDq&+XpWDKr*6gHpF-5(9wjg~dq1&W~^PtDvA%t~R=K*zWJ;l?IzLR`iqse=O zKXAvWynViNfC_8K)U}*Dy>09RDt09NJ1(_p-x9u0nHSt8xkpj=3HL|bx;~;@Ecb50 z^+-F--PhLrjWB+FG$Mb! zm$sd7U+&*+p=;JGwym1Um8}PK{)bZ``u{S<(D+psm#6dg}a4cqQRlgtrmiLjDi7%s;f#*$%3|KL7urz!3_6jfW`o$QCS{T!Fkv zR61tkCy5uOfr6xsw`sZXOQmxkwP``*CtppI16Yr`Q?UW}D818lt;WT+!bnU8Tub;{Dym+s{zbN!K zxrMnW(0EZ>DY?Rr1oBh9+W(~wp=?f@R>M9#xz7LFgoJh6KPf}s|8i1cGT{Wi(23b?3vh;T#upkUH&6R(im8Wy#Aqe*{A_yTp>;y&^kU>@ou5Vu;`v_;k$u{j@ljWqP zUZ4$k!V$FL3Y-Hv4yq7NUu?q~#?1HR03bJs@72@D}cK++(RX9d+Hq zkBOhBd^5a&XGuS7yHVJdD@eMoXWZFI+rhs=aOP3y3o3QvPQC_^xrOvLBuwHiPQ{zV zci;fZ-Lwsr-F~iJK`9O+p_W ziP35lQ;^r~y@xF%Z7}hd+(A5~ka}RRmeg%Vek6HcQ7;8?UFErbNNbJXk-wcg74i1? zn&&$YZNWu^Kc!+jGIR~ccEl%|sPjGXwcI}3Lr7al-b})}CemOzZe6LlFWIm^W~W>P zX)elsXVXyfib97~NbVPh)VBFw-;jxkN;o%99aij!BC&u*&504E@Oe8ZVVsKPsY{Jo% z^M)k4>Spa9nHWV@#9(qL78f5M9-8!ZqN|guK-=)}A&ChQ2?>xGA0H7N7oQLjSTrKG zA2S~t85JK{EGcNHE8Ztnc%ZkZNlQn#w)-Sa`p~s1UD9`xUFm#tBqSz8MaCq?4;&m9 zuQiHgFmZz;=lwa&RV7cUz=XIyku)0FCn7d5Dq`@_m5d@XHX=4Osp@oBtWVOxS+3^p zq%3n?Q+<;*eeN2bDyhbD*E_d=V0e6Fc!E}~QDU#8CaYX|G9?Y$>AK_g#13SlA`<=^ z=FR~$oe&Wf5fd37L6-xI#ze3|A|n#wyg7++jL+s3D;fA-#=yk>>RNJE;DGSJPKXCX@l4v32nj0x}Ghh, 2022. # msgid "" msgstr "" -"Project-Id-Version: app 1.0\n" +"Project-Id-Version: DMPRoadmap-Development 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2022-10-25 16:02+0000\n" -"PO-Revision-Date: 2022-10-25 18:03+0200\n" +"POT-Creation-Date: 2022-11-30 14:11-0500\n" +"PO-Revision-Date: 2022-11-30 20:11+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: Finnish\n" "Language: fi\n" @@ -265,7 +265,7 @@ msgstr "lisä-" #: ../../app/controllers/contributors_controller.rb:72 #: ../../app/controllers/guidance_groups_controller.rb:55 #: ../../app/controllers/guidances_controller.rb:75 -#: ../../app/controllers/notes_controller.rb:89 +#: ../../app/controllers/notes_controller.rb:88 #: ../../app/controllers/org_admin/departments_controller.rb:50 #: ../../app/controllers/org_admin/sections_controller.rb:103 #: ../../app/controllers/org_admin/templates_controller.rb:205 @@ -285,7 +285,7 @@ msgstr "tallennettu" #: ../../app/controllers/contributors_controller.rb:74 #: ../../app/controllers/guidance_groups_controller.rb:57 #: ../../app/controllers/guidances_controller.rb:77 -#: ../../app/controllers/notes_controller.rb:107 +#: ../../app/controllers/notes_controller.rb:106 #: ../../app/controllers/org_admin/departments_controller.rb:52 #: ../../app/controllers/org_admin/sections_controller.rb:105 #: ../../app/controllers/org_admin/templates_controller.rb:210 @@ -301,7 +301,7 @@ msgid "save" msgstr "tallenna" #: ../../app/controllers/contributors_controller.rb:84 -#: ../../app/controllers/notes_controller.rb:131 +#: ../../app/controllers/notes_controller.rb:130 #: ../../app/controllers/org_admin/templates_controller.rb:238 #: ../../app/controllers/research_outputs_controller.rb:74 #: ../../app/controllers/super_admin/orgs_controller.rb:94 @@ -309,7 +309,7 @@ msgid "removed" msgstr "poistettu" #: ../../app/controllers/contributors_controller.rb:87 -#: ../../app/controllers/notes_controller.rb:149 +#: ../../app/controllers/notes_controller.rb:148 #: ../../app/controllers/org_admin/templates_controller.rb:240 #: ../../app/controllers/research_outputs_controller.rb:77 #: ../../app/controllers/super_admin/orgs_controller.rb:97 @@ -335,7 +335,7 @@ msgstr "Tapahtui virhe, kun pyysit palautetta tälle suunnitelmalle." #: ../../app/controllers/guidance_groups_controller.rb:31 #: ../../app/controllers/guidances_controller.rb:53 -#: ../../app/controllers/notes_controller.rb:48 +#: ../../app/controllers/notes_controller.rb:47 #: ../../app/controllers/org_admin/departments_controller.rb:26 #: ../../app/controllers/org_admin/phases_controller.rb:121 #: ../../app/controllers/org_admin/questions_controller.rb:94 @@ -351,7 +351,7 @@ msgstr "luominen" #: ../../app/controllers/guidance_groups_controller.rb:34 #: ../../app/controllers/guidances_controller.rb:55 -#: ../../app/controllers/notes_controller.rb:67 +#: ../../app/controllers/notes_controller.rb:66 #: ../../app/controllers/org_admin/departments_controller.rb:30 #: ../../app/controllers/org_admin/phases_controller.rb:123 #: ../../app/controllers/org_admin/questions_controller.rb:96 @@ -1126,17 +1126,17 @@ msgid "Owner" msgstr "Omistaja" #: ../../app/helpers/plans_helper.rb:10 -#: ../../app/views/plans/_share_form.html.erb:127 +#: ../../app/views/plans/_share_form.html.erb:129 msgid "Co-owner" msgstr "Yhteisomistaja" #: ../../app/helpers/plans_helper.rb:12 -#: ../../app/views/plans/_share_form.html.erb:133 +#: ../../app/views/plans/_share_form.html.erb:135 msgid "Editor" msgstr "Muokkaaja" #: ../../app/helpers/plans_helper.rb:14 -#: ../../app/views/plans/_share_form.html.erb:139 +#: ../../app/views/plans/_share_form.html.erb:141 msgid "Read only" msgstr "Vain lukuoikeus" @@ -1145,7 +1145,7 @@ msgid "Public" msgstr "Julkinen" #: ../../app/helpers/plans_helper.rb:26 ../../app/helpers/plans_helper.rb:28 -#: ../../app/views/layouts/application.html.erb:129 +#: ../../app/views/layouts/application.html.erb:128 msgid "Private" msgstr "Yksityinen" @@ -1158,7 +1158,7 @@ msgid "Public: anyone can view." msgstr "Avattu: näkyvissä kaikille ilman DMPTuuli-kirjautumista" #: ../../app/helpers/plans_helper.rb:39 -#: ../../app/views/layouts/application.html.erb:130 +#: ../../app/views/layouts/application.html.erb:129 msgid "Private: restricted to me and people I invite." msgstr "Yksityinen: rajattu minulle ja kutsumilleni henkilöille." @@ -1388,63 +1388,62 @@ msgid "Affiliation: " msgstr "Affiliaatio:" #: ../../app/models/concerns/exportable_plan.rb:163 -#: ../../app/models/concerns/exportable_plan.rb:164 msgid "%{affiliation}" msgstr "%{affiliation}" -#: ../../app/models/concerns/exportable_plan.rb:166 -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:165 +#: ../../app/models/concerns/exportable_plan.rb:167 #: ../../app/views/shared/export/_plan_coversheet.erb:32 #: ../../app/views/shared/export/_plan_txt.erb:22 #: ../../app/views/shared/export/_plan_txt.erb:24 msgid "Template: " msgstr "Suunnitelmapohja:" -#: ../../app/models/concerns/exportable_plan.rb:166 +#: ../../app/models/concerns/exportable_plan.rb:165 msgid "%{funder}" msgstr "%{funder}" -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:167 msgid "%{template}" msgstr "%{template}" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 #: ../../app/views/shared/export/_plan_txt.erb:27 msgid "Grant number: " msgstr "" "Rahoitusnumero:\n" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 msgid "%{grant_number}" msgstr "%{grant_number}" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 #: ../../app/views/shared/export/_plan_coversheet.erb:42 #: ../../app/views/shared/export/_plan_txt.erb:30 msgid "Project abstract: " msgstr "Projektin tiivistelmä:" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 msgid "%{description}" msgstr "%{description}" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 #: ../../app/views/shared/export/_plan_coversheet.erb:58 #: ../../app/views/shared/export/_plan_txt.erb:33 msgid "Last modified: " msgstr "Viimeksi muokattu:" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 msgid "%{date}" msgstr "%{date}" -#: ../../app/models/concerns/exportable_plan.rb:175 +#: ../../app/models/concerns/exportable_plan.rb:174 #: ../../app/views/shared/export/_plan_coversheet.erb:65 #: ../../app/views/shared/export/_plan_txt.erb:34 msgid "Copyright information:" msgstr "Tekijänoikeustiedot:" -#: ../../app/models/concerns/exportable_plan.rb:176 +#: ../../app/models/concerns/exportable_plan.rb:175 msgid "" "The above plan creator(s) have agreed that others may use as\n" " much of the text of this plan as they would like in their own pla" @@ -1463,12 +1462,12 @@ msgstr "" "yttö merkitse sitä, että tekijä kannattaisi suunnitelmaa tai että hänellä olis" "i jonkinlainen suhde projektiin tai esitykseen" -#: ../../app/models/concerns/exportable_plan.rb:199 +#: ../../app/models/concerns/exportable_plan.rb:198 msgid "Not Answered" msgstr "Ei vastausta" #: ../../app/models/concerns/validation_messages.rb:11 -#: ../../app/models/template.rb:226 +#: ../../app/models/template.rb:223 msgid "can't be blank" msgstr "ei voi olla tyhjä" @@ -1558,7 +1557,7 @@ msgstr "testi" msgid "private" msgstr "yksityinen" -#: ../../app/models/plan.rb:617 +#: ../../app/models/plan.rb:615 msgid "must be after the start date" msgstr "on oltava alkamispäivän jälkeen" @@ -1602,51 +1601,51 @@ msgstr "Tuntematon muotoiluasetus" msgid "Invalid maximum pages" msgstr "Virheellinen enimmäismäärä sivuja" -#: ../../app/models/template.rb:254 +#: ../../app/models/template.rb:251 msgid "A historical template cannot be retrieved for being modified" msgstr "Ohjepohjan edellistä versiota ei pysty muokkaamaan" -#: ../../app/models/template.rb:378 +#: ../../app/models/template.rb:375 msgid "generate_copy! requires an organisation target" msgstr "kopion_tuottaminen! vaatii organisaatiokohteen." -#: ../../app/models/template.rb:387 +#: ../../app/models/template.rb:384 msgid "Copy of %{template}" msgstr "%{template}:n kopio" -#: ../../app/models/template.rb:394 +#: ../../app/models/template.rb:391 msgid "generate_version! requires a published template" msgstr "version_tuottaminen! vaatii julkaistun mallipohjan" -#: ../../app/models/template.rb:408 +#: ../../app/models/template.rb:405 msgid "customize! requires an organisation target" msgstr "mukauta! vaatii kohteeksi organisaation" -#: ../../app/models/template.rb:411 +#: ../../app/models/template.rb:408 msgid "customize! requires a template from a funder" msgstr "mukauta! vaatii rahoittajan mallipohjan" -#: ../../app/models/template.rb:447 +#: ../../app/models/template.rb:444 msgid "You can not publish a published template. " msgstr "Et voi julkaista julkaistua mallia." -#: ../../app/models/template.rb:451 +#: ../../app/models/template.rb:448 msgid "You can not publish a historical version of this template. " msgstr "Et voi julkaista tämän mallin historiallista versiota." -#: ../../app/models/template.rb:456 +#: ../../app/models/template.rb:453 msgid "You can not publish a template without phases. " msgstr "Et voi julkaista mallia ilman vaiheita." -#: ../../app/models/template.rb:461 +#: ../../app/models/template.rb:458 msgid "You can not publish a template without sections in a phase. " msgstr "Et voi julkaista mallia ilman osioita vaiheessa." -#: ../../app/models/template.rb:466 +#: ../../app/models/template.rb:463 msgid "You can not publish a template without questions in a section. " msgstr "Et voi julkaista mallipohjaa ilman kysymyksiä." -#: ../../app/models/template.rb:470 +#: ../../app/models/template.rb:467 msgid "Conditions in the template refer backwards" msgstr "Mallin ehdot viittaavat taaksepäin" @@ -1656,6 +1655,58 @@ msgstr "" "%{application_name}lla kirjoitettu aineistonhallintasuunnitelma on jaettu kans" "sasi" +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 +#: ../../app/views/contributors/_form.html.erb:10 +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:8 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 +#: ../../app/views/org_admin/departments/edit.html.erb:14 +#: ../../app/views/org_admin/departments/new.html.erb:14 +#: ../../app/views/paginable/api_clients/_index.html.erb:6 +#: ../../app/views/paginable/contributors/_index.html.erb:7 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 +#: ../../app/views/paginable/themes/_index.html.erb:4 +#: ../../app/views/paginable/users/_index.html.erb:20 +#: ../../app/views/super_admin/api_clients/_form.html.erb:11 +msgid "Name" +msgstr "Nimi" + +#: ../../app/models/user/at_csv.rb:7 +msgid "E-Mail" +msgstr "Sähköposti" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Created Date" +msgstr "Luomispäivämäärä" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Last Activity" +msgstr "Viimeinen toiminta" + +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/layouts/_branding.html.erb:71 +#: ../../app/views/org_admin/users/edit.html.erb:71 +#: ../../app/views/paginable/users/_index.html.erb:26 +#: ../../app/views/super_admin/users/edit.html.erb:105 +msgid "Plans" +msgstr "Suunnitelmaa" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/users/_index.html.erb:27 +msgid "Current Privileges" +msgstr "Nykyiset käyttöoikeudet" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/notifications/_index.html.erb:8 +#: ../../app/views/paginable/users/_index.html.erb:28 +#: ../../app/views/super_admin/notifications/_form.html.erb:34 +msgid "Active" +msgstr "Aktiivinen" + +#: ../../app/models/user/at_csv.rb:8 +msgid "Department" +msgstr "osasto" + #: ../../app/policies/api/v0/guidance_group_policy.rb:11 #: ../../app/policies/api/v0/guidance_policy.rb:11 #: ../../app/policies/api/v0/statistics_policy.rb:11 @@ -1703,26 +1754,26 @@ msgid "" "research data (including software code, where it is necessary for interpreting" " the data itself) for initial use and later re-use." msgstr "" -"Hallintatoimenpiteet merkintöjen tekemiseksi (metatietojen tuottamiseksi), tie" -"tojen puhdistamiseksi ja tutkimustietojen (mukaan lukien ohjelmistokoodi, kun " -"se on tarpeen itse tietojen tulkitsemiseksi) ylläpitämiseksi alkuperäistä käyt" -"töä ja myöhempää uudelleenkäyttöä varten." +"Hallintatoimet, joilla kommentoidaan (tuotetaan metatietoja), puhdistetaan tie" +"toja ja ylläpidetään tutkimusaineistoja (mukaan lukien ohjelmistokoodi, jos se" +" on tarpeen itse tietojen tulkitsemiseksi) alkuperäistä käyttöä ja myöhempää u" +"udelleenkäyttöä varten\n" #: ../../app/presenters/contributor_presenter.rb:58 msgid "" "Conducting a research and investigation process, specifically performing the e" "xperiments, or data/evidence collection." msgstr "" -"Tutkimus- ja tutkimusprosessin suorittaminen, erityisesti kokeiden suorittamin" -"en tai tietojen / todisteiden kerääminen." +"Tutkimus- ja selvitysprosessin toteuttaminen, erityisesti kokeiden suorittamin" +"en tai tietojen kerääminen. " #: ../../app/presenters/contributor_presenter.rb:60 msgid "" "Management and coordination responsibility for the research activity planning " "and execution." msgstr "" -"Johtamis- ja koordinointivastuu tutkimustoiminnan suunnittelusta ja toteuttami" -"sesta." +"Hallinto- ja koordinointivastuu tutkimustoiminnan suunnittelusta ja toteutukse" +"sta." #: ../../app/presenters/research_output_presenter.rb:81 msgid "Generalist (multidisciplinary)" @@ -1866,7 +1917,7 @@ msgid "Please wait, Standards are loading" msgstr "Odota, standardit latautuvat" #: ../../app/views/answers/_new_edit.html.erb:68 -#: ../../app/views/contributors/_form.html.erb:94 +#: ../../app/views/contributors/_form.html.erb:95 #: ../../app/views/devise/passwords/edit.html.erb:35 #: ../../app/views/devise/registrations/_password_details.html.erb:31 #: ../../app/views/devise/registrations/_personal_details.html.erb:90 @@ -1887,7 +1938,7 @@ msgstr "Odota, standardit latautuvat" #: ../../app/views/plans/_edit_details.html.erb:11 #: ../../app/views/plans/_guidance_selection.html.erb:23 #: ../../app/views/questions/_preview_question.html.erb:111 -#: ../../app/views/research_outputs/_form.html.erb:177 +#: ../../app/views/research_outputs/_form.html.erb:178 #: ../../app/views/super_admin/api_clients/_form.html.erb:67 #: ../../app/views/super_admin/notifications/_form.html.erb:66 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -1928,20 +1979,6 @@ msgstr " kysymyksiä suunnitelmasi." msgid "This answer triggers email(s) to " msgstr "Tämä vastaus laukaisee sähköpostit osoitteeseen" -#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 -#: ../../app/views/contributors/_form.html.erb:10 -#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 -#: ../../app/views/org_admin/departments/edit.html.erb:14 -#: ../../app/views/org_admin/departments/new.html.erb:14 -#: ../../app/views/paginable/api_clients/_index.html.erb:6 -#: ../../app/views/paginable/contributors/_index.html.erb:7 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 -#: ../../app/views/paginable/themes/_index.html.erb:4 -#: ../../app/views/paginable/users/_index.html.erb:20 -#: ../../app/views/super_admin/api_clients/_form.html.erb:11 -msgid "Name" -msgstr "Nimi" - #: ../../app/views/contact_us/contacts/_new_left.html.erb:13 #: ../../app/views/contact_us/contacts/_new_right.html.erb:23 #: ../../app/views/contributors/_form.html.erb:19 @@ -1951,7 +1988,7 @@ msgstr "Nimi" #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/contributors/_index.html.erb:11 #: ../../app/views/paginable/users/_index.html.erb:21 -#: ../../app/views/plans/_share_form.html.erb:107 +#: ../../app/views/plans/_share_form.html.erb:109 #: ../../app/views/shared/_create_account_form.html.erb:12 #: ../../app/views/shared/_sign_in_form.html.erb:3 #: ../../app/views/super_admin/users/edit.html.erb:15 @@ -1977,7 +2014,7 @@ msgid "Security check" msgstr "Varmennus" #: ../../app/views/contact_us/contacts/_new_left.html.erb:43 -#: ../../app/views/plans/_share_form.html.erb:146 +#: ../../app/views/plans/_share_form.html.erb:148 msgid "Submit" msgstr "Lähetä" @@ -2007,8 +2044,8 @@ msgstr "" #: ../../app/views/contact_us/contacts/new.html.erb:10 #: ../../app/views/layouts/_branding.html.erb:41 -#: ../../app/views/layouts/_footer.html.erb:24 -#: ../../app/views/layouts/_footer.html.erb:30 +#: ../../app/views/layouts/_footer.html.erb:23 +#: ../../app/views/layouts/_footer.html.erb:29 #: ../../app/views/org_admin/plans/index.html.erb:40 #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:39 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:24 @@ -2051,7 +2088,7 @@ msgstr "Organisaatio" msgid "Roles" msgstr "roolit" -#: ../../app/views/contributors/_form.html.erb:96 +#: ../../app/views/contributors/_form.html.erb:97 #: ../../app/views/layouts/modal_search/_result.html.erb:23 #: ../../app/views/notes/_archive.html.erb:10 #: ../../app/views/notes/_list.html.erb:16 @@ -2065,16 +2102,16 @@ msgstr "roolit" #: ../../app/views/paginable/guidance_groups/_index.html.erb:56 #: ../../app/views/paginable/guidances/_index.html.erb:61 #: ../../app/views/paginable/orgs/_index.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:75 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:78 #: ../../app/views/paginable/research_outputs/_index.html.erb:53 #: ../../app/views/paginable/templates/_customisable.html.erb:67 #: ../../app/views/paginable/templates/_organisational.html.erb:74 -#: ../../app/views/plans/_share_form.html.erb:89 -#: ../../app/views/research_outputs/_form.html.erb:179 +#: ../../app/views/plans/_share_form.html.erb:91 +#: ../../app/views/research_outputs/_form.html.erb:180 msgid "Remove" msgstr "Poista" -#: ../../app/views/contributors/_form.html.erb:99 +#: ../../app/views/contributors/_form.html.erb:100 #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:29 #: ../../app/views/guidances/new_edit.html.erb:50 #: ../../app/views/notes/_archive.html.erb:11 @@ -2085,7 +2122,7 @@ msgstr "Poista" #: ../../app/views/org_admin/questions/_form.html.erb:105 #: ../../app/views/plans/_guidance_selection.html.erb:35 #: ../../app/views/plans/new.html.erb:124 -#: ../../app/views/research_outputs/_form.html.erb:182 +#: ../../app/views/research_outputs/_form.html.erb:183 #: ../../app/views/super_admin/api_clients/_form.html.erb:86 #: ../../app/views/super_admin/notifications/_form.html.erb:73 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -2279,16 +2316,16 @@ msgstr "" msgid "Hello" msgstr "Hei" -#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 -msgid "Your" -msgstr "Sinun" - #: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 msgid "" "account has been locked due to an excessive number of unsuccessful sign in att" "empts." msgstr "tili on suljettu liiallisten epäonnistuneiden kirjautumisyritysten vuoksi." +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 +msgid "Your" +msgstr "Sinun" + #: ../../app/views/devise/mailer/unlock_instructions.html.erb:6 msgid "Click the link below to unlock your account" msgstr "Klikkaa alla olevaa linkkiä ja tilisi avautuu" @@ -2539,7 +2576,6 @@ msgid "Do you have a %{application_name} account?" msgstr "Onko sinulla jo %{application_name} -tili?" #: ../../app/views/devise/registrations/new.html.erb:22 -#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 @@ -2594,6 +2630,27 @@ msgstr "" "n käyttäjille, ruksaa tämä laatikko. Käyttäjät voivat valita, että tämä alaoh" "je näkyy, kun he vastaavat kysymyksiin 'Luo suunnitelma' -kohdassa." +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:15 +#: ../../app/views/org_admin/templates/_form.html.erb:35 +#: ../../app/views/org_admin/templates/_row.html.erb:10 +#: ../../app/views/org_admin/templates/_row.html.erb:13 +#: ../../app/views/org_admin/templates/_show.html.erb:19 +#: ../../app/views/org_admin/templates/_show.html.erb:22 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 +#: ../../app/views/paginable/guidances/_index.html.erb:37 +#: ../../app/views/paginable/templates/_customisable.html.erb:31 +#: ../../app/views/paginable/templates/_customisable.html.erb:34 +#: ../../app/views/paginable/templates/_history.html.erb:8 +#: ../../app/views/paginable/templates/_organisational.html.erb:36 +#: ../../app/views/paginable/templates/_organisational.html.erb:39 +msgid "Published" +msgstr "Julkaistu" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 +msgid "Optional subset" +msgstr "Valinnainen alakohta" + #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 msgid " (e.g. School/ Department) " msgstr "(esim. Koulu/Osasto)" @@ -2760,13 +2817,6 @@ msgstr "Edellinen" msgid "Admin" msgstr "Ylläpitäjä" -#: ../../app/views/layouts/_branding.html.erb:71 -#: ../../app/views/org_admin/users/edit.html.erb:71 -#: ../../app/views/paginable/users/_index.html.erb:26 -#: ../../app/views/super_admin/users/edit.html.erb:105 -msgid "Plans" -msgstr "Suunnitelmaa" - #: ../../app/views/layouts/_branding.html.erb:77 #: ../../app/views/org_admin/templates/index.html.erb:4 #: ../../app/views/paginable/orgs/_index.html.erb:8 @@ -2834,11 +2884,7 @@ msgid "Privacy statement" msgstr "Tietosuojaseloste" #: ../../app/views/layouts/_footer.html.erb:17 -msgid "Accessibility statement" -msgstr "Saavutettavuusseloste (englanniksi)" - -#: ../../app/views/layouts/_footer.html.erb:18 -msgid "Github" +msgid "GitHub" msgstr "GitHub" #: ../../app/views/layouts/_navigation.html.erb:12 @@ -2920,50 +2966,50 @@ msgstr "Kirjaudu ulos" msgid "%{application_name}" msgstr "%{application_name}" -#: ../../app/views/layouts/application.html.erb:91 -msgid "Error:" -msgstr "Virhe:" - #: ../../app/views/layouts/application.html.erb:91 msgid "Notice:" msgstr "Hei!" +#: ../../app/views/layouts/application.html.erb:91 +msgid "Error:" +msgstr "Virhe:" + #: ../../app/views/layouts/application.html.erb:102 msgid "Loading..." msgstr "Ladataan ..." -#: ../../app/views/layouts/application.html.erb:122 +#: ../../app/views/layouts/application.html.erb:121 #: ../../app/views/plans/new.html.erb:2 msgid "This field is required." msgstr "Tämä kenttä on pakollinen." -#: ../../app/views/layouts/application.html.erb:124 +#: ../../app/views/layouts/application.html.erb:123 #: ../../app/views/shared/_create_account_form.html.erb:31 msgid "Show password" msgstr "Näytä salasana" -#: ../../app/views/layouts/application.html.erb:125 +#: ../../app/views/layouts/application.html.erb:124 msgid "Select an organisation from the list." msgstr "Valitse organisaatio listalta." -#: ../../app/views/layouts/application.html.erb:126 +#: ../../app/views/layouts/application.html.erb:125 msgid "My organisation isn't listed" msgstr "Organisaationi puuttuu listasta" -#: ../../app/views/layouts/application.html.erb:128 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:39 +#: ../../app/views/layouts/application.html.erb:127 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:42 msgid "N/A" msgstr "Ei käytettävissä" -#: ../../app/views/layouts/application.html.erb:132 +#: ../../app/views/layouts/application.html.erb:131 msgid "Hide list." msgstr "Piilota lista." -#: ../../app/views/layouts/application.html.erb:133 +#: ../../app/views/layouts/application.html.erb:132 msgid "See the full list of partner institutions." msgstr "Katso lista partneri-instituutioista." -#: ../../app/views/layouts/application.html.erb:135 +#: ../../app/views/layouts/application.html.erb:134 msgid "" "Unable to find a suitable template for the research organisation and funder yo" "u selected." @@ -2971,27 +3017,27 @@ msgstr "" "Valitsemallesi tutkimusorganisaatiolle ja rahoittajalle ei löydy sopivaa malli" "pohjaa." -#: ../../app/views/layouts/application.html.erb:136 +#: ../../app/views/layouts/application.html.erb:135 msgid "Please select a research organisation and funder to continue." msgstr "Valitse tutkimusorganisaatio ja rahoittaja ennen kuin jatkat." -#: ../../app/views/layouts/application.html.erb:138 +#: ../../app/views/layouts/application.html.erb:137 msgid "Loading ..." msgstr "Latautuu ..." -#: ../../app/views/layouts/application.html.erb:139 +#: ../../app/views/layouts/application.html.erb:138 msgid "Unable to load the section's content at this time." msgstr "Osion sisällön lataaminen ei onnistu tällä hetkellä." -#: ../../app/views/layouts/application.html.erb:140 +#: ../../app/views/layouts/application.html.erb:139 msgid "Unable to load the question's content at this time." msgstr "Kysymyksen sisällön lataaminen ei onnistu tällä hetkellä." -#: ../../app/views/layouts/application.html.erb:141 +#: ../../app/views/layouts/application.html.erb:140 msgid "Opens in a new window" msgstr "Avautuu uuteen ikkunaan" -#: ../../app/views/layouts/application.html.erb:143 +#: ../../app/views/layouts/application.html.erb:142 msgid "" "%{n} results are available, use up and down arrows to navigate suggestions. Us" "e the Enter key to select a suggestion or the Escape key to close the suggesti" @@ -3001,11 +3047,11 @@ msgstr "" "ksiin. Käytä Enter-näppäintä valitaksesi ehdotuksen tai Escape-näppäintä sulke" "aksesi ehdotukset." -#: ../../app/views/layouts/application.html.erb:144 +#: ../../app/views/layouts/application.html.erb:143 msgid "No results are available for your entry." msgstr "Tuloillesi ei ole tuloksia." -#: ../../app/views/layouts/application.html.erb:145 +#: ../../app/views/layouts/application.html.erb:144 msgid "Searching ..." msgstr "Etsitään ..." @@ -3019,7 +3065,7 @@ msgid "No results matched your filter criteria." msgstr "Yksikään tulos ei vastannut suodatusehtojasi." #: ../../app/views/layouts/modal_search/_form.html.erb:41 -#: ../../app/views/layouts/modal_search/_form.html.erb:83 +#: ../../app/views/layouts/modal_search/_form.html.erb:84 msgid "Close" msgstr "kiinni" @@ -3027,7 +3073,7 @@ msgstr "kiinni" msgid "%{topic} search" msgstr "%{topic} haku" -#: ../../app/views/layouts/modal_search/_form.html.erb:66 +#: ../../app/views/layouts/modal_search/_form.html.erb:67 msgid "Apply filter(s)" msgstr "Käytä suodattimia" @@ -3063,7 +3109,7 @@ msgstr "Lisää kommentti" #: ../../app/views/paginable/guidance_groups/_index.html.erb:49 #: ../../app/views/paginable/guidances/_index.html.erb:54 #: ../../app/views/paginable/orgs/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:58 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 #: ../../app/views/paginable/research_outputs/_index.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:56 #: ../../app/views/paginable/templates/_organisational.html.erb:56 @@ -3336,13 +3382,13 @@ msgstr "Tyyppi" #: ../../app/views/paginable/orgs/_index.html.erb:10 #: ../../app/views/paginable/orgs/_index.html.erb:30 #: ../../app/views/paginable/plans/_privately_visible.html.erb:13 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:53 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:56 #: ../../app/views/paginable/research_outputs/_index.html.erb:23 #: ../../app/views/paginable/research_outputs/_index.html.erb:48 #: ../../app/views/paginable/templates/_customisable.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:10 #: ../../app/views/paginable/templates/_organisational.html.erb:53 -#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:53 msgid "Actions" msgstr "Toiminnot" @@ -3614,21 +3660,6 @@ msgstr "ainoastaan %{org_name}:n sisäiseen käyttöön" msgid "Status" msgstr "Tila" -#: ../../app/views/org_admin/templates/_form.html.erb:35 -#: ../../app/views/org_admin/templates/_row.html.erb:10 -#: ../../app/views/org_admin/templates/_row.html.erb:13 -#: ../../app/views/org_admin/templates/_show.html.erb:19 -#: ../../app/views/org_admin/templates/_show.html.erb:22 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 -#: ../../app/views/paginable/guidances/_index.html.erb:37 -#: ../../app/views/paginable/templates/_customisable.html.erb:31 -#: ../../app/views/paginable/templates/_customisable.html.erb:34 -#: ../../app/views/paginable/templates/_history.html.erb:8 -#: ../../app/views/paginable/templates/_organisational.html.erb:36 -#: ../../app/views/paginable/templates/_organisational.html.erb:39 -msgid "Published" -msgstr "Julkaistu" - #: ../../app/views/org_admin/templates/_form.html.erb:37 #: ../../app/views/org_admin/templates/_row.html.erb:16 #: ../../app/views/org_admin/templates/_show.html.erb:26 @@ -3995,7 +4026,7 @@ msgstr "Käyttäjätiedot" #: ../../app/views/orgs/admin_edit.html.erb:22 #: ../../app/views/plans/_navigation.html.erb:33 -#: ../../app/views/plans/_request_feedback_form.html.erb:13 +#: ../../app/views/plans/_request_feedback_form.html.erb:19 #: ../../app/views/static_pages/help.html.erb:45 msgid "Request feedback" msgstr "Pyydä palautetta" @@ -4088,13 +4119,9 @@ msgstr "" "Olet poistamassa '%{department_name}'. Tämä vaikuttaa ohjaukseen. Oletko varma" "?" -#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 -msgid "Optional subset" -msgstr "Valinnainen alakohta" - #: ../../app/views/paginable/guidance_groups/_index.html.erb:31 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:45 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:48 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:12 @@ -4102,8 +4129,8 @@ msgid "No" msgstr "Ei" #: ../../app/views/paginable/guidance_groups/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:43 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:46 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:11 @@ -4151,12 +4178,6 @@ msgstr "Aloita" msgid "Expiration" msgstr "Päättyminen" -#: ../../app/views/paginable/notifications/_index.html.erb:8 -#: ../../app/views/paginable/users/_index.html.erb:28 -#: ../../app/views/super_admin/notifications/_form.html.erb:34 -msgid "Active" -msgstr "Aktiivinen" - #: ../../app/views/paginable/orgs/_index.html.erb:6 msgid "Administrator Email" msgstr "Ylläpitäjän sähköposti" @@ -4222,8 +4243,8 @@ msgstr "luotu" #: #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:21 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:73 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:9 #: ../../app/views/paginable/templates/_history.html.erb:6 #: ../../app/views/paginable/templates/_organisational.html.erb:2 @@ -4271,22 +4292,30 @@ msgstr "Rooli" msgid "Shared" msgstr "Jaettu" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 #: ../../app/views/plans/_navigation.html.erb:28 msgid "Share" msgstr "Jaa" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:65 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:68 #: ../../app/views/paginable/templates/_organisational.html.erb:67 msgid "Copy" msgstr "Kopioi" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 #: ../../app/views/paginable/templates/_history.html.erb:58 msgid "View" msgstr "Näytä" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 +msgid "" +"Are you sure you wish to remove this plan? Any collaborators will still be abl" +"e to access it." +msgstr "" +"Haluatko varmasti poistaa suunnitelman? Yhteistyökumppaneilla on edelleen pääs" +"y siihen." + +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" "Are you sure you wish to remove this public plan? This will remove it from the" " Public DMPs page but any collaborators will still be able to access it." @@ -4295,14 +4324,6 @@ msgstr "" "sten aineistonhallintasuunnitelmien sivulta mutta yhteistyökumppaneilla on ede" "lleen pääsy siihen." -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 -msgid "" -"Are you sure you wish to remove this plan? Any collaborators will still be abl" -"e to access it." -msgstr "" -"Haluatko varmasti poistaa suunnitelman? Yhteistyökumppaneilla on edelleen pääs" -"y siihen." - #: ../../app/views/paginable/plans/_publicly_visible.html.erb:17 msgid "Not Applicable" msgstr "Ei sovellettavissa" @@ -4464,10 +4485,6 @@ msgstr "Luontipäivä" msgid "Last activity" msgstr "Viimeisin toiminta" -#: ../../app/views/paginable/users/_index.html.erb:27 -msgid "Current Privileges" -msgstr "Nykyiset käyttöoikeudet" - #: ../../app/views/paginable/users/_index.html.erb:46 msgid "Edit Profile" msgstr "Muokkaa käyttäjätietoja" @@ -4723,7 +4740,8 @@ msgstr "Projektin loppu" #: ../../app/views/plans/_project_details.html.erb:71 msgid "The estimated date on which you will complete this project." -msgstr "Arvioitu päivämäärä, jolloin suoritat tämän projektin." +msgstr "" +"Arvioitu päivämäärä, jolloin päätät projektin.\n" #: ../../app/views/plans/_project_details.html.erb:80 msgid "Landing page" @@ -4763,18 +4781,27 @@ msgid "" "Provide a URL to the award's landing page if possible, if not please provide t" "he award/grant number." msgstr "" -"Anna URL palkinnon aloitussivulle, jos mahdollista, jos ei, ilmoita palkinnon " -"/ avustusnumero." +"Anna rahoituspäätöksen verkko-osoite, jos mahdollista; jos ei, ilmoita päätöks" +"en numero." #: ../../app/views/plans/_request_feedback_form.html.erb:6 msgid "Request expert feedback" msgstr "Pyydä palautetta asiantuntijalta" -#: ../../app/views/plans/_request_feedback_form.html.erb:11 +#: ../../app/views/plans/_request_feedback_form.html.erb:9 +msgid "" +"Click below to give data management staff at %{owner_org}, the Plan Owner's or" +"g, access to read and comment on your plan." +msgstr "" +"Napsauta alla, jos haluat antaa %{owner_org}, suunnitelman omistajan organisaa" +"tion, tiedonhallintahenkilöstölle oikeuden lukea ja kommentoida suunnitelmaasi" +"." + +#: ../../app/views/plans/_request_feedback_form.html.erb:17 msgid "You can continue to edit and download the plan in the interim." msgstr "Voit jatkaa suunnitelman muokkaamista ja lataamista sillä aikaa." -#: ../../app/views/plans/_request_feedback_form.html.erb:17 +#: ../../app/views/plans/_request_feedback_form.html.erb:23 msgid "Feedback has been requested." msgstr "Palautetta on pyydetty." @@ -4795,7 +4822,7 @@ msgstr "" msgid "Set plan visibility" msgstr "Suunnitelman näkyvyys" -#: ../../app/views/plans/_share_form.html.erb:9 +#: ../../app/views/plans/_share_form.html.erb:13 msgid "" "Public or organisational visibility is intended for finished plans. You must a" "nswer at least %{percentage}%% of the questions to enable these options. Note:" @@ -4804,7 +4831,7 @@ msgstr "" "Voit jakaa vain suunnitelmia, joissa on vastattu vähintään %{percentage}%%:iin" " kysymyksistä. Huomaa, että testisuunnitelmia ei voi jakaa." -#: ../../app/views/plans/_share_form.html.erb:19 +#: ../../app/views/plans/_share_form.html.erb:21 msgid "" "Private: visible to me, specified collaborators and administrators at my organ" "isation" @@ -4812,22 +4839,22 @@ msgstr "" "Yksityinen: vain minä ja henkilöt, joille olen jakanut suunnitelman näkevät se" "n " -#: ../../app/views/plans/_share_form.html.erb:27 +#: ../../app/views/plans/_share_form.html.erb:29 #: ../../app/views/user_mailer/plan_visibility.html.erb:12 msgid "Organisation: anyone at my organisation can view" msgstr "" "Organisaatiokohtainen: näkyvillä DMPTuulissa organisaatiosi käyttäjille (organ" "isaatio perustuu käyttäjän omaan ilmoitukseen)" -#: ../../app/views/plans/_share_form.html.erb:35 +#: ../../app/views/plans/_share_form.html.erb:37 msgid "Public: anyone can view" msgstr "Avattu: näkyvissä kaikille ilman DMPTuuli-kirjautumista" -#: ../../app/views/plans/_share_form.html.erb:42 +#: ../../app/views/plans/_share_form.html.erb:44 msgid "Manage collaborators" msgstr "Hallinnoi jaettuja suunnitelmia" -#: ../../app/views/plans/_share_form.html.erb:43 +#: ../../app/views/plans/_share_form.html.erb:45 msgid "" "Invite specific people to read, edit, or administer your plan. Invitees will r" "eceive an email notification that they have access to this plan." @@ -4835,20 +4862,20 @@ msgstr "" "Voit kutsua henkilöitä lukemaan ja muokkaamaan suunnitelmaasi. Henkilöt saavat" " sähköposti-ilmoituksen, kun olet myöntänyt heille pääsyn suunnitelmaasi." -#: ../../app/views/plans/_share_form.html.erb:48 +#: ../../app/views/plans/_share_form.html.erb:50 msgid "Email address" msgstr "Sähköpostiosoite" -#: ../../app/views/plans/_share_form.html.erb:49 -#: ../../app/views/plans/_share_form.html.erb:122 +#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:124 msgid "Permissions" msgstr "Oikeudet" -#: ../../app/views/plans/_share_form.html.erb:89 +#: ../../app/views/plans/_share_form.html.erb:91 msgid "Are you sure?" msgstr "Haluatko varmasti?" -#: ../../app/views/plans/_share_form.html.erb:100 +#: ../../app/views/plans/_share_form.html.erb:102 msgid "Invite collaborators" msgstr "Lähetä kutsuja" @@ -4964,7 +4991,7 @@ msgstr "" #: ../../app/views/plans/new.html.erb:108 msgid "Which DMP template would you like to use?" -msgstr "Minkä aineistonhallintasuunnitelman mallipohjaa haluaisit käyttää?" +msgstr "Mitä aineistonhallintasuunnitelmapohjaa haluaisit käyttää?" #: ../../app/views/plans/new.html.erb:111 msgid "Please select a template" @@ -5060,6 +5087,10 @@ msgstr "" msgid "Please describe the output type" msgstr "Kuvaile tulostetyyppi" +#: ../../app/views/research_outputs/_form.html.erb:27 +msgid "Research output type" +msgstr "Tutkimustulosten tyyppi" + #: ../../app/views/research_outputs/_form.html.erb:44 msgid "Abbreviation" msgstr "Lyhenne" @@ -5100,10 +5131,15 @@ msgid "Initial access level" msgstr "Alkuperäinen käyttöoikeustaso" #: ../../app/views/research_outputs/_form.html.erb:158 +#: ../../app/views/research_outputs/_form.html.erb:164 #: ../../app/views/shared/export/_plan_outputs.erb:23 msgid "Anticipated file size" msgstr "Arvioitu tiedostokoko" +#: ../../app/views/research_outputs/_form.html.erb:170 +msgid "File size units" +msgstr "Tiedoston kokoyksiköt" + #: ../../app/views/research_outputs/edit.html.erb:12 msgid "Editing %{research_output_title}" msgstr "Muokkaaminen %{research_output_title}" @@ -5121,11 +5157,12 @@ msgstr "Listaa odotetut tutkimustuloksesi." msgid "Add a research output" msgstr "Lisää tutkimustulos" -#: ../../app/views/research_outputs/licenses/_form.html.erb:24 +#: ../../app/views/research_outputs/licenses/_form.html.erb:20 +#: ../../app/views/research_outputs/licenses/_form.html.erb:25 msgid "Initial license" msgstr "Alkuperäinen lisenssi" -#: ../../app/views/research_outputs/licenses/_form.html.erb:30 +#: ../../app/views/research_outputs/licenses/_form.html.erb:31 msgid "For guidance on selecting a license:" msgstr "Ohjeita lisenssin valintaan:" @@ -5153,10 +5190,18 @@ msgstr "Tarkenna hakuasi valitsemalla aihealue." msgid "- Select a subject area -" msgstr "- Valitse aihealue -" -#: ../../app/views/research_outputs/repositories/_search.html.erb:21 +#: ../../app/views/research_outputs/repositories/_search.html.erb:14 +msgid "Select a subject area" +msgstr "Valitse aihealue" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:22 msgid "- Select a repository type -" msgstr "- Valitse arkiston tyyppi -" +#: ../../app/views/research_outputs/repositories/_search.html.erb:24 +msgid "Select a repository type" +msgstr "Valitse arkiston tyyppi" + #: ../../app/views/research_outputs/repositories/_search_result.html.erb:20 msgid "Click to view repositories related to %{subject}" msgstr "Napsauta nähdäksesi %{subject}-tietovarastot" @@ -5357,8 +5402,8 @@ msgid "" "double check that your organisation does not appear in the list in a slightly " "different form." msgstr "" -"Edellä nimeämällesi organisaatiolle luodaan uusi merkintä. Tarkista vielä kerr" -"an, että organisaatiosi ei näy luettelossa hiukan eri muodossa." +"Olet luomassa järjestelmään uutta organisaatiota. Tarkista vielä kerran, että " +"organisaatiosi ei näy luettelossa eri muodossa. \n" #: ../../app/views/shared/org_selectors/_local_only.html.erb:48 msgid "The name you entered was not one of the listed suggestions!" @@ -5482,14 +5527,14 @@ msgstr "Rekisteröidy" msgid "on the homepage." msgstr "kotisivulla." -#: ../../app/views/static_pages/about_us.html.erb:35 -msgid "Please visit the" -msgstr "Mene" - #: ../../app/views/static_pages/about_us.html.erb:35 msgid "page for guidance." msgstr "ohjeistuksen sivu." +#: ../../app/views/static_pages/about_us.html.erb:35 +msgid "Please visit the" +msgstr "Mene" + #: ../../app/views/static_pages/about_us.html.erb:37 msgid "Customising for your Organisation" msgstr "Mukauta organisaatiosi tarpeisiin" @@ -6167,6 +6212,14 @@ msgstr "Ei. Suunnitelmat, jotka on luotu mallien perusteella" msgid "Statistics on your Templates" msgstr "Tilastot malleistasi" +#: ../../app/views/usage/_total_usage.html.erb:7 +msgid "Total users" +msgstr "Käyttäjiä yhteensä" + +#: ../../app/views/usage/_total_usage.html.erb:11 +msgid "Total plans" +msgstr "Suunnitelmia yhteensä" + #: ../../app/views/usage/_total_usage.html.erb:15 msgid "Excluding Test Plans" msgstr "Lukuun ottamatta testisuunnitelmia" @@ -6307,15 +6360,19 @@ msgstr "" msgid "Hello %{user_name}," msgstr "Hei %{user_name}," -#: ../../app/views/user_mailer/feedback_notification.html.erb:5 +#: ../../app/views/user_mailer/feedback_notification.html.erb:6 msgid "" "%{requestor} has requested feedback on a plan %{link_html}. To add comments, p" -"lease visit the 'Plans' page under the Admin menu in %{tool_name} and open the" +"lease visit the \"Plans\" page under the Admin menu in %{tool_name} and open the" " plan." msgstr "" "%{requestor} on pyytänyt palautetta suunnitelmasta %{link_html}. Voit lisätä k" -"ommentteja valitsemalla %{tool_name} Admin-valikon alla olevat suunnitelmat-si" -"vun ja avaamalla suunnitelman." +"ommentteja vierailemalla %{tool_name}:n Järjestelmänvalvoja-valikon Suunnitelm" +"at-sivulla ja avaamalla suunnitelman." + +#: ../../app/views/user_mailer/feedback_notification.html.erb:17 +msgid "Alternatively, you can click the link below:" +msgstr "Vaihtoehtoisesti voit napsauttaa alla olevaa linkkiä:" #: ../../app/views/user_mailer/new_comment.html.erb:5 msgid "" @@ -6403,22 +6460,22 @@ msgstr "" msgid "Hello %{recipient_name}," msgstr "Hei %{recipient_name}," -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " is creating a Data Management Plan and has answered " -msgstr " on luomassa tiedonhallintasuunnitelmaa ja on vastannut" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " to " msgstr " että" -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " in a plan called " -msgstr " suunnitelmassa nimeltään" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " based on the template " msgstr " perustuu malliin" +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " is creating a Data Management Plan and has answered " +msgstr " on luomassa tiedonhallintasuunnitelmaa ja on vastannut" + +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " in a plan called " +msgstr " suunnitelmassa nimeltään" + #: ../../app/views/user_mailer/sharing_notification.html.erb:5 msgid "" "Your colleague %{inviter_name} has invited you to contribute to \n" @@ -6542,7 +6599,7 @@ msgstr "Suunnitelma on jaettu kanssani" #: ../../app/views/users/_notification_preferences.html.erb:23 msgid "Admin privileges granted to me" -msgstr "Minulla olevat ylläpito-oikeudet" +msgstr "Minulle myönnetyt ylläpito-oikeudet" #: ../../app/views/users/_notification_preferences.html.erb:29 msgid "Feedback has been requested for my DMP" @@ -6573,14 +6630,14 @@ msgstr "" msgid "Download users" msgstr "Lataa käyttäjät" -#: ../../app/views/users/refresh_token.js.erb:1 -msgid "Successfully regenerate your API token." -msgstr "Luo API-tunnuksesi onnistuneesti." - #: ../../app/views/users/refresh_token.js.erb:1 msgid "Unable to regenerate your API token." msgstr "API-tunnuksen luominen epäonnistui." +#: ../../app/views/users/refresh_token.js.erb:1 +msgid "Successfully regenerate your API token." +msgstr "Luo API-tunnuksesi onnistuneesti." + #: i18n_placeholders.rb:4 msgid "activerecord.errors.messages.record_invalid" msgstr "activerecord.errors.messages.record_invalid" diff --git a/config/locale/fr_CA/LC_MESSAGES/app.mo b/config/locale/fr_CA/LC_MESSAGES/app.mo index aceecf5bd409a3d64a54405de3eebb0e65951e2a..8e0eef7271d3586e80c45f7812b3b4ca674b9022 100644 GIT binary patch delta 21962 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 delta 22149 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 diff --git a/config/locale/fr_CA/app.po b/config/locale/fr_CA/app.po index cdd2dddf2b..b19f98dddc 100644 --- a/config/locale/fr_CA/app.po +++ b/config/locale/fr_CA/app.po @@ -1,14 +1,14 @@ -# French translations for app package. -# Copyright (C) 2022 app -# This file is distributed under the same license as the app package. +# French translations for DMPRoadmap-Development package. +# Copyright (C) 2022 DMPRoadmap-Development +# This file is distributed under the same license as the DMPRoadmap-Development package. # FIRST AUTHOR , 2022. # msgid "" msgstr "" -"Project-Id-Version: app 1.0\n" +"Project-Id-Version: DMPRoadmap-Development 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2022-10-25 16:02+0000\n" -"PO-Revision-Date: 2022-10-25 18:03+0200\n" +"POT-Creation-Date: 2022-11-30 14:11-0500\n" +"PO-Revision-Date: 2022-11-30 20:11+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: French\n" "Language: fr_CA\n" @@ -265,7 +265,7 @@ msgstr "ajouté" #: ../../app/controllers/contributors_controller.rb:72 #: ../../app/controllers/guidance_groups_controller.rb:55 #: ../../app/controllers/guidances_controller.rb:75 -#: ../../app/controllers/notes_controller.rb:89 +#: ../../app/controllers/notes_controller.rb:88 #: ../../app/controllers/org_admin/departments_controller.rb:50 #: ../../app/controllers/org_admin/sections_controller.rb:103 #: ../../app/controllers/org_admin/templates_controller.rb:205 @@ -285,7 +285,7 @@ msgstr "enregistré" #: ../../app/controllers/contributors_controller.rb:74 #: ../../app/controllers/guidance_groups_controller.rb:57 #: ../../app/controllers/guidances_controller.rb:77 -#: ../../app/controllers/notes_controller.rb:107 +#: ../../app/controllers/notes_controller.rb:106 #: ../../app/controllers/org_admin/departments_controller.rb:52 #: ../../app/controllers/org_admin/sections_controller.rb:105 #: ../../app/controllers/org_admin/templates_controller.rb:210 @@ -301,7 +301,7 @@ msgid "save" msgstr "enregistrer" #: ../../app/controllers/contributors_controller.rb:84 -#: ../../app/controllers/notes_controller.rb:131 +#: ../../app/controllers/notes_controller.rb:130 #: ../../app/controllers/org_admin/templates_controller.rb:238 #: ../../app/controllers/research_outputs_controller.rb:74 #: ../../app/controllers/super_admin/orgs_controller.rb:94 @@ -309,7 +309,7 @@ msgid "removed" msgstr "retiré" #: ../../app/controllers/contributors_controller.rb:87 -#: ../../app/controllers/notes_controller.rb:149 +#: ../../app/controllers/notes_controller.rb:148 #: ../../app/controllers/org_admin/templates_controller.rb:240 #: ../../app/controllers/research_outputs_controller.rb:77 #: ../../app/controllers/super_admin/orgs_controller.rb:97 @@ -335,7 +335,7 @@ msgstr "Une erreur s’est produite lors de la demande de commentaires pour ce p #: ../../app/controllers/guidance_groups_controller.rb:31 #: ../../app/controllers/guidances_controller.rb:53 -#: ../../app/controllers/notes_controller.rb:48 +#: ../../app/controllers/notes_controller.rb:47 #: ../../app/controllers/org_admin/departments_controller.rb:26 #: ../../app/controllers/org_admin/phases_controller.rb:121 #: ../../app/controllers/org_admin/questions_controller.rb:94 @@ -351,7 +351,7 @@ msgstr "créé" #: ../../app/controllers/guidance_groups_controller.rb:34 #: ../../app/controllers/guidances_controller.rb:55 -#: ../../app/controllers/notes_controller.rb:67 +#: ../../app/controllers/notes_controller.rb:66 #: ../../app/controllers/org_admin/departments_controller.rb:30 #: ../../app/controllers/org_admin/phases_controller.rb:123 #: ../../app/controllers/org_admin/questions_controller.rb:96 @@ -1135,17 +1135,17 @@ msgid "Owner" msgstr "Propriétaire" #: ../../app/helpers/plans_helper.rb:10 -#: ../../app/views/plans/_share_form.html.erb:127 +#: ../../app/views/plans/_share_form.html.erb:129 msgid "Co-owner" msgstr "Copropriétaire" #: ../../app/helpers/plans_helper.rb:12 -#: ../../app/views/plans/_share_form.html.erb:133 +#: ../../app/views/plans/_share_form.html.erb:135 msgid "Editor" msgstr "Éditeur" #: ../../app/helpers/plans_helper.rb:14 -#: ../../app/views/plans/_share_form.html.erb:139 +#: ../../app/views/plans/_share_form.html.erb:141 msgid "Read only" msgstr "Lecture seulement" @@ -1154,7 +1154,7 @@ msgid "Public" msgstr "Public" #: ../../app/helpers/plans_helper.rb:26 ../../app/helpers/plans_helper.rb:28 -#: ../../app/views/layouts/application.html.erb:129 +#: ../../app/views/layouts/application.html.erb:128 msgid "Private" msgstr "Privé" @@ -1167,7 +1167,7 @@ msgid "Public: anyone can view." msgstr "Public : Tous peuvent consulter le plan." #: ../../app/helpers/plans_helper.rb:39 -#: ../../app/views/layouts/application.html.erb:130 +#: ../../app/views/layouts/application.html.erb:129 msgid "Private: restricted to me and people I invite." msgstr "Privé : usage réservé à moi et aux personnes que j’invite." @@ -1398,62 +1398,61 @@ msgid "Affiliation: " msgstr "Affiliation :" #: ../../app/models/concerns/exportable_plan.rb:163 -#: ../../app/models/concerns/exportable_plan.rb:164 msgid "%{affiliation}" msgstr "%{affiliation}" -#: ../../app/models/concerns/exportable_plan.rb:166 -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:165 +#: ../../app/models/concerns/exportable_plan.rb:167 #: ../../app/views/shared/export/_plan_coversheet.erb:32 #: ../../app/views/shared/export/_plan_txt.erb:22 #: ../../app/views/shared/export/_plan_txt.erb:24 msgid "Template: " msgstr "Modèle :" -#: ../../app/models/concerns/exportable_plan.rb:166 +#: ../../app/models/concerns/exportable_plan.rb:165 msgid "%{funder}" msgstr "%{funder}" -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:167 msgid "%{template}" msgstr "%{template}" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 #: ../../app/views/shared/export/_plan_txt.erb:27 msgid "Grant number: " msgstr "Numéro de subvention :" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 msgid "%{grant_number}" msgstr "%{grant_number}" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 #: ../../app/views/shared/export/_plan_coversheet.erb:42 #: ../../app/views/shared/export/_plan_txt.erb:30 msgid "Project abstract: " msgstr "Résumé du projet :" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 msgid "%{description}" msgstr "%{description}" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 #: ../../app/views/shared/export/_plan_coversheet.erb:58 #: ../../app/views/shared/export/_plan_txt.erb:33 msgid "Last modified: " msgstr "Dernière modification :" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 msgid "%{date}" msgstr "%{date}" -#: ../../app/models/concerns/exportable_plan.rb:175 +#: ../../app/models/concerns/exportable_plan.rb:174 #: ../../app/views/shared/export/_plan_coversheet.erb:65 #: ../../app/views/shared/export/_plan_txt.erb:34 msgid "Copyright information:" msgstr "Renseignements sur le droit d’auteur :" -#: ../../app/models/concerns/exportable_plan.rb:176 +#: ../../app/models/concerns/exportable_plan.rb:175 msgid "" "The above plan creator(s) have agreed that others may use as\n" " much of the text of this plan as they would like in their own pla" @@ -1473,12 +1472,12 @@ msgstr "" "e du texte du plan ne signifie pas que les créateurs approuvent votre projet o" "u votre proposition ou qu’il(s) y sont liés." -#: ../../app/models/concerns/exportable_plan.rb:199 +#: ../../app/models/concerns/exportable_plan.rb:198 msgid "Not Answered" msgstr "Pas de réponse" #: ../../app/models/concerns/validation_messages.rb:11 -#: ../../app/models/template.rb:226 +#: ../../app/models/template.rb:223 msgid "can't be blank" msgstr "doit être rempli(e)" @@ -1568,7 +1567,7 @@ msgstr "essai" msgid "private" msgstr "privé" -#: ../../app/models/plan.rb:617 +#: ../../app/models/plan.rb:615 msgid "must be after the start date" msgstr "doit être postérieur à la date de début" @@ -1614,55 +1613,55 @@ msgstr "Paramètre de formatage inconnu" msgid "Invalid maximum pages" msgstr "Invalide – Nombre maximal de pages" -#: ../../app/models/template.rb:254 +#: ../../app/models/template.rb:251 msgid "A historical template cannot be retrieved for being modified" msgstr "Un modèle historique ne peut pas être récupéré pour être modifié" -#: ../../app/models/template.rb:378 +#: ../../app/models/template.rb:375 msgid "generate_copy! requires an organisation target" msgstr "un organisme cible est exigé pour generate_copy!" -#: ../../app/models/template.rb:387 +#: ../../app/models/template.rb:384 msgid "Copy of %{template}" msgstr "Copie de %{template}" -#: ../../app/models/template.rb:394 +#: ../../app/models/template.rb:391 msgid "generate_version! requires a published template" msgstr "un modèle publié est exigé pour generate_version!" -#: ../../app/models/template.rb:408 +#: ../../app/models/template.rb:405 msgid "customize! requires an organisation target" msgstr "organisme cible exiger pour personnaliser!" -#: ../../app/models/template.rb:411 +#: ../../app/models/template.rb:408 msgid "customize! requires a template from a funder" msgstr "un modèle d’un bailleur de fonds est exigé pour personnaliser!" -#: ../../app/models/template.rb:447 +#: ../../app/models/template.rb:444 msgid "You can not publish a published template. " msgstr "Vous ne pouvez pas publier un modèle déjà publié." -#: ../../app/models/template.rb:451 +#: ../../app/models/template.rb:448 msgid "You can not publish a historical version of this template. " msgstr "Vous ne pouvez pas publier une version historique de ce modèle." -#: ../../app/models/template.rb:456 +#: ../../app/models/template.rb:453 msgid "You can not publish a template without phases. " msgstr "Vous ne pouvez pas publier un modèle ne contenant pas de phases." -#: ../../app/models/template.rb:461 +#: ../../app/models/template.rb:458 msgid "You can not publish a template without sections in a phase. " msgstr "" "Vous ne pouvez pas publier un modèle dont une phase ne contient pas de section" "s." -#: ../../app/models/template.rb:466 +#: ../../app/models/template.rb:463 msgid "You can not publish a template without questions in a section. " msgstr "" "Vous ne pouvez pas publier un modèle dont certaines sections ne contiennent pa" "s de questions." -#: ../../app/models/template.rb:470 +#: ../../app/models/template.rb:467 msgid "Conditions in the template refer backwards" msgstr "Les conditions du modèle sont associées à une référence antérieure" @@ -1672,6 +1671,58 @@ msgstr "" "Un plan de gestion des données dans %{application_name} a été partagé avec vou" "s" +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 +#: ../../app/views/contributors/_form.html.erb:10 +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:8 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 +#: ../../app/views/org_admin/departments/edit.html.erb:14 +#: ../../app/views/org_admin/departments/new.html.erb:14 +#: ../../app/views/paginable/api_clients/_index.html.erb:6 +#: ../../app/views/paginable/contributors/_index.html.erb:7 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 +#: ../../app/views/paginable/themes/_index.html.erb:4 +#: ../../app/views/paginable/users/_index.html.erb:20 +#: ../../app/views/super_admin/api_clients/_form.html.erb:11 +msgid "Name" +msgstr "Nom" + +#: ../../app/models/user/at_csv.rb:7 +msgid "E-Mail" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Created Date" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Last Activity" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/layouts/_branding.html.erb:71 +#: ../../app/views/org_admin/users/edit.html.erb:71 +#: ../../app/views/paginable/users/_index.html.erb:26 +#: ../../app/views/super_admin/users/edit.html.erb:105 +msgid "Plans" +msgstr "Plans" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/users/_index.html.erb:27 +msgid "Current Privileges" +msgstr "Privilèges actuels" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/notifications/_index.html.erb:8 +#: ../../app/views/paginable/users/_index.html.erb:28 +#: ../../app/views/super_admin/notifications/_form.html.erb:34 +msgid "Active" +msgstr "Actif" + +#: ../../app/models/user/at_csv.rb:8 +msgid "Department" +msgstr "" + #: ../../app/policies/api/v0/guidance_group_policy.rb:11 #: ../../app/policies/api/v0/guidance_policy.rb:11 #: ../../app/policies/api/v0/statistics_policy.rb:11 @@ -1880,7 +1931,7 @@ msgid "Please wait, Standards are loading" msgstr "Veuillez patienter. Le chargement des normes est en cours." #: ../../app/views/answers/_new_edit.html.erb:68 -#: ../../app/views/contributors/_form.html.erb:94 +#: ../../app/views/contributors/_form.html.erb:95 #: ../../app/views/devise/passwords/edit.html.erb:35 #: ../../app/views/devise/registrations/_password_details.html.erb:31 #: ../../app/views/devise/registrations/_personal_details.html.erb:90 @@ -1901,7 +1952,7 @@ msgstr "Veuillez patienter. Le chargement des normes est en cours." #: ../../app/views/plans/_edit_details.html.erb:11 #: ../../app/views/plans/_guidance_selection.html.erb:23 #: ../../app/views/questions/_preview_question.html.erb:111 -#: ../../app/views/research_outputs/_form.html.erb:177 +#: ../../app/views/research_outputs/_form.html.erb:178 #: ../../app/views/super_admin/api_clients/_form.html.erb:67 #: ../../app/views/super_admin/notifications/_form.html.erb:66 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -1942,20 +1993,6 @@ msgstr " aux questions de votre plan." msgid "This answer triggers email(s) to " msgstr "Cette réponse déclenche l’envoi de courriels à" -#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 -#: ../../app/views/contributors/_form.html.erb:10 -#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 -#: ../../app/views/org_admin/departments/edit.html.erb:14 -#: ../../app/views/org_admin/departments/new.html.erb:14 -#: ../../app/views/paginable/api_clients/_index.html.erb:6 -#: ../../app/views/paginable/contributors/_index.html.erb:7 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 -#: ../../app/views/paginable/themes/_index.html.erb:4 -#: ../../app/views/paginable/users/_index.html.erb:20 -#: ../../app/views/super_admin/api_clients/_form.html.erb:11 -msgid "Name" -msgstr "Nom" - #: ../../app/views/contact_us/contacts/_new_left.html.erb:13 #: ../../app/views/contact_us/contacts/_new_right.html.erb:23 #: ../../app/views/contributors/_form.html.erb:19 @@ -1965,7 +2002,7 @@ msgstr "Nom" #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/contributors/_index.html.erb:11 #: ../../app/views/paginable/users/_index.html.erb:21 -#: ../../app/views/plans/_share_form.html.erb:107 +#: ../../app/views/plans/_share_form.html.erb:109 #: ../../app/views/shared/_create_account_form.html.erb:12 #: ../../app/views/shared/_sign_in_form.html.erb:3 #: ../../app/views/super_admin/users/edit.html.erb:15 @@ -1991,7 +2028,7 @@ msgid "Security check" msgstr "Vérification de sécurité" #: ../../app/views/contact_us/contacts/_new_left.html.erb:43 -#: ../../app/views/plans/_share_form.html.erb:146 +#: ../../app/views/plans/_share_form.html.erb:148 msgid "Submit" msgstr "Soumettre" @@ -2022,8 +2059,8 @@ msgstr "" #: ../../app/views/contact_us/contacts/new.html.erb:10 #: ../../app/views/layouts/_branding.html.erb:41 -#: ../../app/views/layouts/_footer.html.erb:24 -#: ../../app/views/layouts/_footer.html.erb:30 +#: ../../app/views/layouts/_footer.html.erb:23 +#: ../../app/views/layouts/_footer.html.erb:29 #: ../../app/views/org_admin/plans/index.html.erb:40 #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:39 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:24 @@ -2068,7 +2105,7 @@ msgstr "Affiliation" msgid "Roles" msgstr "Rôles" -#: ../../app/views/contributors/_form.html.erb:96 +#: ../../app/views/contributors/_form.html.erb:97 #: ../../app/views/layouts/modal_search/_result.html.erb:23 #: ../../app/views/notes/_archive.html.erb:10 #: ../../app/views/notes/_list.html.erb:16 @@ -2082,16 +2119,16 @@ msgstr "Rôles" #: ../../app/views/paginable/guidance_groups/_index.html.erb:56 #: ../../app/views/paginable/guidances/_index.html.erb:61 #: ../../app/views/paginable/orgs/_index.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:75 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:78 #: ../../app/views/paginable/research_outputs/_index.html.erb:53 #: ../../app/views/paginable/templates/_customisable.html.erb:67 #: ../../app/views/paginable/templates/_organisational.html.erb:74 -#: ../../app/views/plans/_share_form.html.erb:89 -#: ../../app/views/research_outputs/_form.html.erb:179 +#: ../../app/views/plans/_share_form.html.erb:91 +#: ../../app/views/research_outputs/_form.html.erb:180 msgid "Remove" msgstr "Supprimer" -#: ../../app/views/contributors/_form.html.erb:99 +#: ../../app/views/contributors/_form.html.erb:100 #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:29 #: ../../app/views/guidances/new_edit.html.erb:50 #: ../../app/views/notes/_archive.html.erb:11 @@ -2102,7 +2139,7 @@ msgstr "Supprimer" #: ../../app/views/org_admin/questions/_form.html.erb:105 #: ../../app/views/plans/_guidance_selection.html.erb:35 #: ../../app/views/plans/new.html.erb:124 -#: ../../app/views/research_outputs/_form.html.erb:182 +#: ../../app/views/research_outputs/_form.html.erb:183 #: ../../app/views/super_admin/api_clients/_form.html.erb:86 #: ../../app/views/super_admin/notifications/_form.html.erb:73 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -2297,10 +2334,6 @@ msgstr "" msgid "Hello" msgstr "Bonjour" -#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 -msgid "Your" -msgstr "Votre" - #: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 msgid "" "account has been locked due to an excessive number of unsuccessful sign in att" @@ -2309,6 +2342,10 @@ msgstr "" "le compte a été verrouillé en raison d’un nombre excessif de tentatives de con" "nexion infructueuses." +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 +msgid "Your" +msgstr "Votre" + #: ../../app/views/devise/mailer/unlock_instructions.html.erb:6 msgid "Click the link below to unlock your account" msgstr "Cliquez sur le lien ci-dessous pour déverrouiller votre compte" @@ -2555,7 +2592,6 @@ msgid "Do you have a %{application_name} account?" msgstr "Avez-vous un compte %{application_name}?" #: ../../app/views/devise/registrations/new.html.erb:22 -#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 @@ -2612,6 +2648,27 @@ msgstr "" "teurs pourront choisir d’afficher ces directives visant un sous-ensemble lorsq" "u’ils répondront aux questions de l’assistant « Créer un plan »." +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:15 +#: ../../app/views/org_admin/templates/_form.html.erb:35 +#: ../../app/views/org_admin/templates/_row.html.erb:10 +#: ../../app/views/org_admin/templates/_row.html.erb:13 +#: ../../app/views/org_admin/templates/_show.html.erb:19 +#: ../../app/views/org_admin/templates/_show.html.erb:22 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 +#: ../../app/views/paginable/guidances/_index.html.erb:37 +#: ../../app/views/paginable/templates/_customisable.html.erb:31 +#: ../../app/views/paginable/templates/_customisable.html.erb:34 +#: ../../app/views/paginable/templates/_history.html.erb:8 +#: ../../app/views/paginable/templates/_organisational.html.erb:36 +#: ../../app/views/paginable/templates/_organisational.html.erb:39 +msgid "Published" +msgstr "Publié" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 +msgid "Optional subset" +msgstr "Sous-ensemble facultatif" + #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 msgid " (e.g. School/ Department) " msgstr " (par exemple, école / département)" @@ -2785,13 +2842,6 @@ msgstr "Précédent" msgid "Admin" msgstr "Admin" -#: ../../app/views/layouts/_branding.html.erb:71 -#: ../../app/views/org_admin/users/edit.html.erb:71 -#: ../../app/views/paginable/users/_index.html.erb:26 -#: ../../app/views/super_admin/users/edit.html.erb:105 -msgid "Plans" -msgstr "Plans" - #: ../../app/views/layouts/_branding.html.erb:77 #: ../../app/views/org_admin/templates/index.html.erb:4 #: ../../app/views/paginable/orgs/_index.html.erb:8 @@ -2859,12 +2909,8 @@ msgid "Privacy statement" msgstr "Déclaration de confidentialité" #: ../../app/views/layouts/_footer.html.erb:17 -msgid "Accessibility statement" -msgstr "" - -#: ../../app/views/layouts/_footer.html.erb:18 -msgid "Github" -msgstr "" +msgid "GitHub" +msgstr "GitHub" #: ../../app/views/layouts/_navigation.html.erb:12 #: ../../app/views/orgs/_profile_form.html.erb:55 @@ -2944,50 +2990,50 @@ msgstr "Se déconnecter" msgid "%{application_name}" msgstr "%{application_name}" -#: ../../app/views/layouts/application.html.erb:91 -msgid "Error:" -msgstr "Erreur :" - #: ../../app/views/layouts/application.html.erb:91 msgid "Notice:" msgstr "Remarque :" +#: ../../app/views/layouts/application.html.erb:91 +msgid "Error:" +msgstr "Erreur :" + #: ../../app/views/layouts/application.html.erb:102 msgid "Loading..." msgstr "" -#: ../../app/views/layouts/application.html.erb:122 +#: ../../app/views/layouts/application.html.erb:121 #: ../../app/views/plans/new.html.erb:2 msgid "This field is required." msgstr "Ce champ est requis." -#: ../../app/views/layouts/application.html.erb:124 +#: ../../app/views/layouts/application.html.erb:123 #: ../../app/views/shared/_create_account_form.html.erb:31 msgid "Show password" msgstr "Afficher le mot de passe" -#: ../../app/views/layouts/application.html.erb:125 +#: ../../app/views/layouts/application.html.erb:124 msgid "Select an organisation from the list." msgstr "Sélectionnez un organisme dans la liste." -#: ../../app/views/layouts/application.html.erb:126 +#: ../../app/views/layouts/application.html.erb:125 msgid "My organisation isn't listed" msgstr "Mon organisme n’est pas répertorié" -#: ../../app/views/layouts/application.html.erb:128 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:39 +#: ../../app/views/layouts/application.html.erb:127 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:42 msgid "N/A" msgstr "S. o." -#: ../../app/views/layouts/application.html.erb:132 +#: ../../app/views/layouts/application.html.erb:131 msgid "Hide list." msgstr "Masquer la liste." -#: ../../app/views/layouts/application.html.erb:133 +#: ../../app/views/layouts/application.html.erb:132 msgid "See the full list of partner institutions." msgstr "Consulter la liste complète des établissements partenaires." -#: ../../app/views/layouts/application.html.erb:135 +#: ../../app/views/layouts/application.html.erb:134 msgid "" "Unable to find a suitable template for the research organisation and funder yo" "u selected." @@ -2995,29 +3041,29 @@ msgstr "" "Il est impossible de trouver un modèle approprié pour l’organisme de recherche" " et le bailleur de fonds que vous avez sélectionnés." -#: ../../app/views/layouts/application.html.erb:136 +#: ../../app/views/layouts/application.html.erb:135 msgid "Please select a research organisation and funder to continue." msgstr "" "Veuillez sélectionner un organisme de recherche et un bailleur de fonds pour c" "ontinuer." -#: ../../app/views/layouts/application.html.erb:138 +#: ../../app/views/layouts/application.html.erb:137 msgid "Loading ..." msgstr "Chargement en cours..." -#: ../../app/views/layouts/application.html.erb:139 +#: ../../app/views/layouts/application.html.erb:138 msgid "Unable to load the section's content at this time." msgstr "Il est impossible de charger le contenu de la question pour le moment." -#: ../../app/views/layouts/application.html.erb:140 +#: ../../app/views/layouts/application.html.erb:139 msgid "Unable to load the question's content at this time." msgstr "Il est impossible de charger le contenu de la question pour le moment." -#: ../../app/views/layouts/application.html.erb:141 +#: ../../app/views/layouts/application.html.erb:140 msgid "Opens in a new window" msgstr "S’ouvre dans une nouvelle fenêtre" -#: ../../app/views/layouts/application.html.erb:143 +#: ../../app/views/layouts/application.html.erb:142 msgid "" "%{n} results are available, use up and down arrows to navigate suggestions. Us" "e the Enter key to select a suggestion or the Escape key to close the suggesti" @@ -3027,11 +3073,11 @@ msgstr "" "bas pour parcourir les suggestions. Utilisez la touche Entrée pour sélectionne" "r une suggestion ou la touche Échap pour fermer les suggestions." -#: ../../app/views/layouts/application.html.erb:144 +#: ../../app/views/layouts/application.html.erb:143 msgid "No results are available for your entry." msgstr "Votre entrée n’a donné aucun résultat." -#: ../../app/views/layouts/application.html.erb:145 +#: ../../app/views/layouts/application.html.erb:144 msgid "Searching ..." msgstr "" @@ -3045,7 +3091,7 @@ msgid "No results matched your filter criteria." msgstr "" #: ../../app/views/layouts/modal_search/_form.html.erb:41 -#: ../../app/views/layouts/modal_search/_form.html.erb:83 +#: ../../app/views/layouts/modal_search/_form.html.erb:84 msgid "Close" msgstr "" @@ -3053,7 +3099,7 @@ msgstr "" msgid "%{topic} search" msgstr "" -#: ../../app/views/layouts/modal_search/_form.html.erb:66 +#: ../../app/views/layouts/modal_search/_form.html.erb:67 msgid "Apply filter(s)" msgstr "" @@ -3089,7 +3135,7 @@ msgstr "Ajouter un commentaire" #: ../../app/views/paginable/guidance_groups/_index.html.erb:49 #: ../../app/views/paginable/guidances/_index.html.erb:54 #: ../../app/views/paginable/orgs/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:58 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 #: ../../app/views/paginable/research_outputs/_index.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:56 #: ../../app/views/paginable/templates/_organisational.html.erb:56 @@ -3366,13 +3412,13 @@ msgstr "Type" #: ../../app/views/paginable/orgs/_index.html.erb:10 #: ../../app/views/paginable/orgs/_index.html.erb:30 #: ../../app/views/paginable/plans/_privately_visible.html.erb:13 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:53 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:56 #: ../../app/views/paginable/research_outputs/_index.html.erb:23 #: ../../app/views/paginable/research_outputs/_index.html.erb:48 #: ../../app/views/paginable/templates/_customisable.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:10 #: ../../app/views/paginable/templates/_organisational.html.erb:53 -#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:53 msgid "Actions" msgstr "Actions" @@ -3651,21 +3697,6 @@ msgstr "réservé à l’usage interne de %{org_name}" msgid "Status" msgstr "État" -#: ../../app/views/org_admin/templates/_form.html.erb:35 -#: ../../app/views/org_admin/templates/_row.html.erb:10 -#: ../../app/views/org_admin/templates/_row.html.erb:13 -#: ../../app/views/org_admin/templates/_show.html.erb:19 -#: ../../app/views/org_admin/templates/_show.html.erb:22 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 -#: ../../app/views/paginable/guidances/_index.html.erb:37 -#: ../../app/views/paginable/templates/_customisable.html.erb:31 -#: ../../app/views/paginable/templates/_customisable.html.erb:34 -#: ../../app/views/paginable/templates/_history.html.erb:8 -#: ../../app/views/paginable/templates/_organisational.html.erb:36 -#: ../../app/views/paginable/templates/_organisational.html.erb:39 -msgid "Published" -msgstr "Publié" - #: ../../app/views/org_admin/templates/_form.html.erb:37 #: ../../app/views/org_admin/templates/_row.html.erb:16 #: ../../app/views/org_admin/templates/_show.html.erb:26 @@ -4035,7 +4066,7 @@ msgstr "Renseignements du profil" #: ../../app/views/orgs/admin_edit.html.erb:22 #: ../../app/views/plans/_navigation.html.erb:33 -#: ../../app/views/plans/_request_feedback_form.html.erb:13 +#: ../../app/views/plans/_request_feedback_form.html.erb:19 #: ../../app/views/static_pages/help.html.erb:45 msgid "Request feedback" msgstr "Demander des commentaires" @@ -4130,13 +4161,9 @@ msgstr "" "Vous êtes sur le point de supprimer '%{department_name}'. Cela aura une incide" "nce sur les directives. Êtes-vous sûr de vouloir continuer?" -#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 -msgid "Optional subset" -msgstr "Sous-ensemble facultatif" - #: ../../app/views/paginable/guidance_groups/_index.html.erb:31 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:45 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:48 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:12 @@ -4144,8 +4171,8 @@ msgid "No" msgstr "Non" #: ../../app/views/paginable/guidance_groups/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:43 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:46 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:11 @@ -4195,12 +4222,6 @@ msgstr "Commencer" msgid "Expiration" msgstr "Expiration" -#: ../../app/views/paginable/notifications/_index.html.erb:8 -#: ../../app/views/paginable/users/_index.html.erb:28 -#: ../../app/views/super_admin/notifications/_form.html.erb:34 -msgid "Active" -msgstr "Actif" - #: ../../app/views/paginable/orgs/_index.html.erb:6 msgid "Administrator Email" msgstr "Courriel de l’administrateur" @@ -4267,8 +4288,8 @@ msgstr "Créé(e)" #: #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:21 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:73 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:9 #: ../../app/views/paginable/templates/_history.html.erb:6 #: ../../app/views/paginable/templates/_organisational.html.erb:2 @@ -4316,30 +4337,22 @@ msgstr "Rôle" msgid "Shared" msgstr "Partagé" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 #: ../../app/views/plans/_navigation.html.erb:28 msgid "Share" msgstr "Partager" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:65 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:68 #: ../../app/views/paginable/templates/_organisational.html.erb:67 msgid "Copy" msgstr "Copier" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 #: ../../app/views/paginable/templates/_history.html.erb:58 msgid "View" msgstr "Voir" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 -msgid "" -"Are you sure you wish to remove this public plan? This will remove it from the" -" Public DMPs page but any collaborators will still be able to access it." -msgstr "" -"Souhaitez-vous vraiment supprimer ce plan public? Les PGD publics seront suppr" -"imés, tout en demeurant accessibles aux collaborateurs." - -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" "Are you sure you wish to remove this plan? Any collaborators will still be abl" "e to access it." @@ -4347,6 +4360,14 @@ msgstr "" "Souhaitez-vous vraiment supprimer ce plan? Les collaborateurs pourront toujour" "s y accéder." +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 +msgid "" +"Are you sure you wish to remove this public plan? This will remove it from the" +" Public DMPs page but any collaborators will still be able to access it." +msgstr "" +"Souhaitez-vous vraiment supprimer ce plan public? Les PGD publics seront suppr" +"imés, tout en demeurant accessibles aux collaborateurs." + #: ../../app/views/paginable/plans/_publicly_visible.html.erb:17 msgid "Not Applicable" msgstr "Sans objet" @@ -4510,10 +4531,6 @@ msgstr "Date de création" msgid "Last activity" msgstr "Dernière activité" -#: ../../app/views/paginable/users/_index.html.erb:27 -msgid "Current Privileges" -msgstr "Privilèges actuels" - #: ../../app/views/paginable/users/_index.html.erb:46 msgid "Edit Profile" msgstr "Modifier le profil" @@ -4816,11 +4833,17 @@ msgstr "" msgid "Request expert feedback" msgstr "Demander de commentaires de la part d’un expert" -#: ../../app/views/plans/_request_feedback_form.html.erb:11 +#: ../../app/views/plans/_request_feedback_form.html.erb:9 +msgid "" +"Click below to give data management staff at %{owner_org}, the Plan Owner's or" +"g, access to read and comment on your plan." +msgstr "" + +#: ../../app/views/plans/_request_feedback_form.html.erb:17 msgid "You can continue to edit and download the plan in the interim." msgstr "Vous pouvez continuer à modifier et à télécharger le plan entre-temps." -#: ../../app/views/plans/_request_feedback_form.html.erb:17 +#: ../../app/views/plans/_request_feedback_form.html.erb:23 msgid "Feedback has been requested." msgstr "Des commentaires ont été demandés." @@ -4841,7 +4864,7 @@ msgstr "" msgid "Set plan visibility" msgstr "Définir la visibilité du plan" -#: ../../app/views/plans/_share_form.html.erb:9 +#: ../../app/views/plans/_share_form.html.erb:13 msgid "" "Public or organisational visibility is intended for finished plans. You must a" "nswer at least %{percentage}%% of the questions to enable these options. Note:" @@ -4852,7 +4875,7 @@ msgstr "" "ions. Remarque : La visibilité privée est réglée par défaut pour les plans d’e" "ssai." -#: ../../app/views/plans/_share_form.html.erb:19 +#: ../../app/views/plans/_share_form.html.erb:21 msgid "" "Private: visible to me, specified collaborators and administrators at my organ" "isation" @@ -4860,20 +4883,20 @@ msgstr "" "Privé : visible pour moi et les collaborateurs et administrateurs de mon organ" "isme désignés." -#: ../../app/views/plans/_share_form.html.erb:27 +#: ../../app/views/plans/_share_form.html.erb:29 #: ../../app/views/user_mailer/plan_visibility.html.erb:12 msgid "Organisation: anyone at my organisation can view" msgstr "Organisme : Visible pour tous les membres de mon organisme" -#: ../../app/views/plans/_share_form.html.erb:35 +#: ../../app/views/plans/_share_form.html.erb:37 msgid "Public: anyone can view" msgstr "Public : Tous peuvent consulter le plan" -#: ../../app/views/plans/_share_form.html.erb:42 +#: ../../app/views/plans/_share_form.html.erb:44 msgid "Manage collaborators" msgstr "Gérer les collaborateurs" -#: ../../app/views/plans/_share_form.html.erb:43 +#: ../../app/views/plans/_share_form.html.erb:45 msgid "" "Invite specific people to read, edit, or administer your plan. Invitees will r" "eceive an email notification that they have access to this plan." @@ -4882,20 +4905,20 @@ msgstr "" "s invités recevront un courriel d’avis indiquant qu’ils peuvent accéder au pla" "n." -#: ../../app/views/plans/_share_form.html.erb:48 +#: ../../app/views/plans/_share_form.html.erb:50 msgid "Email address" msgstr "Adresse courriel" -#: ../../app/views/plans/_share_form.html.erb:49 -#: ../../app/views/plans/_share_form.html.erb:122 +#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:124 msgid "Permissions" msgstr "Autorisations" -#: ../../app/views/plans/_share_form.html.erb:89 +#: ../../app/views/plans/_share_form.html.erb:91 msgid "Are you sure?" msgstr "Êtes-vous sûr?" -#: ../../app/views/plans/_share_form.html.erb:100 +#: ../../app/views/plans/_share_form.html.erb:102 msgid "Invite collaborators" msgstr "Inviter des collaborateurs" @@ -5099,6 +5122,10 @@ msgstr "" msgid "Please describe the output type" msgstr "" +#: ../../app/views/research_outputs/_form.html.erb:27 +msgid "Research output type" +msgstr "Type de résultat de la recherche" + #: ../../app/views/research_outputs/_form.html.erb:44 msgid "Abbreviation" msgstr "" @@ -5139,10 +5166,15 @@ msgid "Initial access level" msgstr "" #: ../../app/views/research_outputs/_form.html.erb:158 +#: ../../app/views/research_outputs/_form.html.erb:164 #: ../../app/views/shared/export/_plan_outputs.erb:23 msgid "Anticipated file size" msgstr "" +#: ../../app/views/research_outputs/_form.html.erb:170 +msgid "File size units" +msgstr "" + #: ../../app/views/research_outputs/edit.html.erb:12 msgid "Editing %{research_output_title}" msgstr "" @@ -5160,11 +5192,12 @@ msgstr "" msgid "Add a research output" msgstr "" -#: ../../app/views/research_outputs/licenses/_form.html.erb:24 +#: ../../app/views/research_outputs/licenses/_form.html.erb:20 +#: ../../app/views/research_outputs/licenses/_form.html.erb:25 msgid "Initial license" msgstr "" -#: ../../app/views/research_outputs/licenses/_form.html.erb:30 +#: ../../app/views/research_outputs/licenses/_form.html.erb:31 msgid "For guidance on selecting a license:" msgstr "" @@ -5188,10 +5221,18 @@ msgstr "" msgid "- Select a subject area -" msgstr "" -#: ../../app/views/research_outputs/repositories/_search.html.erb:21 +#: ../../app/views/research_outputs/repositories/_search.html.erb:14 +msgid "Select a subject area" +msgstr "" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:22 msgid "- Select a repository type -" msgstr "" +#: ../../app/views/research_outputs/repositories/_search.html.erb:24 +msgid "Select a repository type" +msgstr "" + #: ../../app/views/research_outputs/repositories/_search_result.html.erb:20 msgid "Click to view repositories related to %{subject}" msgstr "" @@ -5519,14 +5560,14 @@ msgstr "S’inscrire" msgid "on the homepage." msgstr "sur la page d’accueil." -#: ../../app/views/static_pages/about_us.html.erb:35 -msgid "Please visit the" -msgstr "Veuillez visiter le site" - #: ../../app/views/static_pages/about_us.html.erb:35 msgid "page for guidance." msgstr "page pour obtenir des directives." +#: ../../app/views/static_pages/about_us.html.erb:35 +msgid "Please visit the" +msgstr "Veuillez visiter le site" + #: ../../app/views/static_pages/about_us.html.erb:37 msgid "Customising for your Organisation" msgstr "Effectuer une personnalisation pour votre organisme" @@ -6169,6 +6210,14 @@ msgstr "Nombre de plans créés à partir de vos modèles" msgid "Statistics on your Templates" msgstr "Statistiques sur vos modèles" +#: ../../app/views/usage/_total_usage.html.erb:7 +msgid "Total users" +msgstr "" + +#: ../../app/views/usage/_total_usage.html.erb:11 +msgid "Total plans" +msgstr "" + #: ../../app/views/usage/_total_usage.html.erb:15 msgid "Excluding Test Plans" msgstr "À l’exclusion des plans d’essai" @@ -6316,15 +6365,16 @@ msgstr "" msgid "Hello %{user_name}," msgstr "Bonjour %{user_name}," -#: ../../app/views/user_mailer/feedback_notification.html.erb:5 +#: ../../app/views/user_mailer/feedback_notification.html.erb:6 msgid "" "%{requestor} has requested feedback on a plan %{link_html}. To add comments, p" -"lease visit the 'Plans' page under the Admin menu in %{tool_name} and open the" +"lease visit the \"Plans\" page under the Admin menu in %{tool_name} and open the" " plan." msgstr "" -"%{requestor} a demandé des commentaires sur un plan %{link_html}. Pour ajouter" -" des commentaires, veuillez consulter la page « Plans » dans le menu Admin dan" -"s %{tool_name} et ouvrir le plan." + +#: ../../app/views/user_mailer/feedback_notification.html.erb:17 +msgid "Alternatively, you can click the link below:" +msgstr "" #: ../../app/views/user_mailer/new_comment.html.erb:5 msgid "" @@ -6414,22 +6464,22 @@ msgstr "" msgid "Hello %{recipient_name}," msgstr "Bonjour %{recipient_name}," -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " is creating a Data Management Plan and has answered " -msgstr " crée un plan de gestion des données et a répondu" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " to " msgstr " à" -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " in a plan called " -msgstr " dans un plan appelé" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " based on the template " msgstr " basé sur le modèle" +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " is creating a Data Management Plan and has answered " +msgstr " crée un plan de gestion des données et a répondu" + +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " in a plan called " +msgstr " dans un plan appelé" + #: ../../app/views/user_mailer/sharing_notification.html.erb:5 msgid "" "Your colleague %{inviter_name} has invited you to contribute to \n" @@ -6587,11 +6637,11 @@ msgid "Download users" msgstr "Télécharger les utilisateurs" #: ../../app/views/users/refresh_token.js.erb:1 -msgid "Successfully regenerate your API token." +msgid "Unable to regenerate your API token." msgstr "" #: ../../app/views/users/refresh_token.js.erb:1 -msgid "Unable to regenerate your API token." +msgid "Successfully regenerate your API token." msgstr "" #: i18n_placeholders.rb:4 diff --git a/config/locale/fr_FR/LC_MESSAGES/app.mo b/config/locale/fr_FR/LC_MESSAGES/app.mo index 401aafcbe39358214373f301692290793a26f3cb..c15ef247c37b9042d5d20523edbc7686f7f0dc90 100644 GIT binary patch delta 27125 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 delta 26293 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%0Dn8f3B#5(vhuERJSmDHnU;rPOmd7K&q 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 B$DRNH diff --git a/config/locale/fr_FR/app.po b/config/locale/fr_FR/app.po index a3aefb106b..1081ea6372 100644 --- a/config/locale/fr_FR/app.po +++ b/config/locale/fr_FR/app.po @@ -1,14 +1,14 @@ -# French translations for app package. -# Copyright (C) 2022 app -# This file is distributed under the same license as the app package. +# French translations for DMPRoadmap-Development package. +# Copyright (C) 2022 DMPRoadmap-Development +# This file is distributed under the same license as the DMPRoadmap-Development package. # FIRST AUTHOR , 2022. # msgid "" msgstr "" -"Project-Id-Version: app 1.0\n" +"Project-Id-Version: DMPRoadmap-Development 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2022-10-25 16:02+0000\n" -"PO-Revision-Date: 2022-10-25 18:03+0200\n" +"POT-Creation-Date: 2022-11-30 14:11-0500\n" +"PO-Revision-Date: 2022-11-30 20:11+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -266,7 +266,7 @@ msgstr "ajouté" #: ../../app/controllers/contributors_controller.rb:72 #: ../../app/controllers/guidance_groups_controller.rb:55 #: ../../app/controllers/guidances_controller.rb:75 -#: ../../app/controllers/notes_controller.rb:89 +#: ../../app/controllers/notes_controller.rb:88 #: ../../app/controllers/org_admin/departments_controller.rb:50 #: ../../app/controllers/org_admin/sections_controller.rb:103 #: ../../app/controllers/org_admin/templates_controller.rb:205 @@ -286,7 +286,7 @@ msgstr "enregistré" #: ../../app/controllers/contributors_controller.rb:74 #: ../../app/controllers/guidance_groups_controller.rb:57 #: ../../app/controllers/guidances_controller.rb:77 -#: ../../app/controllers/notes_controller.rb:107 +#: ../../app/controllers/notes_controller.rb:106 #: ../../app/controllers/org_admin/departments_controller.rb:52 #: ../../app/controllers/org_admin/sections_controller.rb:105 #: ../../app/controllers/org_admin/templates_controller.rb:210 @@ -302,7 +302,7 @@ msgid "save" msgstr "enregistrer" #: ../../app/controllers/contributors_controller.rb:84 -#: ../../app/controllers/notes_controller.rb:131 +#: ../../app/controllers/notes_controller.rb:130 #: ../../app/controllers/org_admin/templates_controller.rb:238 #: ../../app/controllers/research_outputs_controller.rb:74 #: ../../app/controllers/super_admin/orgs_controller.rb:94 @@ -310,7 +310,7 @@ msgid "removed" msgstr "supprimé(e)" #: ../../app/controllers/contributors_controller.rb:87 -#: ../../app/controllers/notes_controller.rb:149 +#: ../../app/controllers/notes_controller.rb:148 #: ../../app/controllers/org_admin/templates_controller.rb:240 #: ../../app/controllers/research_outputs_controller.rb:77 #: ../../app/controllers/super_admin/orgs_controller.rb:97 @@ -336,7 +336,7 @@ msgstr "Une erreur s'est produite lors de la demande de commentaires sur ce plan #: ../../app/controllers/guidance_groups_controller.rb:31 #: ../../app/controllers/guidances_controller.rb:53 -#: ../../app/controllers/notes_controller.rb:48 +#: ../../app/controllers/notes_controller.rb:47 #: ../../app/controllers/org_admin/departments_controller.rb:26 #: ../../app/controllers/org_admin/phases_controller.rb:121 #: ../../app/controllers/org_admin/questions_controller.rb:94 @@ -352,7 +352,7 @@ msgstr "créé" #: ../../app/controllers/guidance_groups_controller.rb:34 #: ../../app/controllers/guidances_controller.rb:55 -#: ../../app/controllers/notes_controller.rb:67 +#: ../../app/controllers/notes_controller.rb:66 #: ../../app/controllers/org_admin/departments_controller.rb:30 #: ../../app/controllers/org_admin/phases_controller.rb:123 #: ../../app/controllers/org_admin/questions_controller.rb:96 @@ -1145,17 +1145,17 @@ msgid "Owner" msgstr "Propriétaire" #: ../../app/helpers/plans_helper.rb:10 -#: ../../app/views/plans/_share_form.html.erb:127 +#: ../../app/views/plans/_share_form.html.erb:129 msgid "Co-owner" msgstr "Copropriétaire" #: ../../app/helpers/plans_helper.rb:12 -#: ../../app/views/plans/_share_form.html.erb:133 +#: ../../app/views/plans/_share_form.html.erb:135 msgid "Editor" msgstr "Éditeur" #: ../../app/helpers/plans_helper.rb:14 -#: ../../app/views/plans/_share_form.html.erb:139 +#: ../../app/views/plans/_share_form.html.erb:141 msgid "Read only" msgstr "Lecture seule" @@ -1164,7 +1164,7 @@ msgid "Public" msgstr "Public" #: ../../app/helpers/plans_helper.rb:26 ../../app/helpers/plans_helper.rb:28 -#: ../../app/views/layouts/application.html.erb:129 +#: ../../app/views/layouts/application.html.erb:128 msgid "Private" msgstr "Privé" @@ -1177,7 +1177,7 @@ msgid "Public: anyone can view." msgstr "Public : visible par tous." #: ../../app/helpers/plans_helper.rb:39 -#: ../../app/views/layouts/application.html.erb:130 +#: ../../app/views/layouts/application.html.erb:129 msgid "Private: restricted to me and people I invite." msgstr "Privé : accès restreint aux personnes que j'invite." @@ -1404,62 +1404,61 @@ msgid "Affiliation: " msgstr "Affiliation : " #: ../../app/models/concerns/exportable_plan.rb:163 -#: ../../app/models/concerns/exportable_plan.rb:164 msgid "%{affiliation}" msgstr "%{affiliation}" -#: ../../app/models/concerns/exportable_plan.rb:166 -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:165 +#: ../../app/models/concerns/exportable_plan.rb:167 #: ../../app/views/shared/export/_plan_coversheet.erb:32 #: ../../app/views/shared/export/_plan_txt.erb:22 #: ../../app/views/shared/export/_plan_txt.erb:24 msgid "Template: " msgstr "Modèle : " -#: ../../app/models/concerns/exportable_plan.rb:166 +#: ../../app/models/concerns/exportable_plan.rb:165 msgid "%{funder}" msgstr "%{funder}" -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:167 msgid "%{template}" msgstr "%{template}" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 #: ../../app/views/shared/export/_plan_txt.erb:27 msgid "Grant number: " msgstr "Numéro de subvention : " -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 msgid "%{grant_number}" msgstr "%{grant_number}" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 #: ../../app/views/shared/export/_plan_coversheet.erb:42 #: ../../app/views/shared/export/_plan_txt.erb:30 msgid "Project abstract: " msgstr "Résumé du projet : " -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 msgid "%{description}" msgstr "%{description}" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 #: ../../app/views/shared/export/_plan_coversheet.erb:58 #: ../../app/views/shared/export/_plan_txt.erb:33 msgid "Last modified: " msgstr "Dernière modification : " -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 msgid "%{date}" msgstr "%{date}" -#: ../../app/models/concerns/exportable_plan.rb:175 +#: ../../app/models/concerns/exportable_plan.rb:174 #: ../../app/views/shared/export/_plan_coversheet.erb:65 #: ../../app/views/shared/export/_plan_txt.erb:34 msgid "Copyright information:" msgstr "Droits d'auteur" -#: ../../app/models/concerns/exportable_plan.rb:176 +#: ../../app/models/concerns/exportable_plan.rb:175 msgid "" "The above plan creator(s) have agreed that others may use as\n" " much of the text of this plan as they would like in their own pla" @@ -1484,12 +1483,12 @@ msgstr "" "n quelconque avec,\n" "             votre projet ou proposition" -#: ../../app/models/concerns/exportable_plan.rb:199 +#: ../../app/models/concerns/exportable_plan.rb:198 msgid "Not Answered" msgstr "Non répondues" #: ../../app/models/concerns/validation_messages.rb:11 -#: ../../app/models/template.rb:226 +#: ../../app/models/template.rb:223 msgid "can't be blank" msgstr "ne peut être vide" @@ -1579,7 +1578,7 @@ msgstr "test" msgid "private" msgstr "privé" -#: ../../app/models/plan.rb:617 +#: ../../app/models/plan.rb:615 msgid "must be after the start date" msgstr "doit être postérieur à la date de début" @@ -1625,51 +1624,51 @@ msgstr "Réglage de mise en forme" msgid "Invalid maximum pages" msgstr "Nombre de pages maxi non valide" -#: ../../app/models/template.rb:254 +#: ../../app/models/template.rb:251 msgid "A historical template cannot be retrieved for being modified" msgstr "Un modèle historisé ne peut être extrait pour modification" -#: ../../app/models/template.rb:378 +#: ../../app/models/template.rb:375 msgid "generate_copy! requires an organisation target" msgstr "generate_copy! nécessite un organisme cible" -#: ../../app/models/template.rb:387 +#: ../../app/models/template.rb:384 msgid "Copy of %{template}" msgstr "Copie de %{template}" -#: ../../app/models/template.rb:394 +#: ../../app/models/template.rb:391 msgid "generate_version! requires a published template" msgstr "generate_version! nécessite un modèle publie" -#: ../../app/models/template.rb:408 +#: ../../app/models/template.rb:405 msgid "customize! requires an organisation target" msgstr "customize! nécessite un organisme cible" -#: ../../app/models/template.rb:411 +#: ../../app/models/template.rb:408 msgid "customize! requires a template from a funder" msgstr "customize! nécessite le modèle d'un financeur" -#: ../../app/models/template.rb:447 +#: ../../app/models/template.rb:444 msgid "You can not publish a published template. " msgstr "Vous ne pouvez pas publier un modèle publié." -#: ../../app/models/template.rb:451 +#: ../../app/models/template.rb:448 msgid "You can not publish a historical version of this template. " msgstr "Vous ne pouvez pas publier une ancienne version de ce modèle." -#: ../../app/models/template.rb:456 +#: ../../app/models/template.rb:453 msgid "You can not publish a template without phases. " msgstr "Vous ne pouvez pas publier un modèle sans phases." -#: ../../app/models/template.rb:461 +#: ../../app/models/template.rb:458 msgid "You can not publish a template without sections in a phase. " msgstr "Vous ne pouvez pas publier un modèle sans sections dans une phase." -#: ../../app/models/template.rb:466 +#: ../../app/models/template.rb:463 msgid "You can not publish a template without questions in a section. " msgstr "Vous ne pouvez pas publier un modèle sans questions dans une section." -#: ../../app/models/template.rb:470 +#: ../../app/models/template.rb:467 msgid "Conditions in the template refer backwards" msgstr "" "Les conditions du modèle s'appliquent à une question positionnée avant celle-c" @@ -1679,6 +1678,58 @@ msgstr "" msgid "A Data Management Plan in %{application_name} has been shared with you" msgstr "Un plan de gestion de données a été partagé avec vous sur %{application_name}" +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 +#: ../../app/views/contributors/_form.html.erb:10 +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:8 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 +#: ../../app/views/org_admin/departments/edit.html.erb:14 +#: ../../app/views/org_admin/departments/new.html.erb:14 +#: ../../app/views/paginable/api_clients/_index.html.erb:6 +#: ../../app/views/paginable/contributors/_index.html.erb:7 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 +#: ../../app/views/paginable/themes/_index.html.erb:4 +#: ../../app/views/paginable/users/_index.html.erb:20 +#: ../../app/views/super_admin/api_clients/_form.html.erb:11 +msgid "Name" +msgstr "Prénom" + +#: ../../app/models/user/at_csv.rb:7 +msgid "E-Mail" +msgstr "E-mail" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Created Date" +msgstr "Date de création" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Last Activity" +msgstr "Dernière Activité" + +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/layouts/_branding.html.erb:71 +#: ../../app/views/org_admin/users/edit.html.erb:71 +#: ../../app/views/paginable/users/_index.html.erb:26 +#: ../../app/views/super_admin/users/edit.html.erb:105 +msgid "Plans" +msgstr "Plans" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/users/_index.html.erb:27 +msgid "Current Privileges" +msgstr "Droits" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/notifications/_index.html.erb:8 +#: ../../app/views/paginable/users/_index.html.erb:28 +#: ../../app/views/super_admin/notifications/_form.html.erb:34 +msgid "Active" +msgstr "Actif" + +#: ../../app/models/user/at_csv.rb:8 +msgid "Department" +msgstr "département" + #: ../../app/policies/api/v0/guidance_group_policy.rb:11 #: ../../app/policies/api/v0/guidance_policy.rb:11 #: ../../app/policies/api/v0/statistics_policy.rb:11 @@ -1886,7 +1937,7 @@ msgid "Please wait, Standards are loading" msgstr "Merci de patienter, les standards sont en cours de chargement" #: ../../app/views/answers/_new_edit.html.erb:68 -#: ../../app/views/contributors/_form.html.erb:94 +#: ../../app/views/contributors/_form.html.erb:95 #: ../../app/views/devise/passwords/edit.html.erb:35 #: ../../app/views/devise/registrations/_password_details.html.erb:31 #: ../../app/views/devise/registrations/_personal_details.html.erb:90 @@ -1907,7 +1958,7 @@ msgstr "Merci de patienter, les standards sont en cours de chargement" #: ../../app/views/plans/_edit_details.html.erb:11 #: ../../app/views/plans/_guidance_selection.html.erb:23 #: ../../app/views/questions/_preview_question.html.erb:111 -#: ../../app/views/research_outputs/_form.html.erb:177 +#: ../../app/views/research_outputs/_form.html.erb:178 #: ../../app/views/super_admin/api_clients/_form.html.erb:67 #: ../../app/views/super_admin/notifications/_form.html.erb:66 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -1948,20 +1999,6 @@ msgstr " questions de votre plan." msgid "This answer triggers email(s) to " msgstr "Cette réponse déclenche l'envoi d'e-mail(s) à" -#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 -#: ../../app/views/contributors/_form.html.erb:10 -#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 -#: ../../app/views/org_admin/departments/edit.html.erb:14 -#: ../../app/views/org_admin/departments/new.html.erb:14 -#: ../../app/views/paginable/api_clients/_index.html.erb:6 -#: ../../app/views/paginable/contributors/_index.html.erb:7 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 -#: ../../app/views/paginable/themes/_index.html.erb:4 -#: ../../app/views/paginable/users/_index.html.erb:20 -#: ../../app/views/super_admin/api_clients/_form.html.erb:11 -msgid "Name" -msgstr "Prénom" - #: ../../app/views/contact_us/contacts/_new_left.html.erb:13 #: ../../app/views/contact_us/contacts/_new_right.html.erb:23 #: ../../app/views/contributors/_form.html.erb:19 @@ -1971,7 +2008,7 @@ msgstr "Prénom" #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/contributors/_index.html.erb:11 #: ../../app/views/paginable/users/_index.html.erb:21 -#: ../../app/views/plans/_share_form.html.erb:107 +#: ../../app/views/plans/_share_form.html.erb:109 #: ../../app/views/shared/_create_account_form.html.erb:12 #: ../../app/views/shared/_sign_in_form.html.erb:3 #: ../../app/views/super_admin/users/edit.html.erb:15 @@ -1997,7 +2034,7 @@ msgid "Security check" msgstr "Vérifications de sécurité" #: ../../app/views/contact_us/contacts/_new_left.html.erb:43 -#: ../../app/views/plans/_share_form.html.erb:146 +#: ../../app/views/plans/_share_form.html.erb:148 msgid "Submit" msgstr "Envoyer" @@ -2028,8 +2065,8 @@ msgstr "" #: ../../app/views/contact_us/contacts/new.html.erb:10 #: ../../app/views/layouts/_branding.html.erb:41 -#: ../../app/views/layouts/_footer.html.erb:24 -#: ../../app/views/layouts/_footer.html.erb:30 +#: ../../app/views/layouts/_footer.html.erb:23 +#: ../../app/views/layouts/_footer.html.erb:29 #: ../../app/views/org_admin/plans/index.html.erb:40 #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:39 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:24 @@ -2074,7 +2111,7 @@ msgstr "Affiliation" msgid "Roles" msgstr "Rôles" -#: ../../app/views/contributors/_form.html.erb:96 +#: ../../app/views/contributors/_form.html.erb:97 #: ../../app/views/layouts/modal_search/_result.html.erb:23 #: ../../app/views/notes/_archive.html.erb:10 #: ../../app/views/notes/_list.html.erb:16 @@ -2088,16 +2125,16 @@ msgstr "Rôles" #: ../../app/views/paginable/guidance_groups/_index.html.erb:56 #: ../../app/views/paginable/guidances/_index.html.erb:61 #: ../../app/views/paginable/orgs/_index.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:75 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:78 #: ../../app/views/paginable/research_outputs/_index.html.erb:53 #: ../../app/views/paginable/templates/_customisable.html.erb:67 #: ../../app/views/paginable/templates/_organisational.html.erb:74 -#: ../../app/views/plans/_share_form.html.erb:89 -#: ../../app/views/research_outputs/_form.html.erb:179 +#: ../../app/views/plans/_share_form.html.erb:91 +#: ../../app/views/research_outputs/_form.html.erb:180 msgid "Remove" msgstr "Supprimer" -#: ../../app/views/contributors/_form.html.erb:99 +#: ../../app/views/contributors/_form.html.erb:100 #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:29 #: ../../app/views/guidances/new_edit.html.erb:50 #: ../../app/views/notes/_archive.html.erb:11 @@ -2108,7 +2145,7 @@ msgstr "Supprimer" #: ../../app/views/org_admin/questions/_form.html.erb:105 #: ../../app/views/plans/_guidance_selection.html.erb:35 #: ../../app/views/plans/new.html.erb:124 -#: ../../app/views/research_outputs/_form.html.erb:182 +#: ../../app/views/research_outputs/_form.html.erb:183 #: ../../app/views/super_admin/api_clients/_form.html.erb:86 #: ../../app/views/super_admin/notifications/_form.html.erb:73 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -2302,16 +2339,16 @@ msgstr "" msgid "Hello" msgstr "Bonjour" -#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 -msgid "Your" -msgstr "Votre" - #: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 msgid "" "account has been locked due to an excessive number of unsuccessful sign in att" "empts." msgstr "compte a été bloqué suite à un nombre de tentatives de connexions excessif " +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 +msgid "Your" +msgstr "Votre" + #: ../../app/views/devise/mailer/unlock_instructions.html.erb:6 msgid "Click the link below to unlock your account" msgstr "Cliquez sur le lien ci-dessous pour déverrouiller votre compte" @@ -2481,9 +2518,7 @@ msgstr "Oui, je comprends que je vais perdre mes droits administratifs" msgid "" "If you would like to change your password please complete the following fields" "." -msgstr "" -"Si vous souhaitez modifier votre mort de passe, remplissez les champs suivants" -"." +msgstr "Si vous souhaitez modifier votre mot de passe, remplissez les champs suivants." #: ../../app/views/devise/registrations/_password_details.html.erb:8 msgid "Current password" @@ -2562,7 +2597,6 @@ msgid "Do you have a %{application_name} account?" msgstr "Avez vous un compte sur %{application_name} ?" #: ../../app/views/devise/registrations/new.html.erb:22 -#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 @@ -2619,6 +2653,27 @@ msgstr "" "es utilisateurs pourront choisir d'afficher ce sous-groupe de recommandations " "lorsqu'ils répondront aux questions dans l'onglet 'créer un plan'." +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:15 +#: ../../app/views/org_admin/templates/_form.html.erb:35 +#: ../../app/views/org_admin/templates/_row.html.erb:10 +#: ../../app/views/org_admin/templates/_row.html.erb:13 +#: ../../app/views/org_admin/templates/_show.html.erb:19 +#: ../../app/views/org_admin/templates/_show.html.erb:22 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 +#: ../../app/views/paginable/guidances/_index.html.erb:37 +#: ../../app/views/paginable/templates/_customisable.html.erb:31 +#: ../../app/views/paginable/templates/_customisable.html.erb:34 +#: ../../app/views/paginable/templates/_history.html.erb:8 +#: ../../app/views/paginable/templates/_organisational.html.erb:36 +#: ../../app/views/paginable/templates/_organisational.html.erb:39 +msgid "Published" +msgstr "Publié" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 +msgid "Optional subset" +msgstr "Sous-ensemble facultatif" + #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 msgid " (e.g. School/ Department) " msgstr " (par ex. : Ecole/Département) " @@ -2790,13 +2845,6 @@ msgstr "Précédent" msgid "Admin" msgstr "Admin" -#: ../../app/views/layouts/_branding.html.erb:71 -#: ../../app/views/org_admin/users/edit.html.erb:71 -#: ../../app/views/paginable/users/_index.html.erb:26 -#: ../../app/views/super_admin/users/edit.html.erb:105 -msgid "Plans" -msgstr "Plans" - #: ../../app/views/layouts/_branding.html.erb:77 #: ../../app/views/org_admin/templates/index.html.erb:4 #: ../../app/views/paginable/orgs/_index.html.erb:8 @@ -2864,12 +2912,8 @@ msgid "Privacy statement" msgstr "Déclaration de confidentialité" #: ../../app/views/layouts/_footer.html.erb:17 -msgid "Accessibility statement" -msgstr "Déclaration d'accessibilité" - -#: ../../app/views/layouts/_footer.html.erb:18 -msgid "Github" -msgstr "Github" +msgid "GitHub" +msgstr "GitHub" #: ../../app/views/layouts/_navigation.html.erb:12 #: ../../app/views/orgs/_profile_form.html.erb:55 @@ -2949,50 +2993,50 @@ msgstr "Déconnexion" msgid "%{application_name}" msgstr "%{application_name}" -#: ../../app/views/layouts/application.html.erb:91 -msgid "Error:" -msgstr "Erreur :" - #: ../../app/views/layouts/application.html.erb:91 msgid "Notice:" msgstr "Note :" +#: ../../app/views/layouts/application.html.erb:91 +msgid "Error:" +msgstr "Erreur :" + #: ../../app/views/layouts/application.html.erb:102 msgid "Loading..." msgstr "Chargement..." -#: ../../app/views/layouts/application.html.erb:122 +#: ../../app/views/layouts/application.html.erb:121 #: ../../app/views/plans/new.html.erb:2 msgid "This field is required." msgstr "Ce champ est obligatoire." -#: ../../app/views/layouts/application.html.erb:124 +#: ../../app/views/layouts/application.html.erb:123 #: ../../app/views/shared/_create_account_form.html.erb:31 msgid "Show password" msgstr "Afficher le mot de passe" -#: ../../app/views/layouts/application.html.erb:125 +#: ../../app/views/layouts/application.html.erb:124 msgid "Select an organisation from the list." msgstr "Sélectionner un organisme dans la liste." -#: ../../app/views/layouts/application.html.erb:126 +#: ../../app/views/layouts/application.html.erb:125 msgid "My organisation isn't listed" msgstr "Mon organisme n'est pas dans la liste" -#: ../../app/views/layouts/application.html.erb:128 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:39 +#: ../../app/views/layouts/application.html.erb:127 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:42 msgid "N/A" msgstr "N/D" -#: ../../app/views/layouts/application.html.erb:132 +#: ../../app/views/layouts/application.html.erb:131 msgid "Hide list." msgstr "Cacher la liste." -#: ../../app/views/layouts/application.html.erb:133 +#: ../../app/views/layouts/application.html.erb:132 msgid "See the full list of partner institutions." msgstr "Voir la liste des institutions partenaires." -#: ../../app/views/layouts/application.html.erb:135 +#: ../../app/views/layouts/application.html.erb:134 msgid "" "Unable to find a suitable template for the research organisation and funder yo" "u selected." @@ -3000,29 +3044,29 @@ msgstr "" "Impossible de trouver un modèle approprié à l'organisme de recherche et au fin" "anceur que vous avez sélectionnés." -#: ../../app/views/layouts/application.html.erb:136 +#: ../../app/views/layouts/application.html.erb:135 msgid "Please select a research organisation and funder to continue." msgstr "" "Veuillez sélectionner un organisme de recherche et un financeur pour continuer" "." -#: ../../app/views/layouts/application.html.erb:138 +#: ../../app/views/layouts/application.html.erb:137 msgid "Loading ..." msgstr "Chargement ..." -#: ../../app/views/layouts/application.html.erb:139 +#: ../../app/views/layouts/application.html.erb:138 msgid "Unable to load the section's content at this time." msgstr "Impossible de charger le contenu de la section pour le moment." -#: ../../app/views/layouts/application.html.erb:140 +#: ../../app/views/layouts/application.html.erb:139 msgid "Unable to load the question's content at this time." msgstr "Impossible de charger le contenu de la question pour le moment." -#: ../../app/views/layouts/application.html.erb:141 +#: ../../app/views/layouts/application.html.erb:140 msgid "Opens in a new window" msgstr "Ouvre une nouvelle fenêtre" -#: ../../app/views/layouts/application.html.erb:143 +#: ../../app/views/layouts/application.html.erb:142 msgid "" "%{n} results are available, use up and down arrows to navigate suggestions. Us" "e the Enter key to select a suggestion or the Escape key to close the suggesti" @@ -3032,11 +3076,11 @@ msgstr "" "ir les suggestions. Utilisez la touche Entrée pour sélectionner une suggestion" " ou la touche Échap pour fermer les suggestions." -#: ../../app/views/layouts/application.html.erb:144 +#: ../../app/views/layouts/application.html.erb:143 msgid "No results are available for your entry." msgstr "Aucun résultat n'est disponible pour votre recherche." -#: ../../app/views/layouts/application.html.erb:145 +#: ../../app/views/layouts/application.html.erb:144 msgid "Searching ..." msgstr "Recherche..." @@ -3050,7 +3094,7 @@ msgid "No results matched your filter criteria." msgstr "Aucun résultat ne correspond à vos critères de filtrage." #: ../../app/views/layouts/modal_search/_form.html.erb:41 -#: ../../app/views/layouts/modal_search/_form.html.erb:83 +#: ../../app/views/layouts/modal_search/_form.html.erb:84 msgid "Close" msgstr "Fermer" @@ -3058,7 +3102,7 @@ msgstr "Fermer" msgid "%{topic} search" msgstr "Rechercher %{topic}" -#: ../../app/views/layouts/modal_search/_form.html.erb:66 +#: ../../app/views/layouts/modal_search/_form.html.erb:67 msgid "Apply filter(s)" msgstr "Appliquer le(s) filtre(s)" @@ -3094,7 +3138,7 @@ msgstr "Ajouter un commentaire" #: ../../app/views/paginable/guidance_groups/_index.html.erb:49 #: ../../app/views/paginable/guidances/_index.html.erb:54 #: ../../app/views/paginable/orgs/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:58 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 #: ../../app/views/paginable/research_outputs/_index.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:56 #: ../../app/views/paginable/templates/_organisational.html.erb:56 @@ -3370,13 +3414,13 @@ msgstr "Type" #: ../../app/views/paginable/orgs/_index.html.erb:10 #: ../../app/views/paginable/orgs/_index.html.erb:30 #: ../../app/views/paginable/plans/_privately_visible.html.erb:13 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:53 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:56 #: ../../app/views/paginable/research_outputs/_index.html.erb:23 #: ../../app/views/paginable/research_outputs/_index.html.erb:48 #: ../../app/views/paginable/templates/_customisable.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:10 #: ../../app/views/paginable/templates/_organisational.html.erb:53 -#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:53 msgid "Actions" msgstr "Actions" @@ -3657,21 +3701,6 @@ msgstr "réservé à l'usage interne de %{org_name}" msgid "Status" msgstr "Statut" -#: ../../app/views/org_admin/templates/_form.html.erb:35 -#: ../../app/views/org_admin/templates/_row.html.erb:10 -#: ../../app/views/org_admin/templates/_row.html.erb:13 -#: ../../app/views/org_admin/templates/_show.html.erb:19 -#: ../../app/views/org_admin/templates/_show.html.erb:22 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 -#: ../../app/views/paginable/guidances/_index.html.erb:37 -#: ../../app/views/paginable/templates/_customisable.html.erb:31 -#: ../../app/views/paginable/templates/_customisable.html.erb:34 -#: ../../app/views/paginable/templates/_history.html.erb:8 -#: ../../app/views/paginable/templates/_organisational.html.erb:36 -#: ../../app/views/paginable/templates/_organisational.html.erb:39 -msgid "Published" -msgstr "Publié" - #: ../../app/views/org_admin/templates/_form.html.erb:37 #: ../../app/views/org_admin/templates/_row.html.erb:16 #: ../../app/views/org_admin/templates/_show.html.erb:26 @@ -4039,7 +4068,7 @@ msgstr "Informations du profil" #: ../../app/views/orgs/admin_edit.html.erb:22 #: ../../app/views/plans/_navigation.html.erb:33 -#: ../../app/views/plans/_request_feedback_form.html.erb:13 +#: ../../app/views/plans/_request_feedback_form.html.erb:19 #: ../../app/views/static_pages/help.html.erb:45 msgid "Request feedback" msgstr "Demande d'assistance conseil" @@ -4132,13 +4161,9 @@ msgstr "" "Vous êtes sur le point de supprimer '%{department_name}'. Cela affectera les r" "ecommandations. Êtes-vous sûr?" -#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 -msgid "Optional subset" -msgstr "Sous-ensemble facultatif" - #: ../../app/views/paginable/guidance_groups/_index.html.erb:31 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:45 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:48 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:12 @@ -4146,8 +4171,8 @@ msgid "No" msgstr "Non" #: ../../app/views/paginable/guidance_groups/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:43 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:46 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:11 @@ -4195,12 +4220,6 @@ msgstr "Début" msgid "Expiration" msgstr "Expiration" -#: ../../app/views/paginable/notifications/_index.html.erb:8 -#: ../../app/views/paginable/users/_index.html.erb:28 -#: ../../app/views/super_admin/notifications/_form.html.erb:34 -msgid "Active" -msgstr "Actif" - #: ../../app/views/paginable/orgs/_index.html.erb:6 msgid "Administrator Email" msgstr "Courriel administrateur" @@ -4266,8 +4285,8 @@ msgstr "Créé" #: #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:21 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:73 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:9 #: ../../app/views/paginable/templates/_history.html.erb:6 #: ../../app/views/paginable/templates/_organisational.html.erb:2 @@ -4315,30 +4334,22 @@ msgstr "Rôle" msgid "Shared" msgstr "Partagé" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 #: ../../app/views/plans/_navigation.html.erb:28 msgid "Share" msgstr "Partager" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:65 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:68 #: ../../app/views/paginable/templates/_organisational.html.erb:67 msgid "Copy" msgstr "Copier" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 #: ../../app/views/paginable/templates/_history.html.erb:58 msgid "View" msgstr "Visualiser" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 -msgid "" -"Are you sure you wish to remove this public plan? This will remove it from the" -" Public DMPs page but any collaborators will still be able to access it." -msgstr "" -"Souhaitez-vous vraiment supprimer ce plan public? Il sera supprimé de la page " -"DMPs publics mais vos collaborateurs continueront à pouvoir y accéder." - -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" "Are you sure you wish to remove this plan? Any collaborators will still be abl" "e to access it." @@ -4346,6 +4357,14 @@ msgstr "" "Souhaitez-vous vraiment supprimer ce plan ? Vos collaborateurs continueront à " "pouvoir y accéder. " +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 +msgid "" +"Are you sure you wish to remove this public plan? This will remove it from the" +" Public DMPs page but any collaborators will still be able to access it." +msgstr "" +"Souhaitez-vous vraiment supprimer ce plan public? Il sera supprimé de la page " +"DMPs publics mais vos collaborateurs continueront à pouvoir y accéder." + #: ../../app/views/paginable/plans/_publicly_visible.html.erb:17 msgid "Not Applicable" msgstr "Non applicable" @@ -4510,10 +4529,6 @@ msgstr "Date de création" msgid "Last activity" msgstr "Dernière activité" -#: ../../app/views/paginable/users/_index.html.erb:27 -msgid "Current Privileges" -msgstr "Droits" - #: ../../app/views/paginable/users/_index.html.erb:46 msgid "Edit Profile" msgstr "Editer le profil" @@ -4815,11 +4830,20 @@ msgstr "" msgid "Request expert feedback" msgstr "Demande d'assistance conseil" -#: ../../app/views/plans/_request_feedback_form.html.erb:11 +#: ../../app/views/plans/_request_feedback_form.html.erb:9 +msgid "" +"Click below to give data management staff at %{owner_org}, the Plan Owner's or" +"g, access to read and comment on your plan." +msgstr "" +"Cliquez ci-dessous pour donner au personnel de gestion des données de %{owner_" +"org}, l'organisation du propriétaire du plan, un accès pour lire et commenter " +"votre plan." + +#: ../../app/views/plans/_request_feedback_form.html.erb:17 msgid "You can continue to edit and download the plan in the interim." msgstr "Vous pouvez continuer à modifier et à télécharger le plan en attendant." -#: ../../app/views/plans/_request_feedback_form.html.erb:17 +#: ../../app/views/plans/_request_feedback_form.html.erb:23 msgid "Feedback has been requested." msgstr "Une assistance conseil a été demandée." @@ -4840,7 +4864,7 @@ msgstr "" msgid "Set plan visibility" msgstr "Définir la visibilité du plan" -#: ../../app/views/plans/_share_form.html.erb:9 +#: ../../app/views/plans/_share_form.html.erb:13 msgid "" "Public or organisational visibility is intended for finished plans. You must a" "nswer at least %{percentage}%% of the questions to enable these options. Note:" @@ -4850,7 +4874,7 @@ msgstr "" "Vous devez répondre à au moins %{percentage}%% des questions pour pouvoir acti" "ver ces options. Note : les plans de test on la visibilité privé par défault." -#: ../../app/views/plans/_share_form.html.erb:19 +#: ../../app/views/plans/_share_form.html.erb:21 msgid "" "Private: visible to me, specified collaborators and administrators at my organ" "isation" @@ -4858,20 +4882,20 @@ msgstr "" "Privé : visible par moi, les collaborateurs invités et les administrateurs de " "mon organisme" -#: ../../app/views/plans/_share_form.html.erb:27 +#: ../../app/views/plans/_share_form.html.erb:29 #: ../../app/views/user_mailer/plan_visibility.html.erb:12 msgid "Organisation: anyone at my organisation can view" msgstr "Organisme : toute personne de mon organisme peut consulter mon plan" -#: ../../app/views/plans/_share_form.html.erb:35 +#: ../../app/views/plans/_share_form.html.erb:37 msgid "Public: anyone can view" msgstr "Public : visible par tous" -#: ../../app/views/plans/_share_form.html.erb:42 +#: ../../app/views/plans/_share_form.html.erb:44 msgid "Manage collaborators" msgstr "Gérer les collaborateurs" -#: ../../app/views/plans/_share_form.html.erb:43 +#: ../../app/views/plans/_share_form.html.erb:45 msgid "" "Invite specific people to read, edit, or administer your plan. Invitees will r" "eceive an email notification that they have access to this plan." @@ -4880,20 +4904,20 @@ msgstr "" "recevront une notification par message électronique indiquant qu'ils ont accès" " à ce plan." -#: ../../app/views/plans/_share_form.html.erb:48 +#: ../../app/views/plans/_share_form.html.erb:50 msgid "Email address" msgstr "Courriel" -#: ../../app/views/plans/_share_form.html.erb:49 -#: ../../app/views/plans/_share_form.html.erb:122 +#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:124 msgid "Permissions" msgstr "Permissions" -#: ../../app/views/plans/_share_form.html.erb:89 +#: ../../app/views/plans/_share_form.html.erb:91 msgid "Are you sure?" msgstr "Êtes-vous sûr ?" -#: ../../app/views/plans/_share_form.html.erb:100 +#: ../../app/views/plans/_share_form.html.erb:102 msgid "Invite collaborators" msgstr "Inviter des collaborateurs" @@ -5106,6 +5130,10 @@ msgstr "" msgid "Please describe the output type" msgstr "Veuillez décrire le type de produit" +#: ../../app/views/research_outputs/_form.html.erb:27 +msgid "Research output type" +msgstr "Type de résultat de la recherche" + #: ../../app/views/research_outputs/_form.html.erb:44 msgid "Abbreviation" msgstr "Nom abrégé" @@ -5146,10 +5174,15 @@ msgid "Initial access level" msgstr "Niveau d'accès initial" #: ../../app/views/research_outputs/_form.html.erb:158 +#: ../../app/views/research_outputs/_form.html.erb:164 #: ../../app/views/shared/export/_plan_outputs.erb:23 msgid "Anticipated file size" msgstr "Taille de fichier prévue" +#: ../../app/views/research_outputs/_form.html.erb:170 +msgid "File size units" +msgstr "Unités de taille de fichier" + #: ../../app/views/research_outputs/edit.html.erb:12 msgid "Editing %{research_output_title}" msgstr "Édition %{research_output_title}" @@ -5167,11 +5200,12 @@ msgstr "Veuillez lister les produits de recherche prévus." msgid "Add a research output" msgstr "Ajouter un produit de recherche" -#: ../../app/views/research_outputs/licenses/_form.html.erb:24 +#: ../../app/views/research_outputs/licenses/_form.html.erb:20 +#: ../../app/views/research_outputs/licenses/_form.html.erb:25 msgid "Initial license" msgstr "Licence initiale" -#: ../../app/views/research_outputs/licenses/_form.html.erb:30 +#: ../../app/views/research_outputs/licenses/_form.html.erb:31 msgid "For guidance on selecting a license:" msgstr "Pour obtenir des conseils sur la sélection d'une licence :" @@ -5200,10 +5234,18 @@ msgstr "Sélectionnez un domaine pour affiner votre recherche." msgid "- Select a subject area -" msgstr "- Sélectionnez un domaine d'étude -" -#: ../../app/views/research_outputs/repositories/_search.html.erb:21 +#: ../../app/views/research_outputs/repositories/_search.html.erb:14 +msgid "Select a subject area" +msgstr "Sélectionnez un domaine" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:22 msgid "- Select a repository type -" msgstr "- Sélectionnez un type d’entrepôt -" +#: ../../app/views/research_outputs/repositories/_search.html.erb:24 +msgid "Select a repository type" +msgstr "Sélectionnez un type de dépôt" + #: ../../app/views/research_outputs/repositories/_search_result.html.erb:20 msgid "Click to view repositories related to %{subject}" msgstr "Cliquez pour afficher les entrepôts liés à %{subject}" @@ -5531,14 +5573,14 @@ msgstr "Créer un compte" msgid "on the homepage." msgstr "sur la page d'accueil." -#: ../../app/views/static_pages/about_us.html.erb:35 -msgid "Please visit the" -msgstr "Veuillez visiter le" - #: ../../app/views/static_pages/about_us.html.erb:35 msgid "page for guidance." msgstr "page de recommandations." +#: ../../app/views/static_pages/about_us.html.erb:35 +msgid "Please visit the" +msgstr "Veuillez visiter le" + #: ../../app/views/static_pages/about_us.html.erb:37 msgid "Customising for your Organisation" msgstr "Personnalisation pour votre organisme" @@ -6267,6 +6309,14 @@ msgstr "Nombre de plans créés à partir de vos modèles" msgid "Statistics on your Templates" msgstr "Statistiques sur vos modèles" +#: ../../app/views/usage/_total_usage.html.erb:7 +msgid "Total users" +msgstr "Nbre total d'utilisateurs" + +#: ../../app/views/usage/_total_usage.html.erb:11 +msgid "Total plans" +msgstr "Nbre total de plans" + #: ../../app/views/usage/_total_usage.html.erb:15 msgid "Excluding Test Plans" msgstr "Hors plans de test" @@ -6417,15 +6467,19 @@ msgstr "" msgid "Hello %{user_name}," msgstr "Bonjour %{user_name}," -#: ../../app/views/user_mailer/feedback_notification.html.erb:5 +#: ../../app/views/user_mailer/feedback_notification.html.erb:6 msgid "" "%{requestor} has requested feedback on a plan %{link_html}. To add comments, p" -"lease visit the 'Plans' page under the Admin menu in %{tool_name} and open the" +"lease visit the \"Plans\" page under the Admin menu in %{tool_name} and open the" " plan." msgstr "" -"%{requestor}a demandé une assistance conseil pour le plan %{link_html}. Pour a" -"jouter des commentaires, consultez la page 'Plans' dans le menu Administration" -" de %{tool_name} et ouvrez le plan." +"%{requestor} a demandé des commentaires sur un plan %{link_html}. Pour ajouter" +" des commentaires, veuillez visiter la page \"Plans\" sous le menu Admin dans %{" +"tool_name} et ouvrez le plan." + +#: ../../app/views/user_mailer/feedback_notification.html.erb:17 +msgid "Alternatively, you can click the link below:" +msgstr "Alternativement, vous pouvez cliquer sur le lien ci-dessous :" #: ../../app/views/user_mailer/new_comment.html.erb:5 msgid "" @@ -6515,22 +6569,22 @@ msgstr "" msgid "Hello %{recipient_name}," msgstr "Bonjour %{recipient_name}," -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " is creating a Data Management Plan and has answered " -msgstr " crée un plan de gestion des données et a répondu" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " to " msgstr " à" -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " in a plan called " -msgstr " dans un plan appelé" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " based on the template " msgstr " basé sur le modèle" +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " is creating a Data Management Plan and has answered " +msgstr " crée un plan de gestion des données et a répondu" + +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " in a plan called " +msgstr " dans un plan appelé" + #: ../../app/views/user_mailer/sharing_notification.html.erb:5 msgid "" "Your colleague %{inviter_name} has invited you to contribute to \n" @@ -6685,14 +6739,14 @@ msgstr "" msgid "Download users" msgstr "Télécharger les utilisateurs" -#: ../../app/views/users/refresh_token.js.erb:1 -msgid "Successfully regenerate your API token." -msgstr "Régénérez votre jeton API avec succès." - #: ../../app/views/users/refresh_token.js.erb:1 msgid "Unable to regenerate your API token." msgstr "Impossible de régénérer votre jeton API." +#: ../../app/views/users/refresh_token.js.erb:1 +msgid "Successfully regenerate your API token." +msgstr "Régénérez votre jeton API avec succès." + #: i18n_placeholders.rb:4 msgid "activerecord.errors.messages.record_invalid" msgstr "activerecord.errors.messages.record_invalid" diff --git a/config/locale/pt_BR/LC_MESSAGES/app.mo b/config/locale/pt_BR/LC_MESSAGES/app.mo index 60d4d157ddbbdeda2c6fdf6a4c042d80737ab291..d1830d69d16597cde547fbcc59af4368955bba3f 100644 GIT binary patch delta 26953 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 Cx`X2Y delta 26231 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 diff --git a/config/locale/sv_FI/app.po b/config/locale/sv_FI/app.po index 7eb3b1a7b2..b44c0fa5f2 100644 --- a/config/locale/sv_FI/app.po +++ b/config/locale/sv_FI/app.po @@ -1,14 +1,14 @@ -# Swedish translations for app package. -# Copyright (C) 2022 app -# This file is distributed under the same license as the app package. +# Swedish translations for DMPRoadmap-Development package. +# Copyright (C) 2022 DMPRoadmap-Development +# This file is distributed under the same license as the DMPRoadmap-Development package. # FIRST AUTHOR , 2022. # msgid "" msgstr "" -"Project-Id-Version: app 1.0\n" +"Project-Id-Version: DMPRoadmap-Development 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2022-10-25 16:02+0000\n" -"PO-Revision-Date: 2022-10-25 18:03+0200\n" +"POT-Creation-Date: 2022-11-30 14:11-0500\n" +"PO-Revision-Date: 2022-11-30 20:11+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish\n" "Language: sv_FI\n" @@ -263,7 +263,7 @@ msgstr "Lagt till" #: ../../app/controllers/contributors_controller.rb:72 #: ../../app/controllers/guidance_groups_controller.rb:55 #: ../../app/controllers/guidances_controller.rb:75 -#: ../../app/controllers/notes_controller.rb:89 +#: ../../app/controllers/notes_controller.rb:88 #: ../../app/controllers/org_admin/departments_controller.rb:50 #: ../../app/controllers/org_admin/sections_controller.rb:103 #: ../../app/controllers/org_admin/templates_controller.rb:205 @@ -283,7 +283,7 @@ msgstr "sparade" #: ../../app/controllers/contributors_controller.rb:74 #: ../../app/controllers/guidance_groups_controller.rb:57 #: ../../app/controllers/guidances_controller.rb:77 -#: ../../app/controllers/notes_controller.rb:107 +#: ../../app/controllers/notes_controller.rb:106 #: ../../app/controllers/org_admin/departments_controller.rb:52 #: ../../app/controllers/org_admin/sections_controller.rb:105 #: ../../app/controllers/org_admin/templates_controller.rb:210 @@ -299,7 +299,7 @@ msgid "save" msgstr "spara" #: ../../app/controllers/contributors_controller.rb:84 -#: ../../app/controllers/notes_controller.rb:131 +#: ../../app/controllers/notes_controller.rb:130 #: ../../app/controllers/org_admin/templates_controller.rb:238 #: ../../app/controllers/research_outputs_controller.rb:74 #: ../../app/controllers/super_admin/orgs_controller.rb:94 @@ -307,7 +307,7 @@ msgid "removed" msgstr "tog bort" #: ../../app/controllers/contributors_controller.rb:87 -#: ../../app/controllers/notes_controller.rb:149 +#: ../../app/controllers/notes_controller.rb:148 #: ../../app/controllers/org_admin/templates_controller.rb:240 #: ../../app/controllers/research_outputs_controller.rb:77 #: ../../app/controllers/super_admin/orgs_controller.rb:97 @@ -333,7 +333,7 @@ msgstr "Ett fel uppstod när du begärde feedback för den här planen." #: ../../app/controllers/guidance_groups_controller.rb:31 #: ../../app/controllers/guidances_controller.rb:53 -#: ../../app/controllers/notes_controller.rb:48 +#: ../../app/controllers/notes_controller.rb:47 #: ../../app/controllers/org_admin/departments_controller.rb:26 #: ../../app/controllers/org_admin/phases_controller.rb:121 #: ../../app/controllers/org_admin/questions_controller.rb:94 @@ -349,7 +349,7 @@ msgstr "skapad" #: ../../app/controllers/guidance_groups_controller.rb:34 #: ../../app/controllers/guidances_controller.rb:55 -#: ../../app/controllers/notes_controller.rb:67 +#: ../../app/controllers/notes_controller.rb:66 #: ../../app/controllers/org_admin/departments_controller.rb:30 #: ../../app/controllers/org_admin/phases_controller.rb:123 #: ../../app/controllers/org_admin/questions_controller.rb:96 @@ -1124,17 +1124,17 @@ msgid "Owner" msgstr "Ägare" #: ../../app/helpers/plans_helper.rb:10 -#: ../../app/views/plans/_share_form.html.erb:127 +#: ../../app/views/plans/_share_form.html.erb:129 msgid "Co-owner" msgstr "Delägare" #: ../../app/helpers/plans_helper.rb:12 -#: ../../app/views/plans/_share_form.html.erb:133 +#: ../../app/views/plans/_share_form.html.erb:135 msgid "Editor" msgstr "Redaktör" #: ../../app/helpers/plans_helper.rb:14 -#: ../../app/views/plans/_share_form.html.erb:139 +#: ../../app/views/plans/_share_form.html.erb:141 msgid "Read only" msgstr "Läs endast" @@ -1143,7 +1143,7 @@ msgid "Public" msgstr "offentlig" #: ../../app/helpers/plans_helper.rb:26 ../../app/helpers/plans_helper.rb:28 -#: ../../app/views/layouts/application.html.erb:129 +#: ../../app/views/layouts/application.html.erb:128 msgid "Private" msgstr "Privat" @@ -1156,7 +1156,7 @@ msgid "Public: anyone can view." msgstr "Offentlig: alla kan visa." #: ../../app/helpers/plans_helper.rb:39 -#: ../../app/views/layouts/application.html.erb:130 +#: ../../app/views/layouts/application.html.erb:129 msgid "Private: restricted to me and people I invite." msgstr "Privat: begränsad till mig och personer jag bjuder in." @@ -1383,62 +1383,61 @@ msgid "Affiliation: " msgstr "Anslutning:" #: ../../app/models/concerns/exportable_plan.rb:163 -#: ../../app/models/concerns/exportable_plan.rb:164 msgid "%{affiliation}" msgstr "%{affiliation}" -#: ../../app/models/concerns/exportable_plan.rb:166 -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:165 +#: ../../app/models/concerns/exportable_plan.rb:167 #: ../../app/views/shared/export/_plan_coversheet.erb:32 #: ../../app/views/shared/export/_plan_txt.erb:22 #: ../../app/views/shared/export/_plan_txt.erb:24 msgid "Template: " msgstr "Mall:" -#: ../../app/models/concerns/exportable_plan.rb:166 +#: ../../app/models/concerns/exportable_plan.rb:165 msgid "%{funder}" msgstr "%{funder}" -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:167 msgid "%{template}" msgstr "%{template}" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 #: ../../app/views/shared/export/_plan_txt.erb:27 msgid "Grant number: " msgstr "Bidragsnummer:" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 msgid "%{grant_number}" msgstr "%{grant_number}" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 #: ../../app/views/shared/export/_plan_coversheet.erb:42 #: ../../app/views/shared/export/_plan_txt.erb:30 msgid "Project abstract: " msgstr "Projektens abstrakt:" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 msgid "%{description}" msgstr "%{description}" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 #: ../../app/views/shared/export/_plan_coversheet.erb:58 #: ../../app/views/shared/export/_plan_txt.erb:33 msgid "Last modified: " msgstr "Senast ändrad:" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 msgid "%{date}" msgstr "%{date}" -#: ../../app/models/concerns/exportable_plan.rb:175 +#: ../../app/models/concerns/exportable_plan.rb:174 #: ../../app/views/shared/export/_plan_coversheet.erb:65 #: ../../app/views/shared/export/_plan_txt.erb:34 msgid "Copyright information:" msgstr "Upphovsrättsinformation:" -#: ../../app/models/concerns/exportable_plan.rb:176 +#: ../../app/models/concerns/exportable_plan.rb:175 msgid "" "The above plan creator(s) have agreed that others may use as\n" " much of the text of this plan as they would like in their own pla" @@ -1462,12 +1461,12 @@ msgstr "" "amband med,\n" "             ditt projekt eller förslag" -#: ../../app/models/concerns/exportable_plan.rb:199 +#: ../../app/models/concerns/exportable_plan.rb:198 msgid "Not Answered" msgstr "Inte besvarad" #: ../../app/models/concerns/validation_messages.rb:11 -#: ../../app/models/template.rb:226 +#: ../../app/models/template.rb:223 msgid "can't be blank" msgstr "måste anges" @@ -1557,7 +1556,7 @@ msgstr "Testa" msgid "private" msgstr "Privat" -#: ../../app/models/plan.rb:617 +#: ../../app/models/plan.rb:615 msgid "must be after the start date" msgstr "måste vara efter startdatumet" @@ -1601,51 +1600,51 @@ msgstr "Okänd formatering inställning" msgid "Invalid maximum pages" msgstr "Ogiltiga högsta sidor" -#: ../../app/models/template.rb:254 +#: ../../app/models/template.rb:251 msgid "A historical template cannot be retrieved for being modified" msgstr "En historisk mall kan inte hämtas för att ändras" -#: ../../app/models/template.rb:378 +#: ../../app/models/template.rb:375 msgid "generate_copy! requires an organisation target" msgstr "generate_copy! kräver ett organisationsmål" -#: ../../app/models/template.rb:387 +#: ../../app/models/template.rb:384 msgid "Copy of %{template}" msgstr "Kopia av %{template}" -#: ../../app/models/template.rb:394 +#: ../../app/models/template.rb:391 msgid "generate_version! requires a published template" msgstr "generate_version! kräver en publicerad mall" -#: ../../app/models/template.rb:408 +#: ../../app/models/template.rb:405 msgid "customize! requires an organisation target" msgstr "skräddarsy! kräver ett organisationsmål" -#: ../../app/models/template.rb:411 +#: ../../app/models/template.rb:408 msgid "customize! requires a template from a funder" msgstr "skräddarsy! kräver en mall från en funderare" -#: ../../app/models/template.rb:447 +#: ../../app/models/template.rb:444 msgid "You can not publish a published template. " msgstr "Du kan inte publicera en publicerad mall." -#: ../../app/models/template.rb:451 +#: ../../app/models/template.rb:448 msgid "You can not publish a historical version of this template. " msgstr "Du kan inte publicera en historisk version av denna mall." -#: ../../app/models/template.rb:456 +#: ../../app/models/template.rb:453 msgid "You can not publish a template without phases. " msgstr "Du kan inte publicera en mall utan faser." -#: ../../app/models/template.rb:461 +#: ../../app/models/template.rb:458 msgid "You can not publish a template without sections in a phase. " msgstr "Du kan inte publicera en mall utan sektioner i en fas." -#: ../../app/models/template.rb:466 +#: ../../app/models/template.rb:463 msgid "You can not publish a template without questions in a section. " msgstr "Du kan inte publicera en mall utan frågor i en sektion." -#: ../../app/models/template.rb:470 +#: ../../app/models/template.rb:467 msgid "Conditions in the template refer backwards" msgstr "Förhållandena i mallen hänvisar bakåt" @@ -1653,6 +1652,58 @@ msgstr "Förhållandena i mallen hänvisar bakåt" msgid "A Data Management Plan in %{application_name} has been shared with you" msgstr "En datahanteringsplan i %{application_name} har delats med dig" +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 +#: ../../app/views/contributors/_form.html.erb:10 +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:8 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 +#: ../../app/views/org_admin/departments/edit.html.erb:14 +#: ../../app/views/org_admin/departments/new.html.erb:14 +#: ../../app/views/paginable/api_clients/_index.html.erb:6 +#: ../../app/views/paginable/contributors/_index.html.erb:7 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 +#: ../../app/views/paginable/themes/_index.html.erb:4 +#: ../../app/views/paginable/users/_index.html.erb:20 +#: ../../app/views/super_admin/api_clients/_form.html.erb:11 +msgid "Name" +msgstr "Namn" + +#: ../../app/models/user/at_csv.rb:7 +msgid "E-Mail" +msgstr "E-post" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Created Date" +msgstr "Skapat Datum" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Last Activity" +msgstr "sista aktiviteten" + +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/layouts/_branding.html.erb:71 +#: ../../app/views/org_admin/users/edit.html.erb:71 +#: ../../app/views/paginable/users/_index.html.erb:26 +#: ../../app/views/super_admin/users/edit.html.erb:105 +msgid "Plans" +msgstr "Plans" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/users/_index.html.erb:27 +msgid "Current Privileges" +msgstr "Aktuella privilegier" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/notifications/_index.html.erb:8 +#: ../../app/views/paginable/users/_index.html.erb:28 +#: ../../app/views/super_admin/notifications/_form.html.erb:34 +msgid "Active" +msgstr "Aktiva" + +#: ../../app/models/user/at_csv.rb:8 +msgid "Department" +msgstr "Avdelning" + #: ../../app/policies/api/v0/guidance_group_policy.rb:11 #: ../../app/policies/api/v0/guidance_policy.rb:11 #: ../../app/policies/api/v0/statistics_policy.rb:11 @@ -1860,7 +1911,7 @@ msgid "Please wait, Standards are loading" msgstr "Vänligen vänta, Standarder laddas" #: ../../app/views/answers/_new_edit.html.erb:68 -#: ../../app/views/contributors/_form.html.erb:94 +#: ../../app/views/contributors/_form.html.erb:95 #: ../../app/views/devise/passwords/edit.html.erb:35 #: ../../app/views/devise/registrations/_password_details.html.erb:31 #: ../../app/views/devise/registrations/_personal_details.html.erb:90 @@ -1881,7 +1932,7 @@ msgstr "Vänligen vänta, Standarder laddas" #: ../../app/views/plans/_edit_details.html.erb:11 #: ../../app/views/plans/_guidance_selection.html.erb:23 #: ../../app/views/questions/_preview_question.html.erb:111 -#: ../../app/views/research_outputs/_form.html.erb:177 +#: ../../app/views/research_outputs/_form.html.erb:178 #: ../../app/views/super_admin/api_clients/_form.html.erb:67 #: ../../app/views/super_admin/notifications/_form.html.erb:66 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -1922,20 +1973,6 @@ msgstr " frågor från din plan." msgid "This answer triggers email(s) to " msgstr "Detta svar utlöser e-post (er) till" -#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 -#: ../../app/views/contributors/_form.html.erb:10 -#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 -#: ../../app/views/org_admin/departments/edit.html.erb:14 -#: ../../app/views/org_admin/departments/new.html.erb:14 -#: ../../app/views/paginable/api_clients/_index.html.erb:6 -#: ../../app/views/paginable/contributors/_index.html.erb:7 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 -#: ../../app/views/paginable/themes/_index.html.erb:4 -#: ../../app/views/paginable/users/_index.html.erb:20 -#: ../../app/views/super_admin/api_clients/_form.html.erb:11 -msgid "Name" -msgstr "Namn" - #: ../../app/views/contact_us/contacts/_new_left.html.erb:13 #: ../../app/views/contact_us/contacts/_new_right.html.erb:23 #: ../../app/views/contributors/_form.html.erb:19 @@ -1945,7 +1982,7 @@ msgstr "Namn" #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/contributors/_index.html.erb:11 #: ../../app/views/paginable/users/_index.html.erb:21 -#: ../../app/views/plans/_share_form.html.erb:107 +#: ../../app/views/plans/_share_form.html.erb:109 #: ../../app/views/shared/_create_account_form.html.erb:12 #: ../../app/views/shared/_sign_in_form.html.erb:3 #: ../../app/views/super_admin/users/edit.html.erb:15 @@ -1971,7 +2008,7 @@ msgid "Security check" msgstr "Säkerhetskontroll" #: ../../app/views/contact_us/contacts/_new_left.html.erb:43 -#: ../../app/views/plans/_share_form.html.erb:146 +#: ../../app/views/plans/_share_form.html.erb:148 msgid "Submit" msgstr "Skicka" @@ -2001,8 +2038,8 @@ msgstr "" #: ../../app/views/contact_us/contacts/new.html.erb:10 #: ../../app/views/layouts/_branding.html.erb:41 -#: ../../app/views/layouts/_footer.html.erb:24 -#: ../../app/views/layouts/_footer.html.erb:30 +#: ../../app/views/layouts/_footer.html.erb:23 +#: ../../app/views/layouts/_footer.html.erb:29 #: ../../app/views/org_admin/plans/index.html.erb:40 #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:39 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:24 @@ -2045,7 +2082,7 @@ msgstr "Anslutning" msgid "Roles" msgstr "roller" -#: ../../app/views/contributors/_form.html.erb:96 +#: ../../app/views/contributors/_form.html.erb:97 #: ../../app/views/layouts/modal_search/_result.html.erb:23 #: ../../app/views/notes/_archive.html.erb:10 #: ../../app/views/notes/_list.html.erb:16 @@ -2059,16 +2096,16 @@ msgstr "roller" #: ../../app/views/paginable/guidance_groups/_index.html.erb:56 #: ../../app/views/paginable/guidances/_index.html.erb:61 #: ../../app/views/paginable/orgs/_index.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:75 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:78 #: ../../app/views/paginable/research_outputs/_index.html.erb:53 #: ../../app/views/paginable/templates/_customisable.html.erb:67 #: ../../app/views/paginable/templates/_organisational.html.erb:74 -#: ../../app/views/plans/_share_form.html.erb:89 -#: ../../app/views/research_outputs/_form.html.erb:179 +#: ../../app/views/plans/_share_form.html.erb:91 +#: ../../app/views/research_outputs/_form.html.erb:180 msgid "Remove" msgstr "ta bort" -#: ../../app/views/contributors/_form.html.erb:99 +#: ../../app/views/contributors/_form.html.erb:100 #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:29 #: ../../app/views/guidances/new_edit.html.erb:50 #: ../../app/views/notes/_archive.html.erb:11 @@ -2079,7 +2116,7 @@ msgstr "ta bort" #: ../../app/views/org_admin/questions/_form.html.erb:105 #: ../../app/views/plans/_guidance_selection.html.erb:35 #: ../../app/views/plans/new.html.erb:124 -#: ../../app/views/research_outputs/_form.html.erb:182 +#: ../../app/views/research_outputs/_form.html.erb:183 #: ../../app/views/super_admin/api_clients/_form.html.erb:86 #: ../../app/views/super_admin/notifications/_form.html.erb:73 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -2272,10 +2309,6 @@ msgstr "" msgid "Hello" msgstr "Hej" -#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 -msgid "Your" -msgstr "Din" - #: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 msgid "" "account has been locked due to an excessive number of unsuccessful sign in att" @@ -2284,6 +2317,10 @@ msgstr "" "Kontot har blivit låsat på grund av ett alltför stort antal misslyckade inlogg" "ningsförsök." +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 +msgid "Your" +msgstr "Din" + #: ../../app/views/devise/mailer/unlock_instructions.html.erb:6 msgid "Click the link below to unlock your account" msgstr "Klicka på länken nedan för att låsa upp ditt konto" @@ -2528,7 +2565,6 @@ msgid "Do you have a %{application_name} account?" msgstr "Har du ett %{application_name} konto?" #: ../../app/views/devise/registrations/new.html.erb:22 -#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 @@ -2584,6 +2620,27 @@ msgstr "" "t kunna välja att visa denna undergruppsguide när de svarar på frågor i guiden" " \"skapa plan\"." +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:15 +#: ../../app/views/org_admin/templates/_form.html.erb:35 +#: ../../app/views/org_admin/templates/_row.html.erb:10 +#: ../../app/views/org_admin/templates/_row.html.erb:13 +#: ../../app/views/org_admin/templates/_show.html.erb:19 +#: ../../app/views/org_admin/templates/_show.html.erb:22 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 +#: ../../app/views/paginable/guidances/_index.html.erb:37 +#: ../../app/views/paginable/templates/_customisable.html.erb:31 +#: ../../app/views/paginable/templates/_customisable.html.erb:34 +#: ../../app/views/paginable/templates/_history.html.erb:8 +#: ../../app/views/paginable/templates/_organisational.html.erb:36 +#: ../../app/views/paginable/templates/_organisational.html.erb:39 +msgid "Published" +msgstr "Publicerad" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 +msgid "Optional subset" +msgstr "Valfri delmängd" + #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 msgid " (e.g. School/ Department) " msgstr " (t ex skola / avdelning)" @@ -2753,13 +2810,6 @@ msgstr "Tidigare" msgid "Admin" msgstr "Administratör" -#: ../../app/views/layouts/_branding.html.erb:71 -#: ../../app/views/org_admin/users/edit.html.erb:71 -#: ../../app/views/paginable/users/_index.html.erb:26 -#: ../../app/views/super_admin/users/edit.html.erb:105 -msgid "Plans" -msgstr "Plans" - #: ../../app/views/layouts/_branding.html.erb:77 #: ../../app/views/org_admin/templates/index.html.erb:4 #: ../../app/views/paginable/orgs/_index.html.erb:8 @@ -2827,11 +2877,7 @@ msgid "Privacy statement" msgstr "Sekretesspolicy" #: ../../app/views/layouts/_footer.html.erb:17 -msgid "Accessibility statement" -msgstr "Tillgänglighetsförklaring" - -#: ../../app/views/layouts/_footer.html.erb:18 -msgid "Github" +msgid "GitHub" msgstr "github" #: ../../app/views/layouts/_navigation.html.erb:12 @@ -2912,50 +2958,50 @@ msgstr "Logga ut" msgid "%{application_name}" msgstr "%{application_name}" -#: ../../app/views/layouts/application.html.erb:91 -msgid "Error:" -msgstr "Fel:" - #: ../../app/views/layouts/application.html.erb:91 msgid "Notice:" msgstr "Lägga märke till:" +#: ../../app/views/layouts/application.html.erb:91 +msgid "Error:" +msgstr "Fel:" + #: ../../app/views/layouts/application.html.erb:102 msgid "Loading..." msgstr "Läser in..." -#: ../../app/views/layouts/application.html.erb:122 +#: ../../app/views/layouts/application.html.erb:121 #: ../../app/views/plans/new.html.erb:2 msgid "This field is required." msgstr "Detta fält är obligatoriskt." -#: ../../app/views/layouts/application.html.erb:124 +#: ../../app/views/layouts/application.html.erb:123 #: ../../app/views/shared/_create_account_form.html.erb:31 msgid "Show password" msgstr "Visa lösenord" -#: ../../app/views/layouts/application.html.erb:125 +#: ../../app/views/layouts/application.html.erb:124 msgid "Select an organisation from the list." msgstr "Välj en organisation från listan." -#: ../../app/views/layouts/application.html.erb:126 +#: ../../app/views/layouts/application.html.erb:125 msgid "My organisation isn't listed" msgstr "Min organisation är inte listad" -#: ../../app/views/layouts/application.html.erb:128 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:39 +#: ../../app/views/layouts/application.html.erb:127 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:42 msgid "N/A" msgstr "N / A" -#: ../../app/views/layouts/application.html.erb:132 +#: ../../app/views/layouts/application.html.erb:131 msgid "Hide list." msgstr "Dölj lista." -#: ../../app/views/layouts/application.html.erb:133 +#: ../../app/views/layouts/application.html.erb:132 msgid "See the full list of partner institutions." msgstr "Se hela listan över partnerinstitut." -#: ../../app/views/layouts/application.html.erb:135 +#: ../../app/views/layouts/application.html.erb:134 msgid "" "Unable to find a suitable template for the research organisation and funder yo" "u selected." @@ -2963,27 +3009,27 @@ msgstr "" "Det gick inte att hitta en lämplig mall för forskningsorganisationen och funde" "raren du valt." -#: ../../app/views/layouts/application.html.erb:136 +#: ../../app/views/layouts/application.html.erb:135 msgid "Please select a research organisation and funder to continue." msgstr "Vänligen välj en forskningsorganisation och funderare att fortsätta." -#: ../../app/views/layouts/application.html.erb:138 +#: ../../app/views/layouts/application.html.erb:137 msgid "Loading ..." msgstr "Läser in ..." -#: ../../app/views/layouts/application.html.erb:139 +#: ../../app/views/layouts/application.html.erb:138 msgid "Unable to load the section's content at this time." msgstr "Det går inte att läsa in sektionens innehåll just nu." -#: ../../app/views/layouts/application.html.erb:140 +#: ../../app/views/layouts/application.html.erb:139 msgid "Unable to load the question's content at this time." msgstr "Det gick inte att läsa in innehållets innehåll just nu." -#: ../../app/views/layouts/application.html.erb:141 +#: ../../app/views/layouts/application.html.erb:140 msgid "Opens in a new window" msgstr "Öppnar i nytt fönster" -#: ../../app/views/layouts/application.html.erb:143 +#: ../../app/views/layouts/application.html.erb:142 msgid "" "%{n} results are available, use up and down arrows to navigate suggestions. Us" "e the Enter key to select a suggestion or the Escape key to close the suggesti" @@ -2993,11 +3039,11 @@ msgstr "" "örslag. Använd Enter-knappen för att välja ett förslag eller Escape-knappen fö" "r att stänga förslagen." -#: ../../app/views/layouts/application.html.erb:144 +#: ../../app/views/layouts/application.html.erb:143 msgid "No results are available for your entry." msgstr "Inga resultat är tillgängliga för din post." -#: ../../app/views/layouts/application.html.erb:145 +#: ../../app/views/layouts/application.html.erb:144 msgid "Searching ..." msgstr "Söker ..." @@ -3011,7 +3057,7 @@ msgid "No results matched your filter criteria." msgstr "Inga resultat matchade dina filterkriterier." #: ../../app/views/layouts/modal_search/_form.html.erb:41 -#: ../../app/views/layouts/modal_search/_form.html.erb:83 +#: ../../app/views/layouts/modal_search/_form.html.erb:84 msgid "Close" msgstr "Stänga" @@ -3019,7 +3065,7 @@ msgstr "Stänga" msgid "%{topic} search" msgstr "%{topic} sökning" -#: ../../app/views/layouts/modal_search/_form.html.erb:66 +#: ../../app/views/layouts/modal_search/_form.html.erb:67 msgid "Apply filter(s)" msgstr "Använd filter" @@ -3055,7 +3101,7 @@ msgstr "Lägg till en kommentar" #: ../../app/views/paginable/guidance_groups/_index.html.erb:49 #: ../../app/views/paginable/guidances/_index.html.erb:54 #: ../../app/views/paginable/orgs/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:58 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 #: ../../app/views/paginable/research_outputs/_index.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:56 #: ../../app/views/paginable/templates/_organisational.html.erb:56 @@ -3329,13 +3375,13 @@ msgstr "Typ" #: ../../app/views/paginable/orgs/_index.html.erb:10 #: ../../app/views/paginable/orgs/_index.html.erb:30 #: ../../app/views/paginable/plans/_privately_visible.html.erb:13 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:53 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:56 #: ../../app/views/paginable/research_outputs/_index.html.erb:23 #: ../../app/views/paginable/research_outputs/_index.html.erb:48 #: ../../app/views/paginable/templates/_customisable.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:10 #: ../../app/views/paginable/templates/_organisational.html.erb:53 -#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:53 msgid "Actions" msgstr "Åtgärder" @@ -3606,21 +3652,6 @@ msgstr "för intern %{org_name} användning endast" msgid "Status" msgstr "Tillstånd" -#: ../../app/views/org_admin/templates/_form.html.erb:35 -#: ../../app/views/org_admin/templates/_row.html.erb:10 -#: ../../app/views/org_admin/templates/_row.html.erb:13 -#: ../../app/views/org_admin/templates/_show.html.erb:19 -#: ../../app/views/org_admin/templates/_show.html.erb:22 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 -#: ../../app/views/paginable/guidances/_index.html.erb:37 -#: ../../app/views/paginable/templates/_customisable.html.erb:31 -#: ../../app/views/paginable/templates/_customisable.html.erb:34 -#: ../../app/views/paginable/templates/_history.html.erb:8 -#: ../../app/views/paginable/templates/_organisational.html.erb:36 -#: ../../app/views/paginable/templates/_organisational.html.erb:39 -msgid "Published" -msgstr "Publicerad" - #: ../../app/views/org_admin/templates/_form.html.erb:37 #: ../../app/views/org_admin/templates/_row.html.erb:16 #: ../../app/views/org_admin/templates/_show.html.erb:26 @@ -3983,7 +4014,7 @@ msgstr "Profilinformation" #: ../../app/views/orgs/admin_edit.html.erb:22 #: ../../app/views/plans/_navigation.html.erb:33 -#: ../../app/views/plans/_request_feedback_form.html.erb:13 +#: ../../app/views/plans/_request_feedback_form.html.erb:19 #: ../../app/views/static_pages/help.html.erb:45 msgid "Request feedback" msgstr "Begär återkoppling" @@ -4076,13 +4107,9 @@ msgstr "" "Du håller på att ta bort '%{department_name}'. Detta kommer att påverka vägled" "ning. Är du säker?" -#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 -msgid "Optional subset" -msgstr "Valfri delmängd" - #: ../../app/views/paginable/guidance_groups/_index.html.erb:31 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:45 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:48 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:12 @@ -4090,8 +4117,8 @@ msgid "No" msgstr "Nej" #: ../../app/views/paginable/guidance_groups/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:43 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:46 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:11 @@ -4139,12 +4166,6 @@ msgstr "Start" msgid "Expiration" msgstr "Utgång" -#: ../../app/views/paginable/notifications/_index.html.erb:8 -#: ../../app/views/paginable/users/_index.html.erb:28 -#: ../../app/views/super_admin/notifications/_form.html.erb:34 -msgid "Active" -msgstr "Aktiva" - #: ../../app/views/paginable/orgs/_index.html.erb:6 msgid "Administrator Email" msgstr "Administratörs Email" @@ -4210,8 +4231,8 @@ msgstr "skapad" #: #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:21 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:73 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:9 #: ../../app/views/paginable/templates/_history.html.erb:6 #: ../../app/views/paginable/templates/_organisational.html.erb:2 @@ -4259,22 +4280,30 @@ msgstr "Roll" msgid "Shared" msgstr "Delad" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 #: ../../app/views/plans/_navigation.html.erb:28 msgid "Share" msgstr "Dela med sig" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:65 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:68 #: ../../app/views/paginable/templates/_organisational.html.erb:67 msgid "Copy" msgstr "kopia" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 #: ../../app/views/paginable/templates/_history.html.erb:58 msgid "View" msgstr "Se" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 +msgid "" +"Are you sure you wish to remove this plan? Any collaborators will still be abl" +"e to access it." +msgstr "" +"Är du säker på att du vill ta bort den här planen? Alla medarbetare kan fortfa" +"rande komma åt det." + +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" "Are you sure you wish to remove this public plan? This will remove it from the" " Public DMPs page but any collaborators will still be able to access it." @@ -4283,14 +4312,6 @@ msgstr "" " ta bort det från Public DMPs-sidan, men alla medarbetare kommer fortfarande a" "tt kunna komma åt den." -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 -msgid "" -"Are you sure you wish to remove this plan? Any collaborators will still be abl" -"e to access it." -msgstr "" -"Är du säker på att du vill ta bort den här planen? Alla medarbetare kan fortfa" -"rande komma åt det." - #: ../../app/views/paginable/plans/_publicly_visible.html.erb:17 msgid "Not Applicable" msgstr "Inte tillämpbar" @@ -4453,10 +4474,6 @@ msgstr "Skapat Datum" msgid "Last activity" msgstr "Sista aktiviteten" -#: ../../app/views/paginable/users/_index.html.erb:27 -msgid "Current Privileges" -msgstr "Aktuella privilegier" - #: ../../app/views/paginable/users/_index.html.erb:46 msgid "Edit Profile" msgstr "Redigera profil" @@ -4757,11 +4774,19 @@ msgstr "" msgid "Request expert feedback" msgstr "Begär expertrecensation" -#: ../../app/views/plans/_request_feedback_form.html.erb:11 +#: ../../app/views/plans/_request_feedback_form.html.erb:9 +msgid "" +"Click below to give data management staff at %{owner_org}, the Plan Owner's or" +"g, access to read and comment on your plan." +msgstr "" +"Klicka nedan för att ge datahanteringspersonal på %{owner_org}, planägarens or" +"ganisation, tillgång att läsa och kommentera din plan." + +#: ../../app/views/plans/_request_feedback_form.html.erb:17 msgid "You can continue to edit and download the plan in the interim." msgstr "Du kan fortsätta redigera och ladda ner planen i tiden." -#: ../../app/views/plans/_request_feedback_form.html.erb:17 +#: ../../app/views/plans/_request_feedback_form.html.erb:23 msgid "Feedback has been requested." msgstr "Feedback har begärts." @@ -4781,7 +4806,7 @@ msgstr "" msgid "Set plan visibility" msgstr "Ange planens synlighet" -#: ../../app/views/plans/_share_form.html.erb:9 +#: ../../app/views/plans/_share_form.html.erb:13 msgid "" "Public or organisational visibility is intended for finished plans. You must a" "nswer at least %{percentage}%% of the questions to enable these options. Note:" @@ -4791,7 +4816,7 @@ msgstr "" "e svara minst %{percentage} %% av frågorna för att aktivera dessa alternativ. " "Obs! Testplanerna är som standard inställda på privat sikt." -#: ../../app/views/plans/_share_form.html.erb:19 +#: ../../app/views/plans/_share_form.html.erb:21 msgid "" "Private: visible to me, specified collaborators and administrators at my organ" "isation" @@ -4799,20 +4824,20 @@ msgstr "" "Privat: Synlig för mig, angivna medarbetare och administratörer i min organisa" "tion" -#: ../../app/views/plans/_share_form.html.erb:27 +#: ../../app/views/plans/_share_form.html.erb:29 #: ../../app/views/user_mailer/plan_visibility.html.erb:12 msgid "Organisation: anyone at my organisation can view" msgstr "Organisation: Alla i min organisation kan visa" -#: ../../app/views/plans/_share_form.html.erb:35 +#: ../../app/views/plans/_share_form.html.erb:37 msgid "Public: anyone can view" msgstr "Offentlig: alla kan visa" -#: ../../app/views/plans/_share_form.html.erb:42 +#: ../../app/views/plans/_share_form.html.erb:44 msgid "Manage collaborators" msgstr "Hantera medarbetare" -#: ../../app/views/plans/_share_form.html.erb:43 +#: ../../app/views/plans/_share_form.html.erb:45 msgid "" "Invite specific people to read, edit, or administer your plan. Invitees will r" "eceive an email notification that they have access to this plan." @@ -4821,20 +4846,20 @@ msgstr "" "iterade kommer att få ett e-postmeddelande om att de har tillgång till denna p" "lan." -#: ../../app/views/plans/_share_form.html.erb:48 +#: ../../app/views/plans/_share_form.html.erb:50 msgid "Email address" msgstr "E-postadress" -#: ../../app/views/plans/_share_form.html.erb:49 -#: ../../app/views/plans/_share_form.html.erb:122 +#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:124 msgid "Permissions" msgstr "Behörigheter" -#: ../../app/views/plans/_share_form.html.erb:89 +#: ../../app/views/plans/_share_form.html.erb:91 msgid "Are you sure?" msgstr "Är du säker?" -#: ../../app/views/plans/_share_form.html.erb:100 +#: ../../app/views/plans/_share_form.html.erb:102 msgid "Invite collaborators" msgstr "Bjud in samarbetare" @@ -5039,6 +5064,10 @@ msgstr "" msgid "Please describe the output type" msgstr "Beskriv utgångstypen" +#: ../../app/views/research_outputs/_form.html.erb:27 +msgid "Research output type" +msgstr "Typ av forskningsresultat" + #: ../../app/views/research_outputs/_form.html.erb:44 msgid "Abbreviation" msgstr "Förkortning" @@ -5079,10 +5108,15 @@ msgid "Initial access level" msgstr "Initial åtkomstnivå" #: ../../app/views/research_outputs/_form.html.erb:158 +#: ../../app/views/research_outputs/_form.html.erb:164 #: ../../app/views/shared/export/_plan_outputs.erb:23 msgid "Anticipated file size" msgstr "Förväntad filstorlek" +#: ../../app/views/research_outputs/_form.html.erb:170 +msgid "File size units" +msgstr "Filstorleksenheter" + #: ../../app/views/research_outputs/edit.html.erb:12 msgid "Editing %{research_output_title}" msgstr "Redigering %{research_output_title}" @@ -5100,11 +5134,12 @@ msgstr "Vänligen ange dina förväntade forskningsresultat." msgid "Add a research output" msgstr "Lägg till ett forskningsresultat" -#: ../../app/views/research_outputs/licenses/_form.html.erb:24 +#: ../../app/views/research_outputs/licenses/_form.html.erb:20 +#: ../../app/views/research_outputs/licenses/_form.html.erb:25 msgid "Initial license" msgstr "Ursprunglig licens" -#: ../../app/views/research_outputs/licenses/_form.html.erb:30 +#: ../../app/views/research_outputs/licenses/_form.html.erb:31 msgid "For guidance on selecting a license:" msgstr "För vägledning om val av licens:" @@ -5132,10 +5167,18 @@ msgstr "Välj ett ämnesområde för att förfina din sökning." msgid "- Select a subject area -" msgstr "- Välj ett ämnesområde -" -#: ../../app/views/research_outputs/repositories/_search.html.erb:21 +#: ../../app/views/research_outputs/repositories/_search.html.erb:14 +msgid "Select a subject area" +msgstr "Välj ett ämnesområde" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:22 msgid "- Select a repository type -" msgstr "- Välj en förvarstyp -" +#: ../../app/views/research_outputs/repositories/_search.html.erb:24 +msgid "Select a repository type" +msgstr "Välj en förvarstyp" + #: ../../app/views/research_outputs/repositories/_search_result.html.erb:20 msgid "Click to view repositories related to %{subject}" msgstr "Klicka för att se arkiv relaterade till %{subject}" @@ -5454,14 +5497,14 @@ msgstr "Bli Medlem" msgid "on the homepage." msgstr "på hemsidan." -#: ../../app/views/static_pages/about_us.html.erb:35 -msgid "Please visit the" -msgstr "Vänligen besök" - #: ../../app/views/static_pages/about_us.html.erb:35 msgid "page for guidance." msgstr "sida för vägledning." +#: ../../app/views/static_pages/about_us.html.erb:35 +msgid "Please visit the" +msgstr "Vänligen besök" + #: ../../app/views/static_pages/about_us.html.erb:37 msgid "Customising for your Organisation" msgstr "Anpassa för din organisation" @@ -6143,6 +6186,14 @@ msgstr "Antal planer skapade baserat på dina mallar" msgid "Statistics on your Templates" msgstr "Statistik för dina mallar" +#: ../../app/views/usage/_total_usage.html.erb:7 +msgid "Total users" +msgstr "Totalt antal användare" + +#: ../../app/views/usage/_total_usage.html.erb:11 +msgid "Total plans" +msgstr "Totala planer" + #: ../../app/views/usage/_total_usage.html.erb:15 msgid "Excluding Test Plans" msgstr "Exklusive testplaner" @@ -6283,16 +6334,20 @@ msgstr "" msgid "Hello %{user_name}," msgstr "Hej %{user_name}," -#: ../../app/views/user_mailer/feedback_notification.html.erb:5 +#: ../../app/views/user_mailer/feedback_notification.html.erb:6 msgid "" "%{requestor} has requested feedback on a plan %{link_html}. To add comments, p" -"lease visit the 'Plans' page under the Admin menu in %{tool_name} and open the" +"lease visit the \"Plans\" page under the Admin menu in %{tool_name} and open the" " plan." msgstr "" "%{requestor} har begärt feedback på en plan %{link_html}. För att lägga till k" "ommentarer, besök sidan \"Planer\" under Admin-menyn i %{tool_name} och öppna pl" "anen." +#: ../../app/views/user_mailer/feedback_notification.html.erb:17 +msgid "Alternatively, you can click the link below:" +msgstr "Alternativt kan du klicka på länken nedan:" + #: ../../app/views/user_mailer/new_comment.html.erb:5 msgid "" "%{commenter_name} has commented on your plan %{plan_title}. To view the commen" @@ -6379,22 +6434,22 @@ msgstr "" msgid "Hello %{recipient_name}," msgstr "Hej %{recipient_name}," -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " is creating a Data Management Plan and has answered " -msgstr " skapar en datahanteringsplan och har svarat" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " to " msgstr " till" -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " in a plan called " -msgstr " i en plan som heter" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " based on the template " msgstr " baserat på mallen" +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " is creating a Data Management Plan and has answered " +msgstr " skapar en datahanteringsplan och har svarat" + +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " in a plan called " +msgstr " i en plan som heter" + #: ../../app/views/user_mailer/sharing_notification.html.erb:5 msgid "" "Your colleague %{inviter_name} has invited you to contribute to \n" @@ -6548,14 +6603,14 @@ msgstr "" msgid "Download users" msgstr "Hämta användare" -#: ../../app/views/users/refresh_token.js.erb:1 -msgid "Successfully regenerate your API token." -msgstr "Återskapa din API-token." - #: ../../app/views/users/refresh_token.js.erb:1 msgid "Unable to regenerate your API token." msgstr "Det gick inte att regenerera din API-token." +#: ../../app/views/users/refresh_token.js.erb:1 +msgid "Successfully regenerate your API token." +msgstr "Återskapa din API-token." + #: i18n_placeholders.rb:4 msgid "activerecord.errors.messages.record_invalid" msgstr "activerecord.errors.messages.record_invalid" diff --git a/config/locale/tr_TR/LC_MESSAGES/app.mo b/config/locale/tr_TR/LC_MESSAGES/app.mo index 2e417252260283aa4f32e7345140603f52bbd90d..4d25493f021304f70dff7ed3a7223afd2e5d856a 100644 GIT binary patch delta 23600 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 delta 23956 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%0AJc zA4hfKhbf=dROW0$eQ;MJKR;m}>5TTAuHpA|-e1x#`cZ-Q;$14eOyTXQ!%d;Mq+{E( z^0JY)f;=6y2&HYM0a{q(&!FsZqGxTH7g&li#qb;XI@a2AifF& z;Rfj&ws3@Pgg+W#PZkrq=o0@{VzB9Tnv8 zoFsD(88dBV6UjVB9={@WmJs*17pt(2HKapuhHYRE;+=?>Bh2QS`Gl>6PL#`Q%T&Pp zl$%6e565b66vX2v=lQD=5S&HX&tpm_cc-Pzw7Ny zl*ndBWj1A75q{>}D$48lto#2<=4P9rvW4sgC%i>?Pjc?HjSr=4Ue0&NvE-d5w6o_L zTSYp~&%?Fc>?>}ejyVKv_g`=d>Uiw2EiG?vs?2K?h$cTDg@Q=yN72T_%VQP7k7Fri zCR0|&B-~}|sz6=W?G1EpJ)yTE9Fqy-y)hooT;utZe*(F%JQuVegc0^p;CDg}TgfoY zM42S^2IVn3=il0j&fEM=w!F>u{s-FKYy*{-#&+^H<>C`hrTLHG;$;+SW(!7=u0}{k zq19Y8nEcWdK1I3-`CYLx;rNfcSnrVcGhr`b0C{e%;n!tOPp)tM|COC>@0CN}!ci3Z z?{S|Bo{^WFLV?7O<2?#=Bd((^={F|o{r4W}DwO|-$0)Ox+~4u2t#^UFPKBRSCaX;s z;Cv~q|6;b_8BYF0{1l-gVH)Qe;$XrX!Y^Eyi@ZE`81=u0*O8NR35ho*j3KV$6Q&}J zBDG-NaC*k$nk zJIlt4Q+_S+?3CB>g>+uxZD{BrlgEDxZ+nr0%2JRSLb|N&;X!*tHy3ZR@u9@OQKk&( zZ-nZE2ZV*>`EY$xQ?V0+ywL<5DKN2(Pv(48!cFpL{`eMFp$=4V%@$Hx$7a&Q2-CRW zGw#Bc=9F`o@+E8YMSLvfdJxZmev}Ka=Q9$2Onw2o&uSOH}K{##F&utbvc)Xcv|9px#3IFI+9Xe z#}4vZ6KdOhOo9V34a`2}n}DTzB`geS70GWF)Ye%dDaJ%$`5aH3{r>5Ajd(8{u~9`*Fk;^_#5D7c>rN)R>@|BbwQSd22KiO*pIy0m;~2SwyV9<25Ti;qI8>piW zWt(XJ6Om|u?WtfK@t&w-C?+N3=Yk8I*U^FSf%sp9xV9qYk0!)X#2#HZ*M)1>{ilph z^&}mQ0i1hH@Fe1&ZMO21w5~EI7m#;|@Z%`M`I;nF5(W`}Vb8^h2B>32}Gm-mP0`L{wy6caQMU;K)#S zpRmZVD0funPg~pC1Eack4{sY0+%0sl zJ2)c5-MvR>gtwgT8Q^d}wA<|G0j|{32ZhGlR=ZP+Bq=+DMn;CU4+{^A>hF$>3Z?)p z*tWcH`)rBa)gvQmw^KDNs&nu5+fppJKP*OYj~=t*`@3ou3Cvfph`T`1l7R*D1akP+ ztDCPusM^~-B3~t{Dd{d4Sg>He0;XK?l7WTt1Qy&i-rvn@QQp-lUov+?niD~_N4IDss`YNaD`R)pA2a_CGH94f diff --git a/config/locale/tr_TR/app.po b/config/locale/tr_TR/app.po index a4615f4392..940626566f 100644 --- a/config/locale/tr_TR/app.po +++ b/config/locale/tr_TR/app.po @@ -1,14 +1,14 @@ -# Turkish translations for app package. -# Copyright (C) 2022 app -# This file is distributed under the same license as the app package. +# Turkish translations for DMPRoadmap-Development package. +# Copyright (C) 2022 DMPRoadmap-Development +# This file is distributed under the same license as the DMPRoadmap-Development package. # FIRST AUTHOR , 2022. # msgid "" msgstr "" -"Project-Id-Version: app 1.0\n" +"Project-Id-Version: DMPRoadmap-Development 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2022-10-25 16:02+0000\n" -"PO-Revision-Date: 2022-10-25 18:03+0200\n" +"POT-Creation-Date: 2022-11-30 14:11-0500\n" +"PO-Revision-Date: 2022-11-30 20:11+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -261,7 +261,7 @@ msgstr "eklendi" #: ../../app/controllers/contributors_controller.rb:72 #: ../../app/controllers/guidance_groups_controller.rb:55 #: ../../app/controllers/guidances_controller.rb:75 -#: ../../app/controllers/notes_controller.rb:89 +#: ../../app/controllers/notes_controller.rb:88 #: ../../app/controllers/org_admin/departments_controller.rb:50 #: ../../app/controllers/org_admin/sections_controller.rb:103 #: ../../app/controllers/org_admin/templates_controller.rb:205 @@ -281,7 +281,7 @@ msgstr "kaydedildi" #: ../../app/controllers/contributors_controller.rb:74 #: ../../app/controllers/guidance_groups_controller.rb:57 #: ../../app/controllers/guidances_controller.rb:77 -#: ../../app/controllers/notes_controller.rb:107 +#: ../../app/controllers/notes_controller.rb:106 #: ../../app/controllers/org_admin/departments_controller.rb:52 #: ../../app/controllers/org_admin/sections_controller.rb:105 #: ../../app/controllers/org_admin/templates_controller.rb:210 @@ -297,7 +297,7 @@ msgid "save" msgstr "kaydet" #: ../../app/controllers/contributors_controller.rb:84 -#: ../../app/controllers/notes_controller.rb:131 +#: ../../app/controllers/notes_controller.rb:130 #: ../../app/controllers/org_admin/templates_controller.rb:238 #: ../../app/controllers/research_outputs_controller.rb:74 #: ../../app/controllers/super_admin/orgs_controller.rb:94 @@ -305,7 +305,7 @@ msgid "removed" msgstr "kaldırıldı" #: ../../app/controllers/contributors_controller.rb:87 -#: ../../app/controllers/notes_controller.rb:149 +#: ../../app/controllers/notes_controller.rb:148 #: ../../app/controllers/org_admin/templates_controller.rb:240 #: ../../app/controllers/research_outputs_controller.rb:77 #: ../../app/controllers/super_admin/orgs_controller.rb:97 @@ -331,7 +331,7 @@ msgstr "Bu plan için geri bildirim istenirken bir hata oluştu." #: ../../app/controllers/guidance_groups_controller.rb:31 #: ../../app/controllers/guidances_controller.rb:53 -#: ../../app/controllers/notes_controller.rb:48 +#: ../../app/controllers/notes_controller.rb:47 #: ../../app/controllers/org_admin/departments_controller.rb:26 #: ../../app/controllers/org_admin/phases_controller.rb:121 #: ../../app/controllers/org_admin/questions_controller.rb:94 @@ -347,7 +347,7 @@ msgstr "oluşturuldu" #: ../../app/controllers/guidance_groups_controller.rb:34 #: ../../app/controllers/guidances_controller.rb:55 -#: ../../app/controllers/notes_controller.rb:67 +#: ../../app/controllers/notes_controller.rb:66 #: ../../app/controllers/org_admin/departments_controller.rb:30 #: ../../app/controllers/org_admin/phases_controller.rb:123 #: ../../app/controllers/org_admin/questions_controller.rb:96 @@ -1116,17 +1116,17 @@ msgid "Owner" msgstr "Sahip" #: ../../app/helpers/plans_helper.rb:10 -#: ../../app/views/plans/_share_form.html.erb:127 +#: ../../app/views/plans/_share_form.html.erb:129 msgid "Co-owner" msgstr "Ortak sahip" #: ../../app/helpers/plans_helper.rb:12 -#: ../../app/views/plans/_share_form.html.erb:133 +#: ../../app/views/plans/_share_form.html.erb:135 msgid "Editor" msgstr "Editör" #: ../../app/helpers/plans_helper.rb:14 -#: ../../app/views/plans/_share_form.html.erb:139 +#: ../../app/views/plans/_share_form.html.erb:141 msgid "Read only" msgstr "Salt Okunur" @@ -1135,7 +1135,7 @@ msgid "Public" msgstr "Herkese Açık" #: ../../app/helpers/plans_helper.rb:26 ../../app/helpers/plans_helper.rb:28 -#: ../../app/views/layouts/application.html.erb:129 +#: ../../app/views/layouts/application.html.erb:128 msgid "Private" msgstr "Özel" @@ -1148,7 +1148,7 @@ msgid "Public: anyone can view." msgstr "Herkese açık: herkes görüntüleyebilir." #: ../../app/helpers/plans_helper.rb:39 -#: ../../app/views/layouts/application.html.erb:130 +#: ../../app/views/layouts/application.html.erb:129 msgid "Private: restricted to me and people I invite." msgstr "Özel: benimle ve davet ettiğim kişilerle sınırlı." @@ -1375,62 +1375,61 @@ msgid "Affiliation: " msgstr "Bağlı olunan kurum/kuruluş:" #: ../../app/models/concerns/exportable_plan.rb:163 -#: ../../app/models/concerns/exportable_plan.rb:164 msgid "%{affiliation}" msgstr "Bağlı olunan kurum/kuruluş:" -#: ../../app/models/concerns/exportable_plan.rb:166 -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:165 +#: ../../app/models/concerns/exportable_plan.rb:167 #: ../../app/views/shared/export/_plan_coversheet.erb:32 #: ../../app/views/shared/export/_plan_txt.erb:22 #: ../../app/views/shared/export/_plan_txt.erb:24 msgid "Template: " msgstr "Şablon:" -#: ../../app/models/concerns/exportable_plan.rb:166 +#: ../../app/models/concerns/exportable_plan.rb:165 msgid "%{funder}" msgstr "%{funder}" -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:167 msgid "%{template}" msgstr "%{template}" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 #: ../../app/views/shared/export/_plan_txt.erb:27 msgid "Grant number: " msgstr "Fon/hibe numarası:" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 msgid "%{grant_number}" msgstr "%{grant_number}" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 #: ../../app/views/shared/export/_plan_coversheet.erb:42 #: ../../app/views/shared/export/_plan_txt.erb:30 msgid "Project abstract: " msgstr "Proje özeti:" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 msgid "%{description}" msgstr "%{description}" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 #: ../../app/views/shared/export/_plan_coversheet.erb:58 #: ../../app/views/shared/export/_plan_txt.erb:33 msgid "Last modified: " msgstr "Son düzenleme:" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 msgid "%{date}" msgstr "%{date}" -#: ../../app/models/concerns/exportable_plan.rb:175 +#: ../../app/models/concerns/exportable_plan.rb:174 #: ../../app/views/shared/export/_plan_coversheet.erb:65 #: ../../app/views/shared/export/_plan_txt.erb:34 msgid "Copyright information:" msgstr "Telif hakkı bilgileri:" -#: ../../app/models/concerns/exportable_plan.rb:176 +#: ../../app/models/concerns/exportable_plan.rb:175 msgid "" "The above plan creator(s) have agreed that others may use as\n" " much of the text of this plan as they would like in their own pla" @@ -1450,12 +1449,12 @@ msgstr "" "anız, planı oluşturan(lar)ın sizin projenizi veya önerinizi onayladığı veya bu" "nlarla herhangi bir ilişkisi olduğu anlamına gelmez" -#: ../../app/models/concerns/exportable_plan.rb:199 +#: ../../app/models/concerns/exportable_plan.rb:198 msgid "Not Answered" msgstr "Cevaplanmadı" #: ../../app/models/concerns/validation_messages.rb:11 -#: ../../app/models/template.rb:226 +#: ../../app/models/template.rb:223 msgid "can't be blank" msgstr "boş bırakılamaz" @@ -1545,7 +1544,7 @@ msgstr "test" msgid "private" msgstr "özel" -#: ../../app/models/plan.rb:617 +#: ../../app/models/plan.rb:615 msgid "must be after the start date" msgstr "başlangıç tarihinden sonra olmalıdır" @@ -1589,51 +1588,51 @@ msgstr "Bilinmeyen biçimlendirme ayarı" msgid "Invalid maximum pages" msgstr "Geçersiz maksimum sayfa sayısı" -#: ../../app/models/template.rb:254 +#: ../../app/models/template.rb:251 msgid "A historical template cannot be retrieved for being modified" msgstr "Tarihsel bir şablon değiştirilmek üzere çekilemiyor" -#: ../../app/models/template.rb:378 +#: ../../app/models/template.rb:375 msgid "generate_copy! requires an organisation target" msgstr "generate_copy! bir kuruluş hedefi gerektirir" -#: ../../app/models/template.rb:387 +#: ../../app/models/template.rb:384 msgid "Copy of %{template}" msgstr "%{template} şablonunun kopyası" -#: ../../app/models/template.rb:394 +#: ../../app/models/template.rb:391 msgid "generate_version! requires a published template" msgstr "generate_version! yayınlanmış bir şablon gerektirir" -#: ../../app/models/template.rb:408 +#: ../../app/models/template.rb:405 msgid "customize! requires an organisation target" msgstr "customize! bir kuruluş hedefi gerektirir" -#: ../../app/models/template.rb:411 +#: ../../app/models/template.rb:408 msgid "customize! requires a template from a funder" msgstr "customize! bir fon sağlayıcıdan bir şablon gerektirir" -#: ../../app/models/template.rb:447 +#: ../../app/models/template.rb:444 msgid "You can not publish a published template. " msgstr "Yayınlanmış bir şablonu yayınlayamazsınız." -#: ../../app/models/template.rb:451 +#: ../../app/models/template.rb:448 msgid "You can not publish a historical version of this template. " msgstr "Bu şablonun geçmiş bir sürümünü yayınlayamazsınız." -#: ../../app/models/template.rb:456 +#: ../../app/models/template.rb:453 msgid "You can not publish a template without phases. " msgstr "Aşamaları olmayan bir şablonu yayınlayamazsınız." -#: ../../app/models/template.rb:461 +#: ../../app/models/template.rb:458 msgid "You can not publish a template without sections in a phase. " msgstr "Bir aşamasında bölüm yer almayan bir şablonu yayınlayamazsınız." -#: ../../app/models/template.rb:466 +#: ../../app/models/template.rb:463 msgid "You can not publish a template without questions in a section. " msgstr "Bir bölümünde soru bulunmayan bir şablonu yayınlayamazsınız." -#: ../../app/models/template.rb:470 +#: ../../app/models/template.rb:467 msgid "Conditions in the template refer backwards" msgstr "Şablondaki koşullar geriye dönük" @@ -1641,6 +1640,58 @@ msgstr "Şablondaki koşullar geriye dönük" msgid "A Data Management Plan in %{application_name} has been shared with you" msgstr "%{application_name} içinde bir Veri Yönetim Planı sizinle paylaşıldı" +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 +#: ../../app/views/contributors/_form.html.erb:10 +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:8 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 +#: ../../app/views/org_admin/departments/edit.html.erb:14 +#: ../../app/views/org_admin/departments/new.html.erb:14 +#: ../../app/views/paginable/api_clients/_index.html.erb:6 +#: ../../app/views/paginable/contributors/_index.html.erb:7 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 +#: ../../app/views/paginable/themes/_index.html.erb:4 +#: ../../app/views/paginable/users/_index.html.erb:20 +#: ../../app/views/super_admin/api_clients/_form.html.erb:11 +msgid "Name" +msgstr "İsim" + +#: ../../app/models/user/at_csv.rb:7 +msgid "E-Mail" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Created Date" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Last Activity" +msgstr "" + +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/layouts/_branding.html.erb:71 +#: ../../app/views/org_admin/users/edit.html.erb:71 +#: ../../app/views/paginable/users/_index.html.erb:26 +#: ../../app/views/super_admin/users/edit.html.erb:105 +msgid "Plans" +msgstr "Planlar" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/users/_index.html.erb:27 +msgid "Current Privileges" +msgstr "Mevcut Ayrıcalıklar" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/notifications/_index.html.erb:8 +#: ../../app/views/paginable/users/_index.html.erb:28 +#: ../../app/views/super_admin/notifications/_form.html.erb:34 +msgid "Active" +msgstr "Aktif" + +#: ../../app/models/user/at_csv.rb:8 +msgid "Department" +msgstr "" + #: ../../app/policies/api/v0/guidance_group_policy.rb:11 #: ../../app/policies/api/v0/guidance_policy.rb:11 #: ../../app/policies/api/v0/statistics_policy.rb:11 @@ -1848,7 +1899,7 @@ msgid "Please wait, Standards are loading" msgstr "Lütfen bekleyin, Standartlar yükleniyor" #: ../../app/views/answers/_new_edit.html.erb:68 -#: ../../app/views/contributors/_form.html.erb:94 +#: ../../app/views/contributors/_form.html.erb:95 #: ../../app/views/devise/passwords/edit.html.erb:35 #: ../../app/views/devise/registrations/_password_details.html.erb:31 #: ../../app/views/devise/registrations/_personal_details.html.erb:90 @@ -1869,7 +1920,7 @@ msgstr "Lütfen bekleyin, Standartlar yükleniyor" #: ../../app/views/plans/_edit_details.html.erb:11 #: ../../app/views/plans/_guidance_selection.html.erb:23 #: ../../app/views/questions/_preview_question.html.erb:111 -#: ../../app/views/research_outputs/_form.html.erb:177 +#: ../../app/views/research_outputs/_form.html.erb:178 #: ../../app/views/super_admin/api_clients/_form.html.erb:67 #: ../../app/views/super_admin/notifications/_form.html.erb:66 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -1910,20 +1961,6 @@ msgstr " planınızdan sorular." msgid "This answer triggers email(s) to " msgstr "Bu yanıt, e-postaları şu adreslere gitmesine neden olur:" -#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 -#: ../../app/views/contributors/_form.html.erb:10 -#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 -#: ../../app/views/org_admin/departments/edit.html.erb:14 -#: ../../app/views/org_admin/departments/new.html.erb:14 -#: ../../app/views/paginable/api_clients/_index.html.erb:6 -#: ../../app/views/paginable/contributors/_index.html.erb:7 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 -#: ../../app/views/paginable/themes/_index.html.erb:4 -#: ../../app/views/paginable/users/_index.html.erb:20 -#: ../../app/views/super_admin/api_clients/_form.html.erb:11 -msgid "Name" -msgstr "İsim" - #: ../../app/views/contact_us/contacts/_new_left.html.erb:13 #: ../../app/views/contact_us/contacts/_new_right.html.erb:23 #: ../../app/views/contributors/_form.html.erb:19 @@ -1933,7 +1970,7 @@ msgstr "İsim" #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/contributors/_index.html.erb:11 #: ../../app/views/paginable/users/_index.html.erb:21 -#: ../../app/views/plans/_share_form.html.erb:107 +#: ../../app/views/plans/_share_form.html.erb:109 #: ../../app/views/shared/_create_account_form.html.erb:12 #: ../../app/views/shared/_sign_in_form.html.erb:3 #: ../../app/views/super_admin/users/edit.html.erb:15 @@ -1959,7 +1996,7 @@ msgid "Security check" msgstr "Güvenlik kontrolü" #: ../../app/views/contact_us/contacts/_new_left.html.erb:43 -#: ../../app/views/plans/_share_form.html.erb:146 +#: ../../app/views/plans/_share_form.html.erb:148 msgid "Submit" msgstr "Gönder" @@ -1990,8 +2027,8 @@ msgstr "" #: ../../app/views/contact_us/contacts/new.html.erb:10 #: ../../app/views/layouts/_branding.html.erb:41 -#: ../../app/views/layouts/_footer.html.erb:24 -#: ../../app/views/layouts/_footer.html.erb:30 +#: ../../app/views/layouts/_footer.html.erb:23 +#: ../../app/views/layouts/_footer.html.erb:29 #: ../../app/views/org_admin/plans/index.html.erb:40 #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:39 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:24 @@ -2034,7 +2071,7 @@ msgstr "Bağlı olunan kurum/kuruluş" msgid "Roles" msgstr "Roller" -#: ../../app/views/contributors/_form.html.erb:96 +#: ../../app/views/contributors/_form.html.erb:97 #: ../../app/views/layouts/modal_search/_result.html.erb:23 #: ../../app/views/notes/_archive.html.erb:10 #: ../../app/views/notes/_list.html.erb:16 @@ -2048,16 +2085,16 @@ msgstr "Roller" #: ../../app/views/paginable/guidance_groups/_index.html.erb:56 #: ../../app/views/paginable/guidances/_index.html.erb:61 #: ../../app/views/paginable/orgs/_index.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:75 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:78 #: ../../app/views/paginable/research_outputs/_index.html.erb:53 #: ../../app/views/paginable/templates/_customisable.html.erb:67 #: ../../app/views/paginable/templates/_organisational.html.erb:74 -#: ../../app/views/plans/_share_form.html.erb:89 -#: ../../app/views/research_outputs/_form.html.erb:179 +#: ../../app/views/plans/_share_form.html.erb:91 +#: ../../app/views/research_outputs/_form.html.erb:180 msgid "Remove" msgstr "Kaldır" -#: ../../app/views/contributors/_form.html.erb:99 +#: ../../app/views/contributors/_form.html.erb:100 #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:29 #: ../../app/views/guidances/new_edit.html.erb:50 #: ../../app/views/notes/_archive.html.erb:11 @@ -2068,7 +2105,7 @@ msgstr "Kaldır" #: ../../app/views/org_admin/questions/_form.html.erb:105 #: ../../app/views/plans/_guidance_selection.html.erb:35 #: ../../app/views/plans/new.html.erb:124 -#: ../../app/views/research_outputs/_form.html.erb:182 +#: ../../app/views/research_outputs/_form.html.erb:183 #: ../../app/views/super_admin/api_clients/_form.html.erb:86 #: ../../app/views/super_admin/notifications/_form.html.erb:73 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -2264,16 +2301,16 @@ msgstr "" msgid "Hello" msgstr "Merhaba" -#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 -msgid "Your" -msgstr "Sizin" - #: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 msgid "" "account has been locked due to an excessive number of unsuccessful sign in att" "empts." msgstr "çok sayıda başarısız oturum açma girişimi nedeniyle hesap kilitlendi." +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 +msgid "Your" +msgstr "Sizin" + #: ../../app/views/devise/mailer/unlock_instructions.html.erb:6 msgid "Click the link below to unlock your account" msgstr "Hesabınızın kilidini kaldırmak için aşağıdaki bağlantıya tıklayın" @@ -2523,7 +2560,6 @@ msgid "Do you have a %{application_name} account?" msgstr "%{application_name} hesabınız var mı?" #: ../../app/views/devise/registrations/new.html.erb:22 -#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 @@ -2581,6 +2617,27 @@ msgstr "" "urma' sihirbazındaki soruları yanıtlarken bu alt küme kılavuzunu görüntülemeyi" " seçebileceklerdir." +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:15 +#: ../../app/views/org_admin/templates/_form.html.erb:35 +#: ../../app/views/org_admin/templates/_row.html.erb:10 +#: ../../app/views/org_admin/templates/_row.html.erb:13 +#: ../../app/views/org_admin/templates/_show.html.erb:19 +#: ../../app/views/org_admin/templates/_show.html.erb:22 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 +#: ../../app/views/paginable/guidances/_index.html.erb:37 +#: ../../app/views/paginable/templates/_customisable.html.erb:31 +#: ../../app/views/paginable/templates/_customisable.html.erb:34 +#: ../../app/views/paginable/templates/_history.html.erb:8 +#: ../../app/views/paginable/templates/_organisational.html.erb:36 +#: ../../app/views/paginable/templates/_organisational.html.erb:39 +msgid "Published" +msgstr "Yayınlandı" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 +msgid "Optional subset" +msgstr "İsteğe bağlı alt küme" + #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 msgid " (e.g. School/ Department) " msgstr " (ör. Üniversite/Bölüm)" @@ -2749,13 +2806,6 @@ msgstr "Önceki" msgid "Admin" msgstr "Yönetici" -#: ../../app/views/layouts/_branding.html.erb:71 -#: ../../app/views/org_admin/users/edit.html.erb:71 -#: ../../app/views/paginable/users/_index.html.erb:26 -#: ../../app/views/super_admin/users/edit.html.erb:105 -msgid "Plans" -msgstr "Planlar" - #: ../../app/views/layouts/_branding.html.erb:77 #: ../../app/views/org_admin/templates/index.html.erb:4 #: ../../app/views/paginable/orgs/_index.html.erb:8 @@ -2823,11 +2873,7 @@ msgid "Privacy statement" msgstr "Gizlilik bildirimi" #: ../../app/views/layouts/_footer.html.erb:17 -msgid "Accessibility statement" -msgstr "Erişilebilirlik beyanı" - -#: ../../app/views/layouts/_footer.html.erb:18 -msgid "Github" +msgid "GitHub" msgstr "GitHub" #: ../../app/views/layouts/_navigation.html.erb:12 @@ -2908,50 +2954,50 @@ msgstr "Çıkış Yap" msgid "%{application_name}" msgstr "%{application_name}" -#: ../../app/views/layouts/application.html.erb:91 -msgid "Error:" -msgstr "Hata:" - #: ../../app/views/layouts/application.html.erb:91 msgid "Notice:" msgstr "Bildiri:" +#: ../../app/views/layouts/application.html.erb:91 +msgid "Error:" +msgstr "Hata:" + #: ../../app/views/layouts/application.html.erb:102 msgid "Loading..." msgstr "Yükleniyor..." -#: ../../app/views/layouts/application.html.erb:122 +#: ../../app/views/layouts/application.html.erb:121 #: ../../app/views/plans/new.html.erb:2 msgid "This field is required." msgstr "Bu alan zorunludur." -#: ../../app/views/layouts/application.html.erb:124 +#: ../../app/views/layouts/application.html.erb:123 #: ../../app/views/shared/_create_account_form.html.erb:31 msgid "Show password" msgstr "Şifreyi göster" -#: ../../app/views/layouts/application.html.erb:125 +#: ../../app/views/layouts/application.html.erb:124 msgid "Select an organisation from the list." msgstr "Listeden bir kuruluş seçin." -#: ../../app/views/layouts/application.html.erb:126 +#: ../../app/views/layouts/application.html.erb:125 msgid "My organisation isn't listed" msgstr "Kuruluşum listelenmedi" -#: ../../app/views/layouts/application.html.erb:128 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:39 +#: ../../app/views/layouts/application.html.erb:127 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:42 msgid "N/A" msgstr "Erişilebilir değil" -#: ../../app/views/layouts/application.html.erb:132 +#: ../../app/views/layouts/application.html.erb:131 msgid "Hide list." msgstr "Listeyi gizle." -#: ../../app/views/layouts/application.html.erb:133 +#: ../../app/views/layouts/application.html.erb:132 msgid "See the full list of partner institutions." msgstr "Ortak kurumların tam listesine bakın." -#: ../../app/views/layouts/application.html.erb:135 +#: ../../app/views/layouts/application.html.erb:134 msgid "" "Unable to find a suitable template for the research organisation and funder yo" "u selected." @@ -2959,27 +3005,27 @@ msgstr "" "Seçtiğiniz araştırma kuruluşu ve fon sağlayıcı için uygun bir şablon bulunamad" "ı." -#: ../../app/views/layouts/application.html.erb:136 +#: ../../app/views/layouts/application.html.erb:135 msgid "Please select a research organisation and funder to continue." msgstr "Devam etmek için lütfen bir araştırma kuruluşu ve fon sağlayıcı seçin." -#: ../../app/views/layouts/application.html.erb:138 +#: ../../app/views/layouts/application.html.erb:137 msgid "Loading ..." msgstr "Yükleniyor ..." -#: ../../app/views/layouts/application.html.erb:139 +#: ../../app/views/layouts/application.html.erb:138 msgid "Unable to load the section's content at this time." msgstr "Bölümün içeriği şu anda yüklenemiyor" -#: ../../app/views/layouts/application.html.erb:140 +#: ../../app/views/layouts/application.html.erb:139 msgid "Unable to load the question's content at this time." msgstr "Sorunun içeriği şu anda yüklenemiyor." -#: ../../app/views/layouts/application.html.erb:141 +#: ../../app/views/layouts/application.html.erb:140 msgid "Opens in a new window" msgstr "Yeni bir pencerede açılır" -#: ../../app/views/layouts/application.html.erb:143 +#: ../../app/views/layouts/application.html.erb:142 msgid "" "%{n} results are available, use up and down arrows to navigate suggestions. Us" "e the Enter key to select a suggestion or the Escape key to close the suggesti" @@ -2989,11 +3035,11 @@ msgstr "" " Bir öneri seçmek için Enter tuşunu veya önerileri kapatmak için Çıkış tuşunu " "kullanın." -#: ../../app/views/layouts/application.html.erb:144 +#: ../../app/views/layouts/application.html.erb:143 msgid "No results are available for your entry." msgstr "Girişiniz için sonuç bulunamadı." -#: ../../app/views/layouts/application.html.erb:145 +#: ../../app/views/layouts/application.html.erb:144 msgid "Searching ..." msgstr "Aranıyor ..." @@ -3007,7 +3053,7 @@ msgid "No results matched your filter criteria." msgstr "" #: ../../app/views/layouts/modal_search/_form.html.erb:41 -#: ../../app/views/layouts/modal_search/_form.html.erb:83 +#: ../../app/views/layouts/modal_search/_form.html.erb:84 msgid "Close" msgstr "" @@ -3015,7 +3061,7 @@ msgstr "" msgid "%{topic} search" msgstr "" -#: ../../app/views/layouts/modal_search/_form.html.erb:66 +#: ../../app/views/layouts/modal_search/_form.html.erb:67 msgid "Apply filter(s)" msgstr "" @@ -3051,7 +3097,7 @@ msgstr "Yorum ekle" #: ../../app/views/paginable/guidance_groups/_index.html.erb:49 #: ../../app/views/paginable/guidances/_index.html.erb:54 #: ../../app/views/paginable/orgs/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:58 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 #: ../../app/views/paginable/research_outputs/_index.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:56 #: ../../app/views/paginable/templates/_organisational.html.erb:56 @@ -3326,13 +3372,13 @@ msgstr "Tür" #: ../../app/views/paginable/orgs/_index.html.erb:10 #: ../../app/views/paginable/orgs/_index.html.erb:30 #: ../../app/views/paginable/plans/_privately_visible.html.erb:13 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:53 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:56 #: ../../app/views/paginable/research_outputs/_index.html.erb:23 #: ../../app/views/paginable/research_outputs/_index.html.erb:48 #: ../../app/views/paginable/templates/_customisable.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:10 #: ../../app/views/paginable/templates/_organisational.html.erb:53 -#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:53 msgid "Actions" msgstr "Eylemler" @@ -3602,21 +3648,6 @@ msgstr "yalnızca dahili %{org_name} kullanımı için" msgid "Status" msgstr "Durum" -#: ../../app/views/org_admin/templates/_form.html.erb:35 -#: ../../app/views/org_admin/templates/_row.html.erb:10 -#: ../../app/views/org_admin/templates/_row.html.erb:13 -#: ../../app/views/org_admin/templates/_show.html.erb:19 -#: ../../app/views/org_admin/templates/_show.html.erb:22 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 -#: ../../app/views/paginable/guidances/_index.html.erb:37 -#: ../../app/views/paginable/templates/_customisable.html.erb:31 -#: ../../app/views/paginable/templates/_customisable.html.erb:34 -#: ../../app/views/paginable/templates/_history.html.erb:8 -#: ../../app/views/paginable/templates/_organisational.html.erb:36 -#: ../../app/views/paginable/templates/_organisational.html.erb:39 -msgid "Published" -msgstr "Yayınlandı" - #: ../../app/views/org_admin/templates/_form.html.erb:37 #: ../../app/views/org_admin/templates/_row.html.erb:16 #: ../../app/views/org_admin/templates/_show.html.erb:26 @@ -3981,7 +4012,7 @@ msgstr "Profil bilgisi" #: ../../app/views/orgs/admin_edit.html.erb:22 #: ../../app/views/plans/_navigation.html.erb:33 -#: ../../app/views/plans/_request_feedback_form.html.erb:13 +#: ../../app/views/plans/_request_feedback_form.html.erb:19 #: ../../app/views/static_pages/help.html.erb:45 msgid "Request feedback" msgstr "Geri bildirim iste" @@ -4074,13 +4105,9 @@ msgstr "" "'%{department_name}' öğesini silmek üzeresiniz. Bu işem rehberliği etkileyecek" "tir. Emin misiniz?" -#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 -msgid "Optional subset" -msgstr "İsteğe bağlı alt küme" - #: ../../app/views/paginable/guidance_groups/_index.html.erb:31 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:45 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:48 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:12 @@ -4088,8 +4115,8 @@ msgid "No" msgstr "Yok" #: ../../app/views/paginable/guidance_groups/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:43 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:46 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:11 @@ -4137,12 +4164,6 @@ msgstr "Başla" msgid "Expiration" msgstr "Bitiş Zamanı" -#: ../../app/views/paginable/notifications/_index.html.erb:8 -#: ../../app/views/paginable/users/_index.html.erb:28 -#: ../../app/views/super_admin/notifications/_form.html.erb:34 -msgid "Active" -msgstr "Aktif" - #: ../../app/views/paginable/orgs/_index.html.erb:6 msgid "Administrator Email" msgstr "Yönetici E-postası" @@ -4207,8 +4228,8 @@ msgstr "Oluşturuldu" #: #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:21 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:73 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:9 #: ../../app/views/paginable/templates/_history.html.erb:6 #: ../../app/views/paginable/templates/_organisational.html.erb:2 @@ -4256,22 +4277,30 @@ msgstr "Rol" msgid "Shared" msgstr "Paylaşılan" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 #: ../../app/views/plans/_navigation.html.erb:28 msgid "Share" msgstr "Paylaş" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:65 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:68 #: ../../app/views/paginable/templates/_organisational.html.erb:67 msgid "Copy" msgstr "Kopyala" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 #: ../../app/views/paginable/templates/_history.html.erb:58 msgid "View" msgstr "Görüntüle" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 +msgid "" +"Are you sure you wish to remove this plan? Any collaborators will still be abl" +"e to access it." +msgstr "" +"Bu planı kaldırmak istediğinizden emin misiniz? Tüm ortak çalışanlar plana eri" +"şmeye devam edebilir." + +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" "Are you sure you wish to remove this public plan? This will remove it from the" " Public DMPs page but any collaborators will still be able to access it." @@ -4280,14 +4309,6 @@ msgstr "" "erkese Açık VYP'ler sayfasından kaldıracak, ancak tüm ortak çalışanlar buna er" "işmeye devam edebilecektir." -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 -msgid "" -"Are you sure you wish to remove this plan? Any collaborators will still be abl" -"e to access it." -msgstr "" -"Bu planı kaldırmak istediğinizden emin misiniz? Tüm ortak çalışanlar plana eri" -"şmeye devam edebilir." - #: ../../app/views/paginable/plans/_publicly_visible.html.erb:17 msgid "Not Applicable" msgstr "Uygulanamaz" @@ -4449,10 +4470,6 @@ msgstr "Oluşturulma tarihi" msgid "Last activity" msgstr "Son aktivite" -#: ../../app/views/paginable/users/_index.html.erb:27 -msgid "Current Privileges" -msgstr "Mevcut Ayrıcalıklar" - #: ../../app/views/paginable/users/_index.html.erb:46 msgid "Edit Profile" msgstr "Profili Düzenle" @@ -4751,11 +4768,17 @@ msgstr "" msgid "Request expert feedback" msgstr "Uzman geri bildirimi isteyin" -#: ../../app/views/plans/_request_feedback_form.html.erb:11 +#: ../../app/views/plans/_request_feedback_form.html.erb:9 +msgid "" +"Click below to give data management staff at %{owner_org}, the Plan Owner's or" +"g, access to read and comment on your plan." +msgstr "" + +#: ../../app/views/plans/_request_feedback_form.html.erb:17 msgid "You can continue to edit and download the plan in the interim." msgstr "Bu arada planı düzenlemeye ve indirmeye devam edebilirsiniz." -#: ../../app/views/plans/_request_feedback_form.html.erb:17 +#: ../../app/views/plans/_request_feedback_form.html.erb:23 msgid "Feedback has been requested." msgstr "Geri bildirim istendi." @@ -4776,7 +4799,7 @@ msgstr "" msgid "Set plan visibility" msgstr "Plan görünürlüğünü ayarla" -#: ../../app/views/plans/_share_form.html.erb:9 +#: ../../app/views/plans/_share_form.html.erb:13 msgid "" "Public or organisational visibility is intended for finished plans. You must a" "nswer at least %{percentage}%% of the questions to enable these options. Note:" @@ -4787,7 +4810,7 @@ msgstr "" "malısınız. Not: Test amaçlı planlar, varsayılan olarak özel görünürlüğe ayarla" "nmıştır." -#: ../../app/views/plans/_share_form.html.erb:19 +#: ../../app/views/plans/_share_form.html.erb:21 msgid "" "Private: visible to me, specified collaborators and administrators at my organ" "isation" @@ -4795,20 +4818,20 @@ msgstr "" "Özel: ben, kuruluşumda belirtilen ortak çalışanlar ve yöneticiler tarafından g" "örüntülenebilir" -#: ../../app/views/plans/_share_form.html.erb:27 +#: ../../app/views/plans/_share_form.html.erb:29 #: ../../app/views/user_mailer/plan_visibility.html.erb:12 msgid "Organisation: anyone at my organisation can view" msgstr "Kuruluş: kuruluşumdaki herkes görüntüleyebilir" -#: ../../app/views/plans/_share_form.html.erb:35 +#: ../../app/views/plans/_share_form.html.erb:37 msgid "Public: anyone can view" msgstr "Herkese açık: herkes görüntüleyebilir" -#: ../../app/views/plans/_share_form.html.erb:42 +#: ../../app/views/plans/_share_form.html.erb:44 msgid "Manage collaborators" msgstr "Ortak çalışanları yönetin" -#: ../../app/views/plans/_share_form.html.erb:43 +#: ../../app/views/plans/_share_form.html.erb:45 msgid "" "Invite specific people to read, edit, or administer your plan. Invitees will r" "eceive an email notification that they have access to this plan." @@ -4816,20 +4839,20 @@ msgstr "" "Belirli kişileri planınızı okumaya, düzenlemeye veya yönetmeye davet edin. Dav" "etliler, bu plana erişimleri olduğuna dair bir e-posta bildirimi alacaklar." -#: ../../app/views/plans/_share_form.html.erb:48 +#: ../../app/views/plans/_share_form.html.erb:50 msgid "Email address" msgstr "E-posta Adresi" -#: ../../app/views/plans/_share_form.html.erb:49 -#: ../../app/views/plans/_share_form.html.erb:122 +#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:124 msgid "Permissions" msgstr "İzinler" -#: ../../app/views/plans/_share_form.html.erb:89 +#: ../../app/views/plans/_share_form.html.erb:91 msgid "Are you sure?" msgstr "Emin misiniz?" -#: ../../app/views/plans/_share_form.html.erb:100 +#: ../../app/views/plans/_share_form.html.erb:102 msgid "Invite collaborators" msgstr "Ortak çalışanları davet edin" @@ -5025,6 +5048,10 @@ msgstr "" msgid "Please describe the output type" msgstr "" +#: ../../app/views/research_outputs/_form.html.erb:27 +msgid "Research output type" +msgstr "" + #: ../../app/views/research_outputs/_form.html.erb:44 msgid "Abbreviation" msgstr "" @@ -5065,10 +5092,15 @@ msgid "Initial access level" msgstr "" #: ../../app/views/research_outputs/_form.html.erb:158 +#: ../../app/views/research_outputs/_form.html.erb:164 #: ../../app/views/shared/export/_plan_outputs.erb:23 msgid "Anticipated file size" msgstr "" +#: ../../app/views/research_outputs/_form.html.erb:170 +msgid "File size units" +msgstr "" + #: ../../app/views/research_outputs/edit.html.erb:12 msgid "Editing %{research_output_title}" msgstr "" @@ -5086,11 +5118,12 @@ msgstr "" msgid "Add a research output" msgstr "" -#: ../../app/views/research_outputs/licenses/_form.html.erb:24 +#: ../../app/views/research_outputs/licenses/_form.html.erb:20 +#: ../../app/views/research_outputs/licenses/_form.html.erb:25 msgid "Initial license" msgstr "" -#: ../../app/views/research_outputs/licenses/_form.html.erb:30 +#: ../../app/views/research_outputs/licenses/_form.html.erb:31 msgid "For guidance on selecting a license:" msgstr "" @@ -5114,10 +5147,18 @@ msgstr "" msgid "- Select a subject area -" msgstr "" -#: ../../app/views/research_outputs/repositories/_search.html.erb:21 +#: ../../app/views/research_outputs/repositories/_search.html.erb:14 +msgid "Select a subject area" +msgstr "" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:22 msgid "- Select a repository type -" msgstr "" +#: ../../app/views/research_outputs/repositories/_search.html.erb:24 +msgid "Select a repository type" +msgstr "" + #: ../../app/views/research_outputs/repositories/_search_result.html.erb:20 msgid "Click to view repositories related to %{subject}" msgstr "" @@ -5445,14 +5486,14 @@ msgstr "Kaydol" msgid "on the homepage." msgstr "ana sayfada." -#: ../../app/views/static_pages/about_us.html.erb:35 -msgid "Please visit the" -msgstr "Lütfen şu adresi ziyaret edin:" - #: ../../app/views/static_pages/about_us.html.erb:35 msgid "page for guidance." msgstr "rehberlik sayfası." +#: ../../app/views/static_pages/about_us.html.erb:35 +msgid "Please visit the" +msgstr "Lütfen şu adresi ziyaret edin:" + #: ../../app/views/static_pages/about_us.html.erb:37 msgid "Customising for your Organisation" msgstr "Kuruluşunuz için özelleştiriliyor" @@ -6089,6 +6130,14 @@ msgstr "Şablonlarınız kullanılarak oluşturulan olan sayısı" msgid "Statistics on your Templates" msgstr "Şablonlarınızla ilgili İstatistikler" +#: ../../app/views/usage/_total_usage.html.erb:7 +msgid "Total users" +msgstr "" + +#: ../../app/views/usage/_total_usage.html.erb:11 +msgid "Total plans" +msgstr "" + #: ../../app/views/usage/_total_usage.html.erb:15 msgid "Excluding Test Plans" msgstr "Test Planları Hariç" @@ -6232,15 +6281,16 @@ msgstr "" msgid "Hello %{user_name}," msgstr "Merhaba %{user_name}," -#: ../../app/views/user_mailer/feedback_notification.html.erb:5 +#: ../../app/views/user_mailer/feedback_notification.html.erb:6 msgid "" "%{requestor} has requested feedback on a plan %{link_html}. To add comments, p" -"lease visit the 'Plans' page under the Admin menu in %{tool_name} and open the" +"lease visit the \"Plans\" page under the Admin menu in %{tool_name} and open the" " plan." msgstr "" -"%{requestor}, %{link_html} planı hakkında geri bildirim istedi. Yorum eklemek " -"için lütfen %{tool_name} içindeki Yönetici menüsü altında yer alan 'Planlar' s" -"ayfasını ziyaret edin ve planı açın." + +#: ../../app/views/user_mailer/feedback_notification.html.erb:17 +msgid "Alternatively, you can click the link below:" +msgstr "" #: ../../app/views/user_mailer/new_comment.html.erb:5 msgid "" @@ -6326,22 +6376,22 @@ msgstr "" msgid "Hello %{recipient_name}," msgstr "Merhaba %{recipient_name}," -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " is creating a Data Management Plan and has answered " -msgstr " bir Veri Yönetim Planı oluşturuyor ve şunları yanıtladı:" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " to " msgstr "" -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " in a plan called " -msgstr "şu plan içinde:" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " based on the template " msgstr "Şu şablona dayanarak:" +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " is creating a Data Management Plan and has answered " +msgstr " bir Veri Yönetim Planı oluşturuyor ve şunları yanıtladı:" + +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " in a plan called " +msgstr "şu plan içinde:" + #: ../../app/views/user_mailer/sharing_notification.html.erb:5 msgid "" "Your colleague %{inviter_name} has invited you to contribute to \n" @@ -6494,14 +6544,14 @@ msgstr "" msgid "Download users" msgstr "Kullanıcıları indir" -#: ../../app/views/users/refresh_token.js.erb:1 -msgid "Successfully regenerate your API token." -msgstr "API tokenınızı başarıyla yeniden oluşturun." - #: ../../app/views/users/refresh_token.js.erb:1 msgid "Unable to regenerate your API token." msgstr "API Tokenınız yeniden oluşturulamıyor." +#: ../../app/views/users/refresh_token.js.erb:1 +msgid "Successfully regenerate your API token." +msgstr "API tokenınızı başarıyla yeniden oluşturun." + #: i18n_placeholders.rb:4 msgid "activerecord.errors.messages.record_invalid" msgstr "activerecord.errors.messages.record_invalid" diff --git a/config/locales/.translation_io b/config/locales/.translation_io index 1ce07b9c49..bf0d1e74e9 100644 --- a/config/locales/.translation_io +++ b/config/locales/.translation_io @@ -5,4 +5,4 @@ # ignore the conflicts and "sync" again, it will fix this file for you. --- -timestamp: 1666713759 +timestamp: 1669835468 diff --git a/yarn.lock b/yarn.lock index 14cf9c7d1f..6ec55c5b5b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -17,38 +17,38 @@ dependencies: "@babel/highlight" "^7.18.6" -"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.19.3", "@babel/compat-data@^7.19.4": - version "7.19.4" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.19.4.tgz#95c86de137bf0317f3a570e1b6e996b427299747" - integrity sha512-CHIGpJcUQ5lU9KrPHTjBMhVwQG6CQjxfg36fGXl3qk/Gik1WwWachaXFuo0uCWJT/mStOKtcbFJCaVLihC1CMw== +"@babel/compat-data@^7.17.7", "@babel/compat-data@^7.20.0", "@babel/compat-data@^7.20.1": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.20.5.tgz#86f172690b093373a933223b4745deeb6049e733" + integrity sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g== "@babel/core@^7.11.6", "@babel/core@^7.15.0": - version "7.19.6" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.19.6.tgz#7122ae4f5c5a37c0946c066149abd8e75f81540f" - integrity sha512-D2Ue4KHpc6Ys2+AxpIx1BZ8+UegLLLE2p3KJEuJRKmokHOtl49jQ5ny1773KsGLZs8MQvBidAF6yWUJxRqtKtg== + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.20.5.tgz#45e2114dc6cd4ab167f81daf7820e8fa1250d113" + integrity sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ== dependencies: "@ampproject/remapping" "^2.1.0" "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.19.6" - "@babel/helper-compilation-targets" "^7.19.3" - "@babel/helper-module-transforms" "^7.19.6" - "@babel/helpers" "^7.19.4" - "@babel/parser" "^7.19.6" + "@babel/generator" "^7.20.5" + "@babel/helper-compilation-targets" "^7.20.0" + "@babel/helper-module-transforms" "^7.20.2" + "@babel/helpers" "^7.20.5" + "@babel/parser" "^7.20.5" "@babel/template" "^7.18.10" - "@babel/traverse" "^7.19.6" - "@babel/types" "^7.19.4" + "@babel/traverse" "^7.20.5" + "@babel/types" "^7.20.5" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" json5 "^2.2.1" semver "^6.3.0" -"@babel/generator@^7.19.6": - version "7.19.6" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.19.6.tgz#9e481a3fe9ca6261c972645ae3904ec0f9b34a1d" - integrity sha512-oHGRUQeoX1QrKeJIKVe0hwjGqNnVYsM5Nep5zo0uE0m42sLH+Fsd2pStJ5sRM1bNyTUUoz0pe2lTeMJrb/taTA== +"@babel/generator@^7.20.5": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.20.5.tgz#cb25abee3178adf58d6814b68517c62bdbfdda95" + integrity sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA== dependencies: - "@babel/types" "^7.19.4" + "@babel/types" "^7.20.5" "@jridgewell/gen-mapping" "^0.3.2" jsesc "^2.5.1" @@ -67,36 +67,36 @@ "@babel/helper-explode-assignable-expression" "^7.18.6" "@babel/types" "^7.18.9" -"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.19.0", "@babel/helper-compilation-targets@^7.19.3": - version "7.19.3" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.19.3.tgz#a10a04588125675d7c7ae299af86fa1b2ee038ca" - integrity sha512-65ESqLGyGmLvgR0mst5AdW1FkNlj9rQsCKduzEoEPhBCDFGXvz2jW6bXFG6i0/MrV2s7hhXjjb2yAzcPuQlLwg== +"@babel/helper-compilation-targets@^7.17.7", "@babel/helper-compilation-targets@^7.18.9", "@babel/helper-compilation-targets@^7.20.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz#6bf5374d424e1b3922822f1d9bdaa43b1a139d0a" + integrity sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ== dependencies: - "@babel/compat-data" "^7.19.3" + "@babel/compat-data" "^7.20.0" "@babel/helper-validator-option" "^7.18.6" browserslist "^4.21.3" semver "^6.3.0" -"@babel/helper-create-class-features-plugin@^7.18.6": - version "7.19.0" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.19.0.tgz#bfd6904620df4e46470bae4850d66be1054c404b" - integrity sha512-NRz8DwF4jT3UfrmUoZjd0Uph9HQnP30t7Ash+weACcyNkiYTywpIjDBgReJMKgr+n86sn2nPVVmJ28Dm053Kqw== +"@babel/helper-create-class-features-plugin@^7.18.6", "@babel/helper-create-class-features-plugin@^7.20.5": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.5.tgz#327154eedfb12e977baa4ecc72e5806720a85a06" + integrity sha512-3RCdA/EmEaikrhayahwToF0fpweU/8o2p8vhc1c/1kftHOdTKuC65kik/TLc+qfbS8JKw4qqJbne4ovICDhmww== dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" "@babel/helper-environment-visitor" "^7.18.9" "@babel/helper-function-name" "^7.19.0" "@babel/helper-member-expression-to-functions" "^7.18.9" "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-replace-supers" "^7.18.9" + "@babel/helper-replace-supers" "^7.19.1" "@babel/helper-split-export-declaration" "^7.18.6" -"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.19.0": - version "7.19.0" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.19.0.tgz#7976aca61c0984202baca73d84e2337a5424a41b" - integrity sha512-htnV+mHX32DF81amCDrwIDr8nrp1PTm+3wfBN9/v8QJOLEioOCOG7qNyq0nHeFiWbT3Eb7gsPwEmV64UCQ1jzw== +"@babel/helper-create-regexp-features-plugin@^7.18.6", "@babel/helper-create-regexp-features-plugin@^7.20.5": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz#5ea79b59962a09ec2acf20a963a01ab4d076ccca" + integrity sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w== dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" - regexpu-core "^5.1.0" + regexpu-core "^5.2.1" "@babel/helper-define-polyfill-provider@^0.3.3": version "0.3.3" @@ -151,19 +151,19 @@ dependencies: "@babel/types" "^7.18.6" -"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.6": - version "7.19.6" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.19.6.tgz#6c52cc3ac63b70952d33ee987cbee1c9368b533f" - integrity sha512-fCmcfQo/KYr/VXXDIyd3CBGZ6AFhPFy1TfSEJ+PilGVlQT6jcbqtHAM4C1EciRqMza7/TpOUZliuSH+U6HAhJw== +"@babel/helper-module-transforms@^7.18.6", "@babel/helper-module-transforms@^7.19.6", "@babel/helper-module-transforms@^7.20.2": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz#ac53da669501edd37e658602a21ba14c08748712" + integrity sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA== dependencies: "@babel/helper-environment-visitor" "^7.18.9" "@babel/helper-module-imports" "^7.18.6" - "@babel/helper-simple-access" "^7.19.4" + "@babel/helper-simple-access" "^7.20.2" "@babel/helper-split-export-declaration" "^7.18.6" "@babel/helper-validator-identifier" "^7.19.1" "@babel/template" "^7.18.10" - "@babel/traverse" "^7.19.6" - "@babel/types" "^7.19.4" + "@babel/traverse" "^7.20.1" + "@babel/types" "^7.20.2" "@babel/helper-optimise-call-expression@^7.18.6": version "7.18.6" @@ -172,10 +172,10 @@ dependencies: "@babel/types" "^7.18.6" -"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": - version "7.19.0" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.19.0.tgz#4796bb14961521f0f8715990bee2fb6e51ce21bf" - integrity sha512-40Ryx7I8mT+0gaNxm8JGTZFUITNqdLAgdg0hXzeVZxVD6nFsdhQvip6v8dqkRHzsz1VFpFAaOCHNn0vKBL7Czw== +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.16.7", "@babel/helper-plugin-utils@^7.18.6", "@babel/helper-plugin-utils@^7.18.9", "@babel/helper-plugin-utils@^7.19.0", "@babel/helper-plugin-utils@^7.20.2", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz#d1b9000752b18d0877cff85a5c376ce5c3121629" + integrity sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ== "@babel/helper-remap-async-to-generator@^7.18.6", "@babel/helper-remap-async-to-generator@^7.18.9": version "7.18.9" @@ -187,7 +187,7 @@ "@babel/helper-wrap-function" "^7.18.9" "@babel/types" "^7.18.9" -"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.18.9": +"@babel/helper-replace-supers@^7.18.6", "@babel/helper-replace-supers@^7.19.1": version "7.19.1" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.19.1.tgz#e1592a9b4b368aa6bdb8784a711e0bcbf0612b78" integrity sha512-T7ahH7wV0Hfs46SFh5Jz3s0B6+o8g3c+7TMxu7xKfmHikg7EAZ3I2Qk9LFhjxXq8sL7UkP5JflezNwoZa8WvWw== @@ -198,19 +198,19 @@ "@babel/traverse" "^7.19.1" "@babel/types" "^7.19.0" -"@babel/helper-simple-access@^7.19.4": - version "7.19.4" - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.19.4.tgz#be553f4951ac6352df2567f7daa19a0ee15668e7" - integrity sha512-f9Xq6WqBFqaDfbCzn2w85hwklswz5qsKlh7f08w4Y9yhJHpnNC0QemtSkK5YyOY8kPGvyiwdzZksGUhnGdaUIg== +"@babel/helper-simple-access@^7.19.4", "@babel/helper-simple-access@^7.20.2": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz#0ab452687fe0c2cfb1e2b9e0015de07fc2d62dd9" + integrity sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA== dependencies: - "@babel/types" "^7.19.4" + "@babel/types" "^7.20.2" "@babel/helper-skip-transparent-expression-wrappers@^7.18.9": - version "7.18.9" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.18.9.tgz#778d87b3a758d90b471e7b9918f34a9a02eb5818" - integrity sha512-imytd2gHi3cJPsybLRbmFrF7u5BIEuI2cNheyKi3/iOBC63kNn3q8Crn2xVuESli0aM4KYsyEqKyS7lFL8YVtw== + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz#fbe4c52f60518cab8140d77101f0e63a8a230684" + integrity sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg== dependencies: - "@babel/types" "^7.18.9" + "@babel/types" "^7.20.0" "@babel/helper-split-export-declaration@^7.18.6": version "7.18.6" @@ -235,23 +235,23 @@ integrity sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw== "@babel/helper-wrap-function@^7.18.9": - version "7.19.0" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.19.0.tgz#89f18335cff1152373222f76a4b37799636ae8b1" - integrity sha512-txX8aN8CZyYGTwcLhlk87KRqncAzhh5TpQamZUa0/u3an36NtDpUP6bQgBCBcLeBs09R/OwQu3OjK0k/HwfNDg== + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz#75e2d84d499a0ab3b31c33bcfe59d6b8a45f62e3" + integrity sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q== dependencies: "@babel/helper-function-name" "^7.19.0" "@babel/template" "^7.18.10" - "@babel/traverse" "^7.19.0" - "@babel/types" "^7.19.0" + "@babel/traverse" "^7.20.5" + "@babel/types" "^7.20.5" -"@babel/helpers@^7.19.4": - version "7.19.4" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.19.4.tgz#42154945f87b8148df7203a25c31ba9a73be46c5" - integrity sha512-G+z3aOx2nfDHwX/kyVii5fJq+bgscg89/dJNWpYeKeBv3v9xX8EIabmx1k6u9LS04H7nROFVRVK+e3k0VHp+sw== +"@babel/helpers@^7.20.5": + version "7.20.6" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.20.6.tgz#e64778046b70e04779dfbdf924e7ebb45992c763" + integrity sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w== dependencies: "@babel/template" "^7.18.10" - "@babel/traverse" "^7.19.4" - "@babel/types" "^7.19.4" + "@babel/traverse" "^7.20.5" + "@babel/types" "^7.20.5" "@babel/highlight@^7.18.6": version "7.18.6" @@ -262,10 +262,10 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.18.10", "@babel/parser@^7.19.6": - version "7.19.6" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.19.6.tgz#b923430cb94f58a7eae8facbffa9efd19130e7f8" - integrity sha512-h1IUp81s2JYJ3mRkdxJgs4UvmSsRvDrx5ICSJbPvtWYv5i1nTBGcBpnog+89rAFMwvvru6E5NUHdBe01UeSzYA== +"@babel/parser@^7.18.10", "@babel/parser@^7.20.5": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.20.5.tgz#7f3c7335fe417665d929f34ae5dceae4c04015e8" + integrity sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA== "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.18.6": version "7.18.6" @@ -283,10 +283,10 @@ "@babel/helper-skip-transparent-expression-wrappers" "^7.18.9" "@babel/plugin-proposal-optional-chaining" "^7.18.9" -"@babel/plugin-proposal-async-generator-functions@^7.19.1": - version "7.19.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.19.1.tgz#34f6f5174b688529342288cd264f80c9ea9fb4a7" - integrity sha512-0yu8vNATgLy4ivqMNBIwb1HebCelqN7YX8SL3FDXORv/RqT0zEEWUCH4GH44JsSrvCu6GqnAdR5EBFAPeNBB4Q== +"@babel/plugin-proposal-async-generator-functions@^7.20.1": + version "7.20.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.1.tgz#352f02baa5d69f4e7529bdac39aaa02d41146af9" + integrity sha512-Gh5rchzSwE4kC+o/6T8waD0WHEQIsDmjltY8WnWRXHUdH8axZhuH86Ov9M72YhJfDrZseQwuuWaaIT/TmePp3g== dependencies: "@babel/helper-environment-visitor" "^7.18.9" "@babel/helper-plugin-utils" "^7.19.0" @@ -358,16 +358,16 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-proposal-object-rest-spread@^7.14.7", "@babel/plugin-proposal-object-rest-spread@^7.19.4": - version "7.19.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.19.4.tgz#a8fc86e8180ff57290c91a75d83fe658189b642d" - integrity sha512-wHmj6LDxVDnL+3WhXteUBaoM1aVILZODAUjg11kHqG4cOlfgMQGxw6aCgvrXrmaJR3Bn14oZhImyCPZzRpC93Q== +"@babel/plugin-proposal-object-rest-spread@^7.14.7", "@babel/plugin-proposal-object-rest-spread@^7.20.2": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.2.tgz#a556f59d555f06961df1e572bb5eca864c84022d" + integrity sha512-Ks6uej9WFK+fvIMesSqbAto5dD8Dz4VuuFvGJFKgIGSkJuRGcrwGECPA1fDgQK3/DbExBJpEkTeYeB8geIFCSQ== dependencies: - "@babel/compat-data" "^7.19.4" - "@babel/helper-compilation-targets" "^7.19.3" - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/compat-data" "^7.20.1" + "@babel/helper-compilation-targets" "^7.20.0" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.18.8" + "@babel/plugin-transform-parameters" "^7.20.1" "@babel/plugin-proposal-optional-catch-binding@^7.18.6": version "7.18.6" @@ -395,13 +395,13 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-proposal-private-property-in-object@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.18.6.tgz#a64137b232f0aca3733a67eb1a144c192389c503" - integrity sha512-9Rysx7FOctvT5ouj5JODjAFAkgGoudQuLPamZb0v1TGLpapdNaftzifU8NTWQm0IRjqoYypdrSmyWgkocDQ8Dw== + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz#309c7668f2263f1c711aa399b5a9a6291eef6135" + integrity sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ== dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-create-class-features-plugin" "^7.18.6" - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-create-class-features-plugin" "^7.20.5" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-syntax-private-property-in-object" "^7.14.5" "@babel/plugin-proposal-unicode-property-regex@^7.18.6", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": @@ -447,12 +447,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-import-assertions@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.18.6.tgz#cd6190500a4fa2fe31990a963ffab4b63e4505e4" - integrity sha512-/DU3RXad9+bZwrgWJQKbr39gYbJpLJHezqEzRzi/BHRlJ9zsQb4CK2CA/5apllXNomwA1qHwzvHl+AdEmC5krQ== +"@babel/plugin-syntax-import-assertions@^7.20.0": + version "7.20.0" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz#bb50e0d4bea0957235390641209394e87bdb9cc4" + integrity sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.19.0" "@babel/plugin-syntax-json-strings@^7.8.3": version "7.8.3" @@ -540,25 +540,25 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-block-scoping@^7.19.4": - version "7.19.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.19.4.tgz#315d70f68ce64426db379a3d830e7ac30be02e9b" - integrity sha512-934S2VLLlt2hRJwPf4MczaOr4hYF0z+VKPwqTNxyKX7NthTiPfhuKFWQZHXRM0vh/wo/VyXB3s4bZUNA08l+tQ== +"@babel/plugin-transform-block-scoping@^7.20.2": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.5.tgz#401215f9dc13dc5262940e2e527c9536b3d7f237" + integrity sha512-WvpEIW9Cbj9ApF3yJCjIEEf1EiNJLtXagOrL5LNWEZOo3jv8pmPoYTSNJQvqej8OavVlgOoOPw6/htGZro6IkA== dependencies: - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-plugin-utils" "^7.20.2" -"@babel/plugin-transform-classes@^7.19.0": - version "7.19.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.19.0.tgz#0e61ec257fba409c41372175e7c1e606dc79bb20" - integrity sha512-YfeEE9kCjqTS9IitkgfJuxjcEtLUHMqa8yUJ6zdz8vR7hKuo6mOy2C05P0F1tdMmDCeuyidKnlrw/iTppHcr2A== +"@babel/plugin-transform-classes@^7.20.2": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.2.tgz#c0033cf1916ccf78202d04be4281d161f6709bb2" + integrity sha512-9rbPp0lCVVoagvtEyQKSo5L8oo0nQS/iif+lwlAz29MccX2642vWDlSZK+2T2buxbopotId2ld7zZAzRfz9j1g== dependencies: "@babel/helper-annotate-as-pure" "^7.18.6" - "@babel/helper-compilation-targets" "^7.19.0" + "@babel/helper-compilation-targets" "^7.20.0" "@babel/helper-environment-visitor" "^7.18.9" "@babel/helper-function-name" "^7.19.0" "@babel/helper-optimise-call-expression" "^7.18.6" - "@babel/helper-plugin-utils" "^7.19.0" - "@babel/helper-replace-supers" "^7.18.9" + "@babel/helper-plugin-utils" "^7.20.2" + "@babel/helper-replace-supers" "^7.19.1" "@babel/helper-split-export-declaration" "^7.18.6" globals "^11.1.0" @@ -569,12 +569,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.9" -"@babel/plugin-transform-destructuring@^7.14.7", "@babel/plugin-transform-destructuring@^7.19.4": - version "7.19.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.19.4.tgz#46890722687b9b89e1369ad0bd8dc6c5a3b4319d" - integrity sha512-t0j0Hgidqf0aM86dF8U+vXYReUgJnlv4bZLsyoPnwZNrGY+7/38o8YjaELrvHeVfTZao15kjR0PVv0nju2iduA== +"@babel/plugin-transform-destructuring@^7.14.7", "@babel/plugin-transform-destructuring@^7.20.2": + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.2.tgz#c23741cfa44ddd35f5e53896e88c75331b8b2792" + integrity sha512-mENM+ZHrvEgxLTBXUiQ621rRXZes3KWUv6NdQlrnr1TkWVw+hUjQBZuP2X32qKlrlG2BzgR95gkuCRSkJl8vIw== dependencies: - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-transform-dotall-regex@^7.18.6", "@babel/plugin-transform-dotall-regex@^7.4.4": version "7.18.6" @@ -629,7 +629,7 @@ dependencies: "@babel/helper-plugin-utils" "^7.18.6" -"@babel/plugin-transform-modules-amd@^7.18.6": +"@babel/plugin-transform-modules-amd@^7.19.6": version "7.19.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.19.6.tgz#aca391801ae55d19c4d8d2ebfeaa33df5f2a2cbd" integrity sha512-uG3od2mXvAtIFQIh0xrpLH6r5fpSQN04gIVovl+ODLdUMANokxQLZnPBHcjmv3GxRjnqwLuHvppjjcelqUFZvg== @@ -637,7 +637,7 @@ "@babel/helper-module-transforms" "^7.19.6" "@babel/helper-plugin-utils" "^7.19.0" -"@babel/plugin-transform-modules-commonjs@^7.18.6": +"@babel/plugin-transform-modules-commonjs@^7.19.6": version "7.19.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.19.6.tgz#25b32feef24df8038fc1ec56038917eacb0b730c" integrity sha512-8PIa1ym4XRTKuSsOUXqDG0YaOlEuTVvHMe5JCfgBMOtHvJKw/4NGovEGN33viISshG/rZNVrACiBmPQLvWN8xQ== @@ -646,7 +646,7 @@ "@babel/helper-plugin-utils" "^7.19.0" "@babel/helper-simple-access" "^7.19.4" -"@babel/plugin-transform-modules-systemjs@^7.19.0": +"@babel/plugin-transform-modules-systemjs@^7.19.6": version "7.19.6" resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.19.6.tgz#59e2a84064b5736a4471b1aa7b13d4431d327e0d" integrity sha512-fqGLBepcc3kErfR9R3DnVpURmckXP7gj7bAlrTQyBxrigFqszZCkFkcoxzCp2v32XmwXLvbw+8Yq9/b+QqksjQ== @@ -665,12 +665,12 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-named-capturing-groups-regex@^7.19.1": - version "7.19.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.19.1.tgz#ec7455bab6cd8fb05c525a94876f435a48128888" - integrity sha512-oWk9l9WItWBQYS4FgXD4Uyy5kq898lvkXpXQxoJEY1RnvPk4R/Dvu2ebXU9q8lP+rlMwUQTFf2Ok6d78ODa0kw== + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz#626298dd62ea51d452c3be58b285d23195ba69a8" + integrity sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA== dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.19.0" - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/helper-create-regexp-features-plugin" "^7.20.5" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-transform-new-target@^7.18.6": version "7.18.6" @@ -687,12 +687,12 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/helper-replace-supers" "^7.18.6" -"@babel/plugin-transform-parameters@^7.18.8": - version "7.18.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.18.8.tgz#ee9f1a0ce6d78af58d0956a9378ea3427cccb48a" - integrity sha512-ivfbE3X2Ss+Fj8nnXvKJS6sjRG4gzwPMsP+taZC+ZzEGjAYlvENixmt1sZ5Ca6tWls+BlKSGKPJ6OOXvXCbkFg== +"@babel/plugin-transform-parameters@^7.20.1": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.5.tgz#f8f9186c681d10c3de7620c916156d893c8a019e" + integrity sha512-h7plkOmcndIUWXZFLgpbrh2+fXAi47zcUX7IrOQuZdLD0I0KvjJ6cvo3BEcAOsDOcZhVKGJqv07mkSqK0y2isQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/plugin-transform-property-literals@^7.18.6": version "7.18.6" @@ -702,12 +702,12 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/plugin-transform-regenerator@^7.14.5", "@babel/plugin-transform-regenerator@^7.18.6": - version "7.18.6" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.6.tgz#585c66cb84d4b4bf72519a34cfce761b8676ca73" - integrity sha512-poqRI2+qiSdeldcz4wTSTXBRryoq3Gc70ye7m7UD5Ww0nE29IXqMl6r7Nd15WBgRd74vloEMlShtH6CKxVzfmQ== + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz#57cda588c7ffb7f4f8483cc83bdcea02a907f04d" + integrity sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ== dependencies: - "@babel/helper-plugin-utils" "^7.18.6" - regenerator-transform "^0.15.0" + "@babel/helper-plugin-utils" "^7.20.2" + regenerator-transform "^0.15.1" "@babel/plugin-transform-reserved-words@^7.18.6": version "7.18.6" @@ -780,17 +780,17 @@ "@babel/helper-plugin-utils" "^7.18.6" "@babel/preset-env@^7.15.0": - version "7.19.4" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.19.4.tgz#4c91ce2e1f994f717efb4237891c3ad2d808c94b" - integrity sha512-5QVOTXUdqTCjQuh2GGtdd7YEhoRXBMVGROAtsBeLGIbIz3obCBIfRMT1I3ZKkMgNzwkyCkftDXSSkHxnfVf4qg== + version "7.20.2" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.20.2.tgz#9b1642aa47bb9f43a86f9630011780dab7f86506" + integrity sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg== dependencies: - "@babel/compat-data" "^7.19.4" - "@babel/helper-compilation-targets" "^7.19.3" - "@babel/helper-plugin-utils" "^7.19.0" + "@babel/compat-data" "^7.20.1" + "@babel/helper-compilation-targets" "^7.20.0" + "@babel/helper-plugin-utils" "^7.20.2" "@babel/helper-validator-option" "^7.18.6" "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression" "^7.18.6" "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.18.9" - "@babel/plugin-proposal-async-generator-functions" "^7.19.1" + "@babel/plugin-proposal-async-generator-functions" "^7.20.1" "@babel/plugin-proposal-class-properties" "^7.18.6" "@babel/plugin-proposal-class-static-block" "^7.18.6" "@babel/plugin-proposal-dynamic-import" "^7.18.6" @@ -799,7 +799,7 @@ "@babel/plugin-proposal-logical-assignment-operators" "^7.18.9" "@babel/plugin-proposal-nullish-coalescing-operator" "^7.18.6" "@babel/plugin-proposal-numeric-separator" "^7.18.6" - "@babel/plugin-proposal-object-rest-spread" "^7.19.4" + "@babel/plugin-proposal-object-rest-spread" "^7.20.2" "@babel/plugin-proposal-optional-catch-binding" "^7.18.6" "@babel/plugin-proposal-optional-chaining" "^7.18.9" "@babel/plugin-proposal-private-methods" "^7.18.6" @@ -810,7 +810,7 @@ "@babel/plugin-syntax-class-static-block" "^7.14.5" "@babel/plugin-syntax-dynamic-import" "^7.8.3" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-import-assertions" "^7.18.6" + "@babel/plugin-syntax-import-assertions" "^7.20.0" "@babel/plugin-syntax-json-strings" "^7.8.3" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" @@ -823,10 +823,10 @@ "@babel/plugin-transform-arrow-functions" "^7.18.6" "@babel/plugin-transform-async-to-generator" "^7.18.6" "@babel/plugin-transform-block-scoped-functions" "^7.18.6" - "@babel/plugin-transform-block-scoping" "^7.19.4" - "@babel/plugin-transform-classes" "^7.19.0" + "@babel/plugin-transform-block-scoping" "^7.20.2" + "@babel/plugin-transform-classes" "^7.20.2" "@babel/plugin-transform-computed-properties" "^7.18.9" - "@babel/plugin-transform-destructuring" "^7.19.4" + "@babel/plugin-transform-destructuring" "^7.20.2" "@babel/plugin-transform-dotall-regex" "^7.18.6" "@babel/plugin-transform-duplicate-keys" "^7.18.9" "@babel/plugin-transform-exponentiation-operator" "^7.18.6" @@ -834,14 +834,14 @@ "@babel/plugin-transform-function-name" "^7.18.9" "@babel/plugin-transform-literals" "^7.18.9" "@babel/plugin-transform-member-expression-literals" "^7.18.6" - "@babel/plugin-transform-modules-amd" "^7.18.6" - "@babel/plugin-transform-modules-commonjs" "^7.18.6" - "@babel/plugin-transform-modules-systemjs" "^7.19.0" + "@babel/plugin-transform-modules-amd" "^7.19.6" + "@babel/plugin-transform-modules-commonjs" "^7.19.6" + "@babel/plugin-transform-modules-systemjs" "^7.19.6" "@babel/plugin-transform-modules-umd" "^7.18.6" "@babel/plugin-transform-named-capturing-groups-regex" "^7.19.1" "@babel/plugin-transform-new-target" "^7.18.6" "@babel/plugin-transform-object-super" "^7.18.6" - "@babel/plugin-transform-parameters" "^7.18.8" + "@babel/plugin-transform-parameters" "^7.20.1" "@babel/plugin-transform-property-literals" "^7.18.6" "@babel/plugin-transform-regenerator" "^7.18.6" "@babel/plugin-transform-reserved-words" "^7.18.6" @@ -853,7 +853,7 @@ "@babel/plugin-transform-unicode-escapes" "^7.18.10" "@babel/plugin-transform-unicode-regex" "^7.18.6" "@babel/preset-modules" "^0.1.5" - "@babel/types" "^7.19.4" + "@babel/types" "^7.20.2" babel-plugin-polyfill-corejs2 "^0.3.3" babel-plugin-polyfill-corejs3 "^0.6.0" babel-plugin-polyfill-regenerator "^0.4.1" @@ -872,11 +872,11 @@ esutils "^2.0.2" "@babel/runtime@^7.15.3", "@babel/runtime@^7.7.2", "@babel/runtime@^7.8.4": - version "7.19.4" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.19.4.tgz#a42f814502ee467d55b38dd1c256f53a7b885c78" - integrity sha512-EXpLCrk55f+cYqmHsSR+yD/0gAIMxxA9QK9lnQWzhMCvt+YmoBN7Zx94s++Kv0+unHk39vxNO8t+CMA2WSS3wA== + version "7.20.6" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.20.6.tgz#facf4879bfed9b5326326273a64220f099b0fce3" + integrity sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA== dependencies: - regenerator-runtime "^0.13.4" + regenerator-runtime "^0.13.11" "@babel/template@^7.18.10": version "7.18.10" @@ -887,26 +887,26 @@ "@babel/parser" "^7.18.10" "@babel/types" "^7.18.10" -"@babel/traverse@^7.19.0", "@babel/traverse@^7.19.1", "@babel/traverse@^7.19.4", "@babel/traverse@^7.19.6": - version "7.19.6" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.19.6.tgz#7b4c865611df6d99cb131eec2e8ac71656a490dc" - integrity sha512-6l5HrUCzFM04mfbG09AagtYyR2P0B71B1wN7PfSPiksDPz2k5H9CBC1tcZpz2M8OxbKTPccByoOJ22rUKbpmQQ== +"@babel/traverse@^7.19.1", "@babel/traverse@^7.20.1", "@babel/traverse@^7.20.5": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.20.5.tgz#78eb244bea8270fdda1ef9af22a5d5e5b7e57133" + integrity sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ== dependencies: "@babel/code-frame" "^7.18.6" - "@babel/generator" "^7.19.6" + "@babel/generator" "^7.20.5" "@babel/helper-environment-visitor" "^7.18.9" "@babel/helper-function-name" "^7.19.0" "@babel/helper-hoist-variables" "^7.18.6" "@babel/helper-split-export-declaration" "^7.18.6" - "@babel/parser" "^7.19.6" - "@babel/types" "^7.19.4" + "@babel/parser" "^7.20.5" + "@babel/types" "^7.20.5" debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.19.4", "@babel/types@^7.4.4": - version "7.19.4" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.4.tgz#0dd5c91c573a202d600490a35b33246fed8a41c7" - integrity sha512-M5LK7nAeS6+9j7hAq+b3fQs+pNfUtTGq+yFFfHnauFA8zQtLRfmuipmsKDKKLuyG+wC8ABW43A153YNawNTEtw== +"@babel/types@^7.18.10", "@babel/types@^7.18.6", "@babel/types@^7.18.9", "@babel/types@^7.19.0", "@babel/types@^7.20.0", "@babel/types@^7.20.2", "@babel/types@^7.20.5", "@babel/types@^7.4.4": + version "7.20.5" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.20.5.tgz#e206ae370b5393d94dfd1d04cd687cace53efa84" + integrity sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg== dependencies: "@babel/helper-string-parser" "^7.19.4" "@babel/helper-validator-identifier" "^7.19.1" @@ -956,13 +956,13 @@ integrity sha512-c3xlOroHp/cCZHDOuLp6uzQYEbvXBUVaal0puXoGJ9M8L/KHwZ3hQozD4dVeSN9msHWLxxtmPT1TlCN7gFhj4w== "@humanwhocodes/config-array@^0.11.6": - version "0.11.6" - resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.6.tgz#6a51d603a3aaf8d4cf45b42b3f2ac9318a4adc4b" - integrity sha512-jJr+hPTJYKyDILJfhNSHsjiwXYf26Flsz8DvNndOsHs5pwSnpGUEy8yzF0JYhCEvTDdV2vuOK5tt8BVhwO5/hg== + version "0.11.7" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.7.tgz#38aec044c6c828f6ed51d5d7ae3d9b9faf6dbb0f" + integrity sha512-kBbPWzN8oVMLb0hOUYXhmxggL/1cJE6ydvjDIGi9EnAGUyA7cLVKQg+d/Dsm+KZwx2czGHrCmMVLiyg8s5JPKw== dependencies: "@humanwhocodes/object-schema" "^1.2.1" debug "^4.1.1" - minimatch "^3.0.4" + minimatch "^3.0.5" "@humanwhocodes/module-importer@^1.0.1": version "1.0.1" @@ -1230,9 +1230,9 @@ integrity sha512-Y4XFY5VJAuw0FgAqPNd6NNoV44jbq9Bz2L7Rh/J6jLTiHBSBJa9fxqQIvkIld4GsoDOcCbvzOUAbLPsSKKg+uA== "@types/node@*", "@types/node@>=10.0.0": - version "18.11.4" - resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.4.tgz#7017a52e18dfaad32f55eebd539993014441949c" - integrity sha512-BxcJpBu8D3kv/GZkx/gSMz6VnTJREBj/4lbzYOQueUOELkt8WrO6zAcSPmp9uRPEW/d+lUO8QK0W2xnS1hEU0A== + version "18.11.9" + resolved "https://registry.yarnpkg.com/@types/node/-/node-18.11.9.tgz#02d013de7058cea16d36168ef2fc653464cfbad4" + integrity sha512-CRpX21/kGdzjOpFsZSkcrXMGIBWMGNIHXXBVFSH+ggkftxg+XYP20TESbh+zFvFj3EQOl5byk0HTRn1IL6hbqg== "@types/parse-json@^4.0.0": version "4.0.0" @@ -1509,9 +1509,9 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.4, ajv@^6.12.5: uri-js "^4.2.2" ajv@^8.0.0, ajv@^8.8.0: - version "8.11.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.0.tgz#977e91dd96ca669f54a11e23e378e33b884a565f" - integrity sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg== + version "8.11.2" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.11.2.tgz#aecb20b50607acf2569b6382167b65a96008bb78" + integrity sha512-E4bfmKAhGiSTvMfL1Myyycaub+cUEU2/IvpylXkUu7CHBkBj1f/ikdzbD7YQ6FKUbixDxeYvB/xY4fvyroDlQg== dependencies: fast-deep-equal "^3.1.1" json-schema-traverse "^1.0.0" @@ -1566,9 +1566,9 @@ anymatch@^2.0.0: normalize-path "^2.1.1" anymatch@~3.1.2: - version "3.1.2" - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" - integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== + version "3.1.3" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" + integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== dependencies: normalize-path "^3.0.0" picomatch "^2.0.4" @@ -1616,14 +1616,14 @@ array-flatten@^2.1.2: integrity sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ== array-includes@^3.1.4: - version "3.1.5" - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.5.tgz#2c320010db8d31031fd2a5f6b3bbd4b1aad31bdb" - integrity sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ== + version "3.1.6" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.6.tgz#9e9e720e194f198266ba9e18c29e6a9b0e4b225f" + integrity sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw== dependencies: call-bind "^1.0.2" define-properties "^1.1.4" - es-abstract "^1.19.5" - get-intrinsic "^1.1.1" + es-abstract "^1.20.4" + get-intrinsic "^1.1.3" is-string "^1.0.7" array-unique@^0.3.2: @@ -1632,23 +1632,23 @@ array-unique@^0.3.2: integrity sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ== array.prototype.flat@^1.2.5: - version "1.3.0" - resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz#0b0c1567bf57b38b56b4c97b8aa72ab45e4adc7b" - integrity sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw== + version "1.3.1" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz#ffc6576a7ca3efc2f46a143b9d1dda9b4b3cf5e2" + integrity sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" es-shim-unscopables "^1.0.0" -array.prototype.reduce@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz#8167e80089f78bff70a99e20bd4201d4663b0a6f" - integrity sha512-WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw== +array.prototype.reduce@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/array.prototype.reduce/-/array.prototype.reduce-1.0.5.tgz#6b20b0daa9d9734dd6bc7ea66b5bbce395471eac" + integrity sha512-kDdugMl7id9COE8R7MHF5jWk7Dqt/fs4Pv+JXoICnYwqpjjjbUurz6w5fT5IG6brLdJhv6/VoHB0H7oyIBXd+Q== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.2" + define-properties "^1.1.4" + es-abstract "^1.20.4" es-array-method-boxes-properly "^1.0.0" is-string "^1.0.7" @@ -1704,9 +1704,9 @@ autoprefixer@^9.6.1: postcss-value-parser "^4.1.0" babel-loader@^8.2.2: - version "8.2.5" - resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.2.5.tgz#d45f585e654d5a5d90f5350a779d7647c5ed512e" - integrity sha512-OSiFfH89LrEMiWd4pLNqGz4CwJDtbs2ZVc+iGu2HrkRfPxId9F2anQj38IxWpmRfsUY0aBZYi1EFcd3mhtRMLQ== + version "8.3.0" + resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.3.0.tgz#124936e841ba4fe8176786d6ff28add1f134d6a8" + integrity sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q== dependencies: find-cache-dir "^3.3.1" loader-utils "^2.0.0" @@ -2125,9 +2125,9 @@ caniuse-api@^3.0.0: lodash.uniq "^4.5.0" caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000981, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001400: - version "1.0.30001423" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001423.tgz#57176d460aa8cd85ee1a72016b961eb9aca55d91" - integrity sha512-09iwWGOlifvE1XuHokFMP7eR38a0JnajoyL3/i87c8ZjRWRrdKo1fqjNfugfBD0UDBIOz0U+jtNhJ0EPm1VleQ== + version "1.0.30001435" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001435.tgz#502c93dbd2f493bee73a408fe98e98fb1dad10b2" + integrity sha512-kdCkUTjR+v4YAJelyiDTqiu82BDr4W4CP5sgTA0ZBmqn30XfS2ZghPLMowik9TPhS+psWJiUNxsqLyurDbmutA== case-sensitive-paths-webpack-plugin@^2.4.0: version "2.4.0" @@ -2458,16 +2458,16 @@ copy-descriptor@^0.1.0: integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw== core-js-compat@^3.25.1: - version "3.26.0" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.26.0.tgz#94e2cf8ba3e63800c4956ea298a6473bc9d62b44" - integrity sha512-piOX9Go+Z4f9ZiBFLnZ5VrOpBl0h7IGCkiFUN11QTe6LjAvOT3ifL/5TdoizMh99hcGy5SoLyWbapIY/PIb/3A== + version "3.26.1" + resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.26.1.tgz#0e710b09ebf689d719545ac36e49041850f943df" + integrity sha512-622/KzTudvXCDLRw70iHW4KKs1aGpcRcowGWyYJr2DEBfRrd6hNJybxSWJFuZYD4ma86xhrwDDHxmDaIq4EA8A== dependencies: browserslist "^4.21.4" core-js@^3.16.2, core-js@^3.6.5: - version "3.26.0" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.26.0.tgz#a516db0ed0811be10eac5d94f3b8463d03faccfe" - integrity sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw== + version "3.26.1" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.26.1.tgz#7a9816dabd9ee846c1c0fe0e8fcad68f3709134e" + integrity sha512-21491RRQVzUn0GGM9Z1Jrpr6PNPxPi+Za8OM9q4tksTSnlbXXGKK1nXNg/QvwFYettXvSX6zWKCtHHfjN4puyA== core-util-is@~1.0.0: version "1.0.3" @@ -3030,10 +3030,10 @@ engine.io-parser@~5.0.3: resolved "https://registry.yarnpkg.com/engine.io-parser/-/engine.io-parser-5.0.4.tgz#0b13f704fa9271b3ec4f33112410d8f3f41d0fc0" integrity sha512-+nVFp+5z1E3HcToEnO7ZIj3g+3k9389DvWtvJZz0T6/eOCPIyyxehFcedoYrZQrp0LgQbD9pPXhpMBKMd5QURg== -engine.io@~6.2.0: - version "6.2.0" - resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-6.2.0.tgz#003bec48f6815926f2b1b17873e576acd54f41d0" - integrity sha512-4KzwW3F3bk+KlzSOY57fj/Jx6LyRQ1nbcyIadehl+AnXjKT7gDO0ORdRi/84ixvMKTym6ZKuxvbzN62HDDU1Lg== +engine.io@~6.2.1: + version "6.2.1" + resolved "https://registry.yarnpkg.com/engine.io/-/engine.io-6.2.1.tgz#e3f7826ebc4140db9bbaa9021ad6b1efb175878f" + integrity sha512-ECceEFcAaNRybd3lsGQKas3ZlMVjN3cyWwMP25D2i0zWfyiytVbTpRPa34qrr+FHddtpBVOmq4H/DCv1O0lZRA== dependencies: "@types/cookie" "^0.4.1" "@types/cors" "^2.8.12" @@ -3079,7 +3079,7 @@ error-ex@^1.3.1: dependencies: is-arrayish "^0.2.1" -es-abstract@^1.17.2, es-abstract@^1.19.0, es-abstract@^1.19.1, es-abstract@^1.19.2, es-abstract@^1.19.5, es-abstract@^1.20.1: +es-abstract@^1.17.2, es-abstract@^1.19.0, es-abstract@^1.20.4: version "1.20.4" resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.20.4.tgz#1d103f9f8d78d4cf0713edcd6d0ed1a46eed5861" integrity sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA== @@ -3240,9 +3240,9 @@ eslint-webpack-plugin@^2.6.0: schema-utils "^3.1.1" eslint@^8.18.0: - version "8.26.0" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.26.0.tgz#2bcc8836e6c424c4ac26a5674a70d44d84f2181d" - integrity sha512-kzJkpaw1Bfwheq4VXUezFriD1GxszX6dUekM7Z3aC2o4hju+tsR/XyTC3RcoSD7jmy9VkPU3+N6YjVU2e96Oyg== + version "8.28.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.28.0.tgz#81a680732634677cc890134bcdd9fdfea8e63d6e" + integrity sha512-S27Di+EVyMxcHiwDrFzk8dJYAaD+/5SoWKxL1ri/71CRHsnJnRDPNt2Kzj24+MT9FDupf4aqqyqPrvI8MvQ4VQ== dependencies: "@eslint/eslintrc" "^1.3.3" "@humanwhocodes/config-array" "^0.11.6" @@ -3285,9 +3285,9 @@ eslint@^8.18.0: text-table "^0.2.0" espree@^9.4.0: - version "9.4.0" - resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.0.tgz#cd4bc3d6e9336c433265fc0aa016fc1aaf182f8a" - integrity sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw== + version "9.4.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.4.1.tgz#51d6092615567a2c2cff7833445e37c28c0065bd" + integrity sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg== dependencies: acorn "^8.8.0" acorn-jsx "^5.3.2" @@ -3847,9 +3847,9 @@ globals@^11.1.0: integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== globals@^13.15.0: - version "13.17.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-13.17.0.tgz#902eb1e680a41da93945adbdcb5a9f361ba69bd4" - integrity sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw== + version "13.18.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.18.0.tgz#fb224daeeb2bb7d254cd2c640f003528b8d0c1dc" + integrity sha512-/mR4KI8Ps2spmoc0Ulu9L7agOF0du1CZNQ3dke8yItYlyKNmGrkONemBbd6V8UTc1Wgcqn21t3WYB7dbRmh6/A== dependencies: type-fest "^0.20.2" @@ -4089,9 +4089,9 @@ iferr@^0.1.5: integrity sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA== ignore@^5.2.0: - version "5.2.0" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.0.tgz#6d3bac8fa7fe0d45d9f9be7bac2fc279577e345a" - integrity sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ== + version "5.2.1" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.2.1.tgz#c2b1f76cb999ede1502f3a226a9310fdfe88d46c" + integrity sha512-d2qQLzTJ9WxQftPAuEQpSPmKqzxePjzVbpAVv62AQ64NTL+wR4JkrVqR/LqFsFEUsHDAiId52mJteHDFuDkElA== immutable@^4.0.0: version "4.1.0" @@ -4526,18 +4526,18 @@ isobject@^3.0.0, isobject@^3.0.1: resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" integrity sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg== -jasmine-core@^4.1.0, jasmine-core@^4.2.0, jasmine-core@^4.4.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-4.4.0.tgz#848fe45c1839cacaf1f2429d400d1d4f85d2856a" - integrity sha512-+l482uImx5BVd6brJYlaHe2UwfKoZBqQfNp20ZmdNfsjGFTemGfqHLsXjKEW23w9R/m8WYeFc9JmIgjj6dUtAA== +jasmine-core@^4.1.0, jasmine-core@^4.2.0, jasmine-core@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/jasmine-core/-/jasmine-core-4.5.0.tgz#1a6bd0bde3f60996164311c88a0995d67ceda7c3" + integrity sha512-9PMzyvhtocxb3aXJVOPqBDswdgyAeSB81QnLop4npOpbqnheaTEwPc9ZloQeVswugPManznQBjD8kWDTjlnHuw== jasmine@^4.2.1: - version "4.4.0" - resolved "https://registry.yarnpkg.com/jasmine/-/jasmine-4.4.0.tgz#e3e359723d9679993b70de3e0441517c154b9647" - integrity sha512-xrbOyYkkCvgduNw7CKktDtNb+BwwBv/zvQeHpTkbxqQ37AJL5V4sY3jHoMIJPP/hTc3QxLVwOyxc87AqA+kw5g== + version "4.5.0" + resolved "https://registry.yarnpkg.com/jasmine/-/jasmine-4.5.0.tgz#8d3c0d0a33a61e4d05c9f9747ee5dfaf6f7b5d3d" + integrity sha512-9olGRvNZyADIwYL9XBNBst5BTU/YaePzuddK+YRslc7rI9MdTIE4r3xaBKbv2GEmzYYUfMOdTR8/i6JfLZaxSQ== dependencies: glob "^7.1.6" - jasmine-core "^4.4.0" + jasmine-core "^4.5.0" jest-worker@^26.5.0: version "26.6.2" @@ -4580,9 +4580,9 @@ js-cookie@^3.0.1: integrity sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw== js-sdsl@^4.1.4: - version "4.1.5" - resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.1.5.tgz#1ff1645e6b4d1b028cd3f862db88c9d887f26e2a" - integrity sha512-08bOAKweV2NUC1wqTtf3qZlnpOX/R2DU9ikpjOHs0H+ibQv3zpncVQg6um4uYtRtrwIX8M4Nh3ytK4HGlYAq7Q== + version "4.2.0" + resolved "https://registry.yarnpkg.com/js-sdsl/-/js-sdsl-4.2.0.tgz#278e98b7bea589b8baaf048c20aeb19eb7ad09d0" + integrity sha512-dyBIzQBDkCqCu+0upx25Y2jGdbTGxE9fshMsCdK0ViOongpV+n5tXRcZY9v7CaVQ79AGS9KA1KHtojxiM7aXSQ== js-tokens@^4.0.0: version "4.0.0" @@ -4795,18 +4795,18 @@ loader-runner@^2.4.0: integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" - integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== + version "1.4.2" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.2.tgz#29a957f3a63973883eb684f10ffd3d151fec01a3" + integrity sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg== dependencies: big.js "^5.2.2" emojis-list "^3.0.0" json5 "^1.0.1" loader-utils@^2.0.0: - version "2.0.3" - resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.3.tgz#d4b15b8504c63d1fc3f2ade52d41bc8459d6ede1" - integrity sha512-THWqIsn8QRnvLl0shHYVBN9syumU8pYWEHPTmkiVGd+7K5eFNVSY6AJhRvgGF70gg1Dz+l/k8WicvFCxdEs60A== + version "2.0.4" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.4.tgz#8b5cb38b5c34a9a018ee1fc0e6a066d1dfcc528c" + integrity sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw== dependencies: big.js "^5.2.2" emojis-list "^3.0.0" @@ -4875,9 +4875,9 @@ lodash@^4.17.21, lodash@^4.17.5: integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== log4js@^6.4.1: - version "6.7.0" - resolved "https://registry.yarnpkg.com/log4js/-/log4js-6.7.0.tgz#fff671a74b2f6e956d135c3c756c79072809a23b" - integrity sha512-KA0W9ffgNBLDj6fZCq/lRbgR6ABAodRIDHrZnS48vOtfKa4PzWImb0Md1lmGCdO3n3sbCm/n1/WmrNlZ8kCI3Q== + version "6.7.1" + resolved "https://registry.yarnpkg.com/log4js/-/log4js-6.7.1.tgz#06e12b1ac915dd1067146ffad8215f666f7d2c51" + integrity sha512-lzbd0Eq1HRdWM2abSD7mk6YIVY0AogGJzb/z+lqzRk+8+XJP+M6L1MS5FUSc3jjGru4dbKjEMJmqlsoYYpuivQ== dependencies: date-format "^4.0.14" debug "^4.3.4" @@ -4951,9 +4951,9 @@ media-typer@0.3.0: integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== memfs@^3.4.3: - version "3.4.7" - resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.4.7.tgz#e5252ad2242a724f938cb937e3c4f7ceb1f70e5a" - integrity sha512-ygaiUSNalBX85388uskeCyhSAoOSgzBbtVCr9jA2RROssFL9Q19/ZXFqS+2Th2sr1ewNIWgFdLzLC3Yl1Zv+lw== + version "3.4.12" + resolved "https://registry.yarnpkg.com/memfs/-/memfs-3.4.12.tgz#d00f8ad8dab132dc277c659dc85bfd14b07d03bd" + integrity sha512-BcjuQn6vfqP+k100e0E9m61Hyqa//Brp+I3f0OBmN0ATHlFA8vx3Lt8z57R3u2bPqe3WGDBC+nF72fTH7isyEw== dependencies: fs-monkey "^1.0.3" @@ -5070,7 +5070,7 @@ minimalistic-crypto-utils@^1.0.1: resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" integrity sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg== -minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: +minimatch@^3.0.4, minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: version "3.1.2" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== @@ -5104,9 +5104,9 @@ minipass-pipeline@^1.2.2: minipass "^3.0.0" minipass@^3.0.0, minipass@^3.1.1: - version "3.3.4" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.4.tgz#ca99f95dd77c43c7a76bf51e6d200025eee0ffae" - integrity sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw== + version "3.3.6" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.3.6.tgz#7bba384db3a1520d18c9c0e5251c3444e95dd94a" + integrity sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw== dependencies: yallist "^4.0.0" @@ -5368,23 +5368,23 @@ object.assign@^4.1.0, object.assign@^4.1.2, object.assign@^4.1.4: object-keys "^1.1.1" object.entries@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.5.tgz#e1acdd17c4de2cd96d5a08487cfb9db84d881861" - integrity sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g== + version "1.1.6" + resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.6.tgz#9737d0e5b8291edd340a3e3264bb8a3b00d5fa23" + integrity sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" + define-properties "^1.1.4" + es-abstract "^1.20.4" object.getownpropertydescriptors@^2.1.0: - version "2.1.4" - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz#7965e6437a57278b587383831a9b829455a4bc37" - integrity sha512-sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ== + version "2.1.5" + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.5.tgz#db5a9002489b64eef903df81d6623c07e5b4b4d3" + integrity sha512-yDNzckpM6ntyQiGTik1fKV1DcVDRS+w8bvpWNCBanvH5LfRX9O8WTHqQzG4RZwRAM4I0oU7TV11Lj5v0g20ibw== dependencies: - array.prototype.reduce "^1.0.4" + array.prototype.reduce "^1.0.5" call-bind "^1.0.2" define-properties "^1.1.4" - es-abstract "^1.20.1" + es-abstract "^1.20.4" object.pick@^1.3.0: version "1.3.0" @@ -5394,13 +5394,13 @@ object.pick@^1.3.0: isobject "^3.0.1" object.values@^1.1.0, object.values@^1.1.5: - version "1.1.5" - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.5.tgz#959f63e3ce9ef108720333082131e4a459b716ac" - integrity sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg== + version "1.1.6" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.6.tgz#4abbaa71eba47d63589d402856f908243eea9b1d" + integrity sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw== dependencies: call-bind "^1.0.2" - define-properties "^1.1.3" - es-abstract "^1.19.1" + define-properties "^1.1.4" + es-abstract "^1.20.4" obuf@^1.0.0, obuf@^1.1.2: version "1.1.2" @@ -6304,9 +6304,9 @@ postcss-selector-parser@^5.0.0-rc.3, postcss-selector-parser@^5.0.0-rc.4: uniq "^1.0.1" postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: - version "6.0.10" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz#79b61e2c0d1bfc2602d549e11d0876256f8df88d" - integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w== + version "6.0.11" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.11.tgz#2e41dc39b7ad74046e1615185185cd0b17d0c8dc" + integrity sha512-zbARubNdogI9j7WY4nQJBiNqQf3sLS3wCP4WfOidu+p28LofJqDH1tcXypGrcmMHhDk2t9wGhCsYe/+szLTy1g== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" @@ -6581,15 +6581,15 @@ regenerate@^1.4.2: resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" integrity sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A== -regenerator-runtime@^0.13.4, regenerator-runtime@^0.13.5, regenerator-runtime@^0.13.9: - version "0.13.10" - resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz#ed07b19616bcbec5da6274ebc75ae95634bfc2ee" - integrity sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw== +regenerator-runtime@^0.13.11, regenerator-runtime@^0.13.5, regenerator-runtime@^0.13.9: + version "0.13.11" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz#f6dca3e7ceec20590d07ada785636a90cdca17f9" + integrity sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg== -regenerator-transform@^0.15.0: - version "0.15.0" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.0.tgz#cbd9ead5d77fae1a48d957cf889ad0586adb6537" - integrity sha512-LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg== +regenerator-transform@^0.15.1: + version "0.15.1" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.15.1.tgz#f6c4e99fc1b4591f780db2586328e4d9a9d8dc56" + integrity sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg== dependencies: "@babel/runtime" "^7.8.4" @@ -6615,17 +6615,17 @@ regexpp@^3.2.0: resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.2.0.tgz#0425a2768d8f23bad70ca4b90461fa2f1213e1b2" integrity sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg== -regexpu-core@^5.1.0: - version "5.2.1" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.2.1.tgz#a69c26f324c1e962e9ffd0b88b055caba8089139" - integrity sha512-HrnlNtpvqP1Xkb28tMhBUO2EbyUHdQlsnlAhzWcwHy8WJR53UWr7/MAvqrsQKMbV4qdpv03oTMG8iIhfsPFktQ== +regexpu-core@^5.2.1: + version "5.2.2" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-5.2.2.tgz#3e4e5d12103b64748711c3aad69934d7718e75fc" + integrity sha512-T0+1Zp2wjF/juXMrMxHxidqGYn8U4R+zleSJhX9tQ1PUsS8a9UtYfbsF9LdiVgNX3kiX8RNaKM42nfSgvFJjmw== dependencies: regenerate "^1.4.2" regenerate-unicode-properties "^10.1.0" regjsgen "^0.7.1" regjsparser "^0.9.1" unicode-match-property-ecmascript "^2.0.0" - unicode-match-property-value-ecmascript "^2.0.0" + unicode-match-property-value-ecmascript "^2.1.0" regjsgen@^0.7.1: version "0.7.1" @@ -6822,9 +6822,9 @@ sass-loader@10.1.1: semver "^7.3.2" sass@^1.38.0: - version "1.55.0" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.55.0.tgz#0c4d3c293cfe8f8a2e8d3b666e1cf1bff8065d1c" - integrity sha512-Pk+PMy7OGLs9WaxZGJMn7S96dvlyVBwwtToX895WmCpAOr5YiJYEUJfiJidMuKb613z2xNWcXCHEuOvjZbqC6A== + version "1.56.1" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.56.1.tgz#94d3910cd468fd075fa87f5bb17437a0b617d8a7" + integrity sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ== dependencies: chokidar ">=3.0.0 <4.0.0" immutable "^4.0.0" @@ -7082,7 +7082,7 @@ socket.io-adapter@~2.4.0: resolved "https://registry.yarnpkg.com/socket.io-adapter/-/socket.io-adapter-2.4.0.tgz#b50a4a9ecdd00c34d4c8c808224daa1a786152a6" integrity sha512-W4N+o69rkMEGVuk2D/cvca3uYsvGlMwsySWV447y99gUPghxq42BxqLNMndb+a1mm/5/7NeXVQS7RLa2XyXvYg== -socket.io-parser@~4.2.0: +socket.io-parser@~4.2.1: version "4.2.1" resolved "https://registry.yarnpkg.com/socket.io-parser/-/socket.io-parser-4.2.1.tgz#01c96efa11ded938dcb21cbe590c26af5eff65e5" integrity sha512-V4GrkLy+HeF1F/en3SpUaM+7XxYXpuMUWLGde1kSSh5nQMN4hLrbPIkD+otwh6q9R6NOQBN4AMaOZ2zVjui82g== @@ -7091,16 +7091,16 @@ socket.io-parser@~4.2.0: debug "~4.3.1" socket.io@^4.4.1: - version "4.5.3" - resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-4.5.3.tgz#44dffea48d7f5aa41df4a66377c386b953bc521c" - integrity sha512-zdpnnKU+H6mOp7nYRXH4GNv1ux6HL6+lHL8g7Ds7Lj8CkdK1jJK/dlwsKDculbyOHifcJ0Pr/yeXnZQ5GeFrcg== + version "4.5.4" + resolved "https://registry.yarnpkg.com/socket.io/-/socket.io-4.5.4.tgz#a4513f06e87451c17013b8d13fdfaf8da5a86a90" + integrity sha512-m3GC94iK9MfIEeIBfbhJs5BqFibMtkRk8ZpKwG2QwxV0m/eEhPIV4ara6XCF1LWNAus7z58RodiZlAH71U3EhQ== dependencies: accepts "~1.3.4" base64id "~2.0.0" debug "~4.3.2" - engine.io "~6.2.0" + engine.io "~6.2.1" socket.io-adapter "~2.4.0" - socket.io-parser "~4.2.0" + socket.io-parser "~4.2.1" sockjs@^0.3.24: version "0.3.24" @@ -7309,22 +7309,22 @@ string-width@^4.1.0, string-width@^4.2.0: strip-ansi "^6.0.1" string.prototype.trimend@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz#914a65baaab25fbdd4ee291ca7dde57e869cb8d0" - integrity sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog== + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz#c4a27fa026d979d79c04f17397f250a462944533" + integrity sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ== dependencies: call-bind "^1.0.2" define-properties "^1.1.4" - es-abstract "^1.19.5" + es-abstract "^1.20.4" string.prototype.trimstart@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz#5466d93ba58cfa2134839f81d7f42437e8c01fef" - integrity sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg== + version "1.0.6" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz#e90ab66aa8e4007d92ef591bbf3cd422c56bdcf4" + integrity sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA== dependencies: call-bind "^1.0.2" define-properties "^1.1.4" - es-abstract "^1.19.5" + es-abstract "^1.20.4" string_decoder@^1.0.0, string_decoder@^1.1.1: version "1.3.0" @@ -7444,9 +7444,9 @@ tapable@^1.0.0, tapable@^1.1.3: integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== tar@^6.0.2: - version "6.1.11" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621" - integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA== + version "6.1.12" + resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.12.tgz#3b742fb05669b55671fb769ab67a7791ea1a62e6" + integrity sha512-jU4TdemS31uABHd+Lt5WEYJuzn+TJTCBLljvIAHZOz6M9Os5pJ4dD+vRFLxPa/n3T0iEFzpi+0x1UfuDZYbRMw== dependencies: chownr "^2.0.0" fs-minipass "^2.0.0" @@ -7495,9 +7495,9 @@ terser@^4.1.2: source-map-support "~0.5.12" terser@^5.3.4: - version "5.15.1" - resolved "https://registry.yarnpkg.com/terser/-/terser-5.15.1.tgz#8561af6e0fd6d839669c73b92bdd5777d870ed6c" - integrity sha512-K1faMUvpm/FBxjBXud0LWVAGxmvoPbZbfTCYbSgaaYQaIXI3/TdI7a7ZGA73Zrou6Q8Zmz3oeUTsp/dj+ag2Xw== + version "5.16.0" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.16.0.tgz#29362c6f5506e71545c73b069ccd199bb28f7f54" + integrity sha512-KjTV81QKStSfwbNiwlBXfcgMcOloyuRdb62/iLFPGBcVNF4EXjhdYBhYHmbJpiBrVxZhDvltE11j+LBQUxEEJg== dependencies: "@jridgewell/source-map" "^0.3.2" acorn "^8.5.0" @@ -7671,10 +7671,10 @@ unicode-match-property-ecmascript@^2.0.0: unicode-canonical-property-names-ecmascript "^2.0.0" unicode-property-aliases-ecmascript "^2.0.0" -unicode-match-property-value-ecmascript@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz#1a01aa57247c14c568b89775a54938788189a714" - integrity sha512-7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw== +unicode-match-property-value-ecmascript@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz#cb5fffdcd16a05124f5a4b0bf7c3770208acbbe0" + integrity sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA== unicode-property-aliases-ecmascript@^2.0.0: version "2.1.0" @@ -8082,9 +8082,9 @@ wrappy@1: integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== ws@^8.4.2: - version "8.9.0" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.9.0.tgz#2a994bb67144be1b53fe2d23c53c028adeb7f45e" - integrity sha512-Ja7nszREasGaYUYCI2k4lCKIRTt+y7XuqVoHR44YpI49TtryyqbqvDMn5eqfW7e6HzTukDRIsXqzVHScqRcafg== + version "8.11.0" + resolved "https://registry.yarnpkg.com/ws/-/ws-8.11.0.tgz#6a0d36b8edfd9f96d8b25683db2f8d7de6e8e143" + integrity sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg== ws@~8.2.3: version "8.2.3" From a3b3a4ca0ecc353a2c13be88e517d8f73eb85844 Mon Sep 17 00:00:00 2001 From: pengyin-shan Date: Wed, 30 Nov 2022 15:57:30 -0500 Subject: [PATCH 23/23] fix rubocop --- app/presenters/guidance_presenter.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/presenters/guidance_presenter.rb b/app/presenters/guidance_presenter.rb index d015be1b46..b268d34935 100644 --- a/app/presenters/guidance_presenter.rb +++ b/app/presenters/guidance_presenter.rb @@ -121,8 +121,8 @@ def guidance_groups_by_theme(org: nil, question: nil) return {} unless hashified_guidance_groups.key?(org) - hashified_guidance_groups[org].each_key.each_with_object({}) do |gg, acc| - filtered_gg = hashified_guidance_groups[org][gg].each_key.each_with_object({}) do |theme, ac| + hashified_guidance_groups[org].each_key.with_object({}) do |gg, acc| + filtered_gg = hashified_guidance_groups[org][gg].each_key.with_object({}) do |theme, ac| next unless question.themes.include?(theme) ac[theme] = hashified_guidance_groups[org][gg][theme]

5i5rJf>IgD_c-GSXh^46=i?~i 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 McU+, 2022. # msgid "" msgstr "" -"Project-Id-Version: app 1.0\n" +"Project-Id-Version: DMPRoadmap-Development 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2022-10-25 16:02+0000\n" -"PO-Revision-Date: 2022-10-25 18:03+0200\n" +"POT-Creation-Date: 2022-11-30 14:11-0500\n" +"PO-Revision-Date: 2022-11-30 20:11+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese\n" "Language: pt_BR\n" @@ -263,7 +263,7 @@ msgstr "adicionado" #: ../../app/controllers/contributors_controller.rb:72 #: ../../app/controllers/guidance_groups_controller.rb:55 #: ../../app/controllers/guidances_controller.rb:75 -#: ../../app/controllers/notes_controller.rb:89 +#: ../../app/controllers/notes_controller.rb:88 #: ../../app/controllers/org_admin/departments_controller.rb:50 #: ../../app/controllers/org_admin/sections_controller.rb:103 #: ../../app/controllers/org_admin/templates_controller.rb:205 @@ -283,7 +283,7 @@ msgstr "salvo" #: ../../app/controllers/contributors_controller.rb:74 #: ../../app/controllers/guidance_groups_controller.rb:57 #: ../../app/controllers/guidances_controller.rb:77 -#: ../../app/controllers/notes_controller.rb:107 +#: ../../app/controllers/notes_controller.rb:106 #: ../../app/controllers/org_admin/departments_controller.rb:52 #: ../../app/controllers/org_admin/sections_controller.rb:105 #: ../../app/controllers/org_admin/templates_controller.rb:210 @@ -299,7 +299,7 @@ msgid "save" msgstr "Salvar" #: ../../app/controllers/contributors_controller.rb:84 -#: ../../app/controllers/notes_controller.rb:131 +#: ../../app/controllers/notes_controller.rb:130 #: ../../app/controllers/org_admin/templates_controller.rb:238 #: ../../app/controllers/research_outputs_controller.rb:74 #: ../../app/controllers/super_admin/orgs_controller.rb:94 @@ -307,7 +307,7 @@ msgid "removed" msgstr "removido" #: ../../app/controllers/contributors_controller.rb:87 -#: ../../app/controllers/notes_controller.rb:149 +#: ../../app/controllers/notes_controller.rb:148 #: ../../app/controllers/org_admin/templates_controller.rb:240 #: ../../app/controllers/research_outputs_controller.rb:77 #: ../../app/controllers/super_admin/orgs_controller.rb:97 @@ -333,7 +333,7 @@ msgstr "Ocorreu um erro ao solicitar feedback para este plano." #: ../../app/controllers/guidance_groups_controller.rb:31 #: ../../app/controllers/guidances_controller.rb:53 -#: ../../app/controllers/notes_controller.rb:48 +#: ../../app/controllers/notes_controller.rb:47 #: ../../app/controllers/org_admin/departments_controller.rb:26 #: ../../app/controllers/org_admin/phases_controller.rb:121 #: ../../app/controllers/org_admin/questions_controller.rb:94 @@ -349,7 +349,7 @@ msgstr "criado" #: ../../app/controllers/guidance_groups_controller.rb:34 #: ../../app/controllers/guidances_controller.rb:55 -#: ../../app/controllers/notes_controller.rb:67 +#: ../../app/controllers/notes_controller.rb:66 #: ../../app/controllers/org_admin/departments_controller.rb:30 #: ../../app/controllers/org_admin/phases_controller.rb:123 #: ../../app/controllers/org_admin/questions_controller.rb:96 @@ -1133,17 +1133,17 @@ msgid "Owner" msgstr "Proprietário" #: ../../app/helpers/plans_helper.rb:10 -#: ../../app/views/plans/_share_form.html.erb:127 +#: ../../app/views/plans/_share_form.html.erb:129 msgid "Co-owner" msgstr "Coproprietário" #: ../../app/helpers/plans_helper.rb:12 -#: ../../app/views/plans/_share_form.html.erb:133 +#: ../../app/views/plans/_share_form.html.erb:135 msgid "Editor" msgstr "Editor" #: ../../app/helpers/plans_helper.rb:14 -#: ../../app/views/plans/_share_form.html.erb:139 +#: ../../app/views/plans/_share_form.html.erb:141 msgid "Read only" msgstr "Somente leitura" @@ -1152,7 +1152,7 @@ msgid "Public" msgstr "Público" #: ../../app/helpers/plans_helper.rb:26 ../../app/helpers/plans_helper.rb:28 -#: ../../app/views/layouts/application.html.erb:129 +#: ../../app/views/layouts/application.html.erb:128 msgid "Private" msgstr "Privado" @@ -1165,7 +1165,7 @@ msgid "Public: anyone can view." msgstr "Público: qualquer pessoa pode ver." #: ../../app/helpers/plans_helper.rb:39 -#: ../../app/views/layouts/application.html.erb:130 +#: ../../app/views/layouts/application.html.erb:129 msgid "Private: restricted to me and people I invite." msgstr "Privado: restrito a mim e a meus convidados." @@ -1392,62 +1392,61 @@ msgid "Affiliation: " msgstr "Afiliação: " #: ../../app/models/concerns/exportable_plan.rb:163 -#: ../../app/models/concerns/exportable_plan.rb:164 msgid "%{affiliation}" msgstr "%{affiliation}" -#: ../../app/models/concerns/exportable_plan.rb:166 -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:165 +#: ../../app/models/concerns/exportable_plan.rb:167 #: ../../app/views/shared/export/_plan_coversheet.erb:32 #: ../../app/views/shared/export/_plan_txt.erb:22 #: ../../app/views/shared/export/_plan_txt.erb:24 msgid "Template: " msgstr "Modelo: " -#: ../../app/models/concerns/exportable_plan.rb:166 +#: ../../app/models/concerns/exportable_plan.rb:165 msgid "%{funder}" msgstr "%{funder}" -#: ../../app/models/concerns/exportable_plan.rb:168 +#: ../../app/models/concerns/exportable_plan.rb:167 msgid "%{template}" msgstr "%{template}" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 #: ../../app/views/shared/export/_plan_txt.erb:27 msgid "Grant number: " msgstr "Número da Concessão" -#: ../../app/models/concerns/exportable_plan.rb:170 +#: ../../app/models/concerns/exportable_plan.rb:169 msgid "%{grant_number}" msgstr "%{grant_number}" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 #: ../../app/views/shared/export/_plan_coversheet.erb:42 #: ../../app/views/shared/export/_plan_txt.erb:30 msgid "Project abstract: " msgstr "Resumo do projeto:" -#: ../../app/models/concerns/exportable_plan.rb:172 +#: ../../app/models/concerns/exportable_plan.rb:171 msgid "%{description}" msgstr "%{description}" -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 #: ../../app/views/shared/export/_plan_coversheet.erb:58 #: ../../app/views/shared/export/_plan_txt.erb:33 msgid "Last modified: " msgstr "Última modificação: " -#: ../../app/models/concerns/exportable_plan.rb:174 +#: ../../app/models/concerns/exportable_plan.rb:173 msgid "%{date}" msgstr "%{date}" -#: ../../app/models/concerns/exportable_plan.rb:175 +#: ../../app/models/concerns/exportable_plan.rb:174 #: ../../app/views/shared/export/_plan_coversheet.erb:65 #: ../../app/views/shared/export/_plan_txt.erb:34 msgid "Copyright information:" msgstr "Informação de copyright" -#: ../../app/models/concerns/exportable_plan.rb:176 +#: ../../app/models/concerns/exportable_plan.rb:175 msgid "" "The above plan creator(s) have agreed that others may use as\n" " much of the text of this plan as they would like in their own pla" @@ -1471,12 +1470,12 @@ msgstr "" "relação com\n" "             seu projeto ou proposta" -#: ../../app/models/concerns/exportable_plan.rb:199 +#: ../../app/models/concerns/exportable_plan.rb:198 msgid "Not Answered" msgstr "Não Respondido" #: ../../app/models/concerns/validation_messages.rb:11 -#: ../../app/models/template.rb:226 +#: ../../app/models/template.rb:223 msgid "can't be blank" msgstr "não pode estar em branco" @@ -1566,7 +1565,7 @@ msgstr "teste" msgid "private" msgstr "privado" -#: ../../app/models/plan.rb:617 +#: ../../app/models/plan.rb:615 msgid "must be after the start date" msgstr "deve ser posterior à data de início" @@ -1612,51 +1611,51 @@ msgstr "Parâmetro de formatação desconhecido" msgid "Invalid maximum pages" msgstr "Máximo de páginas inválido" -#: ../../app/models/template.rb:254 +#: ../../app/models/template.rb:251 msgid "A historical template cannot be retrieved for being modified" msgstr "Um modelo histórico não pode ser recuperado para ser modificado" -#: ../../app/models/template.rb:378 +#: ../../app/models/template.rb:375 msgid "generate_copy! requires an organisation target" msgstr "generate_copy! requer uma meta de organização" -#: ../../app/models/template.rb:387 +#: ../../app/models/template.rb:384 msgid "Copy of %{template}" msgstr "Cópia do %{template}" -#: ../../app/models/template.rb:394 +#: ../../app/models/template.rb:391 msgid "generate_version! requires a published template" msgstr "generate_version! requer um modelo publicado" -#: ../../app/models/template.rb:408 +#: ../../app/models/template.rb:405 msgid "customize! requires an organisation target" msgstr "customizar! requer uma meta de organização" -#: ../../app/models/template.rb:411 +#: ../../app/models/template.rb:408 msgid "customize! requires a template from a funder" msgstr "customizar! requer um modelo de um financiador" -#: ../../app/models/template.rb:447 +#: ../../app/models/template.rb:444 msgid "You can not publish a published template. " msgstr "Você não pode publicar um modelo publicado." -#: ../../app/models/template.rb:451 +#: ../../app/models/template.rb:448 msgid "You can not publish a historical version of this template. " msgstr "Você não pode publicar uma versão histórica deste modelo." -#: ../../app/models/template.rb:456 +#: ../../app/models/template.rb:453 msgid "You can not publish a template without phases. " msgstr "Você não pode publicar um modelo sem fases." -#: ../../app/models/template.rb:461 +#: ../../app/models/template.rb:458 msgid "You can not publish a template without sections in a phase. " msgstr "Você não pode publicar um modelo sem seções em uma fase." -#: ../../app/models/template.rb:466 +#: ../../app/models/template.rb:463 msgid "You can not publish a template without questions in a section. " msgstr "Você não pode publicar um modelo sem perguntas em uma seção." -#: ../../app/models/template.rb:470 +#: ../../app/models/template.rb:467 msgid "Conditions in the template refer backwards" msgstr "As condições no modelo se referem ao contrário" @@ -1664,6 +1663,58 @@ msgstr "As condições no modelo se referem ao contrário" msgid "A Data Management Plan in %{application_name} has been shared with you" msgstr "Um Plano de Gestão de Dados em %{application_name} foi compartilhado com você" +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 +#: ../../app/views/contributors/_form.html.erb:10 +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:8 +#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 +#: ../../app/views/org_admin/departments/edit.html.erb:14 +#: ../../app/views/org_admin/departments/new.html.erb:14 +#: ../../app/views/paginable/api_clients/_index.html.erb:6 +#: ../../app/views/paginable/contributors/_index.html.erb:7 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 +#: ../../app/views/paginable/themes/_index.html.erb:4 +#: ../../app/views/paginable/users/_index.html.erb:20 +#: ../../app/views/super_admin/api_clients/_form.html.erb:11 +msgid "Name" +msgstr "Nome" + +#: ../../app/models/user/at_csv.rb:7 +msgid "E-Mail" +msgstr "O email" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Created Date" +msgstr "Data de criação" + +#: ../../app/models/user/at_csv.rb:7 +msgid "Last Activity" +msgstr "ultima atividade" + +#: ../../app/models/user/at_csv.rb:7 +#: ../../app/views/layouts/_branding.html.erb:71 +#: ../../app/views/org_admin/users/edit.html.erb:71 +#: ../../app/views/paginable/users/_index.html.erb:26 +#: ../../app/views/super_admin/users/edit.html.erb:105 +msgid "Plans" +msgstr "Planos" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/users/_index.html.erb:27 +msgid "Current Privileges" +msgstr "Privilégios atuais" + +#: ../../app/models/user/at_csv.rb:8 +#: ../../app/views/paginable/notifications/_index.html.erb:8 +#: ../../app/views/paginable/users/_index.html.erb:28 +#: ../../app/views/super_admin/notifications/_form.html.erb:34 +msgid "Active" +msgstr "Ativo" + +#: ../../app/models/user/at_csv.rb:8 +msgid "Department" +msgstr "Departamento" + #: ../../app/policies/api/v0/guidance_group_policy.rb:11 #: ../../app/policies/api/v0/guidance_policy.rb:11 #: ../../app/policies/api/v0/statistics_policy.rb:11 @@ -1870,7 +1921,7 @@ msgid "Please wait, Standards are loading" msgstr "Por favor, espere enquanto os Padrões são carregados." #: ../../app/views/answers/_new_edit.html.erb:68 -#: ../../app/views/contributors/_form.html.erb:94 +#: ../../app/views/contributors/_form.html.erb:95 #: ../../app/views/devise/passwords/edit.html.erb:35 #: ../../app/views/devise/registrations/_password_details.html.erb:31 #: ../../app/views/devise/registrations/_personal_details.html.erb:90 @@ -1891,7 +1942,7 @@ msgstr "Por favor, espere enquanto os Padrões são carregados." #: ../../app/views/plans/_edit_details.html.erb:11 #: ../../app/views/plans/_guidance_selection.html.erb:23 #: ../../app/views/questions/_preview_question.html.erb:111 -#: ../../app/views/research_outputs/_form.html.erb:177 +#: ../../app/views/research_outputs/_form.html.erb:178 #: ../../app/views/super_admin/api_clients/_form.html.erb:67 #: ../../app/views/super_admin/notifications/_form.html.erb:66 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -1932,20 +1983,6 @@ msgstr " perguntas do seu plano." msgid "This answer triggers email(s) to " msgstr "Esta resposta aciona email(s) para" -#: ../../app/views/contact_us/contacts/_new_left.html.erb:4 -#: ../../app/views/contributors/_form.html.erb:10 -#: ../../app/views/org_admin/conditions/_webhook_form.html.erb:14 -#: ../../app/views/org_admin/departments/edit.html.erb:14 -#: ../../app/views/org_admin/departments/new.html.erb:14 -#: ../../app/views/paginable/api_clients/_index.html.erb:6 -#: ../../app/views/paginable/contributors/_index.html.erb:7 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:6 -#: ../../app/views/paginable/themes/_index.html.erb:4 -#: ../../app/views/paginable/users/_index.html.erb:20 -#: ../../app/views/super_admin/api_clients/_form.html.erb:11 -msgid "Name" -msgstr "Nome" - #: ../../app/views/contact_us/contacts/_new_left.html.erb:13 #: ../../app/views/contact_us/contacts/_new_right.html.erb:23 #: ../../app/views/contributors/_form.html.erb:19 @@ -1955,7 +1992,7 @@ msgstr "Nome" #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/contributors/_index.html.erb:11 #: ../../app/views/paginable/users/_index.html.erb:21 -#: ../../app/views/plans/_share_form.html.erb:107 +#: ../../app/views/plans/_share_form.html.erb:109 #: ../../app/views/shared/_create_account_form.html.erb:12 #: ../../app/views/shared/_sign_in_form.html.erb:3 #: ../../app/views/super_admin/users/edit.html.erb:15 @@ -1981,7 +2018,7 @@ msgid "Security check" msgstr "Verificação de segurança" #: ../../app/views/contact_us/contacts/_new_left.html.erb:43 -#: ../../app/views/plans/_share_form.html.erb:146 +#: ../../app/views/plans/_share_form.html.erb:148 msgid "Submit" msgstr "Submeter" @@ -2012,8 +2049,8 @@ msgstr "" #: ../../app/views/contact_us/contacts/new.html.erb:10 #: ../../app/views/layouts/_branding.html.erb:41 -#: ../../app/views/layouts/_footer.html.erb:24 -#: ../../app/views/layouts/_footer.html.erb:30 +#: ../../app/views/layouts/_footer.html.erb:23 +#: ../../app/views/layouts/_footer.html.erb:29 #: ../../app/views/org_admin/plans/index.html.erb:40 #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:39 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:24 @@ -2056,7 +2093,7 @@ msgstr "Afiliação" msgid "Roles" msgstr "Papéis" -#: ../../app/views/contributors/_form.html.erb:96 +#: ../../app/views/contributors/_form.html.erb:97 #: ../../app/views/layouts/modal_search/_result.html.erb:23 #: ../../app/views/notes/_archive.html.erb:10 #: ../../app/views/notes/_list.html.erb:16 @@ -2070,16 +2107,16 @@ msgstr "Papéis" #: ../../app/views/paginable/guidance_groups/_index.html.erb:56 #: ../../app/views/paginable/guidances/_index.html.erb:61 #: ../../app/views/paginable/orgs/_index.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:75 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:78 #: ../../app/views/paginable/research_outputs/_index.html.erb:53 #: ../../app/views/paginable/templates/_customisable.html.erb:67 #: ../../app/views/paginable/templates/_organisational.html.erb:74 -#: ../../app/views/plans/_share_form.html.erb:89 -#: ../../app/views/research_outputs/_form.html.erb:179 +#: ../../app/views/plans/_share_form.html.erb:91 +#: ../../app/views/research_outputs/_form.html.erb:180 msgid "Remove" msgstr "Remover" -#: ../../app/views/contributors/_form.html.erb:99 +#: ../../app/views/contributors/_form.html.erb:100 #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:29 #: ../../app/views/guidances/new_edit.html.erb:50 #: ../../app/views/notes/_archive.html.erb:11 @@ -2090,7 +2127,7 @@ msgstr "Remover" #: ../../app/views/org_admin/questions/_form.html.erb:105 #: ../../app/views/plans/_guidance_selection.html.erb:35 #: ../../app/views/plans/new.html.erb:124 -#: ../../app/views/research_outputs/_form.html.erb:182 +#: ../../app/views/research_outputs/_form.html.erb:183 #: ../../app/views/super_admin/api_clients/_form.html.erb:86 #: ../../app/views/super_admin/notifications/_form.html.erb:73 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -2284,10 +2321,6 @@ msgstr "" msgid "Hello" msgstr "Olá" -#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 -msgid "Your" -msgstr "Seu(sua)" - #: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 msgid "" "account has been locked due to an excessive number of unsuccessful sign in att" @@ -2296,6 +2329,10 @@ msgstr "" "conta foi bloqueada devido a um número execessivos de tentativas de entrar fra" "cassadas." +#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4 +msgid "Your" +msgstr "Seu(sua)" + #: ../../app/views/devise/mailer/unlock_instructions.html.erb:6 msgid "Click the link below to unlock your account" msgstr "Clique no link abaixo para desbloquear sua conta" @@ -2543,7 +2580,6 @@ msgid "Do you have a %{application_name} account?" msgstr "Você tem uma conta %{application_name}?" #: ../../app/views/devise/registrations/new.html.erb:22 -#: ../../app/views/layouts/_navigation.html.erb:63 #: ../../app/views/layouts/_signin_signout.html.erb:41 #: ../../app/views/shared/_access_controls.html.erb:5 #: ../../app/views/shared/_sign_in_form.html.erb:19 @@ -2599,6 +2635,27 @@ msgstr "" "ão escolher a exibição dessas instruções especiais quando estiverem respondend" "o as questões no wizard 'criar plano'." +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:15 +#: ../../app/views/org_admin/templates/_form.html.erb:35 +#: ../../app/views/org_admin/templates/_row.html.erb:10 +#: ../../app/views/org_admin/templates/_row.html.erb:13 +#: ../../app/views/org_admin/templates/_show.html.erb:19 +#: ../../app/views/org_admin/templates/_show.html.erb:22 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 +#: ../../app/views/paginable/guidances/_index.html.erb:37 +#: ../../app/views/paginable/templates/_customisable.html.erb:31 +#: ../../app/views/paginable/templates/_customisable.html.erb:34 +#: ../../app/views/paginable/templates/_history.html.erb:8 +#: ../../app/views/paginable/templates/_organisational.html.erb:36 +#: ../../app/views/paginable/templates/_organisational.html.erb:39 +msgid "Published" +msgstr "Publicado" + +#: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 +#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 +msgid "Optional subset" +msgstr "Subconjunto opcional" + #: ../../app/views/guidance_groups/_guidance_group_form.html.erb:21 msgid " (e.g. School/ Department) " msgstr " (e.g. Instituição/ Departamento) " @@ -2768,13 +2825,6 @@ msgstr "Anterior" msgid "Admin" msgstr "Administrador" -#: ../../app/views/layouts/_branding.html.erb:71 -#: ../../app/views/org_admin/users/edit.html.erb:71 -#: ../../app/views/paginable/users/_index.html.erb:26 -#: ../../app/views/super_admin/users/edit.html.erb:105 -msgid "Plans" -msgstr "Planos" - #: ../../app/views/layouts/_branding.html.erb:77 #: ../../app/views/org_admin/templates/index.html.erb:4 #: ../../app/views/paginable/orgs/_index.html.erb:8 @@ -2842,12 +2892,8 @@ msgid "Privacy statement" msgstr "Política de privacidade" #: ../../app/views/layouts/_footer.html.erb:17 -msgid "Accessibility statement" -msgstr "Declaração de acessibilidade" - -#: ../../app/views/layouts/_footer.html.erb:18 -msgid "Github" -msgstr "Github" +msgid "GitHub" +msgstr "GitHub" #: ../../app/views/layouts/_navigation.html.erb:12 #: ../../app/views/orgs/_profile_form.html.erb:55 @@ -2927,50 +2973,50 @@ msgstr "Sair" msgid "%{application_name}" msgstr "%{application_name}" -#: ../../app/views/layouts/application.html.erb:91 -msgid "Error:" -msgstr "Erro" - #: ../../app/views/layouts/application.html.erb:91 msgid "Notice:" msgstr "Nota:" +#: ../../app/views/layouts/application.html.erb:91 +msgid "Error:" +msgstr "Erro" + #: ../../app/views/layouts/application.html.erb:102 msgid "Loading..." msgstr "Carregando..." -#: ../../app/views/layouts/application.html.erb:122 +#: ../../app/views/layouts/application.html.erb:121 #: ../../app/views/plans/new.html.erb:2 msgid "This field is required." msgstr "Este campo é obrigatório." -#: ../../app/views/layouts/application.html.erb:124 +#: ../../app/views/layouts/application.html.erb:123 #: ../../app/views/shared/_create_account_form.html.erb:31 msgid "Show password" msgstr "Mostrar senha" -#: ../../app/views/layouts/application.html.erb:125 +#: ../../app/views/layouts/application.html.erb:124 msgid "Select an organisation from the list." msgstr "Selecione uma organização da lista." -#: ../../app/views/layouts/application.html.erb:126 +#: ../../app/views/layouts/application.html.erb:125 msgid "My organisation isn't listed" msgstr "Minha organização não está listada" -#: ../../app/views/layouts/application.html.erb:128 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:39 +#: ../../app/views/layouts/application.html.erb:127 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:42 msgid "N/A" msgstr "N/A" -#: ../../app/views/layouts/application.html.erb:132 +#: ../../app/views/layouts/application.html.erb:131 msgid "Hide list." msgstr "Esconder lista." -#: ../../app/views/layouts/application.html.erb:133 +#: ../../app/views/layouts/application.html.erb:132 msgid "See the full list of partner institutions." msgstr "Veja a lista completa de instituições parceiras" -#: ../../app/views/layouts/application.html.erb:135 +#: ../../app/views/layouts/application.html.erb:134 msgid "" "Unable to find a suitable template for the research organisation and funder yo" "u selected." @@ -2978,29 +3024,29 @@ msgstr "" "Não conseguimos encontrar um modelo adequado para a instituição de pesquisa e " "o órgão financiador que você selecionou." -#: ../../app/views/layouts/application.html.erb:136 +#: ../../app/views/layouts/application.html.erb:135 msgid "Please select a research organisation and funder to continue." msgstr "" "Por favor, selecione uma instituição de pesquisa e um órgão financiador para c" "ontinuar." -#: ../../app/views/layouts/application.html.erb:138 +#: ../../app/views/layouts/application.html.erb:137 msgid "Loading ..." msgstr "Carregando ..." -#: ../../app/views/layouts/application.html.erb:139 +#: ../../app/views/layouts/application.html.erb:138 msgid "Unable to load the section's content at this time." msgstr "Não carregar o conteúdo da seção neste momento." -#: ../../app/views/layouts/application.html.erb:140 +#: ../../app/views/layouts/application.html.erb:139 msgid "Unable to load the question's content at this time." msgstr "Não foi carregar o conteúdo da pergunta no momento." -#: ../../app/views/layouts/application.html.erb:141 +#: ../../app/views/layouts/application.html.erb:140 msgid "Opens in a new window" msgstr "Abre em uma nova janela" -#: ../../app/views/layouts/application.html.erb:143 +#: ../../app/views/layouts/application.html.erb:142 msgid "" "%{n} results are available, use up and down arrows to navigate suggestions. Us" "e the Enter key to select a suggestion or the Escape key to close the suggesti" @@ -3010,11 +3056,11 @@ msgstr "" " navegar pelas sugestões. Use a tecla Enter para selecionar uma sugestão ou a " "tecla Escape para fechar as sugestões." -#: ../../app/views/layouts/application.html.erb:144 +#: ../../app/views/layouts/application.html.erb:143 msgid "No results are available for your entry." msgstr "Nenhum resultado está disponível para sua entrada." -#: ../../app/views/layouts/application.html.erb:145 +#: ../../app/views/layouts/application.html.erb:144 msgid "Searching ..." msgstr "Procurando ..." @@ -3028,7 +3074,7 @@ msgid "No results matched your filter criteria." msgstr "Nenhum resultado correspondeu aos seus critérios de filtro." #: ../../app/views/layouts/modal_search/_form.html.erb:41 -#: ../../app/views/layouts/modal_search/_form.html.erb:83 +#: ../../app/views/layouts/modal_search/_form.html.erb:84 msgid "Close" msgstr "Fechar" @@ -3036,7 +3082,7 @@ msgstr "Fechar" msgid "%{topic} search" msgstr "%{topic} pesquisa" -#: ../../app/views/layouts/modal_search/_form.html.erb:66 +#: ../../app/views/layouts/modal_search/_form.html.erb:67 msgid "Apply filter(s)" msgstr "Aplicar filtro (s)" @@ -3072,7 +3118,7 @@ msgstr "Adicionar Comentário" #: ../../app/views/paginable/guidance_groups/_index.html.erb:49 #: ../../app/views/paginable/guidances/_index.html.erb:54 #: ../../app/views/paginable/orgs/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:58 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 #: ../../app/views/paginable/research_outputs/_index.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:56 #: ../../app/views/paginable/templates/_organisational.html.erb:56 @@ -3347,13 +3393,13 @@ msgstr "Tipo" #: ../../app/views/paginable/orgs/_index.html.erb:10 #: ../../app/views/paginable/orgs/_index.html.erb:30 #: ../../app/views/paginable/plans/_privately_visible.html.erb:13 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:53 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:56 #: ../../app/views/paginable/research_outputs/_index.html.erb:23 #: ../../app/views/paginable/research_outputs/_index.html.erb:48 #: ../../app/views/paginable/templates/_customisable.html.erb:51 #: ../../app/views/paginable/templates/_history.html.erb:10 #: ../../app/views/paginable/templates/_organisational.html.erb:53 -#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:53 msgid "Actions" msgstr "Ações" @@ -3624,21 +3670,6 @@ msgstr "para %{org_name} interno use somente" msgid "Status" msgstr "Status" -#: ../../app/views/org_admin/templates/_form.html.erb:35 -#: ../../app/views/org_admin/templates/_row.html.erb:10 -#: ../../app/views/org_admin/templates/_row.html.erb:13 -#: ../../app/views/org_admin/templates/_show.html.erb:19 -#: ../../app/views/org_admin/templates/_show.html.erb:22 -#: ../../app/views/paginable/guidance_groups/_index.html.erb:26 -#: ../../app/views/paginable/guidances/_index.html.erb:37 -#: ../../app/views/paginable/templates/_customisable.html.erb:31 -#: ../../app/views/paginable/templates/_customisable.html.erb:34 -#: ../../app/views/paginable/templates/_history.html.erb:8 -#: ../../app/views/paginable/templates/_organisational.html.erb:36 -#: ../../app/views/paginable/templates/_organisational.html.erb:39 -msgid "Published" -msgstr "Publicado" - #: ../../app/views/org_admin/templates/_form.html.erb:37 #: ../../app/views/org_admin/templates/_row.html.erb:16 #: ../../app/views/org_admin/templates/_show.html.erb:26 @@ -4007,7 +4038,7 @@ msgstr "Informação de perfil" #: ../../app/views/orgs/admin_edit.html.erb:22 #: ../../app/views/plans/_navigation.html.erb:33 -#: ../../app/views/plans/_request_feedback_form.html.erb:13 +#: ../../app/views/plans/_request_feedback_form.html.erb:19 #: ../../app/views/static_pages/help.html.erb:45 msgid "Request feedback" msgstr "Solicitar feedback" @@ -4100,13 +4131,9 @@ msgstr "" "Você está prestes a excluir '%{department_name}'. Isso afetará a orientação. V" "ocê tem certeza?" -#: ../../app/views/paginable/guidance_groups/_index.html.erb:8 -msgid "Optional subset" -msgstr "Subconjunto opcional" - #: ../../app/views/paginable/guidance_groups/_index.html.erb:31 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:45 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:48 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:12 @@ -4114,8 +4141,8 @@ msgid "No" msgstr "Não" #: ../../app/views/paginable/guidance_groups/_index.html.erb:33 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:35 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:43 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:38 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:46 #: ../../app/views/paginable/templates/_history.html.erb:42 #: ../../app/views/paginable/users/_index.html.erb:92 #: ../../app/views/shared/_create_plan_modal.html.erb:11 @@ -4163,12 +4190,6 @@ msgstr "Compartilhar" msgid "Expiration" msgstr "Expiração" -#: ../../app/views/paginable/notifications/_index.html.erb:8 -#: ../../app/views/paginable/users/_index.html.erb:28 -#: ../../app/views/super_admin/notifications/_form.html.erb:34 -msgid "Active" -msgstr "Ativo" - #: ../../app/views/paginable/orgs/_index.html.erb:6 msgid "Administrator Email" msgstr "Email do Administrador" @@ -4234,8 +4255,8 @@ msgstr "Criado" #: #: ../../app/views/paginable/plans/_organisationally_or_publicly_visible.html.erb:21 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 -#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:73 #: ../../app/views/paginable/plans/_publicly_visible.html.erb:9 #: ../../app/views/paginable/templates/_history.html.erb:6 #: ../../app/views/paginable/templates/_organisational.html.erb:2 @@ -4283,22 +4304,30 @@ msgstr "Papel" msgid "Shared" msgstr "Compartilhado" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:61 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:64 #: ../../app/views/plans/_navigation.html.erb:28 msgid "Share" msgstr "Compartilhar" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:65 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:68 #: ../../app/views/paginable/templates/_organisational.html.erb:67 msgid "Copy" msgstr "Copiar" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:67 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:70 #: ../../app/views/paginable/templates/_history.html.erb:58 msgid "View" msgstr "Ver" -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 +msgid "" +"Are you sure you wish to remove this plan? Any collaborators will still be abl" +"e to access it." +msgstr "" +"Tem certeza de que deseja remover esse plano? Quaisquer outros colaboradores a" +"inda conseguirão acessá-lo." + +#: ../../app/views/paginable/plans/_privately_visible.html.erb:77 msgid "" "Are you sure you wish to remove this public plan? This will remove it from the" " Public DMPs page but any collaborators will still be able to access it." @@ -4307,14 +4336,6 @@ msgstr "" "a de PGDs Públicos, mas quaisquer outros colaboradores ainda conseguirão acess" "á-lo." -#: ../../app/views/paginable/plans/_privately_visible.html.erb:74 -msgid "" -"Are you sure you wish to remove this plan? Any collaborators will still be abl" -"e to access it." -msgstr "" -"Tem certeza de que deseja remover esse plano? Quaisquer outros colaboradores a" -"inda conseguirão acessá-lo." - #: ../../app/views/paginable/plans/_publicly_visible.html.erb:17 msgid "Not Applicable" msgstr "Não Aplicável" @@ -4477,10 +4498,6 @@ msgstr "Data de criação" msgid "Last activity" msgstr "Última atividade" -#: ../../app/views/paginable/users/_index.html.erb:27 -msgid "Current Privileges" -msgstr "Privilégios atuais" - #: ../../app/views/paginable/users/_index.html.erb:46 msgid "Edit Profile" msgstr "Editar perfil" @@ -4783,11 +4800,20 @@ msgstr "" msgid "Request expert feedback" msgstr "Solicitar feedback de especialista" -#: ../../app/views/plans/_request_feedback_form.html.erb:11 +#: ../../app/views/plans/_request_feedback_form.html.erb:9 +msgid "" +"Click below to give data management staff at %{owner_org}, the Plan Owner's or" +"g, access to read and comment on your plan." +msgstr "" +"Clique abaixo para dar à equipe de gerenciamento de dados em %{owner_org}, a o" +"rganização do proprietário do plano, acesso para ler e comentar sobre seu plan" +"o." + +#: ../../app/views/plans/_request_feedback_form.html.erb:17 msgid "You can continue to edit and download the plan in the interim." msgstr "Você pode continuar a editar e baixar o plano enquanto isso." -#: ../../app/views/plans/_request_feedback_form.html.erb:17 +#: ../../app/views/plans/_request_feedback_form.html.erb:23 msgid "Feedback has been requested." msgstr "Foi solicitado feedback." @@ -4808,7 +4834,7 @@ msgstr "" msgid "Set plan visibility" msgstr "Definir visibiliade do plano" -#: ../../app/views/plans/_share_form.html.erb:9 +#: ../../app/views/plans/_share_form.html.erb:13 msgid "" "Public or organisational visibility is intended for finished plans. You must a" "nswer at least %{percentage}%% of the questions to enable these options. Note:" @@ -4819,7 +4845,7 @@ msgstr "" "tar essas opções. Nota: por padrão, atribui-se visibilidade privada aos planos" " de teste." -#: ../../app/views/plans/_share_form.html.erb:19 +#: ../../app/views/plans/_share_form.html.erb:21 msgid "" "Private: visible to me, specified collaborators and administrators at my organ" "isation" @@ -4827,20 +4853,20 @@ msgstr "" "Privado: visível para mim, para os colaboradores especificados e os administra" "dores de minha organização" -#: ../../app/views/plans/_share_form.html.erb:27 +#: ../../app/views/plans/_share_form.html.erb:29 #: ../../app/views/user_mailer/plan_visibility.html.erb:12 msgid "Organisation: anyone at my organisation can view" msgstr "Organização: qualquer pessoa em minha organização pode ver" -#: ../../app/views/plans/_share_form.html.erb:35 +#: ../../app/views/plans/_share_form.html.erb:37 msgid "Public: anyone can view" msgstr "Público: qualquer pessoa pode ver" -#: ../../app/views/plans/_share_form.html.erb:42 +#: ../../app/views/plans/_share_form.html.erb:44 msgid "Manage collaborators" msgstr "Gerenciar colaboradores" -#: ../../app/views/plans/_share_form.html.erb:43 +#: ../../app/views/plans/_share_form.html.erb:45 msgid "" "Invite specific people to read, edit, or administer your plan. Invitees will r" "eceive an email notification that they have access to this plan." @@ -4849,20 +4875,20 @@ msgstr "" "vidados receberão por email uma notificação de que eles têm acesso a este plan" "o." -#: ../../app/views/plans/_share_form.html.erb:48 +#: ../../app/views/plans/_share_form.html.erb:50 msgid "Email address" msgstr "Endereço de email" -#: ../../app/views/plans/_share_form.html.erb:49 -#: ../../app/views/plans/_share_form.html.erb:122 +#: ../../app/views/plans/_share_form.html.erb:51 +#: ../../app/views/plans/_share_form.html.erb:124 msgid "Permissions" msgstr "Permissões" -#: ../../app/views/plans/_share_form.html.erb:89 +#: ../../app/views/plans/_share_form.html.erb:91 msgid "Are you sure?" msgstr "Tem certeza?" -#: ../../app/views/plans/_share_form.html.erb:100 +#: ../../app/views/plans/_share_form.html.erb:102 msgid "Invite collaborators" msgstr "Convidar colaboradores" @@ -5071,6 +5097,10 @@ msgstr "" msgid "Please describe the output type" msgstr "Descreva o tipo de saída" +#: ../../app/views/research_outputs/_form.html.erb:27 +msgid "Research output type" +msgstr "Tipo de saída de pesquisa" + #: ../../app/views/research_outputs/_form.html.erb:44 msgid "Abbreviation" msgstr "Abreviação" @@ -5111,10 +5141,15 @@ msgid "Initial access level" msgstr "Nível de acesso inicial" #: ../../app/views/research_outputs/_form.html.erb:158 +#: ../../app/views/research_outputs/_form.html.erb:164 #: ../../app/views/shared/export/_plan_outputs.erb:23 msgid "Anticipated file size" msgstr "Tamanho de arquivo previsto" +#: ../../app/views/research_outputs/_form.html.erb:170 +msgid "File size units" +msgstr "Unidades de tamanho de arquivo" + #: ../../app/views/research_outputs/edit.html.erb:12 msgid "Editing %{research_output_title}" msgstr "Editando %{research_output_title}" @@ -5132,11 +5167,12 @@ msgstr "Liste sua (s) produção (ões) de pesquisa prevista (s)." msgid "Add a research output" msgstr "Adicionar um resultado de pesquisa" -#: ../../app/views/research_outputs/licenses/_form.html.erb:24 +#: ../../app/views/research_outputs/licenses/_form.html.erb:20 +#: ../../app/views/research_outputs/licenses/_form.html.erb:25 msgid "Initial license" msgstr "Licença inicial" -#: ../../app/views/research_outputs/licenses/_form.html.erb:30 +#: ../../app/views/research_outputs/licenses/_form.html.erb:31 msgid "For guidance on selecting a license:" msgstr "Para obter orientação sobre como selecionar uma licença:" @@ -5164,10 +5200,18 @@ msgstr "Selecione uma área de assunto para refinar sua pesquisa." msgid "- Select a subject area -" msgstr "- Selecione uma área de assunto -" -#: ../../app/views/research_outputs/repositories/_search.html.erb:21 +#: ../../app/views/research_outputs/repositories/_search.html.erb:14 +msgid "Select a subject area" +msgstr "Selecione uma área de assunto" + +#: ../../app/views/research_outputs/repositories/_search.html.erb:22 msgid "- Select a repository type -" msgstr "- Selecione um tipo de repositório -" +#: ../../app/views/research_outputs/repositories/_search.html.erb:24 +msgid "Select a repository type" +msgstr "Selecione um tipo de repositório" + #: ../../app/views/research_outputs/repositories/_search_result.html.erb:20 msgid "Click to view repositories related to %{subject}" msgstr "Clique para ver os repositórios relacionados a %{subject}" @@ -5487,14 +5531,14 @@ msgstr "Inscrever-se" msgid "on the homepage." msgstr "na página inicial." -#: ../../app/views/static_pages/about_us.html.erb:35 -msgid "Please visit the" -msgstr "Por favor, visite o" - #: ../../app/views/static_pages/about_us.html.erb:35 msgid "page for guidance." msgstr "página para orientação." +#: ../../app/views/static_pages/about_us.html.erb:35 +msgid "Please visit the" +msgstr "Por favor, visite o" + #: ../../app/views/static_pages/about_us.html.erb:37 msgid "Customising for your Organisation" msgstr "Customizing para sua organização" @@ -6189,6 +6233,14 @@ msgstr "Não. Planos criados com base em seus modelos" msgid "Statistics on your Templates" msgstr "Estatísticas nos seus modelos" +#: ../../app/views/usage/_total_usage.html.erb:7 +msgid "Total users" +msgstr "Total de usuários" + +#: ../../app/views/usage/_total_usage.html.erb:11 +msgid "Total plans" +msgstr "Total de planos" + #: ../../app/views/usage/_total_usage.html.erb:15 msgid "Excluding Test Plans" msgstr "Excluindo planos de teste" @@ -6330,16 +6382,20 @@ msgstr "" msgid "Hello %{user_name}," msgstr "Olá %{user_name}," -#: ../../app/views/user_mailer/feedback_notification.html.erb:5 +#: ../../app/views/user_mailer/feedback_notification.html.erb:6 msgid "" "%{requestor} has requested feedback on a plan %{link_html}. To add comments, p" -"lease visit the 'Plans' page under the Admin menu in %{tool_name} and open the" +"lease visit the \"Plans\" page under the Admin menu in %{tool_name} and open the" " plan." msgstr "" "%{requestor} solicitou feedback sobre um plano %{link_html}. Para adicionar co" -"mentários, visite a página 'Planos' no menu Admin em %{tool_name} e abra o pla" +"mentários, visite a página \"Planos\" no menu Admin em %{tool_name} e abra o pla" "no." +#: ../../app/views/user_mailer/feedback_notification.html.erb:17 +msgid "Alternatively, you can click the link below:" +msgstr "Alternativamente, você pode clicar no link abaixo:" + #: ../../app/views/user_mailer/new_comment.html.erb:5 msgid "" "%{commenter_name} has commented on your plan %{plan_title}. To view the commen" @@ -6427,22 +6483,22 @@ msgstr "" msgid "Hello %{recipient_name}," msgstr "Olá %{recipient_name}," -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " is creating a Data Management Plan and has answered " -msgstr " está criando um plano de gerenciamento de dados e respondeu" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " to " msgstr " para" -#: ../../app/views/user_mailer/question_answered.html.erb:5 -msgid " in a plan called " -msgstr " em um plano chamado" - #: ../../app/views/user_mailer/question_answered.html.erb:5 msgid " based on the template " msgstr " com base no modelo" +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " is creating a Data Management Plan and has answered " +msgstr " está criando um plano de gerenciamento de dados e respondeu" + +#: ../../app/views/user_mailer/question_answered.html.erb:5 +msgid " in a plan called " +msgstr " em um plano chamado" + #: ../../app/views/user_mailer/sharing_notification.html.erb:5 msgid "" "Your colleague %{inviter_name} has invited you to contribute to \n" @@ -6595,14 +6651,14 @@ msgstr "" msgid "Download users" msgstr "Download de usuários" -#: ../../app/views/users/refresh_token.js.erb:1 -msgid "Successfully regenerate your API token." -msgstr "Gere novamente seu token de API com sucesso." - #: ../../app/views/users/refresh_token.js.erb:1 msgid "Unable to regenerate your API token." msgstr "Não foi possível regenerar seu token de API." +#: ../../app/views/users/refresh_token.js.erb:1 +msgid "Successfully regenerate your API token." +msgstr "Gere novamente seu token de API com sucesso." + #: i18n_placeholders.rb:4 msgid "activerecord.errors.messages.record_invalid" msgstr "activerecord.errors.messages.record_invalid" diff --git a/config/locale/sv_FI/LC_MESSAGES/app.mo b/config/locale/sv_FI/LC_MESSAGES/app.mo index 352f6fb5befcd84cfa6afd73076fdc0071301541..30bf1e1fd74c32a141b509afb06c75b796215f7a 100644 GIT binary patch delta 26987 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 r9g)=kwySnfhn<5Y~}I901C)p0ts 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