summaryrefslogtreecommitdiffstats
path: root/src/textprop.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-01-02 18:10:04 +0000
committerBram Moolenaar <Bram@vim.org>2023-01-02 18:10:04 +0000
commita9fa8c58fbcc5cf8850f6963c509de272f4d4bbf (patch)
tree891f3c44b937d7a4a7492b83826ca114c31f22ff /src/textprop.c
parentdc4daa3a3915fba11ac87d27977240d9a5e0d47d (diff)
patch 9.0.1133: error message names do not match the itemsv9.0.1133
Problem: Error message names do not match the items. Solution: Add "_str" when the text contains "%s".
Diffstat (limited to 'src/textprop.c')
-rw-r--r--src/textprop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/textprop.c b/src/textprop.c
index a9778b547f..241c4ae94b 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -98,7 +98,7 @@ lookup_prop_type(char_u *name, buf_T *buf)
if (type == NULL)
type = find_prop_type(name, NULL);
if (type == NULL)
- semsg(_(e_type_not_exist), name);
+ semsg(_(e_property_type_str_does_not_exist), name);
return type;
}
@@ -1825,7 +1825,7 @@ prop_type_set(typval_T *argvars, int add)
{
if (prop == NULL)
{
- semsg(_(e_type_not_exist), name);
+ semsg(_(e_property_type_str_does_not_exist), name);
return;
}
}