mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
catch another firewall error
This commit is contained in:
parent
24bf9a023b
commit
8ce6bd8b79
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ Please upgrade to the latest version of Anki.""")
|
||||||
AnkiWeb is too busy at the moment. Please try again in a few minutes.""")
|
AnkiWeb is too busy at the moment. Please try again in a few minutes.""")
|
||||||
elif "409" in err:
|
elif "409" in err:
|
||||||
return _("A previous sync failed; please try again in a few minutes.")
|
return _("A previous sync failed; please try again in a few minutes.")
|
||||||
elif "10061" in err:
|
elif "10061" in err or "10013" in err:
|
||||||
return _(
|
return _(
|
||||||
"Antivirus or firewall software is preventing Anki from connecting to the internet.")
|
"Antivirus or firewall software is preventing Anki from connecting to the internet.")
|
||||||
elif "407" in err:
|
elif "407" in err:
|
||||||
|
|
Loading…
Reference in a new issue