diff --git a/app/helpers/plans_helper.rb b/app/helpers/plans_helper.rb index 2524c2ec05..fbb735b780 100644 --- a/app/helpers/plans_helper.rb +++ b/app/helpers/plans_helper.rb @@ -23,7 +23,7 @@ def display_visibility(val) when 'privately_visible' return "#{_('Private')}" when 'is_test' - return "#{_('Test')}" + return "#{_('Test')}" else return "N/A" end @@ -38,7 +38,7 @@ def visibility_tooltip(val) when 'privately_visible' _('Private: restricted to me and people I invite.') when 'is_test' - _('mock project for testing, practice, or educational purposes') + _('Test: mock project for testing, practice, or educational purposes.') else _('N/A') end diff --git a/app/models/plan.rb b/app/models/plan.rb index 1bb2f8dbc2..7069ee5cc4 100644 --- a/app/models/plan.rb +++ b/app/models/plan.rb @@ -57,6 +57,9 @@ class Plan < ActiveRecord::Base privately_visible: _("private") } + VISIBILITY_ORDER = %i[privately_visible publicly_visible organisationally_visible + is_test] + # ============== # = Attributes = # ============== @@ -65,7 +68,6 @@ class Plan < ActiveRecord::Base enum visibility: %i[organisationally_visible publicly_visible is_test privately_visible] - alias_attribute :name, :title diff --git a/app/views/plans/_edit_details.html.erb b/app/views/plans/_edit_details.html.erb index ee0a347366..c69660df3d 100644 --- a/app/views/plans/_edit_details.html.erb +++ b/app/views/plans/_edit_details.html.erb @@ -17,12 +17,20 @@ +
<%= f.label(:visibility, _('Visibility'), class: 'control-label') %>
- <%= f.select(:visibility, options_for_select(Plan.visibilities.map {|k, v| [visibility_options(k), k]}, [@plan.visibility])) %> + <% visibility_radio_options = Plan::VISIBILITY_ORDER.map {|visibility| {value: visibility, label: visibility_tooltip(visibility.to_s)} } %> + <% visibility_radio_options.each do |radio_option| %> +
+ <%= f.radio_button :visibility, radio_option[:value] %> + <%= _(radio_option[:label]) %> +
+ <% end %> +
diff --git a/config/locale/app.pot b/config/locale/app.pot index 50c861ddc0..0cf44ba00a 100644 --- a/config/locale/app.pot +++ b/config/locale/app.pot @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: roadmap 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2021-03-04 14:56-0700\n" -"PO-Revision-Date: 2021-03-04 14:56-0700\n" +"POT-Creation-Date: 2021-03-08 10:08-0700\n" +"PO-Revision-Date: 2021-03-08 10:08-0700\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" @@ -236,8 +236,8 @@ msgstr "" #: ../../app/controllers/org_admin/sections_controller.rb:98 #: ../../app/controllers/org_admin/templates_controller.rb:194 #: ../../app/controllers/orgs_controller.rb:56 -#: ../../app/controllers/plans_controller.rb:233 -#: ../../app/controllers/plans_controller.rb:236 +#: ../../app/controllers/plans_controller.rb:232 +#: ../../app/controllers/plans_controller.rb:235 #: ../../app/controllers/registrations_controller.rb:229 #: ../../app/controllers/registrations_controller.rb:233 #: ../../app/controllers/registrations_controller.rb:255 @@ -254,9 +254,9 @@ msgstr "" #: ../../app/controllers/org_admin/sections_controller.rb:100 #: ../../app/controllers/org_admin/templates_controller.rb:199 #: ../../app/controllers/orgs_controller.rb:58 -#: ../../app/controllers/plans_controller.rb:242 -#: ../../app/controllers/plans_controller.rb:245 -#: ../../app/controllers/plans_controller.rb:250 +#: ../../app/controllers/plans_controller.rb:241 +#: ../../app/controllers/plans_controller.rb:244 +#: ../../app/controllers/plans_controller.rb:249 #: ../../app/controllers/registrations_controller.rb:236 #: ../../app/controllers/registrations_controller.rb:262 msgid "save" @@ -286,7 +286,7 @@ msgstr "" #: ../../app/controllers/org_admin/phases_controller.rb:157 #: ../../app/controllers/org_admin/questions_controller.rb:128 #: ../../app/controllers/org_admin/sections_controller.rb:127 -#: ../../app/controllers/plans_controller.rb:289 +#: ../../app/controllers/plans_controller.rb:288 #: ../../app/controllers/super_admin/notifications_controller.rb:63 #: ../../app/controllers/super_admin/themes_controller.rb:50 msgid "deleted" @@ -298,7 +298,7 @@ msgstr "" #: ../../app/controllers/org_admin/phases_controller.rb:159 #: ../../app/controllers/org_admin/questions_controller.rb:130 #: ../../app/controllers/org_admin/sections_controller.rb:129 -#: ../../app/controllers/plans_controller.rb:294 +#: ../../app/controllers/plans_controller.rb:293 #: ../../app/controllers/super_admin/notifications_controller.rb:66 #: ../../app/controllers/super_admin/themes_controller.rb:53 msgid "delete" @@ -357,7 +357,7 @@ msgstr "" #: ../../app/controllers/org_admin/phases_controller.rb:130 #: ../../app/controllers/org_admin/questions_controller.rb:98 #: ../../app/controllers/org_admin/users_controller.rb:33 -#: ../../app/controllers/plans_controller.rb:351 +#: ../../app/controllers/plans_controller.rb:350 #: ../../app/controllers/super_admin/notifications_controller.rb:51 #: ../../app/controllers/super_admin/themes_controller.rb:39 #: ../../app/controllers/super_admin/users_controller.rb:33 @@ -368,7 +368,7 @@ msgstr "" #: ../../app/controllers/org_admin/phases_controller.rb:132 #: ../../app/controllers/org_admin/questions_controller.rb:100 #: ../../app/controllers/org_admin/users_controller.rb:35 -#: ../../app/controllers/plans_controller.rb:354 +#: ../../app/controllers/plans_controller.rb:353 #: ../../app/controllers/super_admin/notifications_controller.rb:53 #: ../../app/controllers/super_admin/themes_controller.rb:41 #: ../../app/controllers/super_admin/users_controller.rb:35 @@ -436,6 +436,7 @@ msgstr "" #: ../../app/views/paginable/plans/_org_admin_other_user.html.erb:10 #: ../../app/views/paginable/plans/_privately_visible.html.erb:10 #: ../../app/views/plans/_edit_details.html.erb:22 +#: ../../app/views/plans/_edit_details.html.erb:31 msgid "Visibility" msgstr "" @@ -448,7 +449,7 @@ msgid "%{template_type} was successfully copied." msgstr "" #: ../../app/controllers/org_admin/template_copies_controller.rb:18 -#: ../../app/controllers/plans_controller.rb:333 +#: ../../app/controllers/plans_controller.rb:332 msgid "copy" msgstr "" @@ -513,6 +514,12 @@ msgstr "" msgid "Template created using the %{application_name} service. Last modified %{date}" msgstr "" +#: ../../app/controllers/org_admin/templates_controller.rb:346 +#: ../../app/controllers/plan_exports_controller.rb:85 +#: ../../app/controllers/public_pages_controller.rb:61 +msgid "[page] of [topage]" +msgstr "" + #: ../../app/controllers/org_admin/templates_controller.rb:355 #: ../../app/controllers/public_pages_controller.rb:70 msgid "Unable to download the DMP Template at this time." @@ -539,10 +546,6 @@ msgstr "" msgid "Created using %{application_name}. Last modified %{date}" msgstr "" -#: ../../app/controllers/plan_exports_controller.rb:85 -msgid "[page] of [topage]" -msgstr "" - #: ../../app/controllers/plans_controller.rb:42 msgid "This is a" msgstr "" @@ -576,33 +579,33 @@ msgstr "" msgid "template with customisations by the" msgstr "" -#: ../../app/controllers/plans_controller.rb:331 +#: ../../app/controllers/plans_controller.rb:330 msgid "copied" msgstr "" -#: ../../app/controllers/plans_controller.rb:359 +#: ../../app/controllers/plans_controller.rb:358 msgid "" "Unable to change the plan's status since it is needed at least %{percentage} p" "ercentage responded" msgstr "" -#: ../../app/controllers/plans_controller.rb:367 +#: ../../app/controllers/plans_controller.rb:366 msgid "Unable to find plan id %{plan_id}" msgstr "" -#: ../../app/controllers/plans_controller.rb:381 +#: ../../app/controllers/plans_controller.rb:380 msgid "Your project is now a test." msgstr "" -#: ../../app/controllers/plans_controller.rb:381 +#: ../../app/controllers/plans_controller.rb:380 msgid "Your project is no longer a test." msgstr "" -#: ../../app/controllers/plans_controller.rb:385 +#: ../../app/controllers/plans_controller.rb:384 msgid "Unable to change the plan's test status" msgstr "" -#: ../../app/controllers/plans_controller.rb:399 +#: ../../app/controllers/plans_controller.rb:398 msgid "There is no plan associated with id %{id}" msgstr "" @@ -1024,9 +1027,7 @@ msgid "Private: restricted to me and people I invite." msgstr "" #: ../../app/helpers/plans_helper.rb:41 -#: ../../app/views/branded/plans/new.html.erb:38 -#: ../../app/views/plans/new.html.erb:38 -msgid "mock project for testing, practice, or educational purposes" +msgid "Test: mock project for testing, practice, or educational purposes." msgstr "" #: ../../app/helpers/plans_helper.rb:43 ../../app/helpers/plans_helper.rb:58 @@ -1043,7 +1044,7 @@ msgid "Plan ID" msgstr "" #: ../../app/helpers/settings_template_helper.rb:10 -#: ../../app/views/plans/_edit_details.html.erb:43 +#: ../../app/views/plans/_edit_details.html.erb:59 msgid "Grant number" msgstr "" @@ -1063,7 +1064,7 @@ msgstr "" #: ../../app/views/orgs/_profile_form.html.erb:98 #: ../../app/views/paginable/templates/_customisable.html.erb:7 #: ../../app/views/paginable/templates/_organisational.html.erb:12 -#: ../../app/views/plans/_edit_details.html.erb:31 +#: ../../app/views/plans/_edit_details.html.erb:47 #: ../../app/views/plans/_show_details.html.erb:4 msgid "Funder" msgstr "" @@ -1521,8 +1522,8 @@ msgstr "" #: ../../app/views/org_admin/users/edit.html.erb:54 #: ../../app/views/orgs/_feedback_form.html.erb:34 #: ../../app/views/orgs/_profile_form.html.erb:129 -#: ../../app/views/plans/_edit_details.html.erb:166 -#: ../../app/views/plans/_edit_details.html.erb:189 +#: ../../app/views/plans/_edit_details.html.erb:182 +#: ../../app/views/plans/_edit_details.html.erb:205 #: ../../app/views/questions/_preview_question.html.erb:111 #: ../../app/views/super_admin/notifications/_form.html.erb:58 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -1661,6 +1662,11 @@ msgstr "" msgid "What research project are you planning?" msgstr "" +#: ../../app/views/branded/plans/new.html.erb:38 +#: ../../app/views/plans/new.html.erb:38 +msgid "mock project for testing, practice, or educational purposes" +msgstr "" + #: ../../app/views/branded/plans/new.html.erb:47 #: ../../app/views/plans/new.html.erb:47 msgid "Select the primary research organisation" @@ -1727,7 +1733,7 @@ msgstr "" #: ../../app/views/org_admin/departments/new.html.erb:24 #: ../../app/views/org_admin/questions/_form.html.erb:93 #: ../../app/views/org_admin/questions/_form.html.erb:95 -#: ../../app/views/plans/_edit_details.html.erb:202 +#: ../../app/views/plans/_edit_details.html.erb:218 #: ../../app/views/plans/new.html.erb:122 #: ../../app/views/super_admin/notifications/_form.html.erb:65 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -1745,8 +1751,8 @@ msgstr "" #: ../../app/views/paginable/guidance_groups/_index.html.erb:6 #: ../../app/views/paginable/themes/_index.html.erb:4 #: ../../app/views/paginable/users/_index.html.erb:9 -#: ../../app/views/plans/_edit_details.html.erb:80 -#: ../../app/views/plans/_edit_details.html.erb:134 +#: ../../app/views/plans/_edit_details.html.erb:96 +#: ../../app/views/plans/_edit_details.html.erb:150 #: ../../app/views/plans/_show_details.html.erb:16 #: ../../app/views/plans/_show_details.html.erb:26 msgid "Name" @@ -1758,8 +1764,8 @@ msgstr "" #: ../../app/views/devise/registrations/_personal_details.html.erb:10 #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/users/_index.html.erb:10 -#: ../../app/views/plans/_edit_details.html.erb:102 -#: ../../app/views/plans/_edit_details.html.erb:145 +#: ../../app/views/plans/_edit_details.html.erb:118 +#: ../../app/views/plans/_edit_details.html.erb:161 #: ../../app/views/plans/_share_form.html.erb:99 #: ../../app/views/plans/_show_details.html.erb:20 #: ../../app/views/plans/_show_details.html.erb:30 @@ -2811,7 +2817,7 @@ msgstr "" #: ../../app/views/org_admin/phases/_phase.html.erb:37 #: ../../app/views/org_admin/questions/_index.html.erb:1 -#: ../../tmp/translation/database_strings.rb:121 +#: ../../tmp/translation/database_strings.rb:130 msgid "Questions" msgstr "" @@ -3842,74 +3848,74 @@ msgstr "" msgid "A pertinent ID as determined by the funder and/or organisation." msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:55 +#: ../../app/views/plans/_edit_details.html.erb:71 msgid "Project abstract" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:67 +#: ../../app/views/plans/_edit_details.html.erb:83 #: ../../app/views/plans/_show_details.html.erb:10 msgid "ID" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:77 +#: ../../app/views/plans/_edit_details.html.erb:93 #: ../../app/views/plans/_show_details.html.erb:14 msgid "Principal Investigator" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:91 +#: ../../app/views/plans/_edit_details.html.erb:107 #: ../../app/views/plans/_show_details.html.erb:18 msgid "ORCID iD" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:113 -#: ../../app/views/plans/_edit_details.html.erb:156 +#: ../../app/views/plans/_edit_details.html.erb:129 +#: ../../app/views/plans/_edit_details.html.erb:172 #: ../../app/views/plans/_show_details.html.erb:28 msgid "Phone" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:124 +#: ../../app/views/plans/_edit_details.html.erb:140 msgid "Data contact person" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:129 +#: ../../app/views/plans/_edit_details.html.erb:145 msgid "Same as Principal Investigator" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:169 -#: ../../app/views/plans/_edit_details.html.erb:205 +#: ../../app/views/plans/_edit_details.html.erb:185 +#: ../../app/views/plans/_edit_details.html.erb:221 msgid "Select Guidance" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:172 +#: ../../app/views/plans/_edit_details.html.erb:188 msgid "" "To help you write your plan, %{application_name} can show you guidance from a " "variety of organisations." msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:176 +#: ../../app/views/plans/_edit_details.html.erb:192 msgid "Select up to 6 organisations to see their guidance." msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:185 +#: ../../app/views/plans/_edit_details.html.erb:201 msgid "Find guidance from additional organisations below" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:186 +#: ../../app/views/plans/_edit_details.html.erb:202 msgid "See the full list" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:192 +#: ../../app/views/plans/_edit_details.html.erb:208 msgid "There is no additional guidance for this template." msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:207 +#: ../../app/views/plans/_edit_details.html.erb:223 msgid "" "To help you write your plan, %{application_name} can show you guidance from a " "variety of organisations. Please choose up to 6 organisations of the following" " organisations who offer guidance relevant to your plan." msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:210 +#: ../../app/views/plans/_edit_details.html.erb:226 msgid "Don't forget to save your changes after making your selections." msgstr "" @@ -5503,7 +5509,7 @@ msgid "DEFAULT TITLE" msgstr "" #: ../../tmp/translation/database_strings.rb:61 -#: ../../tmp/translation/database_strings.rb:134 +#: ../../tmp/translation/database_strings.rb:108 msgid "Template for Qualitative Health Sciences Research" msgstr "" @@ -5512,12 +5518,12 @@ msgid "Template for Interdisciplinary Health Software/Technology Development" msgstr "" #: ../../tmp/translation/database_strings.rb:63 -#: ../../tmp/translation/database_strings.rb:136 +#: ../../tmp/translation/database_strings.rb:110 msgid "Template for Arts-Based Research" msgstr "" #: ../../tmp/translation/database_strings.rb:64 -#: ../../tmp/translation/database_strings.rb:137 +#: ../../tmp/translation/database_strings.rb:111 msgid "Template for Mixed Methods (Surveys & Qualitative Research)" msgstr "" @@ -5530,32 +5536,32 @@ msgid "Template for Research in History and the Humanities" msgstr "" #: ../../tmp/translation/database_strings.rb:67 -#: ../../tmp/translation/database_strings.rb:110 +#: ../../tmp/translation/database_strings.rb:119 msgid "CRDCN Template for Accessing Data from Research Data Centres" msgstr "" #: ../../tmp/translation/database_strings.rb:68 -#: ../../tmp/translation/database_strings.rb:112 +#: ../../tmp/translation/database_strings.rb:121 msgid "CRDCN Template for Research Data Centres and External Analysis" msgstr "" #: ../../tmp/translation/database_strings.rb:69 -#: ../../tmp/translation/database_strings.rb:114 +#: ../../tmp/translation/database_strings.rb:123 msgid "Template for Water Quality Research" msgstr "" #: ../../tmp/translation/database_strings.rb:70 -#: ../../tmp/translation/database_strings.rb:116 +#: ../../tmp/translation/database_strings.rb:125 msgid "Template for Systematic Reviews" msgstr "" #: ../../tmp/translation/database_strings.rb:71 -#: ../../tmp/translation/database_strings.rb:118 +#: ../../tmp/translation/database_strings.rb:127 msgid "Template for Studying Molecular Interactions" msgstr "" #: ../../tmp/translation/database_strings.rb:72 -#: ../../tmp/translation/database_strings.rb:120 +#: ../../tmp/translation/database_strings.rb:129 msgid "Template for Open Science Workflows" msgstr "" @@ -5907,129 +5913,129 @@ msgid "" "roughout a research project. 

" msgstr "" -#: ../../tmp/translation/database_strings.rb:108 +#: ../../tmp/translation/database_strings.rb:109 +msgid "Software/Technology Management Plan" +msgstr "" + +#: ../../tmp/translation/database_strings.rb:112 +msgid "Phase 1: Data Preparation" +msgstr "" + +#: ../../tmp/translation/database_strings.rb:113 +msgid "University of Alberta Data Management Questions" +msgstr "" + +#: ../../tmp/translation/database_strings.rb:114 +msgid "MICYRN Data Management Plan Initial Phase" +msgstr "" + +#: ../../tmp/translation/database_strings.rb:115 +msgid "Reproducible findings through deposited data" +msgstr "" + +#: ../../tmp/translation/database_strings.rb:116 +msgid "Phase 1: Data Management Plan for Grant Application" +msgstr "" + +#: ../../tmp/translation/database_strings.rb:117 msgid "University of British Columbia Data Management Questions" msgstr "" -#: ../../tmp/translation/database_strings.rb:109 +#: ../../tmp/translation/database_strings.rb:118 msgid "Portage Data Management Questions" msgstr "" -#: ../../tmp/translation/database_strings.rb:111 +#: ../../tmp/translation/database_strings.rb:120 msgid "Pre-Project: Prototype" msgstr "" -#: ../../tmp/translation/database_strings.rb:113 +#: ../../tmp/translation/database_strings.rb:122 msgid "CEOS Data Management Plan" msgstr "" -#: ../../tmp/translation/database_strings.rb:115 +#: ../../tmp/translation/database_strings.rb:124 msgid "Oceans Data Management Plan" msgstr "" -#: ../../tmp/translation/database_strings.rb:117 +#: ../../tmp/translation/database_strings.rb:126 msgid "University of Manitoba Data Management Questions" msgstr "" -#: ../../tmp/translation/database_strings.rb:119 +#: ../../tmp/translation/database_strings.rb:128 msgid "DMP Questionnaire" msgstr "" -#: ../../tmp/translation/database_strings.rb:122 +#: ../../tmp/translation/database_strings.rb:131 msgid "Phase 1" msgstr "" -#: ../../tmp/translation/database_strings.rb:123 +#: ../../tmp/translation/database_strings.rb:132 msgid "University of Guelph Agri-Food Funding DMP (Alliance/Food from Thought) " msgstr "" -#: ../../tmp/translation/database_strings.rb:124 +#: ../../tmp/translation/database_strings.rb:133 msgid "Data management questions" msgstr "" -#: ../../tmp/translation/database_strings.rb:125 +#: ../../tmp/translation/database_strings.rb:134 msgid "York U Data Management Questions" msgstr "" -#: ../../tmp/translation/database_strings.rb:126 +#: ../../tmp/translation/database_strings.rb:135 msgid "MUN Data Management Questions" msgstr "" -#: ../../tmp/translation/database_strings.rb:127 +#: ../../tmp/translation/database_strings.rb:136 msgid "OFI Module E DMP" msgstr "" -#: ../../tmp/translation/database_strings.rb:128 +#: ../../tmp/translation/database_strings.rb:137 msgid "Dalhousie University" msgstr "" -#: ../../tmp/translation/database_strings.rb:129 +#: ../../tmp/translation/database_strings.rb:138 #: ../../tmp/translation/database_strings.rb:233 msgid "TITLE" msgstr "" -#: ../../tmp/translation/database_strings.rb:130 -msgid "Alliance/Food from Thought DMP creation" -msgstr "" - -#: ../../tmp/translation/database_strings.rb:131 -msgid "Test DMP Questions" -msgstr "" - -#: ../../tmp/translation/database_strings.rb:132 -msgid "Phase 1 (test)" -msgstr "" - -#: ../../tmp/translation/database_strings.rb:133 -msgid "Initial GWF DMP" -msgstr "" - -#: ../../tmp/translation/database_strings.rb:135 -msgid "Software/Technology Management Plan" -msgstr "" - -#: ../../tmp/translation/database_strings.rb:138 -msgid "Phase 1: Data Preparation" -msgstr "" - #: ../../tmp/translation/database_strings.rb:139 -msgid "University of Alberta Data Management Questions" +msgid "Alliance/Food from Thought DMP creation" msgstr "" #: ../../tmp/translation/database_strings.rb:140 -msgid "MICYRN Data Management Plan Initial Phase" +msgid "Test DMP Questions" msgstr "" #: ../../tmp/translation/database_strings.rb:141 -msgid "Reproducible findings through deposited data" +msgid "Phase 1 (test)" msgstr "" #: ../../tmp/translation/database_strings.rb:142 -msgid "Phase 1: Data Management Plan for Grant Application" +msgid "Initial GWF DMP" msgstr "" #: ../../tmp/translation/database_strings.rb:143 -msgid "Phase 2: Data Management Plan for Project Development" +msgid "Data Management Plan" msgstr "" #: ../../tmp/translation/database_strings.rb:144 -msgid "Phase 2" +msgid "Phase 2: Active Research (Data) Management" msgstr "" #: ../../tmp/translation/database_strings.rb:145 -msgid "Export" +msgid "Phase 2: Data Management Plan for Project Development" msgstr "" #: ../../tmp/translation/database_strings.rb:146 -msgid "OMAFRA-UG DMP Questions" +msgid "Phase 2" msgstr "" #: ../../tmp/translation/database_strings.rb:147 -msgid "Data Management Plan" +msgid "Export" msgstr "" #: ../../tmp/translation/database_strings.rb:148 -msgid "Phase 2: Active Research (Data) Management" +msgid "OMAFRA-UG DMP Questions" msgstr "" #: ../../tmp/translation/database_strings.rb:149 diff --git a/config/locale/en_CA/LC_MESSAGES/app.mo b/config/locale/en_CA/LC_MESSAGES/app.mo index cdfbd9edda..219ff26060 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 afb0a10cf7..04ef8f53d7 100644 --- a/config/locale/en_CA/app.po +++ b/config/locale/en_CA/app.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: roadmap 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2021-03-04 14:56-0700\n" -"PO-Revision-Date: 2021-03-04 22:56+0100\n" +"POT-Creation-Date: 2021-03-08 10:08-0700\n" +"PO-Revision-Date: 2021-03-08 18:09+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: English\n" "Language: en_CA\n" @@ -501,6 +501,24 @@ msgid "" "roughout a research project. 

" msgstr "" +msgid "Software/Technology Management Plan" +msgstr "" + +msgid "Phase 1: Data Preparation" +msgstr "" + +msgid "University of Alberta Data Management Questions" +msgstr "" + +msgid "MICYRN Data Management Plan Initial Phase" +msgstr "" + +msgid "Reproducible findings through deposited data" +msgstr "" + +msgid "Phase 1: Data Management Plan for Grant Application" +msgstr "" + msgid "University of British Columbia Data Management Questions" msgstr "" @@ -558,22 +576,10 @@ msgstr "" msgid "Initial GWF DMP" msgstr "" -msgid "Software/Technology Management Plan" -msgstr "" - -msgid "Phase 1: Data Preparation" -msgstr "" - -msgid "University of Alberta Data Management Questions" -msgstr "" - -msgid "MICYRN Data Management Plan Initial Phase" -msgstr "" - -msgid "Reproducible findings through deposited data" +msgid "Data Management Plan" msgstr "" -msgid "Phase 1: Data Management Plan for Grant Application" +msgid "Phase 2: Active Research (Data) Management" msgstr "" msgid "Phase 2: Data Management Plan for Project Development" @@ -588,12 +594,6 @@ msgstr "" msgid "OMAFRA-UG DMP Questions" msgstr "" -msgid "Data Management Plan" -msgstr "" - -msgid "Phase 2: Active Research (Data) Management" -msgstr "" - msgid "Phase 3: Data Protection" msgstr "" @@ -16447,8 +16447,8 @@ msgstr "" #: ../../app/controllers/org_admin/sections_controller.rb:98 #: ../../app/controllers/org_admin/templates_controller.rb:194 #: ../../app/controllers/orgs_controller.rb:56 -#: ../../app/controllers/plans_controller.rb:233 -#: ../../app/controllers/plans_controller.rb:236 +#: ../../app/controllers/plans_controller.rb:232 +#: ../../app/controllers/plans_controller.rb:235 #: ../../app/controllers/registrations_controller.rb:229 #: ../../app/controllers/registrations_controller.rb:233 #: ../../app/controllers/registrations_controller.rb:255 @@ -16465,9 +16465,9 @@ msgstr "" #: ../../app/controllers/org_admin/sections_controller.rb:100 #: ../../app/controllers/org_admin/templates_controller.rb:199 #: ../../app/controllers/orgs_controller.rb:58 -#: ../../app/controllers/plans_controller.rb:242 -#: ../../app/controllers/plans_controller.rb:245 -#: ../../app/controllers/plans_controller.rb:250 +#: ../../app/controllers/plans_controller.rb:241 +#: ../../app/controllers/plans_controller.rb:244 +#: ../../app/controllers/plans_controller.rb:249 #: ../../app/controllers/registrations_controller.rb:236 #: ../../app/controllers/registrations_controller.rb:262 msgid "save" @@ -16497,7 +16497,7 @@ msgstr "" #: ../../app/controllers/org_admin/phases_controller.rb:157 #: ../../app/controllers/org_admin/questions_controller.rb:128 #: ../../app/controllers/org_admin/sections_controller.rb:127 -#: ../../app/controllers/plans_controller.rb:289 +#: ../../app/controllers/plans_controller.rb:288 #: ../../app/controllers/super_admin/notifications_controller.rb:63 #: ../../app/controllers/super_admin/themes_controller.rb:50 msgid "deleted" @@ -16509,7 +16509,7 @@ msgstr "" #: ../../app/controllers/org_admin/phases_controller.rb:159 #: ../../app/controllers/org_admin/questions_controller.rb:130 #: ../../app/controllers/org_admin/sections_controller.rb:129 -#: ../../app/controllers/plans_controller.rb:294 +#: ../../app/controllers/plans_controller.rb:293 #: ../../app/controllers/super_admin/notifications_controller.rb:66 #: ../../app/controllers/super_admin/themes_controller.rb:53 msgid "delete" @@ -16568,7 +16568,7 @@ msgstr "" #: ../../app/controllers/org_admin/phases_controller.rb:130 #: ../../app/controllers/org_admin/questions_controller.rb:98 #: ../../app/controllers/org_admin/users_controller.rb:33 -#: ../../app/controllers/plans_controller.rb:351 +#: ../../app/controllers/plans_controller.rb:350 #: ../../app/controllers/super_admin/notifications_controller.rb:51 #: ../../app/controllers/super_admin/themes_controller.rb:39 #: ../../app/controllers/super_admin/users_controller.rb:33 @@ -16579,7 +16579,7 @@ msgstr "" #: ../../app/controllers/org_admin/phases_controller.rb:132 #: ../../app/controllers/org_admin/questions_controller.rb:100 #: ../../app/controllers/org_admin/users_controller.rb:35 -#: ../../app/controllers/plans_controller.rb:354 +#: ../../app/controllers/plans_controller.rb:353 #: ../../app/controllers/super_admin/notifications_controller.rb:53 #: ../../app/controllers/super_admin/themes_controller.rb:41 #: ../../app/controllers/super_admin/users_controller.rb:35 @@ -16647,6 +16647,7 @@ msgstr "" #: ../../app/views/paginable/plans/_org_admin_other_user.html.erb:10 #: ../../app/views/paginable/plans/_privately_visible.html.erb:10 #: ../../app/views/plans/_edit_details.html.erb:22 +#: ../../app/views/plans/_edit_details.html.erb:31 msgid "Visibility" msgstr "" @@ -16659,7 +16660,7 @@ msgid "%{template_type} was successfully copied." msgstr "" #: ../../app/controllers/org_admin/template_copies_controller.rb:18 -#: ../../app/controllers/plans_controller.rb:333 +#: ../../app/controllers/plans_controller.rb:332 msgid "copy" msgstr "" @@ -16724,6 +16725,12 @@ msgstr "" msgid "Template created using the %{application_name} service. Last modified %{date}" msgstr "" +#: ../../app/controllers/org_admin/templates_controller.rb:346 +#: ../../app/controllers/plan_exports_controller.rb:85 +#: ../../app/controllers/public_pages_controller.rb:61 +msgid "[page] of [topage]" +msgstr "" + #: ../../app/controllers/org_admin/templates_controller.rb:355 #: ../../app/controllers/public_pages_controller.rb:70 msgid "Unable to download the DMP Template at this time." @@ -16750,10 +16757,6 @@ msgstr "" msgid "Created using %{application_name}. Last modified %{date}" msgstr "" -#: ../../app/controllers/plan_exports_controller.rb:85 -msgid "[page] of [topage]" -msgstr "" - #: ../../app/controllers/plans_controller.rb:42 msgid "This is a" msgstr "" @@ -16787,33 +16790,33 @@ msgstr "" msgid "template with customisations by the" msgstr "" -#: ../../app/controllers/plans_controller.rb:331 +#: ../../app/controllers/plans_controller.rb:330 msgid "copied" msgstr "" -#: ../../app/controllers/plans_controller.rb:359 +#: ../../app/controllers/plans_controller.rb:358 msgid "" "Unable to change the plan's status since it is needed at least %{percentage} p" "ercentage responded" msgstr "" -#: ../../app/controllers/plans_controller.rb:367 +#: ../../app/controllers/plans_controller.rb:366 msgid "Unable to find plan id %{plan_id}" msgstr "" -#: ../../app/controllers/plans_controller.rb:381 +#: ../../app/controllers/plans_controller.rb:380 msgid "Your project is now a test." msgstr "" -#: ../../app/controllers/plans_controller.rb:381 +#: ../../app/controllers/plans_controller.rb:380 msgid "Your project is no longer a test." msgstr "" -#: ../../app/controllers/plans_controller.rb:385 +#: ../../app/controllers/plans_controller.rb:384 msgid "Unable to change the plan's test status" msgstr "" -#: ../../app/controllers/plans_controller.rb:399 +#: ../../app/controllers/plans_controller.rb:398 msgid "There is no plan associated with id %{id}" msgstr "" @@ -17235,9 +17238,7 @@ msgid "Private: restricted to me and people I invite." msgstr "" #: ../../app/helpers/plans_helper.rb:41 -#: ../../app/views/branded/plans/new.html.erb:38 -#: ../../app/views/plans/new.html.erb:38 -msgid "mock project for testing, practice, or educational purposes" +msgid "Test: mock project for testing, practice, or educational purposes." msgstr "" #: ../../app/helpers/plans_helper.rb:43 ../../app/helpers/plans_helper.rb:58 @@ -17254,7 +17255,7 @@ msgid "Plan ID" msgstr "" #: ../../app/helpers/settings_template_helper.rb:10 -#: ../../app/views/plans/_edit_details.html.erb:43 +#: ../../app/views/plans/_edit_details.html.erb:59 msgid "Grant number" msgstr "" @@ -17274,7 +17275,7 @@ msgstr "" #: ../../app/views/orgs/_profile_form.html.erb:98 #: ../../app/views/paginable/templates/_customisable.html.erb:7 #: ../../app/views/paginable/templates/_organisational.html.erb:12 -#: ../../app/views/plans/_edit_details.html.erb:31 +#: ../../app/views/plans/_edit_details.html.erb:47 #: ../../app/views/plans/_show_details.html.erb:4 msgid "Funder" msgstr "" @@ -17732,8 +17733,8 @@ msgstr "" #: ../../app/views/org_admin/users/edit.html.erb:54 #: ../../app/views/orgs/_feedback_form.html.erb:34 #: ../../app/views/orgs/_profile_form.html.erb:129 -#: ../../app/views/plans/_edit_details.html.erb:166 -#: ../../app/views/plans/_edit_details.html.erb:189 +#: ../../app/views/plans/_edit_details.html.erb:182 +#: ../../app/views/plans/_edit_details.html.erb:205 #: ../../app/views/questions/_preview_question.html.erb:111 #: ../../app/views/super_admin/notifications/_form.html.erb:58 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -17872,6 +17873,11 @@ msgstr "" msgid "What research project are you planning?" msgstr "" +#: ../../app/views/branded/plans/new.html.erb:38 +#: ../../app/views/plans/new.html.erb:38 +msgid "mock project for testing, practice, or educational purposes" +msgstr "" + #: ../../app/views/branded/plans/new.html.erb:47 #: ../../app/views/plans/new.html.erb:47 msgid "Select the primary research organisation" @@ -17938,7 +17944,7 @@ msgstr "" #: ../../app/views/org_admin/departments/new.html.erb:24 #: ../../app/views/org_admin/questions/_form.html.erb:93 #: ../../app/views/org_admin/questions/_form.html.erb:95 -#: ../../app/views/plans/_edit_details.html.erb:202 +#: ../../app/views/plans/_edit_details.html.erb:218 #: ../../app/views/plans/new.html.erb:122 #: ../../app/views/super_admin/notifications/_form.html.erb:65 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -17956,8 +17962,8 @@ msgstr "" #: ../../app/views/paginable/guidance_groups/_index.html.erb:6 #: ../../app/views/paginable/themes/_index.html.erb:4 #: ../../app/views/paginable/users/_index.html.erb:9 -#: ../../app/views/plans/_edit_details.html.erb:80 -#: ../../app/views/plans/_edit_details.html.erb:134 +#: ../../app/views/plans/_edit_details.html.erb:96 +#: ../../app/views/plans/_edit_details.html.erb:150 #: ../../app/views/plans/_show_details.html.erb:16 #: ../../app/views/plans/_show_details.html.erb:26 msgid "Name" @@ -17969,8 +17975,8 @@ msgstr "" #: ../../app/views/devise/registrations/_personal_details.html.erb:10 #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/users/_index.html.erb:10 -#: ../../app/views/plans/_edit_details.html.erb:102 -#: ../../app/views/plans/_edit_details.html.erb:145 +#: ../../app/views/plans/_edit_details.html.erb:118 +#: ../../app/views/plans/_edit_details.html.erb:161 #: ../../app/views/plans/_share_form.html.erb:99 #: ../../app/views/plans/_show_details.html.erb:20 #: ../../app/views/plans/_show_details.html.erb:30 @@ -20049,74 +20055,74 @@ msgstr "" msgid "A pertinent ID as determined by the funder and/or organisation." msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:55 +#: ../../app/views/plans/_edit_details.html.erb:71 msgid "Project abstract" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:67 +#: ../../app/views/plans/_edit_details.html.erb:83 #: ../../app/views/plans/_show_details.html.erb:10 msgid "ID" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:77 +#: ../../app/views/plans/_edit_details.html.erb:93 #: ../../app/views/plans/_show_details.html.erb:14 msgid "Principal Investigator" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:91 +#: ../../app/views/plans/_edit_details.html.erb:107 #: ../../app/views/plans/_show_details.html.erb:18 msgid "ORCID iD" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:113 -#: ../../app/views/plans/_edit_details.html.erb:156 +#: ../../app/views/plans/_edit_details.html.erb:129 +#: ../../app/views/plans/_edit_details.html.erb:172 #: ../../app/views/plans/_show_details.html.erb:28 msgid "Phone" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:124 +#: ../../app/views/plans/_edit_details.html.erb:140 msgid "Data contact person" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:129 +#: ../../app/views/plans/_edit_details.html.erb:145 msgid "Same as Principal Investigator" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:169 -#: ../../app/views/plans/_edit_details.html.erb:205 +#: ../../app/views/plans/_edit_details.html.erb:185 +#: ../../app/views/plans/_edit_details.html.erb:221 msgid "Select Guidance" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:172 +#: ../../app/views/plans/_edit_details.html.erb:188 msgid "" "To help you write your plan, %{application_name} can show you guidance from a " "variety of organisations." msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:176 +#: ../../app/views/plans/_edit_details.html.erb:192 msgid "Select up to 6 organisations to see their guidance." msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:185 +#: ../../app/views/plans/_edit_details.html.erb:201 msgid "Find guidance from additional organisations below" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:186 +#: ../../app/views/plans/_edit_details.html.erb:202 msgid "See the full list" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:192 +#: ../../app/views/plans/_edit_details.html.erb:208 msgid "There is no additional guidance for this template." msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:207 +#: ../../app/views/plans/_edit_details.html.erb:223 msgid "" "To help you write your plan, %{application_name} can show you guidance from a " "variety of organisations. Please choose up to 6 organisations of the following" " organisations who offer guidance relevant to your plan." msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:210 +#: ../../app/views/plans/_edit_details.html.erb:226 msgid "Don't forget to save your changes after making your selections." msgstr "" diff --git a/config/locale/en_GB/LC_MESSAGES/app.mo b/config/locale/en_GB/LC_MESSAGES/app.mo index 7a5f2598d5..35e1923345 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 d0bbb30acc..65cbebf950 100644 --- a/config/locale/en_GB/app.po +++ b/config/locale/en_GB/app.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: roadmap 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2021-03-04 14:56-0700\n" -"PO-Revision-Date: 2021-03-04 22:56+0100\n" +"POT-Creation-Date: 2021-03-08 10:08-0700\n" +"PO-Revision-Date: 2021-03-08 18:09+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: English\n" "Language: en_GB\n" @@ -501,6 +501,24 @@ msgid "" "roughout a research project. 

" msgstr "" +msgid "Software/Technology Management Plan" +msgstr "" + +msgid "Phase 1: Data Preparation" +msgstr "" + +msgid "University of Alberta Data Management Questions" +msgstr "" + +msgid "MICYRN Data Management Plan Initial Phase" +msgstr "" + +msgid "Reproducible findings through deposited data" +msgstr "" + +msgid "Phase 1: Data Management Plan for Grant Application" +msgstr "" + msgid "University of British Columbia Data Management Questions" msgstr "" @@ -558,22 +576,10 @@ msgstr "" msgid "Initial GWF DMP" msgstr "" -msgid "Software/Technology Management Plan" -msgstr "" - -msgid "Phase 1: Data Preparation" -msgstr "" - -msgid "University of Alberta Data Management Questions" -msgstr "" - -msgid "MICYRN Data Management Plan Initial Phase" -msgstr "" - -msgid "Reproducible findings through deposited data" +msgid "Data Management Plan" msgstr "" -msgid "Phase 1: Data Management Plan for Grant Application" +msgid "Phase 2: Active Research (Data) Management" msgstr "" msgid "Phase 2: Data Management Plan for Project Development" @@ -588,12 +594,6 @@ msgstr "" msgid "OMAFRA-UG DMP Questions" msgstr "" -msgid "Data Management Plan" -msgstr "" - -msgid "Phase 2: Active Research (Data) Management" -msgstr "" - msgid "Phase 3: Data Protection" msgstr "" @@ -16432,8 +16432,8 @@ msgstr "" #: ../../app/controllers/org_admin/sections_controller.rb:98 #: ../../app/controllers/org_admin/templates_controller.rb:194 #: ../../app/controllers/orgs_controller.rb:56 -#: ../../app/controllers/plans_controller.rb:233 -#: ../../app/controllers/plans_controller.rb:236 +#: ../../app/controllers/plans_controller.rb:232 +#: ../../app/controllers/plans_controller.rb:235 #: ../../app/controllers/registrations_controller.rb:229 #: ../../app/controllers/registrations_controller.rb:233 #: ../../app/controllers/registrations_controller.rb:255 @@ -16450,9 +16450,9 @@ msgstr "" #: ../../app/controllers/org_admin/sections_controller.rb:100 #: ../../app/controllers/org_admin/templates_controller.rb:199 #: ../../app/controllers/orgs_controller.rb:58 -#: ../../app/controllers/plans_controller.rb:242 -#: ../../app/controllers/plans_controller.rb:245 -#: ../../app/controllers/plans_controller.rb:250 +#: ../../app/controllers/plans_controller.rb:241 +#: ../../app/controllers/plans_controller.rb:244 +#: ../../app/controllers/plans_controller.rb:249 #: ../../app/controllers/registrations_controller.rb:236 #: ../../app/controllers/registrations_controller.rb:262 msgid "save" @@ -16482,7 +16482,7 @@ msgstr "" #: ../../app/controllers/org_admin/phases_controller.rb:157 #: ../../app/controllers/org_admin/questions_controller.rb:128 #: ../../app/controllers/org_admin/sections_controller.rb:127 -#: ../../app/controllers/plans_controller.rb:289 +#: ../../app/controllers/plans_controller.rb:288 #: ../../app/controllers/super_admin/notifications_controller.rb:63 #: ../../app/controllers/super_admin/themes_controller.rb:50 msgid "deleted" @@ -16494,7 +16494,7 @@ msgstr "" #: ../../app/controllers/org_admin/phases_controller.rb:159 #: ../../app/controllers/org_admin/questions_controller.rb:130 #: ../../app/controllers/org_admin/sections_controller.rb:129 -#: ../../app/controllers/plans_controller.rb:294 +#: ../../app/controllers/plans_controller.rb:293 #: ../../app/controllers/super_admin/notifications_controller.rb:66 #: ../../app/controllers/super_admin/themes_controller.rb:53 msgid "delete" @@ -16553,7 +16553,7 @@ msgstr "" #: ../../app/controllers/org_admin/phases_controller.rb:130 #: ../../app/controllers/org_admin/questions_controller.rb:98 #: ../../app/controllers/org_admin/users_controller.rb:33 -#: ../../app/controllers/plans_controller.rb:351 +#: ../../app/controllers/plans_controller.rb:350 #: ../../app/controllers/super_admin/notifications_controller.rb:51 #: ../../app/controllers/super_admin/themes_controller.rb:39 #: ../../app/controllers/super_admin/users_controller.rb:33 @@ -16564,7 +16564,7 @@ msgstr "" #: ../../app/controllers/org_admin/phases_controller.rb:132 #: ../../app/controllers/org_admin/questions_controller.rb:100 #: ../../app/controllers/org_admin/users_controller.rb:35 -#: ../../app/controllers/plans_controller.rb:354 +#: ../../app/controllers/plans_controller.rb:353 #: ../../app/controllers/super_admin/notifications_controller.rb:53 #: ../../app/controllers/super_admin/themes_controller.rb:41 #: ../../app/controllers/super_admin/users_controller.rb:35 @@ -16632,6 +16632,7 @@ msgstr "" #: ../../app/views/paginable/plans/_org_admin_other_user.html.erb:10 #: ../../app/views/paginable/plans/_privately_visible.html.erb:10 #: ../../app/views/plans/_edit_details.html.erb:22 +#: ../../app/views/plans/_edit_details.html.erb:31 msgid "Visibility" msgstr "" @@ -16644,7 +16645,7 @@ msgid "%{template_type} was successfully copied." msgstr "" #: ../../app/controllers/org_admin/template_copies_controller.rb:18 -#: ../../app/controllers/plans_controller.rb:333 +#: ../../app/controllers/plans_controller.rb:332 msgid "copy" msgstr "" @@ -16709,6 +16710,12 @@ msgstr "" msgid "Template created using the %{application_name} service. Last modified %{date}" msgstr "" +#: ../../app/controllers/org_admin/templates_controller.rb:346 +#: ../../app/controllers/plan_exports_controller.rb:85 +#: ../../app/controllers/public_pages_controller.rb:61 +msgid "[page] of [topage]" +msgstr "" + #: ../../app/controllers/org_admin/templates_controller.rb:355 #: ../../app/controllers/public_pages_controller.rb:70 msgid "Unable to download the DMP Template at this time." @@ -16735,10 +16742,6 @@ msgstr "" msgid "Created using %{application_name}. Last modified %{date}" msgstr "" -#: ../../app/controllers/plan_exports_controller.rb:85 -msgid "[page] of [topage]" -msgstr "" - #: ../../app/controllers/plans_controller.rb:42 msgid "This is a" msgstr "" @@ -16772,33 +16775,33 @@ msgstr "" msgid "template with customisations by the" msgstr "" -#: ../../app/controllers/plans_controller.rb:331 +#: ../../app/controllers/plans_controller.rb:330 msgid "copied" msgstr "" -#: ../../app/controllers/plans_controller.rb:359 +#: ../../app/controllers/plans_controller.rb:358 msgid "" "Unable to change the plan's status since it is needed at least %{percentage} p" "ercentage responded" msgstr "" -#: ../../app/controllers/plans_controller.rb:367 +#: ../../app/controllers/plans_controller.rb:366 msgid "Unable to find plan id %{plan_id}" msgstr "" -#: ../../app/controllers/plans_controller.rb:381 +#: ../../app/controllers/plans_controller.rb:380 msgid "Your project is now a test." msgstr "" -#: ../../app/controllers/plans_controller.rb:381 +#: ../../app/controllers/plans_controller.rb:380 msgid "Your project is no longer a test." msgstr "" -#: ../../app/controllers/plans_controller.rb:385 +#: ../../app/controllers/plans_controller.rb:384 msgid "Unable to change the plan's test status" msgstr "" -#: ../../app/controllers/plans_controller.rb:399 +#: ../../app/controllers/plans_controller.rb:398 msgid "There is no plan associated with id %{id}" msgstr "" @@ -17220,9 +17223,7 @@ msgid "Private: restricted to me and people I invite." msgstr "" #: ../../app/helpers/plans_helper.rb:41 -#: ../../app/views/branded/plans/new.html.erb:38 -#: ../../app/views/plans/new.html.erb:38 -msgid "mock project for testing, practice, or educational purposes" +msgid "Test: mock project for testing, practice, or educational purposes." msgstr "" #: ../../app/helpers/plans_helper.rb:43 ../../app/helpers/plans_helper.rb:58 @@ -17239,7 +17240,7 @@ msgid "Plan ID" msgstr "" #: ../../app/helpers/settings_template_helper.rb:10 -#: ../../app/views/plans/_edit_details.html.erb:43 +#: ../../app/views/plans/_edit_details.html.erb:59 msgid "Grant number" msgstr "" @@ -17259,7 +17260,7 @@ msgstr "" #: ../../app/views/orgs/_profile_form.html.erb:98 #: ../../app/views/paginable/templates/_customisable.html.erb:7 #: ../../app/views/paginable/templates/_organisational.html.erb:12 -#: ../../app/views/plans/_edit_details.html.erb:31 +#: ../../app/views/plans/_edit_details.html.erb:47 #: ../../app/views/plans/_show_details.html.erb:4 msgid "Funder" msgstr "" @@ -17717,8 +17718,8 @@ msgstr "" #: ../../app/views/org_admin/users/edit.html.erb:54 #: ../../app/views/orgs/_feedback_form.html.erb:34 #: ../../app/views/orgs/_profile_form.html.erb:129 -#: ../../app/views/plans/_edit_details.html.erb:166 -#: ../../app/views/plans/_edit_details.html.erb:189 +#: ../../app/views/plans/_edit_details.html.erb:182 +#: ../../app/views/plans/_edit_details.html.erb:205 #: ../../app/views/questions/_preview_question.html.erb:111 #: ../../app/views/super_admin/notifications/_form.html.erb:58 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -17857,6 +17858,11 @@ msgstr "" msgid "What research project are you planning?" msgstr "" +#: ../../app/views/branded/plans/new.html.erb:38 +#: ../../app/views/plans/new.html.erb:38 +msgid "mock project for testing, practice, or educational purposes" +msgstr "" + #: ../../app/views/branded/plans/new.html.erb:47 #: ../../app/views/plans/new.html.erb:47 msgid "Select the primary research organisation" @@ -17923,7 +17929,7 @@ msgstr "" #: ../../app/views/org_admin/departments/new.html.erb:24 #: ../../app/views/org_admin/questions/_form.html.erb:93 #: ../../app/views/org_admin/questions/_form.html.erb:95 -#: ../../app/views/plans/_edit_details.html.erb:202 +#: ../../app/views/plans/_edit_details.html.erb:218 #: ../../app/views/plans/new.html.erb:122 #: ../../app/views/super_admin/notifications/_form.html.erb:65 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -17941,8 +17947,8 @@ msgstr "" #: ../../app/views/paginable/guidance_groups/_index.html.erb:6 #: ../../app/views/paginable/themes/_index.html.erb:4 #: ../../app/views/paginable/users/_index.html.erb:9 -#: ../../app/views/plans/_edit_details.html.erb:80 -#: ../../app/views/plans/_edit_details.html.erb:134 +#: ../../app/views/plans/_edit_details.html.erb:96 +#: ../../app/views/plans/_edit_details.html.erb:150 #: ../../app/views/plans/_show_details.html.erb:16 #: ../../app/views/plans/_show_details.html.erb:26 msgid "Name" @@ -17954,8 +17960,8 @@ msgstr "" #: ../../app/views/devise/registrations/_personal_details.html.erb:10 #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/users/_index.html.erb:10 -#: ../../app/views/plans/_edit_details.html.erb:102 -#: ../../app/views/plans/_edit_details.html.erb:145 +#: ../../app/views/plans/_edit_details.html.erb:118 +#: ../../app/views/plans/_edit_details.html.erb:161 #: ../../app/views/plans/_share_form.html.erb:99 #: ../../app/views/plans/_show_details.html.erb:20 #: ../../app/views/plans/_show_details.html.erb:30 @@ -20034,74 +20040,74 @@ msgstr "" msgid "A pertinent ID as determined by the funder and/or organisation." msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:55 +#: ../../app/views/plans/_edit_details.html.erb:71 msgid "Project abstract" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:67 +#: ../../app/views/plans/_edit_details.html.erb:83 #: ../../app/views/plans/_show_details.html.erb:10 msgid "ID" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:77 +#: ../../app/views/plans/_edit_details.html.erb:93 #: ../../app/views/plans/_show_details.html.erb:14 msgid "Principal Investigator" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:91 +#: ../../app/views/plans/_edit_details.html.erb:107 #: ../../app/views/plans/_show_details.html.erb:18 msgid "ORCID iD" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:113 -#: ../../app/views/plans/_edit_details.html.erb:156 +#: ../../app/views/plans/_edit_details.html.erb:129 +#: ../../app/views/plans/_edit_details.html.erb:172 #: ../../app/views/plans/_show_details.html.erb:28 msgid "Phone" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:124 +#: ../../app/views/plans/_edit_details.html.erb:140 msgid "Data contact person" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:129 +#: ../../app/views/plans/_edit_details.html.erb:145 msgid "Same as Principal Investigator" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:169 -#: ../../app/views/plans/_edit_details.html.erb:205 +#: ../../app/views/plans/_edit_details.html.erb:185 +#: ../../app/views/plans/_edit_details.html.erb:221 msgid "Select Guidance" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:172 +#: ../../app/views/plans/_edit_details.html.erb:188 msgid "" "To help you write your plan, %{application_name} can show you guidance from a " "variety of organisations." msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:176 +#: ../../app/views/plans/_edit_details.html.erb:192 msgid "Select up to 6 organisations to see their guidance." msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:185 +#: ../../app/views/plans/_edit_details.html.erb:201 msgid "Find guidance from additional organisations below" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:186 +#: ../../app/views/plans/_edit_details.html.erb:202 msgid "See the full list" msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:192 +#: ../../app/views/plans/_edit_details.html.erb:208 msgid "There is no additional guidance for this template." msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:207 +#: ../../app/views/plans/_edit_details.html.erb:223 msgid "" "To help you write your plan, %{application_name} can show you guidance from a " "variety of organisations. Please choose up to 6 organisations of the following" " organisations who offer guidance relevant to your plan." msgstr "" -#: ../../app/views/plans/_edit_details.html.erb:210 +#: ../../app/views/plans/_edit_details.html.erb:226 msgid "Don't forget to save your changes after making your selections." msgstr "" diff --git a/config/locale/fr_CA/LC_MESSAGES/app.mo b/config/locale/fr_CA/LC_MESSAGES/app.mo index 5a324a1c4f..46ee887e51 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 9aafcd596e..b357078b02 100644 --- a/config/locale/fr_CA/app.po +++ b/config/locale/fr_CA/app.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: roadmap 1.0\n" "Report-Msgid-Bugs-To: contact@translation.io\n" -"POT-Creation-Date: 2021-03-04 14:56-0700\n" -"PO-Revision-Date: 2021-03-04 22:56+0100\n" +"POT-Creation-Date: 2021-03-08 10:08-0700\n" +"PO-Revision-Date: 2021-03-08 18:09+0100\n" "Last-Translator: FULL NAME \n" "Language-Team: French\n" "Language: fr_CA\n" @@ -727,6 +727,24 @@ msgstr "" "n PGD est un document vivant qui évolue tout au long d’un projet " "de recherche.

" +msgid "Software/Technology Management Plan" +msgstr "Plan de gestion de logiciel ou de technologie" + +msgid "Phase 1: Data Preparation" +msgstr "Phase 1 : Préparation des données" + +msgid "University of Alberta Data Management Questions" +msgstr "" + +msgid "MICYRN Data Management Plan Initial Phase" +msgstr "" + +msgid "Reproducible findings through deposited data" +msgstr "" + +msgid "Phase 1: Data Management Plan for Grant Application" +msgstr "Phase 1: Plan de gestion de données soutenant une demande de subvention" + msgid "University of British Columbia Data Management Questions" msgstr "" @@ -784,23 +802,11 @@ msgstr "" msgid "Initial GWF DMP" msgstr "" -msgid "Software/Technology Management Plan" -msgstr "Plan de gestion de logiciel ou de technologie" - -msgid "Phase 1: Data Preparation" -msgstr "Phase 1 : Préparation des données" - -msgid "University of Alberta Data Management Questions" -msgstr "" - -msgid "MICYRN Data Management Plan Initial Phase" -msgstr "" - -msgid "Reproducible findings through deposited data" -msgstr "" +msgid "Data Management Plan" +msgstr "Plan de gestion des données" -msgid "Phase 1: Data Management Plan for Grant Application" -msgstr "Phase 1: Plan de gestion de données soutenant une demande de subvention" +msgid "Phase 2: Active Research (Data) Management" +msgstr "Phase 2 : Gestion active de recherche (données)" msgid "Phase 2: Data Management Plan for Project Development" msgstr "Phase 2 : Plan de gestion de données soutenant l’élaboration du projet" @@ -814,12 +820,6 @@ msgstr "" msgid "OMAFRA-UG DMP Questions" msgstr "" -msgid "Data Management Plan" -msgstr "Plan de gestion des données" - -msgid "Phase 2: Active Research (Data) Management" -msgstr "Phase 2 : Gestion active de recherche (données)" - msgid "Phase 3: Data Protection" msgstr "Phase 3 : Protection des données" @@ -24525,8 +24525,8 @@ msgstr "créer" #: ../../app/controllers/org_admin/sections_controller.rb:98 #: ../../app/controllers/org_admin/templates_controller.rb:194 #: ../../app/controllers/orgs_controller.rb:56 -#: ../../app/controllers/plans_controller.rb:233 -#: ../../app/controllers/plans_controller.rb:236 +#: ../../app/controllers/plans_controller.rb:232 +#: ../../app/controllers/plans_controller.rb:235 #: ../../app/controllers/registrations_controller.rb:229 #: ../../app/controllers/registrations_controller.rb:233 #: ../../app/controllers/registrations_controller.rb:255 @@ -24543,9 +24543,9 @@ msgstr "enregistré" #: ../../app/controllers/org_admin/sections_controller.rb:100 #: ../../app/controllers/org_admin/templates_controller.rb:199 #: ../../app/controllers/orgs_controller.rb:58 -#: ../../app/controllers/plans_controller.rb:242 -#: ../../app/controllers/plans_controller.rb:245 -#: ../../app/controllers/plans_controller.rb:250 +#: ../../app/controllers/plans_controller.rb:241 +#: ../../app/controllers/plans_controller.rb:244 +#: ../../app/controllers/plans_controller.rb:249 #: ../../app/controllers/registrations_controller.rb:236 #: ../../app/controllers/registrations_controller.rb:262 msgid "save" @@ -24579,7 +24579,7 @@ msgstr "annuler la publication" #: ../../app/controllers/org_admin/phases_controller.rb:157 #: ../../app/controllers/org_admin/questions_controller.rb:128 #: ../../app/controllers/org_admin/sections_controller.rb:127 -#: ../../app/controllers/plans_controller.rb:289 +#: ../../app/controllers/plans_controller.rb:288 #: ../../app/controllers/super_admin/notifications_controller.rb:63 #: ../../app/controllers/super_admin/themes_controller.rb:50 msgid "deleted" @@ -24591,7 +24591,7 @@ msgstr "supprimé" #: ../../app/controllers/org_admin/phases_controller.rb:159 #: ../../app/controllers/org_admin/questions_controller.rb:130 #: ../../app/controllers/org_admin/sections_controller.rb:129 -#: ../../app/controllers/plans_controller.rb:294 +#: ../../app/controllers/plans_controller.rb:293 #: ../../app/controllers/super_admin/notifications_controller.rb:66 #: ../../app/controllers/super_admin/themes_controller.rb:53 msgid "delete" @@ -24656,7 +24656,7 @@ msgstr "Il est impossible de créer une nouvelle version de ce modèle." #: ../../app/controllers/org_admin/phases_controller.rb:130 #: ../../app/controllers/org_admin/questions_controller.rb:98 #: ../../app/controllers/org_admin/users_controller.rb:33 -#: ../../app/controllers/plans_controller.rb:351 +#: ../../app/controllers/plans_controller.rb:350 #: ../../app/controllers/super_admin/notifications_controller.rb:51 #: ../../app/controllers/super_admin/themes_controller.rb:39 #: ../../app/controllers/super_admin/users_controller.rb:33 @@ -24667,7 +24667,7 @@ msgstr "mis à jour" #: ../../app/controllers/org_admin/phases_controller.rb:132 #: ../../app/controllers/org_admin/questions_controller.rb:100 #: ../../app/controllers/org_admin/users_controller.rb:35 -#: ../../app/controllers/plans_controller.rb:354 +#: ../../app/controllers/plans_controller.rb:353 #: ../../app/controllers/super_admin/notifications_controller.rb:53 #: ../../app/controllers/super_admin/themes_controller.rb:41 #: ../../app/controllers/super_admin/users_controller.rb:35 @@ -24737,6 +24737,7 @@ msgstr "Mis à jour" #: ../../app/views/paginable/plans/_org_admin_other_user.html.erb:10 #: ../../app/views/paginable/plans/_privately_visible.html.erb:10 #: ../../app/views/plans/_edit_details.html.erb:22 +#: ../../app/views/plans/_edit_details.html.erb:31 msgid "Visibility" msgstr "Visibilité" @@ -24751,7 +24752,7 @@ msgid "%{template_type} was successfully copied." msgstr "%{template_type} copié avec succès." #: ../../app/controllers/org_admin/template_copies_controller.rb:18 -#: ../../app/controllers/plans_controller.rb:333 +#: ../../app/controllers/plans_controller.rb:332 msgid "copy" msgstr "copier" @@ -24822,6 +24823,12 @@ msgstr "" "Modèle créé à l’aide du service %{application_name}. Dernière modification : %" "{date}" +#: ../../app/controllers/org_admin/templates_controller.rb:346 +#: ../../app/controllers/plan_exports_controller.rb:85 +#: ../../app/controllers/public_pages_controller.rb:61 +msgid "[page] of [topage]" +msgstr "[page] sur [topage]" + #: ../../app/controllers/org_admin/templates_controller.rb:355 #: ../../app/controllers/public_pages_controller.rb:70 msgid "Unable to download the DMP Template at this time." @@ -24848,10 +24855,6 @@ msgstr "Veuillez choisir un organisme" msgid "Created using %{application_name}. Last modified %{date}" msgstr "Créé(e) avec %{application_name}. Dernière modification : %{date}" -#: ../../app/controllers/plan_exports_controller.rb:85 -msgid "[page] of [topage]" -msgstr "[page] sur [topage]" - #: ../../app/controllers/plans_controller.rb:42 msgid "This is a" msgstr "Il s’agit d’un(e)" @@ -24885,11 +24888,11 @@ msgstr "Ce plan est fondé sur " msgid "template with customisations by the" msgstr "modèle avec des personnalisations par le" -#: ../../app/controllers/plans_controller.rb:331 +#: ../../app/controllers/plans_controller.rb:330 msgid "copied" msgstr "copié" -#: ../../app/controllers/plans_controller.rb:359 +#: ../../app/controllers/plans_controller.rb:358 msgid "" "Unable to change the plan's status since it is needed at least %{percentage} p" "ercentage responded" @@ -24897,23 +24900,23 @@ msgstr "" "Il est impossible de modifier l’état du plan, car il est nécessaire d’obtenir " "un taux de réponse d’au moins %{percentage}" -#: ../../app/controllers/plans_controller.rb:367 +#: ../../app/controllers/plans_controller.rb:366 msgid "Unable to find plan id %{plan_id}" msgstr "Il est impossible de trouver l’ID du plan %{plan_id}" -#: ../../app/controllers/plans_controller.rb:381 +#: ../../app/controllers/plans_controller.rb:380 msgid "Your project is now a test." msgstr "Votre projet est maintenant à l’état d’essai." -#: ../../app/controllers/plans_controller.rb:381 +#: ../../app/controllers/plans_controller.rb:380 msgid "Your project is no longer a test." msgstr "Votre projet n’est plus à l’état d’essai." -#: ../../app/controllers/plans_controller.rb:385 +#: ../../app/controllers/plans_controller.rb:384 msgid "Unable to change the plan's test status" msgstr "Il est impossible de modifier l’état d’essai du plan" -#: ../../app/controllers/plans_controller.rb:399 +#: ../../app/controllers/plans_controller.rb:398 msgid "There is no plan associated with id %{id}" msgstr "Aucun plan n’est associé à l’identifiant %{id}" @@ -25378,10 +25381,8 @@ msgid "Private: restricted to me and people I invite." msgstr "Privé : usage réservé à moi et aux personnes que j’invite." #: ../../app/helpers/plans_helper.rb:41 -#: ../../app/views/branded/plans/new.html.erb:38 -#: ../../app/views/plans/new.html.erb:38 -msgid "mock project for testing, practice, or educational purposes" -msgstr "projet simulé aux fins d’essai, d’exercice ou d’enseignement" +msgid "Test: mock project for testing, practice, or educational purposes." +msgstr "" #: ../../app/helpers/plans_helper.rb:43 ../../app/helpers/plans_helper.rb:58 #: ../../app/views/layouts/application.html.erb:105 @@ -25397,7 +25398,7 @@ msgid "Plan ID" msgstr "ID du plan" #: ../../app/helpers/settings_template_helper.rb:10 -#: ../../app/views/plans/_edit_details.html.erb:43 +#: ../../app/views/plans/_edit_details.html.erb:59 msgid "Grant number" msgstr "Numéro de subvention" @@ -25417,7 +25418,7 @@ msgstr "Description du plan" #: ../../app/views/orgs/_profile_form.html.erb:98 #: ../../app/views/paginable/templates/_customisable.html.erb:7 #: ../../app/views/paginable/templates/_organisational.html.erb:12 -#: ../../app/views/plans/_edit_details.html.erb:31 +#: ../../app/views/plans/_edit_details.html.erb:47 #: ../../app/views/plans/_show_details.html.erb:4 msgid "Funder" msgstr "Organisme subventionnaire" @@ -25898,8 +25899,8 @@ msgstr "Veuillez patienter. Le chargement des normes est en cours." #: ../../app/views/org_admin/users/edit.html.erb:54 #: ../../app/views/orgs/_feedback_form.html.erb:34 #: ../../app/views/orgs/_profile_form.html.erb:129 -#: ../../app/views/plans/_edit_details.html.erb:166 -#: ../../app/views/plans/_edit_details.html.erb:189 +#: ../../app/views/plans/_edit_details.html.erb:182 +#: ../../app/views/plans/_edit_details.html.erb:205 #: ../../app/views/questions/_preview_question.html.erb:111 #: ../../app/views/super_admin/notifications/_form.html.erb:58 #: ../../app/views/super_admin/themes/_form.html.erb:13 @@ -26046,6 +26047,11 @@ msgstr "" msgid "What research project are you planning?" msgstr "Quel projet de recherche planifiez-vous?" +#: ../../app/views/branded/plans/new.html.erb:38 +#: ../../app/views/plans/new.html.erb:38 +msgid "mock project for testing, practice, or educational purposes" +msgstr "projet simulé aux fins d’essai, d’exercice ou d’enseignement" + #: ../../app/views/branded/plans/new.html.erb:47 #: ../../app/views/plans/new.html.erb:47 msgid "Select the primary research organisation" @@ -26118,7 +26124,7 @@ msgstr "" #: ../../app/views/org_admin/departments/new.html.erb:24 #: ../../app/views/org_admin/questions/_form.html.erb:93 #: ../../app/views/org_admin/questions/_form.html.erb:95 -#: ../../app/views/plans/_edit_details.html.erb:202 +#: ../../app/views/plans/_edit_details.html.erb:218 #: ../../app/views/plans/new.html.erb:122 #: ../../app/views/super_admin/notifications/_form.html.erb:65 #: ../../app/views/super_admin/themes/_form.html.erb:19 @@ -26136,8 +26142,8 @@ msgstr "Annuler" #: ../../app/views/paginable/guidance_groups/_index.html.erb:6 #: ../../app/views/paginable/themes/_index.html.erb:4 #: ../../app/views/paginable/users/_index.html.erb:9 -#: ../../app/views/plans/_edit_details.html.erb:80 -#: ../../app/views/plans/_edit_details.html.erb:134 +#: ../../app/views/plans/_edit_details.html.erb:96 +#: ../../app/views/plans/_edit_details.html.erb:150 #: ../../app/views/plans/_show_details.html.erb:16 #: ../../app/views/plans/_show_details.html.erb:26 msgid "Name" @@ -26149,8 +26155,8 @@ msgstr "Nom" #: ../../app/views/devise/registrations/_personal_details.html.erb:10 #: ../../app/views/org_admin/users/edit.html.erb:14 #: ../../app/views/paginable/users/_index.html.erb:10 -#: ../../app/views/plans/_edit_details.html.erb:102 -#: ../../app/views/plans/_edit_details.html.erb:145 +#: ../../app/views/plans/_edit_details.html.erb:118 +#: ../../app/views/plans/_edit_details.html.erb:161 #: ../../app/views/plans/_share_form.html.erb:99 #: ../../app/views/plans/_show_details.html.erb:20 #: ../../app/views/plans/_show_details.html.erb:30 @@ -28427,45 +28433,45 @@ msgstr "" msgid "A pertinent ID as determined by the funder and/or organisation." msgstr "Un identifiant pertinent déterminé par le bailleur de fonds ou l’organisme." -#: ../../app/views/plans/_edit_details.html.erb:55 +#: ../../app/views/plans/_edit_details.html.erb:71 msgid "Project abstract" msgstr "Résumé du projet" -#: ../../app/views/plans/_edit_details.html.erb:67 +#: ../../app/views/plans/_edit_details.html.erb:83 #: ../../app/views/plans/_show_details.html.erb:10 msgid "ID" msgstr "ID" -#: ../../app/views/plans/_edit_details.html.erb:77 +#: ../../app/views/plans/_edit_details.html.erb:93 #: ../../app/views/plans/_show_details.html.erb:14 msgid "Principal Investigator" msgstr "Chercheur principal" -#: ../../app/views/plans/_edit_details.html.erb:91 +#: ../../app/views/plans/_edit_details.html.erb:107 #: ../../app/views/plans/_show_details.html.erb:18 msgid "ORCID iD" msgstr "ORCID iD" -#: ../../app/views/plans/_edit_details.html.erb:113 -#: ../../app/views/plans/_edit_details.html.erb:156 +#: ../../app/views/plans/_edit_details.html.erb:129 +#: ../../app/views/plans/_edit_details.html.erb:172 #: ../../app/views/plans/_show_details.html.erb:28 msgid "Phone" msgstr "Téléphone" -#: ../../app/views/plans/_edit_details.html.erb:124 +#: ../../app/views/plans/_edit_details.html.erb:140 msgid "Data contact person" msgstr "Personne-ressource pour les données" -#: ../../app/views/plans/_edit_details.html.erb:129 +#: ../../app/views/plans/_edit_details.html.erb:145 msgid "Same as Principal Investigator" msgstr "Identique au chercheur principal" -#: ../../app/views/plans/_edit_details.html.erb:169 -#: ../../app/views/plans/_edit_details.html.erb:205 +#: ../../app/views/plans/_edit_details.html.erb:185 +#: ../../app/views/plans/_edit_details.html.erb:221 msgid "Select Guidance" msgstr "Sélectionner les directives" -#: ../../app/views/plans/_edit_details.html.erb:172 +#: ../../app/views/plans/_edit_details.html.erb:188 msgid "" "To help you write your plan, %{application_name} can show you guidance from a " "variety of organisations." @@ -28473,23 +28479,23 @@ msgstr "" "Pour vous aider à rédiger votre plan, %{application_name} peut vous montrer le" "s directives de divers organismes." -#: ../../app/views/plans/_edit_details.html.erb:176 +#: ../../app/views/plans/_edit_details.html.erb:192 msgid "Select up to 6 organisations to see their guidance." msgstr "Sélectionnez jusqu’à 6 organismes pour afficher leurs directives." -#: ../../app/views/plans/_edit_details.html.erb:185 +#: ../../app/views/plans/_edit_details.html.erb:201 msgid "Find guidance from additional organisations below" msgstr "Trouver des directives de la part d’autres organismes ci-dessous" -#: ../../app/views/plans/_edit_details.html.erb:186 +#: ../../app/views/plans/_edit_details.html.erb:202 msgid "See the full list" msgstr "Voir la liste complète" -#: ../../app/views/plans/_edit_details.html.erb:192 +#: ../../app/views/plans/_edit_details.html.erb:208 msgid "There is no additional guidance for this template." msgstr "Il n’y a pas de directives supplémentaires pour ce modèle." -#: ../../app/views/plans/_edit_details.html.erb:207 +#: ../../app/views/plans/_edit_details.html.erb:223 msgid "" "To help you write your plan, %{application_name} can show you guidance from a " "variety of organisations. Please choose up to 6 organisations of the following" @@ -28499,7 +28505,7 @@ msgstr "" "es directives de divers organismes. Veuillez choisir jusqu'à 6 organismes parm" "i les suivants, qui offrent des directives pertinentes pour votre plan." -#: ../../app/views/plans/_edit_details.html.erb:210 +#: ../../app/views/plans/_edit_details.html.erb:226 msgid "Don't forget to save your changes after making your selections." msgstr "" "N’oubliez pas d’enregistrer vos modifications après avoir effectué vos sélecti" diff --git a/config/locales/.translation_io b/config/locales/.translation_io index d5c8825cb2..e1e41965f6 100644 --- a/config/locales/.translation_io +++ b/config/locales/.translation_io @@ -1,2 +1,2 @@ --- -timestamp: 1614894970 +timestamp: 1615223328