Changeset 2059

Show
Ignore:
Timestamp:
03/01/10 13:36:26 (5 months ago)
Author:
tpgww
Message:

add option for cacheing of goto histories

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/config/e2_option__default.c

    r2055 r2059  
    197197        group_name = g_strconcat(_C(33) ,":",_C(26),NULL);  //_("panes:miscellaneous" 
    198198        e2_option_bool_register ("auto-refresh", group_name, _("auto refresh"), 
    199                 _("This enables automatic checking for changes to the content of displayed directories. Otherwise you need to refresh manually"), NULL, TRUE, 
     199                _("Automatically check for and display file-list changes"), NULL, TRUE, 
    200200                E2_OPTION_FLAG_ADVANCED | E2_OPTION_FLAG_FREEGROUP ); //no rebuild 
    201201        e2_option_bool_register ("dir-line-focus-after-activate", 
    202202                group_name, _("focus the pane after completing a directory entry"), 
    203                 _("If activated, after return/enter is pressed in a directory line, the pane containing that dir line will become the active one"), 
     203                _("After a directory-line is activated, make the pane containing it the active one"), 
    204204                NULL, TRUE, 
    205205                E2_OPTION_FLAG_ADVANCED);       //no rebuild 
    206         e2_option_bool_register ("select-first-item", 
    207                 group_name, _("select first item in newly-opened directories"), 
    208                 _("If activated, when a directory is first displayed in a session, the first item there will be selected"), 
    209                 NULL, FALSE, 
    210                 E2_OPTION_FLAG_ADVANCED);       //no rebuild 
     206        e2_option_bool_register ("select-first-item", group_name, 
     207                _("select first item in newly-opened directories"), 
     208                _("Select the first item in a file-list when a directory is first displayed in a session"), 
     209                NULL, FALSE, 
     210                E2_OPTION_FLAG_ADVANCED);       //no rebuild 
     211        e2_option_bool_register ("cache-history", group_name, 
     212                _("persistent opened-directories history"), 
     213                _("Save opened-directories data for use in the next session"), 
     214                NULL, TRUE, 
     215                E2_OPTION_FLAG_ADVANCED);       //no rebuild, and if changed in-session, 
     216                                                                        //will not affect cacheing of that session 
    211217 
    212218        group_name = g_strconcat(_C(33) ,":",_C(39),NULL); //_("panes:style"