Skip to content
Snippets Groups Projects
Commit 66e39992 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Merge branch 'your' into 'master'

Update views to single form of address. Change "my" to "your"

Part of user experience. Every software (twitter, facebook etc) talks to you like "change your password" but not "change my password".

cc @sytse @job

See merge request !1736
parents bc4e2518 9e554a52
No related branches found
No related tags found
1 merge request!8686add "Uplaod" and "Replace" functionality
Showing
with 17 additions and 19 deletions
Loading
Loading
@@ -23,9 +23,9 @@ module SearchHelper
# Autocomplete results for various settings pages
def default_autocomplete
[
{ label: "My Profile settings", url: profile_path },
{ label: "My SSH Keys", url: profile_keys_path },
{ label: "My Dashboard", url: root_path },
{ label: "Profile settings", url: profile_path },
{ label: "SSH Keys", url: profile_keys_path },
{ label: "Dashboard", url: root_path },
{ label: "Admin Section", url: admin_root_path },
]
end
Loading
Loading
Loading
Loading
@@ -6,4 +6,4 @@
<p>You can confirm your account through the link below:</p>
<% end %>
 
<p><%= link_to 'Confirm my account', confirmation_url(@resource, confirmation_token: @token) %></p>
<p><%= link_to 'Confirm your account', confirmation_url(@resource, confirmation_token: @token) %></p>
Loading
Loading
@@ -2,7 +2,7 @@
 
<p>Someone has requested a link to change your password, and you can do this through the link below.</p>
 
<p><%= link_to 'Change my password', edit_password_url(@resource, reset_password_token: @token) %></p>
<p><%= link_to 'Change your password', edit_password_url(@resource, reset_password_token: @token) %></p>
 
<p>If you didn't request this, please ignore this email.</p>
<p>Your password won't change until you access the link above and create a new one.</p>
Loading
Loading
@@ -4,4 +4,4 @@
 
<p>Click the link below to unlock your account:</p>
 
<p><%= link_to 'Unlock my account', unlock_url(@resource, unlock_token: @token) %></p>
<p><%= link_to 'Unlock your account', unlock_url(@resource, unlock_token: @token) %></p>
Loading
Loading
@@ -11,7 +11,7 @@
%div
= f.password_field :password_confirmation, class: "form-control bottom", placeholder: "Confirm new password", required: true
.clearfix
= f.submit "Change my password", class: "btn btn-primary"
= f.submit "Change your password", class: "btn btn-primary"
 
.clearfix.prepend-top-20
%p
Loading
Loading
Loading
Loading
@@ -21,8 +21,8 @@
<div><%= f.submit "Update", class: "input_button" %></div>
<% end %>
 
<h3>Cancel my account</h3>
<h3>Cancel your account</h3>
 
<p>Unhappy? <%= link_to "Cancel my account", registration_path(resource_name), data: { confirm: "Are you sure?" }, method: :delete %>.</p>
<p>Unhappy? <%= link_to "Cancel your account", registration_path(resource_name), data: { confirm: "Are you sure?" }, method: :delete %>.</p>
 
<%= link_to "Back", :back %>
Loading
Loading
@@ -53,7 +53,7 @@
%code .panel .well-list
 
.panel.panel-default
.panel-heading My list
.panel-heading Your list
%ul.well-list
%li
One item
Loading
Loading
Loading
Loading
@@ -25,7 +25,7 @@
= link_to explore_root_path, title: "Explore", class: 'has_bottom_tooltip', 'data-original-title' => 'Public area' do
%i.fa.fa-globe
%li
= link_to user_snippets_path(current_user), title: "My snippets", class: 'has_bottom_tooltip', 'data-original-title' => 'My snippets' do
= link_to user_snippets_path(current_user), title: "Your snippets", class: 'has_bottom_tooltip', 'data-original-title' => 'Your snippets' do
%i.fa.fa-clipboard
- if current_user.is_admin?
%li
Loading
Loading
%h3.page-title
My Account History
Your Account History
%p.light
All events created by your account are listed below.
%hr
Loading
Loading
Loading
Loading
@@ -3,8 +3,6 @@
.pull-right
= link_to "Add SSH Key", new_profile_key_path, class: "btn btn-new"
%p.light
My SSH keys: #{@keys.count}
%br
Before you can add an SSH key you need to
= link_to "generate it.", help_page_path("ssh", "README")
%hr
Loading
Loading
Loading
Loading
@@ -19,7 +19,7 @@
.fork-buttons
- if current_user && can?(current_user, :fork_project, @project) && @project.namespace != current_user.namespace
- if current_user.already_forked?(@project) && current_user.manageable_namespaces.size < 2
= link_to namespace_project_path(current_user, current_user.fork_of(@project)), title: 'Go to my fork' do
= link_to namespace_project_path(current_user, current_user.fork_of(@project)), title: 'Go to your fork' do
= link_to_toggle_fork
- else
= link_to new_namespace_project_fork_path(@project.namespace, @project), title: "Fork project" do
Loading
Loading
%h3.page-title
My Snippets
Your Snippets
.pull-right
= link_to new_snippet_path, class: "btn btn-new btn-grouped", title: "New Snippet" do
Add new snippet
Loading
Loading
Loading
Loading
@@ -2,12 +2,12 @@
Public snippets
 
.pull-right
- if current_user
= link_to new_snippet_path, class: "btn btn-new btn-grouped", title: "New Snippet" do
Add new snippet
= link_to user_snippets_path(current_user), class: "btn btn-grouped" do
My snippets
Your snippets
 
%p.light
Public snippets created by you and other users are listed here
Loading
Loading
Loading
Loading
@@ -23,7 +23,7 @@
.back-link
- if @snippet.author == current_user
= link_to user_snippets_path(current_user) do
&larr; my snippets
&larr; your snippets
- else
= link_to snippets_path do
&larr; discover snippets
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment