diff options
| -rw-r--r-- | app/views/exports/_export.erb | 2 | ||||
| -rw-r--r-- | config/locales/exports.yml | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/app/views/exports/_export.erb b/app/views/exports/_export.erb index 7d67a3d72..649251b78 100644 --- a/app/views/exports/_export.erb +++ b/app/views/exports/_export.erb @@ -18,7 +18,7 @@ <div class="panel-body"> <p> <% if export.status == 'completed' %> - <%= link_to t("exports.actions.download"), referential_export_path(@referential, export, :format => :zip), :class => "download" %> + <%= link_to image_tag("icons/file_zip.png") + t(".exported_file"), referential_export_path(@referential, export, :format => :zip), :class => "download" %> <% else %> <% end %> diff --git a/config/locales/exports.yml b/config/locales/exports.yml index 75002cc22..c94dd8d8e 100644 --- a/config/locales/exports.yml +++ b/config/locales/exports.yml @@ -1,5 +1,7 @@ en: exports: + export: + exported_file: "Exported file" actions: new: "New export" destroy: "Destroy" @@ -115,6 +117,8 @@ en: itl: "Restriction Constraints" fr: exports: + export: + exported_file: "Fichier exporté" actions: new: "Nouvel export" destroy: "Supprimer cet export" |
