From d73ed65b5e6b3757a6a2fb00a8a271b882b9ab83 Mon Sep 17 00:00:00 2001 From: Tim Su Date: Fri, 5 Oct 2012 14:51:14 -0700 Subject: [PATCH] Remove subscription help url from astrid code --- astrid/res/values/strings-premium.xml | 1 - astrid/src/com/todoroo/astrid/billing/BillingActivity.java | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/astrid/res/values/strings-premium.xml b/astrid/res/values/strings-premium.xml index f5f87db22..51a503f3c 100644 --- a/astrid/res/values/strings-premium.xml +++ b/astrid/res/values/strings-premium.xml @@ -77,7 +77,6 @@ Restoring transactions Learn more - http://market.android.com/support/bin/answer.py?answer=1050566&hl=%lang%&dl=%region% Astrid Premium 1 Month diff --git a/astrid/src/com/todoroo/astrid/billing/BillingActivity.java b/astrid/src/com/todoroo/astrid/billing/BillingActivity.java index cf5854df3..bbd7b5545 100644 --- a/astrid/src/com/todoroo/astrid/billing/BillingActivity.java +++ b/astrid/src/com/todoroo/astrid/billing/BillingActivity.java @@ -246,8 +246,10 @@ public class BillingActivity extends FragmentActivity { } } + @SuppressWarnings("nls") private Dialog createDialog(int titleId, int messageId) { - String helpUrl = replaceLanguageAndRegion(getString(R.string.subscriptions_help_url)); + String helpUrl = "http://market.android.com/support/bin/answer.py?answer=1050566&hl=%lang%&dl=%region%"; + helpUrl = replaceLanguageAndRegion(helpUrl); if (BillingConstants.DEBUG) { Log.i("billing-activity-url", helpUrl); //$NON-NLS-1$ }