more cosmetic fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3427 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2006-04-24 21:14:55 +00:00
parent 939d4239d4
commit 854a44a414
1 changed files with 29 additions and 27 deletions

View File

@ -337,39 +337,34 @@ void shortcut_init(bool unjustify)
const char *nano_mark_msg = N_("Mark text at the cursor position"); const char *nano_mark_msg = N_("Mark text at the cursor position");
const char *nano_whereis_next_msg = N_("Repeat last search"); const char *nano_whereis_next_msg = N_("Repeat last search");
#endif #endif
const char *nano_prevline_msg = N_("Move to the previous line");
const char *nano_nextline_msg = N_("Move to the next line");
const char *nano_forward_msg = N_("Move forward one character"); const char *nano_forward_msg = N_("Move forward one character");
const char *nano_back_msg = N_("Move back one character"); const char *nano_back_msg = N_("Move back one character");
#ifndef NANO_TINY
const char *nano_nextword_msg = N_("Move forward one word");
const char *nano_prevword_msg = N_("Move backward one word");
#endif
const char *nano_prevline_msg = N_("Move to the previous line");
const char *nano_nextline_msg = N_("Move to the next line");
const char *nano_home_msg = const char *nano_home_msg =
N_("Move to the beginning of the current line"); N_("Move to the beginning of the current line");
const char *nano_end_msg = const char *nano_end_msg =
N_("Move to the end of the current line"); N_("Move to the end of the current line");
const char *nano_delete_msg =
N_("Delete the character under the cursor");
const char *nano_backspace_msg =
N_("Delete the character to the left of the cursor");
const char *nano_tab_msg =
N_("Insert a tab character at the cursor position");
const char *nano_enter_msg =
N_("Insert a new line at the cursor position");
const char *nano_refresh_msg =
N_("Refresh (redraw) the current screen");
#ifndef NANO_TINY
const char *nano_nextword_msg = N_("Move forward one word");
const char *nano_prevword_msg = N_("Move backward one word");
const char *nano_wordcount_msg =
N_("Count the number of words, lines, and characters");
const char *nano_scrollup_msg =
N_("Scroll up one line without scrolling the cursor");
const char *nano_scrolldown_msg =
N_("Scroll down one line without scrolling the cursor");
#endif
#ifndef DISABLE_JUSTIFY #ifndef DISABLE_JUSTIFY
const char *nano_parabegin_msg = const char *nano_parabegin_msg =
N_("Move to the beginning of the current paragraph"); N_("Move to the beginning of the current paragraph");
const char *nano_paraend_msg = const char *nano_paraend_msg =
N_("Move to the end of the current paragraph"); N_("Move to the end of the current paragraph");
#endif
const char *nano_firstline_msg =
N_("Move to the first line of the file");
const char *nano_lastline_msg =
N_("Move to the last line of the file");
#ifndef NANO_TINY
const char *nano_bracket_msg = N_("Move to the matching bracket");
const char *nano_scrollup_msg =
N_("Scroll up one line without scrolling the cursor");
const char *nano_scrolldown_msg =
N_("Scroll down one line without scrolling the cursor");
#endif #endif
#ifdef ENABLE_MULTIBUFFER #ifdef ENABLE_MULTIBUFFER
const char *nano_prevfile_msg = const char *nano_prevfile_msg =
@ -379,6 +374,14 @@ void shortcut_init(bool unjustify)
#endif #endif
const char *nano_verbatim_msg = const char *nano_verbatim_msg =
N_("Insert the next keystroke verbatim"); N_("Insert the next keystroke verbatim");
const char *nano_tab_msg =
N_("Insert a tab character at the cursor position");
const char *nano_enter_msg =
N_("Insert a new line at the cursor position");
const char *nano_delete_msg =
N_("Delete the character under the cursor");
const char *nano_backspace_msg =
N_("Delete the character to the left of the cursor");
#ifndef NANO_TINY #ifndef NANO_TINY
const char *nano_cut_till_end_msg = const char *nano_cut_till_end_msg =
N_("Cut from the cursor position to the end of the file"); N_("Cut from the cursor position to the end of the file");
@ -387,12 +390,11 @@ void shortcut_init(bool unjustify)
const char *nano_fulljustify_msg = N_("Justify the entire file"); const char *nano_fulljustify_msg = N_("Justify the entire file");
#endif #endif
#ifndef NANO_TINY #ifndef NANO_TINY
const char *nano_bracket_msg = N_("Move to the matching bracket"); const char *nano_wordcount_msg =
N_("Count the number of words, lines, and characters");
#endif #endif
const char *nano_firstline_msg = const char *nano_refresh_msg =
N_("Move to the first line of the file"); N_("Refresh (redraw) the current screen");
const char *nano_lastline_msg =
N_("Move to the last line of the file");
#ifndef NANO_TINY #ifndef NANO_TINY
const char *nano_case_msg = const char *nano_case_msg =
N_("Make the current search/replace case (in)sensitive"); N_("Make the current search/replace case (in)sensitive");