0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

patch 8.2.3975: error messages are spread out

Problem:    Error messages are spread out.
Solution:   Move more error messages to errors.h.
This commit is contained in:
Bram Moolenaar
2022-01-01 19:33:50 +00:00
parent 1f4a3457a3
commit cbadefe25a
14 changed files with 104 additions and 34 deletions

View File

@@ -2062,7 +2062,7 @@ gui_mch_get_fontset(
if (giveErrorIfMissing)
{
semsg(_("E250: Fonts for the following charsets are missing in fontset %s:"), name);
semsg(_(e_fonts_for_the_following_charsets_are_missing_in_fontset), name);
for (i = 0; i < num_missing; i++)
semsg("%s", missing[i]);
}
@@ -2104,8 +2104,8 @@ check_fontset_sanity(XFontSet fs)
{
if (xfs[i]->max_bounds.width != xfs[i]->min_bounds.width)
{
semsg(_("E252: Fontset name: %s"), base_name);
semsg(_("Font '%s' is not fixed-width"), font_name[i]);
semsg(_(e_fontsent_name_str_font_str_is_not_fixed_width),
base_name, font_name[i]);
return FAIL;
}
}
@@ -2124,7 +2124,7 @@ check_fontset_sanity(XFontSet fs)
if ( xfs[i]->max_bounds.width != 2 * min_width
&& xfs[i]->max_bounds.width != min_width)
{
semsg(_("E253: Fontset name: %s"), base_name);
semsg(_(e_fontset_name_str), base_name);
semsg(_("Font0: %s"), font_name[min_font_idx]);
semsg(_("Font%d: %s"), i, font_name[i]);
semsg(_("Font%d width is not twice that of font0"), i);