Ticket #2165: mc_2165_doc.patch

File mc_2165_doc.patch, 1.7 KB (added by egmont, 10 years ago)

doc fix suggestion

  • doc/man/mc.1.in

    diff --git a/doc/man/mc.1.in b/doc/man/mc.1.in
    index 087d3cd..d1ca8c1 100644
    a b confirm. 
    17721772The 
    17731773.\"LINK2" 
    17741774Appearance 
    1775 .\"Skins" 
     1775.\"Appearance" 
    17761776command pops up a dialog from which you specify the skin. 
    17771777.PP 
    17781778The 
    to the the panel sort order: case sensitive or not. 
    21292129In this dialog you configure the confirmation options for file deletion, 
    21302130overwriting files, execution by pressing enter, quitting the program, 
    21312131directory hotlist entries deletion and history cleanup. 
     2132.\"NODE "    Appearance" 
     2133.SH "    Appearance" 
     2134In this dialog you can select the skin to be used. 
     2135.PP 
     2136See the 
     2137.\"LINK2" 
     2138Skins 
     2139.\"Skins" 
     2140section for technical details about the skin definition files. 
    21322141.\"NODE "    Display bits" 
    21332142.SH "    Display bits" 
    21342143This is used to configure the range of visible characters on the 
  • src/filemanager/boxes.c

    diff --git a/src/filemanager/boxes.c b/src/filemanager/boxes.c
    index 5968095..1de6f7d 100644
    a b sel_skin_button (WButton * button, int action) 
    559559    lxx = COLS / 2; 
    560560    lyy = (LINES - 13) / 2; 
    561561    skin_dlg = 
    562         dlg_create (TRUE, lyy, lxx, 13, 24, dialog_colors, NULL, NULL, "[Skins]", _("Skins"), 
     562        dlg_create (TRUE, lyy, lxx, 13, 24, dialog_colors, NULL, NULL, "[Appearance]", _("Skins"), 
    563563                    DLG_COMPACT); 
    564564 
    565565    skin_list = listbox_new (1, 1, 11, 22, FALSE, NULL); 
    appearance_box (void) 
    613613 
    614614        quick_dialog_t qdlg = { 
    615615            -1, -1, 54, 
    616             N_("Appearance"), "[Skins]", 
     616            N_("Appearance"), "[Appearance]", 
    617617            quick_widgets, dlg_default_callback, NULL 
    618618        }; 
    619619