mirror of
https://github.com/neovim/neovim.git
synced 2026-01-26 07:01:54 +10:00
Problem: Cannot translate messages in a Vim script.
Solution: Add gettext(). Try it out for a few messages in the options
window.
0b39c3fd4c
Co-authored-by: Bram Moolenaar <Bram@vim.org>
19 lines
459 B
VimL
19 lines
459 B
VimL
" Invoked with the name "vim.pot" and a list of Vim script names.
|
|
" Converts them to a .js file, stripping comments, so that xgettext works.
|
|
" Javascript is used because, like Vim, it accepts both single and double
|
|
" quoted strings.
|
|
|
|
set shortmess+=A
|
|
|
|
for name in argv()[1:]
|
|
exe 'edit ' .. fnameescape(name)
|
|
|
|
" Strip comments
|
|
g/^\s*"/s/.*//
|
|
|
|
" Write as .js file, xgettext recognizes them
|
|
exe 'w! ' .. fnamemodify(name, ":t:r") .. ".js"
|
|
endfor
|
|
|
|
quit
|