diff --git a/.editorconfig b/.editorconfig
index 3606776e3b..37b3f8a9f7 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -11,7 +11,7 @@ insert_final_newline = true
# Matches multiple files with brace expansion notation
# Set default charset
-[*.{js,rb,erb}]
+[*.{js,scss,rb,erb}]
charset = utf-8
indent_style = space
-indent_size = 2
\ No newline at end of file
+indent_size = 2
diff --git a/.github/workflows/danger.yml b/.github/workflows/danger.yml
new file mode 100644
index 0000000000..d4a5fb329a
--- /dev/null
+++ b/.github/workflows/danger.yml
@@ -0,0 +1,32 @@
+name: Danger
+
+on: [push, pull_request]
+
+jobs:
+ danger:
+ runs-on: ubuntu-20.04
+
+ steps:
+ - uses: actions/checkout@v3
+
+ - name: 'Determine Ruby and Bundler Versions from Gemfile.lock'
+ run: |
+ echo "RUBY_VERSION=`cat ./Gemfile.lock | grep -A 1 'RUBY VERSION' | grep 'ruby' | grep -oE '[0-9]\.[0-9]'`" >> $GITHUB_ENV
+ echo "BUNDLER_VERSION=`cat ./Gemfile.lock | grep -A 1 'BUNDLED WITH' | grep -oE '[0-9]\.[0-9]'`" >> $GITHUB_ENV
+
+ # Install Ruby - using the version found in the Gemfile.lock
+ - name: 'Install Ruby'
+ uses: actions/setup-ruby@v1
+ with:
+ ruby-version: ${{ env.RUBY_VERSION }}
+
+ - name: 'Bundle Install'
+ run: |
+ gem install bundler -v ${{ env.BUNDLER_VERSION }}
+ bundle config path vendor/bundle
+ bundle install --jobs 4 --retry 3 --without pgsql rollbar aws
+
+ - name: 'Run Danger'
+ env:
+ DANGER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: bundle exec danger
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000000..1c5a065ac8
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,21 @@
+# Changelog
+
+### Added
+
+- Added CHANGELOG.md and Danger Github Action [#3257](https://github.com/DMPRoadmap/roadmap/issues/3257)
+- Added validation with custom error message in research_output.rb to ensure a user does not enter a very large value as 'Anticipated file size'. [#3161](https://github.com/DMPRoadmap/roadmap/issues/3161)
+- Added popover for org profile page and added explanation for public plan
+### Fixed
+
+- Froze mail gem version [#3254](https://github.com/DMPRoadmap/roadmap/issues/3254)
+- Updated the CSV export so that it now includes research outputs
+- Updated sans-serif font used in PDF downloads to Roboto since Google API no longer offers Helvetica
+- Fixed discrepencies with default/max per_page values for API and UI pagination
+- Updated JS that used to call the TinyMCE `setMode()` function so that it now calls `mode.set()` because the former is now deprecated.
+- Patched an issue that was causing a template's visibility to change to 'organizationally_visible' when saving on the template details page.
+- Fixed an issue with the Rails 6 keyword arguments change that was causing the `paginable_sort_link` to fail
+
+### Changed
+
+- Added scss files to EditorConfig
+- Change csv file name for statistics from 'Completed' to 'Created'
diff --git a/Dangerfile b/Dangerfile
new file mode 100644
index 0000000000..97e283b0e7
--- /dev/null
+++ b/Dangerfile
@@ -0,0 +1,34 @@
+# frozen_string_literal: true
+
+# Make sure non-trivial amounts of code changes come with corresponding tests
+has_app_changes = !git.modified_files.grep(/lib/).empty? || !git.modified_files.grep(/app/).empty?
+has_test_changes = !git.modified_files.grep(/spec/).empty?
+
+if git.lines_of_code > 50 && has_app_changes && !has_test_changes
+ warn('There are code changes, but no corresponding tests. ' \
+ 'Please include tests if this PR introduces any modifications in ' \
+ 'behavior. \n
+ Ignore this warning if the PR ONLY contains translation.io synced updates.',
+ sticky: false)
+end
+
+# Mainly to encourage writing up some reasoning about the PR, rather than
+# just leaving a title
+warn('Please add a detailed summary in the description.') if github.pr_body.length < 3
+
+# Warn when there is a big PR
+warn('This PR is too big! Consider breaking it down into smaller PRs.') if git.lines_of_code > 1000
+
+# Make it more obvious that a PR is a work in progress and shouldn't be merged yet
+warn('PR is classed as Work in Progress') if github.pr_title.include? '[WIP]'
+
+# Let people say that this isn't worth a CHANGELOG entry in the PR if they choose
+declared_trivial = (github.pr_title + github.pr_body).include?('#trivial') || !has_app_changes
+
+if !git.modified_files.include?('CHANGELOG.md') && !declared_trivial
+ failure(
+ "Please include a CHANGELOG entry. \n
+ You can find it at [CHANGELOG.md](https://github.com/DMPRoadmap/roadmap/blob/main/CHANGELOG.md).",
+ sticky: false
+ )
+end
diff --git a/Gemfile b/Gemfile
index b66c3e792d..c9990b6313 100644
--- a/Gemfile
+++ b/Gemfile
@@ -218,6 +218,11 @@ gem 'dotenv-rails'
gem 'activerecord_json_validator'
+# We need to freeze the mail gem version as the recently released 2.8.0 triggers an exception
+# We will need to check if it's fixed when we migrate to Ruby 3.0/3.1
+# See : https://github.com/DMPRoadmap/roadmap/issues/3254
+gem 'mail', '2.7.1'
+
# ================================= #
# ENVIRONMENT SPECIFIC DEPENDENCIES #
# ================================= #
@@ -292,6 +297,9 @@ group :test do
# This gem brings back assigns to your controller tests as well as assert_template
# to both controller and integration tests.
gem 'rails-controller-testing'
+
+ # automating code review
+ gem 'danger', '~> 9.0', require: false
end
group :ci, :development do
diff --git a/Gemfile.lock b/Gemfile.lock
index 9c48ed2690..3a254d4c6f 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,63 +1,63 @@
GEM
remote: https://rubygems.org/
specs:
- actioncable (6.1.7)
- actionpack (= 6.1.7)
- activesupport (= 6.1.7)
+ actioncable (6.1.7.2)
+ actionpack (= 6.1.7.2)
+ activesupport (= 6.1.7.2)
nio4r (~> 2.0)
websocket-driver (>= 0.6.1)
- actionmailbox (6.1.7)
- actionpack (= 6.1.7)
- activejob (= 6.1.7)
- activerecord (= 6.1.7)
- activestorage (= 6.1.7)
- activesupport (= 6.1.7)
+ actionmailbox (6.1.7.2)
+ actionpack (= 6.1.7.2)
+ activejob (= 6.1.7.2)
+ activerecord (= 6.1.7.2)
+ activestorage (= 6.1.7.2)
+ activesupport (= 6.1.7.2)
mail (>= 2.7.1)
- actionmailer (6.1.7)
- actionpack (= 6.1.7)
- actionview (= 6.1.7)
- activejob (= 6.1.7)
- activesupport (= 6.1.7)
+ actionmailer (6.1.7.2)
+ actionpack (= 6.1.7.2)
+ actionview (= 6.1.7.2)
+ activejob (= 6.1.7.2)
+ activesupport (= 6.1.7.2)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0)
- actionpack (6.1.7)
- actionview (= 6.1.7)
- activesupport (= 6.1.7)
+ actionpack (6.1.7.2)
+ actionview (= 6.1.7.2)
+ activesupport (= 6.1.7.2)
rack (~> 2.0, >= 2.0.9)
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.2.0)
- actiontext (6.1.7)
- actionpack (= 6.1.7)
- activerecord (= 6.1.7)
- activestorage (= 6.1.7)
- activesupport (= 6.1.7)
+ actiontext (6.1.7.2)
+ actionpack (= 6.1.7.2)
+ activerecord (= 6.1.7.2)
+ activestorage (= 6.1.7.2)
+ activesupport (= 6.1.7.2)
nokogiri (>= 1.8.5)
- actionview (6.1.7)
- activesupport (= 6.1.7)
+ actionview (6.1.7.2)
+ activesupport (= 6.1.7.2)
builder (~> 3.1)
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.1, >= 1.2.0)
- activejob (6.1.7)
- activesupport (= 6.1.7)
+ activejob (6.1.7.2)
+ activesupport (= 6.1.7.2)
globalid (>= 0.3.6)
- activemodel (6.1.7)
- activesupport (= 6.1.7)
- activerecord (6.1.7)
- activemodel (= 6.1.7)
- activesupport (= 6.1.7)
+ activemodel (6.1.7.2)
+ activesupport (= 6.1.7.2)
+ activerecord (6.1.7.2)
+ activemodel (= 6.1.7.2)
+ activesupport (= 6.1.7.2)
activerecord_json_validator (2.1.3)
activerecord (>= 4.2.0, < 8)
json_schemer (~> 0.2.18)
- activestorage (6.1.7)
- actionpack (= 6.1.7)
- activejob (= 6.1.7)
- activerecord (= 6.1.7)
- activesupport (= 6.1.7)
+ activestorage (6.1.7.2)
+ actionpack (= 6.1.7.2)
+ activejob (= 6.1.7.2)
+ activerecord (= 6.1.7.2)
+ activesupport (= 6.1.7.2)
marcel (~> 1.0)
mini_mime (>= 1.1.0)
- activesupport (6.1.7)
+ activesupport (6.1.7.2)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
@@ -82,11 +82,11 @@ GEM
bindex (0.8.1)
binding_of_caller (1.0.0)
debug_inspector (>= 0.0.1)
- bootsnap (1.15.0)
+ bootsnap (1.16.0)
msgpack (~> 1.2)
brakeman (5.4.0)
builder (3.2.4)
- bullet (7.0.4)
+ bullet (7.0.7)
activesupport (>= 3.0.0)
uniform_notifier (~> 1.11)
bundle-audit (0.1.0)
@@ -105,14 +105,34 @@ GEM
regexp_parser (>= 1.5, < 3.0)
xpath (~> 3.2)
capybara-webmock (0.1.0)
- childprocess (4.1.0)
+ claide (1.1.0)
+ claide-plugins (0.9.2)
+ cork
+ nap
+ open4 (~> 1.3)
coderay (1.1.3)
- concurrent-ruby (1.1.10)
+ colored2 (3.1.2)
+ concurrent-ruby (1.2.0)
contact_us (1.2.0)
rails (>= 4.2.0)
+ cork (0.3.0)
+ colored2 (~> 3.1)
crack (0.4.5)
rexml
crass (1.0.6)
+ danger (9.2.0)
+ claide (~> 1.0)
+ claide-plugins (>= 0.9.2)
+ colored2 (~> 3.1)
+ cork (~> 0.1)
+ faraday (>= 0.9.0, < 3.0)
+ faraday-http-cache (~> 2.0)
+ git (~> 1.7)
+ kramdown (~> 2.3)
+ kramdown-parser-gfm (~> 1.0)
+ no_proxy_fix
+ octokit (~> 5.0)
+ terminal-table (>= 1, < 4)
database_cleaner (2.0.1)
database_cleaner-active_record (~> 2.0.0)
database_cleaner-active_record (2.0.1)
@@ -126,7 +146,7 @@ GEM
railties (>= 4.1.0)
responders
warden (~> 1.2.3)
- devise_invitable (2.0.6)
+ devise_invitable (2.0.7)
actionmailer (>= 5.0)
devise (>= 4.6)
diff-lcs (1.5.0)
@@ -143,23 +163,25 @@ GEM
fog-aws
ecma-re-validator (0.4.0)
regexp_parser (~> 2.2)
- erubi (1.11.0)
- excon (0.94.0)
+ erubi (1.12.0)
+ excon (0.98.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 (3.0.0)
+ faker (3.1.0)
i18n (>= 1.8.11, < 2)
- faraday (2.7.1)
+ faraday (2.7.4)
faraday-net_http (>= 2.0, < 3.1)
ruby2_keywords (>= 0.0.4)
+ faraday-http-cache (2.4.1)
+ faraday (>= 0.8)
faraday-net_http (3.0.2)
ffi (1.15.5)
flag_shih_tzu (0.3.23)
- fog-aws (3.15.0)
+ fog-aws (3.16.0)
fog-core (~> 2.1)
fog-json (~> 1.1)
fog-xml (~> 0.1)
@@ -177,7 +199,7 @@ GEM
font-awesome-sass (5.15.1)
sassc (>= 1.11)
formatador (1.1.0)
- forwardable (1.3.2)
+ forwardable (1.3.3)
fuubar (2.5.1)
rspec-core (~> 3.0)
ruby-progressbar (~> 1.4)
@@ -186,7 +208,10 @@ GEM
locale (>= 2.0.5)
prime
text (>= 1.3.0)
- globalid (1.0.0)
+ git (1.13.2)
+ addressable (~> 2.8)
+ rchardet (~> 1.8)
+ globalid (1.1.0)
activesupport (>= 5.0)
guard (2.18.0)
formatador (>= 0.2.4)
@@ -200,26 +225,26 @@ GEM
hana (1.3.7)
hashdiff (1.0.1)
hashie (5.0.0)
- highline (2.0.3)
+ highline (2.1.0)
htmltoword (1.1.1)
actionpack
nokogiri
rubyzip (>= 1.0)
- httparty (0.20.0)
- mime-types (~> 3.0)
+ httparty (0.21.0)
+ mini_mime (>= 1.0.0)
multi_xml (>= 0.5.2)
i18n (1.12.0)
concurrent-ruby (~> 1.0)
jbuilder (2.11.5)
actionview (>= 5.0.0)
activesupport (>= 5.0.0)
- json (2.6.2)
- json_schemer (0.2.23)
+ json (2.6.3)
+ json_schemer (0.2.24)
ecma-re-validator (~> 0.3)
hana (~> 1.3)
regexp_parser (~> 2.0)
uri_template (~> 0.7)
- jwt (2.5.0)
+ jwt (2.7.0)
kaminari (1.2.2)
activesupport (>= 4.1.0)
kaminari-actionview (= 1.2.2)
@@ -232,13 +257,17 @@ GEM
activerecord
kaminari-core (= 1.2.2)
kaminari-core (1.2.2)
+ kramdown (2.4.0)
+ rexml
+ kramdown-parser-gfm (1.1.0)
+ kramdown (~> 2.0)
ledermann-rails-settings (2.5.0)
activerecord (>= 4.2)
- listen (3.7.1)
+ listen (3.8.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
locale (2.1.3)
- loofah (2.19.0)
+ loofah (2.19.1)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
lumberjack (1.2.8)
@@ -254,18 +283,20 @@ GEM
nokogiri (~> 1)
rake
mini_mime (1.1.2)
- minitest (5.16.3)
+ minitest (5.17.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)
+ mysql2 (0.5.5)
+ nap (1.1.0)
nenv (0.3.0)
nio4r (2.5.8)
- nokogiri (1.13.9-arm64-darwin)
+ no_proxy_fix (0.1.2)
+ nokogiri (1.14.1-arm64-darwin)
racc (~> 1.4)
- nokogiri (1.13.9-x86_64-linux)
+ nokogiri (1.14.1-x86_64-linux)
racc (~> 1.4)
notiffany (0.1.3)
nenv (~> 0.1)
@@ -277,7 +308,10 @@ GEM
rack (>= 1.2, < 4)
snaky_hash (~> 2.0)
version_gem (~> 1.1)
- omniauth (2.1.0)
+ octokit (5.6.1)
+ faraday (>= 1, < 3)
+ sawyer (~> 0.9)
+ omniauth (2.1.1)
hashie (>= 3.4.6)
rack (>= 2.2.3)
rack-protection
@@ -292,10 +326,11 @@ GEM
omniauth (~> 2.0)
omniauth-shibboleth (1.3.0)
omniauth (>= 1.0.0)
+ open4 (1.3.4)
options (2.3.2)
orm_adapter (0.5.0)
parallel (1.22.1)
- parser (3.1.3.0)
+ parser (3.2.0.0)
ast (~> 2.4.1)
pg (1.4.5)
prime (0.1.2)
@@ -304,40 +339,40 @@ GEM
progress_bar (1.3.3)
highline (>= 1.6, < 3)
options (~> 2.3.0)
- pry (0.14.1)
+ pry (0.14.2)
coderay (~> 1.1)
method_source (~> 1.0)
- public_suffix (5.0.0)
- puma (6.0.0)
+ public_suffix (5.0.1)
+ puma (6.0.2)
nio4r (~> 2.0)
- pundit (2.2.0)
+ pundit (2.3.0)
activesupport (>= 3.0.0)
pundit-matchers (1.8.4)
rspec-rails (>= 3.0.0)
- racc (1.6.0)
- rack (2.2.4)
+ racc (1.6.2)
+ rack (2.2.6.2)
rack-mini-profiler (3.0.0)
rack (>= 1.2.0)
- rack-protection (3.0.4)
+ rack-protection (3.0.5)
rack
- rack-proxy (0.7.4)
+ rack-proxy (0.7.6)
rack
rack-test (2.0.2)
rack (>= 1.3)
- rails (6.1.7)
- actioncable (= 6.1.7)
- actionmailbox (= 6.1.7)
- actionmailer (= 6.1.7)
- actionpack (= 6.1.7)
- actiontext (= 6.1.7)
- actionview (= 6.1.7)
- activejob (= 6.1.7)
- activemodel (= 6.1.7)
- activerecord (= 6.1.7)
- activestorage (= 6.1.7)
- activesupport (= 6.1.7)
+ rails (6.1.7.2)
+ actioncable (= 6.1.7.2)
+ actionmailbox (= 6.1.7.2)
+ actionmailer (= 6.1.7.2)
+ actionpack (= 6.1.7.2)
+ actiontext (= 6.1.7.2)
+ actionview (= 6.1.7.2)
+ activejob (= 6.1.7.2)
+ activemodel (= 6.1.7.2)
+ activerecord (= 6.1.7.2)
+ activestorage (= 6.1.7.2)
+ activesupport (= 6.1.7.2)
bundler (>= 1.15.0)
- railties (= 6.1.7)
+ railties (= 6.1.7.2)
sprockets-rails (>= 2.0.0)
rails-controller-testing (1.0.5)
actionpack (>= 5.0.1.rc1)
@@ -346,11 +381,11 @@ GEM
rails-dom-testing (2.0.3)
activesupport (>= 4.2.0)
nokogiri (>= 1.6)
- rails-html-sanitizer (1.4.3)
- loofah (~> 2.3)
- railties (6.1.7)
- actionpack (= 6.1.7)
- activesupport (= 6.1.7)
+ rails-html-sanitizer (1.5.0)
+ loofah (~> 2.19, >= 2.19.1)
+ railties (6.1.7.2)
+ actionpack (= 6.1.7.2)
+ activesupport (= 6.1.7.2)
method_source
rake (>= 12.2)
thor (~> 1.0)
@@ -359,22 +394,23 @@ GEM
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
ffi (~> 1.0)
+ rchardet (1.8.0)
recaptcha (5.12.3)
json
- regexp_parser (2.6.1)
+ regexp_parser (2.6.2)
responders (3.0.1)
actionpack (>= 5.0)
railties (>= 5.0)
rexml (3.2.5)
- rollbar (3.3.2)
+ rollbar (3.4.0)
rspec-collection_matchers (1.2.0)
rspec-expectations (>= 2.99.0.beta1)
rspec-core (3.12.0)
rspec-support (~> 3.12.0)
- rspec-expectations (3.12.0)
+ rspec-expectations (3.12.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
- rspec-mocks (3.12.0)
+ rspec-mocks (3.12.3)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.12.0)
rspec-rails (6.0.1)
@@ -386,17 +422,17 @@ GEM
rspec-mocks (~> 3.11)
rspec-support (~> 3.11)
rspec-support (3.12.0)
- rubocop (1.39.0)
+ rubocop (1.44.1)
json (~> 2.3)
parallel (~> 1.10)
- parser (>= 3.1.2.1)
+ parser (>= 3.2.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
- rubocop-ast (>= 1.23.0, < 2.0)
+ rubocop-ast (>= 1.24.1, < 2.0)
ruby-progressbar (~> 1.7)
- unicode-display_width (>= 1.4.0, < 3.0)
- rubocop-ast (1.23.0)
+ unicode-display_width (>= 2.4.0, < 3.0)
+ rubocop-ast (1.24.1)
parser (>= 3.1.1.0)
rubocop-i18n (3.0.0)
rubocop (~> 1.0)
@@ -414,8 +450,10 @@ GEM
sprockets (> 3.0)
sprockets-rails
tilt
- selenium-webdriver (4.6.1)
- childprocess (>= 0.5, < 5.0)
+ sawyer (0.9.2)
+ addressable (>= 2.3.5)
+ faraday (>= 0.17.3, < 3)
+ selenium-webdriver (4.8.0)
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
websocket (~> 1.0)
@@ -431,32 +469,34 @@ GEM
snaky_hash (2.0.1)
hashie
version_gem (~> 1.1, >= 1.1.1)
- spring (4.1.0)
+ spring (4.1.1)
spring-commands-rspec (1.0.4)
spring (>= 0.9.1)
spring-watcher-listen (2.1.0)
listen (>= 2.7, < 4.0)
spring (>= 4)
- sprockets (4.1.1)
+ sprockets (4.2.0)
concurrent-ruby (~> 1.0)
- rack (> 1, < 3)
+ rack (>= 2.2.4, < 4)
sprockets-rails (3.4.2)
actionpack (>= 5.2)
activesupport (>= 5.2)
sprockets (>= 3.0.0)
+ terminal-table (3.0.2)
+ unicode-display_width (>= 1.1.1, < 3)
text (1.3.1)
thor (1.2.1)
tilt (2.0.11)
tomparse (0.4.2)
- translation (1.34)
+ translation (1.35)
gettext (~> 3.2, >= 3.2.5, <= 3.4.3)
- turbo-rails (1.3.2)
+ turbo-rails (1.3.3)
actionpack (>= 6.0.0)
activejob (>= 6.0.0)
railties (>= 6.0.0)
- tzinfo (2.0.5)
+ tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
- unicode-display_width (2.3.0)
+ unicode-display_width (2.4.2)
uniform_notifier (1.16.0)
uri_template (0.7.0)
version_gem (1.1.1)
@@ -475,7 +515,7 @@ GEM
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
- webpacker (5.4.3)
+ webpacker (5.4.4)
activesupport (>= 5.2)
rack-proxy (>= 0.6.1)
railties (>= 5.2)
@@ -487,7 +527,7 @@ GEM
websocket-extensions (0.1.5)
wicked_pdf (2.6.3)
activesupport
- wkhtmltopdf-binary (0.12.6.5)
+ wkhtmltopdf-binary (0.12.6.6)
xpath (3.2.0)
nokogiri (~> 1.8)
yard (0.9.28)
@@ -517,6 +557,7 @@ DEPENDENCIES
capybara
capybara-webmock
contact_us
+ danger (~> 9.0)
database_cleaner
devise
devise_invitable
@@ -536,6 +577,7 @@ DEPENDENCIES
kaminari
ledermann-rails-settings
listen
+ mail (= 2.7.1)
mimemagic
mocha
mysql2
@@ -581,4 +623,4 @@ RUBY VERSION
ruby 2.7.6p219
BUNDLED WITH
- 2.3.25
+ 2.4.3
diff --git a/app/controllers/api/v0/plans_controller.rb b/app/controllers/api/v0/plans_controller.rb
index 374d5401d9..0ea43ba707 100644
--- a/app/controllers/api/v0/plans_controller.rb
+++ b/app/controllers/api/v0/plans_controller.rb
@@ -98,7 +98,11 @@ def index
plan_ids = extract_param_list(params, 'plan')
@plans = @plans.where(id: plan_ids) if plan_ids.present?
# apply pagination after filtering
- @args = { per_page: params[:per_page], page: params[:page] }
+ max_per_page = Rails.configuration.x.application.api_max_page_size
+ page = params.fetch('page', 1).to_i
+ per_page = params.fetch('per_page', max_per_page).to_i
+ per_page = max_per_page if @per_page > max_per_page
+ @args = { per_page: per_page, page: page }
@plans = refine_query(@plans)
respond_with @plans
end
diff --git a/app/controllers/api/v1/base_api_controller.rb b/app/controllers/api/v1/base_api_controller.rb
index e25a6740a7..c1ddc36547 100644
--- a/app/controllers/api/v1/base_api_controller.rb
+++ b/app/controllers/api/v1/base_api_controller.rb
@@ -60,9 +60,10 @@ def base_response_content
# Retrieve the requested pagination params or use defaults
# only allow 100 per page as the max
def pagination_params
+ max_per_page = Rails.configuration.x.application.api_max_page_size
@page = params.fetch('page', 1).to_i
- @per_page = params.fetch('per_page', 20).to_i
- @per_page = 100 if @per_page > 100
+ @per_page = params.fetch('per_page', max_per_page).to_i
+ @per_page = max_per_page if @per_page > max_per_page
end
# Parse the body of the incoming request
diff --git a/app/controllers/concerns/paginable.rb b/app/controllers/concerns/paginable.rb
index 71d3eacb01..ab3b0b8cee 100644
--- a/app/controllers/concerns/paginable.rb
+++ b/app/controllers/concerns/paginable.rb
@@ -156,7 +156,7 @@ def refine_query(scope)
if @args[:page] != 'ALL'
# Can raise error if page is not a number
scope = scope.page(@args[:page])
- .per(@args.fetch(:per_page, Rails.configuration.x.application.api_max_page_size))
+ .per(@args.fetch(:per_page, Rails.configuration.x.results_per_page))
end
scope
end
@@ -200,7 +200,7 @@ def sort_link_url(sort_field)
end
base_url = paginable_base_url(query_params[:page])
sort_url = URI(base_url)
- sort_url.query = stringify_query_params(query_params)
+ sort_url.query = stringify_query_params(**query_params)
sort_url.to_s
"#{sort_url}{stringify_nonpagination_query_params}"
end
diff --git a/app/controllers/org_admin/templates_controller.rb b/app/controllers/org_admin/templates_controller.rb
index aed9d383dc..0e1dfcebd8 100644
--- a/app/controllers/org_admin/templates_controller.rb
+++ b/app/controllers/org_admin/templates_controller.rb
@@ -385,9 +385,11 @@ def parse_visibility(args, org)
# If nil and the org is not a funder, we default to organisational
# If present, we parse to retrieve the value
if args[:visibility].nil?
- org.funder? ? 'publicly_visible' : 'organisationally_visible'
+ org.funder? ? Template.visibilities[:publicly_visible] : Template.visibilities[:organisationally_visible]
+ elsif %w[0 organisationally_visible].include?(args.fetch(:visibility, 'publicly_visible'))
+ Template.visibilities[:organisationally_visible]
else
- args.fetch(:visibility, '0') == '1' ? 'organisationally_visible' : 'publicly_visible'
+ Template.visibilities[:publicly_visible]
end
end
diff --git a/app/controllers/plan_exports_controller.rb b/app/controllers/plan_exports_controller.rb
index edb15b3843..4a3d5c1bbb 100644
--- a/app/controllers/plan_exports_controller.rb
+++ b/app/controllers/plan_exports_controller.rb
@@ -73,7 +73,8 @@ def show_csv
@show_unanswered,
@selected_phase,
@show_custom_sections,
- @show_coversheet),
+ @show_coversheet,
+ @show_research_outputs),
filename: "#{file_name}.csv"
end
diff --git a/app/controllers/plans_controller.rb b/app/controllers/plans_controller.rb
index 623cf2477f..aba411fdf2 100644
--- a/app/controllers/plans_controller.rb
+++ b/app/controllers/plans_controller.rb
@@ -524,7 +524,7 @@ def render_phases_edit(plan, phase, guidance_groups)
readonly = !plan.editable_by?(current_user.id)
# Since the answers have been pre-fetched through plan (see Plan.load_for_phase)
# we create a hash whose keys are question id and value is the answer associated
- answers = plan.answers.each_with_object({}) { |a, m| m[a.question_id] = a; }
+ answers = plan.answers.each_with_object({}) { |a, m| m[a.question_id] = a }
render('/phases/edit', locals: {
base_template_org: phase.template.base_org,
plan: plan,
diff --git a/app/controllers/usage_controller.rb b/app/controllers/usage_controller.rb
index a406828435..c550a31a64 100644
--- a/app/controllers/usage_controller.rb
+++ b/app/controllers/usage_controller.rb
@@ -84,14 +84,14 @@ def yearly_plans
plan_data(args: default_query_args)
sep = sep_param
send_data(CSV.generate(col_sep: sep) do |csv|
- csv << [_('Month'), _('No. Completed Plans')]
+ csv << [_('Month'), _('No. Created Plans')]
total = 0
@plans_per_month.each do |data|
csv << [data.date.strftime('%b-%y'), data.count]
total += data.count
end
csv << [_('Total'), total]
- end, filename: 'completed_plans.csv')
+ end, filename: 'created_plans.csv')
end
# rubocop:enable Metrics/AbcSize
diff --git a/app/helpers/exports_helper.rb b/app/helpers/exports_helper.rb
index a288457477..192ae49914 100644
--- a/app/helpers/exports_helper.rb
+++ b/app/helpers/exports_helper.rb
@@ -10,7 +10,7 @@ module ExportsHelper
}.freeze
def font_face
- @formatting[:font_face].presence || 'Arial, Helvetica, Sans-Serif'
+ @formatting[:font_face].presence || 'Roboto, Arial, Sans-Serif'
end
def font_size
diff --git a/app/javascript/src/answers/edit.js b/app/javascript/src/answers/edit.js
index 766ccc9386..7376e40a4d 100644
--- a/app/javascript/src/answers/edit.js
+++ b/app/javascript/src/answers/edit.js
@@ -180,7 +180,7 @@ $(() => {
} else {
// Sets the editor mode for each editor to readonly
Tinymce.findEditorsByClassName(editorClass).forEach((editor) => {
- editor.setMode('readonly');
+ editor.mode.set('readonly');
});
}
diff --git a/app/javascript/src/orgs/adminEdit.js b/app/javascript/src/orgs/adminEdit.js
index c393c39c27..cd10a2fdb8 100644
--- a/app/javascript/src/orgs/adminEdit.js
+++ b/app/javascript/src/orgs/adminEdit.js
@@ -10,9 +10,9 @@ $(() => {
const editor = Tinymce.findEditorById('org_feedback_msg');
if (isObject(editor)) {
if ($('#org_feedback_enabled_true').is(':checked')) {
- editor.setMode('code');
+ editor.mode.set('design');
} else {
- editor.setMode('readonly');
+ editor.mode.set('readonly');
}
}
};
diff --git a/app/models/concerns/exportable_plan.rb b/app/models/concerns/exportable_plan.rb
index f754802a8d..6fa5c10278 100644
--- a/app/models/concerns/exportable_plan.rb
+++ b/app/models/concerns/exportable_plan.rb
@@ -22,7 +22,8 @@ def as_csv(user,
unanswered = true,
selected_phase = nil,
show_custom_sections = true,
- show_coversheet = false)
+ show_coversheet = false,
+ show_research_outputs = false)
hash = prepare(user, show_coversheet)
CSV.generate do |csv|
prepare_coversheet_for_csv(csv, headings, hash) if show_coversheet
@@ -50,6 +51,10 @@ def as_csv(user,
end
end
end
+ csv << []
+ csv << []
+
+ prepare_research_outputs_for_csv(csv, headings, hash) if show_research_outputs
end
end
# rubocop:enable Style/OptionalBooleanParameter
@@ -93,6 +98,9 @@ def prepare(user, coversheet = false)
end
hash[:phases] = phases
+ # include any research outputs
+ hash[:research_outputs] = prepare_research_outputs
+
record_plan_export(user, :pdf)
hash
@@ -138,6 +146,29 @@ def prepare_coversheet
end
# rubocop:enable Metrics/AbcSize
+ # rubocop:disable Metrics/AbcSize
+ def prepare_research_outputs
+ research_outputs.map do |research_output|
+ presenter = ResearchOutputPresenter.new(research_output: research_output)
+ size_hash = presenter.converted_file_size(size: research_output.byte_size)
+
+ {
+ title: research_output.title,
+ description: research_output.description,
+ type: presenter.display_type,
+ anticipated_release_date: presenter.display_release,
+ initial_access_level: presenter.display_access,
+ intended_repositories: presenter.display_repository&.join(', '),
+ anticipated_file_size: "#{size_hash[:size]} #{size_hash[:unit]&.upcase}",
+ initial_license: presenter.display_license,
+ metadata_standards: presenter.display_metadata_standard&.join(', '),
+ may_contain_sensitive_data: presenter.display_boolean(value: research_output.sensitive_data),
+ may_contain_pii: presenter.display_boolean(value: research_output.personal_data)
+ }
+ end
+ end
+ # rubocop:enable Metrics/AbcSize
+
# rubocop:disable Metrics/AbcSize
def prepare_coversheet_for_csv(csv, _headings, hash)
csv << [_('Title: '), format(_('%{title}'), title: title)]
@@ -183,6 +214,21 @@ def prepare_coversheet_for_csv(csv, _headings, hash)
end
# rubocop:enable Metrics/MethodLength, Metrics/AbcSize
+ # rubocop:disable Metrics/AbcSize
+ def prepare_research_outputs_for_csv(csv, _headings, hash)
+ return false unless hash[:research_outputs].present? && hash[:research_outputs].any?
+
+ csv << [_('Research Outputs: ')]
+ # Convert the hash keys to column headers
+ csv << hash[:research_outputs].first.keys.map { |key| key.to_s.capitalize.gsub('_', ' ') }
+ hash[:research_outputs].each do |research_output|
+ csv << research_output.values
+ end
+ csv << []
+ csv << []
+ end
+ # rubocop:enable Metrics/AbcSize
+
# rubocop:disable Metrics/AbcSize, Metrics/BlockLength, Metrics/MethodLength
# rubocop:disable Metrics/ParameterLists
def show_section_for_csv(csv, phase, section, headings, unanswered, hash)
diff --git a/app/models/contributor.rb b/app/models/contributor.rb
index b462efc610..739d40aae7 100644
--- a/app/models/contributor.rb
+++ b/app/models/contributor.rb
@@ -135,12 +135,12 @@ def name_or_email_presence
_("can't be blank."))
end
- if name.blank? && email.blank? && errors.size.zero?
+ if name.blank? && email.blank? && errors.empty?
errors.add(:name, _("can't be blank if no email is provided."))
errors.add(:email, _("can't be blank if no name is provided."))
end
- errors.size.zero?
+ errors.empty?
end
# rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity
end
diff --git a/app/models/plan.rb b/app/models/plan.rb
index 0cf221887b..73071f1ec0 100644
--- a/app/models/plan.rb
+++ b/app/models/plan.rb
@@ -441,7 +441,7 @@ def latest_update
def owner
r = roles.select { |rr| rr.active && rr.administrator }
.min { |a, b| a.created_at <=> b.created_at }
- r.nil? ? nil : r.user
+ r&.user
end
# Creates a role for the specified user (will update the user's
diff --git a/app/models/research_output.rb b/app/models/research_output.rb
index 9ecfdf49fe..7059cfb38e 100644
--- a/app/models/research_output.rb
+++ b/app/models/research_output.rb
@@ -64,6 +64,8 @@ class ResearchOutput < ApplicationRecord
allow_nil: true, allow_blank: true,
message: UNIQUENESS_MESSAGE }
+ validates_numericality_of :byte_size, greater_than: 0, less_than_or_equal_to: 2**63,
+ message: '(Anticipated file size) is too large. Please enter a smaller value.'
# Ensure presence of the :output_type_description if the user selected 'other'
validates_presence_of :output_type_description, if: -> { other? }, message: PRESENCE_MESSAGE
diff --git a/app/models/settings/template.rb b/app/models/settings/template.rb
index a0ee4c6377..dbffe03c23 100644
--- a/app/models/settings/template.rb
+++ b/app/models/settings/template.rb
@@ -18,7 +18,7 @@ module Settings
class Template < RailsSettings::SettingObject
VALID_FONT_FACES = [
'"Times New Roman", Times, Serif',
- 'Arial, Helvetica, Sans-Serif'
+ 'Roboto, Arial, Sans-Serif'
].freeze
VALID_FONT_SIZE_RANGE = (8..14).freeze
diff --git a/app/services/external_apis/ror_service.rb b/app/services/external_apis/ror_service.rb
index fba6f4e4ba..e639bf2b94 100644
--- a/app/services/external_apis/ror_service.rb
+++ b/app/services/external_apis/ror_service.rb
@@ -105,7 +105,7 @@ def query_string(term:, page: 1, filters: [])
end
# Recursive method that can handle multiple ROR result pages if necessary
- # rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity
+ # rubocop:disable Metrics/AbcSize
def process_pages(term:, json:, filters: [])
return [] if json.blank?
@@ -117,7 +117,7 @@ def process_pages(term:, json:, filters: [])
return results unless pages > 1
# Gather the results from the additional page (only up to the max)
- (2..(pages > max_pages ? max_pages : pages)).each do |page|
+ (2..([pages, max_pages].min)).each do |page|
json = query_ror(term: term, page: page, filters: filters)
results += parse_results(json: json)
end
@@ -129,7 +129,7 @@ def process_pages(term:, json:, filters: [])
log_error(method: 'ROR search', error: e)
results || []
end
- # rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity
+ # rubocop:enable Metrics/AbcSize
# Convert the JSON items into a hash
# rubocop:disable Metrics/AbcSize
diff --git a/app/views/orgs/_profile_form.html.erb b/app/views/orgs/_profile_form.html.erb
index 413906c764..d42a5bdf2c 100644
--- a/app/views/orgs/_profile_form.html.erb
+++ b/app/views/orgs/_profile_form.html.erb
@@ -3,6 +3,9 @@
<%
shared_links_tooltip = _('Links will be displayed next to your organisation\'s logo')
org_config_info_tooltip = _('This information can only be changed by a system administrator. Contact the Help Desk if you have questions or to request changes.')
+ org_types_tooltip = _(
+ 'This information can only be changed by a system administrator. Contact %{support_email} if you have questions or to request changes.' % { support_email: Rails.configuration.x.organisation.email}
+ )
%>
<%= form_for(org, url: url, html: { multipart: true, method: method,
@@ -136,7 +139,13 @@
<% if current_user.can_super_admin? %>
diff --git a/app/views/shared/export/_plan_styling.erb b/app/views/shared/export/_plan_styling.erb
index 7ed339fecc..d8c0f3d059 100644
--- a/app/views/shared/export/_plan_styling.erb
+++ b/app/views/shared/export/_plan_styling.erb
@@ -1,5 +1,5 @@
\ No newline at end of file
diff --git a/config/environments/production.rb b/config/environments/production.rb
index 9d17aeffdc..8e1c4099fc 100644
--- a/config/environments/production.rb
+++ b/config/environments/production.rb
@@ -87,7 +87,7 @@
config.active_support.disallowed_deprecation_warnings = []
# Use default logging formatter so that PID and timestamp are not suppressed.
- config.log_formatter = ::Logger::Formatter.new
+ config.log_formatter = Logger::Formatter.new
# Use a different logger for distributed setups.
# require 'syslog/logger'
diff --git a/config/locale/app.pot b/config/locale/app.pot
index f7708a352d..c5e051c1e7 100644
--- a/config/locale/app.pot
+++ b/config/locale/app.pot
@@ -1,15 +1,15 @@
# SOME DESCRIPTIVE TITLE.
-# Copyright (C) 2022 DMPRoadmap-Development
-# This file is distributed under the same license as the DMPRoadmap-Development package.
-# FIRST AUTHOR , 2022.
+# Copyright (C) 2023 roadmap
+# This file is distributed under the same license as the roadmap package.
+# FIRST AUTHOR , 2023.
#
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: DMPRoadmap-Development 1.0\n"
+"Project-Id-Version: roadmap 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"
+"POT-Creation-Date: 2023-02-03 09:02+0100\n"
+"PO-Revision-Date: 2023-02-03 09:02+0100\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
"Language: \n"
@@ -70,7 +70,6 @@ msgid "users_joined"
msgstr ""
#: ../../app/controllers/api/v0/statistics_controller.rb:89
-#: ../../app/controllers/usage_controller.rb:87
msgid "No. Completed Plans"
msgstr ""
@@ -90,7 +89,7 @@ msgstr ""
msgid "Missing or invalid JSON"
msgstr ""
-#: ../../app/controllers/api/v1/base_api_controller.rb:79
+#: ../../app/controllers/api/v1/base_api_controller.rb:80
msgid "Invalid JSON format"
msgstr ""
@@ -494,7 +493,7 @@ msgstr ""
#: ../../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/orgs/_profile_form.html.erb:164
#: ../../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
@@ -603,7 +602,7 @@ msgstr ""
msgid "Your organisation does not seem to be properly configured."
msgstr ""
-#: ../../app/controllers/plan_exports_controller.rb:99
+#: ../../app/controllers/plan_exports_controller.rb:100
msgid "Created using %{application_name}. Last modified %{date}"
msgstr ""
@@ -892,6 +891,10 @@ msgstr ""
msgid "merge"
msgstr ""
+#: ../../app/controllers/usage_controller.rb:87
+msgid "No. Created Plans"
+msgstr ""
+
#: ../../app/controllers/users/invitations_controller.rb:33
msgid ""
"You are already signed in as another user. Please log out to activate your inv"
@@ -980,7 +983,7 @@ msgid "Creators:"
msgstr ""
#: ../../app/helpers/exports_helper.rb:38
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:178
#: ../../app/views/shared/export/_plan_coversheet.erb:8
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creator:"
@@ -1073,6 +1076,10 @@ msgstr ""
msgid "Grant API to organisations"
msgstr ""
+#: ../../app/helpers/perms_helper.rb:17
+msgid "Review organisational plans"
+msgstr ""
+
#: ../../app/helpers/plans_helper.rb:8
#: ../../app/views/paginable/plans/_index.html.erb:8
#: ../../app/views/paginable/plans/_org_admin.html.erb:21
@@ -1148,7 +1155,7 @@ msgid "Plan Description"
msgstr ""
#: ../../app/helpers/settings_template_helper.rb:15
-#: ../../app/views/orgs/_profile_form.html.erb:143
+#: ../../app/views/orgs/_profile_form.html.erb:152
#: ../../app/views/paginable/templates/_customisable.html.erb:7
#: ../../app/views/paginable/templates/_organisational.html.erb:12
#: ../../app/views/plans/_project_details.html.erb:156
@@ -1253,149 +1260,149 @@ msgstr ""
msgid "%{tool_name} API changes"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:30
+#: ../../app/models/concerns/exportable_plan.rb:31
msgid "Phase"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Section"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116
msgid "Question"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:32
-#: ../../app/models/concerns/exportable_plan.rb:34
+#: ../../app/models/concerns/exportable_plan.rb:33
+#: ../../app/models/concerns/exportable_plan.rb:35
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Answer"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:134
+#: ../../app/models/concerns/exportable_plan.rb:142
msgid " Customised By: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
#: ../../app/views/shared/export/_plan_coversheet.erb:6
msgid "Title: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
msgid "%{title}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:145
+#: ../../app/models/concerns/exportable_plan.rb:176
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creators: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:145
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:176
+#: ../../app/models/concerns/exportable_plan.rb:178
msgid "%{authors}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:150
+#: ../../app/models/concerns/exportable_plan.rb:181
#: ../../app/views/shared/export/_plan_coversheet.erb:14
#: ../../app/views/shared/export/_plan_txt.erb:9
msgid "Principal Investigator: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:151
+#: ../../app/models/concerns/exportable_plan.rb:182
msgid "%{investigation}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:154
+#: ../../app/models/concerns/exportable_plan.rb:185
msgid "Date Manager: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:155
+#: ../../app/models/concerns/exportable_plan.rb:186
msgid "%{data_curation}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
#: ../../app/views/shared/export/_plan_coversheet.erb:20
#: ../../app/views/shared/export/_plan_txt.erb:15
msgid "Project Administrator: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
msgid "%{pa}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
#: ../../app/views/shared/export/_plan_coversheet.erb:23
#: ../../app/views/shared/export/_plan_txt.erb:18
msgid "Contributor: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
msgid "%{other}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
#: ../../app/views/shared/export/_plan_coversheet.erb:26
#: ../../app/views/shared/export/_plan_txt.erb:20
msgid "Affiliation: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
msgid "%{affiliation}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:165
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:196
+#: ../../app/models/concerns/exportable_plan.rb:198
#: ../../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:165
+#: ../../app/models/concerns/exportable_plan.rb:196
msgid "%{funder}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:198
msgid "%{template}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
#: ../../app/views/shared/export/_plan_txt.erb:27
msgid "Grant number: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
msgid "%{grant_number}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:171
+#: ../../app/models/concerns/exportable_plan.rb:202
#: ../../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:171
+#: ../../app/models/concerns/exportable_plan.rb:202
msgid "%{description}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:173
+#: ../../app/models/concerns/exportable_plan.rb:204
#: ../../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:173
+#: ../../app/models/concerns/exportable_plan.rb:204
msgid "%{date}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:174
+#: ../../app/models/concerns/exportable_plan.rb:205
#: ../../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:175
+#: ../../app/models/concerns/exportable_plan.rb:206
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"
@@ -1409,7 +1416,11 @@ msgid ""
" your project or proposal"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:198
+#: ../../app/models/concerns/exportable_plan.rb:221
+msgid "Research Outputs: "
+msgstr ""
+
+#: ../../app/models/concerns/exportable_plan.rb:244
msgid "Not Answered"
msgstr ""
@@ -1863,7 +1874,7 @@ msgstr ""
#: ../../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/orgs/_profile_form.html.erb:197
#: ../../app/views/plans/_edit_details.html.erb:11
#: ../../app/views/plans/_guidance_selection.html.erb:23
#: ../../app/views/questions/_preview_question.html.erb:111
@@ -2227,13 +2238,13 @@ msgid "Hello"
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."
+msgid "Your"
msgstr ""
#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4
-msgid "Your"
+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:6
@@ -2746,7 +2757,7 @@ msgid "GitHub"
msgstr ""
#: ../../app/views/layouts/_navigation.html.erb:12
-#: ../../app/views/orgs/_profile_form.html.erb:55
+#: ../../app/views/orgs/_profile_form.html.erb:58
msgid "logo"
msgstr ""
@@ -2824,11 +2835,11 @@ msgid "%{application_name}"
msgstr ""
#: ../../app/views/layouts/application.html.erb:91
-msgid "Notice:"
+msgid "Error:"
msgstr ""
#: ../../app/views/layouts/application.html.erb:91
-msgid "Error:"
+msgid "Notice:"
msgstr ""
#: ../../app/views/layouts/application.html.erb:102
@@ -3258,6 +3269,8 @@ msgid "Order"
msgstr ""
#: ../../app/views/org_admin/question_options/_option_fields.html.erb:6
+#: ../../app/views/orgs/_profile_form.html.erb:144
+#: ../../app/views/orgs/_profile_form.html.erb:173
#: ../../app/views/paginable/guidances/_index.html.erb:6
#: ../../app/views/shared/_links.html.erb:13
msgid "Text"
@@ -3717,83 +3730,89 @@ msgid ""
"lp Desk if you have questions or to request changes."
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:21
+#: ../../app/views/orgs/_profile_form.html.erb:6
+msgid ""
+"This information can only be changed by a system administrator. Contact %{supp"
+"ort_email} if you have questions or to request changes."
+msgstr ""
+
+#: ../../app/views/orgs/_profile_form.html.erb:24
msgid "Organisation full name"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:27
+#: ../../app/views/orgs/_profile_form.html.erb:30
msgid "Organisation abbreviated name"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:38
+#: ../../app/views/orgs/_profile_form.html.erb:41
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 ""
-#: ../../app/views/orgs/_profile_form.html.erb:39
+#: ../../app/views/orgs/_profile_form.html.erb:42
msgid "Managed? (allows Org Admins to access the Admin menu)"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:51
+#: ../../app/views/orgs/_profile_form.html.erb:54
msgid "Organization logo"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:59
+#: ../../app/views/orgs/_profile_form.html.erb:62
msgid "This will remove your organisation's logo"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:60
+#: ../../app/views/orgs/_profile_form.html.erb:63
msgid "Remove logo"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:62
+#: ../../app/views/orgs/_profile_form.html.erb:65
#: ../../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 ""
-#: ../../app/views/orgs/_profile_form.html.erb:79
+#: ../../app/views/orgs/_profile_form.html.erb:82
msgid "Organisation URLs"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:91
-#: ../../app/views/orgs/_profile_form.html.erb:96
+#: ../../app/views/orgs/_profile_form.html.erb:94
+#: ../../app/views/orgs/_profile_form.html.erb:99
msgid "Help Desk email"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:105
+#: ../../app/views/orgs/_profile_form.html.erb:108
msgid "Administrator contact"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:110
+#: ../../app/views/orgs/_profile_form.html.erb:113
msgid "Contact email"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:114
+#: ../../app/views/orgs/_profile_form.html.erb:117
#: ../../app/views/shared/_links.html.erb:35
msgid "Link text"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:122
+#: ../../app/views/orgs/_profile_form.html.erb:125
msgid "Google Analytics Tracker"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:128
+#: ../../app/views/orgs/_profile_form.html.erb:131
msgid "Tracker Code"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:139
+#: ../../app/views/orgs/_profile_form.html.erb:143
msgid "Organisation Types"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:149
+#: ../../app/views/orgs/_profile_form.html.erb:158
msgid "Institution"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:162
+#: ../../app/views/orgs/_profile_form.html.erb:172
msgid "Organisation type(s)"
msgstr ""
@@ -4076,14 +4095,14 @@ msgstr ""
#: ../../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/_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/_publicly_visible.html.erb:17
@@ -4559,7 +4578,7 @@ msgid "Organisation: anyone at my organisation can view"
msgstr ""
#: ../../app/views/plans/_share_form.html.erb:37
-msgid "Public: anyone can view"
+msgid "Public: anyone can view or download from the Public DMPs page"
msgstr ""
#: ../../app/views/plans/_share_form.html.erb:44
@@ -5159,11 +5178,11 @@ msgid "on the homepage."
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:35
-msgid "Please visit the"
+msgid "page for guidance."
msgstr ""
#: ../../app/views/static_pages/about_us.html.erb:37
@@ -5938,19 +5957,19 @@ msgid "Hello %{recipient_name},"
msgstr ""
#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " to "
+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 " to "
msgstr ""
#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " is creating a Data Management Plan and has answered "
+msgid " in a plan called "
msgstr ""
#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " in a plan called "
+msgid " based on the template "
msgstr ""
#: ../../app/views/user_mailer/sharing_notification.html.erb:5
@@ -6090,11 +6109,11 @@ msgid "Download users"
msgstr ""
#: ../../app/views/users/refresh_token.js.erb:1
-msgid "Unable to regenerate your API token."
+msgid "Successfully regenerate your API token."
msgstr ""
#: ../../app/views/users/refresh_token.js.erb:1
-msgid "Successfully regenerate your API token."
+msgid "Unable to 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 a2eba675e5..4b9343d91c 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 890cbd1fc8..aa1343a7a8 100644
--- a/config/locale/de/app.po
+++ b/config/locale/de/app.po
@@ -1,14 +1,14 @@
-# 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.
+# German translations for roadmap package.
+# Copyright (C) 2023 roadmap
+# This file is distributed under the same license as the roadmap package.
+# FIRST AUTHOR , 2023.
#
msgid ""
msgstr ""
-"Project-Id-Version: DMPRoadmap-Development 1.0\n"
+"Project-Id-Version: roadmap 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 20:11+0100\n"
+"POT-Creation-Date: 2023-02-03 09:02+0100\n"
+"PO-Revision-Date: 2023-02-03 09:02+0100\n"
"Last-Translator: FULL NAME \n"
"Language-Team: German\n"
"Language: de\n"
@@ -74,7 +74,6 @@ 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 "Nein. Abgeschlossene Pläne"
@@ -94,7 +93,7 @@ msgstr "Pläne"
msgid "Missing or invalid JSON"
msgstr "Fehlender oder ungültiger JSON"
-#: ../../app/controllers/api/v1/base_api_controller.rb:79
+#: ../../app/controllers/api/v1/base_api_controller.rb:80
msgid "Invalid JSON format"
msgstr "Ungültiges JSON-Format"
@@ -514,7 +513,7 @@ msgstr "Template"
#: ../../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/orgs/_profile_form.html.erb:164
#: ../../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
@@ -627,7 +626,7 @@ msgstr "Bitte wählen Sie eine Organisation"
msgid "Your organisation does not seem to be properly configured."
msgstr "Ihre Organisation scheint nicht ordnungsgemäß konfiguriert zu sein."
-#: ../../app/controllers/plan_exports_controller.rb:99
+#: ../../app/controllers/plan_exports_controller.rb:100
msgid "Created using %{application_name}. Last modified %{date}"
msgstr "Erstellt mit %{application_name}. Zuletzt geändert am %{date}"
@@ -946,6 +945,10 @@ msgstr "zusammengeführt"
msgid "merge"
msgstr "Verschmelzen"
+#: ../../app/controllers/usage_controller.rb:87
+msgid "No. Created Plans"
+msgstr ""
+
#: ../../app/controllers/users/invitations_controller.rb:33
msgid ""
"You are already signed in as another user. Please log out to activate your inv"
@@ -1042,7 +1045,7 @@ msgid "Creators:"
msgstr "Erzeuger:"
#: ../../app/helpers/exports_helper.rb:38
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:178
#: ../../app/views/shared/export/_plan_coversheet.erb:8
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creator:"
@@ -1142,6 +1145,10 @@ msgstr "Verwalten Sie Organisationsdetails"
msgid "Grant API to organisations"
msgstr "Gewähren Sie API für Organisationen"
+#: ../../app/helpers/perms_helper.rb:17
+msgid "Review organisational plans"
+msgstr ""
+
#: ../../app/helpers/plans_helper.rb:8
#: ../../app/views/paginable/plans/_index.html.erb:8
#: ../../app/views/paginable/plans/_org_admin.html.erb:21
@@ -1217,7 +1224,7 @@ msgid "Plan Description"
msgstr "Beschreibung"
#: ../../app/helpers/settings_template_helper.rb:15
-#: ../../app/views/orgs/_profile_form.html.erb:143
+#: ../../app/views/orgs/_profile_form.html.erb:152
#: ../../app/views/paginable/templates/_customisable.html.erb:7
#: ../../app/views/paginable/templates/_organisational.html.erb:12
#: ../../app/views/plans/_project_details.html.erb:156
@@ -1322,149 +1329,149 @@ msgstr "Administratorrechte in erteilt %{tool_name}"
msgid "%{tool_name} API changes"
msgstr "%{tool_name} API-Änderungen"
-#: ../../app/models/concerns/exportable_plan.rb:30
+#: ../../app/models/concerns/exportable_plan.rb:31
msgid "Phase"
msgstr "Phase"
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Section"
msgstr "Abschnitt"
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116
msgid "Question"
msgstr "Frage"
-#: ../../app/models/concerns/exportable_plan.rb:32
-#: ../../app/models/concerns/exportable_plan.rb:34
+#: ../../app/models/concerns/exportable_plan.rb:33
+#: ../../app/models/concerns/exportable_plan.rb:35
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Answer"
msgstr "Antwort"
-#: ../../app/models/concerns/exportable_plan.rb:134
+#: ../../app/models/concerns/exportable_plan.rb:142
msgid " Customised By: "
msgstr " Angepasst von:"
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
#: ../../app/views/shared/export/_plan_coversheet.erb:6
msgid "Title: "
msgstr "Titel:"
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
msgid "%{title}"
msgstr "%{title}"
-#: ../../app/models/concerns/exportable_plan.rb:145
+#: ../../app/models/concerns/exportable_plan.rb:176
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creators: "
msgstr "Erzeuger:"
-#: ../../app/models/concerns/exportable_plan.rb:145
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:176
+#: ../../app/models/concerns/exportable_plan.rb:178
msgid "%{authors}"
msgstr "%{authors}"
-#: ../../app/models/concerns/exportable_plan.rb:150
+#: ../../app/models/concerns/exportable_plan.rb:181
#: ../../app/views/shared/export/_plan_coversheet.erb:14
#: ../../app/views/shared/export/_plan_txt.erb:9
msgid "Principal Investigator: "
msgstr "Hauptermittler:"
-#: ../../app/models/concerns/exportable_plan.rb:151
+#: ../../app/models/concerns/exportable_plan.rb:182
msgid "%{investigation}"
msgstr "%{investigation}"
-#: ../../app/models/concerns/exportable_plan.rb:154
+#: ../../app/models/concerns/exportable_plan.rb:185
msgid "Date Manager: "
msgstr "Datumsmanager:"
-#: ../../app/models/concerns/exportable_plan.rb:155
+#: ../../app/models/concerns/exportable_plan.rb:186
msgid "%{data_curation}"
msgstr "%{data_curation}"
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
#: ../../app/views/shared/export/_plan_coversheet.erb:20
#: ../../app/views/shared/export/_plan_txt.erb:15
msgid "Project Administrator: "
msgstr "Projektleiter:"
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
msgid "%{pa}"
msgstr "%{pa}"
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
#: ../../app/views/shared/export/_plan_coversheet.erb:23
#: ../../app/views/shared/export/_plan_txt.erb:18
msgid "Contributor: "
msgstr "Mitwirkender:"
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
msgid "%{other}"
msgstr "%{other}"
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
#: ../../app/views/shared/export/_plan_coversheet.erb:26
#: ../../app/views/shared/export/_plan_txt.erb:20
msgid "Affiliation: "
msgstr "Zugehörigkeit:"
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
msgid "%{affiliation}"
msgstr "%{affiliation}"
-#: ../../app/models/concerns/exportable_plan.rb:165
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:196
+#: ../../app/models/concerns/exportable_plan.rb:198
#: ../../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:165
+#: ../../app/models/concerns/exportable_plan.rb:196
msgid "%{funder}"
msgstr "%{funder}"
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:198
msgid "%{template}"
msgstr "%{template}"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
#: ../../app/views/shared/export/_plan_txt.erb:27
msgid "Grant number: "
msgstr "Grant Nummer:"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
msgid "%{grant_number}"
msgstr "%{grant_number}"
-#: ../../app/models/concerns/exportable_plan.rb:171
+#: ../../app/models/concerns/exportable_plan.rb:202
#: ../../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:171
+#: ../../app/models/concerns/exportable_plan.rb:202
msgid "%{description}"
msgstr "%{description}"
-#: ../../app/models/concerns/exportable_plan.rb:173
+#: ../../app/models/concerns/exportable_plan.rb:204
#: ../../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:173
+#: ../../app/models/concerns/exportable_plan.rb:204
msgid "%{date}"
msgstr "%{date}"
-#: ../../app/models/concerns/exportable_plan.rb:174
+#: ../../app/models/concerns/exportable_plan.rb:205
#: ../../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:175
+#: ../../app/models/concerns/exportable_plan.rb:206
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"
@@ -1488,7 +1495,11 @@ msgstr ""
" bedeutet nicht, dass der (die) Schöpfer (s) sich mit\n"
" Ihr Projekt oder Vorschlag"
-#: ../../app/models/concerns/exportable_plan.rb:198
+#: ../../app/models/concerns/exportable_plan.rb:221
+msgid "Research Outputs: "
+msgstr ""
+
+#: ../../app/models/concerns/exportable_plan.rb:244
msgid "Not Answered"
msgstr "Nicht beantwortet"
@@ -1959,7 +1970,7 @@ msgstr "Bitte warten Sie, die Standards werden geladen"
#: ../../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/orgs/_profile_form.html.erb:197
#: ../../app/views/plans/_edit_details.html.erb:11
#: ../../app/views/plans/_guidance_selection.html.erb:23
#: ../../app/views/questions/_preview_question.html.erb:111
@@ -2343,6 +2354,10 @@ 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"
@@ -2351,10 +2366,6 @@ 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"
@@ -2929,7 +2940,7 @@ msgid "GitHub"
msgstr "Github"
#: ../../app/views/layouts/_navigation.html.erb:12
-#: ../../app/views/orgs/_profile_form.html.erb:55
+#: ../../app/views/orgs/_profile_form.html.erb:58
msgid "logo"
msgstr "Logo"
@@ -3006,14 +3017,14 @@ msgstr "Abmelden"
msgid "%{application_name}"
msgstr "%{application_name}"
-#: ../../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:91
+msgid "Notice:"
+msgstr "Beachten:"
+
#: ../../app/views/layouts/application.html.erb:102
msgid "Loading..."
msgstr "Laden..."
@@ -3465,6 +3476,8 @@ msgid "Order"
msgstr "Reihenfolge"
#: ../../app/views/org_admin/question_options/_option_fields.html.erb:6
+#: ../../app/views/orgs/_profile_form.html.erb:144
+#: ../../app/views/orgs/_profile_form.html.erb:173
#: ../../app/views/paginable/guidances/_index.html.erb:6
#: ../../app/views/shared/_links.html.erb:13
msgid "Text"
@@ -3988,15 +4001,21 @@ msgstr ""
"en Sie sich an den Helpdesk, wenn Sie Fragen haben oder Änderungen anfordern m"
"öchten."
-#: ../../app/views/orgs/_profile_form.html.erb:21
+#: ../../app/views/orgs/_profile_form.html.erb:6
+msgid ""
+"This information can only be changed by a system administrator. Contact %{supp"
+"ort_email} if you have questions or to request changes."
+msgstr ""
+
+#: ../../app/views/orgs/_profile_form.html.erb:24
msgid "Organisation full name"
msgstr "Vollständiger Name der Organisation"
-#: ../../app/views/orgs/_profile_form.html.erb:27
+#: ../../app/views/orgs/_profile_form.html.erb:30
msgid "Organisation abbreviated name"
msgstr "Kurzname der Organisation"
-#: ../../app/views/orgs/_profile_form.html.erb:38
+#: ../../app/views/orgs/_profile_form.html.erb:41
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"
@@ -4006,68 +4025,68 @@ msgstr ""
". Eine nicht verwaltete Organisation wurde vom System automatisch erstellt, al"
"s ein Benutzer sie eingegeben / ausgewählt hat."
-#: ../../app/views/orgs/_profile_form.html.erb:39
+#: ../../app/views/orgs/_profile_form.html.erb:42
msgid "Managed? (allows Org Admins to access the Admin menu)"
msgstr "Gelang es? (Ermöglicht Org Admins den Zugriff auf das Admin-Menü)"
-#: ../../app/views/orgs/_profile_form.html.erb:51
+#: ../../app/views/orgs/_profile_form.html.erb:54
msgid "Organization logo"
msgstr "Organisationslogo"
-#: ../../app/views/orgs/_profile_form.html.erb:59
+#: ../../app/views/orgs/_profile_form.html.erb:62
msgid "This will remove your organisation's logo"
msgstr "Dadurch wird das Logo Ihrer Organisation entfernt"
-#: ../../app/views/orgs/_profile_form.html.erb:60
+#: ../../app/views/orgs/_profile_form.html.erb:63
msgid "Remove logo"
msgstr "Entfernen Sie das Logo"
-#: ../../app/views/orgs/_profile_form.html.erb:62
+#: ../../app/views/orgs/_profile_form.html.erb:65
#: ../../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 "oder"
-#: ../../app/views/orgs/_profile_form.html.erb:79
+#: ../../app/views/orgs/_profile_form.html.erb:82
msgid "Organisation URLs"
msgstr "Organisations-URLs"
-#: ../../app/views/orgs/_profile_form.html.erb:91
-#: ../../app/views/orgs/_profile_form.html.erb:96
+#: ../../app/views/orgs/_profile_form.html.erb:94
+#: ../../app/views/orgs/_profile_form.html.erb:99
msgid "Help Desk email"
msgstr "Helpdesk-E-Mail"
-#: ../../app/views/orgs/_profile_form.html.erb:105
+#: ../../app/views/orgs/_profile_form.html.erb:108
msgid "Administrator contact"
msgstr "Kontakt zum Administrator"
-#: ../../app/views/orgs/_profile_form.html.erb:110
+#: ../../app/views/orgs/_profile_form.html.erb:113
msgid "Contact email"
msgstr "Kontakt-E-Mail"
-#: ../../app/views/orgs/_profile_form.html.erb:114
+#: ../../app/views/orgs/_profile_form.html.erb:117
#: ../../app/views/shared/_links.html.erb:35
msgid "Link text"
msgstr "Link Text"
-#: ../../app/views/orgs/_profile_form.html.erb:122
+#: ../../app/views/orgs/_profile_form.html.erb:125
msgid "Google Analytics Tracker"
msgstr "Google Analytics Tracker"
-#: ../../app/views/orgs/_profile_form.html.erb:128
+#: ../../app/views/orgs/_profile_form.html.erb:131
msgid "Tracker Code"
msgstr "Tracker-Code"
-#: ../../app/views/orgs/_profile_form.html.erb:139
+#: ../../app/views/orgs/_profile_form.html.erb:143
msgid "Organisation Types"
msgstr "Organisationstypen"
-#: ../../app/views/orgs/_profile_form.html.erb:149
+#: ../../app/views/orgs/_profile_form.html.erb:158
msgid "Institution"
msgstr "Institution"
-#: ../../app/views/orgs/_profile_form.html.erb:162
+#: ../../app/views/orgs/_profile_form.html.erb:172
msgid "Organisation type(s)"
msgstr "Organisationstyp (en)"
@@ -4365,14 +4384,6 @@ msgstr "Kopieren"
msgid "View"
msgstr "Ansicht"
-#: ../../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"
@@ -4382,6 +4393,14 @@ msgstr ""
"er öffentlichen DMP-Seite entfernt, aber alle Mitarbeiter können weiterhin dar"
"auf zugreifen."
+#: ../../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/_publicly_visible.html.erb:17
msgid "Not Applicable"
msgstr "Unzutreffend"
@@ -4910,8 +4929,8 @@ msgid "Organisation: anyone at my organisation can view"
msgstr "Organisation: Jeder in meiner Organisation kann anzeigen"
#: ../../app/views/plans/_share_form.html.erb:37
-msgid "Public: anyone can view"
-msgstr "Öffentlich: Jeder kann sehen"
+msgid "Public: anyone can view or download from the Public DMPs page"
+msgstr ""
#: ../../app/views/plans/_share_form.html.erb:44
msgid "Manage collaborators"
@@ -5594,14 +5613,14 @@ msgstr "Einloggen"
msgid "on the homepage."
msgstr "auf der Startseite."
-#: ../../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:35
+msgid "page for guidance."
+msgstr "Seite zur Orientierung."
+
#: ../../app/views/static_pages/about_us.html.erb:37
msgid "Customising for your Organisation"
msgstr "Customizing für Ihre Organisation"
@@ -6567,22 +6586,22 @@ msgstr ""
msgid "Hello %{recipient_name},"
msgstr "Hallo %{recipient_name},"
-#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " to "
-msgstr " zu"
-
-#: ../../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 " 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/sharing_notification.html.erb:5
msgid ""
"Your colleague %{inviter_name} has invited you to contribute to
\n"
@@ -6738,14 +6757,14 @@ msgstr ""
msgid "Download users"
msgstr "Nutzer herunterladen"
-#: ../../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."
+#: ../../app/views/users/refresh_token.js.erb:1
+msgid "Unable to regenerate your API token."
+msgstr "Ihr API-Token kann nicht neu generiert werden."
+
#: 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
index 4d0d6541cb..b5555536d9 100644
Binary files a/config/locale/en/LC_MESSAGES/app.mo and b/config/locale/en/LC_MESSAGES/app.mo differ
diff --git a/config/locale/en/app.po b/config/locale/en/app.po
index 304062bc2d..9da8429aae 100644
--- a/config/locale/en/app.po
+++ b/config/locale/en/app.po
@@ -1,14 +1,14 @@
-# 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.
+# English translations for roadmap package.
+# Copyright (C) 2023 roadmap
+# This file is distributed under the same license as the roadmap package.
+# FIRST AUTHOR , 2023.
#
msgid ""
msgstr ""
-"Project-Id-Version: DMPRoadmap-Development 1.0\n"
+"Project-Id-Version: roadmap 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"
+"POT-Creation-Date: 2023-02-03 09:02+0100\n"
+"PO-Revision-Date: 2023-02-03 09:02+0100\n"
"Last-Translator: FULL NAME \n"
"Language-Team: English\n"
"Language: en\n"
@@ -72,7 +72,6 @@ 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"
@@ -92,7 +91,7 @@ msgstr "plans"
msgid "Missing or invalid JSON"
msgstr "Missing or invalid JSON"
-#: ../../app/controllers/api/v1/base_api_controller.rb:79
+#: ../../app/controllers/api/v1/base_api_controller.rb:80
msgid "Invalid JSON format"
msgstr "Invalid JSON format"
@@ -500,7 +499,7 @@ msgstr "Template"
#: ../../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/orgs/_profile_form.html.erb:164
#: ../../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
@@ -609,7 +608,7 @@ msgstr "Please choose an organisation"
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
+#: ../../app/controllers/plan_exports_controller.rb:100
msgid "Created using %{application_name}. Last modified %{date}"
msgstr "Created using %{application_name}. Last modified %{date}"
@@ -925,6 +924,10 @@ msgstr "merged"
msgid "merge"
msgstr "merge"
+#: ../../app/controllers/usage_controller.rb:87
+msgid "No. Created Plans"
+msgstr "No. Created Plans"
+
#: ../../app/controllers/users/invitations_controller.rb:33
msgid ""
"You are already signed in as another user. Please log out to activate your inv"
@@ -1020,7 +1023,7 @@ msgid "Creators:"
msgstr "Creators:"
#: ../../app/helpers/exports_helper.rb:38
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:178
#: ../../app/views/shared/export/_plan_coversheet.erb:8
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creator:"
@@ -1122,6 +1125,10 @@ msgstr "Manage organisation details"
msgid "Grant API to organisations"
msgstr "Grant API to organisations"
+#: ../../app/helpers/perms_helper.rb:17
+msgid "Review organisational plans"
+msgstr "Review organisational plans"
+
#: ../../app/helpers/plans_helper.rb:8
#: ../../app/views/paginable/plans/_index.html.erb:8
#: ../../app/views/paginable/plans/_org_admin.html.erb:21
@@ -1197,7 +1204,7 @@ msgid "Plan Description"
msgstr "Plan Description"
#: ../../app/helpers/settings_template_helper.rb:15
-#: ../../app/views/orgs/_profile_form.html.erb:143
+#: ../../app/views/orgs/_profile_form.html.erb:152
#: ../../app/views/paginable/templates/_customisable.html.erb:7
#: ../../app/views/paginable/templates/_organisational.html.erb:12
#: ../../app/views/plans/_project_details.html.erb:156
@@ -1302,149 +1309,149 @@ msgstr "Administrator privileges granted in %{tool_name}"
msgid "%{tool_name} API changes"
msgstr "%{tool_name} API changes"
-#: ../../app/models/concerns/exportable_plan.rb:30
+#: ../../app/models/concerns/exportable_plan.rb:31
msgid "Phase"
msgstr "Phase"
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../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/concerns/exportable_plan.rb:33
#: ../../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/concerns/exportable_plan.rb:33
+#: ../../app/models/concerns/exportable_plan.rb:35
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Answer"
msgstr "Answer"
-#: ../../app/models/concerns/exportable_plan.rb:134
+#: ../../app/models/concerns/exportable_plan.rb:142
msgid " Customised By: "
msgstr " Customised By: "
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
#: ../../app/views/shared/export/_plan_coversheet.erb:6
msgid "Title: "
msgstr "Title: "
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
msgid "%{title}"
msgstr "%{title}"
-#: ../../app/models/concerns/exportable_plan.rb:145
+#: ../../app/models/concerns/exportable_plan.rb:176
#: ../../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
+#: ../../app/models/concerns/exportable_plan.rb:176
+#: ../../app/models/concerns/exportable_plan.rb:178
msgid "%{authors}"
msgstr "%{authors}"
-#: ../../app/models/concerns/exportable_plan.rb:150
+#: ../../app/models/concerns/exportable_plan.rb:181
#: ../../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
+#: ../../app/models/concerns/exportable_plan.rb:182
msgid "%{investigation}"
msgstr "%{investigation}"
-#: ../../app/models/concerns/exportable_plan.rb:154
+#: ../../app/models/concerns/exportable_plan.rb:185
msgid "Date Manager: "
msgstr "Date Manager: "
-#: ../../app/models/concerns/exportable_plan.rb:155
+#: ../../app/models/concerns/exportable_plan.rb:186
msgid "%{data_curation}"
msgstr "%{data_curation}"
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
#: ../../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
+#: ../../app/models/concerns/exportable_plan.rb:189
msgid "%{pa}"
msgstr "%{pa}"
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
#: ../../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
+#: ../../app/models/concerns/exportable_plan.rb:192
msgid "%{other}"
msgstr "%{other}"
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
#: ../../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
+#: ../../app/models/concerns/exportable_plan.rb:194
msgid "%{affiliation}"
msgstr "%{affiliation}"
-#: ../../app/models/concerns/exportable_plan.rb:165
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:196
+#: ../../app/models/concerns/exportable_plan.rb:198
#: ../../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
+#: ../../app/models/concerns/exportable_plan.rb:196
msgid "%{funder}"
msgstr "%{funder}"
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:198
msgid "%{template}"
msgstr "%{template}"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
#: ../../app/views/shared/export/_plan_txt.erb:27
msgid "Grant number: "
msgstr "Grant number: "
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
msgid "%{grant_number}"
msgstr "%{grant_number}"
-#: ../../app/models/concerns/exportable_plan.rb:171
+#: ../../app/models/concerns/exportable_plan.rb:202
#: ../../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
+#: ../../app/models/concerns/exportable_plan.rb:202
msgid "%{description}"
msgstr "%{description}"
-#: ../../app/models/concerns/exportable_plan.rb:173
+#: ../../app/models/concerns/exportable_plan.rb:204
#: ../../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
+#: ../../app/models/concerns/exportable_plan.rb:204
msgid "%{date}"
msgstr "%{date}"
-#: ../../app/models/concerns/exportable_plan.rb:174
+#: ../../app/models/concerns/exportable_plan.rb:205
#: ../../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
+#: ../../app/models/concerns/exportable_plan.rb:206
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"
@@ -1468,7 +1475,11 @@ msgstr ""
"hip to,\n"
" your project or proposal"
-#: ../../app/models/concerns/exportable_plan.rb:198
+#: ../../app/models/concerns/exportable_plan.rb:221
+msgid "Research Outputs: "
+msgstr "Research Outputs: "
+
+#: ../../app/models/concerns/exportable_plan.rb:244
msgid "Not Answered"
msgstr "Not Answered"
@@ -1935,7 +1946,7 @@ msgstr "Please wait, Standards are loading"
#: ../../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/orgs/_profile_form.html.erb:197
#: ../../app/views/plans/_edit_details.html.erb:11
#: ../../app/views/plans/_guidance_selection.html.erb:23
#: ../../app/views/questions/_preview_question.html.erb:111
@@ -2318,6 +2329,10 @@ msgstr ""
msgid "Hello"
msgstr "Hello"
+#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4
+msgid "Your"
+msgstr "Your"
+
#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4
msgid ""
"account has been locked due to an excessive number of unsuccessful sign in att"
@@ -2326,10 +2341,6 @@ 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"
@@ -2889,7 +2900,7 @@ msgid "GitHub"
msgstr "GitHub"
#: ../../app/views/layouts/_navigation.html.erb:12
-#: ../../app/views/orgs/_profile_form.html.erb:55
+#: ../../app/views/orgs/_profile_form.html.erb:58
msgid "logo"
msgstr "logo"
@@ -2966,14 +2977,14 @@ msgstr "Logout"
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:91
+msgid "Notice:"
+msgstr "Notice:"
+
#: ../../app/views/layouts/application.html.erb:102
msgid "Loading..."
msgstr "Loading..."
@@ -3419,6 +3430,8 @@ msgid "Order"
msgstr "Order"
#: ../../app/views/org_admin/question_options/_option_fields.html.erb:6
+#: ../../app/views/orgs/_profile_form.html.erb:144
+#: ../../app/views/orgs/_profile_form.html.erb:173
#: ../../app/views/paginable/guidances/_index.html.erb:6
#: ../../app/views/shared/_links.html.erb:13
msgid "Text"
@@ -3928,15 +3941,23 @@ 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
+#: ../../app/views/orgs/_profile_form.html.erb:6
+msgid ""
+"This information can only be changed by a system administrator. Contact %{supp"
+"ort_email} if you have questions or to request changes."
+msgstr ""
+"This information can only be changed by a system administrator. Contact %{supp"
+"ort_email} if you have questions or to request changes."
+
+#: ../../app/views/orgs/_profile_form.html.erb:24
msgid "Organisation full name"
msgstr "Organisation full name"
-#: ../../app/views/orgs/_profile_form.html.erb:27
+#: ../../app/views/orgs/_profile_form.html.erb:30
msgid "Organisation abbreviated name"
msgstr "Organisation abbreviated name"
-#: ../../app/views/orgs/_profile_form.html.erb:38
+#: ../../app/views/orgs/_profile_form.html.erb:41
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"
@@ -3946,68 +3967,68 @@ msgstr ""
"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
+#: ../../app/views/orgs/_profile_form.html.erb:42
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
+#: ../../app/views/orgs/_profile_form.html.erb:54
msgid "Organization logo"
msgstr "Organization logo"
-#: ../../app/views/orgs/_profile_form.html.erb:59
+#: ../../app/views/orgs/_profile_form.html.erb:62
msgid "This will remove your organisation's logo"
msgstr "This will remove your organisation's logo"
-#: ../../app/views/orgs/_profile_form.html.erb:60
+#: ../../app/views/orgs/_profile_form.html.erb:63
msgid "Remove logo"
msgstr "Remove logo"
-#: ../../app/views/orgs/_profile_form.html.erb:62
+#: ../../app/views/orgs/_profile_form.html.erb:65
#: ../../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
+#: ../../app/views/orgs/_profile_form.html.erb:82
msgid "Organisation URLs"
msgstr "Organisation URLs"
-#: ../../app/views/orgs/_profile_form.html.erb:91
-#: ../../app/views/orgs/_profile_form.html.erb:96
+#: ../../app/views/orgs/_profile_form.html.erb:94
+#: ../../app/views/orgs/_profile_form.html.erb:99
msgid "Help Desk email"
msgstr "Help Desk email"
-#: ../../app/views/orgs/_profile_form.html.erb:105
+#: ../../app/views/orgs/_profile_form.html.erb:108
msgid "Administrator contact"
msgstr "Administrator contact"
-#: ../../app/views/orgs/_profile_form.html.erb:110
+#: ../../app/views/orgs/_profile_form.html.erb:113
msgid "Contact email"
msgstr "Contact email"
-#: ../../app/views/orgs/_profile_form.html.erb:114
+#: ../../app/views/orgs/_profile_form.html.erb:117
#: ../../app/views/shared/_links.html.erb:35
msgid "Link text"
msgstr "Link text"
-#: ../../app/views/orgs/_profile_form.html.erb:122
+#: ../../app/views/orgs/_profile_form.html.erb:125
msgid "Google Analytics Tracker"
msgstr "Google Analytics Tracker"
-#: ../../app/views/orgs/_profile_form.html.erb:128
+#: ../../app/views/orgs/_profile_form.html.erb:131
msgid "Tracker Code"
msgstr "Tracker Code"
-#: ../../app/views/orgs/_profile_form.html.erb:139
+#: ../../app/views/orgs/_profile_form.html.erb:143
msgid "Organisation Types"
msgstr "Organisation Types"
-#: ../../app/views/orgs/_profile_form.html.erb:149
+#: ../../app/views/orgs/_profile_form.html.erb:158
msgid "Institution"
msgstr "Institution"
-#: ../../app/views/orgs/_profile_form.html.erb:162
+#: ../../app/views/orgs/_profile_form.html.erb:172
msgid "Organisation type(s)"
msgstr "Organisation type(s)"
@@ -4304,14 +4325,6 @@ msgstr "Copy"
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"
@@ -4320,6 +4333,14 @@ 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/_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/_publicly_visible.html.erb:17
msgid "Not Applicable"
msgstr "Not Applicable"
@@ -4836,8 +4857,8 @@ 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"
+msgid "Public: anyone can view or download from the Public DMPs page"
+msgstr "Public: anyone can view or download from the Public DMPs page"
#: ../../app/views/plans/_share_form.html.erb:44
msgid "Manage collaborators"
@@ -5498,14 +5519,14 @@ msgstr "Sign up"
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:35
+msgid "page for guidance."
+msgstr "page for guidance."
+
#: ../../app/views/static_pages/about_us.html.erb:37
msgid "Customising for your Organisation"
msgstr "Customising for your Organisation"
@@ -6457,22 +6478,22 @@ msgstr ""
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 " to "
+msgstr " to "
+
#: ../../app/views/user_mailer/question_answered.html.erb:5
msgid " in a plan called "
msgstr " in a plan called "
+#: ../../app/views/user_mailer/question_answered.html.erb:5
+msgid " based on the template "
+msgstr " based on the template "
+
#: ../../app/views/user_mailer/sharing_notification.html.erb:5
msgid ""
"Your colleague %{inviter_name} has invited you to contribute to
\n"
@@ -6624,14 +6645,14 @@ msgstr ""
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."
+#: ../../app/views/users/refresh_token.js.erb:1
+msgid "Unable to regenerate your API token."
+msgstr "Unable to regenerate your API token."
+
#: i18n_placeholders.rb:4
msgid "activerecord.errors.messages.record_invalid"
msgstr "activerecord.errors.messages.record_invalid"
diff --git a/config/locale/en_CA/LC_MESSAGES/app.mo b/config/locale/en_CA/LC_MESSAGES/app.mo
index be3cfc431d..3930915f25 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 aa5e9a36b2..d2329a360d 100644
--- a/config/locale/en_CA/app.po
+++ b/config/locale/en_CA/app.po
@@ -1,14 +1,14 @@
-# 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.
+# English translations for roadmap package.
+# Copyright (C) 2023 roadmap
+# This file is distributed under the same license as the roadmap package.
+# FIRST AUTHOR , 2023.
#
msgid ""
msgstr ""
-"Project-Id-Version: DMPRoadmap-Development 1.0\n"
+"Project-Id-Version: roadmap 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 20:11+0100\n"
+"POT-Creation-Date: 2023-02-03 09:02+0100\n"
+"PO-Revision-Date: 2023-02-03 09:02+0100\n"
"Last-Translator: FULL NAME \n"
"Language-Team: English\n"
"Language: en_CA\n"
@@ -70,7 +70,6 @@ msgid "users_joined"
msgstr ""
#: ../../app/controllers/api/v0/statistics_controller.rb:89
-#: ../../app/controllers/usage_controller.rb:87
msgid "No. Completed Plans"
msgstr ""
@@ -90,7 +89,7 @@ msgstr ""
msgid "Missing or invalid JSON"
msgstr ""
-#: ../../app/controllers/api/v1/base_api_controller.rb:79
+#: ../../app/controllers/api/v1/base_api_controller.rb:80
msgid "Invalid JSON format"
msgstr ""
@@ -494,7 +493,7 @@ msgstr ""
#: ../../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/orgs/_profile_form.html.erb:164
#: ../../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
@@ -603,7 +602,7 @@ msgstr ""
msgid "Your organisation does not seem to be properly configured."
msgstr ""
-#: ../../app/controllers/plan_exports_controller.rb:99
+#: ../../app/controllers/plan_exports_controller.rb:100
msgid "Created using %{application_name}. Last modified %{date}"
msgstr ""
@@ -892,6 +891,10 @@ msgstr ""
msgid "merge"
msgstr ""
+#: ../../app/controllers/usage_controller.rb:87
+msgid "No. Created Plans"
+msgstr ""
+
#: ../../app/controllers/users/invitations_controller.rb:33
msgid ""
"You are already signed in as another user. Please log out to activate your inv"
@@ -980,7 +983,7 @@ msgid "Creators:"
msgstr ""
#: ../../app/helpers/exports_helper.rb:38
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:178
#: ../../app/views/shared/export/_plan_coversheet.erb:8
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creator:"
@@ -1073,6 +1076,10 @@ msgstr ""
msgid "Grant API to organisations"
msgstr ""
+#: ../../app/helpers/perms_helper.rb:17
+msgid "Review organisational plans"
+msgstr ""
+
#: ../../app/helpers/plans_helper.rb:8
#: ../../app/views/paginable/plans/_index.html.erb:8
#: ../../app/views/paginable/plans/_org_admin.html.erb:21
@@ -1148,7 +1155,7 @@ msgid "Plan Description"
msgstr ""
#: ../../app/helpers/settings_template_helper.rb:15
-#: ../../app/views/orgs/_profile_form.html.erb:143
+#: ../../app/views/orgs/_profile_form.html.erb:152
#: ../../app/views/paginable/templates/_customisable.html.erb:7
#: ../../app/views/paginable/templates/_organisational.html.erb:12
#: ../../app/views/plans/_project_details.html.erb:156
@@ -1253,149 +1260,149 @@ msgstr ""
msgid "%{tool_name} API changes"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:30
+#: ../../app/models/concerns/exportable_plan.rb:31
msgid "Phase"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Section"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116
msgid "Question"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:32
-#: ../../app/models/concerns/exportable_plan.rb:34
+#: ../../app/models/concerns/exportable_plan.rb:33
+#: ../../app/models/concerns/exportable_plan.rb:35
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Answer"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:134
+#: ../../app/models/concerns/exportable_plan.rb:142
msgid " Customised By: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
#: ../../app/views/shared/export/_plan_coversheet.erb:6
msgid "Title: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
msgid "%{title}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:145
+#: ../../app/models/concerns/exportable_plan.rb:176
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creators: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:145
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:176
+#: ../../app/models/concerns/exportable_plan.rb:178
msgid "%{authors}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:150
+#: ../../app/models/concerns/exportable_plan.rb:181
#: ../../app/views/shared/export/_plan_coversheet.erb:14
#: ../../app/views/shared/export/_plan_txt.erb:9
msgid "Principal Investigator: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:151
+#: ../../app/models/concerns/exportable_plan.rb:182
msgid "%{investigation}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:154
+#: ../../app/models/concerns/exportable_plan.rb:185
msgid "Date Manager: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:155
+#: ../../app/models/concerns/exportable_plan.rb:186
msgid "%{data_curation}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
#: ../../app/views/shared/export/_plan_coversheet.erb:20
#: ../../app/views/shared/export/_plan_txt.erb:15
msgid "Project Administrator: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
msgid "%{pa}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
#: ../../app/views/shared/export/_plan_coversheet.erb:23
#: ../../app/views/shared/export/_plan_txt.erb:18
msgid "Contributor: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
msgid "%{other}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
#: ../../app/views/shared/export/_plan_coversheet.erb:26
#: ../../app/views/shared/export/_plan_txt.erb:20
msgid "Affiliation: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
msgid "%{affiliation}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:165
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:196
+#: ../../app/models/concerns/exportable_plan.rb:198
#: ../../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:165
+#: ../../app/models/concerns/exportable_plan.rb:196
msgid "%{funder}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:198
msgid "%{template}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
#: ../../app/views/shared/export/_plan_txt.erb:27
msgid "Grant number: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
msgid "%{grant_number}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:171
+#: ../../app/models/concerns/exportable_plan.rb:202
#: ../../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:171
+#: ../../app/models/concerns/exportable_plan.rb:202
msgid "%{description}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:173
+#: ../../app/models/concerns/exportable_plan.rb:204
#: ../../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:173
+#: ../../app/models/concerns/exportable_plan.rb:204
msgid "%{date}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:174
+#: ../../app/models/concerns/exportable_plan.rb:205
#: ../../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:175
+#: ../../app/models/concerns/exportable_plan.rb:206
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"
@@ -1409,7 +1416,11 @@ msgid ""
" your project or proposal"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:198
+#: ../../app/models/concerns/exportable_plan.rb:221
+msgid "Research Outputs: "
+msgstr ""
+
+#: ../../app/models/concerns/exportable_plan.rb:244
msgid "Not Answered"
msgstr ""
@@ -1864,7 +1875,7 @@ msgstr ""
#: ../../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/orgs/_profile_form.html.erb:197
#: ../../app/views/plans/_edit_details.html.erb:11
#: ../../app/views/plans/_guidance_selection.html.erb:23
#: ../../app/views/questions/_preview_question.html.erb:111
@@ -2228,13 +2239,13 @@ msgid "Hello"
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."
+msgid "Your"
msgstr ""
#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4
-msgid "Your"
+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:6
@@ -2747,7 +2758,7 @@ msgid "GitHub"
msgstr ""
#: ../../app/views/layouts/_navigation.html.erb:12
-#: ../../app/views/orgs/_profile_form.html.erb:55
+#: ../../app/views/orgs/_profile_form.html.erb:58
msgid "logo"
msgstr ""
@@ -2825,11 +2836,11 @@ msgid "%{application_name}"
msgstr ""
#: ../../app/views/layouts/application.html.erb:91
-msgid "Notice:"
+msgid "Error:"
msgstr ""
#: ../../app/views/layouts/application.html.erb:91
-msgid "Error:"
+msgid "Notice:"
msgstr ""
#: ../../app/views/layouts/application.html.erb:102
@@ -3259,6 +3270,8 @@ msgid "Order"
msgstr ""
#: ../../app/views/org_admin/question_options/_option_fields.html.erb:6
+#: ../../app/views/orgs/_profile_form.html.erb:144
+#: ../../app/views/orgs/_profile_form.html.erb:173
#: ../../app/views/paginable/guidances/_index.html.erb:6
#: ../../app/views/shared/_links.html.erb:13
msgid "Text"
@@ -3718,83 +3731,89 @@ msgid ""
"lp Desk if you have questions or to request changes."
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:21
+#: ../../app/views/orgs/_profile_form.html.erb:6
+msgid ""
+"This information can only be changed by a system administrator. Contact %{supp"
+"ort_email} if you have questions or to request changes."
+msgstr ""
+
+#: ../../app/views/orgs/_profile_form.html.erb:24
msgid "Organisation full name"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:27
+#: ../../app/views/orgs/_profile_form.html.erb:30
msgid "Organisation abbreviated name"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:38
+#: ../../app/views/orgs/_profile_form.html.erb:41
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 ""
-#: ../../app/views/orgs/_profile_form.html.erb:39
+#: ../../app/views/orgs/_profile_form.html.erb:42
msgid "Managed? (allows Org Admins to access the Admin menu)"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:51
+#: ../../app/views/orgs/_profile_form.html.erb:54
msgid "Organization logo"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:59
+#: ../../app/views/orgs/_profile_form.html.erb:62
msgid "This will remove your organisation's logo"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:60
+#: ../../app/views/orgs/_profile_form.html.erb:63
msgid "Remove logo"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:62
+#: ../../app/views/orgs/_profile_form.html.erb:65
#: ../../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 ""
-#: ../../app/views/orgs/_profile_form.html.erb:79
+#: ../../app/views/orgs/_profile_form.html.erb:82
msgid "Organisation URLs"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:91
-#: ../../app/views/orgs/_profile_form.html.erb:96
+#: ../../app/views/orgs/_profile_form.html.erb:94
+#: ../../app/views/orgs/_profile_form.html.erb:99
msgid "Help Desk email"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:105
+#: ../../app/views/orgs/_profile_form.html.erb:108
msgid "Administrator contact"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:110
+#: ../../app/views/orgs/_profile_form.html.erb:113
msgid "Contact email"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:114
+#: ../../app/views/orgs/_profile_form.html.erb:117
#: ../../app/views/shared/_links.html.erb:35
msgid "Link text"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:122
+#: ../../app/views/orgs/_profile_form.html.erb:125
msgid "Google Analytics Tracker"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:128
+#: ../../app/views/orgs/_profile_form.html.erb:131
msgid "Tracker Code"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:139
+#: ../../app/views/orgs/_profile_form.html.erb:143
msgid "Organisation Types"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:149
+#: ../../app/views/orgs/_profile_form.html.erb:158
msgid "Institution"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:162
+#: ../../app/views/orgs/_profile_form.html.erb:172
msgid "Organisation type(s)"
msgstr ""
@@ -4077,14 +4096,14 @@ msgstr ""
#: ../../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/_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/_publicly_visible.html.erb:17
@@ -4560,7 +4579,7 @@ msgid "Organisation: anyone at my organisation can view"
msgstr ""
#: ../../app/views/plans/_share_form.html.erb:37
-msgid "Public: anyone can view"
+msgid "Public: anyone can view or download from the Public DMPs page"
msgstr ""
#: ../../app/views/plans/_share_form.html.erb:44
@@ -5160,11 +5179,11 @@ msgid "on the homepage."
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:35
-msgid "Please visit the"
+msgid "page for guidance."
msgstr ""
#: ../../app/views/static_pages/about_us.html.erb:37
@@ -5939,19 +5958,19 @@ msgid "Hello %{recipient_name},"
msgstr ""
#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " to "
+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 " to "
msgstr ""
#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " is creating a Data Management Plan and has answered "
+msgid " in a plan called "
msgstr ""
#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " in a plan called "
+msgid " based on the template "
msgstr ""
#: ../../app/views/user_mailer/sharing_notification.html.erb:5
@@ -6091,11 +6110,11 @@ msgid "Download users"
msgstr ""
#: ../../app/views/users/refresh_token.js.erb:1
-msgid "Unable to regenerate your API token."
+msgid "Successfully regenerate your API token."
msgstr ""
#: ../../app/views/users/refresh_token.js.erb:1
-msgid "Successfully regenerate your API token."
+msgid "Unable to 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 10dba7640f..44a5207f92 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 037d483fa4..29ee258673 100644
--- a/config/locale/en_GB/app.po
+++ b/config/locale/en_GB/app.po
@@ -1,14 +1,14 @@
-# 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.
+# English translations for roadmap package.
+# Copyright (C) 2023 roadmap
+# This file is distributed under the same license as the roadmap package.
+# FIRST AUTHOR , 2023.
#
msgid ""
msgstr ""
-"Project-Id-Version: DMPRoadmap-Development 1.0\n"
+"Project-Id-Version: roadmap 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 20:11+0100\n"
+"POT-Creation-Date: 2023-02-03 09:02+0100\n"
+"PO-Revision-Date: 2023-02-03 09:02+0100\n"
"Last-Translator: FULL NAME \n"
"Language-Team: English\n"
"Language: en_GB\n"
@@ -70,7 +70,6 @@ msgid "users_joined"
msgstr ""
#: ../../app/controllers/api/v0/statistics_controller.rb:89
-#: ../../app/controllers/usage_controller.rb:87
msgid "No. Completed Plans"
msgstr ""
@@ -90,7 +89,7 @@ msgstr ""
msgid "Missing or invalid JSON"
msgstr ""
-#: ../../app/controllers/api/v1/base_api_controller.rb:79
+#: ../../app/controllers/api/v1/base_api_controller.rb:80
msgid "Invalid JSON format"
msgstr ""
@@ -494,7 +493,7 @@ msgstr ""
#: ../../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/orgs/_profile_form.html.erb:164
#: ../../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
@@ -603,7 +602,7 @@ msgstr ""
msgid "Your organisation does not seem to be properly configured."
msgstr ""
-#: ../../app/controllers/plan_exports_controller.rb:99
+#: ../../app/controllers/plan_exports_controller.rb:100
msgid "Created using %{application_name}. Last modified %{date}"
msgstr ""
@@ -892,6 +891,10 @@ msgstr ""
msgid "merge"
msgstr ""
+#: ../../app/controllers/usage_controller.rb:87
+msgid "No. Created Plans"
+msgstr ""
+
#: ../../app/controllers/users/invitations_controller.rb:33
msgid ""
"You are already signed in as another user. Please log out to activate your inv"
@@ -980,7 +983,7 @@ msgid "Creators:"
msgstr ""
#: ../../app/helpers/exports_helper.rb:38
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:178
#: ../../app/views/shared/export/_plan_coversheet.erb:8
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creator:"
@@ -1073,6 +1076,10 @@ msgstr ""
msgid "Grant API to organisations"
msgstr ""
+#: ../../app/helpers/perms_helper.rb:17
+msgid "Review organisational plans"
+msgstr ""
+
#: ../../app/helpers/plans_helper.rb:8
#: ../../app/views/paginable/plans/_index.html.erb:8
#: ../../app/views/paginable/plans/_org_admin.html.erb:21
@@ -1148,7 +1155,7 @@ msgid "Plan Description"
msgstr ""
#: ../../app/helpers/settings_template_helper.rb:15
-#: ../../app/views/orgs/_profile_form.html.erb:143
+#: ../../app/views/orgs/_profile_form.html.erb:152
#: ../../app/views/paginable/templates/_customisable.html.erb:7
#: ../../app/views/paginable/templates/_organisational.html.erb:12
#: ../../app/views/plans/_project_details.html.erb:156
@@ -1253,149 +1260,149 @@ msgstr ""
msgid "%{tool_name} API changes"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:30
+#: ../../app/models/concerns/exportable_plan.rb:31
msgid "Phase"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Section"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116
msgid "Question"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:32
-#: ../../app/models/concerns/exportable_plan.rb:34
+#: ../../app/models/concerns/exportable_plan.rb:33
+#: ../../app/models/concerns/exportable_plan.rb:35
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Answer"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:134
+#: ../../app/models/concerns/exportable_plan.rb:142
msgid " Customised By: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
#: ../../app/views/shared/export/_plan_coversheet.erb:6
msgid "Title: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
msgid "%{title}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:145
+#: ../../app/models/concerns/exportable_plan.rb:176
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creators: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:145
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:176
+#: ../../app/models/concerns/exportable_plan.rb:178
msgid "%{authors}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:150
+#: ../../app/models/concerns/exportable_plan.rb:181
#: ../../app/views/shared/export/_plan_coversheet.erb:14
#: ../../app/views/shared/export/_plan_txt.erb:9
msgid "Principal Investigator: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:151
+#: ../../app/models/concerns/exportable_plan.rb:182
msgid "%{investigation}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:154
+#: ../../app/models/concerns/exportable_plan.rb:185
msgid "Date Manager: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:155
+#: ../../app/models/concerns/exportable_plan.rb:186
msgid "%{data_curation}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
#: ../../app/views/shared/export/_plan_coversheet.erb:20
#: ../../app/views/shared/export/_plan_txt.erb:15
msgid "Project Administrator: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
msgid "%{pa}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
#: ../../app/views/shared/export/_plan_coversheet.erb:23
#: ../../app/views/shared/export/_plan_txt.erb:18
msgid "Contributor: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
msgid "%{other}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
#: ../../app/views/shared/export/_plan_coversheet.erb:26
#: ../../app/views/shared/export/_plan_txt.erb:20
msgid "Affiliation: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
msgid "%{affiliation}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:165
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:196
+#: ../../app/models/concerns/exportable_plan.rb:198
#: ../../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:165
+#: ../../app/models/concerns/exportable_plan.rb:196
msgid "%{funder}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:198
msgid "%{template}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
#: ../../app/views/shared/export/_plan_txt.erb:27
msgid "Grant number: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
msgid "%{grant_number}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:171
+#: ../../app/models/concerns/exportable_plan.rb:202
#: ../../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:171
+#: ../../app/models/concerns/exportable_plan.rb:202
msgid "%{description}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:173
+#: ../../app/models/concerns/exportable_plan.rb:204
#: ../../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:173
+#: ../../app/models/concerns/exportable_plan.rb:204
msgid "%{date}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:174
+#: ../../app/models/concerns/exportable_plan.rb:205
#: ../../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:175
+#: ../../app/models/concerns/exportable_plan.rb:206
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"
@@ -1409,7 +1416,11 @@ msgid ""
" your project or proposal"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:198
+#: ../../app/models/concerns/exportable_plan.rb:221
+msgid "Research Outputs: "
+msgstr ""
+
+#: ../../app/models/concerns/exportable_plan.rb:244
msgid "Not Answered"
msgstr ""
@@ -1864,7 +1875,7 @@ msgstr ""
#: ../../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/orgs/_profile_form.html.erb:197
#: ../../app/views/plans/_edit_details.html.erb:11
#: ../../app/views/plans/_guidance_selection.html.erb:23
#: ../../app/views/questions/_preview_question.html.erb:111
@@ -2228,13 +2239,13 @@ msgid "Hello"
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."
+msgid "Your"
msgstr ""
#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4
-msgid "Your"
+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:6
@@ -2747,7 +2758,7 @@ msgid "GitHub"
msgstr ""
#: ../../app/views/layouts/_navigation.html.erb:12
-#: ../../app/views/orgs/_profile_form.html.erb:55
+#: ../../app/views/orgs/_profile_form.html.erb:58
msgid "logo"
msgstr ""
@@ -2825,11 +2836,11 @@ msgid "%{application_name}"
msgstr ""
#: ../../app/views/layouts/application.html.erb:91
-msgid "Notice:"
+msgid "Error:"
msgstr ""
#: ../../app/views/layouts/application.html.erb:91
-msgid "Error:"
+msgid "Notice:"
msgstr ""
#: ../../app/views/layouts/application.html.erb:102
@@ -3259,6 +3270,8 @@ msgid "Order"
msgstr ""
#: ../../app/views/org_admin/question_options/_option_fields.html.erb:6
+#: ../../app/views/orgs/_profile_form.html.erb:144
+#: ../../app/views/orgs/_profile_form.html.erb:173
#: ../../app/views/paginable/guidances/_index.html.erb:6
#: ../../app/views/shared/_links.html.erb:13
msgid "Text"
@@ -3718,83 +3731,89 @@ msgid ""
"lp Desk if you have questions or to request changes."
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:21
+#: ../../app/views/orgs/_profile_form.html.erb:6
+msgid ""
+"This information can only be changed by a system administrator. Contact %{supp"
+"ort_email} if you have questions or to request changes."
+msgstr ""
+
+#: ../../app/views/orgs/_profile_form.html.erb:24
msgid "Organisation full name"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:27
+#: ../../app/views/orgs/_profile_form.html.erb:30
msgid "Organisation abbreviated name"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:38
+#: ../../app/views/orgs/_profile_form.html.erb:41
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 ""
-#: ../../app/views/orgs/_profile_form.html.erb:39
+#: ../../app/views/orgs/_profile_form.html.erb:42
msgid "Managed? (allows Org Admins to access the Admin menu)"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:51
+#: ../../app/views/orgs/_profile_form.html.erb:54
msgid "Organization logo"
msgstr "Organisation logo"
-#: ../../app/views/orgs/_profile_form.html.erb:59
+#: ../../app/views/orgs/_profile_form.html.erb:62
msgid "This will remove your organisation's logo"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:60
+#: ../../app/views/orgs/_profile_form.html.erb:63
msgid "Remove logo"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:62
+#: ../../app/views/orgs/_profile_form.html.erb:65
#: ../../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 ""
-#: ../../app/views/orgs/_profile_form.html.erb:79
+#: ../../app/views/orgs/_profile_form.html.erb:82
msgid "Organisation URLs"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:91
-#: ../../app/views/orgs/_profile_form.html.erb:96
+#: ../../app/views/orgs/_profile_form.html.erb:94
+#: ../../app/views/orgs/_profile_form.html.erb:99
msgid "Help Desk email"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:105
+#: ../../app/views/orgs/_profile_form.html.erb:108
msgid "Administrator contact"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:110
+#: ../../app/views/orgs/_profile_form.html.erb:113
msgid "Contact email"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:114
+#: ../../app/views/orgs/_profile_form.html.erb:117
#: ../../app/views/shared/_links.html.erb:35
msgid "Link text"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:122
+#: ../../app/views/orgs/_profile_form.html.erb:125
msgid "Google Analytics Tracker"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:128
+#: ../../app/views/orgs/_profile_form.html.erb:131
msgid "Tracker Code"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:139
+#: ../../app/views/orgs/_profile_form.html.erb:143
msgid "Organisation Types"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:149
+#: ../../app/views/orgs/_profile_form.html.erb:158
msgid "Institution"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:162
+#: ../../app/views/orgs/_profile_form.html.erb:172
msgid "Organisation type(s)"
msgstr ""
@@ -4077,14 +4096,14 @@ msgstr ""
#: ../../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/_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/_publicly_visible.html.erb:17
@@ -4562,7 +4581,7 @@ msgid "Organisation: anyone at my organisation can view"
msgstr ""
#: ../../app/views/plans/_share_form.html.erb:37
-msgid "Public: anyone can view"
+msgid "Public: anyone can view or download from the Public DMPs page"
msgstr ""
#: ../../app/views/plans/_share_form.html.erb:44
@@ -5162,11 +5181,11 @@ msgid "on the homepage."
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:35
-msgid "Please visit the"
+msgid "page for guidance."
msgstr ""
#: ../../app/views/static_pages/about_us.html.erb:37
@@ -5941,19 +5960,19 @@ msgid "Hello %{recipient_name},"
msgstr ""
#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " to "
+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 " to "
msgstr ""
#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " is creating a Data Management Plan and has answered "
+msgid " in a plan called "
msgstr ""
#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " in a plan called "
+msgid " based on the template "
msgstr ""
#: ../../app/views/user_mailer/sharing_notification.html.erb:5
@@ -6093,11 +6112,11 @@ msgid "Download users"
msgstr ""
#: ../../app/views/users/refresh_token.js.erb:1
-msgid "Unable to regenerate your API token."
+msgid "Successfully regenerate your API token."
msgstr ""
#: ../../app/views/users/refresh_token.js.erb:1
-msgid "Successfully regenerate your API token."
+msgid "Unable to 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 790f499179..861e3c45fa 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 38ada31519..3073707402 100644
--- a/config/locale/en_US/app.po
+++ b/config/locale/en_US/app.po
@@ -1,14 +1,14 @@
-# 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.
+# English translations for roadmap package.
+# Copyright (C) 2023 roadmap
+# This file is distributed under the same license as the roadmap package.
+# FIRST AUTHOR , 2023.
#
msgid ""
msgstr ""
-"Project-Id-Version: DMPRoadmap-Development 1.0\n"
+"Project-Id-Version: roadmap 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 20:11+0100\n"
+"POT-Creation-Date: 2023-02-03 09:02+0100\n"
+"PO-Revision-Date: 2023-02-03 09:02+0100\n"
"Last-Translator: FULL NAME \n"
"Language-Team: English\n"
"Language: en_US\n"
@@ -70,7 +70,6 @@ msgid "users_joined"
msgstr ""
#: ../../app/controllers/api/v0/statistics_controller.rb:89
-#: ../../app/controllers/usage_controller.rb:87
msgid "No. Completed Plans"
msgstr ""
@@ -90,7 +89,7 @@ msgstr ""
msgid "Missing or invalid JSON"
msgstr ""
-#: ../../app/controllers/api/v1/base_api_controller.rb:79
+#: ../../app/controllers/api/v1/base_api_controller.rb:80
msgid "Invalid JSON format"
msgstr ""
@@ -494,7 +493,7 @@ msgstr ""
#: ../../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/orgs/_profile_form.html.erb:164
#: ../../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
@@ -603,7 +602,7 @@ msgstr "Please choose an organization"
msgid "Your organisation does not seem to be properly configured."
msgstr "Your organization does not seem to be properly configured."
-#: ../../app/controllers/plan_exports_controller.rb:99
+#: ../../app/controllers/plan_exports_controller.rb:100
msgid "Created using %{application_name}. Last modified %{date}"
msgstr ""
@@ -896,6 +895,10 @@ msgstr ""
msgid "merge"
msgstr ""
+#: ../../app/controllers/usage_controller.rb:87
+msgid "No. Created Plans"
+msgstr ""
+
#: ../../app/controllers/users/invitations_controller.rb:33
msgid ""
"You are already signed in as another user. Please log out to activate your inv"
@@ -984,7 +987,7 @@ msgid "Creators:"
msgstr ""
#: ../../app/helpers/exports_helper.rb:38
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:178
#: ../../app/views/shared/export/_plan_coversheet.erb:8
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creator:"
@@ -1077,6 +1080,10 @@ msgstr "Manage organization details"
msgid "Grant API to organisations"
msgstr "Grant API to organizations"
+#: ../../app/helpers/perms_helper.rb:17
+msgid "Review organisational plans"
+msgstr ""
+
#: ../../app/helpers/plans_helper.rb:8
#: ../../app/views/paginable/plans/_index.html.erb:8
#: ../../app/views/paginable/plans/_org_admin.html.erb:21
@@ -1152,7 +1159,7 @@ msgid "Plan Description"
msgstr ""
#: ../../app/helpers/settings_template_helper.rb:15
-#: ../../app/views/orgs/_profile_form.html.erb:143
+#: ../../app/views/orgs/_profile_form.html.erb:152
#: ../../app/views/paginable/templates/_customisable.html.erb:7
#: ../../app/views/paginable/templates/_organisational.html.erb:12
#: ../../app/views/plans/_project_details.html.erb:156
@@ -1257,149 +1264,149 @@ msgstr ""
msgid "%{tool_name} API changes"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:30
+#: ../../app/models/concerns/exportable_plan.rb:31
msgid "Phase"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Section"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116
msgid "Question"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:32
-#: ../../app/models/concerns/exportable_plan.rb:34
+#: ../../app/models/concerns/exportable_plan.rb:33
+#: ../../app/models/concerns/exportable_plan.rb:35
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Answer"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:134
+#: ../../app/models/concerns/exportable_plan.rb:142
msgid " Customised By: "
msgstr " Customized By: "
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
#: ../../app/views/shared/export/_plan_coversheet.erb:6
msgid "Title: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
msgid "%{title}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:145
+#: ../../app/models/concerns/exportable_plan.rb:176
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creators: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:145
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:176
+#: ../../app/models/concerns/exportable_plan.rb:178
msgid "%{authors}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:150
+#: ../../app/models/concerns/exportable_plan.rb:181
#: ../../app/views/shared/export/_plan_coversheet.erb:14
#: ../../app/views/shared/export/_plan_txt.erb:9
msgid "Principal Investigator: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:151
+#: ../../app/models/concerns/exportable_plan.rb:182
msgid "%{investigation}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:154
+#: ../../app/models/concerns/exportable_plan.rb:185
msgid "Date Manager: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:155
+#: ../../app/models/concerns/exportable_plan.rb:186
msgid "%{data_curation}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
#: ../../app/views/shared/export/_plan_coversheet.erb:20
#: ../../app/views/shared/export/_plan_txt.erb:15
msgid "Project Administrator: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
msgid "%{pa}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
#: ../../app/views/shared/export/_plan_coversheet.erb:23
#: ../../app/views/shared/export/_plan_txt.erb:18
msgid "Contributor: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
msgid "%{other}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
#: ../../app/views/shared/export/_plan_coversheet.erb:26
#: ../../app/views/shared/export/_plan_txt.erb:20
msgid "Affiliation: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
msgid "%{affiliation}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:165
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:196
+#: ../../app/models/concerns/exportable_plan.rb:198
#: ../../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:165
+#: ../../app/models/concerns/exportable_plan.rb:196
msgid "%{funder}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:198
msgid "%{template}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
#: ../../app/views/shared/export/_plan_txt.erb:27
msgid "Grant number: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
msgid "%{grant_number}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:171
+#: ../../app/models/concerns/exportable_plan.rb:202
#: ../../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:171
+#: ../../app/models/concerns/exportable_plan.rb:202
msgid "%{description}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:173
+#: ../../app/models/concerns/exportable_plan.rb:204
#: ../../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:173
+#: ../../app/models/concerns/exportable_plan.rb:204
msgid "%{date}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:174
+#: ../../app/models/concerns/exportable_plan.rb:205
#: ../../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:175
+#: ../../app/models/concerns/exportable_plan.rb:206
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"
@@ -1413,7 +1420,11 @@ msgid ""
" your project or proposal"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:198
+#: ../../app/models/concerns/exportable_plan.rb:221
+msgid "Research Outputs: "
+msgstr ""
+
+#: ../../app/models/concerns/exportable_plan.rb:244
msgid "Not Answered"
msgstr ""
@@ -1868,7 +1879,7 @@ msgstr ""
#: ../../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/orgs/_profile_form.html.erb:197
#: ../../app/views/plans/_edit_details.html.erb:11
#: ../../app/views/plans/_guidance_selection.html.erb:23
#: ../../app/views/questions/_preview_question.html.erb:111
@@ -2232,13 +2243,13 @@ msgid "Hello"
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."
+msgid "Your"
msgstr ""
#: ../../app/views/devise/mailer/unlock_instructions.html.erb:4
-msgid "Your"
+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:6
@@ -2765,7 +2776,7 @@ msgid "GitHub"
msgstr ""
#: ../../app/views/layouts/_navigation.html.erb:12
-#: ../../app/views/orgs/_profile_form.html.erb:55
+#: ../../app/views/orgs/_profile_form.html.erb:58
msgid "logo"
msgstr ""
@@ -2843,11 +2854,11 @@ msgid "%{application_name}"
msgstr ""
#: ../../app/views/layouts/application.html.erb:91
-msgid "Notice:"
+msgid "Error:"
msgstr ""
#: ../../app/views/layouts/application.html.erb:91
-msgid "Error:"
+msgid "Notice:"
msgstr ""
#: ../../app/views/layouts/application.html.erb:102
@@ -3279,6 +3290,8 @@ msgid "Order"
msgstr ""
#: ../../app/views/org_admin/question_options/_option_fields.html.erb:6
+#: ../../app/views/orgs/_profile_form.html.erb:144
+#: ../../app/views/orgs/_profile_form.html.erb:173
#: ../../app/views/paginable/guidances/_index.html.erb:6
#: ../../app/views/shared/_links.html.erb:13
msgid "Text"
@@ -3752,83 +3765,89 @@ msgid ""
"lp Desk if you have questions or to request changes."
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:21
+#: ../../app/views/orgs/_profile_form.html.erb:6
+msgid ""
+"This information can only be changed by a system administrator. Contact %{supp"
+"ort_email} if you have questions or to request changes."
+msgstr ""
+
+#: ../../app/views/orgs/_profile_form.html.erb:24
msgid "Organisation full name"
msgstr "Organization full name"
-#: ../../app/views/orgs/_profile_form.html.erb:27
+#: ../../app/views/orgs/_profile_form.html.erb:30
msgid "Organisation abbreviated name"
msgstr "Organization abbreviated name"
-#: ../../app/views/orgs/_profile_form.html.erb:38
+#: ../../app/views/orgs/_profile_form.html.erb:41
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 ""
-#: ../../app/views/orgs/_profile_form.html.erb:39
+#: ../../app/views/orgs/_profile_form.html.erb:42
msgid "Managed? (allows Org Admins to access the Admin menu)"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:51
+#: ../../app/views/orgs/_profile_form.html.erb:54
msgid "Organization logo"
msgstr "Organization logo"
-#: ../../app/views/orgs/_profile_form.html.erb:59
+#: ../../app/views/orgs/_profile_form.html.erb:62
msgid "This will remove your organisation's logo"
msgstr "This will remove your organization's logo"
-#: ../../app/views/orgs/_profile_form.html.erb:60
+#: ../../app/views/orgs/_profile_form.html.erb:63
msgid "Remove logo"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:62
+#: ../../app/views/orgs/_profile_form.html.erb:65
#: ../../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 ""
-#: ../../app/views/orgs/_profile_form.html.erb:79
+#: ../../app/views/orgs/_profile_form.html.erb:82
msgid "Organisation URLs"
msgstr "Organization URLs"
-#: ../../app/views/orgs/_profile_form.html.erb:91
-#: ../../app/views/orgs/_profile_form.html.erb:96
+#: ../../app/views/orgs/_profile_form.html.erb:94
+#: ../../app/views/orgs/_profile_form.html.erb:99
msgid "Help Desk email"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:105
+#: ../../app/views/orgs/_profile_form.html.erb:108
msgid "Administrator contact"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:110
+#: ../../app/views/orgs/_profile_form.html.erb:113
msgid "Contact email"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:114
+#: ../../app/views/orgs/_profile_form.html.erb:117
#: ../../app/views/shared/_links.html.erb:35
msgid "Link text"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:122
+#: ../../app/views/orgs/_profile_form.html.erb:125
msgid "Google Analytics Tracker"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:128
+#: ../../app/views/orgs/_profile_form.html.erb:131
msgid "Tracker Code"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:139
+#: ../../app/views/orgs/_profile_form.html.erb:143
msgid "Organisation Types"
msgstr "Organization Types"
-#: ../../app/views/orgs/_profile_form.html.erb:149
+#: ../../app/views/orgs/_profile_form.html.erb:158
msgid "Institution"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:162
+#: ../../app/views/orgs/_profile_form.html.erb:172
msgid "Organisation type(s)"
msgstr "Organization type(s)"
@@ -4111,14 +4130,14 @@ msgstr ""
#: ../../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/_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/_publicly_visible.html.erb:17
@@ -4609,7 +4628,7 @@ msgid "Organisation: anyone at my organisation can view"
msgstr "Organization: anyone at my organization can view"
#: ../../app/views/plans/_share_form.html.erb:37
-msgid "Public: anyone can view"
+msgid "Public: anyone can view or download from the Public DMPs page"
msgstr ""
#: ../../app/views/plans/_share_form.html.erb:44
@@ -5227,11 +5246,11 @@ msgid "on the homepage."
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:35
-msgid "Please visit the"
+msgid "page for guidance."
msgstr ""
#: ../../app/views/static_pages/about_us.html.erb:37
@@ -6030,19 +6049,19 @@ msgid "Hello %{recipient_name},"
msgstr ""
#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " to "
+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 " to "
msgstr ""
#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " is creating a Data Management Plan and has answered "
+msgid " in a plan called "
msgstr ""
#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " in a plan called "
+msgid " based on the template "
msgstr ""
#: ../../app/views/user_mailer/sharing_notification.html.erb:5
@@ -6188,11 +6207,11 @@ msgid "Download users"
msgstr ""
#: ../../app/views/users/refresh_token.js.erb:1
-msgid "Unable to regenerate your API token."
+msgid "Successfully regenerate your API token."
msgstr ""
#: ../../app/views/users/refresh_token.js.erb:1
-msgid "Successfully regenerate your API token."
+msgid "Unable to 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 da5bb85252..8efd84aaa6 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 a7b3ef820d..93de083a58 100644
--- a/config/locale/es/app.po
+++ b/config/locale/es/app.po
@@ -1,14 +1,14 @@
-# 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.
+# Spanish translations for roadmap package.
+# Copyright (C) 2023 roadmap
+# This file is distributed under the same license as the roadmap package.
+# FIRST AUTHOR , 2023.
#
msgid ""
msgstr ""
-"Project-Id-Version: DMPRoadmap-Development 1.0\n"
+"Project-Id-Version: roadmap 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 20:11+0100\n"
+"POT-Creation-Date: 2023-02-03 09:02+0100\n"
+"PO-Revision-Date: 2023-02-03 09:02+0100\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Spanish\n"
"Language: es\n"
@@ -72,7 +72,6 @@ msgid "users_joined"
msgstr "usuarios_ unidos"
#: ../../app/controllers/api/v0/statistics_controller.rb:89
-#: ../../app/controllers/usage_controller.rb:87
msgid "No. Completed Plans"
msgstr "No. Planes completados"
@@ -92,7 +91,7 @@ msgstr "Planes"
msgid "Missing or invalid JSON"
msgstr "JSON faltante o inválido"
-#: ../../app/controllers/api/v1/base_api_controller.rb:79
+#: ../../app/controllers/api/v1/base_api_controller.rb:80
msgid "Invalid JSON format"
msgstr "Formato JSON no válido"
@@ -504,7 +503,7 @@ msgstr "Modelo"
#: ../../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/orgs/_profile_form.html.erb:164
#: ../../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
@@ -615,7 +614,7 @@ msgstr "Por favor elige una organización"
msgid "Your organisation does not seem to be properly configured."
msgstr "Su organización no parece estar correctamente configurada."
-#: ../../app/controllers/plan_exports_controller.rb:99
+#: ../../app/controllers/plan_exports_controller.rb:100
msgid "Created using %{application_name}. Last modified %{date}"
msgstr "Creado usando %{application_name}. Última modificación %{date}"
@@ -933,6 +932,10 @@ msgstr "fusionado"
msgid "merge"
msgstr "Unir"
+#: ../../app/controllers/usage_controller.rb:87
+msgid "No. Created Plans"
+msgstr ""
+
#: ../../app/controllers/users/invitations_controller.rb:33
msgid ""
"You are already signed in as another user. Please log out to activate your inv"
@@ -1029,7 +1032,7 @@ msgid "Creators:"
msgstr "Creadores:"
#: ../../app/helpers/exports_helper.rb:38
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:178
#: ../../app/views/shared/export/_plan_coversheet.erb:8
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creator:"
@@ -1129,6 +1132,10 @@ msgstr "Administrar los detalles de la organización"
msgid "Grant API to organisations"
msgstr "Otorgar API a organizaciones"
+#: ../../app/helpers/perms_helper.rb:17
+msgid "Review organisational plans"
+msgstr ""
+
#: ../../app/helpers/plans_helper.rb:8
#: ../../app/views/paginable/plans/_index.html.erb:8
#: ../../app/views/paginable/plans/_org_admin.html.erb:21
@@ -1204,7 +1211,7 @@ msgid "Plan Description"
msgstr "Descripción"
#: ../../app/helpers/settings_template_helper.rb:15
-#: ../../app/views/orgs/_profile_form.html.erb:143
+#: ../../app/views/orgs/_profile_form.html.erb:152
#: ../../app/views/paginable/templates/_customisable.html.erb:7
#: ../../app/views/paginable/templates/_organisational.html.erb:12
#: ../../app/views/plans/_project_details.html.erb:156
@@ -1309,149 +1316,149 @@ msgstr "Privilegios de administrador otorgados en %{tool_name}"
msgid "%{tool_name} API changes"
msgstr "%{tool_name} Cambios de API"
-#: ../../app/models/concerns/exportable_plan.rb:30
+#: ../../app/models/concerns/exportable_plan.rb:31
msgid "Phase"
msgstr "Fase"
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Section"
msgstr "Sección"
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116
msgid "Question"
msgstr "Pregunta"
-#: ../../app/models/concerns/exportable_plan.rb:32
-#: ../../app/models/concerns/exportable_plan.rb:34
+#: ../../app/models/concerns/exportable_plan.rb:33
+#: ../../app/models/concerns/exportable_plan.rb:35
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Answer"
msgstr "responder"
-#: ../../app/models/concerns/exportable_plan.rb:134
+#: ../../app/models/concerns/exportable_plan.rb:142
msgid " Customised By: "
msgstr " Personalizado por:"
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
#: ../../app/views/shared/export/_plan_coversheet.erb:6
msgid "Title: "
msgstr "Título:"
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
msgid "%{title}"
msgstr "%{title}"
-#: ../../app/models/concerns/exportable_plan.rb:145
+#: ../../app/models/concerns/exportable_plan.rb:176
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creators: "
msgstr "Creadores:"
-#: ../../app/models/concerns/exportable_plan.rb:145
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:176
+#: ../../app/models/concerns/exportable_plan.rb:178
msgid "%{authors}"
msgstr "%{authors}"
-#: ../../app/models/concerns/exportable_plan.rb:150
+#: ../../app/models/concerns/exportable_plan.rb:181
#: ../../app/views/shared/export/_plan_coversheet.erb:14
#: ../../app/views/shared/export/_plan_txt.erb:9
msgid "Principal Investigator: "
msgstr "Investigador principal:"
-#: ../../app/models/concerns/exportable_plan.rb:151
+#: ../../app/models/concerns/exportable_plan.rb:182
msgid "%{investigation}"
msgstr "%{investigation}"
-#: ../../app/models/concerns/exportable_plan.rb:154
+#: ../../app/models/concerns/exportable_plan.rb:185
msgid "Date Manager: "
msgstr "Administrador de fechas:"
-#: ../../app/models/concerns/exportable_plan.rb:155
+#: ../../app/models/concerns/exportable_plan.rb:186
msgid "%{data_curation}"
msgstr "%{data_curation}"
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
#: ../../app/views/shared/export/_plan_coversheet.erb:20
#: ../../app/views/shared/export/_plan_txt.erb:15
msgid "Project Administrator: "
msgstr "Administrador de Proyectos:"
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
msgid "%{pa}"
msgstr "%{pa}"
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
#: ../../app/views/shared/export/_plan_coversheet.erb:23
#: ../../app/views/shared/export/_plan_txt.erb:18
msgid "Contributor: "
msgstr "Contribuyente:"
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
msgid "%{other}"
msgstr "%{other}"
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
#: ../../app/views/shared/export/_plan_coversheet.erb:26
#: ../../app/views/shared/export/_plan_txt.erb:20
msgid "Affiliation: "
msgstr "Afiliación:"
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
msgid "%{affiliation}"
msgstr "%{affiliation}"
-#: ../../app/models/concerns/exportable_plan.rb:165
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:196
+#: ../../app/models/concerns/exportable_plan.rb:198
#: ../../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:165
+#: ../../app/models/concerns/exportable_plan.rb:196
msgid "%{funder}"
msgstr "%{funder}"
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:198
msgid "%{template}"
msgstr "%{template}"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
#: ../../app/views/shared/export/_plan_txt.erb:27
msgid "Grant number: "
msgstr "Conceder número:"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
msgid "%{grant_number}"
msgstr "%{grant_number}"
-#: ../../app/models/concerns/exportable_plan.rb:171
+#: ../../app/models/concerns/exportable_plan.rb:202
#: ../../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:171
+#: ../../app/models/concerns/exportable_plan.rb:202
msgid "%{description}"
msgstr "%{description}"
-#: ../../app/models/concerns/exportable_plan.rb:173
+#: ../../app/models/concerns/exportable_plan.rb:204
#: ../../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:173
+#: ../../app/models/concerns/exportable_plan.rb:204
msgid "%{date}"
msgstr "%{date}"
-#: ../../app/models/concerns/exportable_plan.rb:174
+#: ../../app/models/concerns/exportable_plan.rb:205
#: ../../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:175
+#: ../../app/models/concerns/exportable_plan.rb:206
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"
@@ -1475,7 +1482,11 @@ msgstr ""
"alguna con\n"
" tu proyecto o propuesta"
-#: ../../app/models/concerns/exportable_plan.rb:198
+#: ../../app/models/concerns/exportable_plan.rb:221
+msgid "Research Outputs: "
+msgstr ""
+
+#: ../../app/models/concerns/exportable_plan.rb:244
msgid "Not Answered"
msgstr "Sin respuesta"
@@ -1946,7 +1957,7 @@ msgstr "Por favor espere, los estándares se están cargando."
#: ../../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/orgs/_profile_form.html.erb:197
#: ../../app/views/plans/_edit_details.html.erb:11
#: ../../app/views/plans/_guidance_selection.html.erb:23
#: ../../app/views/questions/_preview_question.html.erb:111
@@ -2329,6 +2340,10 @@ 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"
@@ -2337,10 +2352,6 @@ 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"
@@ -2906,7 +2917,7 @@ msgid "GitHub"
msgstr "Github"
#: ../../app/views/layouts/_navigation.html.erb:12
-#: ../../app/views/orgs/_profile_form.html.erb:55
+#: ../../app/views/orgs/_profile_form.html.erb:58
msgid "logo"
msgstr "Logo"
@@ -2983,14 +2994,14 @@ msgstr "Cerrar Sesión"
msgid "%{application_name}"
msgstr "DMPonline"
-#: ../../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:91
+msgid "Notice:"
+msgstr "Darse cuenta:"
+
#: ../../app/views/layouts/application.html.erb:102
msgid "Loading..."
msgstr "Cargando..."
@@ -3437,6 +3448,8 @@ msgid "Order"
msgstr "Orden"
#: ../../app/views/org_admin/question_options/_option_fields.html.erb:6
+#: ../../app/views/orgs/_profile_form.html.erb:144
+#: ../../app/views/orgs/_profile_form.html.erb:173
#: ../../app/views/paginable/guidances/_index.html.erb:6
#: ../../app/views/shared/_links.html.erb:13
msgid "Text"
@@ -3955,15 +3968,21 @@ msgstr ""
"óngase en contacto con el servicio de asistencia si tiene preguntas o para sol"
"icitar cambios."
-#: ../../app/views/orgs/_profile_form.html.erb:21
+#: ../../app/views/orgs/_profile_form.html.erb:6
+msgid ""
+"This information can only be changed by a system administrator. Contact %{supp"
+"ort_email} if you have questions or to request changes."
+msgstr ""
+
+#: ../../app/views/orgs/_profile_form.html.erb:24
msgid "Organisation full name"
msgstr "Nombre completo de la organización"
-#: ../../app/views/orgs/_profile_form.html.erb:27
+#: ../../app/views/orgs/_profile_form.html.erb:30
msgid "Organisation abbreviated name"
msgstr "Nombre abreviado de la organización"
-#: ../../app/views/orgs/_profile_form.html.erb:38
+#: ../../app/views/orgs/_profile_form.html.erb:41
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"
@@ -3973,70 +3992,70 @@ msgstr ""
"tillas. Una Org no administrada es aquella que fue creada automáticamente por "
"el sistema cuando un usuario la ingresó / seleccionó."
-#: ../../app/views/orgs/_profile_form.html.erb:39
+#: ../../app/views/orgs/_profile_form.html.erb:42
msgid "Managed? (allows Org Admins to access the Admin menu)"
msgstr ""
"Gestionado? (permite a los administradores de la organización acceder al menú "
"Admin)"
-#: ../../app/views/orgs/_profile_form.html.erb:51
+#: ../../app/views/orgs/_profile_form.html.erb:54
msgid "Organization logo"
msgstr "Logotipo de la organización"
-#: ../../app/views/orgs/_profile_form.html.erb:59
+#: ../../app/views/orgs/_profile_form.html.erb:62
msgid "This will remove your organisation's logo"
msgstr "Esto eliminará el logotipo de su organización."
-#: ../../app/views/orgs/_profile_form.html.erb:60
+#: ../../app/views/orgs/_profile_form.html.erb:63
msgid "Remove logo"
msgstr "Quitar logo"
-#: ../../app/views/orgs/_profile_form.html.erb:62
+#: ../../app/views/orgs/_profile_form.html.erb:65
#: ../../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 "o"
-#: ../../app/views/orgs/_profile_form.html.erb:79
+#: ../../app/views/orgs/_profile_form.html.erb:82
msgid "Organisation URLs"
msgstr "URLs de organización"
-#: ../../app/views/orgs/_profile_form.html.erb:91
-#: ../../app/views/orgs/_profile_form.html.erb:96
+#: ../../app/views/orgs/_profile_form.html.erb:94
+#: ../../app/views/orgs/_profile_form.html.erb:99
msgid "Help Desk email"
msgstr "Correo electrónico de la mesa de ayuda"
-#: ../../app/views/orgs/_profile_form.html.erb:105
+#: ../../app/views/orgs/_profile_form.html.erb:108
msgid "Administrator contact"
msgstr "Contacto del administrador"
-#: ../../app/views/orgs/_profile_form.html.erb:110
+#: ../../app/views/orgs/_profile_form.html.erb:113
msgid "Contact email"
msgstr "Email de contacto"
-#: ../../app/views/orgs/_profile_form.html.erb:114
+#: ../../app/views/orgs/_profile_form.html.erb:117
#: ../../app/views/shared/_links.html.erb:35
msgid "Link text"
msgstr "Texto del enlace"
-#: ../../app/views/orgs/_profile_form.html.erb:122
+#: ../../app/views/orgs/_profile_form.html.erb:125
msgid "Google Analytics Tracker"
msgstr "Rastreador de Google Analytics"
-#: ../../app/views/orgs/_profile_form.html.erb:128
+#: ../../app/views/orgs/_profile_form.html.erb:131
msgid "Tracker Code"
msgstr "Código de seguimiento"
-#: ../../app/views/orgs/_profile_form.html.erb:139
+#: ../../app/views/orgs/_profile_form.html.erb:143
msgid "Organisation Types"
msgstr "Tipos de organizacion"
-#: ../../app/views/orgs/_profile_form.html.erb:149
+#: ../../app/views/orgs/_profile_form.html.erb:158
msgid "Institution"
msgstr "institución"
-#: ../../app/views/orgs/_profile_form.html.erb:162
+#: ../../app/views/orgs/_profile_form.html.erb:172
msgid "Organisation type(s)"
msgstr "Tipo (s) de organización"
@@ -4333,14 +4352,6 @@ msgstr "Dupdo"
msgid "View"
msgstr "Ver"
-#: ../../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 ""
-"¿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"
@@ -4349,6 +4360,14 @@ 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:77
+msgid ""
+"Are you sure you wish to remove this plan? Any collaborators will still be abl"
+"e to access it."
+msgstr ""
+"¿Estás seguro de que deseas eliminar este plan? Cualquier colaborador podrá se"
+"guir accediendo."
+
#: ../../app/views/paginable/plans/_publicly_visible.html.erb:17
msgid "Not Applicable"
msgstr "No aplica"
@@ -4875,8 +4894,8 @@ 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:37
-msgid "Public: anyone can view"
-msgstr "Público: cualquiera puede ver"
+msgid "Public: anyone can view or download from the Public DMPs page"
+msgstr ""
#: ../../app/views/plans/_share_form.html.erb:44
msgid "Manage collaborators"
@@ -5557,14 +5576,14 @@ msgstr "Contratar"
msgid "on the homepage."
msgstr "en la página de inicio."
-#: ../../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:35
+msgid "page for guidance."
+msgstr "página de orientación."
+
#: ../../app/views/static_pages/about_us.html.erb:37
msgid "Customising for your Organisation"
msgstr "Personalización para su organización."
@@ -6510,22 +6529,22 @@ msgstr ""
msgid "Hello %{recipient_name},"
msgstr "Hola %{recipient_name}"
-#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " to "
-msgstr " a"
-
-#: ../../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 " 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/sharing_notification.html.erb:5
msgid ""
"Your colleague %{inviter_name} has invited you to contribute to
\n"
@@ -6680,14 +6699,14 @@ msgstr ""
msgid "Download users"
msgstr "Descargar usuarios"
-#: ../../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."
+#: ../../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."
+
#: 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 e44d9f2676..f0173db0e4 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 8da5834c61..2c3379e9dd 100644
--- a/config/locale/fi/app.po
+++ b/config/locale/fi/app.po
@@ -1,14 +1,14 @@
-# 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.
+# Finnish translations for roadmap package.
+# Copyright (C) 2023 roadmap
+# This file is distributed under the same license as the roadmap package.
+# FIRST AUTHOR , 2023.
#
msgid ""
msgstr ""
-"Project-Id-Version: DMPRoadmap-Development 1.0\n"
+"Project-Id-Version: roadmap 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 20:11+0100\n"
+"POT-Creation-Date: 2023-02-03 09:02+0100\n"
+"PO-Revision-Date: 2023-02-03 09:02+0100\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Finnish\n"
"Language: fi\n"
@@ -74,7 +74,6 @@ 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 "Valmiiden suunnitelmien määrä"
@@ -94,7 +93,7 @@ msgstr "suunnitelmat"
msgid "Missing or invalid JSON"
msgstr "Puuttuu tai on virheellinen JSON"
-#: ../../app/controllers/api/v1/base_api_controller.rb:79
+#: ../../app/controllers/api/v1/base_api_controller.rb:80
msgid "Invalid JSON format"
msgstr "Virheellinen JSON-muoto"
@@ -502,7 +501,7 @@ msgstr "Suunnitelmapohja"
#: ../../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/orgs/_profile_form.html.erb:164
#: ../../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
@@ -613,7 +612,7 @@ msgstr "Valitse organisaatio"
msgid "Your organisation does not seem to be properly configured."
msgstr "Organisaatiotasi määrittelyssä on ongelmia."
-#: ../../app/controllers/plan_exports_controller.rb:99
+#: ../../app/controllers/plan_exports_controller.rb:100
msgid "Created using %{application_name}. Last modified %{date}"
msgstr "Luotu käyttäen DMPTuulia. "
@@ -923,6 +922,10 @@ msgstr "yhdistyivät"
msgid "merge"
msgstr "yhdistää"
+#: ../../app/controllers/usage_controller.rb:87
+msgid "No. Created Plans"
+msgstr ""
+
#: ../../app/controllers/users/invitations_controller.rb:33
msgid ""
"You are already signed in as another user. Please log out to activate your inv"
@@ -1018,7 +1021,7 @@ msgid "Creators:"
msgstr "Tekijät:"
#: ../../app/helpers/exports_helper.rb:38
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:178
#: ../../app/views/shared/export/_plan_coversheet.erb:8
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creator:"
@@ -1117,6 +1120,10 @@ msgstr "Hallinnoi organisaation tietoja"
msgid "Grant API to organisations"
msgstr "Anna API organisaatioille"
+#: ../../app/helpers/perms_helper.rb:17
+msgid "Review organisational plans"
+msgstr ""
+
#: ../../app/helpers/plans_helper.rb:8
#: ../../app/views/paginable/plans/_index.html.erb:8
#: ../../app/views/paginable/plans/_org_admin.html.erb:21
@@ -1193,7 +1200,7 @@ msgid "Plan Description"
msgstr "Suunnitelman kuvaus"
#: ../../app/helpers/settings_template_helper.rb:15
-#: ../../app/views/orgs/_profile_form.html.erb:143
+#: ../../app/views/orgs/_profile_form.html.erb:152
#: ../../app/views/paginable/templates/_customisable.html.erb:7
#: ../../app/views/paginable/templates/_organisational.html.erb:12
#: ../../app/views/plans/_project_details.html.erb:156
@@ -1300,150 +1307,150 @@ msgstr "Minulle myönnetyt ylläpito-oikeudet %{tool_name}:ssa"
msgid "%{tool_name} API changes"
msgstr "%{tool_name} API-muutokset"
-#: ../../app/models/concerns/exportable_plan.rb:30
+#: ../../app/models/concerns/exportable_plan.rb:31
msgid "Phase"
msgstr "Vaihe"
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Section"
msgstr "Osio"
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116
msgid "Question"
msgstr "Kysymys"
-#: ../../app/models/concerns/exportable_plan.rb:32
-#: ../../app/models/concerns/exportable_plan.rb:34
+#: ../../app/models/concerns/exportable_plan.rb:33
+#: ../../app/models/concerns/exportable_plan.rb:35
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Answer"
msgstr "Vastaus"
-#: ../../app/models/concerns/exportable_plan.rb:134
+#: ../../app/models/concerns/exportable_plan.rb:142
msgid " Customised By: "
msgstr "Muokkaaja:"
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
#: ../../app/views/shared/export/_plan_coversheet.erb:6
msgid "Title: "
msgstr "Otsikko:"
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
msgid "%{title}"
msgstr "%{title}"
-#: ../../app/models/concerns/exportable_plan.rb:145
+#: ../../app/models/concerns/exportable_plan.rb:176
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creators: "
msgstr "Tekijät:"
-#: ../../app/models/concerns/exportable_plan.rb:145
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:176
+#: ../../app/models/concerns/exportable_plan.rb:178
msgid "%{authors}"
msgstr "%{authors}"
-#: ../../app/models/concerns/exportable_plan.rb:150
+#: ../../app/models/concerns/exportable_plan.rb:181
#: ../../app/views/shared/export/_plan_coversheet.erb:14
#: ../../app/views/shared/export/_plan_txt.erb:9
msgid "Principal Investigator: "
msgstr "Päätutkija:"
-#: ../../app/models/concerns/exportable_plan.rb:151
+#: ../../app/models/concerns/exportable_plan.rb:182
msgid "%{investigation}"
msgstr "%{investigation}"
-#: ../../app/models/concerns/exportable_plan.rb:154
+#: ../../app/models/concerns/exportable_plan.rb:185
msgid "Date Manager: "
msgstr "Päivänpäällikkö:"
-#: ../../app/models/concerns/exportable_plan.rb:155
+#: ../../app/models/concerns/exportable_plan.rb:186
msgid "%{data_curation}"
msgstr "%{data_curation}"
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
#: ../../app/views/shared/export/_plan_coversheet.erb:20
#: ../../app/views/shared/export/_plan_txt.erb:15
msgid "Project Administrator: "
msgstr "Projektin ylläpitäjä:"
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
msgid "%{pa}"
msgstr "%{pa}"
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
#: ../../app/views/shared/export/_plan_coversheet.erb:23
#: ../../app/views/shared/export/_plan_txt.erb:18
msgid "Contributor: "
msgstr "Osallistuja:"
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
msgid "%{other}"
msgstr "%{other}"
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
#: ../../app/views/shared/export/_plan_coversheet.erb:26
#: ../../app/views/shared/export/_plan_txt.erb:20
msgid "Affiliation: "
msgstr "Affiliaatio:"
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
msgid "%{affiliation}"
msgstr "%{affiliation}"
-#: ../../app/models/concerns/exportable_plan.rb:165
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:196
+#: ../../app/models/concerns/exportable_plan.rb:198
#: ../../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:165
+#: ../../app/models/concerns/exportable_plan.rb:196
msgid "%{funder}"
msgstr "%{funder}"
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:198
msgid "%{template}"
msgstr "%{template}"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
#: ../../app/views/shared/export/_plan_txt.erb:27
msgid "Grant number: "
msgstr ""
"Rahoitusnumero:\n"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
msgid "%{grant_number}"
msgstr "%{grant_number}"
-#: ../../app/models/concerns/exportable_plan.rb:171
+#: ../../app/models/concerns/exportable_plan.rb:202
#: ../../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:171
+#: ../../app/models/concerns/exportable_plan.rb:202
msgid "%{description}"
msgstr "%{description}"
-#: ../../app/models/concerns/exportable_plan.rb:173
+#: ../../app/models/concerns/exportable_plan.rb:204
#: ../../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:173
+#: ../../app/models/concerns/exportable_plan.rb:204
msgid "%{date}"
msgstr "%{date}"
-#: ../../app/models/concerns/exportable_plan.rb:174
+#: ../../app/models/concerns/exportable_plan.rb:205
#: ../../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:175
+#: ../../app/models/concerns/exportable_plan.rb:206
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,7 +1469,11 @@ 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:198
+#: ../../app/models/concerns/exportable_plan.rb:221
+msgid "Research Outputs: "
+msgstr ""
+
+#: ../../app/models/concerns/exportable_plan.rb:244
msgid "Not Answered"
msgstr "Ei vastausta"
@@ -1934,7 +1945,7 @@ msgstr "Odota, standardit latautuvat"
#: ../../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/orgs/_profile_form.html.erb:197
#: ../../app/views/plans/_edit_details.html.erb:11
#: ../../app/views/plans/_guidance_selection.html.erb:23
#: ../../app/views/questions/_preview_question.html.erb:111
@@ -2316,16 +2327,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"
@@ -2888,7 +2899,7 @@ msgid "GitHub"
msgstr "GitHub"
#: ../../app/views/layouts/_navigation.html.erb:12
-#: ../../app/views/orgs/_profile_form.html.erb:55
+#: ../../app/views/orgs/_profile_form.html.erb:58
msgid "logo"
msgstr "logo"
@@ -2966,14 +2977,14 @@ msgstr "Kirjaudu ulos"
msgid "%{application_name}"
msgstr "%{application_name}"
-#: ../../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:91
+msgid "Notice:"
+msgstr "Hei!"
+
#: ../../app/views/layouts/application.html.erb:102
msgid "Loading..."
msgstr "Ladataan ..."
@@ -3417,6 +3428,8 @@ msgid "Order"
msgstr "Järjestys"
#: ../../app/views/org_admin/question_options/_option_fields.html.erb:6
+#: ../../app/views/orgs/_profile_form.html.erb:144
+#: ../../app/views/orgs/_profile_form.html.erb:173
#: ../../app/views/paginable/guidances/_index.html.erb:6
#: ../../app/views/shared/_links.html.erb:13
msgid "Text"
@@ -3930,15 +3943,21 @@ msgstr ""
"Vain ylläpito voi muuttaa tämän tiedon, Ota yhteyttä käyttötukeen, jos sinulla"
" on kysyttävää tai haluat tehdä muutoksia."
-#: ../../app/views/orgs/_profile_form.html.erb:21
+#: ../../app/views/orgs/_profile_form.html.erb:6
+msgid ""
+"This information can only be changed by a system administrator. Contact %{supp"
+"ort_email} if you have questions or to request changes."
+msgstr ""
+
+#: ../../app/views/orgs/_profile_form.html.erb:24
msgid "Organisation full name"
msgstr "Organisaation täydellinen nimi"
-#: ../../app/views/orgs/_profile_form.html.erb:27
+#: ../../app/views/orgs/_profile_form.html.erb:30
msgid "Organisation abbreviated name"
msgstr "Organisaation nimilyhenne"
-#: ../../app/views/orgs/_profile_form.html.erb:38
+#: ../../app/views/orgs/_profile_form.html.erb:41
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"
@@ -3948,68 +3967,68 @@ msgstr ""
"ematon Org on järjestelmä, jonka järjestelmä loi automaattisesti käyttäjän syö"
"ttäessä / valitessaan."
-#: ../../app/views/orgs/_profile_form.html.erb:39
+#: ../../app/views/orgs/_profile_form.html.erb:42
msgid "Managed? (allows Org Admins to access the Admin menu)"
msgstr "Johdetaan? (antaa Org Admins: lle pääsyn Järjestelmänvalvoja-valikkoon)"
-#: ../../app/views/orgs/_profile_form.html.erb:51
+#: ../../app/views/orgs/_profile_form.html.erb:54
msgid "Organization logo"
msgstr "Organisaation logo"
-#: ../../app/views/orgs/_profile_form.html.erb:59
+#: ../../app/views/orgs/_profile_form.html.erb:62
msgid "This will remove your organisation's logo"
msgstr "Tämä toiminto poistaa organisaation logon"
-#: ../../app/views/orgs/_profile_form.html.erb:60
+#: ../../app/views/orgs/_profile_form.html.erb:63
msgid "Remove logo"
msgstr "Poista logo"
-#: ../../app/views/orgs/_profile_form.html.erb:62
+#: ../../app/views/orgs/_profile_form.html.erb:65
#: ../../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 "tai"
-#: ../../app/views/orgs/_profile_form.html.erb:79
+#: ../../app/views/orgs/_profile_form.html.erb:82
msgid "Organisation URLs"
msgstr "Organisaation nettiosoite"
-#: ../../app/views/orgs/_profile_form.html.erb:91
-#: ../../app/views/orgs/_profile_form.html.erb:96
+#: ../../app/views/orgs/_profile_form.html.erb:94
+#: ../../app/views/orgs/_profile_form.html.erb:99
msgid "Help Desk email"
msgstr "Help Desk -sähköposti"
-#: ../../app/views/orgs/_profile_form.html.erb:105
+#: ../../app/views/orgs/_profile_form.html.erb:108
msgid "Administrator contact"
msgstr "Ylläpitäjän yhteystiedot"
-#: ../../app/views/orgs/_profile_form.html.erb:110
+#: ../../app/views/orgs/_profile_form.html.erb:113
msgid "Contact email"
msgstr "Yhteyshenkilön sähköpostiosoite"
-#: ../../app/views/orgs/_profile_form.html.erb:114
+#: ../../app/views/orgs/_profile_form.html.erb:117
#: ../../app/views/shared/_links.html.erb:35
msgid "Link text"
msgstr "Linkkiteksti"
-#: ../../app/views/orgs/_profile_form.html.erb:122
+#: ../../app/views/orgs/_profile_form.html.erb:125
msgid "Google Analytics Tracker"
msgstr "Google Analytics -seuranta"
-#: ../../app/views/orgs/_profile_form.html.erb:128
+#: ../../app/views/orgs/_profile_form.html.erb:131
msgid "Tracker Code"
msgstr "Seurantakoodi"
-#: ../../app/views/orgs/_profile_form.html.erb:139
+#: ../../app/views/orgs/_profile_form.html.erb:143
msgid "Organisation Types"
msgstr "Organisaatiotyypit"
-#: ../../app/views/orgs/_profile_form.html.erb:149
+#: ../../app/views/orgs/_profile_form.html.erb:158
msgid "Institution"
msgstr "Instituutio"
-#: ../../app/views/orgs/_profile_form.html.erb:162
+#: ../../app/views/orgs/_profile_form.html.erb:172
msgid "Organisation type(s)"
msgstr ""
"Organisaation tyyppi/tyypit\n"
@@ -4307,14 +4326,6 @@ msgstr "Kopioi"
msgid "View"
msgstr "Näytä"
-#: ../../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"
@@ -4324,6 +4335,14 @@ msgstr ""
"sten aineistonhallintasuunnitelmien sivulta mutta yhteistyökumppaneilla on ede"
"lleen pääsy siihen."
+#: ../../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/_publicly_visible.html.erb:17
msgid "Not Applicable"
msgstr "Ei sovellettavissa"
@@ -4650,7 +4669,7 @@ msgstr ""
#: ../../app/views/plans/_overview_details.html.erb:17
msgid "Template version %{template_version}, published on %{published_date}"
-msgstr ""
+msgstr "Mallin versio %{template_version}, julkaistu %{published_date}"
#: ../../app/views/plans/_overview_details.html.erb:42
msgid "%{phase_title} (%{sections_size} %{sections}, %{questions_size} %{questions})"
@@ -4847,8 +4866,8 @@ msgstr ""
"isaatio perustuu käyttäjän omaan ilmoitukseen)"
#: ../../app/views/plans/_share_form.html.erb:37
-msgid "Public: anyone can view"
-msgstr "Avattu: näkyvissä kaikille ilman DMPTuuli-kirjautumista"
+msgid "Public: anyone can view or download from the Public DMPs page"
+msgstr ""
#: ../../app/views/plans/_share_form.html.erb:44
msgid "Manage collaborators"
@@ -5527,14 +5546,14 @@ msgstr "Rekisteröidy"
msgid "on the homepage."
msgstr "kotisivulla."
-#: ../../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:35
+msgid "page for guidance."
+msgstr "ohjeistuksen sivu."
+
#: ../../app/views/static_pages/about_us.html.erb:37
msgid "Customising for your Organisation"
msgstr "Mukauta organisaatiosi tarpeisiin"
@@ -6460,22 +6479,22 @@ msgstr ""
msgid "Hello %{recipient_name},"
msgstr "Hei %{recipient_name},"
-#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " to "
-msgstr " että"
-
-#: ../../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 " 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/sharing_notification.html.erb:5
msgid ""
"Your colleague %{inviter_name} has invited you to contribute to
\n"
@@ -6630,14 +6649,14 @@ msgstr ""
msgid "Download users"
msgstr "Lataa käyttäjät"
-#: ../../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."
+#: ../../app/views/users/refresh_token.js.erb:1
+msgid "Unable to regenerate your API token."
+msgstr "API-tunnuksen luominen epäonnistui."
+
#: 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 8e0eef7271..d4f06e8c1a 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 b19f98dddc..179af06aa9 100644
--- a/config/locale/fr_CA/app.po
+++ b/config/locale/fr_CA/app.po
@@ -1,14 +1,14 @@
-# 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.
+# French translations for roadmap package.
+# Copyright (C) 2023 roadmap
+# This file is distributed under the same license as the roadmap package.
+# FIRST AUTHOR , 2023.
#
msgid ""
msgstr ""
-"Project-Id-Version: DMPRoadmap-Development 1.0\n"
+"Project-Id-Version: roadmap 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 20:11+0100\n"
+"POT-Creation-Date: 2023-02-03 09:02+0100\n"
+"PO-Revision-Date: 2023-02-03 09:02+0100\n"
"Last-Translator: FULL NAME \n"
"Language-Team: French\n"
"Language: fr_CA\n"
@@ -74,7 +74,6 @@ 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 "Nombre de plans terminés"
@@ -94,7 +93,7 @@ msgstr "plans"
msgid "Missing or invalid JSON"
msgstr "Format JSON manquant ou invalide"
-#: ../../app/controllers/api/v1/base_api_controller.rb:79
+#: ../../app/controllers/api/v1/base_api_controller.rb:80
msgid "Invalid JSON format"
msgstr "Format JSON invalide"
@@ -512,7 +511,7 @@ msgstr "Modèle"
#: ../../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/orgs/_profile_form.html.erb:164
#: ../../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
@@ -625,7 +624,7 @@ msgstr "Veuillez choisir un organisme"
msgid "Your organisation does not seem to be properly configured."
msgstr "Votre organisme ne semble pas être correctement configuré."
-#: ../../app/controllers/plan_exports_controller.rb:99
+#: ../../app/controllers/plan_exports_controller.rb:100
msgid "Created using %{application_name}. Last modified %{date}"
msgstr "Créé(e) avec %{application_name}. Dernière modification : %{date}"
@@ -929,6 +928,10 @@ msgstr "fusionné"
msgid "merge"
msgstr "fusionner"
+#: ../../app/controllers/usage_controller.rb:87
+msgid "No. Created Plans"
+msgstr ""
+
#: ../../app/controllers/users/invitations_controller.rb:33
msgid ""
"You are already signed in as another user. Please log out to activate your inv"
@@ -1026,7 +1029,7 @@ msgid "Creators:"
msgstr "Créateurs :"
#: ../../app/helpers/exports_helper.rb:38
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:178
#: ../../app/views/shared/export/_plan_coversheet.erb:8
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creator:"
@@ -1126,6 +1129,10 @@ msgstr "Gérer les renseignements de l’organisme"
msgid "Grant API to organisations"
msgstr "Accorder aux organismes l’accès à l’API"
+#: ../../app/helpers/perms_helper.rb:17
+msgid "Review organisational plans"
+msgstr ""
+
#: ../../app/helpers/plans_helper.rb:8
#: ../../app/views/paginable/plans/_index.html.erb:8
#: ../../app/views/paginable/plans/_org_admin.html.erb:21
@@ -1201,7 +1208,7 @@ msgid "Plan Description"
msgstr "Description du plan"
#: ../../app/helpers/settings_template_helper.rb:15
-#: ../../app/views/orgs/_profile_form.html.erb:143
+#: ../../app/views/orgs/_profile_form.html.erb:152
#: ../../app/views/paginable/templates/_customisable.html.erb:7
#: ../../app/views/paginable/templates/_organisational.html.erb:12
#: ../../app/views/plans/_project_details.html.erb:156
@@ -1310,149 +1317,149 @@ msgstr "Privilèges d’administrateur accordés dans %{tool_name}"
msgid "%{tool_name} API changes"
msgstr "Modifications de l'API pour %{tool_name}"
-#: ../../app/models/concerns/exportable_plan.rb:30
+#: ../../app/models/concerns/exportable_plan.rb:31
msgid "Phase"
msgstr "Phase"
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../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/concerns/exportable_plan.rb:33
#: ../../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/concerns/exportable_plan.rb:33
+#: ../../app/models/concerns/exportable_plan.rb:35
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Answer"
msgstr "Réponse"
-#: ../../app/models/concerns/exportable_plan.rb:134
+#: ../../app/models/concerns/exportable_plan.rb:142
msgid " Customised By: "
msgstr " Personnalisé par:"
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
#: ../../app/views/shared/export/_plan_coversheet.erb:6
msgid "Title: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
msgid "%{title}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:145
+#: ../../app/models/concerns/exportable_plan.rb:176
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creators: "
msgstr "Créateurs :"
-#: ../../app/models/concerns/exportable_plan.rb:145
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:176
+#: ../../app/models/concerns/exportable_plan.rb:178
msgid "%{authors}"
msgstr "%{authors}"
-#: ../../app/models/concerns/exportable_plan.rb:150
+#: ../../app/models/concerns/exportable_plan.rb:181
#: ../../app/views/shared/export/_plan_coversheet.erb:14
#: ../../app/views/shared/export/_plan_txt.erb:9
msgid "Principal Investigator: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:151
+#: ../../app/models/concerns/exportable_plan.rb:182
msgid "%{investigation}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:154
+#: ../../app/models/concerns/exportable_plan.rb:185
msgid "Date Manager: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:155
+#: ../../app/models/concerns/exportable_plan.rb:186
msgid "%{data_curation}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
#: ../../app/views/shared/export/_plan_coversheet.erb:20
#: ../../app/views/shared/export/_plan_txt.erb:15
msgid "Project Administrator: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
msgid "%{pa}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
#: ../../app/views/shared/export/_plan_coversheet.erb:23
#: ../../app/views/shared/export/_plan_txt.erb:18
msgid "Contributor: "
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
msgid "%{other}"
msgstr ""
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
#: ../../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
+#: ../../app/models/concerns/exportable_plan.rb:194
msgid "%{affiliation}"
msgstr "%{affiliation}"
-#: ../../app/models/concerns/exportable_plan.rb:165
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:196
+#: ../../app/models/concerns/exportable_plan.rb:198
#: ../../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:165
+#: ../../app/models/concerns/exportable_plan.rb:196
msgid "%{funder}"
msgstr "%{funder}"
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:198
msgid "%{template}"
msgstr "%{template}"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
#: ../../app/views/shared/export/_plan_txt.erb:27
msgid "Grant number: "
msgstr "Numéro de subvention :"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
msgid "%{grant_number}"
msgstr "%{grant_number}"
-#: ../../app/models/concerns/exportable_plan.rb:171
+#: ../../app/models/concerns/exportable_plan.rb:202
#: ../../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:171
+#: ../../app/models/concerns/exportable_plan.rb:202
msgid "%{description}"
msgstr "%{description}"
-#: ../../app/models/concerns/exportable_plan.rb:173
+#: ../../app/models/concerns/exportable_plan.rb:204
#: ../../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:173
+#: ../../app/models/concerns/exportable_plan.rb:204
msgid "%{date}"
msgstr "%{date}"
-#: ../../app/models/concerns/exportable_plan.rb:174
+#: ../../app/models/concerns/exportable_plan.rb:205
#: ../../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:175
+#: ../../app/models/concerns/exportable_plan.rb:206
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"
@@ -1472,7 +1479,11 @@ 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:198
+#: ../../app/models/concerns/exportable_plan.rb:221
+msgid "Research Outputs: "
+msgstr ""
+
+#: ../../app/models/concerns/exportable_plan.rb:244
msgid "Not Answered"
msgstr "Pas de réponse"
@@ -1948,7 +1959,7 @@ msgstr "Veuillez patienter. Le chargement des normes est en cours."
#: ../../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/orgs/_profile_form.html.erb:197
#: ../../app/views/plans/_edit_details.html.erb:11
#: ../../app/views/plans/_guidance_selection.html.erb:23
#: ../../app/views/questions/_preview_question.html.erb:111
@@ -2334,6 +2345,10 @@ 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"
@@ -2342,10 +2357,6 @@ 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"
@@ -2913,7 +2924,7 @@ msgid "GitHub"
msgstr "GitHub"
#: ../../app/views/layouts/_navigation.html.erb:12
-#: ../../app/views/orgs/_profile_form.html.erb:55
+#: ../../app/views/orgs/_profile_form.html.erb:58
msgid "logo"
msgstr "logo"
@@ -2990,14 +3001,14 @@ msgstr "Se déconnecter"
msgid "%{application_name}"
msgstr "%{application_name}"
-#: ../../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:91
+msgid "Notice:"
+msgstr "Remarque :"
+
#: ../../app/views/layouts/application.html.erb:102
msgid "Loading..."
msgstr ""
@@ -3447,6 +3458,8 @@ msgid "Order"
msgstr "Classer"
#: ../../app/views/org_admin/question_options/_option_fields.html.erb:6
+#: ../../app/views/orgs/_profile_form.html.erb:144
+#: ../../app/views/orgs/_profile_form.html.erb:173
#: ../../app/views/paginable/guidances/_index.html.erb:6
#: ../../app/views/shared/_links.html.erb:13
msgid "Text"
@@ -3971,15 +3984,21 @@ msgstr ""
" Communiquez avec le service d’assistance pour poser des questions ou demander"
" des modifications."
-#: ../../app/views/orgs/_profile_form.html.erb:21
+#: ../../app/views/orgs/_profile_form.html.erb:6
+msgid ""
+"This information can only be changed by a system administrator. Contact %{supp"
+"ort_email} if you have questions or to request changes."
+msgstr ""
+
+#: ../../app/views/orgs/_profile_form.html.erb:24
msgid "Organisation full name"
msgstr "Nom complet de l’organisme"
-#: ../../app/views/orgs/_profile_form.html.erb:27
+#: ../../app/views/orgs/_profile_form.html.erb:30
msgid "Organisation abbreviated name"
msgstr "Nom abrégé de l’organisme"
-#: ../../app/views/orgs/_profile_form.html.erb:38
+#: ../../app/views/orgs/_profile_form.html.erb:41
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"
@@ -3989,68 +4008,68 @@ msgstr ""
"les. Un organisme non géré en est un qui a été automatiquement créé par le sys"
"tème lorsqu’un utilisateur l’a entré/sélectionné."
-#: ../../app/views/orgs/_profile_form.html.erb:39
+#: ../../app/views/orgs/_profile_form.html.erb:42
msgid "Managed? (allows Org Admins to access the Admin menu)"
msgstr "Géré? (permet aux administrateurs de l’organisme d’accéder au menu Admin)"
-#: ../../app/views/orgs/_profile_form.html.erb:51
+#: ../../app/views/orgs/_profile_form.html.erb:54
msgid "Organization logo"
msgstr "Logo de l’organisme"
-#: ../../app/views/orgs/_profile_form.html.erb:59
+#: ../../app/views/orgs/_profile_form.html.erb:62
msgid "This will remove your organisation's logo"
msgstr "Le logo de votre organisme sera retiré"
-#: ../../app/views/orgs/_profile_form.html.erb:60
+#: ../../app/views/orgs/_profile_form.html.erb:63
msgid "Remove logo"
msgstr "Supprimer le logo"
-#: ../../app/views/orgs/_profile_form.html.erb:62
+#: ../../app/views/orgs/_profile_form.html.erb:65
#: ../../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 "ou"
-#: ../../app/views/orgs/_profile_form.html.erb:79
+#: ../../app/views/orgs/_profile_form.html.erb:82
msgid "Organisation URLs"
msgstr "Adresse URL de l’organisme"
-#: ../../app/views/orgs/_profile_form.html.erb:91
-#: ../../app/views/orgs/_profile_form.html.erb:96
+#: ../../app/views/orgs/_profile_form.html.erb:94
+#: ../../app/views/orgs/_profile_form.html.erb:99
msgid "Help Desk email"
msgstr ""
-#: ../../app/views/orgs/_profile_form.html.erb:105
+#: ../../app/views/orgs/_profile_form.html.erb:108
msgid "Administrator contact"
msgstr "Contact administrateur"
-#: ../../app/views/orgs/_profile_form.html.erb:110
+#: ../../app/views/orgs/_profile_form.html.erb:113
msgid "Contact email"
msgstr "Courriel du contact"
-#: ../../app/views/orgs/_profile_form.html.erb:114
+#: ../../app/views/orgs/_profile_form.html.erb:117
#: ../../app/views/shared/_links.html.erb:35
msgid "Link text"
msgstr "Texte du lien"
-#: ../../app/views/orgs/_profile_form.html.erb:122
+#: ../../app/views/orgs/_profile_form.html.erb:125
msgid "Google Analytics Tracker"
msgstr "Suivi – Google Analytics"
-#: ../../app/views/orgs/_profile_form.html.erb:128
+#: ../../app/views/orgs/_profile_form.html.erb:131
msgid "Tracker Code"
msgstr "Code de suivi"
-#: ../../app/views/orgs/_profile_form.html.erb:139
+#: ../../app/views/orgs/_profile_form.html.erb:143
msgid "Organisation Types"
msgstr "Types d’organisme"
-#: ../../app/views/orgs/_profile_form.html.erb:149
+#: ../../app/views/orgs/_profile_form.html.erb:158
msgid "Institution"
msgstr "Établissement"
-#: ../../app/views/orgs/_profile_form.html.erb:162
+#: ../../app/views/orgs/_profile_form.html.erb:172
msgid "Organisation type(s)"
msgstr "Types d’organisme"
@@ -4352,14 +4371,6 @@ msgstr "Copier"
msgid "View"
msgstr "Voir"
-#: ../../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 ""
-"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"
@@ -4368,6 +4379,14 @@ 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:77
+msgid ""
+"Are you sure you wish to remove this plan? Any collaborators will still be abl"
+"e to access it."
+msgstr ""
+"Souhaitez-vous vraiment supprimer ce plan? Les collaborateurs pourront toujour"
+"s y accéder."
+
#: ../../app/views/paginable/plans/_publicly_visible.html.erb:17
msgid "Not Applicable"
msgstr "Sans objet"
@@ -4889,8 +4908,8 @@ 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:37
-msgid "Public: anyone can view"
-msgstr "Public : Tous peuvent consulter le plan"
+msgid "Public: anyone can view or download from the Public DMPs page"
+msgstr ""
#: ../../app/views/plans/_share_form.html.erb:44
msgid "Manage collaborators"
@@ -5560,14 +5579,14 @@ msgstr "S’inscrire"
msgid "on the homepage."
msgstr "sur la page d’accueil."
-#: ../../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:35
+msgid "page for guidance."
+msgstr "page pour obtenir des directives."
+
#: ../../app/views/static_pages/about_us.html.erb:37
msgid "Customising for your Organisation"
msgstr "Effectuer une personnalisation pour votre organisme"
@@ -6464,22 +6483,22 @@ msgstr ""
msgid "Hello %{recipient_name},"
msgstr "Bonjour %{recipient_name},"
-#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " to "
-msgstr " à"
-
-#: ../../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 " 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/sharing_notification.html.erb:5
msgid ""
"Your colleague %{inviter_name} has invited you to contribute to
\n"
@@ -6637,11 +6656,11 @@ msgid "Download users"
msgstr "Télécharger les utilisateurs"
#: ../../app/views/users/refresh_token.js.erb:1
-msgid "Unable to regenerate your API token."
+msgid "Successfully regenerate your API token."
msgstr ""
#: ../../app/views/users/refresh_token.js.erb:1
-msgid "Successfully regenerate your API token."
+msgid "Unable to 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 c15ef247c3..55223c6a93 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 1081ea6372..139a0b1eef 100644
--- a/config/locale/fr_FR/app.po
+++ b/config/locale/fr_FR/app.po
@@ -1,14 +1,14 @@
-# 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.
+# French translations for roadmap package.
+# Copyright (C) 2023 roadmap
+# This file is distributed under the same license as the roadmap package.
+# FIRST AUTHOR , 2023.
#
msgid ""
msgstr ""
-"Project-Id-Version: DMPRoadmap-Development 1.0\n"
+"Project-Id-Version: roadmap 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 20:11+0100\n"
+"POT-Creation-Date: 2023-02-03 09:02+0100\n"
+"PO-Revision-Date: 2023-02-03 09:02+0100\n"
"Last-Translator: FULL NAME \n"
"Language-Team: French\n"
"Language: fr_FR\n"
@@ -75,7 +75,6 @@ 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 "Nombre de plans terminés"
@@ -95,7 +94,7 @@ msgstr "plans"
msgid "Missing or invalid JSON"
msgstr "JSON manquant ou invalide"
-#: ../../app/controllers/api/v1/base_api_controller.rb:79
+#: ../../app/controllers/api/v1/base_api_controller.rb:80
msgid "Invalid JSON format"
msgstr "Format JSON non valide"
@@ -511,7 +510,7 @@ msgstr "Template"
#: ../../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/orgs/_profile_form.html.erb:164
#: ../../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
@@ -622,7 +621,7 @@ msgstr "Veuillez choisir un organisme"
msgid "Your organisation does not seem to be properly configured."
msgstr "Votre organisme ne semble pas être correctement configurée."
-#: ../../app/controllers/plan_exports_controller.rb:99
+#: ../../app/controllers/plan_exports_controller.rb:100
msgid "Created using %{application_name}. Last modified %{date}"
msgstr "Créé avec %{application_name}. Dernière modification %{date}"
@@ -940,6 +939,10 @@ msgstr "fusionné"
msgid "merge"
msgstr "fusionner"
+#: ../../app/controllers/usage_controller.rb:87
+msgid "No. Created Plans"
+msgstr "Nombre de plans créés"
+
#: ../../app/controllers/users/invitations_controller.rb:33
msgid ""
"You are already signed in as another user. Please log out to activate your inv"
@@ -1036,7 +1039,7 @@ msgid "Creators:"
msgstr "Créateurs:"
#: ../../app/helpers/exports_helper.rb:38
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:178
#: ../../app/views/shared/export/_plan_coversheet.erb:8
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creator:"
@@ -1136,6 +1139,10 @@ msgstr "Gérer les renseignements sur l'organisme"
msgid "Grant API to organisations"
msgstr "Droit API pour les organismes"
+#: ../../app/helpers/perms_helper.rb:17
+msgid "Review organisational plans"
+msgstr "Examiner les plans organisationnels"
+
#: ../../app/helpers/plans_helper.rb:8
#: ../../app/views/paginable/plans/_index.html.erb:8
#: ../../app/views/paginable/plans/_org_admin.html.erb:21
@@ -1211,7 +1218,7 @@ msgid "Plan Description"
msgstr "Description"
#: ../../app/helpers/settings_template_helper.rb:15
-#: ../../app/views/orgs/_profile_form.html.erb:143
+#: ../../app/views/orgs/_profile_form.html.erb:152
#: ../../app/views/paginable/templates/_customisable.html.erb:7
#: ../../app/views/paginable/templates/_organisational.html.erb:12
#: ../../app/views/plans/_project_details.html.erb:156
@@ -1316,149 +1323,149 @@ msgstr "Droits administrateur attribués dans %{tool_name}"
msgid "%{tool_name} API changes"
msgstr "Modifications de l'API %{tool_name}"
-#: ../../app/models/concerns/exportable_plan.rb:30
+#: ../../app/models/concerns/exportable_plan.rb:31
msgid "Phase"
msgstr "Phase"
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../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/concerns/exportable_plan.rb:33
#: ../../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/concerns/exportable_plan.rb:33
+#: ../../app/models/concerns/exportable_plan.rb:35
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Answer"
msgstr "Réponse"
-#: ../../app/models/concerns/exportable_plan.rb:134
+#: ../../app/models/concerns/exportable_plan.rb:142
msgid " Customised By: "
msgstr " Personnalisé par : "
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
#: ../../app/views/shared/export/_plan_coversheet.erb:6
msgid "Title: "
msgstr "Titre:"
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
msgid "%{title}"
msgstr "%{title}"
-#: ../../app/models/concerns/exportable_plan.rb:145
+#: ../../app/models/concerns/exportable_plan.rb:176
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creators: "
msgstr "Créateurs : "
-#: ../../app/models/concerns/exportable_plan.rb:145
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:176
+#: ../../app/models/concerns/exportable_plan.rb:178
msgid "%{authors}"
msgstr "%{authors}"
-#: ../../app/models/concerns/exportable_plan.rb:150
+#: ../../app/models/concerns/exportable_plan.rb:181
#: ../../app/views/shared/export/_plan_coversheet.erb:14
#: ../../app/views/shared/export/_plan_txt.erb:9
msgid "Principal Investigator: "
msgstr "Chercheur principal:"
-#: ../../app/models/concerns/exportable_plan.rb:151
+#: ../../app/models/concerns/exportable_plan.rb:182
msgid "%{investigation}"
msgstr "%{investigation}"
-#: ../../app/models/concerns/exportable_plan.rb:154
+#: ../../app/models/concerns/exportable_plan.rb:185
msgid "Date Manager: "
msgstr "Gestionnaire de dates :"
-#: ../../app/models/concerns/exportable_plan.rb:155
+#: ../../app/models/concerns/exportable_plan.rb:186
msgid "%{data_curation}"
msgstr "%{data_curation}"
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
#: ../../app/views/shared/export/_plan_coversheet.erb:20
#: ../../app/views/shared/export/_plan_txt.erb:15
msgid "Project Administrator: "
msgstr "Administrateur de projet:"
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
msgid "%{pa}"
msgstr "%{pa}"
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
#: ../../app/views/shared/export/_plan_coversheet.erb:23
#: ../../app/views/shared/export/_plan_txt.erb:18
msgid "Contributor: "
-msgstr "Donateur:"
+msgstr "Contributeur :"
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
msgid "%{other}"
msgstr "%{other}"
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
#: ../../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
+#: ../../app/models/concerns/exportable_plan.rb:194
msgid "%{affiliation}"
msgstr "%{affiliation}"
-#: ../../app/models/concerns/exportable_plan.rb:165
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:196
+#: ../../app/models/concerns/exportable_plan.rb:198
#: ../../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:165
+#: ../../app/models/concerns/exportable_plan.rb:196
msgid "%{funder}"
msgstr "%{funder}"
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:198
msgid "%{template}"
msgstr "%{template}"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
#: ../../app/views/shared/export/_plan_txt.erb:27
msgid "Grant number: "
msgstr "Numéro de subvention : "
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
msgid "%{grant_number}"
msgstr "%{grant_number}"
-#: ../../app/models/concerns/exportable_plan.rb:171
+#: ../../app/models/concerns/exportable_plan.rb:202
#: ../../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:171
+#: ../../app/models/concerns/exportable_plan.rb:202
msgid "%{description}"
msgstr "%{description}"
-#: ../../app/models/concerns/exportable_plan.rb:173
+#: ../../app/models/concerns/exportable_plan.rb:204
#: ../../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:173
+#: ../../app/models/concerns/exportable_plan.rb:204
msgid "%{date}"
msgstr "%{date}"
-#: ../../app/models/concerns/exportable_plan.rb:174
+#: ../../app/models/concerns/exportable_plan.rb:205
#: ../../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:175
+#: ../../app/models/concerns/exportable_plan.rb:206
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"
@@ -1483,7 +1490,11 @@ msgstr ""
"n quelconque avec,\n"
" votre projet ou proposition"
-#: ../../app/models/concerns/exportable_plan.rb:198
+#: ../../app/models/concerns/exportable_plan.rb:221
+msgid "Research Outputs: "
+msgstr "Produits de recherche :"
+
+#: ../../app/models/concerns/exportable_plan.rb:244
msgid "Not Answered"
msgstr "Non répondues"
@@ -1728,7 +1739,7 @@ msgstr "Actif"
#: ../../app/models/user/at_csv.rb:8
msgid "Department"
-msgstr "département"
+msgstr "Département"
#: ../../app/policies/api/v0/guidance_group_policy.rb:11
#: ../../app/policies/api/v0/guidance_policy.rb:11
@@ -1954,7 +1965,7 @@ msgstr "Merci de patienter, les standards sont en cours de chargement"
#: ../../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/orgs/_profile_form.html.erb:197
#: ../../app/views/plans/_edit_details.html.erb:11
#: ../../app/views/plans/_guidance_selection.html.erb:23
#: ../../app/views/questions/_preview_question.html.erb:111
@@ -2339,16 +2350,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"
@@ -2916,7 +2927,7 @@ msgid "GitHub"
msgstr "GitHub"
#: ../../app/views/layouts/_navigation.html.erb:12
-#: ../../app/views/orgs/_profile_form.html.erb:55
+#: ../../app/views/orgs/_profile_form.html.erb:58
msgid "logo"
msgstr "logo"
@@ -2993,14 +3004,14 @@ msgstr "Déconnexion"
msgid "%{application_name}"
msgstr "%{application_name}"
-#: ../../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:91
+msgid "Notice:"
+msgstr "Note :"
+
#: ../../app/views/layouts/application.html.erb:102
msgid "Loading..."
msgstr "Chargement..."
@@ -3451,6 +3462,8 @@ msgid "Order"
msgstr "Ordre"
#: ../../app/views/org_admin/question_options/_option_fields.html.erb:6
+#: ../../app/views/orgs/_profile_form.html.erb:144
+#: ../../app/views/orgs/_profile_form.html.erb:173
#: ../../app/views/paginable/guidances/_index.html.erb:6
#: ../../app/views/shared/_links.html.erb:13
msgid "Text"
@@ -3973,15 +3986,24 @@ msgstr ""
"illez contacter le service d'assistance pour toutes questions ou demandes de m"
"odifications."
-#: ../../app/views/orgs/_profile_form.html.erb:21
+#: ../../app/views/orgs/_profile_form.html.erb:6
+msgid ""
+"This information can only be changed by a system administrator. Contact %{supp"
+"ort_email} if you have questions or to request changes."
+msgstr ""
+"Cette information ne peut être modifiée que par un administrateur système. Veu"
+"illez contacter %{support_email} pour toutes questions ou demandes de modifica"
+"tions."
+
+#: ../../app/views/orgs/_profile_form.html.erb:24
msgid "Organisation full name"
msgstr "Nom complet de l'organisme"
-#: ../../app/views/orgs/_profile_form.html.erb:27
+#: ../../app/views/orgs/_profile_form.html.erb:30
msgid "Organisation abbreviated name"
msgstr "Nom abrégé de l'organisme"
-#: ../../app/views/orgs/_profile_form.html.erb:38
+#: ../../app/views/orgs/_profile_form.html.erb:41
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"
@@ -3991,68 +4013,68 @@ msgstr ""
" et / ou modèles. Un organisme non gérée est un organisme qui a été automatiqu"
"ement créée par le système lorsqu'un utilisateur l'a saisi / sélectionnée."
-#: ../../app/views/orgs/_profile_form.html.erb:39
+#: ../../app/views/orgs/_profile_form.html.erb:42
msgid "Managed? (allows Org Admins to access the Admin menu)"
msgstr "Géré? (permet aux administrateurs de l'organisme d'accéder au menu Admin)"
-#: ../../app/views/orgs/_profile_form.html.erb:51
+#: ../../app/views/orgs/_profile_form.html.erb:54
msgid "Organization logo"
msgstr "Logo de l'organisme"
-#: ../../app/views/orgs/_profile_form.html.erb:59
+#: ../../app/views/orgs/_profile_form.html.erb:62
msgid "This will remove your organisation's logo"
msgstr "Cela supprimera le logo de votre organisme"
-#: ../../app/views/orgs/_profile_form.html.erb:60
+#: ../../app/views/orgs/_profile_form.html.erb:63
msgid "Remove logo"
msgstr "Supprimer le logo"
-#: ../../app/views/orgs/_profile_form.html.erb:62
+#: ../../app/views/orgs/_profile_form.html.erb:65
#: ../../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 "ou"
-#: ../../app/views/orgs/_profile_form.html.erb:79
+#: ../../app/views/orgs/_profile_form.html.erb:82
msgid "Organisation URLs"
msgstr "URLs de l'organisme"
-#: ../../app/views/orgs/_profile_form.html.erb:91
-#: ../../app/views/orgs/_profile_form.html.erb:96
+#: ../../app/views/orgs/_profile_form.html.erb:94
+#: ../../app/views/orgs/_profile_form.html.erb:99
msgid "Help Desk email"
msgstr "Courriel du service d'assistance"
-#: ../../app/views/orgs/_profile_form.html.erb:105
+#: ../../app/views/orgs/_profile_form.html.erb:108
msgid "Administrator contact"
msgstr "Contact administrateur"
-#: ../../app/views/orgs/_profile_form.html.erb:110
+#: ../../app/views/orgs/_profile_form.html.erb:113
msgid "Contact email"
msgstr "Courriel de contact"
-#: ../../app/views/orgs/_profile_form.html.erb:114
+#: ../../app/views/orgs/_profile_form.html.erb:117
#: ../../app/views/shared/_links.html.erb:35
msgid "Link text"
msgstr "Texte du lien"
-#: ../../app/views/orgs/_profile_form.html.erb:122
+#: ../../app/views/orgs/_profile_form.html.erb:125
msgid "Google Analytics Tracker"
msgstr "Suivi de Google Analytics"
-#: ../../app/views/orgs/_profile_form.html.erb:128
+#: ../../app/views/orgs/_profile_form.html.erb:131
msgid "Tracker Code"
msgstr "Code de suivi"
-#: ../../app/views/orgs/_profile_form.html.erb:139
+#: ../../app/views/orgs/_profile_form.html.erb:143
msgid "Organisation Types"
msgstr "Types d'organismes"
-#: ../../app/views/orgs/_profile_form.html.erb:149
+#: ../../app/views/orgs/_profile_form.html.erb:158
msgid "Institution"
msgstr "Institution"
-#: ../../app/views/orgs/_profile_form.html.erb:162
+#: ../../app/views/orgs/_profile_form.html.erb:172
msgid "Organisation type(s)"
msgstr "Type(s) d'organismes"
@@ -4349,14 +4371,6 @@ msgstr "Copier"
msgid "View"
msgstr "Visualiser"
-#: ../../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 ""
-"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"
@@ -4365,6 +4379,14 @@ 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:77
+msgid ""
+"Are you sure you wish to remove this plan? Any collaborators will still be abl"
+"e to access it."
+msgstr ""
+"Souhaitez-vous vraiment supprimer ce plan ? Vos collaborateurs continueront à "
+"pouvoir y accéder. "
+
#: ../../app/views/paginable/plans/_publicly_visible.html.erb:17
msgid "Not Applicable"
msgstr "Non applicable"
@@ -4888,8 +4910,8 @@ 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:37
-msgid "Public: anyone can view"
-msgstr "Public : visible par tous"
+msgid "Public: anyone can view or download from the Public DMPs page"
+msgstr "Public: votre plan visible par tous dans le liste des DMPs publics."
#: ../../app/views/plans/_share_form.html.erb:44
msgid "Manage collaborators"
@@ -5132,7 +5154,7 @@ 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"
+msgstr "Type de produit de recherche"
#: ../../app/views/research_outputs/_form.html.erb:44
msgid "Abbreviation"
@@ -5244,7 +5266,7 @@ 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"
+msgstr "Sélectionnez un type d'entropôt"
#: ../../app/views/research_outputs/repositories/_search_result.html.erb:20
msgid "Click to view repositories related to %{subject}"
@@ -5573,14 +5595,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 "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:35
+msgid "page for guidance."
+msgstr "page de recommandations."
+
#: ../../app/views/static_pages/about_us.html.erb:37
msgid "Customising for your Organisation"
msgstr "Personnalisation pour votre organisme"
@@ -6479,7 +6501,7 @@ msgstr ""
#: ../../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 :"
+msgstr "Vous pouvez également cliquer sur le lien ci-dessous :"
#: ../../app/views/user_mailer/new_comment.html.erb:5
msgid ""
@@ -6569,22 +6591,22 @@ msgstr ""
msgid "Hello %{recipient_name},"
msgstr "Bonjour %{recipient_name},"
-#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " to "
-msgstr " à"
-
-#: ../../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 " 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/sharing_notification.html.erb:5
msgid ""
"Your colleague %{inviter_name} has invited you to contribute to
\n"
@@ -6739,14 +6761,14 @@ msgstr ""
msgid "Download users"
msgstr "Télécharger les utilisateurs"
-#: ../../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."
+#: ../../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."
+
#: 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 d1830d69d1..8f2969b89a 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 986a3f5d11..aea40ecce0 100644
--- a/config/locale/pt_BR/app.po
+++ b/config/locale/pt_BR/app.po
@@ -1,14 +1,14 @@
-# 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.
+# Portuguese translations for roadmap package.
+# Copyright (C) 2023 roadmap
+# This file is distributed under the same license as the roadmap package.
+# FIRST AUTHOR , 2023.
#
msgid ""
msgstr ""
-"Project-Id-Version: DMPRoadmap-Development 1.0\n"
+"Project-Id-Version: roadmap 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 20:11+0100\n"
+"POT-Creation-Date: 2023-02-03 09:02+0100\n"
+"PO-Revision-Date: 2023-02-03 09:02+0100\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Portuguese\n"
"Language: pt_BR\n"
@@ -72,7 +72,6 @@ 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 "Núm. Planos Concluídos"
@@ -92,7 +91,7 @@ msgstr "planos"
msgid "Missing or invalid JSON"
msgstr "JSON ausente ou inválido"
-#: ../../app/controllers/api/v1/base_api_controller.rb:79
+#: ../../app/controllers/api/v1/base_api_controller.rb:80
msgid "Invalid JSON format"
msgstr "Formato JSON inválido"
@@ -506,7 +505,7 @@ msgstr "Modelo"
#: ../../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/orgs/_profile_form.html.erb:164
#: ../../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
@@ -615,7 +614,7 @@ msgstr "Por favor, escolha uma organização."
msgid "Your organisation does not seem to be properly configured."
msgstr "Parece que sua organização não está configurada corretamente."
-#: ../../app/controllers/plan_exports_controller.rb:99
+#: ../../app/controllers/plan_exports_controller.rb:100
msgid "Created using %{application_name}. Last modified %{date}"
msgstr "Criado usando %{application_name}. Última modificação %{date}"
@@ -929,6 +928,10 @@ msgstr "mesclado"
msgid "merge"
msgstr "mesclar"
+#: ../../app/controllers/usage_controller.rb:87
+msgid "No. Created Plans"
+msgstr ""
+
#: ../../app/controllers/users/invitations_controller.rb:33
msgid ""
"You are already signed in as another user. Please log out to activate your inv"
@@ -1025,7 +1028,7 @@ msgid "Creators:"
msgstr "Criadores:"
#: ../../app/helpers/exports_helper.rb:38
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:178
#: ../../app/views/shared/export/_plan_coversheet.erb:8
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creator:"
@@ -1124,6 +1127,10 @@ msgstr "Gerenciar detalhes da organização"
msgid "Grant API to organisations"
msgstr "Autorizar API para organizações"
+#: ../../app/helpers/perms_helper.rb:17
+msgid "Review organisational plans"
+msgstr ""
+
#: ../../app/helpers/plans_helper.rb:8
#: ../../app/views/paginable/plans/_index.html.erb:8
#: ../../app/views/paginable/plans/_org_admin.html.erb:21
@@ -1199,7 +1206,7 @@ msgid "Plan Description"
msgstr "Descrição do Plano"
#: ../../app/helpers/settings_template_helper.rb:15
-#: ../../app/views/orgs/_profile_form.html.erb:143
+#: ../../app/views/orgs/_profile_form.html.erb:152
#: ../../app/views/paginable/templates/_customisable.html.erb:7
#: ../../app/views/paginable/templates/_organisational.html.erb:12
#: ../../app/views/plans/_project_details.html.erb:156
@@ -1304,149 +1311,149 @@ msgstr "Privilégios de administrador atribuídos em %{tool_name}"
msgid "%{tool_name} API changes"
msgstr "Alterações na API %{tool_name}"
-#: ../../app/models/concerns/exportable_plan.rb:30
+#: ../../app/models/concerns/exportable_plan.rb:31
msgid "Phase"
msgstr "Fase"
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Section"
msgstr "Seção"
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116
msgid "Question"
msgstr "Pergunta"
-#: ../../app/models/concerns/exportable_plan.rb:32
-#: ../../app/models/concerns/exportable_plan.rb:34
+#: ../../app/models/concerns/exportable_plan.rb:33
+#: ../../app/models/concerns/exportable_plan.rb:35
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Answer"
msgstr "Resposta"
-#: ../../app/models/concerns/exportable_plan.rb:134
+#: ../../app/models/concerns/exportable_plan.rb:142
msgid " Customised By: "
msgstr " Customizado Por: "
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
#: ../../app/views/shared/export/_plan_coversheet.erb:6
msgid "Title: "
msgstr "Título:"
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
msgid "%{title}"
msgstr "%{title}"
-#: ../../app/models/concerns/exportable_plan.rb:145
+#: ../../app/models/concerns/exportable_plan.rb:176
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creators: "
msgstr "Criadores:"
-#: ../../app/models/concerns/exportable_plan.rb:145
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:176
+#: ../../app/models/concerns/exportable_plan.rb:178
msgid "%{authors}"
msgstr "%{authors}"
-#: ../../app/models/concerns/exportable_plan.rb:150
+#: ../../app/models/concerns/exportable_plan.rb:181
#: ../../app/views/shared/export/_plan_coversheet.erb:14
#: ../../app/views/shared/export/_plan_txt.erb:9
msgid "Principal Investigator: "
msgstr "Investigador principal:"
-#: ../../app/models/concerns/exportable_plan.rb:151
+#: ../../app/models/concerns/exportable_plan.rb:182
msgid "%{investigation}"
msgstr "%{investigation}"
-#: ../../app/models/concerns/exportable_plan.rb:154
+#: ../../app/models/concerns/exportable_plan.rb:185
msgid "Date Manager: "
msgstr "Gerenciador de datas:"
-#: ../../app/models/concerns/exportable_plan.rb:155
+#: ../../app/models/concerns/exportable_plan.rb:186
msgid "%{data_curation}"
msgstr "%{data_curation}"
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
#: ../../app/views/shared/export/_plan_coversheet.erb:20
#: ../../app/views/shared/export/_plan_txt.erb:15
msgid "Project Administrator: "
msgstr "Administrador de projetos:"
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
msgid "%{pa}"
msgstr "%{pa}"
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
#: ../../app/views/shared/export/_plan_coversheet.erb:23
#: ../../app/views/shared/export/_plan_txt.erb:18
msgid "Contributor: "
msgstr "Contribuinte:"
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
msgid "%{other}"
msgstr "%{other}"
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
#: ../../app/views/shared/export/_plan_coversheet.erb:26
#: ../../app/views/shared/export/_plan_txt.erb:20
msgid "Affiliation: "
msgstr "Afiliação: "
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
msgid "%{affiliation}"
msgstr "%{affiliation}"
-#: ../../app/models/concerns/exportable_plan.rb:165
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:196
+#: ../../app/models/concerns/exportable_plan.rb:198
#: ../../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:165
+#: ../../app/models/concerns/exportable_plan.rb:196
msgid "%{funder}"
msgstr "%{funder}"
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:198
msgid "%{template}"
msgstr "%{template}"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
#: ../../app/views/shared/export/_plan_txt.erb:27
msgid "Grant number: "
msgstr "Número da Concessão"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
msgid "%{grant_number}"
msgstr "%{grant_number}"
-#: ../../app/models/concerns/exportable_plan.rb:171
+#: ../../app/models/concerns/exportable_plan.rb:202
#: ../../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:171
+#: ../../app/models/concerns/exportable_plan.rb:202
msgid "%{description}"
msgstr "%{description}"
-#: ../../app/models/concerns/exportable_plan.rb:173
+#: ../../app/models/concerns/exportable_plan.rb:204
#: ../../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:173
+#: ../../app/models/concerns/exportable_plan.rb:204
msgid "%{date}"
msgstr "%{date}"
-#: ../../app/models/concerns/exportable_plan.rb:174
+#: ../../app/models/concerns/exportable_plan.rb:205
#: ../../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:175
+#: ../../app/models/concerns/exportable_plan.rb:206
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"
@@ -1470,7 +1477,11 @@ msgstr ""
"relação com\n"
" seu projeto ou proposta"
-#: ../../app/models/concerns/exportable_plan.rb:198
+#: ../../app/models/concerns/exportable_plan.rb:221
+msgid "Research Outputs: "
+msgstr ""
+
+#: ../../app/models/concerns/exportable_plan.rb:244
msgid "Not Answered"
msgstr "Não Respondido"
@@ -1938,7 +1949,7 @@ msgstr "Por favor, espere enquanto os Padrões são carregados."
#: ../../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/orgs/_profile_form.html.erb:197
#: ../../app/views/plans/_edit_details.html.erb:11
#: ../../app/views/plans/_guidance_selection.html.erb:23
#: ../../app/views/questions/_preview_question.html.erb:111
@@ -2321,6 +2332,10 @@ 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"
@@ -2329,10 +2344,6 @@ 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"
@@ -2896,7 +2907,7 @@ msgid "GitHub"
msgstr "GitHub"
#: ../../app/views/layouts/_navigation.html.erb:12
-#: ../../app/views/orgs/_profile_form.html.erb:55
+#: ../../app/views/orgs/_profile_form.html.erb:58
msgid "logo"
msgstr "Logotipo"
@@ -2973,14 +2984,14 @@ msgstr "Sair"
msgid "%{application_name}"
msgstr "%{application_name}"
-#: ../../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:91
+msgid "Notice:"
+msgstr "Nota:"
+
#: ../../app/views/layouts/application.html.erb:102
msgid "Loading..."
msgstr "Carregando..."
@@ -3428,6 +3439,8 @@ msgid "Order"
msgstr "Ordem"
#: ../../app/views/org_admin/question_options/_option_fields.html.erb:6
+#: ../../app/views/orgs/_profile_form.html.erb:144
+#: ../../app/views/orgs/_profile_form.html.erb:173
#: ../../app/views/paginable/guidances/_index.html.erb:6
#: ../../app/views/shared/_links.html.erb:13
msgid "Text"
@@ -3941,15 +3954,21 @@ msgstr ""
"Esta informação só pode ser modificada por um administrador do sistema. Entre "
"em contato com a Help Desk se quiser fazer perguntas ou pedir mudanças."
-#: ../../app/views/orgs/_profile_form.html.erb:21
+#: ../../app/views/orgs/_profile_form.html.erb:6
+msgid ""
+"This information can only be changed by a system administrator. Contact %{supp"
+"ort_email} if you have questions or to request changes."
+msgstr ""
+
+#: ../../app/views/orgs/_profile_form.html.erb:24
msgid "Organisation full name"
msgstr "Nome completo da organização"
-#: ../../app/views/orgs/_profile_form.html.erb:27
+#: ../../app/views/orgs/_profile_form.html.erb:30
msgid "Organisation abbreviated name"
msgstr "Nome abrevidado da organização"
-#: ../../app/views/orgs/_profile_form.html.erb:38
+#: ../../app/views/orgs/_profile_form.html.erb:41
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"
@@ -3959,70 +3978,70 @@ msgstr ""
" ou modelos. Uma organização não gerenciada é aquela criada automaticamente pe"
"lo sistema quando um usuário a inseriu / selecionou."
-#: ../../app/views/orgs/_profile_form.html.erb:39
+#: ../../app/views/orgs/_profile_form.html.erb:42
msgid "Managed? (allows Org Admins to access the Admin menu)"
msgstr ""
"Gerenciou? (permite que os administradores da organização acessem o menu Admin"
")"
-#: ../../app/views/orgs/_profile_form.html.erb:51
+#: ../../app/views/orgs/_profile_form.html.erb:54
msgid "Organization logo"
msgstr "Logo da organização"
-#: ../../app/views/orgs/_profile_form.html.erb:59
+#: ../../app/views/orgs/_profile_form.html.erb:62
msgid "This will remove your organisation's logo"
msgstr "Isso removerá o logo da sua organização"
-#: ../../app/views/orgs/_profile_form.html.erb:60
+#: ../../app/views/orgs/_profile_form.html.erb:63
msgid "Remove logo"
msgstr "Remover logo"
-#: ../../app/views/orgs/_profile_form.html.erb:62
+#: ../../app/views/orgs/_profile_form.html.erb:65
#: ../../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 "ou"
-#: ../../app/views/orgs/_profile_form.html.erb:79
+#: ../../app/views/orgs/_profile_form.html.erb:82
msgid "Organisation URLs"
msgstr "URLs da organização"
-#: ../../app/views/orgs/_profile_form.html.erb:91
-#: ../../app/views/orgs/_profile_form.html.erb:96
+#: ../../app/views/orgs/_profile_form.html.erb:94
+#: ../../app/views/orgs/_profile_form.html.erb:99
msgid "Help Desk email"
msgstr "E-mail do Help Desk"
-#: ../../app/views/orgs/_profile_form.html.erb:105
+#: ../../app/views/orgs/_profile_form.html.erb:108
msgid "Administrator contact"
msgstr "Contato com Administrador"
-#: ../../app/views/orgs/_profile_form.html.erb:110
+#: ../../app/views/orgs/_profile_form.html.erb:113
msgid "Contact email"
msgstr "Email de contato"
-#: ../../app/views/orgs/_profile_form.html.erb:114
+#: ../../app/views/orgs/_profile_form.html.erb:117
#: ../../app/views/shared/_links.html.erb:35
msgid "Link text"
msgstr "Linkar texto"
-#: ../../app/views/orgs/_profile_form.html.erb:122
+#: ../../app/views/orgs/_profile_form.html.erb:125
msgid "Google Analytics Tracker"
msgstr "Rastreador do Google Analytics"
-#: ../../app/views/orgs/_profile_form.html.erb:128
+#: ../../app/views/orgs/_profile_form.html.erb:131
msgid "Tracker Code"
msgstr "Código do Rastreador"
-#: ../../app/views/orgs/_profile_form.html.erb:139
+#: ../../app/views/orgs/_profile_form.html.erb:143
msgid "Organisation Types"
msgstr "Tipos de Organização"
-#: ../../app/views/orgs/_profile_form.html.erb:149
+#: ../../app/views/orgs/_profile_form.html.erb:158
msgid "Institution"
msgstr "Instituição"
-#: ../../app/views/orgs/_profile_form.html.erb:162
+#: ../../app/views/orgs/_profile_form.html.erb:172
msgid "Organisation type(s)"
msgstr "Tipo(s) de organização"
@@ -4319,14 +4338,6 @@ msgstr "Copiar"
msgid "View"
msgstr "Ver"
-#: ../../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"
@@ -4336,6 +4347,14 @@ msgstr ""
"a de PGDs Públicos, mas quaisquer outros colaboradores ainda conseguirão acess"
"á-lo."
+#: ../../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/_publicly_visible.html.erb:17
msgid "Not Applicable"
msgstr "Não Aplicável"
@@ -4859,8 +4878,8 @@ 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:37
-msgid "Public: anyone can view"
-msgstr "Público: qualquer pessoa pode ver"
+msgid "Public: anyone can view or download from the Public DMPs page"
+msgstr ""
#: ../../app/views/plans/_share_form.html.erb:44
msgid "Manage collaborators"
@@ -5531,14 +5550,14 @@ msgstr "Inscrever-se"
msgid "on the homepage."
msgstr "na página inicial."
-#: ../../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:35
+msgid "page for guidance."
+msgstr "página para orientação."
+
#: ../../app/views/static_pages/about_us.html.erb:37
msgid "Customising for your Organisation"
msgstr "Customizing para sua organização"
@@ -6483,22 +6502,22 @@ msgstr ""
msgid "Hello %{recipient_name},"
msgstr "Olá %{recipient_name},"
-#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " to "
-msgstr " para"
-
-#: ../../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 " 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/sharing_notification.html.erb:5
msgid ""
"Your colleague %{inviter_name} has invited you to contribute to
\n"
@@ -6651,14 +6670,14 @@ msgstr ""
msgid "Download users"
msgstr "Download de usuários"
-#: ../../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."
+#: ../../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."
+
#: 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 30bf1e1fd7..ae761af459 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 b44c0fa5f2..3144e97409 100644
--- a/config/locale/sv_FI/app.po
+++ b/config/locale/sv_FI/app.po
@@ -1,14 +1,14 @@
-# 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.
+# Swedish translations for roadmap package.
+# Copyright (C) 2023 roadmap
+# This file is distributed under the same license as the roadmap package.
+# FIRST AUTHOR , 2023.
#
msgid ""
msgstr ""
-"Project-Id-Version: DMPRoadmap-Development 1.0\n"
+"Project-Id-Version: roadmap 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 20:11+0100\n"
+"POT-Creation-Date: 2023-02-03 09:02+0100\n"
+"PO-Revision-Date: 2023-02-03 09:02+0100\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Swedish\n"
"Language: sv_FI\n"
@@ -72,7 +72,6 @@ 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 "Nej. Slutförda planer"
@@ -92,7 +91,7 @@ msgstr "Plans"
msgid "Missing or invalid JSON"
msgstr "JSON saknas eller ogiltig"
-#: ../../app/controllers/api/v1/base_api_controller.rb:79
+#: ../../app/controllers/api/v1/base_api_controller.rb:80
msgid "Invalid JSON format"
msgstr "Ogiltigt JSON-format"
@@ -504,7 +503,7 @@ msgstr "Mall"
#: ../../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/orgs/_profile_form.html.erb:164
#: ../../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
@@ -613,7 +612,7 @@ msgstr "Välj en organisation"
msgid "Your organisation does not seem to be properly configured."
msgstr "Din organisation verkar inte vara korrekt konfigurerad."
-#: ../../app/controllers/plan_exports_controller.rb:99
+#: ../../app/controllers/plan_exports_controller.rb:100
msgid "Created using %{application_name}. Last modified %{date}"
msgstr "Skapat med hjälp av %{application_name}. Senast ändrad %{date}"
@@ -921,6 +920,10 @@ msgstr "fusione"
msgid "merge"
msgstr "sammanfoga"
+#: ../../app/controllers/usage_controller.rb:87
+msgid "No. Created Plans"
+msgstr ""
+
#: ../../app/controllers/users/invitations_controller.rb:33
msgid ""
"You are already signed in as another user. Please log out to activate your inv"
@@ -1016,7 +1019,7 @@ msgid "Creators:"
msgstr "skapare:"
#: ../../app/helpers/exports_helper.rb:38
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:178
#: ../../app/views/shared/export/_plan_coversheet.erb:8
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creator:"
@@ -1115,6 +1118,10 @@ msgstr "Hantera organisationsdetaljer"
msgid "Grant API to organisations"
msgstr "Bevilja API till organisationer"
+#: ../../app/helpers/perms_helper.rb:17
+msgid "Review organisational plans"
+msgstr ""
+
#: ../../app/helpers/plans_helper.rb:8
#: ../../app/views/paginable/plans/_index.html.erb:8
#: ../../app/views/paginable/plans/_org_admin.html.erb:21
@@ -1190,7 +1197,7 @@ msgid "Plan Description"
msgstr "Planbeskrivning"
#: ../../app/helpers/settings_template_helper.rb:15
-#: ../../app/views/orgs/_profile_form.html.erb:143
+#: ../../app/views/orgs/_profile_form.html.erb:152
#: ../../app/views/paginable/templates/_customisable.html.erb:7
#: ../../app/views/paginable/templates/_organisational.html.erb:12
#: ../../app/views/plans/_project_details.html.erb:156
@@ -1295,149 +1302,149 @@ msgstr "Administratörsbehörighet beviljas i %{tool_name}"
msgid "%{tool_name} API changes"
msgstr "%{tool_name} API-ändringar"
-#: ../../app/models/concerns/exportable_plan.rb:30
+#: ../../app/models/concerns/exportable_plan.rb:31
msgid "Phase"
msgstr "Fas"
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Section"
msgstr "Sektion"
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116
msgid "Question"
msgstr "Fråga"
-#: ../../app/models/concerns/exportable_plan.rb:32
-#: ../../app/models/concerns/exportable_plan.rb:34
+#: ../../app/models/concerns/exportable_plan.rb:33
+#: ../../app/models/concerns/exportable_plan.rb:35
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Answer"
msgstr "Svar"
-#: ../../app/models/concerns/exportable_plan.rb:134
+#: ../../app/models/concerns/exportable_plan.rb:142
msgid " Customised By: "
msgstr " Anpassad av:"
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
#: ../../app/views/shared/export/_plan_coversheet.erb:6
msgid "Title: "
msgstr "Titel:"
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
msgid "%{title}"
msgstr "%{title}"
-#: ../../app/models/concerns/exportable_plan.rb:145
+#: ../../app/models/concerns/exportable_plan.rb:176
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creators: "
msgstr "skapare:"
-#: ../../app/models/concerns/exportable_plan.rb:145
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:176
+#: ../../app/models/concerns/exportable_plan.rb:178
msgid "%{authors}"
msgstr "%{authors}"
-#: ../../app/models/concerns/exportable_plan.rb:150
+#: ../../app/models/concerns/exportable_plan.rb:181
#: ../../app/views/shared/export/_plan_coversheet.erb:14
#: ../../app/views/shared/export/_plan_txt.erb:9
msgid "Principal Investigator: "
msgstr "Huvudutredare:"
-#: ../../app/models/concerns/exportable_plan.rb:151
+#: ../../app/models/concerns/exportable_plan.rb:182
msgid "%{investigation}"
msgstr "%{investigation}"
-#: ../../app/models/concerns/exportable_plan.rb:154
+#: ../../app/models/concerns/exportable_plan.rb:185
msgid "Date Manager: "
msgstr "Datumansvarig:"
-#: ../../app/models/concerns/exportable_plan.rb:155
+#: ../../app/models/concerns/exportable_plan.rb:186
msgid "%{data_curation}"
msgstr "%{data_curation}"
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
#: ../../app/views/shared/export/_plan_coversheet.erb:20
#: ../../app/views/shared/export/_plan_txt.erb:15
msgid "Project Administrator: "
msgstr "Projektadministratör:"
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
msgid "%{pa}"
msgstr "%{pa}"
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
#: ../../app/views/shared/export/_plan_coversheet.erb:23
#: ../../app/views/shared/export/_plan_txt.erb:18
msgid "Contributor: "
msgstr "Bidragsgivare:"
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
msgid "%{other}"
msgstr "%{other}"
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
#: ../../app/views/shared/export/_plan_coversheet.erb:26
#: ../../app/views/shared/export/_plan_txt.erb:20
msgid "Affiliation: "
msgstr "Anslutning:"
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
msgid "%{affiliation}"
msgstr "%{affiliation}"
-#: ../../app/models/concerns/exportable_plan.rb:165
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:196
+#: ../../app/models/concerns/exportable_plan.rb:198
#: ../../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:165
+#: ../../app/models/concerns/exportable_plan.rb:196
msgid "%{funder}"
msgstr "%{funder}"
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:198
msgid "%{template}"
msgstr "%{template}"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
#: ../../app/views/shared/export/_plan_txt.erb:27
msgid "Grant number: "
msgstr "Bidragsnummer:"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
msgid "%{grant_number}"
msgstr "%{grant_number}"
-#: ../../app/models/concerns/exportable_plan.rb:171
+#: ../../app/models/concerns/exportable_plan.rb:202
#: ../../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:171
+#: ../../app/models/concerns/exportable_plan.rb:202
msgid "%{description}"
msgstr "%{description}"
-#: ../../app/models/concerns/exportable_plan.rb:173
+#: ../../app/models/concerns/exportable_plan.rb:204
#: ../../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:173
+#: ../../app/models/concerns/exportable_plan.rb:204
msgid "%{date}"
msgstr "%{date}"
-#: ../../app/models/concerns/exportable_plan.rb:174
+#: ../../app/models/concerns/exportable_plan.rb:205
#: ../../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:175
+#: ../../app/models/concerns/exportable_plan.rb:206
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"
@@ -1461,7 +1468,11 @@ msgstr ""
"amband med,\n"
" ditt projekt eller förslag"
-#: ../../app/models/concerns/exportable_plan.rb:198
+#: ../../app/models/concerns/exportable_plan.rb:221
+msgid "Research Outputs: "
+msgstr ""
+
+#: ../../app/models/concerns/exportable_plan.rb:244
msgid "Not Answered"
msgstr "Inte besvarad"
@@ -1928,7 +1939,7 @@ msgstr "Vänligen vänta, Standarder laddas"
#: ../../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/orgs/_profile_form.html.erb:197
#: ../../app/views/plans/_edit_details.html.erb:11
#: ../../app/views/plans/_guidance_selection.html.erb:23
#: ../../app/views/questions/_preview_question.html.erb:111
@@ -2309,6 +2320,10 @@ 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"
@@ -2317,10 +2332,6 @@ 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"
@@ -2881,7 +2892,7 @@ msgid "GitHub"
msgstr "github"
#: ../../app/views/layouts/_navigation.html.erb:12
-#: ../../app/views/orgs/_profile_form.html.erb:55
+#: ../../app/views/orgs/_profile_form.html.erb:58
msgid "logo"
msgstr "logotyp"
@@ -2958,14 +2969,14 @@ msgstr "Logga ut"
msgid "%{application_name}"
msgstr "%{application_name}"
-#: ../../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:91
+msgid "Notice:"
+msgstr "Lägga märke till:"
+
#: ../../app/views/layouts/application.html.erb:102
msgid "Loading..."
msgstr "Läser in..."
@@ -3410,6 +3421,8 @@ msgid "Order"
msgstr "Ordning"
#: ../../app/views/org_admin/question_options/_option_fields.html.erb:6
+#: ../../app/views/orgs/_profile_form.html.erb:144
+#: ../../app/views/orgs/_profile_form.html.erb:173
#: ../../app/views/paginable/guidances/_index.html.erb:6
#: ../../app/views/shared/_links.html.erb:13
msgid "Text"
@@ -3919,15 +3932,21 @@ msgstr ""
"Denna information kan bara ändras av en systemadministratör. Kontakta helpdesk"
"en om du har frågor eller att begära ändringar."
-#: ../../app/views/orgs/_profile_form.html.erb:21
+#: ../../app/views/orgs/_profile_form.html.erb:6
+msgid ""
+"This information can only be changed by a system administrator. Contact %{supp"
+"ort_email} if you have questions or to request changes."
+msgstr ""
+
+#: ../../app/views/orgs/_profile_form.html.erb:24
msgid "Organisation full name"
msgstr "Organisation fullständigt namn"
-#: ../../app/views/orgs/_profile_form.html.erb:27
+#: ../../app/views/orgs/_profile_form.html.erb:30
msgid "Organisation abbreviated name"
msgstr "Organisation förkortat namn"
-#: ../../app/views/orgs/_profile_form.html.erb:38
+#: ../../app/views/orgs/_profile_form.html.erb:41
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"
@@ -3937,68 +3956,68 @@ msgstr ""
"ar. En okontrollerad organisation är en som skapades automatiskt av systemet n"
"är en användare angav / valde den."
-#: ../../app/views/orgs/_profile_form.html.erb:39
+#: ../../app/views/orgs/_profile_form.html.erb:42
msgid "Managed? (allows Org Admins to access the Admin menu)"
msgstr "Hanteras? (gör att Org Admins kan komma åt Admin-menyn)"
-#: ../../app/views/orgs/_profile_form.html.erb:51
+#: ../../app/views/orgs/_profile_form.html.erb:54
msgid "Organization logo"
msgstr "Organisationslogotyp"
-#: ../../app/views/orgs/_profile_form.html.erb:59
+#: ../../app/views/orgs/_profile_form.html.erb:62
msgid "This will remove your organisation's logo"
msgstr "Detta kommer att ta bort organisationens logotyp"
-#: ../../app/views/orgs/_profile_form.html.erb:60
+#: ../../app/views/orgs/_profile_form.html.erb:63
msgid "Remove logo"
msgstr "Ta bort logotypen"
-#: ../../app/views/orgs/_profile_form.html.erb:62
+#: ../../app/views/orgs/_profile_form.html.erb:65
#: ../../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 "eller"
-#: ../../app/views/orgs/_profile_form.html.erb:79
+#: ../../app/views/orgs/_profile_form.html.erb:82
msgid "Organisation URLs"
msgstr "Organisationsadresser"
-#: ../../app/views/orgs/_profile_form.html.erb:91
-#: ../../app/views/orgs/_profile_form.html.erb:96
+#: ../../app/views/orgs/_profile_form.html.erb:94
+#: ../../app/views/orgs/_profile_form.html.erb:99
msgid "Help Desk email"
msgstr "Help Desk e-post"
-#: ../../app/views/orgs/_profile_form.html.erb:105
+#: ../../app/views/orgs/_profile_form.html.erb:108
msgid "Administrator contact"
msgstr "Administratörskontakt"
-#: ../../app/views/orgs/_profile_form.html.erb:110
+#: ../../app/views/orgs/_profile_form.html.erb:113
msgid "Contact email"
msgstr "Kontakta email"
-#: ../../app/views/orgs/_profile_form.html.erb:114
+#: ../../app/views/orgs/_profile_form.html.erb:117
#: ../../app/views/shared/_links.html.erb:35
msgid "Link text"
msgstr "Länktext"
-#: ../../app/views/orgs/_profile_form.html.erb:122
+#: ../../app/views/orgs/_profile_form.html.erb:125
msgid "Google Analytics Tracker"
msgstr "Google Analytics Tracker"
-#: ../../app/views/orgs/_profile_form.html.erb:128
+#: ../../app/views/orgs/_profile_form.html.erb:131
msgid "Tracker Code"
msgstr "Spårningskod"
-#: ../../app/views/orgs/_profile_form.html.erb:139
+#: ../../app/views/orgs/_profile_form.html.erb:143
msgid "Organisation Types"
msgstr "Organisationstyper"
-#: ../../app/views/orgs/_profile_form.html.erb:149
+#: ../../app/views/orgs/_profile_form.html.erb:158
msgid "Institution"
msgstr "Institution"
-#: ../../app/views/orgs/_profile_form.html.erb:162
+#: ../../app/views/orgs/_profile_form.html.erb:172
msgid "Organisation type(s)"
msgstr "Organisationstyp (er)"
@@ -4295,14 +4314,6 @@ msgstr "kopia"
msgid "View"
msgstr "Se"
-#: ../../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"
@@ -4312,6 +4323,14 @@ 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: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/_publicly_visible.html.erb:17
msgid "Not Applicable"
msgstr "Inte tillämpbar"
@@ -4830,8 +4849,8 @@ msgid "Organisation: anyone at my organisation can view"
msgstr "Organisation: Alla i min organisation kan visa"
#: ../../app/views/plans/_share_form.html.erb:37
-msgid "Public: anyone can view"
-msgstr "Offentlig: alla kan visa"
+msgid "Public: anyone can view or download from the Public DMPs page"
+msgstr ""
#: ../../app/views/plans/_share_form.html.erb:44
msgid "Manage collaborators"
@@ -5497,14 +5516,14 @@ msgstr "Bli Medlem"
msgid "on the homepage."
msgstr "på hemsidan."
-#: ../../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:35
+msgid "page for guidance."
+msgstr "sida för vägledning."
+
#: ../../app/views/static_pages/about_us.html.erb:37
msgid "Customising for your Organisation"
msgstr "Anpassa för din organisation"
@@ -6434,22 +6453,22 @@ msgstr ""
msgid "Hello %{recipient_name},"
msgstr "Hej %{recipient_name},"
-#: ../../app/views/user_mailer/question_answered.html.erb:5
-msgid " to "
-msgstr " till"
-
-#: ../../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 " 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/sharing_notification.html.erb:5
msgid ""
"Your colleague %{inviter_name} has invited you to contribute to
\n"
@@ -6603,14 +6622,14 @@ msgstr ""
msgid "Download users"
msgstr "Hämta användare"
-#: ../../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."
+#: ../../app/views/users/refresh_token.js.erb:1
+msgid "Unable to regenerate your API token."
+msgstr "Det gick inte att regenerera 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 4d25493f02..429ea4cdb2 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 940626566f..ffa4d46f93 100644
--- a/config/locale/tr_TR/app.po
+++ b/config/locale/tr_TR/app.po
@@ -1,14 +1,14 @@
-# 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.
+# Turkish translations for roadmap package.
+# Copyright (C) 2023 roadmap
+# This file is distributed under the same license as the roadmap package.
+# FIRST AUTHOR , 2023.
#
msgid ""
msgstr ""
-"Project-Id-Version: DMPRoadmap-Development 1.0\n"
+"Project-Id-Version: roadmap 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 20:11+0100\n"
+"POT-Creation-Date: 2023-02-03 09:02+0100\n"
+"PO-Revision-Date: 2023-02-03 09:02+0100\n"
"Last-Translator: FULL NAME \n"
"Language-Team: Turkish\n"
"Language: tr_TR\n"
@@ -72,7 +72,6 @@ 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 "Tamamlanmış plan sayısı"
@@ -92,7 +91,7 @@ msgstr "planlar"
msgid "Missing or invalid JSON"
msgstr "Eksik veya geçersiz JSON"
-#: ../../app/controllers/api/v1/base_api_controller.rb:79
+#: ../../app/controllers/api/v1/base_api_controller.rb:80
msgid "Invalid JSON format"
msgstr "Geçersiz JSON biçimi"
@@ -136,7 +135,7 @@ msgstr "Devam etmeden önce oturum açmanız veya kaydolmanız gerekir."
#: ../../app/controllers/application_controller.rb:108
msgid "Unable to %{action} the %{object}. %{errors}"
-msgstr ""
+msgstr "%{action} %{object} yapılamıyor. %{errors}"
#: ../../app/controllers/application_controller.rb:114
msgid "Successfully %{action} the %{object}."
@@ -184,7 +183,7 @@ msgstr "soru seçeneği"
#: ../../app/controllers/application_controller.rb:181
msgid "Record Not Found"
-msgstr ""
+msgstr "Kayıt bulunamadı"
#: ../../app/controllers/concerns/paginable.rb:45
msgid "scope should be an ActiveRecord::Relation object"
@@ -438,7 +437,7 @@ msgstr "Bir şablonun geçmiş sürümüne aşama ekleyemezsiniz."
#: ../../app/controllers/org_admin/phases_controller.rb:126
msgid "Unable to create a new version of this template. "
-msgstr ""
+msgstr "Bu şablonun yeni bir sürümü oluşturulamıyor. "
#: ../../app/controllers/org_admin/phases_controller.rb:147
#: ../../app/controllers/org_admin/questions_controller.rb:166
@@ -498,7 +497,7 @@ msgstr "Şablon"
#: ../../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/orgs/_profile_form.html.erb:164
#: ../../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
@@ -542,7 +541,7 @@ msgstr "Yeni bir bölüm oluşturulamıyor. Belirttiğiniz aşama mevcut değil.
#: ../../app/controllers/org_admin/sections_controller.rb:133
msgid "Unable to delete this version of the template."
-msgstr ""
+msgstr "Şablonun bu sürümü silinemiyor."
#: ../../app/controllers/org_admin/template_copies_controller.rb:20
#: ../../app/controllers/plans_controller.rb:394
@@ -609,7 +608,7 @@ msgstr "Lütfen bir kuruluş seçin"
msgid "Your organisation does not seem to be properly configured."
msgstr "Kuruluşunuz düzgün yapılandırılmamış gibi görünüyor."
-#: ../../app/controllers/plan_exports_controller.rb:99
+#: ../../app/controllers/plan_exports_controller.rb:100
msgid "Created using %{application_name}. Last modified %{date}"
msgstr "%{application_name} kullanılarak oluşturuldu. Son değiştirildiği tarih %{date}"
@@ -627,11 +626,11 @@ msgstr "Planınız için uygun bir şablon tanımlanamadı."
#: ../../app/controllers/plans_controller.rb:84
msgid "My Plan (%{title})"
-msgstr ""
+msgstr "Planım (%{title})"
#: ../../app/controllers/plans_controller.rb:86
msgid "%{user_name} Plan"
-msgstr ""
+msgstr "%{user_name} Planı"
#: ../../app/controllers/plans_controller.rb:124
msgid "This plan is based on the default template."
@@ -676,7 +675,7 @@ msgstr "Planın test durumu değiştirilemiyor"
#: ../../app/controllers/plans_controller.rb:461
msgid "There is no plan associated with id %{s"
-msgstr ""
+msgstr "%{ kimliğiyle ilişkilendirilmiş bir plan yok s"
#: ../../app/controllers/registrations_controller.rb:34
msgid ""
@@ -708,6 +707,8 @@ msgid ""
"ble to access\n"
" your account with them."
msgstr ""
+"Hoş geldin! Kurumsal kimlik bilgilerinizle başarıyla kaydoldunuz. Artık onlarl"
+"a hesabınıza erişebileceksiniz."
#: ../../app/controllers/registrations_controller.rb:173
msgid "Save Unsuccessful. "
@@ -763,13 +764,13 @@ msgstr "Şifre ve onay eşleşmelidir"
#: ../../app/controllers/research_outputs_controller.rb:217
msgid "research output not found"
-msgstr ""
+msgstr "araştırma çıktısı bulunamadı"
#: ../../app/controllers/roles_controller.rb:26
msgid ""
"Cannot share plan with %{email} since that email matches\n"
" with the owner of the plan."
-msgstr ""
+msgstr "Bu e-posta planın sahibiyle eşleştiği için plan %{email} ile paylaşılamıyor."
#: ../../app/controllers/roles_controller.rb:36
msgid "Plan is already shared with %{email}."
@@ -796,7 +797,7 @@ msgstr "Plan %{email} ile paylaşıldı."
msgid ""
"You must provide a valid email address and select a permission\n"
" level."
-msgstr ""
+msgstr "Geçerli bir e-posta adresi sağlamalı ve bir izin düzeyi seçmelisiniz."
#: ../../app/controllers/roles_controller.rb:71
msgid "Please enter an email address"
@@ -807,6 +808,8 @@ msgid ""
"Successfully changed the permissions for %{email}. They have been\n"
" notified via email."
msgstr ""
+"%{email} için izinler başarıyla değiştirildi. E-posta yoluyla bilgilendirildil"
+"er."
#: ../../app/controllers/roles_controller.rb:107
msgid "Access removed"
@@ -912,6 +915,10 @@ msgstr "birleştirildi"
msgid "merge"
msgstr "birleştir"
+#: ../../app/controllers/usage_controller.rb:87
+msgid "No. Created Plans"
+msgstr ""
+
#: ../../app/controllers/users/invitations_controller.rb:33
msgid ""
"You are already signed in as another user. Please log out to activate your inv"
@@ -981,7 +988,7 @@ msgstr "Cevaplıyor"
#: ../../app/helpers/conditions_helper.rb:197
msgid " will send an email with subject %{subject_name}"
-msgstr ""
+msgstr "%{subject_name} konulu bir e-posta gönderecek"
#: ../../app/helpers/conditions_helper.rb:203
msgid " will remove question "
@@ -1008,7 +1015,7 @@ msgid "Creators:"
msgstr "Oluşturanlar:"
#: ../../app/helpers/exports_helper.rb:38
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:178
#: ../../app/views/shared/export/_plan_coversheet.erb:8
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creator:"
@@ -1107,6 +1114,10 @@ msgstr "Kuruluş ayrıntılarını yönetin"
msgid "Grant API to organisations"
msgstr "Kuruluşlara API erişimi ver"
+#: ../../app/helpers/perms_helper.rb:17
+msgid "Review organisational plans"
+msgstr ""
+
#: ../../app/helpers/plans_helper.rb:8
#: ../../app/views/paginable/plans/_index.html.erb:8
#: ../../app/views/paginable/plans/_org_admin.html.erb:21
@@ -1182,7 +1193,7 @@ msgid "Plan Description"
msgstr "Plan Açıklaması"
#: ../../app/helpers/settings_template_helper.rb:15
-#: ../../app/views/orgs/_profile_form.html.erb:143
+#: ../../app/views/orgs/_profile_form.html.erb:152
#: ../../app/views/paginable/templates/_customisable.html.erb:7
#: ../../app/views/paginable/templates/_organisational.html.erb:12
#: ../../app/views/plans/_project_details.html.erb:156
@@ -1287,149 +1298,149 @@ msgstr "%{tool_name} içinde verilen yönetici ayrıcalıkları"
msgid "%{tool_name} API changes"
msgstr "%{tool_name} API değişiklikleri"
-#: ../../app/models/concerns/exportable_plan.rb:30
+#: ../../app/models/concerns/exportable_plan.rb:31
msgid "Phase"
msgstr "Aşama"
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Section"
msgstr "Bölüm"
-#: ../../app/models/concerns/exportable_plan.rb:32
+#: ../../app/models/concerns/exportable_plan.rb:33
#: ../../app/models/exported_plan.rb:116
msgid "Question"
msgstr "Soru"
-#: ../../app/models/concerns/exportable_plan.rb:32
-#: ../../app/models/concerns/exportable_plan.rb:34
+#: ../../app/models/concerns/exportable_plan.rb:33
+#: ../../app/models/concerns/exportable_plan.rb:35
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Answer"
msgstr "Cevap"
-#: ../../app/models/concerns/exportable_plan.rb:134
+#: ../../app/models/concerns/exportable_plan.rb:142
msgid " Customised By: "
msgstr " Özelleştiren:"
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
#: ../../app/views/shared/export/_plan_coversheet.erb:6
msgid "Title: "
-msgstr ""
+msgstr "Başlık:"
-#: ../../app/models/concerns/exportable_plan.rb:143
+#: ../../app/models/concerns/exportable_plan.rb:174
msgid "%{title}"
-msgstr ""
+msgstr "%{title}"
-#: ../../app/models/concerns/exportable_plan.rb:145
+#: ../../app/models/concerns/exportable_plan.rb:176
#: ../../app/views/shared/export/_plan_txt.erb:4
msgid "Creators: "
msgstr "Oluşturanlar:"
-#: ../../app/models/concerns/exportable_plan.rb:145
-#: ../../app/models/concerns/exportable_plan.rb:147
+#: ../../app/models/concerns/exportable_plan.rb:176
+#: ../../app/models/concerns/exportable_plan.rb:178
msgid "%{authors}"
msgstr "%{authors}"
-#: ../../app/models/concerns/exportable_plan.rb:150
+#: ../../app/models/concerns/exportable_plan.rb:181
#: ../../app/views/shared/export/_plan_coversheet.erb:14
#: ../../app/views/shared/export/_plan_txt.erb:9
msgid "Principal Investigator: "
-msgstr ""
+msgstr "Baş araştırmacı:"
-#: ../../app/models/concerns/exportable_plan.rb:151
+#: ../../app/models/concerns/exportable_plan.rb:182
msgid "%{investigation}"
-msgstr ""
+msgstr "%{investigation}"
-#: ../../app/models/concerns/exportable_plan.rb:154
+#: ../../app/models/concerns/exportable_plan.rb:185
msgid "Date Manager: "
-msgstr ""
+msgstr "Tarih Yöneticisi:"
-#: ../../app/models/concerns/exportable_plan.rb:155
+#: ../../app/models/concerns/exportable_plan.rb:186
msgid "%{data_curation}"
-msgstr ""
+msgstr "%{data_curation}"
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
#: ../../app/views/shared/export/_plan_coversheet.erb:20
#: ../../app/views/shared/export/_plan_txt.erb:15
msgid "Project Administrator: "
-msgstr ""
+msgstr "Proje Yöneticisi:"
-#: ../../app/models/concerns/exportable_plan.rb:158
+#: ../../app/models/concerns/exportable_plan.rb:189
msgid "%{pa}"
-msgstr ""
+msgstr "%{pa}"
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
#: ../../app/views/shared/export/_plan_coversheet.erb:23
#: ../../app/views/shared/export/_plan_txt.erb:18
msgid "Contributor: "
-msgstr ""
+msgstr "katkıda bulunan:"
-#: ../../app/models/concerns/exportable_plan.rb:161
+#: ../../app/models/concerns/exportable_plan.rb:192
msgid "%{other}"
-msgstr ""
+msgstr "%{other}"
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
#: ../../app/views/shared/export/_plan_coversheet.erb:26
#: ../../app/views/shared/export/_plan_txt.erb:20
msgid "Affiliation: "
msgstr "Bağlı olunan kurum/kuruluş:"
-#: ../../app/models/concerns/exportable_plan.rb:163
+#: ../../app/models/concerns/exportable_plan.rb:194
msgid "%{affiliation}"
msgstr "Bağlı olunan kurum/kuruluş:"
-#: ../../app/models/concerns/exportable_plan.rb:165
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:196
+#: ../../app/models/concerns/exportable_plan.rb:198
#: ../../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:165
+#: ../../app/models/concerns/exportable_plan.rb:196
msgid "%{funder}"
msgstr "%{funder}"
-#: ../../app/models/concerns/exportable_plan.rb:167
+#: ../../app/models/concerns/exportable_plan.rb:198
msgid "%{template}"
msgstr "%{template}"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
#: ../../app/views/shared/export/_plan_txt.erb:27
msgid "Grant number: "
msgstr "Fon/hibe numarası:"
-#: ../../app/models/concerns/exportable_plan.rb:169
+#: ../../app/models/concerns/exportable_plan.rb:200
msgid "%{grant_number}"
msgstr "%{grant_number}"
-#: ../../app/models/concerns/exportable_plan.rb:171
+#: ../../app/models/concerns/exportable_plan.rb:202
#: ../../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:171
+#: ../../app/models/concerns/exportable_plan.rb:202
msgid "%{description}"
msgstr "%{description}"
-#: ../../app/models/concerns/exportable_plan.rb:173
+#: ../../app/models/concerns/exportable_plan.rb:204
#: ../../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:173
+#: ../../app/models/concerns/exportable_plan.rb:204
msgid "%{date}"
msgstr "%{date}"
-#: ../../app/models/concerns/exportable_plan.rb:174
+#: ../../app/models/concerns/exportable_plan.rb:205
#: ../../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:175
+#: ../../app/models/concerns/exportable_plan.rb:206
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"
@@ -1449,7 +1460,11 @@ 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:198
+#: ../../app/models/concerns/exportable_plan.rb:221
+msgid "Research Outputs: "
+msgstr ""
+
+#: ../../app/models/concerns/exportable_plan.rb:244
msgid "Not Answered"
msgstr "Cevaplanmadı"
@@ -1481,15 +1496,15 @@ msgstr "En az bir rol belirtmelisiniz."
#: ../../app/models/contributor.rb:132 ../../app/models/contributor.rb:135
msgid "can't be blank."
-msgstr ""
+msgstr "boş olamaz"
#: ../../app/models/contributor.rb:139
msgid "can't be blank if no email is provided."
-msgstr ""
+msgstr "e-posta sağlanmazsa boş bırakılamaz."
#: ../../app/models/contributor.rb:140
msgid "can't be blank if no name is provided."
-msgstr ""
+msgstr "isim verilmemişse boş bırakılamaz."
#: ../../app/models/exported_plan.rb:116 ../../app/models/exported_plan.rb:119
msgid "Selected option(s)"
@@ -1510,7 +1525,7 @@ msgstr "Ayrıntılar"
#: ../../app/models/exported_plan.rb:189
msgid ""
"Question not answered.\n"
-msgstr ""
+msgstr "Soru cevaplanmadı."
#: ../../app/models/identifier.rb:141
msgid "already assigned a value"
@@ -1658,15 +1673,15 @@ msgstr "İsim"
#: ../../app/models/user/at_csv.rb:7
msgid "E-Mail"
-msgstr ""
+msgstr "E-posta"
#: ../../app/models/user/at_csv.rb:7
msgid "Created Date"
-msgstr ""
+msgstr "Oluşturulma Tarihi"
#: ../../app/models/user/at_csv.rb:7
msgid "Last Activity"
-msgstr ""
+msgstr "son Aktivite"
#: ../../app/models/user/at_csv.rb:7
#: ../../app/views/layouts/_branding.html.erb:71
@@ -1690,7 +1705,7 @@ msgstr "Aktif"
#: ../../app/models/user/at_csv.rb:8
msgid "Department"
-msgstr ""
+msgstr "Departman"
#: ../../app/policies/api/v0/guidance_group_policy.rb:11
#: ../../app/policies/api/v0/guidance_policy.rb:11
@@ -1704,7 +1719,7 @@ msgstr "planlar API'sine erişimi olmalıdır"
#: ../../app/policies/api/v0/template_policy.rb:9
msgid "must have access to templates api"
-msgstr ""
+msgstr "api şablonlarına erişimi olmalıdır"
#: ../../app/policies/research_output_policy.rb:8
msgid "must be logged in"
@@ -1716,19 +1731,19 @@ msgstr "kullanıcısının/kullanıcılarının bu planı görme yetkisi yok"
#: ../../app/presenters/contributor_presenter.rb:42
msgid "Data Manager"
-msgstr ""
+msgstr "Veri Yöneticisi"
#: ../../app/presenters/contributor_presenter.rb:44
msgid "Project Administrator"
-msgstr ""
+msgstr "Proje Yöneticisi"
#: ../../app/presenters/contributor_presenter.rb:46
msgid "Principal Investigator"
-msgstr ""
+msgstr "Baş araştırmacı"
#: ../../app/presenters/contributor_presenter.rb:48
msgid "Other"
-msgstr ""
+msgstr "Başka"
#: ../../app/presenters/contributor_presenter.rb:56
msgid ""
@@ -1759,26 +1774,26 @@ msgstr ""
#: ../../app/presenters/research_output_presenter.rb:81
msgid "Generalist (multidisciplinary)"
-msgstr ""
+msgstr "Genelci (çok disiplinli)"
#: ../../app/presenters/research_output_presenter.rb:82
msgid "Discipline specific"
-msgstr ""
+msgstr "Disipline özgü"
#: ../../app/presenters/research_output_presenter.rb:83
msgid "Institutional"
-msgstr ""
+msgstr "Kurumsal"
#: ../../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 ""
+msgstr "belirtilmemiş"
#: ../../app/presenters/research_output_presenter.rb:140
#: ../../app/presenters/research_output_presenter.rb:147
msgid "Unspecified"
-msgstr ""
+msgstr "Belirtilmemiş"
#: ../../app/services/api/v1/auth/jwt/authentication_service.rb:34
msgid "Invalid grant type"
@@ -1916,7 +1931,7 @@ msgstr "Lütfen bekleyin, Standartlar yükleniyor"
#: ../../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/orgs/_profile_form.html.erb:197
#: ../../app/views/plans/_edit_details.html.erb:11
#: ../../app/views/plans/_guidance_selection.html.erb:23
#: ../../app/views/questions/_preview_question.html.erb:111
@@ -2301,16 +2316,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"
@@ -2877,7 +2892,7 @@ msgid "GitHub"
msgstr "GitHub"
#: ../../app/views/layouts/_navigation.html.erb:12
-#: ../../app/views/orgs/_profile_form.html.erb:55
+#: ../../app/views/orgs/_profile_form.html.erb:58
msgid "logo"
msgstr "logo"
@@ -2954,14 +2969,14 @@ msgstr "Çıkış Yap"
msgid "%{application_name}"
msgstr "%{application_name}"
-#: ../../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:91
+msgid "Notice:"
+msgstr "Bildiri:"
+
#: ../../app/views/layouts/application.html.erb:102
msgid "Loading..."
msgstr "Yükleniyor..."
@@ -3045,37 +3060,37 @@ msgstr "Aranıyor ..."
#: ../../app/views/layouts/modal_search/_form.html.erb:24
msgid "- Enter a search term %{examples} -"
-msgstr ""
+msgstr "- Bir arama terimi girin %{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 ""
+msgstr "Filtre kriterlerinizle eşleşen sonuç yok."
#: ../../app/views/layouts/modal_search/_form.html.erb:41
#: ../../app/views/layouts/modal_search/_form.html.erb:84
msgid "Close"
-msgstr ""
+msgstr "Kapat"
#: ../../app/views/layouts/modal_search/_form.html.erb:44
msgid "%{topic} search"
-msgstr ""
+msgstr "%{topic} araması"
#: ../../app/views/layouts/modal_search/_form.html.erb:67
msgid "Apply filter(s)"
-msgstr ""
+msgstr "Filtre(ler) uygula"
#: ../../app/views/layouts/modal_search/_result.html.erb:20
msgid "Select"
-msgstr ""
+msgstr "Seçme"
#: ../../app/views/layouts/modal_search/_result.html.erb:22
msgid "Click to select %{item_name}"
-msgstr ""
+msgstr "%{item_name} seçmek için tıklayın"
#: ../../app/views/layouts/modal_search/_result.html.erb:25
msgid "Click to remove %{item_name}"
-msgstr ""
+msgstr "%{item_name}'u kaldırmak için tıklayın"
#: ../../app/views/notes/_archive.html.erb:8
msgid "Are you sure you want to remove this comment?"
@@ -3407,6 +3422,8 @@ msgid "Order"
msgstr "Sıra"
#: ../../app/views/org_admin/question_options/_option_fields.html.erb:6
+#: ../../app/views/orgs/_profile_form.html.erb:144
+#: ../../app/views/orgs/_profile_form.html.erb:173
#: ../../app/views/paginable/guidances/_index.html.erb:6
#: ../../app/views/shared/_links.html.erb:13
msgid "Text"
@@ -3917,15 +3934,21 @@ msgstr ""
"rınız varsa veya değişiklik talep ediyorsanız Yardım Masası ile iletişime geçi"
"n."
-#: ../../app/views/orgs/_profile_form.html.erb:21
+#: ../../app/views/orgs/_profile_form.html.erb:6
+msgid ""
+"This information can only be changed by a system administrator. Contact %{supp"
+"ort_email} if you have questions or to request changes."
+msgstr ""
+
+#: ../../app/views/orgs/_profile_form.html.erb:24
msgid "Organisation full name"
msgstr "Kuruluşun tam adı"
-#: ../../app/views/orgs/_profile_form.html.erb:27
+#: ../../app/views/orgs/_profile_form.html.erb:30
msgid "Organisation abbreviated name"
msgstr "Kuruluşun kısaltılmış adı"
-#: ../../app/views/orgs/_profile_form.html.erb:38
+#: ../../app/views/orgs/_profile_form.html.erb:41
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"
@@ -3935,68 +3958,68 @@ msgstr ""
"ruluştur. Yönetilmeyen bir Kuruluş, bir kullanıcı girdiğinde/seçtiğinde sistem"
" tarafından otomatik olarak oluşturulan kuruluştur."
-#: ../../app/views/orgs/_profile_form.html.erb:39
+#: ../../app/views/orgs/_profile_form.html.erb:42
msgid "Managed? (allows Org Admins to access the Admin menu)"
msgstr "Yönetilen? (Kuruluş Yöneticilerinin Yönetici menüsüne erişmesine izin verir)"
-#: ../../app/views/orgs/_profile_form.html.erb:51
+#: ../../app/views/orgs/_profile_form.html.erb:54
msgid "Organization logo"
msgstr "Kuruluş logosu"
-#: ../../app/views/orgs/_profile_form.html.erb:59
+#: ../../app/views/orgs/_profile_form.html.erb:62
msgid "This will remove your organisation's logo"
msgstr "Bu işlem kuruluşunuzun logosunu kaldıracak"
-#: ../../app/views/orgs/_profile_form.html.erb:60
+#: ../../app/views/orgs/_profile_form.html.erb:63
msgid "Remove logo"
msgstr "Logoyu kaldır"
-#: ../../app/views/orgs/_profile_form.html.erb:62
+#: ../../app/views/orgs/_profile_form.html.erb:65
#: ../../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 "veya"
-#: ../../app/views/orgs/_profile_form.html.erb:79
+#: ../../app/views/orgs/_profile_form.html.erb:82
msgid "Organisation URLs"
msgstr "Kuruluş URL'leri"
-#: ../../app/views/orgs/_profile_form.html.erb:91
-#: ../../app/views/orgs/_profile_form.html.erb:96
+#: ../../app/views/orgs/_profile_form.html.erb:94
+#: ../../app/views/orgs/_profile_form.html.erb:99
msgid "Help Desk email"
-msgstr ""
+msgstr "Yardım Masası e-postası"
-#: ../../app/views/orgs/_profile_form.html.erb:105
+#: ../../app/views/orgs/_profile_form.html.erb:108
msgid "Administrator contact"
msgstr "Yönetici iletişim bilgileri"
-#: ../../app/views/orgs/_profile_form.html.erb:110
+#: ../../app/views/orgs/_profile_form.html.erb:113
msgid "Contact email"
msgstr "İletişim e-posta adresi"
-#: ../../app/views/orgs/_profile_form.html.erb:114
+#: ../../app/views/orgs/_profile_form.html.erb:117
#: ../../app/views/shared/_links.html.erb:35
msgid "Link text"
msgstr "Bağlantı metni"
-#: ../../app/views/orgs/_profile_form.html.erb:122
+#: ../../app/views/orgs/_profile_form.html.erb:125
msgid "Google Analytics Tracker"
msgstr "Google Analytics İzleyici"
-#: ../../app/views/orgs/_profile_form.html.erb:128
+#: ../../app/views/orgs/_profile_form.html.erb:131
msgid "Tracker Code"
msgstr "İzleyici Kodu"
-#: ../../app/views/orgs/_profile_form.html.erb:139
+#: ../../app/views/orgs/_profile_form.html.erb:143
msgid "Organisation Types"
msgstr "Kuruluş Türleri"
-#: ../../app/views/orgs/_profile_form.html.erb:149
+#: ../../app/views/orgs/_profile_form.html.erb:158
msgid "Institution"
msgstr "Kurum"
-#: ../../app/views/orgs/_profile_form.html.erb:162
+#: ../../app/views/orgs/_profile_form.html.erb:172
msgid "Organisation type(s)"
msgstr "Kuruluş tür(ler)i"
@@ -4292,14 +4315,6 @@ msgstr "Kopyala"
msgid "View"
msgstr "Görüntüle"
-#: ../../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"
@@ -4309,25 +4324,33 @@ 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: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/_publicly_visible.html.erb:17
msgid "Not Applicable"
msgstr "Uygulanamaz"
#: ../../app/views/paginable/research_outputs/_index.html.erb:13
msgid "Repository"
-msgstr ""
+msgstr "havuz"
#: ../../app/views/paginable/research_outputs/_index.html.erb:16
msgid "Release date"
-msgstr ""
+msgstr "Yayın tarihi"
#: ../../app/views/paginable/research_outputs/_index.html.erb:19
msgid "Access level"
-msgstr ""
+msgstr "Erişim düzeyi"
#: ../../app/views/paginable/research_outputs/_index.html.erb:55
msgid "You are about to delete '%{research_output_title}'. Are you sure?"
-msgstr ""
+msgstr "'%{research_output_title}' öğesini silmek üzeresiniz. Emin misin?"
#: ../../app/views/paginable/templates/_customisable.html.erb:6
#: ../../app/views/paginable/templates/_index.html.erb:5
@@ -4476,7 +4499,7 @@ msgstr "Profili Düzenle"
#: ../../app/views/phases/_edit_plan_answers.html.erb:77
msgid "Comments & Guidance"
-msgstr ""
+msgstr "Yorumlar ve Rehberlik"
#: ../../app/views/phases/_overview.html.erb:5
msgid "Instructions"
@@ -4512,7 +4535,7 @@ msgstr "cevaplanmamış sorular"
#: ../../app/views/plans/_download_form.html.erb:49
msgid "research outputs"
-msgstr ""
+msgstr "araştırma çıktıları"
#: ../../app/views/plans/_download_form.html.erb:57
msgid "supplementary section(s) not requested by funding organisation"
@@ -4623,7 +4646,7 @@ msgstr "Plan Yazın"
#: ../../app/views/plans/_navigation.html.erb:22
msgid "Research Outputs"
-msgstr ""
+msgstr "Araştırma Çıktıları"
#: ../../app/views/plans/_overview_details.html.erb:9
msgid ""
@@ -4678,14 +4701,16 @@ msgid ""
"Whether there are any potential ethical issues related to data that this DMP d"
"escribes"
msgstr ""
+"Bu VYP'nin tanımladığı verilerle ilgili herhangi bir potansiyel etik sorunun o"
+"lup olmadığı"
#: ../../app/views/plans/_project_details.html.erb:8
msgid "Description of the ethical issues"
-msgstr ""
+msgstr "Etik sorunların tanımı"
#: ../../app/views/plans/_project_details.html.erb:9
msgid "Link to a protocol from a meeting with an ethics commitee"
-msgstr ""
+msgstr "Etik komitesi ile yapılan bir toplantıdan bir protokole bağlantı"
#: ../../app/views/plans/_project_details.html.erb:27
#: ../../app/views/plans/new.html.erb:38
@@ -4698,14 +4723,14 @@ msgstr "Proje özeti"
#: ../../app/views/plans/_project_details.html.erb:47
msgid "Research domain"
-msgstr ""
+msgstr "Araştırma alanı"
#: ../../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 ""
+msgstr "- Lütfen birini seçin -"
#: ../../app/views/plans/_project_details.html.erb:62
msgid "Project Start"
@@ -4734,19 +4759,19 @@ msgstr "ID"
#: ../../app/views/plans/_project_details.html.erb:114
msgid "Research outputs may have ethical concerns"
-msgstr ""
+msgstr "Araştırma çıktılarının etik kaygıları olabilir"
#: ../../app/views/plans/_project_details.html.erb:121
msgid "Describe any ethical concerns"
-msgstr ""
+msgstr "Herhangi bir etik kaygıyı açıklayın"
#: ../../app/views/plans/_project_details.html.erb:134
msgid "Ethical protocols"
-msgstr ""
+msgstr "etik protokoller"
#: ../../app/views/plans/_project_details.html.erb:167
msgid "Funding status"
-msgstr ""
+msgstr "Finansman durumu"
#: ../../app/views/plans/_project_details.html.erb:181
msgid "Grant number/url"
@@ -4754,7 +4779,7 @@ msgstr "Fon/hibe numarası (grant number) / url"
#: ../../app/views/plans/_project_details.html.erb:195
msgid "Grant number:"
-msgstr ""
+msgstr "Hibe numarası:"
#: ../../app/views/plans/_project_details.html.erb:199
msgid ""
@@ -4773,6 +4798,8 @@ 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 ""
+"Plan Sahibinin kuruluşu olan %{owner_org}'daki veri yönetimi personeline planı"
+"nızı okuma ve yorum yapma erişimi vermek için aşağıyı tıklayın."
#: ../../app/views/plans/_request_feedback_form.html.erb:17
msgid "You can continue to edit and download the plan in the interim."
@@ -4824,8 +4851,8 @@ msgid "Organisation: anyone at my organisation can view"
msgstr "Kuruluş: kuruluşumdaki herkes görüntüleyebilir"
#: ../../app/views/plans/_share_form.html.erb:37
-msgid "Public: anyone can view"
-msgstr "Herkese açık: herkes görüntüleyebilir"
+msgid "Public: anyone can view or download from the Public DMPs page"
+msgstr ""
#: ../../app/views/plans/_share_form.html.erb:44
msgid "Manage collaborators"
@@ -5025,6 +5052,8 @@ msgid ""
"Your research output abbreviation can be used as a reference when answering th"
"is plan's questions."
msgstr ""
+"Araştırma çıktınızın kısaltması, bu planın sorularını cevaplarken referans ola"
+"rak kullanılabilir."
#: ../../app/views/research_outputs/_form.html.erb:7
msgid ""
@@ -5033,6 +5062,11 @@ msgid ""
"de-anonymizing anonymous data can be considered personally identifiable data. "
"(From https://codata.org/rdm-glossary/personally-identifiable-information/)"
msgstr ""
+"Potansiyel olarak belirli bir kişiyi tanımlayabilecek herhangi bir veri. Bir k"
+"işiyi diğerinden ayırt etmek için kullanılabilecek ve anonim verileri anonim h"
+"ale getirmek için kullanılabilecek her türlü bilgi, kişisel olarak tanımlanabi"
+"lir veri olarak kabul edilebilir. (https://codata.org/rdm-glossary/personally-"
+"identifiable-information/ adresinden)"
#: ../../app/views/research_outputs/_form.html.erb:8
msgid ""
@@ -5043,93 +5077,99 @@ msgid ""
"nuing basis. (From https://codata.org/rdm-glossary/personally-identifiable-inf"
"ormation/)"
msgstr ""
+"Depolar, çeşitli biçimlerdeki birçok dijital malzeme türünü korur, yönetir ve "
+"bunlara erişim sağlar. Çevrim içi depolardaki materyaller, arama, keşif ve yen"
+"iden kullanım sağlamak için derlenmiştir. Dijital materyalin gerçek, güvenilir"
+", erişilebilir ve sürekli olarak kullanılabilir olması için yeterli kontrol ol"
+"malıdır. (https://codata.org/rdm-glossary/personally-identifiable-information/"
+" adresinden)"
#: ../../app/views/research_outputs/_form.html.erb:16
msgid "Please describe the output type"
-msgstr ""
+msgstr "Lütfen çıktı türünü açıklayın"
#: ../../app/views/research_outputs/_form.html.erb:27
msgid "Research output type"
-msgstr ""
+msgstr "Araştırma çıktısı türü"
#: ../../app/views/research_outputs/_form.html.erb:44
msgid "Abbreviation"
-msgstr ""
+msgstr "Kısaltma"
#: ../../app/views/research_outputs/_form.html.erb:73
#: ../../app/views/shared/export/_plan_outputs.erb:26
msgid "May contain sensitive data?"
-msgstr ""
+msgstr "Hassas veriler içerebilir mi?"
#: ../../app/views/research_outputs/_form.html.erb:80
msgid "May contain personally identifiable information?"
-msgstr ""
+msgstr "Kişisel olarak tanımlanabilir bilgiler içerebilir mi?"
#: ../../app/views/research_outputs/_form.html.erb:90
msgid "Intended repositories"
-msgstr ""
+msgstr "Amaçlanan havuzlar"
#: ../../app/views/research_outputs/_form.html.erb:99
msgid "Add a repository"
-msgstr ""
+msgstr "havuz ekle"
#: ../../app/views/research_outputs/_form.html.erb:114
msgid "Metadata standards"
-msgstr ""
+msgstr "Meta veri standartları"
#: ../../app/views/research_outputs/_form.html.erb:122
msgid "Add a metadata standard"
-msgstr ""
+msgstr "Bir meta veri standardı ekleyin"
#: ../../app/views/research_outputs/_form.html.erb:136
#: ../../app/views/shared/export/_plan_outputs.erb:20
msgid "Anticipated release date"
-msgstr ""
+msgstr "Beklenen çıkış tarihi"
#: ../../app/views/research_outputs/_form.html.erb:140
#: ../../app/views/shared/export/_plan_outputs.erb:21
msgid "Initial access level"
-msgstr ""
+msgstr "İlk erişim düzeyi"
#: ../../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 ""
+msgstr "Beklenen dosya boyutu"
#: ../../app/views/research_outputs/_form.html.erb:170
msgid "File size units"
-msgstr ""
+msgstr "Dosya boyutu birimleri"
#: ../../app/views/research_outputs/edit.html.erb:12
msgid "Editing %{research_output_title}"
-msgstr ""
+msgstr "%{research_output_title} düzenleniyor"
#: ../../app/views/research_outputs/edit.html.erb:13
#: ../../app/views/research_outputs/new.html.erb:13
msgid "View all research outputs"
-msgstr ""
+msgstr "Tüm araştırma çıktılarını görüntüle"
#: ../../app/views/research_outputs/index.html.erb:14
msgid "Please list your anticipated research output(s)."
-msgstr ""
+msgstr "Lütfen beklenen araştırma çıktılarınızı listeleyin."
#: ../../app/views/research_outputs/index.html.erb:30
msgid "Add a research output"
-msgstr ""
+msgstr "Bir araştırma çıktısı ekleyin"
#: ../../app/views/research_outputs/licenses/_form.html.erb:20
#: ../../app/views/research_outputs/licenses/_form.html.erb:25
msgid "Initial license"
-msgstr ""
+msgstr "İlk lisans"
#: ../../app/views/research_outputs/licenses/_form.html.erb:31
msgid "For guidance on selecting a license:"
-msgstr ""
+msgstr "Bir lisans seçme konusunda rehberlik için:"
#: ../../app/views/research_outputs/new.html.erb:12
msgid "New research output"
-msgstr ""
+msgstr "Yeni araştırma çıktısı"
#: ../../app/views/research_outputs/repositories/_search.html.erb:5
msgid ""
@@ -5138,62 +5178,66 @@ msgid ""
"st repositories are a good option and accept all types of data regardless of t"
"ype, format, content, or discipline."
msgstr ""
+"Belirli, kurumsal veya genel veri havuzlarını disipline etmek için aramanızı h"
+"assaslaştırın. Etki alanına özgü veri havuzlarının kullanılamadığı durumlarda,"
+" genel veri havuzları iyi bir seçenektir ve türü, biçimi, içeriği veya disipli"
+"ni ne olursa olsun her türlü veriyi kabul eder."
#: ../../app/views/research_outputs/repositories/_search.html.erb:6
msgid "Select a subject area to refine your search."
-msgstr ""
+msgstr "Aramanızı daraltmak için bir konu alanı seçin."
#: ../../app/views/research_outputs/repositories/_search.html.erb:12
msgid "- Select a subject area -"
-msgstr ""
+msgstr "- Bir konu alanı seçin -"
#: ../../app/views/research_outputs/repositories/_search.html.erb:14
msgid "Select a subject area"
-msgstr ""
+msgstr "Bir konu alanı seçin"
#: ../../app/views/research_outputs/repositories/_search.html.erb:22
msgid "- Select a repository type -"
-msgstr ""
+msgstr "- Bir depo türü seçin -"
#: ../../app/views/research_outputs/repositories/_search.html.erb:24
msgid "Select a repository type"
-msgstr ""
+msgstr "Bir havuz türü seçin"
#: ../../app/views/research_outputs/repositories/_search_result.html.erb:20
msgid "Click to view repositories related to %{subject}"
-msgstr ""
+msgstr "%{subject} ile ilgili depoları görüntülemek için tıklayın"
#: ../../app/views/research_outputs/repositories/_search_result.html.erb:32
msgid "More info"
-msgstr ""
+msgstr "Daha fazla bilgi"
#: ../../app/views/research_outputs/repositories/_search_result.html.erb:37
msgid "Repository URL"
-msgstr ""
+msgstr "Havuz URL'si"
#: ../../app/views/research_outputs/repositories/_search_result.html.erb:51
msgid "Data access"
-msgstr ""
+msgstr "veri erişimi"
#: ../../app/views/research_outputs/repositories/_search_result.html.erb:54
msgid "Persistent identifier type"
-msgstr ""
+msgstr "Kalıcı tanımlayıcı türü"
#: ../../app/views/research_outputs/repositories/_search_result.html.erb:57
msgid "Policies"
-msgstr ""
+msgstr "politikalar"
#: ../../app/views/research_outputs/repositories/_search_result.html.erb:66
msgid "Data upload"
-msgstr ""
+msgstr "veri yükleme"
#: ../../app/views/research_outputs/repositories/_search_result.html.erb:73
msgid "Provider type"
-msgstr ""
+msgstr "sağlayıcı türü"
#: ../../app/views/research_outputs/repositories/_search_result.html.erb:76
msgid "Repository type"
-msgstr ""
+msgstr "Depo türü"
#: ../../app/views/shared/_create_account_form.html.erb:8
msgid "Last Name"
@@ -5267,7 +5311,7 @@ msgstr "Soru cevaplanmadı."
#: ../../app/views/shared/export/_plan_coversheet.erb:2
msgid "Plan Overview"
-msgstr ""
+msgstr "Plana Genel Bakış"
#: ../../app/views/shared/export/_plan_coversheet.erb:3
#: ../../app/views/shared/export/_plan_txt.erb:82
@@ -5277,7 +5321,7 @@ msgstr "%{application_name} kullanılarak oluşturulan bir Veri Yönetim Planı"
#: ../../app/views/shared/export/_plan_coversheet.erb:17
#: ../../app/views/shared/export/_plan_txt.erb:12
msgid "Data Manager: "
-msgstr ""
+msgstr "Veri Yöneticisi:"
#: ../../app/views/shared/export/_plan_coversheet.erb:29
msgid "Funder: "
@@ -5321,27 +5365,27 @@ msgstr ""
#: ../../app/views/shared/export/_plan_outputs.erb:3
msgid "Planned Research Outputs"
-msgstr ""
+msgstr "Planlanan Araştırma Çıktıları"
#: ../../app/views/shared/export/_plan_outputs.erb:14
msgid "Planned research output details"
-msgstr ""
+msgstr "Planlanan araştırma çıktısı ayrıntıları"
#: ../../app/views/shared/export/_plan_outputs.erb:22
msgid "Intended repository(ies)"
-msgstr ""
+msgstr "Amaçlanan havuz(lar)"
#: ../../app/views/shared/export/_plan_outputs.erb:24
msgid "License"
-msgstr ""
+msgstr "Lisans"
#: ../../app/views/shared/export/_plan_outputs.erb:25
msgid "Metadata standard(s)"
-msgstr ""
+msgstr "Meta veri standart(lar)ı"
#: ../../app/views/shared/export/_plan_outputs.erb:27
msgid "May contain PII?"
-msgstr ""
+msgstr "PII içerebilir mi?"
#: ../../app/views/shared/org_selectors/_combined.html.erb:15
#: ../../app/views/shared/org_selectors/_external_only.html.erb:13
@@ -5486,14 +5530,14 @@ msgstr "Kaydol"
msgid "on the homepage."
msgstr "ana sayfada."
-#: ../../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:35
+msgid "page for guidance."
+msgstr "rehberlik sayfası."
+
#: ../../app/views/static_pages/about_us.html.erb:37
msgid "Customising for your Organisation"
msgstr "Kuruluşunuz için özelleştiriliyor"
@@ -5518,6 +5562,10 @@ msgid ""
"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 ""
+"%{application_name}'da oturum açtığınızda 'Gösterge Panom' sayfasına yönlendir"
+"ileceksiniz. Buradan herhangi bir planınızı düzenleyebilir, paylaşabilir, indi"
+"rebilir, kopyalayabilir veya kaldırabilirsiniz. Başkaları tarafından sizinle p"
+"aylaşılan planları da göreceksiniz."
#: ../../app/views/static_pages/help.html.erb:13
msgid "Create a plan"
@@ -5676,6 +5724,12 @@ msgid ""
" also adjust the formatting (font type, size and margins) for PDF files, which"
" may be helpful if working to page limits."
msgstr ""
+"Buradan planınızı çeşitli biçimlerde indirebilirsiniz. Bu, planınızı bir hibe "
+"başvurusunun parçası olarak göndermeniz gerektiğinde faydalı olabilir. Planını"
+"zı hangi formatta görüntülemek/indirmek istediğinizi seçin ve indirmek için tı"
+"klayın. Ayrıca PDF dosyaları için biçimlendirmeyi (yazı tipi türü, boyutu ve k"
+"enar boşlukları) ayarlayabilirsiniz; bu, sayfa sınırlarına göre çalışıyorsanız"
+" yardımcı olabilir."
#: ../../app/views/static_pages/privacy.html.erb:10
msgid "Information about you: how we use it and with whom we share it"
@@ -5774,6 +5828,9 @@ msgid ""
"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} ('araç', 'sistem'), araştırma topluluğu için paylaşılan bi"
+"r kaynak olarak DCC ve CDL tarafından geliştirilmiş bir araçtır. CDL'de Califo"
+"rnia Üniversitesi Küratörlük Merkezi tarafından barındırılmaktadır."
#: ../../app/views/static_pages/termsuse.html.erb:18
msgid ""
@@ -5837,6 +5894,43 @@ msgid ""
" at any time. Use of the tool indicates that you understand and agree to these"
" terms and conditions."
msgstr ""
+"
Kişisel bilgileriniz ve onay bildiriminiz
%{application_name} hesa"
+"bınızı tanımlamaya ve yönetmenize yardımcı olması için adınızı ve e-posta adre"
+"sinizi kaydetmemiz gerekiyor. Aracı kullanımınızla ilgili geri bildirim almak "
+"veya en son gelişmeler veya sürümler hakkında sizi bilgilendirmek için sizinle"
+" iletişim kurmak için de kullanabiliriz. Bilgiler, DCC ve CDL arasında ancak y"
+"alnızca şu meşru DCC ve CDL amaçları için aktarılabilir: pazarlama, hizmetleri"
+"mizi geliştirme ve sizi ilgili içerik ve olaylar hakkında bilgilendirme. Bize "
+"sağladığınız hiçbir kişisel bilgiyi satmayacağız, kiralamayacağız veya ticaret"
+"ini yapmayacağız. Bu sistemi kullanarak, kişisel bilgilerinizin yukarıdakilere"
+" uygun olarak toplanmasına, saklanmasına ve kullanılmasına izin vermiş olursun"
+"uz. Kişisel bilgilerinizi pazarlama amaçlarıyla işlemememizi isteme hakkına sa"
+"hipsiniz.
Gizlilik Politikası
Bu sisteme girdiğiniz bilgiler s"
+"iz, erişimi paylaşmayı seçtiğiniz kişiler ve - yalnızca hizmetin sürdürülmesi "
+"amacıyla - DCC ve CDL'deki sistem yöneticileri tarafından görülebilir. Planlar"
+"dan anonimleştirilmiş, otomatikleştirilmiş ve birleştirilmiş bilgiler derleriz"
+", ancak izniniz olmadan içeriğinize doğrudan erişmez, içeriğinizi kullanmaz ve"
+"ya başka hiç kimseyle paylaşmayız. Ana kuruluşunuzun yetkili görevlileri, plan"
+"larınıza belirli amaçlar için erişebilir - örneğin, fon sağlayıcı/kurum gerekl"
+"iliklerine uyumu izlemek, depolama gereksinimlerini hesaplamak veya disiplinle"
+"r arası veri yönetimi hizmetlerine olan talebi değerlendirmek.
Bilgi Ö"
+"zgürlüğü
DCC ve CDL, planlarınızı sizin adınıza tutar, ancak bunlar si"
+"zin mülkünüz ve sorumluluğunuzdur. Herhangi bir FOIA başvuru sahibi, ev organi"
+"zasyonunuza geri yönlendirilecektir.
şifreler
Parolanız şifrel"
+"enmiş biçimde saklanır ve geri alınamaz. Unutulursa sıfırlanması gerekir.
Bu web sitesindeki belirli özellikler, InCommon/Shibboleth gibi üçüncü t"
+"araf hizmetleri ve API'leri veya ortak JavaScript kitaplıklarının veya web yaz"
+"ı tiplerinin üçüncü tarafça barındırılmasını kullanır. Harici bir hizmet taraf"
+"ından kullanılan bilgiler, o hizmetin gizlilik politikasına tabidir.
r"
+"evizyonlar
Bu bildirim en son 5 Ekim 2017'de revize edilmiştir ve herh"
+"angi bir zamanda revize edilebilir. Aracın kullanımı, bu hüküm ve koşulları an"
+"ladığınızı ve kabul ettiğinizi gösterir.