summaryrefslogtreecommitdiff
path: root/mnv/src/po/tojavascript.mnv
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-04 16:31:32 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-04 16:47:16 +0300
commit146c889dde5ef0908d66ab2c1e1aa6b6ceef6deb (patch)
tree773cb664c164bd46f7588286913cc4a4957e3ec6 /mnv/src/po/tojavascript.mnv
parent580d07d58fdf879a895878a456124a58040c2d3b (diff)
downloadProject-Tick-146c889dde5ef0908d66ab2c1e1aa6b6ceef6deb.tar.gz
Project-Tick-146c889dde5ef0908d66ab2c1e1aa6b6ceef6deb.zip
NOISSUE changed icons to mnv icons for mnv and removed localization support
MNV - MNV's not Vim 10.0.2 released Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'mnv/src/po/tojavascript.mnv')
-rw-r--r--mnv/src/po/tojavascript.mnv24
1 files changed, 0 insertions, 24 deletions
diff --git a/mnv/src/po/tojavascript.mnv b/mnv/src/po/tojavascript.mnv
deleted file mode 100644
index 384ca744eb..0000000000
--- a/mnv/src/po/tojavascript.mnv
+++ /dev/null
@@ -1,24 +0,0 @@
-" 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