mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 22:48:34 +00:00
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.
d730c8e297
This commit is contained in:
@@ -594,8 +594,8 @@ void sign_list_placed(buf_T *rbuf, char_u *sign_group)
|
||||
{
|
||||
buf_T *buf;
|
||||
signlist_T *sign;
|
||||
char lbuf[BUFSIZ];
|
||||
char group[BUFSIZ];
|
||||
char lbuf[MSG_BUF_LEN];
|
||||
char group[MSG_BUF_LEN];
|
||||
|
||||
MSG_PUTS_TITLE(_("\n--- Signs ---"));
|
||||
msg_putchar('\n');
|
||||
@@ -606,7 +606,7 @@ void sign_list_placed(buf_T *rbuf, char_u *sign_group)
|
||||
}
|
||||
while (buf != NULL && !got_int) {
|
||||
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_putchar('\n');
|
||||
}
|
||||
@@ -618,14 +618,15 @@ void sign_list_placed(buf_T *rbuf, char_u *sign_group)
|
||||
continue;
|
||||
}
|
||||
if (sign->group != NULL) {
|
||||
vim_snprintf(group, BUFSIZ, " group=%s", sign->group->sg_name);
|
||||
vim_snprintf(group, MSG_BUF_LEN, _(" group=%s"),
|
||||
sign->group->sg_name);
|
||||
} else {
|
||||
group[0] = '\0';
|
||||
}
|
||||
vim_snprintf(lbuf, BUFSIZ, _(" line=%ld id=%d%s name=%s "
|
||||
"priority=%d"),
|
||||
(long)sign->lnum, sign->id, group,
|
||||
sign_typenr2name(sign->typenr), sign->priority);
|
||||
vim_snprintf(lbuf, MSG_BUF_LEN,
|
||||
_(" line=%ld id=%d%s name=%s priority=%d"),
|
||||
(long)sign->lnum, sign->id, group,
|
||||
sign_typenr2name(sign->typenr), sign->priority);
|
||||
MSG_PUTS(lbuf);
|
||||
msg_putchar('\n');
|
||||
}
|
||||
|
Reference in New Issue
Block a user