Skip to content

Commit

Permalink
Localize the time format of E325 message
Browse files Browse the repository at this point in the history
  • Loading branch information
k-takata committed Jul 16, 2019
1 parent 3c75760 commit 93537c4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/memline.c
Original file line number Diff line number Diff line change
Expand Up @@ -2143,7 +2143,8 @@ get_ctime(time_t thetime, int add_newline)
vim_strncpy((char_u *)buf, (char_u *)_("(Invalid)"), sizeof(buf) - 1);
else
{
(void)strftime(buf, sizeof(buf) - 1, "%a %b %d %H:%M:%S %Y", curtime);
(void)strftime(buf, sizeof(buf) - 1, _("%a %b %d %H:%M:%S %Y"),
curtime);
# ifdef MSWIN
if (enc_codepage >= 0 && (int)GetACP() != enc_codepage)
{
Expand Down

0 comments on commit 93537c4

Please sign in to comment.