ja.dictionary.itop.core.php 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483
  1. <?php
  2. // Copyright (C) 2010 Combodo SARL
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; version 3 of the License.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. /**
  17. * Localized data
  18. *
  19. * @author Erwan Taloc <erwan.taloc@combodo.com>
  20. * @author Romain Quetiez <romain.quetiez@combodo.com>
  21. * @author Denis Flaven <denis.flaven@combodo.com>
  22. * @author Tadashi Kaneda <kaneda@smartec.co.jp>
  23. * @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
  24. */
  25. Dict::Add('JA JP', 'Japanese', '日本語', array(
  26. 'Core:AttributeLinkedSet' => 'オブジェクト配列',
  27. 'Core:AttributeLinkedSet+' => '同一あるいはサブクラスに属するオブジェクト',
  28. 'Core:AttributeLinkedSetIndirect' => 'オブジェクト配列 (N-N)',
  29. 'Core:AttributeLinkedSetIndirect+' => '同一クラスの任意のオブジェクト(サブクラス)',
  30. 'Core:AttributeInteger' => 'Int型',
  31. 'Core:AttributeInteger+' => '数値 (負数あり)',
  32. 'Core:AttributeDecimal' => 'Decimal型',
  33. 'Core:AttributeDecimal+' => 'Decimal値 (負数あり)',
  34. 'Core:AttributeBoolean' => 'ブール型',
  35. 'Core:AttributeBoolean+' => 'Bool値',
  36. 'Core:AttributeString' => '文字列',
  37. 'Core:AttributeString+' => '文字列',
  38. 'Core:AttributeClass' => 'クラス',
  39. 'Core:AttributeClass+' => 'クラス',
  40. 'Core:AttributeApplicationLanguage' => '使用言語',
  41. 'Core:AttributeApplicationLanguage+' => '言語・国別 (EN US)',
  42. 'Core:AttributeFinalClass' => 'クラス (自動)',
  43. 'Core:AttributeFinalClass+' => 'オブジェクトの実クラス (コアで自動的に生成される)',
  44. 'Core:AttributePassword' => 'パスワード',
  45. 'Core:AttributePassword+' => '外部デバイス用パスワード',
  46. 'Core:AttributeEncryptedString' => '暗号化文字列',
  47. 'Core:AttributeEncryptedString+' => 'ローカルキーで暗号化された文字列',
  48. 'Core:AttributeText' => 'テキスト',
  49. 'Core:AttributeText+' => '複数行文字列',
  50. 'Core:AttributeHTML' => 'HTML',
  51. 'Core:AttributeHTML+' => 'HTML文字列',
  52. 'Core:AttributeEmailAddress' => 'メールアドレス',
  53. 'Core:AttributeEmailAddress+' => 'メールアドレス',
  54. 'Core:AttributeIPAddress' => 'IPアドレス',
  55. 'Core:AttributeIPAddress+' => 'IPアドレス',
  56. 'Core:AttributeOQL' => 'OQL',
  57. 'Core:AttributeOQL+' => 'OQL式',
  58. 'Core:AttributeEnum' => '列挙型',
  59. 'Core:AttributeEnum+' => 'ナンバリング済み文字列のリスト',
  60. 'Core:AttributeTemplateString' => 'テンプレート文字列',
  61. 'Core:AttributeTemplateString+' => 'プレースホルダを含む文字列',
  62. 'Core:AttributeTemplateText' => 'テンプレートテキスト',
  63. 'Core:AttributeTemplateText+' => 'プレースホルダを含むテキスト',
  64. 'Core:AttributeTemplateHTML' => 'テンプレートHTML',
  65. 'Core:AttributeTemplateHTML+' => 'プレースホルダを含むHTML',
  66. 'Core:AttributeWikiText' => 'Wikiアーティクル',
  67. 'Core:AttributeWikiText+' => 'Wikiフォーマット済みテキスト',
  68. 'Core:AttributeDateTime' => '日付/時刻',
  69. 'Core:AttributeDateTime+' => '日付と時刻(年-月-日 hh:mm:ss)',
  70. 'Core:AttributeDate' => '日付',
  71. 'Core:AttributeDate+' => '日付 (年-月-日)',
  72. 'Core:AttributeDeadline' => '締切',
  73. 'Core:AttributeDeadline+' => '日付, 現在時刻からの相対表示',
  74. 'Core:AttributeExternalKey' => '外部キー',
  75. 'Core:AttributeExternalKey+' => '外部(あるいはフォーリン)キー',
  76. 'Core:AttributeExternalField' => '外部フィールド',
  77. 'Core:AttributeExternalField+' => '外部キーにマッピングされたフィールド',
  78. 'Core:AttributeURL' => 'URL',
  79. 'Core:AttributeURL+' => '絶対URLもしくは相対URLのテキスト文字列',
  80. 'Core:AttributeBlob' => 'Blob',
  81. 'Core:AttributeBlob+' => '任意のバイナリコンテンツ(ドキュメント)',
  82. 'Core:AttributeOneWayPassword' => '一方向パスワード',
  83. 'Core:AttributeOneWayPassword+' => '一方向暗号化(ハッシュ)パスワード',
  84. 'Core:AttributeTable' => 'テーブル',
  85. 'Core:AttributeTable+' => 'インデックス化された二次元配列',
  86. 'Core:AttributePropertySet' => 'プロパティ',
  87. 'Core:AttributePropertySet+' => '型づけされていないプロパティのリスト(名前とバリュー)',
  88. ));
  89. //////////////////////////////////////////////////////////////////////
  90. // Classes in 'core/cmdb'
  91. //////////////////////////////////////////////////////////////////////
  92. //
  93. //
  94. // Class: CMDBChange
  95. //
  96. Dict::Add('JA JP', 'Japanese', '日本語', array(
  97. 'Class:CMDBChange' => '変更',
  98. 'Class:CMDBChange+' => '変更履歴',
  99. 'Class:CMDBChange/Attribute:date' => '日付',
  100. 'Class:CMDBChange/Attribute:date+' => '変更が記録された日時',
  101. 'Class:CMDBChange/Attribute:userinfo' => 'その他情報',
  102. 'Class:CMDBChange/Attribute:userinfo+' => '呼出側の定義済み情報',
  103. ));
  104. //
  105. // Class: CMDBChangeOp
  106. //
  107. Dict::Add('JA JP', 'Japanese', '日本語', array(
  108. 'Class:CMDBChangeOp' => '変更操作',
  109. 'Class:CMDBChangeOp+' => '変更操作履歴',
  110. 'Class:CMDBChangeOp/Attribute:change' => '変更',
  111. 'Class:CMDBChangeOp/Attribute:change+' => '変更',
  112. 'Class:CMDBChangeOp/Attribute:date' => '日付',
  113. 'Class:CMDBChangeOp/Attribute:date+' => '変更日時',
  114. 'Class:CMDBChangeOp/Attribute:userinfo' => 'ユーザ',
  115. 'Class:CMDBChangeOp/Attribute:userinfo+' => '変更者',
  116. 'Class:CMDBChangeOp/Attribute:objclass' => 'オブジェクトクラス',
  117. 'Class:CMDBChangeOp/Attribute:objclass+' => 'オブジェクトクラス',
  118. 'Class:CMDBChangeOp/Attribute:objkey' => 'オブジェクトID',
  119. 'Class:CMDBChangeOp/Attribute:objkey+' => 'オブジェクトID',
  120. 'Class:CMDBChangeOp/Attribute:finalclass' => '型',
  121. 'Class:CMDBChangeOp/Attribute:finalclass+' => '',
  122. ));
  123. //
  124. // Class: CMDBChangeOpCreate
  125. //
  126. Dict::Add('JA JP', 'Japanese', '日本語', array(
  127. 'Class:CMDBChangeOpCreate' => 'オブジェクト生成',
  128. 'Class:CMDBChangeOpCreate+' => 'オブジェクト生成履歴',
  129. ));
  130. //
  131. // Class: CMDBChangeOpDelete
  132. //
  133. Dict::Add('JA JP', 'Japanese', '日本語', array(
  134. 'Class:CMDBChangeOpDelete' => 'オブジェクト削除',
  135. 'Class:CMDBChangeOpDelete+' => 'オブジェクト削除履歴',
  136. ));
  137. //
  138. // Class: CMDBChangeOpSetAttribute
  139. //
  140. Dict::Add('JA JP', 'Japanese', '日本語', array(
  141. 'Class:CMDBChangeOpSetAttribute' => 'オブジェクト更新',
  142. 'Class:CMDBChangeOpSetAttribute+' => 'オブジェクトプロパティの更新履歴',
  143. 'Class:CMDBChangeOpSetAttribute/Attribute:attcode' => '属性',
  144. 'Class:CMDBChangeOpSetAttribute/Attribute:attcode+' => '更新プロパティのコード',
  145. ));
  146. //
  147. // Class: CMDBChangeOpSetAttributeScalar
  148. //
  149. Dict::Add('JA JP', 'Japanese', '日本語', array(
  150. 'Class:CMDBChangeOpSetAttributeScalar' => 'プロパティ更新',
  151. 'Class:CMDBChangeOpSetAttributeScalar+' => 'オブジェクトのスカラープロパティの更新履歴',
  152. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:oldvalue' => '変更前の値',
  153. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:oldvalue+' => '属性の変更前の値',
  154. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:newvalue' => '新規の値',
  155. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:newvalue+' => '属性の新規の値',
  156. ));
  157. // Used by CMDBChangeOp... & derived classes
  158. Dict::Add('JA JP', 'Japanese', '日本語', array(
  159. 'Change:ObjectCreated' => 'オブジェクトを生成しました',
  160. 'Change:ObjectDeleted' => 'オブジェクトを削除しました',
  161. 'Change:ObjectModified' => 'オブジェクトを更新しました',
  162. 'Change:AttName_SetTo_NewValue_PreviousValue_OldValue' => '%1$sを%2$sに設定しました (変更前の値: %3$s)',
  163. 'Change:Text_AppendedTo_AttName' => '%1$sを%2$sに追加しました',
  164. 'Change:AttName_Changed_PreviousValue_OldValue' => '%1$sを更新しました。更新前の値: %2$s',
  165. 'Change:AttName_Changed' => '%1$sを更新しました',
  166. ));
  167. //
  168. // Class: CMDBChangeOpSetAttributeBlob
  169. //
  170. Dict::Add('JA JP', 'Japanese', '日本語', array(
  171. 'Class:CMDBChangeOpSetAttributeBlob' => 'データ変更',
  172. 'Class:CMDBChangeOpSetAttributeBlob+' => 'データ変更履歴',
  173. 'Class:CMDBChangeOpSetAttributeBlob/Attribute:prevdata' => '変更前のデータ', //'Previous data',
  174. 'Class:CMDBChangeOpSetAttributeBlob/Attribute:prevdata+' => 'この属性の以前の内容', //'previous contents of the attribute',
  175. ));
  176. //
  177. // Class: CMDBChangeOpSetAttributeText
  178. //
  179. Dict::Add('JA JP', 'Japanese', '日本語', array(
  180. 'Class:CMDBChangeOpSetAttributeText' => 'テキストの変更', //'text change',
  181. 'Class:CMDBChangeOpSetAttributeText+' => 'テキストの変更履歴', //'text change tracking',
  182. 'Class:CMDBChangeOpSetAttributeText/Attribute:prevdata' => '以前の内容', //'Previous data',
  183. 'Class:CMDBChangeOpSetAttributeText/Attribute:prevdata+' => 'この属性の以前の内容', //'previous contents of the attribute',
  184. ));
  185. //
  186. // Class: Event
  187. //
  188. Dict::Add('JA JP', 'Japanese', '日本語', array(
  189. 'Class:Event' => 'ログイベント',// 'Log Event',
  190. 'Class:Event+' => 'アプリケーション内部イベント', //'An application internal event',
  191. 'Class:Event/Attribute:message' => 'メッセージ', //'message',
  192. 'Class:Event/Attribute:message+' => 'イベント概略', //'short description of the event',
  193. 'Class:Event/Attribute:date' => '日付', //'date',
  194. 'Class:Event/Attribute:date+' => '変更が記録された日時', //'date and time at which the changes have been recorded',
  195. 'Class:Event/Attribute:userinfo' => 'ユーザ情報', //'user info',
  196. 'Class:Event/Attribute:userinfo+' => 'このイベントをトリガーにアクションを起こすユーザの識別', //'identification of the user that was doing the action that triggered this event',
  197. 'Class:Event/Attribute:finalclass' => '型', //'type',
  198. 'Class:Event/Attribute:finalclass+' => '',
  199. ));
  200. //
  201. // Class: EventNotification
  202. //
  203. Dict::Add('JA JP', 'Japanese', '日本語', array(
  204. 'Class:EventNotification' => '通知イベント', // 'Notification event',
  205. 'Class:EventNotification+' => '創出された通知のトレース', //'Trace of a notification that has been sent',
  206. 'Class:EventNotification/Attribute:trigger_id' => 'トリガー', //'Trigger',
  207. 'Class:EventNotification/Attribute:trigger_id+' => 'ユーザアカウント', //'user account',
  208. 'Class:EventNotification/Attribute:action_id' => 'ユーザ', //'user',
  209. 'Class:EventNotification/Attribute:action_id+' => 'ユーザアカウント', //'user account',
  210. 'Class:EventNotification/Attribute:object_id' => 'オブジェクトID', //'Object id',
  211. 'Class:EventNotification/Attribute:object_id+' => 'オブジェクトID(トリガーでクラスが定義済み?)', //'object id (class defined by the trigger ?)',
  212. ));
  213. //
  214. // Class: EventNotificationEmail
  215. //
  216. Dict::Add('JA JP', 'Japanese', '日本語', array('Class:EventNotificationEmail' => 'メール送出イベント', //'Email emission event',
  217. 'Class:EventNotificationEmail+' => '送出されたメールのトレース',//Trace of an email that has been sent',
  218. 'Class:EventNotificationEmail/Attribute:to' => 'TO',
  219. 'Class:EventNotificationEmail/Attribute:to+' => 'TO',
  220. 'Class:EventNotificationEmail/Attribute:cc' => 'CC',
  221. 'Class:EventNotificationEmail/Attribute:cc+' => 'CC',
  222. 'Class:EventNotificationEmail/Attribute:bcc' => 'BCC',
  223. 'Class:EventNotificationEmail/Attribute:bcc+' => 'BCC',
  224. 'Class:EventNotificationEmail/Attribute:from' => 'From',
  225. 'Class:EventNotificationEmail/Attribute:from+' => 'メール送信者', //'Sender of the message',
  226. 'Class:EventNotificationEmail/Attribute:subject' => 'Subject',
  227. 'Class:EventNotificationEmail/Attribute:subject+' => 'Subject',
  228. 'Class:EventNotificationEmail/Attribute:body' => 'Body',
  229. 'Class:EventNotificationEmail/Attribute:body+' => 'Body',
  230. ));
  231. //
  232. // Class: EventIssue
  233. //
  234. Dict::Add('EN US', 'English', 'English', array(
  235. 'Class:EventIssue' => 'イシューイベント', //'Issue event',
  236. 'Class:EventIssue+' => 'イシュー(警告、エラーetc)のトレース', //'Trace of an issue (warning, error, etc.)',
  237. 'Class:EventIssue/Attribute:issue' => 'イシュー', //'Issue',
  238. 'Class:EventIssue/Attribute:issue+' => '何が起こったか', //'What happened',
  239. 'Class:EventIssue/Attribute:impact' => 'インパクト', //'Impact',
  240. 'Class:EventIssue/Attribute:impact+' => 'その結果', //'What are the consequences',
  241. 'Class:EventIssue/Attribute:page' => 'ページ', //'Page',
  242. 'Class:EventIssue/Attribute:page+' => 'HTTPエントリポイント', //'HTTP entry point',
  243. 'Class:EventIssue/Attribute:arguments_post' => 'POSTされた引数', //'Posted arguments',
  244. 'Class:EventIssue/Attribute:arguments_post+' => 'HTTP POST引数', //'HTTP POST arguments',
  245. 'Class:EventIssue/Attribute:arguments_get' => 'URLパラメータ', //'URL arguments',
  246. 'Class:EventIssue/Attribute:arguments_get+' => 'HTTP GETパラメータ', //'HTTP GET arguments',
  247. 'Class:EventIssue/Attribute:callstack' => 'コールスタック', //'Callstack',
  248. 'Class:EventIssue/Attribute:callstack+' => 'スタックをコールする', //'Call stack',
  249. 'Class:EventIssue/Attribute:data' => 'データ', //'Data',
  250. 'Class:EventIssue/Attribute:data+' => '詳細情報', //'More information',
  251. ));
  252. //
  253. // Class: EventWebService
  254. //
  255. Dict::Add('JA JP', 'Japanese', '日本語', array(
  256. 'Class:EventWebService' => 'ウェブサービスイベント', //'Web service event',
  257. 'Class:EventWebService+' => 'ウェブサービス呼出のYトレース', //'Trace of an web service call',
  258. 'Class:EventWebService/Attribute:verb' => '動詞', //'Verb',
  259. 'Class:EventWebService/Attribute:verb+' => '操作名', //'Name of the operation',
  260. 'Class:EventWebService/Attribute:result' => '結果', //'Result',
  261. 'Class:EventWebService/Attribute:result+' => '総体的な成功/失敗', //'Overall success/failure',
  262. 'Class:EventWebService/Attribute:log_info' => 'インフォログ', //'Info log',
  263. 'Class:EventWebService/Attribute:log_info+' => 'インフォログの結果', //'Result info log',
  264. 'Class:EventWebService/Attribute:log_warning' => 'ウォーニングログ', //'Warning log',
  265. 'Class:EventWebService/Attribute:log_warning+' => 'ウォーニングログ結果', //'Result warning log',
  266. 'Class:EventWebService/Attribute:log_error' => 'エラーログ', //'Error log',
  267. 'Class:EventWebService/Attribute:log_error+' => 'エラーログ結果', //'Result error log',
  268. 'Class:EventWebService/Attribute:data' => 'データ', //'Data',
  269. 'Class:EventWebService/Attribute:data+' => 'データ結果', //'Result data',
  270. ));
  271. //
  272. // Class: Action
  273. //
  274. Dict::Add('JA JP', 'Japanese', '日本語', array(
  275. 'Class:Action' => 'カスタムアクション', //'Custom Action',
  276. 'Class:Action+' => 'ユーザ定義アクション', //'User defined action',
  277. 'Class:Action/Attribute:name' => '名前', //'Name',
  278. 'Class:Action/Attribute:name+' => '',
  279. 'Class:Action/Attribute:description' => '概要', //'Description',
  280. 'Class:Action/Attribute:description+' => '',
  281. 'Class:Action/Attribute:status' => 'ステータス', //'Status',
  282. 'Class:Action/Attribute:status+' => '製品化済み、あるいは?', //'In production or ?',
  283. 'Class:Action/Attribute:status/Value:test' => 'テスト済み', //'Being tested',
  284. 'Class:Action/Attribute:status/Value:test+' => 'テスト済み', //'Being tested',
  285. 'Class:Action/Attribute:status/Value:enabled' => '製品化済み', //'In production',
  286. 'Class:Action/Attribute:status/Value:enabled+' => '製品化済み', //'In production',
  287. 'Class:Action/Attribute:status/Value:disabled' => '非アクティブ', //'Inactive',
  288. 'Class:Action/Attribute:status/Value:disabled+' => '非アクティブ', //'Inactive',
  289. 'Class:Action/Attribute:trigger_list' => '関連トリガ', //'Related Triggers',
  290. 'Class:Action/Attribute:trigger_list+' => 'このアクションにリンクされたトリガ', //'Triggers linked to this action',
  291. 'Class:Action/Attribute:finalclass' => '型', //'Type',
  292. 'Class:Action/Attribute:finalclass+' => '',
  293. ));
  294. //
  295. // Class: ActionNotification
  296. //
  297. Dict::Add('JA JP', 'Japanese', '日本語', array(
  298. 'Class:ActionNotification' => 'ノーティフィケーション', //'Notification',
  299. 'Class:ActionNotification+' => 'ノーティフィケーション(抽象)', //'Notification (abstract)',
  300. ));
  301. //
  302. // Class: ActionEmail
  303. //
  304. Dict::Add('JA JP', 'Japanese', '日本語', array(
  305. 'Class:ActionEmail' => 'メール通知', //'Email notification',
  306. 'Class:ActionEmail+' => '',
  307. 'Class:ActionEmail/Attribute:test_recipient' => 'テストレシピ', //'Test recipient',
  308. 'Class:ActionEmail/Attribute:test_recipient+' => 'Detination in case status is set to "Test"',
  309. 'Class:ActionEmail/Attribute:from' => 'From',
  310. 'Class:ActionEmail/Attribute:from+' => 'Will be sent into the email header',
  311. 'Class:ActionEmail/Attribute:reply_to' => 'Reply to',
  312. 'Class:ActionEmail/Attribute:reply_to+' => 'Will be sent into the email header',
  313. 'Class:ActionEmail/Attribute:to' => 'To',
  314. 'Class:ActionEmail/Attribute:to+' => 'メールの宛先', //'Destination of the email',
  315. 'Class:ActionEmail/Attribute:cc' => 'Cc',
  316. 'Class:ActionEmail/Attribute:cc+' => 'Carbon Copy',
  317. 'Class:ActionEmail/Attribute:bcc' => 'bcc',
  318. 'Class:ActionEmail/Attribute:bcc+' => 'Blind Carbon Copy',
  319. 'Class:ActionEmail/Attribute:subject' => 'subject',
  320. 'Class:ActionEmail/Attribute:subject+' => 'メールのタイトル', //'Title of the email',
  321. 'Class:ActionEmail/Attribute:body' => 'body',
  322. 'Class:ActionEmail/Attribute:body+' => 'メールの本文', //'Contents of the email',
  323. 'Class:ActionEmail/Attribute:importance' => 'importance',
  324. 'Class:ActionEmail/Attribute:importance+' => '重要度フラグ', //'Importance flag',
  325. 'Class:ActionEmail/Attribute:importance/Value:low' => 'low',
  326. 'Class:ActionEmail/Attribute:importance/Value:low+' => 'low',
  327. 'Class:ActionEmail/Attribute:importance/Value:normal' => 'normal',
  328. 'Class:ActionEmail/Attribute:importance/Value:normal+' => 'normal',
  329. 'Class:ActionEmail/Attribute:importance/Value:high' => 'high',
  330. 'Class:ActionEmail/Attribute:importance/Value:high+' => 'high',
  331. ));
  332. //
  333. // Class: Trigger
  334. //
  335. Dict::Add('JA JP', 'Japanese', '日本語', array(
  336. 'Class:Trigger' => 'トリガー', //'Trigger',
  337. 'Class:Trigger+' => 'カスタムイベントヘッダ', //'Custom event handler',
  338. 'Class:Trigger/Attribute:description' => '概要', //'Description',
  339. 'Class:Trigger/Attribute:description+' => '1行概要', //'one line description',
  340. 'Class:Trigger/Attribute:action_list' => 'トリガされたアクション', //'Triggered actions',
  341. 'Class:Trigger/Attribute:action_list+' => 'トリガが発火した場合に動作するアクション', //'Actions performed when the trigger is activated',
  342. 'Class:Trigger/Attribute:finalclass' => '型', //'Type',
  343. 'Class:Trigger/Attribute:finalclass+' => '',
  344. ));
  345. //
  346. // Class: TriggerOnObject
  347. //
  348. Dict::Add('JA JP', 'Japanese', '日本語', array(
  349. 'Class:TriggerOnObject' => 'トリガ(クラス依存)', //'Trigger (class dependent)',
  350. 'Class:TriggerOnObject+' => '指定オブジェクトのクラスへのトリガ', //'Trigger on a given class of objects',
  351. 'Class:TriggerOnObject/Attribute:target_class' => 'ターゲットクラス', //'Target class',
  352. 'Class:TriggerOnObject/Attribute:target_class+' => '',
  353. ));
  354. //
  355. // Class: TriggerOnStateChange
  356. //
  357. Dict::Add('JA JP', 'Japanese', '日本語', array(
  358. 'Class:TriggerOnStateChange' => '(状態変更の)トリガ', // Trigger (on state change)',
  359. 'Class:TriggerOnStateChange+' => 'オブジェクト状態変更のトリガ', //'Trigger on object state change',
  360. 'Class:TriggerOnStateChange/Attribute:state' => '状態', //'State',
  361. 'Class:TriggerOnStateChange/Attribute:state+' => '',
  362. ));
  363. //
  364. // Class: TriggerOnStateEnter
  365. //
  366. Dict::Add('JA JP', 'Japanese', '日本語', array(
  367. 'Class:TriggerOnStateEnter' => 'トリガ(ある状態に入る)', // 'Trigger (on entering a state)',
  368. 'Class:TriggerOnStateEnter+' => 'オブジェクト状態変更のトリガ: 入場', //'Trigger on object state change - entering',
  369. ));
  370. //
  371. // Class: TriggerOnStateLeave
  372. //
  373. Dict::Add('JA JP', 'Japanese', '日本語', array(
  374. 'Class:TriggerOnStateLeave' => '(ある状態から退場する)トリガ', // 'Trigger (on leaving a state)',
  375. 'Class:TriggerOnStateLeave+' => 'オブジェクト状態変更のトリガ: 退場', //Trigger on object state change - leaving',
  376. ));
  377. //
  378. // Class: TriggerOnObjectCreate
  379. //
  380. Dict::Add('JA JP', 'Japanese', '日本語', array(
  381. 'Class:TriggerOnObjectCreate' => '(オブジェクト生成の)トリガ', //Trigger (on object creation)',
  382. 'Class:TriggerOnObjectCreate+' => '指定されたクラスの(子クラスの)オブジェクト生成のトリガ', //Trigger on object creation of [a child class of] the given class',
  383. ));
  384. //
  385. // Class: lnkTriggerAction
  386. //
  387. Dict::Add('JA JP', 'Japanese', '日本語', array(
  388. 'Class:lnkTriggerAction' => 'アクション/トリガ', //'Action/Trigger',
  389. 'Class:lnkTriggerAction+' => 'トリガとアクション間のリンク', //'Link between a trigger and an action',
  390. 'Class:lnkTriggerAction/Attribute:action_id' => 'アクション', //'Action',
  391. 'Class:lnkTriggerAction/Attribute:action_id+' => '実行されるべきアクション', //'The action to be executed',
  392. 'Class:lnkTriggerAction/Attribute:action_name' => 'アクション', //'Action',
  393. 'Class:lnkTriggerAction/Attribute:action_name+' => '',
  394. 'Class:lnkTriggerAction/Attribute:trigger_id' => 'トリガ', //'Trigger',
  395. 'Class:lnkTriggerAction/Attribute:trigger_id+' => '',
  396. 'Class:lnkTriggerAction/Attribute:trigger_name' => 'トリガ', //'Trigger',
  397. 'Class:lnkTriggerAction/Attribute:trigger_name+' => '',
  398. 'Class:lnkTriggerAction/Attribute:order' => '処理順序', //'Order',
  399. 'Class:lnkTriggerAction/Attribute:order+' => 'アクション実行順序', //'Actions execution order',
  400. ));
  401. ?>