mirror of
https://github.com/ankitects/anki.git
synced 2025-09-22 07:52:24 -04:00
tell users how they can disable the move check
This commit is contained in:
parent
458357548f
commit
a2cd19f49a
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue