Swedish (sv.UTF-8) Vim documentation translations by Daniel Nylander exist in the repository, but the corresponding entries are missing from runtime/doc/Make_all.mak. This causes the Swedish man pages not to be built and installed.
This patch adds the following Swedish entries to the CONVERTED list:
vim-sv.UTF-8.1evim-sv.UTF-8.1vimdiff-sv.UTF-8.1vimtutor-sv.UTF-8.1xxd-sv.UTF-8.1Thanks to 毛逸宁 for reporting this issue.
https://github.com/vim/vim/pull/19373
(1 file)
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
Hm, don't we need to add corresponding conversion rules to the Makefiles?
I think this is also need:
diff --git a/runtime/doc/Makefile b/runtime/doc/Makefile index 01b2c3e83..5092f822d 100644 --- a/runtime/doc/Makefile +++ b/runtime/doc/Makefile @@ -237,3 +237,18 @@ vimdiff-tr.UTF-8.1: vimdiff-tr.1 vimtutor-tr.UTF-8.1: vimtutor-tr.1 iconv -f latin5 -t UTF-8 $? >$@ + +vim-sv.UTF-8.1: vim-sv.1 + iconv -f latin1 -t UTF-8 $? >$@ + +evim-sv.UTF-8.1: evim-sv.1 + iconv -f latin1 -t UTF-8 $? >$@ + +vimdiff-sv.UTF-8.1: vimdiff-sv.1 + iconv -f latin1 -t UTF-8 $? >$@ + +vimtutor-sv.UTF-8.1: vimtutor-sv.1 + iconv -f latin1 -t UTF-8 $? >$@ + +xxd-sv.UTF-8.1: xxd-sv.1 + iconv -f latin1 -t UTF-8 $? >$@
For Make_mvc it looks like the conversion rules are already there, so is not needed there.
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.![]()
Ah, good catch, thanks
—
Reply to this email directly, view it on GitHub.
You are receiving this because you are subscribed to this thread.![]()