tell users how they can disable the move check

This commit is contained in:
Damien Elmes 2010-12-05 17:43:54 +09:00
parent 458357548f
commit a2cd19f49a

View file

@ -3159,7 +3159,9 @@ Return new path, relative to media dir."""
if self.syncName and self.syncName != checksum(self.path.encode("utf-8")): if self.syncName and self.syncName != checksum(self.path.encode("utf-8")):
self.notify(_("""\ self.notify(_("""\
Because '%s' has been moved or copied, automatic synchronisation \ Because '%s' has been moved or copied, automatic synchronisation \
has been disabled. (ERR-0100)""") % self.name()) has been disabled (ERR-0100).
You can disable this check in Settings>Preferences>Network.""") % self.name())
self.disableSyncing() self.disableSyncing()
self.syncName = None self.syncName = None
self.lastSync = 0 self.lastSync = 0