mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-02 11:05:49 +01:00
...
This commit is contained in:
parent
f58ca4bff4
commit
b66c02b2ca
2 changed files with 3 additions and 2 deletions
|
|
@ -601,7 +601,7 @@ 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 file'))
|
||||
'Choose a name for the new (blank) file'))
|
||||
self.setWindowTitle(_('Choose file'))
|
||||
l.addWidget(la)
|
||||
self.name = n = QLineEdit(self)
|
||||
|
|
|
|||
|
|
@ -246,7 +246,8 @@ def reg(icon, text, target, sid, keys, description):
|
|||
self.addAction(ac)
|
||||
return ac
|
||||
|
||||
self.action_new_file = reg('document-new.png', _('&New file'), self.boss.add_file, 'new-file', (), _('Create a new file in the current book'))
|
||||
self.action_new_file = reg('document-new.png', _('&New file (images/fonts/HTML/etc.)'), self.boss.add_file,
|
||||
'new-file', (), _('Create a new file in the current book'))
|
||||
self.action_open_book = reg('document_open.png', _('Open &book'), self.boss.open_book, 'open-book', 'Ctrl+O', _('Open a new book'))
|
||||
self.action_global_undo = reg('back.png', _('&Revert to before'), self.boss.do_global_undo, 'global-undo', 'Ctrl+Left',
|
||||
_('Revert book to before the last action (Undo)'))
|
||||
|
|
|
|||
Loading…
Reference in a new issue