diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/os_mswin.c | 12 | ||||
-rw-r--r-- | src/os_unixx.h | 4 | ||||
-rw-r--r-- | src/po/ja.po | 8 |
3 files changed, 18 insertions, 6 deletions
diff --git a/src/os_mswin.c b/src/os_mswin.c index 3d8a084ef..50a03a577 100644 --- a/src/os_mswin.c +++ b/src/os_mswin.c @@ -598,8 +598,16 @@ display_errors() } #endif - (void)gui_mch_dialog(VIM_ERROR, (char_u *)_("Error"), - p, (char_u *)_("&Ok"), 1, NULL); + (void)gui_mch_dialog( +#ifdef FEAT_GUI + gui.starting ? VIM_INFO : +#endif + VIM_ERROR, +#ifdef FEAT_GUI + gui.starting ? (char_u *)_("Message") : +#endif + (char_u *)_("Error"), + p, (char_u *)_("&Ok"), 1, NULL); #if 0 #ifdef WIN3264 MessageBox(NULL, p, "Vim", MB_TASKMODAL|MB_SETFOREGROUND); diff --git a/src/os_unixx.h b/src/os_unixx.h index abed14d3b..3dd254e9a 100644 --- a/src/os_unixx.h +++ b/src/os_unixx.h @@ -128,6 +128,10 @@ /* shared library access */ #if defined(HAVE_DLFCN_H) && defined(USE_DLOPEN) +# ifdef __MVS__ + /* needed to define RTLD_LAZY (Anthony Giorgio) */ +# define __SUSV3 +# endif # include <dlfcn.h> #else # if defined(HAVE_DL_H) && defined(HAVE_SHL_LOAD) diff --git a/src/po/ja.po b/src/po/ja.po index 49fd1b045..e46f58540 100644 --- a/src/po/ja.po +++ b/src/po/ja.po @@ -4708,7 +4708,7 @@ msgstr "%s の %d 行目に 認識できないか重複した項目があります: %s" #, c-format msgid "Missing FOL/LOW/UPP line in %s" -msgstr "%d 行目に FOL/LOW/UPP がありません" +msgstr "%s 行目に FOL/LOW/UPP がありません" msgid "COMPOUNDSYLMAX used without SYLLABLE" msgstr "SYLLABLE が指定されない COMPOUNDSYLMAX" @@ -4772,7 +4772,7 @@ msgstr "非ASCII文字を含む %d 個の単語を無視しました (%s 内)" #, c-format msgid "Reading word file %s ..." -msgstr "標準入力から読込み中..." +msgstr "標準入力から読込み中 %s ..." #, c-format msgid "Duplicate /encoding= line ignored in %s line %d: %s" @@ -4780,7 +4780,7 @@ msgstr "%s の %d 行目の 重複した /encoding= 行を無視しました: %s" #, c-format msgid "/encoding= line after word ignored in %s line %d: %s" -msgstr "%s の %d 行目の 単語の後の /encoding= 行を無視しました: %s" +msgstr "%s %s の %d 行目の 単語の後の /encoding= 行を無視しました: %s" #, c-format msgid "Duplicate /regions= line ignored in %s line %d: %s" @@ -4891,7 +4891,7 @@ msgstr "E778: .sug ファイルではないようです: %s" #, c-format msgid "E779: Old .sug file, needs to be updated: %s" -msgstr "E779: 古い .sug ファイルなので, アップデートしてください" +msgstr "E779: 古い .sug ファイルなので, アップデートしてください: %s" #, c-format msgid "E780: .sug file is for newer version of Vim: %s" |