diff options
author | Go MAEDA <maeda@farend.jp> | 2019-04-21 14:52:33 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2019-04-21 14:52:33 +0000 |
commit | 4eecc027b1c1fbd2007a39b59ee37b86f3022a36 (patch) | |
tree | 412cb6ba299491c0ab8f855fa352723cfc92ffaa /app/views/settings | |
parent | abb8274a9853c9ff17c53fa2b7733ef3f0203841 (diff) | |
download | redmine-4eecc027b1c1fbd2007a39b59ee37b86f3022a36.tar.gz redmine-4eecc027b1c1fbd2007a39b59ee37b86f3022a36.zip |
Remove hard-coded strings (#30838).
Patch by Go MAEDA.
git-svn-id: http://svn.redmine.org/redmine/trunk@18072 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/settings')
-rw-r--r-- | app/views/settings/_mail_handler.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/settings/_mail_handler.html.erb b/app/views/settings/_mail_handler.html.erb index d14593da1..910270033 100644 --- a/app/views/settings/_mail_handler.html.erb +++ b/app/views/settings/_mail_handler.html.erb @@ -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"> |