<% end %>
<% content_for :heading do %>
- <h1><%= t ".my settings" %></h1>
+ <h1><%= t ".my_account" %></h1>
<% end %>
<%= render :partial => "settings_menu" %>
<span class='badge count-number'><%= number_with_delimiter(current_user.new_messages.size) %></span>
<% end %>
<%= link_to t("users.show.my profile"), current_user, :class => "dropdown-item" %>
- <%= link_to t("users.show.my settings"), edit_account_path, :class => "dropdown-item" %>
+ <%= link_to t("users.show.my_account"), edit_account_path, :class => "dropdown-item" %>
<%= link_to t("users.show.my_preferences"), preferences_path, :class => "dropdown-item" %>
<div class="dropdown-divider"></div>
<% if current_user.home_location? %>
<span class='badge count-number'><%= number_with_delimiter(current_user.diary_comments.size) %></span>
</li>
<li>
- <%= link_to t(".my settings"), edit_account_path %>
+ <%= link_to t(".my_account"), edit_account_path %>
</li>
<% if current_user.blocks.exists? %>
accounts:
edit:
title: "Edit account"
- my settings: My Settings
+ my_account: My Account
current email address: "Current Email Address"
external auth: "External Authentication"
openid:
my notes: My Notes
my messages: My Messages
my profile: My Profile
- my settings: My Settings
+ my_account: My Account
my comments: My Comments
my_preferences: My Preferences
my_dashboard: My Dashboard
user = create(:user)
sign_in_as(user)
visit edit_account_path
- assert_content "My Settings"
+ assert_content "My Account"
user.suspend!