String changes

This commit is contained in:
Kovid Goyal 2017-04-23 21:16:10 +05:30
parent 5847f36df9
commit f6871844d9
10 changed files with 10 additions and 18 deletions

View File

@ -15,7 +15,7 @@ font_family_model = None
class PluginWidget(Widget, Ui_Form): class PluginWidget(Widget, Ui_Form):
TITLE = _('AZW3 Output') TITLE = _('AZW3 output')
HELP = _('Options specific to')+' AZW3 '+_('output') HELP = _('Options specific to')+' AZW3 '+_('output')
COMMIT_NAME = 'azw3_output' COMMIT_NAME = 'azw3_output'
ICON = I('mimetypes/azw3.png') ICON = I('mimetypes/azw3.png')
@ -30,5 +30,3 @@ class PluginWidget(Widget, Ui_Form):
self.db, self.book_id = db, book_id self.db, self.book_id = db, book_id
self.initialize_options(get_option, get_help, db, book_id) self.initialize_options(get_option, get_help, db, book_id)

View File

@ -10,7 +10,7 @@ from calibre.gui2.convert import Widget
class PluginWidget(Widget, Ui_Form): class PluginWidget(Widget, Ui_Form):
TITLE = _('FB2 Input') TITLE = _('FB2 input')
HELP = _('Options specific to')+' FB2 '+_('input') HELP = _('Options specific to')+' FB2 '+_('input')
COMMIT_NAME = 'fb2_input' COMMIT_NAME = 'fb2_input'
ICON = I('mimetypes/fb2.png') ICON = I('mimetypes/fb2.png')

View File

@ -12,7 +12,7 @@ format_model = None
class PluginWidget(Widget, Ui_Form): class PluginWidget(Widget, Ui_Form):
TITLE = _('HTMLZ Output') TITLE = _('HTMLZ output')
HELP = _('Options specific to')+' HTMLZ '+_('output') HELP = _('Options specific to')+' HTMLZ '+_('output')
COMMIT_NAME = 'htmlz_output' COMMIT_NAME = 'htmlz_output'
ICON = I('mimetypes/html.png') ICON = I('mimetypes/html.png')

View File

@ -14,7 +14,7 @@ font_family_model = None
class PluginWidget(Widget, Ui_Form): class PluginWidget(Widget, Ui_Form):
TITLE = _('LRF Output') TITLE = _('LRF output')
HELP = _('Options specific to')+' LRF '+_('output') HELP = _('Options specific to')+' LRF '+_('output')
COMMIT_NAME = 'lrf_output' COMMIT_NAME = 'lrf_output'
ICON = I('mimetypes/lrf.png') ICON = I('mimetypes/lrf.png')
@ -33,6 +33,3 @@ class PluginWidget(Widget, Ui_Form):
self.opt_header.toggle(), self.opt_header.toggle() self.opt_header.toggle(), self.opt_header.toggle()
self.opt_render_tables_as_images.toggle() self.opt_render_tables_as_images.toggle()
self.opt_render_tables_as_images.toggle() self.opt_render_tables_as_images.toggle()

View File

@ -15,7 +15,7 @@ font_family_model = None
class PluginWidget(Widget, Ui_Form): class PluginWidget(Widget, Ui_Form):
TITLE = _('MOBI Output') TITLE = _('MOBI output')
HELP = _('Options specific to')+' MOBI '+_('output') HELP = _('Options specific to')+' MOBI '+_('output')
COMMIT_NAME = 'mobi_output' COMMIT_NAME = 'mobi_output'
ICON = I('mimetypes/mobi.png') ICON = I('mimetypes/mobi.png')
@ -33,5 +33,3 @@ class PluginWidget(Widget, Ui_Form):
self.opt_mobi_file_type.addItems(['old', 'both', 'new']) self.opt_mobi_file_type.addItems(['old', 'both', 'new'])
self.initialize_options(get_option, get_help, db, book_id) self.initialize_options(get_option, get_help, db, book_id)

View File

@ -12,7 +12,7 @@ format_model = None
class PluginWidget(Widget, Ui_Form): class PluginWidget(Widget, Ui_Form):
TITLE = _('PDB Output') TITLE = _('PDB output')
HELP = _('Options specific to')+' PDB '+_('output') HELP = _('Options specific to')+' PDB '+_('output')
COMMIT_NAME = 'pdb_output' COMMIT_NAME = 'pdb_output'
ICON = I('mimetypes/unknown.png') ICON = I('mimetypes/unknown.png')

View File

@ -10,7 +10,7 @@ from calibre.gui2.convert import Widget, QDoubleSpinBox
class PluginWidget(Widget, Ui_Form): class PluginWidget(Widget, Ui_Form):
TITLE = _('PDF Input') TITLE = _('PDF input')
HELP = _('Options specific to')+' PDF '+_('input') HELP = _('Options specific to')+' PDF '+_('input')
COMMIT_NAME = 'pdf_input' COMMIT_NAME = 'pdf_input'
ICON = I('mimetypes/pdf.png') ICON = I('mimetypes/pdf.png')

View File

@ -12,7 +12,7 @@ format_model = None
class PluginWidget(Widget, Ui_Form): class PluginWidget(Widget, Ui_Form):
TITLE = _('RB Output') TITLE = _('RB output')
HELP = _('Options specific to')+' RB '+_('output') HELP = _('Options specific to')+' RB '+_('output')
COMMIT_NAME = 'rb_output' COMMIT_NAME = 'rb_output'
ICON = I('mimetypes/unknown.png') ICON = I('mimetypes/unknown.png')

View File

@ -12,7 +12,7 @@ from calibre.gui2.convert import Widget
class PluginWidget(Widget, Ui_Form): class PluginWidget(Widget, Ui_Form):
TITLE = _('RTF Input') TITLE = _('RTF input')
HELP = _('Options specific to')+' RTF '+_('input') HELP = _('Options specific to')+' RTF '+_('input')
COMMIT_NAME = 'rtf_input' COMMIT_NAME = 'rtf_input'
ICON = I('mimetypes/rtf.png') ICON = I('mimetypes/rtf.png')
@ -21,4 +21,3 @@ class PluginWidget(Widget, Ui_Form):
Widget.__init__(self, parent, Widget.__init__(self, parent,
['ignore_wmf', ]) ['ignore_wmf', ])
self.initialize_options(get_option, get_help, db, book_id) self.initialize_options(get_option, get_help, db, book_id)

View File

@ -13,7 +13,7 @@ from calibre.ebooks.conversion.plugins.txt_input import MD_EXTENSIONS
class PluginWidget(Widget, Ui_Form): class PluginWidget(Widget, Ui_Form):
TITLE = _('TXT Input') TITLE = _('TXT input')
HELP = _('Options specific to')+' TXT '+_('input') HELP = _('Options specific to')+' TXT '+_('input')
COMMIT_NAME = 'txt_input' COMMIT_NAME = 'txt_input'
ICON = I('mimetypes/txt.png') ICON = I('mimetypes/txt.png')