diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-06-07 20:17:11 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-06-07 20:17:11 +0200 |
commit | 235840336312c73d72d30f38b2e628f98b62f353 (patch) | |
tree | 337c5d9646ad4d6f877323cd3dbd303805fcb9b1 /src/screen.c | |
parent | 3798519b9eb1f3c8c614c2d21743660a2a2cf947 (diff) | |
download | vim-235840336312c73d72d30f38b2e628f98b62f353.zip |
updated for version 7.3.1144
Problem: "RO" is not translated everywhere.
Solution: Put inside _(). (Sergey Alyoshin)
Diffstat (limited to 'src/screen.c')
-rw-r--r-- | src/screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/screen.c b/src/screen.c index cf6ed7306..86d43cb1b 100644 --- a/src/screen.c +++ b/src/screen.c @@ -6281,7 +6281,7 @@ win_redr_status(wp) } if (wp->w_buffer->b_p_ro) { - STRCPY(p + len, "[RO]"); + STRCPY(p + len, _("[RO]")); len += 4; } |