# HG changeset patch # User Goffi # Date 1314458657 -7200 # Node ID 1f7a14d0343df64c68a08f98b2fb1bcd3c9cc1ee # Parent ede26abf6ca161cad74f38f4d221345dbe2f0a2e primitivus: added forgotten gettext i18n call diff -r ede26abf6ca1 -r 1f7a14d0343d frontends/src/primitivus/chat.py --- a/frontends/src/primitivus/chat.py Sat Aug 27 17:15:41 2011 +0200 +++ b/frontends/src/primitivus/chat.py Sat Aug 27 17:24:17 2011 +0200 @@ -233,9 +233,9 @@ self.host.redraw() if not self.host.notify.hasFocus(): if self.type=="one2one": - self.host.notify.sendNotification("Primitivus: %s is talking to you" % from_jid) + self.host.notify.sendNotification(_("Primitivus: %s is talking to you") % from_jid) elif self.getUserNick().lower() in msg.lower(): - self.host.notify.sendNotification("Primitivus: Somebody pinged your name in %s room" % self.target) + self.host.notify.sendNotification(_("Primitivus: Somebody pinged your name in %s room") % self.target) def printInfo(self, msg, type='normal'): """Print general info @@ -249,9 +249,9 @@ self.host.redraw() if not self.host.notify.hasFocus(): if self.type=="one2one": - self.host.notify.sendNotification("Primitivus: there is a message about you") + self.host.notify.sendNotification(_("Primitivus: there is a message about you")) elif self.getUserNick().lower() in msg.lower(): - self.host.notify.sendNotification("Primitivus: Somebody is talking about you in %s room" % self.target) + self.host.notify.sendNotification(_("Primitivus: Somebody is talking about you in %s room") % self.target) def startGame(self, game_type, referee, players): """Configure the chat window to start a game"""