Attribute VB_Name = "LM" Option Explicit ' ' NOTES TO TRANSLATORS ' -------------------- ' This file is a Visual Basic source code file that contains a set of string ' values for text that may be displayed to the user of a generated ' application. The strings that require translating are within double ' quotes at the end of each line that starts "Global Const... ' The rest of this file must remain unchanged. ' ' Each of the strings to be translated is accompanied with a comment ' regarding its usage. These comments are prefixed with a word indicating ' the type of text as one of: ' Message: The text forms whole or part of a message issued to the user ' Caption: The text forms the caption/prompt for a control. ' Display: The text is displayed on the form. ' ' Constant Prefixes ' ----------------- ' glmt - used in tpl files ' glmg - used in lg.bas ' glmd - used in ld.bas ' glmv - used in LOV dialogs ' glma - used in About dialog ' glms - used in Server error dialog ' glml - used in Logon dialog ' glmo - used in Options dialog ' glmw - used in template windows ' ********************************************************************** ' GENERAL BUTTON CAPTIONS ' ********************************************************************** ' Caption: OK button Global Const glmgOK = "OK" ' Caption: Cancel button Global Const glmgCANCEL = "キャンセル" ' ********************************************************************** ' MESSAGE STRINGS USED IN TEMPLATE FILES ' ********************************************************************** ' Message: The value cannot be updated' Global Const glmtCTRL_NOT_UPDATABLE = "コントロールは更新できません" ' Message: The row being manipulated has been deleted by another user. Global Const glmtRECORD_NO_LONGER_EXISTS = "この行はデータベース上には存在しません" ' Message: The row being changed has been locked by another user. Global Const glmtROW_LOCKED = "この行は他のユーザーにロックされています" ' Message: The row being changed has been modified by another user Global Const glmtROW_MODIFIED = "この行は他のユーザーに更新されています" ' Question: Ask user to confirm row deletion Global Const glmtCONFIRM_DELETE = "この行をデータベースから削除しますか?" ' Question: Ask user to confirm row deletion Global Const glmtCONFIRM_MULTI_DELETE = "これらの

行をデータベースから削除しますか?" ' Message: Confirm row has been deleted Global Const glmtROW_DELETED = "行が削除されました" ' Message: Confirm rows have been deleted Global Const glmtROWS_DELETED = "

行が削除されました" ' Message: This message follows another error message to indicate that becuase ' of the previous message, the form displayed cannot be used. Global Const glmtFORM_NOT_USABLE = "このフォームは使用できません" ' Question: Ask user to confirm that changes are to be undone Global Const glmtUNDO_CHANGES = "変更を取り消しますか?" ' Message: The query submitted returned no rows. Global Const glmtNO_ROWS_FOUND = "該当する行がありません" ' Message: The value entered is too long.

is a placeholder for the total ' number of characters permitted. Global Const glmtTOO_MANY_CHARS = "

文字までしか入力できません" ' Question: The query has already returned the given number of rows. Does the user want ' to continue fetching, or stop the query.

is a placeholder for the ' number of rows fetched. Global Const glmtCONTINUE_FETCHING = "

行を取り出しました。続けますか?" ' Question: The user is performing an action that would clear the current row, but ' there are still some outstanding changes. Should those changes be saved? '

is a placeholder for the name of the zone, e.g. Employees. Global Const glmtSAVE_CHANGES = "'

'ゾーンでの変更内容を保存しますか?" ' Message: User has requested online help but the help file cannot be found. Global Const glmtFileNotFound = "ヘルプ・ファイルが見つかりません" ' ********************************************************************** ' STRINGS USED IN LG.BAS ' ********************************************************************** ' Display: Titles used in Message Boxes used for different types of messages Global Const glmgTITLE_FATAL = "エラー" Global Const glmgTITLE_INFO = "情報" Global Const glmgTITLE_WARN = "警告" Global Const glmgTITLE_ERROR = "エラー" Global Const glmgTITLE_QUESTION = "質問" ' Message: User attempting to use Edit/Cut,Copy, etc on a control that does not ' support this operation. Global Const glmgNO_SELTEXT_PROP = "ここでは編集の操作はできません" ' Message: Issued if control trying to be set (programatically) to an invalid ' value, e.g. when a record queried from the database, in the form ' of a prefix (one of 3 control types) and the suffix.

is a ' placeholder for the control's value. Global Const glmgCTRL_CHECKBOX = "チェックボックス・コントロール" Global Const glmgCTRL_LIST = "リスト・コントロール" Global Const glmgCTRL_RADIO = "ラジオ・グループ・コントロール" Global Const glmgCTRL_SET_BAD_VALUE = "設定された値'

'が有効値ではありません" ' Caption: Textbox used to enter search criteria before bringing up a list ' of values.

is the caption of the control that the search ' will be applied against. Global Const glmgLOV_ENTER_CRITERIA = "縮小条件の入力" Global Const glmgLOV_ENTER_CRITERIA_FOR = "

に対する縮小条件の入力" ' Message: Location and error number of unhandled VB errors Global Const glmgERR_LOCATION = "ロケーション: " Global Const glmgVB_ERROR = "VBエラー " ' Display: Strings to build up the "Record n of m" record status display Global Const glmgRECORD_N = "レコード: " Global Const glmgOF_M = " of " ' Display: Date & Time shown in the status panel Global Const glmgDATE = "日付: " Global Const glmgTIME = "時刻: " ' Message: "User has entered an "invalid value" type errors... Global Const glmgERROR_RANGE = "有効範囲(

)に含まれていません" Global Const glmgERROR_PRECISION = "整数部分は

桁以下の数字にしてください" Global Const glmgERROR_NO_SCALE = "値には小数点を含めません" Global Const glmgERROR_LARGE_SCALE = "小数点以下は

桁までです" Global Const glmgERROR_NOT_IN_LIST = "'

'は有効値のリストにありません" Global Const glmgERROR_NOT_A_DATE = "'

'は無効な日付です" Global Const glmgERROR_NOT_A_NUMBER = "'

'は無効な数字です" Global Const glmgERROR_MUST_BE_ENTERED = "入力必須です" ' Display: This string is added as an extra item in a ListBox/ComboBox, ' to allow the user to specify that the correct value is unknown ' at this point. Global Const glmgDV_UNKNOWN_OPT_STRING = "不明" ' Display: Text used in the window title of a detail form that does not ' have a current master record (i.e. detail form is disabled). Global Const glmgDISABLED_DETAIL_CONTEXT = " : コンテキストにありません" ' ********************************************************************** ' MESSAGE STRINGS USED IN LD.BAS ' ********************************************************************** ' Message: Attempting to run an application without Oracle Objects for OLE ' being installed on the PC. Global Const glmdOO4O_INIT_LINE1 = "Oracle Objects for OLEを初期化できません" Global Const glmdOO4O_INIT_LINE2 = "PCに正しくインストールされているか確認してください" ' Message: Cannot load application because no more windows timers are available Global Const glmdNO_TIMER_LINE1 = "アプリケーションをロードできません - タイマー・コントロールが使えません" Global Const glmdNO_TIMER_LINE2 = "タイマーを使用している他のアプリケーションを終了してください" ' Message: Attempting to log onto a database that is not currently running Global Const glmdORACLE_NOT_AVAIL_LINE1 = "接続先のデータベース・サーバーが現在使用できません" Global Const glmdORACLE_NOT_AVAIL_LINE2 = "データベース管理者に連絡してください" ' Message: Invalid username and password Global Const glmdINVALID_LOGIN = "ユーザー名/パスワードが違います" Global Const glmdACCESS_DENIED = "ユーザー名/パスワードが違います。アクセスできません" ' Message: These errors should not normally be issued, and do not require ' correction by the user. Hence could remain untranslated. Global Const glmdNULL_TABLENAME = "ldNextIdccファンクションにNULLの表の名前が渡されました" Global Const glmdRESET_TRANS = "ロールバックできません - トランザクションをリセットします" Global Const glmdPARAM_FAIL = "ldSetParamValプロシージャで '

'パラメータを作成できません" Global Const glmdNO_LOCK = "コード制御表'

'で、行ロックを取得できません" Global Const glmdTABLE_NOT_SETUP = "コード制御表'

'がサーバーに準備されていません" Global Const glmdNO_CC_ROWS_FOUND = "コード制御表'

'に行が見つかりません" Global Const glmdNO_DV_ROWS_FOUND = "参照コード表'

'に行が見つかりません" ' ********************************************************************** ' STRINGS USED IN LDLOV.FRM AND LGDVLOV.FRM LIST OF VALUES FORM ' ********************************************************************** ' Message: LOV has returned no rows. Global Const glmvNO_RECORDS_MATCH = "検索条件に一致するレコードはありません" ' Message: User choses OK before selecting a record in the list. Global Const glmvCHOSE_ENTRY = "リストからエントリを選択してください" ' Display: Default title for the LOV dialog. Global Const glmvDEFAULT_LOV_TITLE = "値リスト" ' Message: Query has returned more rows than the design limit.

is the ' number of records fetched. Global Const glmvROW_LIMIT = "該当するレコードの数が表示できる件数を超えています" Global Const glmvRECORDS_DISPLAYED = "

件だけが表示されます" ' Caption: Captions for the buttons. ' Find = Go to the first row that starts with the given string ' Filter = Reduce the list according to the filter condition ' Refresh = Requery the list Global Const glmvFIND_FILTER = "検索(&F):.フィルタ(&F):" Global Const glmvFILTER = "フィルタ" Global Const glmvREFRESH = "リフレッシュ(&R)" ' ********************************************************************** ' STRINGS USED IN LGABOUT.FRM - ABOUT BOX ' ********************************************************************** #If Win32 Then ' Caption: How much memory (prefix). Keep this string the same size. Global Const glmaMEMORY = "物理メモリーの合計: " ' Caption: memory (suffix). Keep the preceding space. Global Const glmaKB = " KB" ' Caption: how much allocated memory (suffix). Keep the preceding space and size. Global Const glmaRESOURCES = "割り当てられた物理メモリ " #Else ' Caption: How much memory (prefix). Keep this string the same size. Global Const glmaMEMORY = "メモリ: " ' Caption: how much memory (suffix). Keep the preceding space. Global Const glmaKBFREE = " KB 空き" ' Caption: How much system resources. Keep this string the same size. Global Const glmaRESOURCES = "システム・リソース: " #End If ' Caption: Title for the connect information Global Const glmaCONNECTION = "接続情報: " ' Caption: Amount of User space Global Const glmaUSER = "ユーザー: " Global Const glmaFREE = "% 空き" ' Caption: String preceding Oracle Objects version number Global Const glmaSERVER = "Server Access: Oracle Objects for OLE Version " ' Display: Title of the about box Global Const glmaTITLE = "バージョン情報 " ' Caption: Preceding name and version number of the generator Global Const glmaGENERATOR = "このアプリケーションは以下によって生成されました:" ' Caption: Version number Global Const glmaVERSION = "バージョン" ' ********************************************************************** ' STRINGS USED IN LGSE.FRM - Server Error Dialog ' ********************************************************************** ' Caption: Location of the error Global Const glmsLOCATION = "ロケーション:" ' Caption: Oracle error number Global Const glmsERRNUM = "エラー番号:" ' Caption: The text of the error Global Const glmsERRTXT = "エラー・テキスト:" ' Caption: The SQL statement in error Global Const glmsSQLSTMT = "SQL文:" ' Caption: Buttons to show/hide the SQL statement Global Const glmsSHOWSQL = "SQL >>" Global Const glmsHIDESQL = "SQL <<" 'Display: The title of the window Global Const glmsTITLE = "サーバー・エラー" ' ********************************************************************** ' STRINGS USED IN LDLOGON.FRM - Server Logon Dialog ' ********************************************************************** ' Display: Title of the logon window Global Const glmlTITLE = "接続" ' Caption: fields to enter user, password and database information Global Const glmlUSERNAME = "ユーザー名(&U):" Global Const glmlPASSWORD = "パスワード(&P):" Global Const glmlDATABASE = "接続文字列(&D):" ' Caption: Enable SQL Trace? Global Const glmlSQL_TRACE = "SQL トレース?(&S)" ' Caption: Connect to Oracle, or Cancel from the app Global Const glmlCONNECT = "接続" Global Const glmlCANCEL = "キャンセル" ' ********************************************************************** ' STRINGS USED IN LGOPTION.FRM - Run time Options Dialog ' ********************************************************************** ' Caption: Option to Auto commit changes instead of ask for confirmation Global Const glmoAUTO_COMMIT = "変更内容を自動コミットする(&A)" ' Caption: Option to only requery/coordinate detail windows when they ' are activated, rather than automatically Global Const glmoCOORD_DET = "アクティブ時にディテール・フォームを調整する(&O)" ' Caption: Option to close detail forms when they are disabled. Global Const glmoCLOSE_DET = "使用できないディテール・フォームを閉じる(&C)" ' Caption: Option for displaying 'tool-tip' type hint text when the user ' moves the mouse over a control. Global Const glmoHINT_TEXT = "ヒント・テキスト" Global Const glmoHINT_SHORT = "すぐに表示(&S)" Global Const glmoHINT_LONG = "間をおいて表示(&L)" Global Const glmoHINT_OFF = "使わない(&F)" ' Caption: Title of the Options dialog window. Global Const glmoTITLE = "オプション" ' ********************************************************************** ' STRINGS USED IN TEMPLATE WINDOWS ' ********************************************************************** ' Message: Does the user want to quit from the application Global Const glmwASK_QUIT = "アプリケーションを終了しますか?"