Changeset 2059
- Timestamp:
- 03/01/10 13:36:26 (5 months ago)
- Files:
-
- 1 modified
-
trunk/src/config/e2_option__default.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/config/e2_option__default.c
r2055 r2059 197 197 group_name = g_strconcat(_C(33) ,":",_C(26),NULL); //_("panes:miscellaneous" 198 198 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, 200 200 E2_OPTION_FLAG_ADVANCED | E2_OPTION_FLAG_FREEGROUP ); //no rebuild 201 201 e2_option_bool_register ("dir-line-focus-after-activate", 202 202 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 becomethe active one"),203 _("After a directory-line is activated, make the pane containing it the active one"), 204 204 NULL, TRUE, 205 205 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 211 217 212 218 group_name = g_strconcat(_C(33) ,":",_C(39),NULL); //_("panes:style"