Commit d597dde7c5fb43032e6ea322093e440ee8068c8a
1 parent
7db5d7ce
Exists in
master
and in
4 other branches
Fix quotes.
Showing
2 changed files
with
4 additions
and
2 deletions
Show diff stats
views/blocks/software_highlights.html.erb
... | ... | @@ -9,6 +9,8 @@ |
9 | 9 | MUST APPEAR AFTER THE SPAN --> |
10 | 10 | <div class="popover-content" style="display: none"> |
11 | 11 | <p>Este software foi desenvolvido com recursos públicos, gerenciado por uma instituição |
12 | - governamental. Sua inclusão neste portal atende aos requisitos do <span>art. 14 da IN 01/2011</span>.</p> | |
12 | + governamental. Sua inclusão neste portal atende aos requisitos do | |
13 | + <a href="https://softwarepublico.gov.br/social/articles/0000/3365/in_spb_01.pdf"><span>art. 14 da IN 01/2011</span></a>. | |
14 | + </p> | |
13 | 15 | <%= link_to _('See all'), {:controller => :search, :action => :software_infos, :only_softwares => softwares} %> |
14 | 16 | </div> | ... | ... |
views/search/_catalog_result_list.html.erb
... | ... | @@ -9,7 +9,7 @@ |
9 | 9 | <% if multiple_search?(@searches) %> |
10 | 10 | <h3><%= @names[name] %></h3> |
11 | 11 | <% if search[:results].total_entries > SearchController::MULTIPLE_SEARCH_LIMIT %> |
12 | - <%= link_to(_('see all (%d)') % search[:results].total_entries, params.merge(:action => name), :class => 'see-more' ) %> | |
12 | + <%= link_to(_("see all (%d)") % search[:results].total_entries, params.merge(:action => name), :class => 'see-more' ) %> | |
13 | 13 | <% end %> |
14 | 14 | <% end %> |
15 | 15 | ... | ... |