patch 9.0.1523: some error messages are not marked for translation

Problem:    Some error messages are not marked for translation.
Solution:   Surround the messages in _(). (closes #12356)
diff --git a/src/vim9compile.c b/src/vim9compile.c
index f045c74..477f5ee 100644
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -2156,7 +2156,7 @@
 	dest_type = lhs->lhs_type->tt_type;
 	if (dest_type == VAR_DICT && range)
 	{
-	    emsg(e_cannot_use_range_with_dictionary);
+	    emsg(_(e_cannot_use_range_with_dictionary));
 	    return FAIL;
 	}
 	if (dest_type == VAR_DICT