From a504b96e85b1e580854f9ad4dd164d6b8adc5610 Mon Sep 17 00:00:00 2001 From: Alexandre Lessard Date: Thu, 20 Mar 2014 19:54:06 -0400 Subject: [PATCH] Changing the term 'reconnect' by 'transfer' when a third party account is already connected to an other user. Fix #980 --- gittip/models/participant.py | 2 +- www/on/confirm.html.spt | 10 +++++----- www/on/take-over.html.spt | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/gittip/models/participant.py b/gittip/models/participant.py index 38f44e2783..f19aa0225d 100644 --- a/gittip/models/participant.py +++ b/gittip/models/participant.py @@ -721,7 +721,7 @@ def take_over(self, account, have_confirmation=False): ever decide to join Gittip). In certain circumstances, we want to present the user with a - confirmation before proceeding to reconnect the account elsewhere to + confirmation before proceeding to transfer the account elsewhere to the new Gittip account; NeedConfirmation is the signal to request confirmation. If it was the last account elsewhere connected to the old Gittip account, then we absorb the old Gittip account into the new one, diff --git a/www/on/confirm.html.spt b/www/on/confirm.html.spt index d968c1cdc0..0f12b783bd 100644 --- a/www/on/confirm.html.spt +++ b/www/on/confirm.html.spt @@ -54,7 +54,7 @@ title = "Please Confirm"
{{ user_name }} is connected
to - {{ other.username }} on Gittip.
Reconnect it?
+ {{ other.username }} on Gittip.
Transfer it?

Now

@@ -116,7 +116,7 @@ title = "Please Confirm" -

After Reconnect

+

After Transfer

@@ -218,15 +218,15 @@ title = "Please Confirm" diff --git a/www/on/take-over.html.spt b/www/on/take-over.html.spt index 10ceeff33e..0242a39bd2 100644 --- a/www/on/take-over.html.spt +++ b/www/on/take-over.html.spt @@ -6,7 +6,7 @@ if user.ANON: if not POST: raise Response(405) -if body['should_reconnect'] != 'yes': +if body['should_transfer'] != 'yes': request.redirect('/about/me.html') platform = body['platform']