mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-01 06:15:14 +01:00
Add some help to the new file dialog on how to create files in specific folders
This commit is contained in:
parent
5a02780254
commit
faa969859b
1 changed files with 3 additions and 1 deletions
|
|
@ -681,7 +681,9 @@ def __init__(self, initial_choice='html', parent=None):
|
|||
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: <i>text/chapter1.html'))
|
||||
la.setWordWrap(True)
|
||||
self.setWindowTitle(_('Choose file'))
|
||||
l.addWidget(la)
|
||||
self.name = n = QLineEdit(self)
|
||||
|
|
|
|||
Loading…
Reference in a new issue