diff options
| author | Luc Donnet | 2015-05-22 16:37:40 +0200 |
|---|---|---|
| committer | Luc Donnet | 2015-05-22 16:37:40 +0200 |
| commit | a75a3555531da7e4bbe486f3ce7d14778fc038fa (patch) | |
| tree | d89775c22f36710e5c3ae6fff5ca7e880a66e9c1 | |
| parent | e75d2e5bca8bca247a1c35439c682a60b629265b (diff) | |
| download | chouette-core-a75a3555531da7e4bbe486f3ce7d14778fc038fa.tar.bz2 | |
Fix locales on compliance check validation report
| -rw-r--r-- | app/views/compliance_checks/report.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/compliance_checks/report.html.erb b/app/views/compliance_checks/report.html.erb index f91dfae96..67b5206e6 100644 --- a/app/views/compliance_checks/report.html.erb +++ b/app/views/compliance_checks/report.html.erb @@ -9,14 +9,14 @@ <% end %> <div class="btn-group pull-right"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> - <%= t(".export") %> <span class="caret"></span> + <%= t("compliance_checks.show.export") %> <span class="caret"></span> </button> <ul class="dropdown-menu" role="menu"> <li> <% if @compliance_check.class == Import %> - <%= link_to t(".export_csv"), export_referential_import_path(@referential, @compliance_check.id) %> + <%= link_to t("compliance_checks.show.export_csv"), export_referential_import_path(@referential, @compliance_check.id) %> <% else %> - <%= link_to t(".export_csv"), export_referential_compliance_check_path(@referential, @compliance_check.id) %> + <%= link_to t("compliance_checks.show.export_csv"), export_referential_compliance_check_path(@referential, @compliance_check.id) %> <% end %> </li> </ul> |
