String changes

This commit is contained in:
Kovid Goyal 2017-05-14 20:32:48 +05:30
parent 5b28ec2060
commit 3dd277481d
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
7 changed files with 8 additions and 8 deletions

View File

@ -87,7 +87,7 @@ class Polish(QDialog): # {{{
('jacket', _('Add/replace metadata as a "book &jacket" page')), ('jacket', _('Add/replace metadata as a "book &jacket" page')),
('remove_jacket', _('&Remove a previously inserted book jacket')), ('remove_jacket', _('&Remove a previously inserted book jacket')),
('remove_unused_css', _('Remove &unused CSS rules from the book')), ('remove_unused_css', _('Remove &unused CSS rules from the book')),
('compress_images', _('Losslessly compress images')), ('compress_images', _('Losslessly &compress images')),
]) ])
prefs = gprefs.get('polishing_settings', {}) prefs = gprefs.get('polishing_settings', {})
for name, text in self.all_actions.iteritems(): for name, text in self.all_actions.iteritems():

View File

@ -597,7 +597,7 @@ class Scheduler(QObject):
self.scheduler_action = QAction(QIcon(I('scheduler.png')), _('Schedule news download'), self) self.scheduler_action = QAction(QIcon(I('scheduler.png')), _('Schedule news download'), self)
self.news_menu.addAction(self.scheduler_action) self.news_menu.addAction(self.scheduler_action)
self.scheduler_action.triggered[bool].connect(self.show_dialog) self.scheduler_action.triggered[bool].connect(self.show_dialog)
self.cac = QAction(QIcon(I('user_profile.png')), _('Add a custom news source'), self) self.cac = QAction(QIcon(I('user_profile.png')), _('Add or edit a custom news source'), self)
self.cac.triggered[bool].connect(self.customize_feeds) self.cac.triggered[bool].connect(self.customize_feeds)
self.news_menu.addAction(self.cac) self.news_menu.addAction(self.cac)
self.news_menu.addSeparator() self.news_menu.addSeparator()
@ -734,10 +734,10 @@ class Scheduler(QObject):
# No internet connection, we will try again in a minute # No internet connection, we will try again in a minute
break break
if __name__ == '__main__': if __name__ == '__main__':
from PyQt5.Qt import QApplication from PyQt5.Qt import QApplication
app = QApplication([]) app = QApplication([])
d = SchedulerDialog(RecipeModel()) d = SchedulerDialog(RecipeModel())
d.exec_() d.exec_()
del app del app

View File

@ -108,7 +108,7 @@ class TextureChooser(QDialog):
return self.selected_fname return self.selected_fname
def add_texture(self): def add_texture(self):
path = choose_files(self, 'choose-texture-image', _('Choose Image'), path = choose_files(self, 'choose-texture-image', _('Choose image'),
filters=[(_('Images'), ['jpeg', 'jpg', 'png'])], all_files=False, select_only_single_file=True) filters=[(_('Images'), ['jpeg', 'jpg', 'png'])], all_files=False, select_only_single_file=True)
if not path: if not path:
return return

View File

@ -272,7 +272,7 @@ class InsertImage(Dialog):
self.model.refresh() self.model.refresh()
def import_image(self): def import_image(self):
path = choose_files(self, 'tweak-book-choose-image-for-import', _('Choose Image'), path = choose_files(self, 'tweak-book-choose-image-for-import', _('Choose image'),
filters=[(_('Images'), ('jpg', 'jpeg', 'png', 'gif', 'svg'))], all_files=True, select_only_single_file=True) filters=[(_('Images'), ('jpg', 'jpeg', 'png', 'gif', 'svg'))], all_files=True, select_only_single_file=True)
if path: if path:
path = path[0] path = path[0]

View File

@ -775,7 +775,7 @@ class Main(MainWindow, MainWindowMixin, DeviceMixin, EmailMixin, # {{{
files that are large undifferentiated blocks of text, this files that are large undifferentiated blocks of text, this
splitting fails. splitting fails.
<p>You can <b>work around the problem</b> by either increasing the <p>You can <b>work around the problem</b> by either increasing the
maximum split size under EPUB Output in the conversion dialog, maximum split size under <i>EPUB output</i> in the conversion dialog,
or by turning on Heuristic Processing, also in the conversion or by turning on Heuristic Processing, also in the conversion
dialog. Note that if you make the maximum split size too large, dialog. Note that if you make the maximum split size too large,
your e-book reader may have trouble with the EPUB. your e-book reader may have trouble with the EPUB.

View File

@ -125,7 +125,7 @@ class ImageView(QDialog):
self.current_image_name = unicode(self.current_url.toString(NO_URL_FORMATTING)).rpartition('/')[-1] self.current_image_name = unicode(self.current_url.toString(NO_URL_FORMATTING)).rpartition('/')[-1]
except AttributeError: except AttributeError:
self.current_image_name = self.current_url self.current_image_name = self.current_url
title = _('View Image: %s')%self.current_image_name title = _('View image: %s')%self.current_image_name
self.setWindowTitle(title) self.setWindowTitle(title)
if use_exec: if use_exec:
self.exec_() self.exec_()

View File

@ -80,7 +80,7 @@ class PrintDialog(Dialog):
pnum.setChecked(vprefs.get('print-to-pdf-page-numbers', True)) pnum.setChecked(vprefs.get('print-to-pdf-page-numbers', True))
l.addRow(pnum) l.addRow(pnum)
self.show_file = sf = QCheckBox(_('Open PDF file after printing'), self) self.show_file = sf = QCheckBox(_('&Open PDF file after printing'), self)
sf.setChecked(vprefs.get('print-to-pdf-show-file', True)) sf.setChecked(vprefs.get('print-to-pdf-show-file', True))
l.addRow(sf) l.addRow(sf)