diff options
author | Azul <azul@leap.se> | 2013-10-15 14:31:52 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-10-15 15:11:53 +0200 |
commit | 8e5aa5093ab6e67db4f603a44bb7027245b91a21 (patch) | |
tree | ba2de17a08c11619a74a0be6cf4c3939a2b9f223 /core/config | |
parent | 0acbf6a158f149c1f4273bde0cfca47547e080f8 (diff) |
detect os in browser and show proper download link
We add a class to the html element based on the detected os and use that to pick which download link should be visible.
If we detect an os that is not supported we display a deactivated download link instead with all alternatives.
Diffstat (limited to 'core/config')
-rw-r--r-- | core/config/locales/en.yml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/core/config/locales/en.yml b/core/config/locales/en.yml index 25b377a..344eee4 100644 --- a/core/config/locales/en.yml +++ b/core/config/locales/en.yml @@ -21,10 +21,20 @@ en: are_you_sure: "Are you sure? This change cannot be undone." download_client: "Download Bitmask" - download_client_info: "The Bitmask application allows you to use %{provider} services. It is available for Linux, Mac, Windows, and Android." + client_info: "The Bitmask application allows you to use %{provider} services." + all_downloads_info: "It is available for %{clients}." + other_downloads_info: "It is also available for %{clients}." login_info: "Log in to change your account settings, create support tickets, and manage payments." signup_info: "Sign up for a new user account via this website (it is better if you use the Bitmask application to sign up, but this website works too)." welcome: "Welcome to %{provider}." get_help: "Get Help" help_info: "Can't login? Create a new support ticket anonymously." example_email: 'user@domain.org' + os: + linux32: "Linux (32 bit)" + linux64: "Linux (64 bit)" + windows: "Windows" + android: "Android" + mac: "Mac OSX" + other: "(not available for your OS.)" + |