Browse Source

Remove hard-coded strings (#30838).

Patch by Go MAEDA.


git-svn-id: http://svn.redmine.org/redmine/trunk@18072 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/4.1.0
Go MAEDA 5 years ago
parent
commit
4eecc027b1
2 changed files with 3 additions and 1 deletions
  1. 1
    1
      app/views/settings/_mail_handler.html.erb
  2. 2
    0
      config/locales/en.yml

+ 1
- 1
app/views/settings/_mail_handler.html.erb View File

@@ -18,7 +18,7 @@
<em class="info"><%= l(:text_comma_separated) %>
<%= l(:label_example) %>: smime.p7s, *.vcf</em>
</p>
<p><%= setting_select :mail_handler_preferred_body_part, [['Text', 'plain'], ['HTML', 'html']] %></p>
<p><%= setting_select :mail_handler_preferred_body_part, [[l(:label_preferred_body_part_text), 'plain'], [l(:label_preferred_body_part_html), 'html']] %></p>
</div>

<div class="box tabular settings">

+ 2
- 0
config/locales/en.yml View File

@@ -1045,6 +1045,8 @@ en:
label_inherited_from_group: "Inherited from group %{name}"
label_trackers_description: Trackers description
label_open_trackers_description: View all trackers description
label_preferred_body_part_text: Text
label_preferred_body_part_html: HTML (experimental)

button_login: Login
button_submit: Submit

Loading…
Cancel
Save