From faa969859bb85e115d403a2788583739108fae02 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 20 Jan 2014 08:45:51 +0530 Subject: [PATCH] Add some help to the new file dialog on how to create files in specific folders --- src/calibre/gui2/tweak_book/file_list.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)