Finalise mpv incompatible error message

This commit is contained in:
Et0h 2014-08-27 14:39:26 +01:00
parent cbb0b748c6
commit 18e424d0fa
2 changed files with 2 additions and 1 deletions

View File

@ -71,6 +71,7 @@ en = {
"server-timeout-error" : "Connection with server timed out",
"mpc-slave-error" : "Unable to start MPC in slave mode!",
"mpc-version-insufficient-error" : "MPC version not sufficient, please use `mpc-hc` >= `{}`",
"mpv-version-error" : "Syncplay is not compatible with this version of mpv. Please use a different version of mpv (e.g. Git HEAD).",
"player-file-open-error" : "Player failed opening file",
"player-path-error" : "Player path is not set properly",
"hostname-empty-error" : "Hostname can't be empty",

View File

@ -127,7 +127,7 @@ class MplayerPlayer(BasePlayer):
def lineReceived(self, line):
if line == "Error parsing option slave-broken (option not found)":
self.quitReason = "This version of Syncplay is not compatible with mpv 0.5.0+ on Windows. Use mpv 0.4.3 or check for an update to Syncplay."
self.quitReason = getMessage("mpv-version-error")
match = self.RE_ANSWER.match(line)
if not match: