Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Tsiolis <tsiolis.g@gmail.com>2018-11-26 17:29:40 +0300
committerGeorge Tsiolis <tsiolis.g@gmail.com>2018-11-26 17:33:09 +0300
commit412f62919340e5df7505749927202bf6ea8b3785 (patch)
treea5453ff8d57c788e3626f4c6f3871bd3e9e43e80 /app/views/snippets/edit.html.haml
parentb55aeca25e70cf884c08afaa4b4d84d9ac772c35 (diff)
Externalize strings from `/app/views/snippets`
Diffstat (limited to 'app/views/snippets/edit.html.haml')
-rw-r--r--app/views/snippets/edit.html.haml5
1 files changed, 3 insertions, 2 deletions
diff --git a/app/views/snippets/edit.html.haml b/app/views/snippets/edit.html.haml
index 18ebeb78f87..ebc6c0a2605 100644
--- a/app/views/snippets/edit.html.haml
+++ b/app/views/snippets/edit.html.haml
@@ -1,5 +1,6 @@
-- page_title "Edit", "#{@snippet.title} (#{@snippet.to_reference})", "Snippets"
+- page_title _("Edit"), "#{@snippet.title} (#{@snippet.to_reference})", _("Snippets")
+
%h3.page-title
- Edit Snippet
+ = _("Edit Snippet")
%hr
= render 'shared/snippets/form', url: snippet_path(@snippet)