patch 8.2.3197: error messages are spread out

Problem:    Error messages are spread out.
Solution:   Move a few more error messages to errors.h.
diff --git a/src/undo.c b/src/undo.c
index c16bcac..331c1e6 100644
--- a/src/undo.c
+++ b/src/undo.c
@@ -324,7 +324,7 @@
     // In the sandbox it's not allowed to change the text.
     if (sandbox != 0)
     {
-	emsg(_(e_sandbox));
+	emsg(_(e_not_allowed_in_sandbox));
 	return FALSE;
     }
 #endif