view src/po/fixfilenames.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 aa91480771fe
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.

set shortmess+=A

for name in argv()[1:]
  let jsname = fnamemodify(name, ":t:r") .. ".js"
  exe "%s+" .. jsname .. "+" .. substitute(name, '\\', '/', 'g') .. "+"
endfor

write
last
quit