mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
update obsolete plugin list
This commit is contained in:
parent
168ec919d9
commit
f741b212a9
1 changed files with 12 additions and 4 deletions
|
@ -2652,13 +2652,21 @@ This deck already exists on your computer. Overwrite the local copy?"""),
|
||||||
|
|
||||||
def disableObsoletePlugins(self):
|
def disableObsoletePlugins(self):
|
||||||
dir = self.pluginsFolder()
|
dir = self.pluginsFolder()
|
||||||
|
native = _(
|
||||||
|
"The %s plugin has been disabled, as Anki supports "+
|
||||||
|
"this natively now.")
|
||||||
plugins = [
|
plugins = [
|
||||||
("Custom Media Directory.py", _("""\
|
("Custom Media Directory.py",
|
||||||
The custom media folder plugin has been disabled, as Anki supports \
|
(native % "custom media folder") + _(""" \
|
||||||
this natively now. Please visit the preferences screen.""")),
|
Please visit Settings>Preferences.""")),
|
||||||
("Regenerate Reading Field.py", _("""\
|
("Regenerate Reading Field.py", _("""\
|
||||||
The regenerate reading field plugin has been disabled, as the Japanese \
|
The regenerate reading field plugin has been disabled, as the Japanese \
|
||||||
support plugin supports this now. Please download the latest version."""))
|
support plugin supports this now. Please download the latest version.""")),
|
||||||
|
("Sync LaTeX with iPhone client.py",
|
||||||
|
native % "sync LaTeX"),
|
||||||
|
("Learn Mode.py", _("""\
|
||||||
|
The learn mode plugin has been disabled because it needs to be rewritten \
|
||||||
|
to work with this version of Anki."""))
|
||||||
]
|
]
|
||||||
for p in plugins:
|
for p in plugins:
|
||||||
path = os.path.join(dir, p[0])
|
path = os.path.join(dir, p[0])
|
||||||
|
|
Loading…
Reference in a new issue