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 12 <tr>
13 13 <td><%= project.name %></td>
14 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 16 <td>
17 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 19 <% end %>
20 20 </td>
21 21 </tr>
... ...