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 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/.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..722690cc6c 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: @@ -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..1a866315b3 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 @@ -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/.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 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..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) @@ -104,14 +104,8 @@ 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) - childprocess (3.0.0) + capybara-webmock (0.1.0) + childprocess (4.1.0) coderay (1.1.3) concurrent-ruby (1.1.10) contact_us (1.2.0) @@ -150,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) @@ -220,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) @@ -261,13 +255,16 @@ 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) 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) @@ -298,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 @@ -315,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 @@ -364,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) @@ -372,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) @@ -388,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) @@ -417,9 +414,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) @@ -449,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) @@ -468,10 +467,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 +481,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) @@ -495,9 +495,10 @@ GEM yard-tomdoc (0.7.1) tomparse (>= 0.4.0) yard - zeitwerk (2.6.1) + zeitwerk (2.6.6) PLATFORMS + arm64-darwin-22 x86_64-linux DEPENDENCIES @@ -568,7 +569,7 @@ DEPENDENCIES translation turbo-rails web-console - webdrivers + webdrivers (~> 5.2) webmock webpacker wicked_pdf @@ -580,4 +581,4 @@ RUBY VERSION ruby 2.7.6p219 BUNDLED WITH - 2.3.15 + 2.3.25 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 diff --git a/app/models/user/at_csv.rb b/app/models/user/at_csv.rb index 81d79bc1c2..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 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] 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/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/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.') %>
- <%= 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/_request_feedback_form.html.erb b/app/views/plans/_request_feedback_form.html.erb index 0001332f82..777b419b20 100644 --- a/app/views/plans/_request_feedback_form.html.erb +++ b/app/views/plans/_request_feedback_form.html.erb @@ -4,7 +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 #{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/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..ae52892b9c 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..4e6dcb6373 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" } %> 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) %> 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 diff --git a/bin/setup b/bin/setup index d49acbfd70..54cd0c40a1 100755 --- a/bin/setup +++ b/bin/setup @@ -9,32 +9,65 @@ 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/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' + + 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! '$EDITOR .env' + + puts "\n== Opening credentials editor ... please update as needed ==" + puts " In particular make sure your DB settings are correct." + sleep(3) + system! 'bin/rails credentials:edit' + + puts "\n== Preparing database ==" + system! 'bin/rails db:setup' + + 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/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/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/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..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', 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/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 f9205e9ce9..a2eba675e5 100644 Binary files a/config/locale/de/LC_MESSAGES/app.mo and b/config/locale/de/LC_MESSAGES/app.mo differ 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 0000000000..4d0d6541cb Binary files /dev/null and b/config/locale/en/LC_MESSAGES/app.mo differ diff --git a/config/locale/en/app.po b/config/locale/en/app.po new file mode 100644 index 0000000000..304062bc2d --- /dev/null +++ b/config/locale/en/app.po @@ -0,0 +1,6653 @@ +# 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: 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 5b531deb7a..be3cfc431d 100644 Binary files a/config/locale/en_CA/LC_MESSAGES/app.mo and b/config/locale/en_CA/LC_MESSAGES/app.mo differ diff --git a/config/locale/en_CA/app.po b/config/locale/en_CA/app.po index c0ab990ba8..aa5e9a36b2 100644 --- a/config/locale/en_CA/app.po +++ b/config/locale/en_CA/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: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 8e54d9cdf7..10dba7640f 100644 Binary files a/config/locale/en_GB/LC_MESSAGES/app.mo and b/config/locale/en_GB/LC_MESSAGES/app.mo differ 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 de80a35841..790f499179 100644 Binary files a/config/locale/en_US/LC_MESSAGES/app.mo and b/config/locale/en_US/LC_MESSAGES/app.mo differ diff --git a/config/locale/en_US/app.po b/config/locale/en_US/app.po index 05fff1dd29..38ada31519 100644 --- a/config/locale/en_US/app.po +++ b/config/locale/en_US/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_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 d47919515d..da5bb85252 100644 Binary files a/config/locale/es/LC_MESSAGES/app.mo and b/config/locale/es/LC_MESSAGES/app.mo differ 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 8aeaf1b6b2..e44d9f2676 100644 Binary files a/config/locale/fi/LC_MESSAGES/app.mo and b/config/locale/fi/LC_MESSAGES/app.mo differ diff --git a/config/locale/fi/app.po b/config/locale/fi/app.po index 68a5bb7832..8da5834c61 100644 --- a/config/locale/fi/app.po +++ b/config/locale/fi/app.po @@ -1,14 +1,14 @@ -# Finnish translations for app package. -# Copyright (C) 2022 app -# This file is distributed under the same license as the app package. +# Finnish 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: 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 aceecf5bd4..8e0eef7271 100644 Binary files a/config/locale/fr_CA/LC_MESSAGES/app.mo and b/config/locale/fr_CA/LC_MESSAGES/app.mo differ 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 401aafcbe3..c15ef247c3 100644 Binary files a/config/locale/fr_FR/LC_MESSAGES/app.mo and b/config/locale/fr_FR/LC_MESSAGES/app.mo differ 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 60d4d157dd..d1830d69d1 100644 Binary files a/config/locale/pt_BR/LC_MESSAGES/app.mo and b/config/locale/pt_BR/LC_MESSAGES/app.mo differ diff --git a/config/locale/pt_BR/app.po b/config/locale/pt_BR/app.po index a063f3770b..986a3f5d11 100644 --- a/config/locale/pt_BR/app.po +++ b/config/locale/pt_BR/app.po @@ -1,14 +1,14 @@ -# Portuguese translations for app package. -# Copyright (C) 2022 app -# This file is distributed under the same license as the app package. +# Portuguese 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: 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 352f6fb5be..30bf1e1fd7 100644 Binary files a/config/locale/sv_FI/LC_MESSAGES/app.mo and b/config/locale/sv_FI/LC_MESSAGES/app.mo differ 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 2e41725226..4d25493f02 100644 Binary files a/config/locale/tr_TR/LC_MESSAGES/app.mo and b/config/locale/tr_TR/LC_MESSAGES/app.mo differ 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/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 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 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"