From 8716d82a81478ab285d2373ca45d8456548619d0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 10 Aug 2013 08:11:46 +0530 Subject: [PATCH] Make the help text for the margin options more explicit --- src/calibre/ebooks/conversion/plumber.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/calibre/ebooks/conversion/plumber.py b/src/calibre/ebooks/conversion/plumber.py index d4bdeb4562..73e76b72d0 100644 --- a/src/calibre/ebooks/conversion/plumber.py +++ b/src/calibre/ebooks/conversion/plumber.py @@ -384,25 +384,29 @@ OptionRecommendation(name='remove_fake_margins', OptionRecommendation(name='margin_top', recommended_value=5.0, level=OptionRecommendation.LOW, help=_('Set the top margin in pts. Default is %default. ' - 'Setting this to less than zero will cause no margin to be set. ' + 'Setting this to less than zero will cause no margin to be set ' + '(the margin setting in the original document will be preserved). ' 'Note: 72 pts equals 1 inch')), OptionRecommendation(name='margin_bottom', recommended_value=5.0, level=OptionRecommendation.LOW, help=_('Set the bottom margin in pts. Default is %default. ' - 'Setting this to less than zero will cause no margin to be set. ' + 'Setting this to less than zero will cause no margin to be set ' + '(the margin setting in the original document will be preserved). ' 'Note: 72 pts equals 1 inch')), OptionRecommendation(name='margin_left', recommended_value=5.0, level=OptionRecommendation.LOW, help=_('Set the left margin in pts. Default is %default. ' - 'Setting this to less than zero will cause no margin to be set. ' + 'Setting this to less than zero will cause no margin to be set ' + '(the margin setting in the original document will be preserved). ' 'Note: 72 pts equals 1 inch')), OptionRecommendation(name='margin_right', recommended_value=5.0, level=OptionRecommendation.LOW, help=_('Set the right margin in pts. Default is %default. ' - 'Setting this to less than zero will cause no margin to be set. ' + 'Setting this to less than zero will cause no margin to be set ' + '(the margin setting in the original document will be preserved). ' 'Note: 72 pts equals 1 inch')), OptionRecommendation(name='change_justification',