diff --git a/ChangeLog b/ChangeLog index 3580c87d9..8b8b8d39a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ + +2009-02-21 Mikhail Pobolovets + * src/find.c: Micro fix for 'Skip hidden' shortcut + It's now Alt+k instead of Alt+p + 2009-02-24 Andrew Borodin * src/menu.c: menubar_paint_idx(): fixed menu painting for NCurses screen library. diff --git a/src/find.c b/src/find.c index b403376fb..d025f41b0 100644 --- a/src/find.c +++ b/src/find.c @@ -197,7 +197,7 @@ find_parameters (char **start_dir, char **pattern, char **content) char *temp_dir; static const char *case_label = N_("case &Sensitive"); static const char *recurs_label = N_("&Find recursively"); - static const char *skip_hidden_label = N_("Ski&p hidden"); + static const char *skip_hidden_label = N_("S&kip hidden"); static const char *regexp_label = N_("&Regular expression"); WCheck *recursively_cbox;