Normalizing the writing of "Write Out", "Uncut Text", and "Unjustify".


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4640 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
diff --git a/src/global.c b/src/global.c
index ac6359b..ca0e503 100644
--- a/src/global.c
+++ b/src/global.c
@@ -768,7 +768,7 @@
 #endif
 
     /* TRANSLATORS: Try to keep this at most 10 characters. */
-    add_to_funcs(do_writeout_void, MMAIN, N_("WriteOut"),
+    add_to_funcs(do_writeout_void, MMAIN, N_("Write Out"),
 	IFSCHELP(nano_writeout_msg), FALSE, NOVIEW);
 
     /* We allow inserting files in view mode if multibuffers are
@@ -818,11 +818,11 @@
 
     if (unjustify)
 	/* TRANSLATORS: Try to keep this at most 10 characters. */
-	add_to_funcs(do_uncut_text, MMAIN, N_("UnJustify"), "",
+	add_to_funcs(do_uncut_text, MMAIN, N_("Unjustify"), "",
 	    FALSE, NOVIEW);
     else
 	/* TRANSLATORS: Try to keep this at most 10 characters. */
-	add_to_funcs(do_uncut_text, MMAIN, N_("UnCut Text"), IFSCHELP(nano_uncut_msg),
+	add_to_funcs(do_uncut_text, MMAIN, N_("Uncut Text"), IFSCHELP(nano_uncut_msg),
 	    FALSE, NOVIEW);
 
 #ifndef NANO_TINY