mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Add profile name in profile deletion confirmation message (#2722)
* Add profile name in profile deletion confirmation message * Update contributors * leave old translation and add new one
This commit is contained in:
parent
73eab9280d
commit
b35a11ffd6
3 changed files with 3 additions and 1 deletions
|
@ -144,6 +144,7 @@ Michael Eliachevitch <m.eliachevitch@posteo.de>
|
||||||
Carlo Quick <https://github.com/CarloQuick>
|
Carlo Quick <https://github.com/CarloQuick>
|
||||||
Dominique Martinet <asmadeus@codewreck.org>
|
Dominique Martinet <asmadeus@codewreck.org>
|
||||||
Virinci
|
Virinci
|
||||||
|
chandraiyengar <github.com/chandraiyengar>
|
||||||
|
|
||||||
********************
|
********************
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
qt-misc-addon-will-be-installed-when-a = Add-on will be installed when a profile is opened.
|
qt-misc-addon-will-be-installed-when-a = Add-on will be installed when a profile is opened.
|
||||||
qt-misc-addons = Add-ons
|
qt-misc-addons = Add-ons
|
||||||
qt-misc-all-cards-notes-and-media-for = All cards, notes, and media for this profile will be deleted. Are you sure?
|
qt-misc-all-cards-notes-and-media-for = All cards, notes, and media for this profile will be deleted. Are you sure?
|
||||||
|
qt-misc-all-cards-notes-and-media-for2 = All cards, notes, and media for the profile "{ $name }" will be deleted. Are you sure?
|
||||||
qt-misc-anki-updatedanki-has-been-released = <h1>Anki Updated</h1>Anki { $val } has been released.<br><br>
|
qt-misc-anki-updatedanki-has-been-released = <h1>Anki Updated</h1>Anki { $val } has been released.<br><br>
|
||||||
qt-misc-automatic-syncing-and-backups-have-been = Automatic syncing and backups have been disabled while restoring. To enable them again, close the profile or restart Anki.
|
qt-misc-automatic-syncing-and-backups-have-been = Automatic syncing and backups have been disabled while restoring. To enable them again, close the profile or restart Anki.
|
||||||
qt-misc-back-side-only = Back Side Only
|
qt-misc-back-side-only = Back Side Only
|
||||||
|
|
|
@ -411,7 +411,7 @@ class AnkiQt(QMainWindow):
|
||||||
return
|
return
|
||||||
# sure?
|
# sure?
|
||||||
if not askUser(
|
if not askUser(
|
||||||
tr.qt_misc_all_cards_notes_and_media_for(),
|
tr.qt_misc_all_cards_notes_and_media_for2(name=self.pm.name),
|
||||||
msgfunc=QMessageBox.warning,
|
msgfunc=QMessageBox.warning,
|
||||||
defaultno=True,
|
defaultno=True,
|
||||||
):
|
):
|
||||||
|
|
Loading…
Reference in a new issue