Răsfoiți Sursa

Fix grammar

JC Brand 9 ani în urmă
părinte
comite
64eb5d2f4a
2 a modificat fișierele cu 3 adăugiri și 3 ștergeri
  1. 2 2
      spec/chatroom.js
  2. 1 1
      src/converse-muc.js

+ 2 - 2
spec/chatroom.js

@@ -642,7 +642,7 @@
                 expect(view.$el.find('.chatroom-body p:last').text()).toBe("This room does not (yet) exist");
             }.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({
                     from:'lounge@localhost/thirdwitch',
                         id:'n13mt3l',
@@ -654,7 +654,7 @@
                 var view = this.chatboxviews.get('problematic@muc.localhost');
                 spyOn(view, 'showErrorMessage').andCallThrough();
                 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, mock, test_utils));

+ 1 - 1
src/converse-muc.js

@@ -802,7 +802,7 @@
                         } else if ($error.find('item-not-found').length) {
                             this.showDisconnectMessage(__("This room does not (yet) exist"));
                         } 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"));
                         }
                     }
                 },