view src/po/tojavascript.vim @ 32989:1afe5905b8b7

translation(ua): Update Ukrainian translation (#12916) Commit: https://github.com/vim/vim/commit/fa0094e1629332751d62416eb7f122181605ff5f Author: Anatolii Sakhnik <sakhnik@gmail.com> Date: Sat Aug 26 12:00:54 2023 -0400 translation(ua): Update Ukrainian translation (https://github.com/vim/vim/issues/12916) Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Sat, 26 Aug 2023 18:15:03 +0200
parents 695b50472e85
children 04563887d70e
line wrap: on
line source

" 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, also after :set commands.
  g/^\s*"/s/.*//
  g/^\s*set .*"/s/.*//

  " Write as .js file, xgettext recognizes them
  exe 'w! ' .. fnamemodify(name, ":t:r") .. ".js"
endfor

quit