diff --git a/src/calibre/gui2/tweak_book/file_list.py b/src/calibre/gui2/tweak_book/file_list.py index 8399e25274..673e2c6f45 100644 --- a/src/calibre/gui2/tweak_book/file_list.py +++ b/src/calibre/gui2/tweak_book/file_list.py @@ -681,7 +681,9 @@ class NewFileDialog(QDialog): # {{{ self.l = l = QVBoxLayout() self.setLayout(l) self.la = la = QLabel(_( - 'Choose a name for the new (blank) file')) + 'Choose a name for the new (blank) file. To place the file in a' + ' specific folder in the book, include the folder name, for example: text/chapter1.html')) + la.setWordWrap(True) self.setWindowTitle(_('Choose file')) l.addWidget(la) self.name = n = QLineEdit(self)