summaryrefslogtreecommitdiff
path: root/app/views/admin/services/_form.html.haml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/services/_form.html.haml')
-rw-r--r--app/views/admin/services/_form.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/admin/services/_form.html.haml b/app/views/admin/services/_form.html.haml
index 1798b44bbb7..c6358824abb 100644
--- a/app/views/admin/services/_form.html.haml
+++ b/app/views/admin/services/_form.html.haml
@@ -1,10 +1,10 @@
%h3.page-title
= @service.title
-%p #{@service.description} template
+%p= _('%{service_description} template') % { service_description: @service.description }
= form_for :service, url: admin_application_settings_service_path, method: :put, html: { class: 'fieldset-form' } do |form|
= render 'shared/service_settings', form: form, subject: @service
.footer-block.row-content-block
- = form.submit 'Save', class: 'btn btn-success'
+ = form.submit _('Save'), class: 'btn btn-success'