This commit is contained in:
Kovid Goyal 2017-04-13 09:25:06 +05:30
parent 2a296baa07
commit 3223f83253

View File

@ -410,28 +410,32 @@ OptionRecommendation(name='margin_top',
help=_('Set the top margin in pts. Default is %default. ' 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). ' '(the margin setting in the original document will be preserved). '
'Note: 72 pts equals 1 inch')), 'Note: Page oriented formats such as PDF and DOCX have their own'
' margin settings that take precedence.')),
OptionRecommendation(name='margin_bottom', OptionRecommendation(name='margin_bottom',
recommended_value=5.0, level=OptionRecommendation.LOW, recommended_value=5.0, level=OptionRecommendation.LOW,
help=_('Set the bottom margin in pts. Default is %default. ' 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). ' '(the margin setting in the original document will be preserved). '
'Note: 72 pts equals 1 inch')), 'Note: Page oriented formats such as PDF and DOCX have their own'
' margin settings that take precedence.')),
OptionRecommendation(name='margin_left', OptionRecommendation(name='margin_left',
recommended_value=5.0, level=OptionRecommendation.LOW, recommended_value=5.0, level=OptionRecommendation.LOW,
help=_('Set the left margin in pts. Default is %default. ' 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). ' '(the margin setting in the original document will be preserved). '
'Note: 72 pts equals 1 inch')), 'Note: Page oriented formats such as PDF and DOCX have their own'
' margin settings that take precedence.')),
OptionRecommendation(name='margin_right', OptionRecommendation(name='margin_right',
recommended_value=5.0, level=OptionRecommendation.LOW, recommended_value=5.0, level=OptionRecommendation.LOW,
help=_('Set the right margin in pts. Default is %default. ' 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). ' '(the margin setting in the original document will be preserved). '
'Note: 72 pts equals 1 inch')), 'Note: Page oriented formats such as PDF and DOCX have their own'
' margin settings that take precedence.')),
OptionRecommendation(name='change_justification', OptionRecommendation(name='change_justification',
recommended_value='original', level=OptionRecommendation.LOW, recommended_value='original', level=OptionRecommendation.LOW,