Mercurial > vim
annotate src/po/fixfilenames.vim @ 29898:3276298c67c5 v9.0.0287
patch 9.0.0287: Irix systems no longer exist
Commit: https://github.com/vim/vim/commit/aebc6ef7cdc5d4d0627a711ff66e6fe8d67f9d87
Author: Yegappan Lakshmanan <yegappan@yahoo.com>
Date: Sat Aug 27 21:24:26 2022 +0100
patch 9.0.0287: Irix systems no longer exist
Problem: Irix systems no longer exist.
Solution: Remove references to Irix. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/10994)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 27 Aug 2022 22:30:03 +0200 |
parents | aa91480771fe |
children | 04563887d70e |
rev | line source |
---|---|
21989
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
1 " Invoked with the name "vim.pot" and a list of Vim script names. |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
2 " Converts them to a .js file, stripping comments, so that xgettext works. |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
3 |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
4 set shortmess+=A |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
5 |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
6 for name in argv()[1:] |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
7 let jsname = fnamemodify(name, ":t:r") .. ".js" |
22071
aa91480771fe
patch 8.2.1585: messages in globals.h not translated
Bram Moolenaar <Bram@vim.org>
parents:
21989
diff
changeset
|
8 exe "%s+" .. jsname .. "+" .. substitute(name, '\\', '/', 'g') .. "+" |
21989
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
9 endfor |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
10 |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
11 write |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
12 last |
52e970719f4b
patch 8.2.1544: cannot translate messages in a Vim script
Bram Moolenaar <Bram@vim.org>
parents:
diff
changeset
|
13 quit |