Commit db309ec716a6cd1dc0b2149455eb055c4b6e1ff6
Committed by
Daniela Feitosa
1 parent
e28cdc7d
Exists in
master
and in
28 other branches
Changing friends online to friends in chat (at right place)
(ActionItem1959)
Showing
2 changed files
with
3 additions
and
3 deletions
Show diff stats
app/views/shared/logged_in/xmpp_chat.rhtml
... | ... | @@ -6,6 +6,6 @@ |
6 | 6 | </div> |
7 | 7 | </div> |
8 | 8 | <a href='#' id='chat-online-users-title' onclick='return false;'> |
9 | - <div class='header'><i class='icon-chat'></i><span><%= _("Online friends <span class='amount_of_friends'>(%{amount})</span>") %></span></div> | |
9 | + <div class='header'><i class='icon-chat'></i><span><%= _("Friends in chat <span class='amount_of_friends'>(%{amount})</span>") %></span></div> | |
10 | 10 | </a> |
11 | 11 | </div> | ... | ... |
features/chat.feature
... | ... | @@ -23,7 +23,7 @@ Feature: chat |
23 | 23 | Scenario: provide the chat online users content |
24 | 24 | Given feature "xmpp_chat" is enabled on environment |
25 | 25 | And I am logged in as "tame" |
26 | - Then I should see "Online friends " | |
26 | + Then I should see "Friends in chat " | |
27 | 27 | |
28 | 28 | @selenium |
29 | 29 | Scenario: provide the chat online users list |
... | ... | @@ -46,7 +46,7 @@ Feature: chat |
46 | 46 | @selenium |
47 | 47 | Scenario: not provide the chat online users list when environment not support that |
48 | 48 | Given I am logged in as "tame" |
49 | - Then I should not see "Online friends " | |
49 | + Then I should not see "Friends in chat " | |
50 | 50 | |
51 | 51 | Scenario: block access to chat when environment not support that |
52 | 52 | Given I am logged in as "tame" | ... | ... |