Fix grammar

This commit is contained in:
JC Brand 2016-04-04 10:34:23 +00:00
parent 8e0f8f0a6d
commit 64eb5d2f4a
2 changed files with 3 additions and 3 deletions

View File

@ -642,7 +642,7 @@
expect(view.$el.find('.chatroom-body p:last').text()).toBe("This room does not (yet) exist"); expect(view.$el.find('.chatroom-body p:last').text()).toBe("This room does not (yet) exist");
}.bind(converse)); }.bind(converse));
it("will show an error message if the room has reached it's maximum number of occupants", function () { it("will show an error message if the room has reached its maximum number of occupants", function () {
var presence = $pres().attrs({ var presence = $pres().attrs({
from:'lounge@localhost/thirdwitch', from:'lounge@localhost/thirdwitch',
id:'n13mt3l', id:'n13mt3l',
@ -654,7 +654,7 @@
var view = this.chatboxviews.get('problematic@muc.localhost'); var view = this.chatboxviews.get('problematic@muc.localhost');
spyOn(view, 'showErrorMessage').andCallThrough(); spyOn(view, 'showErrorMessage').andCallThrough();
view.onChatRoomPresence(presence, {'nick': 'dummy'}); view.onChatRoomPresence(presence, {'nick': 'dummy'});
expect(view.$el.find('.chatroom-body p:last').text()).toBe("This room has reached it's maximum number of occupants"); expect(view.$el.find('.chatroom-body p:last').text()).toBe("This room has reached its maximum number of occupants");
}.bind(converse)); }.bind(converse));
}.bind(converse)); }.bind(converse));
}.bind(converse, mock, test_utils)); }.bind(converse, mock, test_utils));

View File

@ -802,7 +802,7 @@
} else if ($error.find('item-not-found').length) { } else if ($error.find('item-not-found').length) {
this.showDisconnectMessage(__("This room does not (yet) exist")); this.showDisconnectMessage(__("This room does not (yet) exist"));
} else if ($error.find('service-unavailable').length) { } else if ($error.find('service-unavailable').length) {
this.showDisconnectMessage(__("This room has reached it's maximum number of occupants")); this.showDisconnectMessage(__("This room has reached its maximum number of occupants"));
} }
} }
}, },