diff --git a/syncplay/client.py b/syncplay/client.py index cc6fc83..93a3ee4 100755 --- a/syncplay/client.py +++ b/syncplay/client.py @@ -360,7 +360,7 @@ class SyncplayClient(object): self._player.setPaused(True) madeChangeOnPlayer = True if (self.lastLeftTime < time.time() - constants.OSD_DURATION) or hideFromOSD == True: - self.ui.showMessage(getMessage("pause-notification").format(setBy), hideFromOSD) + self.ui.showMessage(getMessage("pause-notification").format(setBy, self.getGlobalPosition()), hideFromOSD) else: self.ui.showMessage(getMessage("left-paused-notification").format(self.lastLeftUser, setBy), hideFromOSD) return madeChangeOnPlayer diff --git a/syncplay/messages_en.py b/syncplay/messages_en.py index 97491fe..6cea521 100644 --- a/syncplay/messages_en.py +++ b/syncplay/messages_en.py @@ -23,7 +23,7 @@ en = { "slowdown-notification": "Slowing down due to time difference with {}", # User "revert-notification": "Reverting speed back to normal", - "pause-notification": "{} paused", # User + "pause-notification": "{} paused at {}", # User "unpause-notification": "{} unpaused", # User "seek-notification": "{} jumped from {} to {}", # User, from time, to time