1
0
forked from aniani/vim

patch 8.1.0701: sign message not translated and inconsistent spacing

Problem:    Sign message not translated and inconsistent spacing.
Solution:   Add _() for translation.  Add a space. (Ken Takata)  Also use
            MSG_BUF_LEN instead of BUFSIZ.
This commit is contained in:
Bram Moolenaar
2019-01-07 21:16:53 +01:00
parent 04b4e1a424
commit d730c8e297
3 changed files with 31 additions and 29 deletions

View File

@@ -607,8 +607,8 @@ sign_list_placed(buf_T *rbuf, char_u *sign_group)
{ {
buf_T *buf; buf_T *buf;
signlist_T *sign; signlist_T *sign;
char lbuf[BUFSIZ]; char lbuf[MSG_BUF_LEN];
char group[BUFSIZ]; char group[MSG_BUF_LEN];
MSG_PUTS_TITLE(_("\n--- Signs ---")); MSG_PUTS_TITLE(_("\n--- Signs ---"));
msg_putchar('\n'); msg_putchar('\n');
@@ -620,7 +620,7 @@ sign_list_placed(buf_T *rbuf, char_u *sign_group)
{ {
if (buf->b_signlist != NULL) if (buf->b_signlist != NULL)
{ {
vim_snprintf(lbuf, BUFSIZ, _("Signs for %s:"), buf->b_fname); vim_snprintf(lbuf, MSG_BUF_LEN, _("Signs for %s:"), buf->b_fname);
MSG_PUTS_ATTR(lbuf, HL_ATTR(HLF_D)); MSG_PUTS_ATTR(lbuf, HL_ATTR(HLF_D));
msg_putchar('\n'); msg_putchar('\n');
} }
@@ -631,12 +631,12 @@ sign_list_placed(buf_T *rbuf, char_u *sign_group)
if (!sign_in_group(sign, sign_group)) if (!sign_in_group(sign, sign_group))
continue; continue;
if (sign->group != NULL) if (sign->group != NULL)
vim_snprintf(group, BUFSIZ, " group=%s", vim_snprintf(group, MSG_BUF_LEN, _(" group=%s"),
sign->group->sg_name); sign->group->sg_name);
else else
group[0] = '\0'; group[0] = '\0';
vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d%s name=%s " vim_snprintf(lbuf, MSG_BUF_LEN,
"priority=%d"), _(" line=%ld id=%d%s name=%s priority=%d"),
(long)sign->lnum, sign->id, group, (long)sign->lnum, sign->id, group,
sign_typenr2name(sign->typenr), sign->priority); sign_typenr2name(sign->typenr), sign->priority);
MSG_PUTS(lbuf); MSG_PUTS(lbuf);

View File

@@ -799,6 +799,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
701,
/**/ /**/
700, 700,
/**/ /**/