commit 854a44a4149885b85617f38a1969c6bdb4e1525b
parent 939d4239d42bc023e529260a042b8272e3e835d9
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date: Mon, 24 Apr 2006 21:14:55 +0000
more cosmetic fixes
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3427 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
M | src/global.c | | | 56 | +++++++++++++++++++++++++++++--------------------------- |
1 file changed, 29 insertions(+), 27 deletions(-)
diff --git a/src/global.c b/src/global.c
@@ -337,40 +337,35 @@ void shortcut_init(bool unjustify)
const char *nano_mark_msg = N_("Mark text at the cursor position");
const char *nano_whereis_next_msg = N_("Repeat last search");
#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_back_msg = N_("Move back one character");
- const char *nano_home_msg =
- N_("Move to the beginning of the current line");
- const char *nano_end_msg =
- 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
+ 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 =
+ N_("Move to the beginning of the current line");
+ const char *nano_end_msg =
+ N_("Move to the end of the current line");
#ifndef DISABLE_JUSTIFY
const char *nano_parabegin_msg =
N_("Move to the beginning of the current paragraph");
const char *nano_paraend_msg =
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
#ifdef ENABLE_MULTIBUFFER
const char *nano_prevfile_msg =
N_("Switch to the previous file buffer");
@@ -379,6 +374,14 @@ void shortcut_init(bool unjustify)
#endif
const char *nano_verbatim_msg =
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
const char *nano_cut_till_end_msg =
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");
#endif
#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
- 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");
+ const char *nano_refresh_msg =
+ N_("Refresh (redraw) the current screen");
#ifndef NANO_TINY
const char *nano_case_msg =
N_("Make the current search/replace case (in)sensitive");