diff options
author | Martin Wortschack <mwortschack@gitlab.com> | 2019-08-09 11:44:33 +0200 |
---|---|---|
committer | Martin Wortschack <mwortschack@gitlab.com> | 2019-08-09 11:44:33 +0200 |
commit | f77ffdafad0a94c8a2af7070710fbfbe88994040 (patch) | |
tree | 6e62ed97508a116506b6d6dc37f6d8754f2c6fe3 /app/views | |
parent | 95b0f7a8c7d021f2ba21355ed9ca217459c18a18 (diff) | |
download | gitlab-ce-f77ffdafad0a94c8a2af7070710fbfbe88994040.tar.gz |
Resolve more discussion
- Add placeholder for tags in translation
- Update PO file
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/groups/group_members/index.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/groups/group_members/index.html.haml b/app/views/groups/group_members/index.html.haml index 0f2f9dd2f95..4a9e05951f9 100644 --- a/app/views/groups/group_members/index.html.haml +++ b/app/views/groups/group_members/index.html.haml @@ -35,7 +35,7 @@ .card.card-without-border .d-flex.flex-column.flex-md-row.row-content-block.second-block %span.flex-grow-1.align-self-md-center.col-form-label - = _("Members with access to <strong>%{group_name}</strong>").html_safe % { group_name: @group.name } + = _("Members with access to %{strongStart}%{group_name}%{strongEnd}").html_safe % { group_name: @group.name, strongStart: '<strong>', strongEnd: '</strong>' } = form_tag group_group_members_path(@group), method: :get, class: 'form-inline member-search-form' do .form-group.flex-grow .position-relative.mr-md-2 @@ -55,7 +55,7 @@ .card.card-without-border .d-flex.flex-column.flex-md-row.row-content-block.second-block %span.flex-grow-1 - = _("Members with pending access to <strong>%{group_name}</strong>").html_safe % { group_name: @group.name } + = _("Members with pending access to %{strongStart}%{group_name}%{strongEnd}").html_safe % { group_name: @group.name, strongStart: '<strong>', strongEnd: '</strong>' } = form_tag group_group_members_path(@group), method: :get, class: 'form-inline member-search-form' do .form-group .position-relative.mr-md-2 |