diff --git a/sickbeard/common.py b/sickbeard/common.py index 4a3dc2cbead63c098ad646b73dd008d1165201e2..c4c8c2894bcd8af03937e4bed971a37e7c4fb263 100644 --- a/sickbeard/common.py +++ b/sickbeard/common.py @@ -44,9 +44,9 @@ NOTIFY_DOWNLOAD = 2 NOTIFY_SUBTITLE_DOWNLOAD = 3 notifyStrings = {} -notifyStrings[NOTIFY_SNATCH] = "Episode r�cup�r�" -notifyStrings[NOTIFY_DOWNLOAD] = "Episode t�l�charg�" -notifyStrings[NOTIFY_SUBTITLE_DOWNLOAD] = "Sous-titre t�l�charg�" +notifyStrings[NOTIFY_SNATCH] = "Download en cours" +notifyStrings[NOTIFY_DOWNLOAD] = "Download finis" +notifyStrings[NOTIFY_SUBTITLE_DOWNLOAD] = "Sous-titre" ### Episode statuses UNKNOWN = -1 # should never happen diff --git a/sickbeard/notifiers/pushover.py b/sickbeard/notifiers/pushover.py index d5669551af133fc3e1eb596e80d5f48000e668a1..e300afe6d88099f2dae8d53826c2cb1ab905b12f 100644 --- a/sickbeard/notifiers/pushover.py +++ b/sickbeard/notifiers/pushover.py @@ -34,7 +34,7 @@ API_KEY = "OKCXmkvHN1syU2e8xvpefTnyvVWGv5" class PushoverNotifier: def test_notify(self, userKey=None): - return self._sendPushover("Ceci est une notification de test venant de Sickbeard VO/VF (��)", 'Test', userKey ) + return self._sendPushover("Ceci est une notification de test venant de Sickbeard VO/VF", 'Test', userKey ) def _sendPushover(self, msg, title, userKey=None): """