diff options
author | Jose Ivan Vargas <jvargas@gitlab.com> | 2017-11-07 11:06:51 -0600 |
---|---|---|
committer | Jose Ivan Vargas <jvargas@gitlab.com> | 2017-11-07 11:06:51 -0600 |
commit | 319fd65c7cc32ea10a46d4359b71131699173df7 (patch) | |
tree | 8cc1c53d8e7d9ba1f0421f07e2e40ff7d2dec5d9 /app | |
parent | 3ae9346ab0e9cddbeb9dd7a1733cecc6457c198c (diff) | |
download | gitlab-ce-319fd65c7cc32ea10a46d4359b71131699173df7.tar.gz |
Added missing strings to prepare the tags page for internationalizationjivl-add-missing-strings-tag-page
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/tags/new.html.haml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/projects/tags/new.html.haml b/app/views/projects/tags/new.html.haml index 3e99e0e8234..031efa903c5 100644 --- a/app/views/projects/tags/new.html.haml +++ b/app/views/projects/tags/new.html.haml @@ -33,7 +33,7 @@ = s_('TagsPage|Optionally, add a message to the tag.') %hr .form-group - = label_tag :release_description, 'Release notes', class: 'control-label' + = label_tag :release_description, s_('TagsPage|Release notes'), class: 'control-label' .col-sm-10 = render layout: 'projects/md_preview', locals: { url: preview_markdown_path(@project), referenced_users: true } do = render 'projects/zen', attr: :release_description, classes: 'note-textarea', placeholder: s_('TagsPage|Write your release notes or drag files here...'), current_text: @release_description @@ -41,6 +41,6 @@ .help-block = s_('TagsPage|Optionally, add release notes to the tag. They will be stored in the GitLab database and displayed on the tags page.') .form-actions - = button_tag 'Create tag', class: 'btn btn-create', tabindex: 3 - = link_to 'Cancel', project_tags_path(@project), class: 'btn btn-cancel' + = button_tag s_('TagsPage|Create tag'), class: 'btn btn-create', tabindex: 3 + = link_to s_('TagsPage|Cancel'), project_tags_path(@project), class: 'btn btn-cancel' %script#availableRefs{ type: "application/json" }= @project.repository.ref_names.to_json.html_safe |