mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
fix some unwanted leading space in i18n keys
This commit is contained in:
parent
0b06d25375
commit
81b9a3194e
1 changed files with 2 additions and 2 deletions
|
@ -401,7 +401,7 @@ def importFile(mw, file):
|
||||||
if "invalidFile" in err:
|
if "invalidFile" in err:
|
||||||
msg = _(
|
msg = _(
|
||||||
"""\
|
"""\
|
||||||
Invalid file. Please restore from backup."""
|
Invalid file. Please restore from backup."""
|
||||||
)
|
)
|
||||||
showWarning(msg)
|
showWarning(msg)
|
||||||
elif "invalidTempFolder" in err:
|
elif "invalidTempFolder" in err:
|
||||||
|
@ -410,7 +410,7 @@ def importFile(mw, file):
|
||||||
showWarning(
|
showWarning(
|
||||||
_(
|
_(
|
||||||
"""\
|
"""\
|
||||||
Unable to import from a read-only file."""
|
Unable to import from a read-only file."""
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue