mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 11:14:02 +02:00
String changes
This commit is contained in:
parent
5847f36df9
commit
f6871844d9
10 changed files with 10 additions and 18 deletions
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
class PluginWidget(Widget, Ui_Form):
|
||||
|
||||
TITLE = _('AZW3 Output')
|
||||
TITLE = _('AZW3 output')
|
||||
HELP = _('Options specific to')+' AZW3 '+_('output')
|
||||
COMMIT_NAME = 'azw3_output'
|
||||
ICON = I('mimetypes/azw3.png')
|
||||
|
|
@ -30,5 +30,3 @@ def __init__(self, parent, get_option, get_help, db=None, book_id=None):
|
|||
self.db, self.book_id = db, book_id
|
||||
|
||||
self.initialize_options(get_option, get_help, db, book_id)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
class PluginWidget(Widget, Ui_Form):
|
||||
|
||||
TITLE = _('FB2 Input')
|
||||
TITLE = _('FB2 input')
|
||||
HELP = _('Options specific to')+' FB2 '+_('input')
|
||||
COMMIT_NAME = 'fb2_input'
|
||||
ICON = I('mimetypes/fb2.png')
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
class PluginWidget(Widget, Ui_Form):
|
||||
|
||||
TITLE = _('HTMLZ Output')
|
||||
TITLE = _('HTMLZ output')
|
||||
HELP = _('Options specific to')+' HTMLZ '+_('output')
|
||||
COMMIT_NAME = 'htmlz_output'
|
||||
ICON = I('mimetypes/html.png')
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
|
||||
class PluginWidget(Widget, Ui_Form):
|
||||
|
||||
TITLE = _('LRF Output')
|
||||
TITLE = _('LRF output')
|
||||
HELP = _('Options specific to')+' LRF '+_('output')
|
||||
COMMIT_NAME = 'lrf_output'
|
||||
ICON = I('mimetypes/lrf.png')
|
||||
|
|
@ -33,6 +33,3 @@ def __init__(self, parent, get_option, get_help, db=None, book_id=None):
|
|||
self.opt_header.toggle(), self.opt_header.toggle()
|
||||
self.opt_render_tables_as_images.toggle()
|
||||
self.opt_render_tables_as_images.toggle()
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
|
||||
class PluginWidget(Widget, Ui_Form):
|
||||
|
||||
TITLE = _('MOBI Output')
|
||||
TITLE = _('MOBI output')
|
||||
HELP = _('Options specific to')+' MOBI '+_('output')
|
||||
COMMIT_NAME = 'mobi_output'
|
||||
ICON = I('mimetypes/mobi.png')
|
||||
|
|
@ -33,5 +33,3 @@ def __init__(self, parent, get_option, get_help, db=None, book_id=None):
|
|||
self.opt_mobi_file_type.addItems(['old', 'both', 'new'])
|
||||
|
||||
self.initialize_options(get_option, get_help, db, book_id)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
class PluginWidget(Widget, Ui_Form):
|
||||
|
||||
TITLE = _('PDB Output')
|
||||
TITLE = _('PDB output')
|
||||
HELP = _('Options specific to')+' PDB '+_('output')
|
||||
COMMIT_NAME = 'pdb_output'
|
||||
ICON = I('mimetypes/unknown.png')
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
class PluginWidget(Widget, Ui_Form):
|
||||
|
||||
TITLE = _('PDF Input')
|
||||
TITLE = _('PDF input')
|
||||
HELP = _('Options specific to')+' PDF '+_('input')
|
||||
COMMIT_NAME = 'pdf_input'
|
||||
ICON = I('mimetypes/pdf.png')
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
class PluginWidget(Widget, Ui_Form):
|
||||
|
||||
TITLE = _('RB Output')
|
||||
TITLE = _('RB output')
|
||||
HELP = _('Options specific to')+' RB '+_('output')
|
||||
COMMIT_NAME = 'rb_output'
|
||||
ICON = I('mimetypes/unknown.png')
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
class PluginWidget(Widget, Ui_Form):
|
||||
|
||||
TITLE = _('RTF Input')
|
||||
TITLE = _('RTF input')
|
||||
HELP = _('Options specific to')+' RTF '+_('input')
|
||||
COMMIT_NAME = 'rtf_input'
|
||||
ICON = I('mimetypes/rtf.png')
|
||||
|
|
@ -21,4 +21,3 @@ def __init__(self, parent, get_option, get_help, db=None, book_id=None):
|
|||
Widget.__init__(self, parent,
|
||||
['ignore_wmf', ])
|
||||
self.initialize_options(get_option, get_help, db, book_id)
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
|
||||
class PluginWidget(Widget, Ui_Form):
|
||||
|
||||
TITLE = _('TXT Input')
|
||||
TITLE = _('TXT input')
|
||||
HELP = _('Options specific to')+' TXT '+_('input')
|
||||
COMMIT_NAME = 'txt_input'
|
||||
ICON = I('mimetypes/txt.png')
|
||||
|
|
|
|||
Loading…
Reference in a new issue