Translation for consent

pull/6341/head
Oliver Günther 7 years ago
parent 3571688ed6
commit d19f1c8b98
No known key found for this signature in database
GPG Key ID: 88872239EB414F99
  1. 12
      app/views/account/consent.html.erb
  2. 5
      config/locales/en.yml

@ -29,11 +29,11 @@ See doc/COPYRIGHT.rdoc for more details.
<% disable_accessibility_css! %>
<% breadcrumb_paths("Consent") %>
<% html_title "Consent" %>
<% breadcrumb_paths(t('consent.title')) %>
<% html_title t('consent.title') %>
<%= call_hook :view_account_consent_top %>
<div id="login-form" class="form -bordered">
<h1>Consent</h1>
<h1><%= t('consent.title') %></h1>
<%= format_text consent_info %>
@ -41,14 +41,16 @@ See doc/COPYRIGHT.rdoc for more details.
<section class="form--section">
<label class="form--label-with-check-box">
<div class="form--check-box-container">
<input type="checkbox" class="form--check-box" required="required">
<input type="checkbox" name="consent_check" class="form--check-box" required="required">
</div>
<%= format_text consent_label %>
</label>
</section>
<section class="form--section">
<input type="submit" class="button -highlight" value="OK"/>
<button type="submit" class="button -highlight">
<span class="button--text"><%= t(:button_continue) %></span>
</button>
</section>
<% end %>
</div>

@ -82,6 +82,10 @@ en:
show:
no_results_title_text: There are currently no posts for the board.
consent:
failure_message: Consent failed, cannot proceed.
title: Consent
custom_fields:
text_add_new_custom_field: >
To add new custom fields to a project you first need to create them before
@ -664,6 +668,7 @@ en:
button_copy: "Copy"
button_copy_and_follow: "Copy and follow"
button_create: "Create"
button_continue: "Continue"
button_create_and_continue: "Create and continue"
button_delete: "Delete"
button_delete_watcher: "Delete watcher %{name}"

Loading…
Cancel
Save