Merge lp:~roadmr/canonical-identity-provider/ubuntu-one-user-rephrase into lp:canonical-identity-provider/release

Proposed by Daniel Manrique
Status: Merged
Approved by: Daniel Manrique
Approved revision: no longer in the source branch.
Merge reported by: Otto Co-Pilot
Merged at revision: not available
Proposed branch: lp:~roadmr/canonical-identity-provider/ubuntu-one-user-rephrase
Merge into: lp:canonical-identity-provider/release
Diff against target: 18 lines (+2/-2)
1 file modified
src/webui/templates/registration/_user_intention_radios.html (+2/-2)
To merge this branch: bzr merge lp:~roadmr/canonical-identity-provider/ubuntu-one-user-rephrase
Reviewer Review Type Date Requested Status
Maximiliano Bertacchini Approve
Review via email: mp+345451@code.launchpad.net

Commit message

Fix wording per linked bug.

Nobody has been a “user” of Ubuntu One since 2014. You may have — and use — an Ubuntu One account, but you don’t use Ubuntu One.

Description of the change

Fix wording per linked bug.

Nobody has been a “user” of Ubuntu One since 2014. You may have — and use — an Ubuntu One account, but you don’t use Ubuntu One.

To post a comment you must log in.
Revision history for this message
Maximiliano Bertacchini (maxiberta) wrote :

LGTM.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'src/webui/templates/registration/_user_intention_radios.html'
2--- src/webui/templates/registration/_user_intention_radios.html 2013-06-06 11:53:57 +0000
3+++ src/webui/templates/registration/_user_intention_radios.html 2018-05-14 13:21:53 +0000
4@@ -6,12 +6,12 @@
5 <input type="radio" id="id_new_user" name="user-intentions" {% if readonly %}disabled="disabled"{%endif%}
6 {%if selected_form == "create" %} checked="checked"{%endif%} tabindex="20" value="create"
7 data-qa-id="user_intention_create">
8- <span>{% trans "I am a new Ubuntu One user" %}</span>
9+ <span>{% trans "I don’t have an Ubuntu One account" %}</span>
10 </label>
11
12 <label for="id_returning_user" class="returning-user">
13 <input type="radio" id="id_returning_user" name="user-intentions"{%if selected_form == "login" %} checked="checked"{%endif%}
14 tabindex="30" value="login" data-qa-id="user_intention_login">
15- <span>{% trans "I am a returning user <i>and my password is:</i>" %}</span>
16+ <span>{% trans "I have an Ubuntu One account <i>and my password is:</i>" %}</span>
17 </label>
18 </div>