File tree Expand file tree Collapse file tree 4 files changed +14
-11
lines changed
Expand file tree Collapse file tree 4 files changed +14
-11
lines changed Original file line number Diff line number Diff line change 55" Last Change: 28-Jan-2016.
66"
77" Copyright (C) 2001-2016 MURAOKA Taro <koron.kaoriya@gmail.com>,
8- " vim-jp ( http://vim-jp.org/)
8+ " vim-jp < http://vim-jp.org/>
99"
1010" THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
1111
@@ -174,6 +174,10 @@ menutrans Set\ language\ to\ "en_nz" 言語を\ "en_nz"\ に設定する
174174menutrans Set\ language \ to \ " en_us" 言語を\ " en_us" \ に設定する
175175menutrans &Find\ More\ Languages 他の言語を検索する(&F)
176176
177+ let g: menutrans_spell_change_ARG_to = ' "%s"\ を変更'
178+ let g: menutrans_spell_add_ARG_to_word_list = ' "%s"\ を単語リストに追加'
179+ let g: menutrans_spell_ignore_ARG = ' "%s"\ を無視'
180+
177181" Tools.Fold Menu
178182menutrans &Folding 折畳み(&F)
179183" open close folds
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ ja.sjis.po: $(MASTER_PO)
2525
2626ja.euc-jp.po : $(MASTER_PO )
2727 iconv -f utf-8 -t euc-jp $< | \
28- sed -e ' s/charset=utf -8/charset=euc-jp/' -e ' s/# Original translations/# Generated from ja.po, DO NOT EDIT/' > $@
28+ sed -e ' s/charset=[uU][tT][fF] -8/charset=euc-jp/' -e ' s/# Original translations/# Generated from ja.po, DO NOT EDIT/' > $@
2929
3030sjiscorr : sjiscorr.c
3131 $(CC ) -o $@ $<
Original file line number Diff line number Diff line change 44# Do ":help credits" in Vim to see a list of people who contributed.
55#
66# Copyright (C) 2001-2018 MURAOKA Taro <koron.kaoriya@gmail.com>,
7- # vim-jp ( http://vim-jp.org/)
7+ # vim-jp < http://vim-jp.org/>
88#
99# THIS FILE IS DISTRIBUTED UNDER THE VIM LICENSE.
1010#
@@ -17,11 +17,11 @@ msgstr ""
1717"POT-Creation-Date : 2018-06-23 07:15+0900\n "
1818"PO-Revision-Date : 2017-05-18 00:45+0900\n "
1919"Last-Translator : MURAOKA Taro <koron.kaoriya@gmail.com>\n "
20- "Language-Team : vim-jp ( https://github.com/vim-jp/lang-ja) \n "
21- "Language : Japanese \n "
20+ "Language-Team : Japanese < https://github.com/vim-jp/lang-ja> \n "
21+ "Language : ja \n "
2222"MIME-Version : 1.0\n "
23- "Content-Type : text/plain; charset=utf -8\n "
24- "Content-Transfer-Encoding : 8-bit \n "
23+ "Content-Type : text/plain; charset=UTF -8\n "
24+ "Content-Transfer-Encoding : 8bit \n "
2525"Plural-Forms : nplurals=1; plural=0;\n "
2626
2727msgid "E831: bf_key_init() called with empty password"
Original file line number Diff line number Diff line change 77#include <string.h>
88
99 int
10- main (argc , argv )
11- int argc ;
12- char * * argv ;
10+ main (int argc , char * * argv )
1311{
1412 char buffer [BUFSIZ ];
1513 char * p ;
@@ -18,7 +16,8 @@ main(argc, argv)
1816 {
1917 for (p = buffer ; * p != 0 ; p ++ )
2018 {
21- if (strncmp (p , "charset=utf-8" , 13 ) == 0 )
19+ if (strncmp (p , "charset=utf-8" , 13 ) == 0
20+ || strncmp (p , "charset=UTF-8" , 13 ) == 0 )
2221 {
2322 fputs ("charset=cp932" , stdout );
2423 p += 12 ;
You can’t perform that action at this time.
0 commit comments