From 2528acc717a5ee18188f06c4a422256b600385ef Mon Sep 17 00:00:00 2001 From: lilia Date: Fri, 28 Apr 2017 10:44:40 -0700 Subject: [PATCH] Remove platform-specific links from install flow Mostly to satisfy the mac app store. // FREEBIE --- _locales/en/messages.json | 4 ++-- js/views/install_view.js | 5 ++--- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 8eced1604..b3467f6ae 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -446,8 +446,8 @@ "message": "Get started" }, "installSignalLink": { - "message": "First, install Signal on your Android phone.
We'll link your devices and keep your messages in sync.", - "description": "Prompt the user to install Signal on Android before linking", + "message": "First, install Signal on your mobile phone. We'll link your devices and keep your messages in sync.", + "description": "Prompt the user to install Signal on their phone before linking", "placeholders": { "a_params": { "content": "$1", diff --git a/js/views/install_view.js b/js/views/install_view.js index 871926b03..3cf3e9c8e 100644 --- a/js/views/install_view.js +++ b/js/views/install_view.js @@ -10,14 +10,13 @@ id: 'install', className: 'main', render_attributes: function() { - var playStoreHref = 'https://play.google.com/store/apps/details?id=org.thoughtcrime.securesms'; - var appStoreHref = 'https://itunes.apple.com/us/app/signal-private-messenger/id874139669'; var twitterHref = 'https://twitter.com/whispersystems'; + var signalHref = 'https://signal.org/install'; return { installWelcome: i18n('installWelcome'), installTagline: i18n('installTagline'), installGetStartedButton: i18n('installGetStartedButton'), - installSignalLink: this.i18n_with_links('installSignalLinks', playStoreHref, appStoreHref), + installSignalLink: this.i18n_with_links('installSignalLink', signalHref), installIHaveSignalButton: i18n('installGotIt'), installFollowUs: this.i18n_with_links('installFollowUs', twitterHref), installAndroidInstructions: i18n('installAndroidInstructions'),