forked from aniani/vim
patch 9.1.0229: Error E877 is not translated
Problem: Error E877 is not translated (RestorerZ) Solution: Declare the error with N_ to mark it as translatable, add _() around the error message in regexp_nfa.c fixes: #14333 Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
@@ -5150,7 +5150,7 @@ check_char_class(int class, int c)
|
||||
|
||||
default:
|
||||
// should not be here :P
|
||||
siemsg(e_nfa_regexp_invalid_character_class_nr, class);
|
||||
siemsg(_(e_nfa_regexp_invalid_character_class_nr), class);
|
||||
return FAIL;
|
||||
}
|
||||
return FAIL;
|
||||
|
Reference in New Issue
Block a user