summaryrefslogtreecommitdiff
path: root/uvim/src/po/tojavascript.mnv
blob: 384ca744eb55cd6d5e70a45f4db13a2a0b1604a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
" Invoked with the name "mnv.pot" and a list of MNV script names.
" Converts them to a .js file, stripping comments, so that xgettext works.
" Javascript is used because, like MNV, it accepts both single and double
" quoted strings.

set shortmess+=A

let s:namenum = 0
let s:fls = []
for s:name in argv()[1:]
  exe 'edit ' .. fnameescape(s:name)

  " Strip comments, also after :set commands.
  g/^\s*"/s/.*//
  g/^\s*set .*"/s/.*//

  " Write as .js file, xgettext recognizes them
  let s:fl = fnamemodify(s:name, ":t:r") .. s:namenum .. ".js"
  exe 'w! ' .. s:fl
  call add(s:fls, s:fl)
  let s:namenum += 1
endfor
call writefile(s:fls, "mnv_to_js")
quit