Commit 149013fcab660300e2c4c47ec8db524385094b93

Authored by Rafael Manzo
1 parent abdd2edc

Adds missing translations for prject listing

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
app/views/shared/_project_list.html.erb
@@ -12,10 +12,10 @@ @@ -12,10 +12,10 @@
12 <tr> 12 <tr>
13 <td><%= project.name %></td> 13 <td><%= project.name %></td>
14 <td><%= project.description %></td> 14 <td><%= project.description %></td>
15 - <td><%= link_to 'Show', project_path(project.id), class: 'btn btn-info' %></td> 15 + <td><%= link_to t('show'), project_path(project.id), class: 'btn btn-info' %></td>
16 <td> 16 <td>
17 <% if project_owner? project.id %> 17 <% if project_owner? project.id %>
18 - <%= link_to 'Edit', edit_project_path(project.id), class: 'btn btn-info' %> 18 + <%= link_to t('edit'), edit_project_path(project.id), class: 'btn btn-info' %>
19 <% end %> 19 <% end %>
20 </td> 20 </td>
21 </tr> 21 </tr>