diff options
Diffstat (limited to 'core/app/helpers/download_helper.rb')
-rw-r--r-- | core/app/helpers/download_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/app/helpers/download_helper.rb b/core/app/helpers/download_helper.rb index f9c6c40..ee0fe73 100644 --- a/core/app/helpers/download_helper.rb +++ b/core/app/helpers/download_helper.rb @@ -2,7 +2,7 @@ module DownloadHelper def alternative_client_links(os = nil) alternative_clients(os).map do |client| - link_to(client.capitalize, client_download_url(client)) + link_to(I18n.t("os."+client), client_download_url(client)) end end |