diff --git a/src/calibre/gui2/actions/choose_library.py b/src/calibre/gui2/actions/choose_library.py index 46f5025eb3..f006b44457 100644 --- a/src/calibre/gui2/actions/choose_library.py +++ b/src/calibre/gui2/actions/choose_library.py @@ -560,7 +560,8 @@ class ChooseLibraryAction(InterfaceAction): newname, ok = QInputDialog.getText(self.gui, _('Rename') + ' ' + old_name, '
'+_( 'Choose a new name for the library %s. ')%name + '
'+_( - 'Note that the actual library folder will be renamed.'), + 'Note that the actual library folder will be renamed.') + '
' + _( + 'WARNING: This means that any calibre:// URLs that point to things in this library will stop working.'), text=old_name) newname = sanitize_file_name(str(newname)) if not ok or not newname or newname == old_name: