1 /* 2 * $Id: message.c,v 1.2 2001/06/14 18:16:16 ura Exp $ 3 */ 4 5 /* 6 * FreeWnn is a network-extensible Kana-to-Kanji conversion system. 7 * This file is part of FreeWnn. 8 * 9 * Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999 10 * Copyright 1991 by Massachusetts Institute of Technology 11 * 12 * Author: OMRON SOFTWARE Co., Ltd. <freewnn@rd.kyoto.omronsoft.co.jp> 13 * 14 * This program is free software; you can redistribute it and/or modify 15 * it under the terms of the GNU General Public License as published by 16 * the Free Software Foundation; either version 2, or (at your option) 17 * any later version. 18 * 19 * This program is distributed in the hope that it will be useful, 20 * but WITHOUT ANY WARRANTY; without even the implied warranty of 21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 22 * GNU General Public License for more details. 23 * 24 * You should have received a copy of the GNU General Public License 25 * along with GNU Emacs; see the file COPYING. If not, write to the 26 * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 27 * 28 * Commentary: 29 * 30 * Change log: 31 * 32 * Last modified date: 8,Feb.1999 33 * 34 * Code: 35 * 36 */ 37 38 char *default_message[] = { 39 /* 0 */ "Save was completed", 40 /* 1 */ "CANDIDATES(SMALL)", 41 /* 2 */ "CANDIDATES(LARGE)", 42 /* 3 */ "You can't get candidates becuase candidates are too many.", 43 /* 4 */ "Frequency", 44 /* 5 */ "Evaluation value", 45 /* 6 */ "Front vector", 46 /* 7 */ "Evaluation value(LARGE)", 47 /* 8 */ "Yomi", 48 /* 9 */ "do you want remove", 49 /* 10 */ "You can't remove a entry of hard-dictionary.", 50 /* 11 */ "You can't remove a entry of read-only-dictionary.", 51 /* 12 */ "{", 52 /* 13 */ "} will be remove", 53 /* 14 */ "You can't change because the frequency is read-only.", 54 /* 15 */ "} will become unuse", 55 /* 16 */ " CANCEL ", 56 /* 17 */ "JIS code input", 57 /* 18 */ "Please input JIS code", 58 /* 19 */ "Execute", 59 /* 20 */ "Dictionary utility", 60 /* 21 */ "Can't open default uumkey.", 61 /* 22 */ "Can't expand.", 62 /* 23 */ "Duplicate definition at key.", 63 /* 24 */ "KUTEN input", 64 /* 25 */ "Please input KUTEN", 65 /* 26 */ "KU", 66 /* 27 */ "Connection to jserver is closed.", 67 /* 28 */ "Can't open a default uumrc.", 68 /* 29 */ "Connection", 69 /* 30 */ "Please input hostname", 70 /* 31 */ "Connection is wrong", 71 /* 32 */ "Connection failed", 72 /* 33 */ "Connection was completed", 73 /* 34 */ " INSPECT ", 74 /* 35 */ "DELE", 75 /* 36 */ " USE/UNUSE ", 76 /* 37 */ "NEXT", 77 /* 38 */ "PREV", 78 /* 39 */ " MOUSE ", 79 /* 40 */ " KEY ", 80 /* 41 */ " NEXT ", 81 /* 42 */ "PREVIOUS", 82 /* 43 */ "DIC ADD", 83 /* 44 */ "DIC LIST", 84 /* 45 */ "REGISTER", 85 /* 46 */ "SEARCH", 86 /* 47 */ "CHANGE PARA", 87 /* 48 */ "SAVE", 88 /* 49 */ "DIC INFO", 89 /* 50 */ "CHANGE FUZ", 90 /* 51 */ " YES ", 91 /* 52 */ " NO ", 92 /* 53 */ " OK ? " 93 }; 94