From 2320e18fec642323a6b525390b7133107df2a16c Mon Sep 17 00:00:00 2001 From: rhysd Date: Sat, 30 Jan 2016 23:11:38 +0900 Subject: [PATCH] translate a part of document about blowfish #164 --- catchup-7.4.1194.md | 2 +- doc/editing.jax | 11 ++++++----- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/catchup-7.4.1194.md b/catchup-7.4.1194.md index 37c26ee69..f0614949d 100644 --- a/catchup-7.4.1194.md +++ b/catchup-7.4.1194.md @@ -22,7 +22,6 @@ doc/autocmd.jax doc/change.jax doc/develop.jax - doc/editing.jax doc/fold.jax doc/hangulin.jax doc/if_lua.jax # 100行超えたけど、内容的に大したことない @@ -56,6 +55,7 @@ ### 完訳! doc/cmdline.jax + doc/editing.jax doc/filetype.jax doc/help.jax doc/index.jax diff --git a/doc/editing.jax b/doc/editing.jax index 3d079ab32..e14211d2f 100644 --- a/doc/editing.jax +++ b/doc/editing.jax @@ -1439,14 +1439,15 @@ Note: メモリ内のテキストは暗号化されない。ユーザーがテ アンドゥファイルが保存されるとき、同じキーとメソッドがアンドゥファイル内のテキ ストに適用される。|persistent-undo|。 -To test for blowfish support you can use these conditions: > +"blowfish" をサポートしているかどうかテストするには下記の条件を使う: > has('crypt-blowfish') has('crypt-blowfish2') -This works since Vim 7.4.1099 while blowfish support was added earlier. -Thus the condition failing doesn't mean blowfish is not supported. You can -test for blowfish with: > +上記の条件が利用できるのは Vim 7.4.1099 からであるが、"blowfish" のサポート自体 +はより古くからある。 +よって上記の条件が偽になったとしても "blowfish" をサポートしていることがある。 +"blowfish" を使えるかどうかは次の条件でテストできる: > v:version >= 703 -And for blowfish2 with: > +また "blowfish2" については次の条件でテストできる: > v:version > 704 || (v:version == 704 && has('patch401')) < *E817* *E818* *E819* *E820*