Changeset 2783 in products


Ignore:
Timestamp:
Sep 3, 2010 4:36:39 PM (16 years ago)
Author:
chervol
Message:

fixed labels and descriptions on control panel

File:
1 edited

Legend:

Unmodified
Added
Removed
  • quintagroup.dropdownmenu/trunk/quintagroup/dropdownmenu/interfaces.py

    r1206 r2783  
    2020    show_icons = schema.Bool( 
    2121        title=_(u"Show tabs icons"), 
    22         description=_(u"Use this setting to enable or disable icons for menu " 
     22        description=_(u"Use this setting to switch on/off icons for menu " 
    2323                      u"items."), 
    2424        default=False) 
    2525 
    2626    show_content_tabs = schema.Bool( 
    27         title=_(u"Show content tabs"), 
    28         description=_(u"Use this setting to enable or disable content structure " 
    29                       u"based (autogenerated) portal tabs."), 
     27        title=_(u"Show navigation strategy based dropdown menu"), 
     28        description=_(u"Use this setting to switch on/off navigation " 
     29                      u"strategy built dropdown menu"), 
    3030        default=True) 
    3131 
    3232    show_nonfolderish_tabs = schema.Bool( 
    33         title=_(u"Show non-folderish content tabs"), 
    34         description=_(u"Use this setting to enable or disable non-folderish " 
    35                       u"content structure based (autogenerated) portal tabs. " 
    36                       u"This setting doesn't make sense in case Show content " 
    37                       u"tabs is switched off."), 
     33        title=_(u"Show non-folderish menu items"), 
     34        description=_(u"Use this setting to switch on/off non-folderish " 
     35                      u"objects in navigation strategy based dropdown menu"), 
    3836        default=True) 
    3937 
    4038    content_before_actions_tabs = schema.Bool( 
    4139        title=_(u"Show content tabs before portal_actions tabs"), 
    42         description=_(u"By default portal_actons based tabs are placed before " 
    43                       u"those autogenerated from content structure. Check this " 
    44                       u"option to revert the behaviour."), 
     40        description=_(u""), 
    4541        default=False) 
    4642 
    4743    content_tabs_level = schema.Int( 
    48         title=_(u"Content tabs level"), 
    49         description=_(u"How many folders should be included before the " 
    50                       u"nested menu stops. 0 means no limit. 1 only includes " 
    51                       u"the root folder."), 
     44        title=_(u"Navigation strategy dropdown menu depth"), 
     45        description=_(u"How many levels folders to list after the " 
     46                      u"top level."), 
    5247        default=0) 
    5348 
     
    5550        title=_(u"Show actions tabs"), 
    5651        description=_(u"Use this setting to enable or disable portal_actions " 
    57                       u"based portal tabs."), 
     52                      u"based dropdown menu"), 
    5853        default=True) 
    5954 
    6055    actions_tabs_level = schema.Int( 
    61         title=_(u"Actions tabs level"), 
    62         description=_(u"How many folders should be included before the " 
    63                       u"nested menu stops. 0 means no limit. 1 only includes " 
    64                       u"the root folder."), 
     56        title=_(u"Actions dropdown menu depth"), 
     57        description=_(u"How many levels of portal_actions to list after the " 
     58                      u"top level."), 
    6559        default=0) 
    6660 
    6761    actions_category = schema.TextLine( 
    68         title=_(u"Portal actions category"), 
    69         description=_(u"Root portal actions tool's category name to extract " 
    70                       u"tabs from."), 
     62        title=_(u"Root portal actions category"), 
     63        description=_(u"Root category id of portal_actions based dropdown " 
     64                      u"menu tree"), 
    7165        default=u"portal_tabs") 
    7266 
    7367    nested_category_prefix = schema.TextLine( 
    7468        title=_(u"Nested category prefix"), 
    75         description=_(u"Because portal_actions category object couldn't serve as" 
    76                       u" action itself we need to create appropriate action " 
    77                       u"for it. Prefix and sufix strings are used to make up " 
    78                       u"id for category while linking action to action category." 
    79                       u"E.g.: action id is 'index_html', prefix is 'pre_', sufix" 
    80                       u" is equal to '_sub' then category object with id equal " 
    81                       u"to 'pre_index_html_sub' will be looked up on the same " 
    82                       u"level to get nested menu for 'index_html' action."), 
     69        description=_(u"Prefix of category id, used to bind category with action"), 
    8370        default=u"", 
    8471        required=False) 
     
    8673    nested_category_sufix = schema.TextLine( 
    8774        title=_(u"Nested category sufix"), 
    88         description=_(u"Sufix part of the category id to be looked up during " 
    89                       u"linking with action."), 
     75        description=_(u"Sufix of category id, used to bind category with action"), 
    9076        default=u"_sub", 
    9177        required=False) 
Note: See TracChangeset for help on using the changeset viewer.