diff --git a/app/views/phases/_show_phase.html.erb b/app/views/phases/_show_phase.html.erb index f110902..0fb55d0 100644 --- a/app/views/phases/_show_phase.html.erb +++ b/app/views/phases/_show_phase.html.erb @@ -1,19 +1,19 @@
Here you set the title that users will see. If you intend to have multiple phases for you DMP, this should be clear in the title and description.
')%>| <%= t('org_admin.templates.title_label') %> | +<%= _('Title') %> | <%= @phase.title %> |
| <%= t('org_admin.templates.phase_order_label') %> | +<%= _('Order of display') %> | <%= @phase.number %> |
| <%= t('org_admin.templates.desc_label') %> | +<%= _('Description') %> | <%= raw @phase.description %> |
| <%= t("org_admin.templates.title_label") %> | +<%= _('Title') %> | <%= f.text_field :title, as: :string, - class: "text_field has-tooltip", "data-toggle" => "tooltip", "title" => t("org_admin.templates.phase_title_help_text") %> | + class: "text_field has-tooltip", "data-toggle" => "tooltip", "title" => _('Enter a title for the phase e.g. intial DMP, full DMP... This is what users will see in the tabs when completing a plan. If you only have one phase, call it something generic e.g. Glasgow DMP') %>|
| <%= t("org_admin.templates.phase_order_label") %> | -<%= f.number_field :number, in: 1..5, class: "number_field has-tooltip", "data-toggle" => "tooltip", title: t("org_admin.templates.phase_number_help_text") %> | +<%= _('Order of display') %> | +<%= f.number_field :number, in: 1..5, class: "number_field has-tooltip", "data-toggle" => "tooltip", title: _('This allows you to order the phases of your template.') %> |
| <%= t("org_admin.templates.desc_label") %> | +<%= _('Description') %> |
<%= text_area_tag("phase-desc","" , class: "tinymce") %>
- <%= link_to( image_tag("help_button.png"), "#", class: "phase_desc_popover", rel: "popover", "data-html" => "true", "data-content" => t("org_admin.templates.phase_desc_help_text_html"))%>
+ <%= link_to( image_tag("help_button.png"), "#", class: "phase_desc_popover", rel: "popover", "data-html" => "true", "data-content" => _("Enter a basic description. This will be presented to users on the 'Admin Plan' tab, above the summary of the sections and questions which they will be asked to answer."))%>
|
@@ -62,8 +62,8 @@