Index: chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc |
diff --git a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc |
index 613d1e1e156f2fb0e4ab25d120c8fb939e94a10e..8f5e982784920b87698ec7d0fd02cd0b2fd80e7d 100644 |
--- a/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc |
+++ b/chrome/browser/ui/autofill/autofill_dialog_controller_impl.cc |
@@ -800,9 +800,8 @@ bool AutofillDialogControllerImpl::ShouldShowSpinner() const { |
} |
string16 AutofillDialogControllerImpl::AccountChooserText() const { |
- // TODO(aruslan): this should be l10n "Not using Google Wallet". |
if (!account_chooser_model_.WalletIsSelected()) |
- return l10n_util::GetStringUTF16(IDS_AUTOFILL_DIALOG_PAY_WITHOUT_WALLET); |
+ return l10n_util::GetStringUTF16(IDS_AUTOFILL_DIALOG_PAYING_WITHOUT_WALLET); |
if (SignedInState() == SIGNED_IN) |
return account_chooser_model_.active_wallet_account_name(); |
@@ -814,7 +813,7 @@ string16 AutofillDialogControllerImpl::AccountChooserText() const { |
string16 AutofillDialogControllerImpl::SignInLinkText() const { |
return l10n_util::GetStringUTF16( |
signin_registrar_.IsEmpty() ? IDS_AUTOFILL_DIALOG_SIGN_IN : |
- IDS_AUTOFILL_DIALOG_PAY_WITHOUT_WALLET); |
+ IDS_AUTOFILL_DIALOG_CANCEL_SIGN_IN); |
} |
bool AutofillDialogControllerImpl::ShouldOfferToSaveInChrome() const { |