ja.dict.itop-config-mgmt.php 63 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054
  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@rworks.jp>
  23. * @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
  24. */
  25. //////////////////////////////////////////////////////////////////////
  26. // Relations
  27. //////////////////////////////////////////////////////////////////////
  28. //
  29. Dict::Add('JA JP', 'Japanese', '日本語', array (
  30. 'Relation:impacts/Description' => '影響を受ける要素???', // Elements impacted by', # 'Elements impacted by'
  31. 'Relation:impacts/VerbUp' => '影響...???', // 'Impact...', # 'Impact...'
  32. 'Relation:impacts/VerbDown' => '影響を受ける要素???', // Elements impacted by...', # 'Elements impacted by...'
  33. 'Relation:depends on/Description' => 'この要素に依存する要素群???', // Elements this element depends on', # 'Elements this element depends on'
  34. 'Relation:depends on/VerbUp' => '...に依存する???', # 'Depends on...'
  35. 'Relation:depends on/VerbDown' => '影響を受ける???', // 'Impacts...', # 'Impacts...'
  36. ));
  37. // Dictionnay conventions
  38. // Class:<class_name>
  39. // Class:<class_name>+
  40. // Class:<class_name>/Attribute:<attribute_code>
  41. // Class:<class_name>/Attribute:<attribute_code>+
  42. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>
  43. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
  44. // Class:<class_name>/Stimulus:<stimulus_code>
  45. // Class:<class_name>/Stimulus:<stimulus_code>+
  46. //////////////////////////////////////////////////////////////////////
  47. // Classes in 'bizmodel'
  48. //////////////////////////////////////////////////////////////////////
  49. //
  50. // Dictionnay conventions
  51. // Class:<class_name>
  52. // Class:<class_name>+
  53. // Class:<class_name>/Attribute:<attribute_code>
  54. // Class:<class_name>/Attribute:<attribute_code>+
  55. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>
  56. // Class:<class_name>/Attribute:<attribute_code>/Value:<value>+
  57. // Class:<class_name>/Stimulus:<stimulus_code>
  58. // Class:<class_name>/Stimulus:<stimulus_code>+
  59. //////////////////////////////////////////////////////////////////////
  60. // Note: The classes have been grouped by categories: bizmodel
  61. //////////////////////////////////////////////////////////////////////
  62. //////////////////////////////////////////////////////////////////////
  63. // Classes in 'bizmodel'
  64. //////////////////////////////////////////////////////////////////////
  65. //
  66. //
  67. // Class: Organization
  68. //
  69. Dict::Add('JA JP', 'Japanese', '日本語', array (
  70. 'Class:Organization' => '組織', // 'Organization', # 'Organization'
  71. 'Class:Organization+' => '', # ''
  72. 'Class:Organization/Attribute:name' => '名前', // 'Name', # 'Name'
  73. 'Class:Organization/Attribute:name+' => '共通名', // 'Common name', # 'Common name'
  74. 'Class:Organization/Attribute:code' => 'コード', // 'Code', # 'Code'
  75. 'Class:Organization/Attribute:code+' => '組織コード(Siret, DUNS, ...)', // 'Organization code (Siret, DUNS,...)', # 'Organization code (Siret, DUNS,...)'
  76. 'Class:Organization/Attribute:status' => 'ステータス', // 'Status', # 'Status'
  77. 'Class:Organization/Attribute:status+' => '', # ''
  78. 'Class:Organization/Attribute:status/Value:active' => 'アクティブ', // 'Active', # 'Active'
  79. 'Class:Organization/Attribute:status/Value:active+' => 'アクティブ', // 'Active', # 'Active'
  80. 'Class:Organization/Attribute:status/Value:inactive' => '非アクティブ', // 'Inactive', # 'Inactive'
  81. 'Class:Organization/Attribute:status/Value:inactive+' => '非アクティブ', // 'Inactive', # 'Inactive'
  82. 'Class:Organization/Attribute:parent_id' => '親', // 'Parent', # 'Parent'
  83. 'Class:Organization/Attribute:parent_id+' => '親組織', // 'Parent organization', # 'Parent organization'
  84. 'Class:Organization/Attribute:parent_name' => '親名称', // 'Parent name', # 'Parent name'
  85. 'Class:Organization/Attribute:parent_name+' => '親組織の名称', // 'Name of the parent organization', # 'Name of the parent organization'
  86. ));
  87. //
  88. // Class: Location
  89. //
  90. Dict::Add('JA JP', 'Japanese', '日本語', array (
  91. 'Class:Location' => 'ロケーション', // 'Location', # 'Location'
  92. 'Class:Location+' => '任意のロケーションタイプ: リージョン、国、都市、サイト、ビル、フロア、部屋、ラック、...', // 'Any type of location: Region, Country, City, Site, Building, Floor, Room, Rack,...', # 'Any type of location: Region, Country, City, Site, Building, Floor, Room, Rack,...'
  93. 'Class:Location/Attribute:name' => '名称', // 'Name', # 'Name'
  94. 'Class:Location/Attribute:name+' => '', # ''
  95. 'Class:Location/Attribute:status' => 'ステータス', // 'Status', # 'Status'
  96. 'Class:Location/Attribute:status+' => '', # ''
  97. 'Class:Location/Attribute:status/Value:active' => 'アクティブ', // 'Active', # 'Active'
  98. 'Class:Location/Attribute:status/Value:active+' => 'アクティブ', // 'Active', # 'Active'
  99. 'Class:Location/Attribute:status/Value:inactive' => '非アクティブ', // 'Inactive', # 'Inactive'
  100. 'Class:Location/Attribute:status/Value:inactive+' => '非アクティブ', // 'Inactive', # 'Inactive'
  101. 'Class:Location/Attribute:org_id' => 'オーナー組織', // 'Owner organization', # 'Owner organization'
  102. 'Class:Location/Attribute:org_id+' => '', # ''
  103. 'Class:Location/Attribute:org_name' => 'オーナー組織名称', // 'Name of the owner organization', # 'Name of the owner organization'
  104. 'Class:Location/Attribute:org_name+' => '', # ''
  105. 'Class:Location/Attribute:address' => 'アドレス', // 'Address', # 'Address'
  106. 'Class:Location/Attribute:address+' => '住所', // 'Postal address', # 'Postal address'
  107. 'Class:Location/Attribute:postal_code' => '郵便番号', // 'Postal code', # 'Postal code'
  108. 'Class:Location/Attribute:postal_code+' => '郵便番号', // 'ZIP/Postal code', # 'ZIP/Postal code'
  109. 'Class:Location/Attribute:city' => '都市', // 'City', # 'City'
  110. 'Class:Location/Attribute:city+' => '', # ''
  111. 'Class:Location/Attribute:country' => '国', // 'Country', # 'Country'
  112. 'Class:Location/Attribute:country+' => '', # ''
  113. 'Class:Location/Attribute:parent_id' => '親ロケーション', // 'Parent location', # 'Parent location'
  114. 'Class:Location/Attribute:parent_id+' => '', # ''
  115. 'Class:Location/Attribute:parent_name' => '親名称???', // 'Parent name', # 'Parent name'
  116. 'Class:Location/Attribute:parent_name+' => '', # ''
  117. 'Class:Location/Attribute:contact_list' => 'コンタクト', // 'Contacts', # 'Contacts'
  118. 'Class:Location/Attribute:contact_list+' => 'このサイトにあるコンタクト', // 'Contacts located on this site', # 'Contacts located on this site'
  119. 'Class:Location/Attribute:infra_list' => 'インフラ', // 'Infrastructure', # 'Infrastructure'
  120. 'Class:Location/Attribute:infra_list+' => 'このサイトにあるCI', // 'CIs located on this site', # 'CIs located on this site'
  121. ));
  122. //
  123. // Class: Group
  124. //
  125. Dict::Add('JA JP', 'Japanese', '日本語', array (
  126. 'Class:Group' => 'グループ', // 'Group', # 'Group'
  127. 'Class:Group+' => '', # ''
  128. 'Class:Group/Attribute:name' => '名称', // 'Name', # 'Name'
  129. 'Class:Group/Attribute:name+' => '', # ''
  130. 'Class:Group/Attribute:status' => 'ステータス', // 'Status', # 'Status'
  131. 'Class:Group/Attribute:status+' => '', # ''
  132. 'Class:Group/Attribute:status/Value:implementation' => '実装???', // 'Implementation', # 'Implementation'
  133. 'Class:Group/Attribute:status/Value:implementation+' => '実装???', // 'Implementation', # 'Implementation'
  134. 'Class:Group/Attribute:status/Value:obsolete' => 'もう使われていない', // Obsolete', # 'Obsolete'
  135. 'Class:Group/Attribute:status/Value:obsolete+' => 'もう使われていない', // 'Obsolete', # 'Obsolete'
  136. 'Class:Group/Attribute:status/Value:production' => 'プロダクション', // 'Production', # 'Production'
  137. 'Class:Group/Attribute:status/Value:production+' => 'プロダクション', // 'Production', # 'Production'
  138. 'Class:Group/Attribute:org_id' => '組織', // 'Organization', # 'Organization'
  139. 'Class:Group/Attribute:org_id+' => '', # ''
  140. 'Class:Group/Attribute:owner_name' => '名前', // 'Name', # 'Name'
  141. 'Class:Group/Attribute:owner_name+' => '共通名', // 'Common name', # 'Common name'
  142. 'Class:Group/Attribute:description' => '詳細情報', // 'Description', # 'Description'
  143. 'Class:Group/Attribute:description+' => '', # ''
  144. 'Class:Group/Attribute:type' => 'タイプ', // 'Type', # 'Type'
  145. 'Class:Group/Attribute:type+' => '', # ''
  146. 'Class:Group/Attribute:parent_id' => '親グループ', // 'Parent Group', # 'Parent Group'
  147. 'Class:Group/Attribute:parent_id+' => '', # ''
  148. 'Class:Group/Attribute:parent_name' => '名前', // 'Name', # 'Name'
  149. 'Class:Group/Attribute:parent_name+' => '', # ''
  150. 'Class:Group/Attribute:ci_list' => 'リンクされたCI', // 'Linked CIs', # 'Linked CIs'
  151. 'Class:Group/Attribute:ci_list+' => '', # ''
  152. ));
  153. //
  154. // Class: lnkGroupToCI
  155. //
  156. Dict::Add('JA JP', 'Japanese', '日本語', array (
  157. 'Class:lnkGroupToCI' => 'グループ / CI', // 'Group / CI', # 'Group / CI'
  158. 'Class:lnkGroupToCI+' => '', # ''
  159. 'Class:lnkGroupToCI/Attribute:group_id' => 'グループ', // 'Group', # 'Group'
  160. 'Class:lnkGroupToCI/Attribute:group_id+' => '', # ''
  161. 'Class:lnkGroupToCI/Attribute:group_name' => '名前', // 'Name', # 'Name'
  162. 'Class:lnkGroupToCI/Attribute:group_name+' => '', # ''
  163. 'Class:lnkGroupToCI/Attribute:ci_id' => 'CI', # 'CI'
  164. 'Class:lnkGroupToCI/Attribute:ci_id+' => '', # ''
  165. 'Class:lnkGroupToCI/Attribute:ci_name' => '名前', // 'Name', # 'Name'
  166. 'Class:lnkGroupToCI/Attribute:ci_name+' => '', # ''
  167. 'Class:lnkGroupToCI/Attribute:ci_status' => 'CIステータス', // 'CI Status', # 'CI Status'
  168. 'Class:lnkGroupToCI/Attribute:ci_status+' => '', # ''
  169. 'Class:lnkGroupToCI/Attribute:reason' => '理由', // 'Reason', # 'Reason'
  170. 'Class:lnkGroupToCI/Attribute:reason+' => '', # ''
  171. ));
  172. //
  173. // Class: Contact
  174. //
  175. Dict::Add('JA JP', 'Japanese', '日本語', array (
  176. 'Class:Contact' => 'コンタクト', // 'Contact', # 'Contact'
  177. 'Class:Contact+' => '', # ''
  178. 'Class:Contact/Attribute:name' => '名前', // 'Name', # 'Name'
  179. 'Class:Contact/Attribute:name+' => '', # ''
  180. 'Class:Contact/Attribute:status' => 'ステータス', // 'Status', # 'Status'
  181. 'Class:Contact/Attribute:status+' => '', # ''
  182. 'Class:Contact/Attribute:status/Value:active' => 'アクティブ', // 'Active', # 'Active'
  183. 'Class:Contact/Attribute:status/Value:active+' => 'アクティブ', // 'Active', # 'Active'
  184. 'Class:Contact/Attribute:status/Value:inactive' => '非アクティブ', // 'Inactive', # 'Inactive'
  185. 'Class:Contact/Attribute:status/Value:inactive+' => '非アクティブ', // 'Inactive', # 'Inactive'
  186. 'Class:Contact/Attribute:org_id' => '組織', // 'Organization', # 'Organization'
  187. 'Class:Contact/Attribute:org_id+' => '', # ''
  188. 'Class:Contact/Attribute:org_name' => '組織', // 'Organization', # 'Organization'
  189. 'Class:Contact/Attribute:org_name+' => '', # ''
  190. 'Class:Contact/Attribute:email' => 'Eメール', // 'Email', # 'Email'
  191. 'Class:Contact/Attribute:email+' => '', # ''
  192. 'Class:Contact/Attribute:phone' => '電話', // 'Phone', # 'Phone'
  193. 'Class:Contact/Attribute:phone+' => '', # ''
  194. 'Class:Contact/Attribute:location_id' => 'ロケーション', // 'Location', # 'Location'
  195. 'Class:Contact/Attribute:location_id+' => '', # ''
  196. 'Class:Contact/Attribute:location_name' => 'ロケーション', // 'Location', # 'Location'
  197. 'Class:Contact/Attribute:location_name+' => '', # ''
  198. 'Class:Contact/Attribute:ci_list' => 'CIs', # 'CIs'
  199. 'Class:Contact/Attribute:ci_list+' => 'このコンタクトに関連するCI', // 'CIs related to the contact', # 'CIs related to the contact'
  200. 'Class:Contact/Attribute:contract_list' => 'コンタクト', // 'Contracts', # 'Contracts'
  201. 'Class:Contact/Attribute:contract_list+' => 'このコンタクトに関連するコンタクト', // 'Contracts related to the contact', # 'Contracts related to the contact'
  202. 'Class:Contact/Attribute:service_list' => 'サービス', // 'Services', # 'Services'
  203. 'Class:Contact/Attribute:service_list+' => 'このコンタクトに関連するサービス', // 'Services related to this contact', # 'Services related to this contact'
  204. 'Class:Contact/Attribute:ticket_list' => 'チケット', // 'Tickets', # 'Tickets'
  205. 'Class:Contact/Attribute:ticket_list+' => 'このコンタクトに関連するチケット', // 'Tickets related to the contact', # 'Tickets related to the contact'
  206. 'Class:Contact/Attribute:team_list' => 'チーム', // 'Teams', # 'Teams'
  207. 'Class:Contact/Attribute:team_list+' => 'このコンタクトが所属するチーム', // 'Teams this contact belongs to', # 'Teams this contact belongs to'
  208. 'Class:Contact/Attribute:finalclass' => 'タイプ', // 'Type', # 'Type'
  209. 'Class:Contact/Attribute:finalclass+' => '', # ''
  210. ));
  211. //
  212. // Class: Person
  213. //
  214. Dict::Add('JA JP', 'Japanese', '日本語', array (
  215. 'Class:Person' => 'パーソン', // 'Person', # 'Person'
  216. 'Class:Person+' => '', # ''
  217. 'Class:Person/Attribute:first_name' => '名字', // 'First Name', # 'First Name'
  218. 'Class:Person/Attribute:first_name+' => '', # ''
  219. 'Class:Person/Attribute:employee_id' => '社員番号', // Employee ID', # 'Employee ID'
  220. 'Class:Person/Attribute:employee_id+' => '', # ''
  221. ));
  222. //
  223. // Class: Team
  224. //
  225. Dict::Add('JA JP', 'Japanese', '日本語', array (
  226. 'Class:Team' => 'チーム', // 'Team', # 'Team'
  227. 'Class:Team+' => '', # ''
  228. 'Class:Team/Attribute:member_list' => 'メンバ', // 'Members', # 'Members'
  229. 'Class:Team/Attribute:member_list+' => '本チーム所属のコンタクト', // 'Contacts that are part of the team', # 'Contacts that are part of the team'
  230. ));
  231. //
  232. // Class: lnkTeamToContact
  233. //
  234. Dict::Add('JA JP', 'Japanese', '日本語', array (
  235. 'Class:lnkTeamToContact' => 'チームメンバ', // 'Team Members', # 'Team Members'
  236. 'Class:lnkTeamToContact+' => 'チームのメンバ', // 'Members of a team', # 'Members of a team'
  237. 'Class:lnkTeamToContact/Attribute:team_id' => 'チーム', // 'Team', # 'Team'
  238. 'Class:lnkTeamToContact/Attribute:team_id+' => '', # ''
  239. 'Class:lnkTeamToContact/Attribute:contact_id' => 'メンバ', // 'Member', # 'Member'
  240. 'Class:lnkTeamToContact/Attribute:contact_id+' => '', # ''
  241. 'Class:lnkTeamToContact/Attribute:contact_location_id' => 'ロケーション', // 'Location', # 'Location'
  242. 'Class:lnkTeamToContact/Attribute:contact_location_id+' => '', # ''
  243. 'Class:lnkTeamToContact/Attribute:contact_email' => 'Eメール', // 'Email', # 'Email'
  244. 'Class:lnkTeamToContact/Attribute:contact_email+' => '', # ''
  245. 'Class:lnkTeamToContact/Attribute:contact_phone' => '電話番号', // 'Phone', # 'Phone'
  246. 'Class:lnkTeamToContact/Attribute:contact_phone+' => '', # ''
  247. 'Class:lnkTeamToContact/Attribute:role' => '役割', // 'Role', # 'Role'
  248. 'Class:lnkTeamToContact/Attribute:role+' => '', # ''
  249. ));
  250. //
  251. // Class: Document
  252. //
  253. Dict::Add('JA JP', 'Japanese', '日本語', array (
  254. 'Class:Document' => 'ドキュメント', // 'Document', # 'Document'
  255. 'Class:Document+' => '', # ''
  256. 'Class:Document/Attribute:name' => '名称', // 'Name', # 'Name'
  257. 'Class:Document/Attribute:name+' => '', # ''
  258. 'Class:Document/Attribute:org_id' => '組織', // 'Organization', # 'Organization'
  259. 'Class:Document/Attribute:description+' => '', # ''
  260. 'Class:Document/Attribute:org_name' => '組織名', // 'Organization Name', # 'Organization Name'
  261. 'Class:Document/Attribute:org_name+' => '', # ''
  262. 'Class:Document/Attribute:description+' => '', # ''
  263. 'Class:Document/Attribute:description' => '詳細情報', // 'Description', # 'Description'
  264. 'Class:Document/Attribute:description+' => '', # ''
  265. 'Class:Document/Attribute:type' => 'タイプ', // 'Type', # 'Type'
  266. 'Class:Document/Attribute:type+' => '', # ''
  267. 'Class:Document/Attribute:type/Value:contract' => 'コンタクト', // 'Contract', # 'Contract'
  268. 'Class:Document/Attribute:type/Value:contract+' => '', # ''
  269. 'Class:Document/Attribute:type/Value:networkmap' => 'ネットワークマップ', // 'Network Map', # 'Network Map'
  270. 'Class:Document/Attribute:type/Value:networkmap+' => '', # ''
  271. 'Class:Document/Attribute:type/Value:presentation' => 'プレゼンテーション', // 'Presentation', # 'Presentation'
  272. 'Class:Document/Attribute:type/Value:presentation+' => '', # ''
  273. 'Class:Document/Attribute:type/Value:training' => 'トレーニング', // 'Training', # 'Training'
  274. 'Class:Document/Attribute:type/Value:training+' => '', # ''
  275. 'Class:Document/Attribute:type/Value:whitePaper' => 'ホワイトペーパー', // 'White Paper', # 'White Paper'
  276. 'Class:Document/Attribute:type/Value:whitePaper+' => '', # ''
  277. 'Class:Document/Attribute:type/Value:workinginstructions' => '業務命令', // 'Working Instructions', # 'Working Instructions'
  278. 'Class:Document/Attribute:type/Value:workinginstructions+' => '', # ''
  279. 'Class:Document/Attribute:status' => 'ステータス', // 'Status', # 'Status'
  280. 'Class:Document/Attribute:status+' => '', # ''
  281. 'Class:Document/Attribute:status/Value:draft' => 'ドラフト', // 'Draft', # 'Draft'
  282. 'Class:Document/Attribute:status/Value:draft+' => '', # ''
  283. 'Class:Document/Attribute:status/Value:obsolete' => 'すでに使われていない', // 'Obsolete', # 'Obsolete'
  284. 'Class:Document/Attribute:status/Value:obsolete+' => '', # ''
  285. 'Class:Document/Attribute:status/Value:published' => 'パブリッシュ済み', // 'Published', # 'Published'
  286. 'Class:Document/Attribute:status/Value:published+' => '', # ''
  287. 'Class:Document/Attribute:ci_list' => 'CIs', # 'CIs'
  288. 'Class:Document/Attribute:ci_list+' => '本ドキュメントを参照するCI', // 'CIs refering to this document', # 'CIs refering to this document'
  289. 'Class:Document/Attribute:contract_list' => 'コンタクト', // 'Contracts', # 'Contracts'
  290. 'Class:Document/Attribute:contract_list+' => '本ドキュメントを参照するコンタクト', // 'Contracts refering to this document', # 'Contracts refering to this document'
  291. 'Class:Document/Attribute:service_list' => 'サービス', //'Services', # 'Services'
  292. 'Class:Document/Attribute:service_list+' => 'サービス', // 'Services refering to this document', # 'Services refering to this document'
  293. 'Class:Document/Attribute:ticket_list' => 'チケット', // 'Tickets', # 'Tickets'
  294. 'Class:Document/Attribute:ticket_list+' => '本ドキュメントを参照するチケット', // 'Tickets refering to this document', # 'Tickets refering to this document'
  295. 'Class:Document:PreviewTab' => 'プレビュー', // 'Preview', # 'Preview'
  296. ));
  297. //
  298. // Class: WebDoc
  299. //
  300. Dict::Add('JA JP', 'Japanese', '日本語', array (
  301. 'Class:WebDoc' => 'ウェブドキュメント', // 'Web Document', # 'Web Document'
  302. 'Class:WebDoc+' => '他のウェブサーバで参照可能なドキュメント', // 'Document available on another web server', # 'Document available on another web server'
  303. 'Class:WebDoc/Attribute:url' => 'URL', // 'Url', # 'Url'
  304. 'Class:WebDoc/Attribute:url+' => '', # ''
  305. ));
  306. //
  307. // Class: Note
  308. //
  309. Dict::Add('JA JP', 'Japanese', '日本語', array (
  310. 'Class:Note' => 'ノート', // 'Note', # 'Note'
  311. 'Class:Note+' => '', # ''
  312. 'Class:Note/Attribute:note' => 'テキスト', // 'Text', # 'Text'
  313. 'Class:Note/Attribute:note+' => '', # ''
  314. ));
  315. //
  316. // Class: FileDoc
  317. //
  318. Dict::Add('JA JP', 'Japanese', '日本語', array (
  319. 'Class:FileDoc' => 'ドキュメント(ファイル)', // 'Document (file)', # 'Document (file)'
  320. 'Class:FileDoc+' => '', # ''
  321. 'Class:FileDoc/Attribute:contents' => 'コンテンツ', // 'Contents', # 'Contents'
  322. 'Class:FileDoc/Attribute:contents+' => '', # ''
  323. ));
  324. //
  325. // Class: Licence
  326. //
  327. Dict::Add('JA JP', 'Japanese', '日本語', array (
  328. 'Class:Licence' => 'ライセンス', //'Licence', # 'Licence'
  329. 'Class:Licence+' => '', # ''
  330. 'Class:Licence/Attribute:provider' => 'プロバイダ', // 'Provider', # 'Provider'
  331. 'Class:Licence/Attribute:provider+' => '', # ''
  332. 'Class:Licence/Attribute:org_id' => 'オーナー', // 'Owner', # 'Owner'
  333. 'Class:Licence/Attribute:org_id+' => '', # ''
  334. 'Class:Licence/Attribute:org_name' => '名前', // 'Name', # 'Name'
  335. 'Class:Licence/Attribute:org_name+' => '共通名', // 'Common name', # 'Common name'
  336. 'Class:Licence/Attribute:product' => 'プロダクト', // 'Product', # 'Product'
  337. 'Class:Licence/Attribute:product+' => '', # ''
  338. 'Class:Licence/Attribute:name' => '名称', // 'Name', # 'Name'
  339. 'Class:Licence/Attribute:name+' => '', # ''
  340. 'Class:Licence/Attribute:start' => '開始日付', // 'Start date', # 'Start date'
  341. 'Class:Licence/Attribute:start+' => '', # ''
  342. 'Class:Licence/Attribute:end' => '終了日付', // 'End date', # 'End date'
  343. 'Class:Licence/Attribute:end+' => '', # ''
  344. 'Class:Licence/Attribute:licence_key' => 'キー', // 'Key', # 'Key'
  345. 'Class:Licence/Attribute:licence_key+' => '', # ''
  346. 'Class:Licence/Attribute:scope' => 'スコープ', // 'Scope', # 'Scope'
  347. 'Class:Licence/Attribute:scope+' => '', # ''
  348. 'Class:Licence/Attribute:usage_limit' => '利用上限', // 'Usage limit', # 'Usage limit'
  349. 'Class:Licence/Attribute:usage_limit+' => '', # ''
  350. 'Class:Licence/Attribute:usage_list' => '利用方法', // 'Usage', # 'Usage'
  351. 'Class:Licence/Attribute:usage_list+' => '本ライセンスを利用するアプリケーションインスタンス', // 'Application instances using this licence', # 'Application instances using this licence'
  352. ));
  353. //
  354. // Class: Subnet
  355. //
  356. Dict::Add('JA JP', 'Japanese', '日本語', array (
  357. 'Class:Subnet' => 'サブネット', // 'Subnet', # 'Subnet'
  358. 'Class:Subnet+' => '', # ''
  359. //'Class:Subnet/Attribute:name' => '名前', // 'Name',
  360. //'Class:Subnet/Attribute:name+' => '',
  361. 'Class:Subnet/Attribute:org_id' => 'オーナー組織', // 'Owner organization', # 'Owner organization'
  362. 'Class:Subnet/Attribute:org_id+' => '', # ''
  363. 'Class:Subnet/Attribute:description' => '詳細記述', // 'Description', # 'Description'
  364. 'Class:Subnet/Attribute:description+' => '', # ''
  365. 'Class:Subnet/Attribute:ip' => 'IP', # 'IP'
  366. 'Class:Subnet/Attribute:ip+' => '', # ''
  367. 'Class:Subnet/Attribute:ip_mask' => 'IPマスク', // 'IP Mask', # 'IP Mask'
  368. 'Class:Subnet/Attribute:ip_mask+' => '', # ''
  369. ));
  370. //
  371. // Class: Patch
  372. //
  373. Dict::Add('JA JP', 'Japanese', '日本語', array (
  374. 'Class:Patch' => 'パッチ', //'Patch', # 'Patch'
  375. 'Class:Patch+' => '', # ''
  376. 'Class:Patch/Attribute:name' => '名前', // 'Name', # 'Name'
  377. 'Class:Patch/Attribute:name+' => '', # ''
  378. 'Class:Patch/Attribute:description' => '詳細記述', // 'Description', # 'Description'
  379. 'Class:Patch/Attribute:description+' => '', # ''
  380. 'Class:Patch/Attribute:target_sw' => 'アプリケーションスコープ', // 'Application scope', # 'Application scope'
  381. 'Class:Patch/Attribute:target_sw+' => '対象ソフトウェア(OS or アプリケーション)', // 'Target software (OS or application)', # 'Target software (OS or application)'
  382. 'Class:Patch/Attribute:version' => 'バージョン', // 'Version', # 'Version'
  383. 'Class:Patch/Attribute:version+' => '', # ''
  384. 'Class:Patch/Attribute:type' => 'タイプ', // 'Type', # 'Type'
  385. 'Class:Patch/Attribute:type+' => '', # ''
  386. 'Class:Patch/Attribute:type/Value:application' => 'アプリケーション', // 'Application', # 'Application'
  387. 'Class:Patch/Attribute:type/Value:application+' => '', # ''
  388. 'Class:Patch/Attribute:type/Value:os' => 'OS', # 'OS'
  389. 'Class:Patch/Attribute:type/Value:os+' => '', # ''
  390. 'Class:Patch/Attribute:type/Value:security' => 'セキュリティ', // 'Security', # 'Security'
  391. 'Class:Patch/Attribute:type/Value:security+' => '', # ''
  392. 'Class:Patch/Attribute:type/Value:servicepack' => 'サービスパック', // 'Service Pack', # 'Service Pack'
  393. 'Class:Patch/Attribute:type/Value:servicepack+' => '', # ''
  394. 'Class:Patch/Attribute:ci_list' => 'デバイス', // 'Devices', # 'Devices'
  395. 'Class:Patch/Attribute:ci_list+' => '本パッチがインストールされているデバイス', // 'Devices where the patch is installed', # 'Devices where the patch is installed'
  396. ));
  397. //
  398. // Class: Software
  399. //
  400. Dict::Add('JA JP', 'Japanese', '日本語', array (
  401. 'Class:Software' => 'ソフトウェア', // 'Software', # 'Software'
  402. 'Class:Software+' => '', # ''
  403. 'Class:Software/Attribute:name' => '名前', // 'Name', # 'Name'
  404. 'Class:Software/Attribute:name+' => '', # ''
  405. 'Class:Software/Attribute:description' => '詳細記述', // 'Description', # 'Description'
  406. 'Class:Software/Attribute:description+' => '', # ''
  407. 'Class:Software/Attribute:instance_list' => 'インストール', // 'Installations', # 'Installations'
  408. 'Class:Software/Attribute:instance_list+' => '本ソフトウェアのインスタンス', // 'Instances of this software', # 'Instances of this software'
  409. 'Class:Software/Attribute:finalclass' => 'タイプ', // 'Type', # 'Type'
  410. 'Class:Software/Attribute:finalclass+' => '', # ''
  411. ));
  412. //
  413. // Class: Application
  414. //
  415. Dict::Add('JA JP', 'Japanese', '日本語', array (
  416. 'Class:Application' => 'アプリケーション', // 'Application', # 'Application'
  417. 'Class:Application+' => '', # ''
  418. 'Class:Application/Attribute:name' => '名前', // 'Name', # 'Name'
  419. 'Class:Application/Attribute:name+' => '', # ''
  420. 'Class:Application/Attribute:description' => '詳細記述', // 'Description', # 'Description'
  421. 'Class:Application/Attribute:description+' => '', # ''
  422. 'Class:Application/Attribute:instance_list' => 'インストール', // 'Installations', # 'Installations'
  423. 'Class:Application/Attribute:instance_list+' => '本アプリケーションのインスタンス', // 'Instances of this application', # 'Instances of this application'
  424. ));
  425. //
  426. // Class: DBServer
  427. //
  428. Dict::Add('JA JP', 'Japanese', '日本語', array (
  429. 'Class:DBServer' => 'データベース', // 'Database', # 'Database'
  430. 'Class:DBServer+' => 'データベースサーバソフトウェア', // 'Database server SW', # 'Database server SW'
  431. 'Class:DBServer/Attribute:instance_list' => 'インストール', // 'Installations', # 'Installations'
  432. 'Class:DBServer/Attribute:instance_list+' => '本データベースサーバのインスタンス', // 'Instances of this database server', # 'Instances of this database server'
  433. ));
  434. //
  435. // Class: lnkPatchToCI
  436. //
  437. Dict::Add('JA JP', 'Japanese', '日本語', array (
  438. 'Class:lnkPatchToCI' => 'パッチ方法', // 'Patch Usage', # 'Patch Usage'
  439. 'Class:lnkPatchToCI+' => '', # ''
  440. 'Class:lnkPatchToCI/Attribute:patch_id' => 'パッチ', // 'Patch', # 'Patch'
  441. 'Class:lnkPatchToCI/Attribute:patch_id+' => '', # ''
  442. 'Class:lnkPatchToCI/Attribute:patch_name' => 'パッチ', // 'Patch', # 'Patch'
  443. 'Class:lnkPatchToCI/Attribute:patch_name+' => '', # ''
  444. 'Class:lnkPatchToCI/Attribute:ci_id' => 'CI', # 'CI'
  445. 'Class:lnkPatchToCI/Attribute:ci_id+' => '', # ''
  446. 'Class:lnkPatchToCI/Attribute:ci_name' => 'CI', # 'CI'
  447. 'Class:lnkPatchToCI/Attribute:ci_name+' => '', # ''
  448. 'Class:lnkPatchToCI/Attribute:ci_status' => 'CIステータス', // 'CI Status', # 'CI Status'
  449. 'Class:lnkPatchToCI/Attribute:ci_status+' => '', # ''
  450. ));
  451. //
  452. // Class: FunctionalCI
  453. //
  454. Dict::Add('JA JP', 'Japanese', '日本語', array (
  455. 'Class:FunctionalCI' => '機能的CI???', // 'Functional CI', # 'Functional CI'
  456. 'Class:FunctionalCI+' => '', # ''
  457. 'Class:FunctionalCI/Attribute:name' => '名称', // 'Name', # 'Name'
  458. 'Class:FunctionalCI/Attribute:name+' => '', # ''
  459. 'Class:FunctionalCI/Attribute:status' => 'ステータス', // 'Status', # 'Status'
  460. 'Class:FunctionalCI/Attribute:status+' => '', # ''
  461. 'Class:FunctionalCI/Attribute:status/Value:implementation' => '実装', // 'Implementation', # 'Implementation'
  462. 'Class:FunctionalCI/Attribute:status/Value:implementation+' => '', # ''
  463. 'Class:FunctionalCI/Attribute:status/Value:obsolete' => 'すでに使われていない', // 'Obsolete', # 'Obsolete'
  464. 'Class:FunctionalCI/Attribute:status/Value:obsolete+' => '', # ''
  465. 'Class:FunctionalCI/Attribute:status/Value:production' => 'プロダクション', // 'Production', # 'Production'
  466. 'Class:FunctionalCI/Attribute:status/Value:production+' => '', # ''
  467. 'Class:FunctionalCI/Attribute:org_id' => 'オーナー組織', // 'Owner organization', # 'Owner organization'
  468. 'Class:FunctionalCI/Attribute:org_id+' => '', # ''
  469. 'Class:FunctionalCI/Attribute:owner_name' => 'オーナー組織', // 'Owner organization', # 'Owner organization'
  470. 'Class:FunctionalCI/Attribute:owner_name+' => '', # ''
  471. 'Class:FunctionalCI/Attribute:importance' => 'Business criticity', # 'Business criticity'
  472. 'Class:FunctionalCI/Attribute:importance+' => '', # ''
  473. 'Class:FunctionalCI/Attribute:importance/Value:high' => 'High', # 'High'
  474. 'Class:FunctionalCI/Attribute:importance/Value:high+' => '', # ''
  475. 'Class:FunctionalCI/Attribute:importance/Value:low' => 'Low', # 'Low'
  476. 'Class:FunctionalCI/Attribute:importance/Value:low+' => '', # ''
  477. 'Class:FunctionalCI/Attribute:importance/Value:medium' => 'Medium', # 'Medium'
  478. 'Class:FunctionalCI/Attribute:importance/Value:medium+' => '', # ''
  479. 'Class:FunctionalCI/Attribute:contact_list' => 'コンタクト', // 'Contacts', # 'Contacts'
  480. 'Class:FunctionalCI/Attribute:contact_list+' => 'このCIへのコンタクト', // 'Contacts for this CI', # 'Contacts for this CI'
  481. 'Class:FunctionalCI/Attribute:document_list' => 'ドキュメント', // 'Documents', # 'Documents'
  482. 'Class:FunctionalCI/Attribute:document_list+' => 'このCIに関するドキュメンテーション', // 'Documentation for this CI', # 'Documentation for this CI'
  483. 'Class:FunctionalCI/Attribute:solution_list' => 'アプリケーションソリューション', // 'Application solutions', # 'Application solutions'
  484. 'Class:FunctionalCI/Attribute:solution_list+' => '本CIを用いたアプリケーションソリューション', // 'Application solutions using this CI', # 'Application solutions using this CI'
  485. 'Class:FunctionalCI/Attribute:contract_list' => 'コンタクト', // 'Contracts', # 'Contracts'
  486. 'Class:FunctionalCI/Attribute:contract_list+' => '本CIをサポートするコンタクト', // 'Contracts supporting this CI', # 'Contracts supporting this CI'
  487. 'Class:FunctionalCI/Attribute:ticket_list' => 'チケット', // 'Tickets', # 'Tickets'
  488. 'Class:FunctionalCI/Attribute:ticket_list+' => 'このCIに関連するチケット', // 'Tickets related to the CI', # 'Tickets related to the CI'
  489. 'Class:FunctionalCI/Attribute:finalclass' => 'タイプ', // 'Type', # 'Type'
  490. 'Class:FunctionalCI/Attribute:finalclass+' => '', # ''
  491. ));
  492. //
  493. // Class: SoftwareInstance
  494. //
  495. Dict::Add('JA JP', 'Japanese', '日本語', array (
  496. 'Class:SoftwareInstance' => 'ソフトウェアインスタンス', // 'Software Instance', # 'Software Instance'
  497. 'Class:SoftwareInstance+' => '', # ''
  498. 'Class:SoftwareInstance/Attribute:device_id' => 'デバイス', // 'Device', # 'Device'
  499. 'Class:SoftwareInstance/Attribute:device_id+' => '', # ''
  500. 'Class:SoftwareInstance/Attribute:device_name' => 'デバイス', // 'Device', # 'Device'
  501. 'Class:SoftwareInstance/Attribute:device_name+' => '', # ''
  502. 'Class:SoftwareInstance/Attribute:licence_id' => 'ライセンス', // 'Licence', # 'Licence'
  503. 'Class:SoftwareInstance/Attribute:licence_id+' => '', # ''
  504. 'Class:SoftwareInstance/Attribute:licence_name' => 'ライセンス', // 'Licence', # 'Licence'
  505. 'Class:SoftwareInstance/Attribute:licence_name+' => '', # ''
  506. 'Class:SoftwareInstance/Attribute:software_name' => 'ソフトウェア', // 'Software', # 'Software'
  507. 'Class:SoftwareInstance/Attribute:software_name+' => '', # ''
  508. 'Class:SoftwareInstance/Attribute:version' => 'バージョン', // 'Version', # 'Version'
  509. 'Class:SoftwareInstance/Attribute:version+' => '', # ''
  510. 'Class:SoftwareInstance/Attribute:description' => '詳細記述', // 'Description', # 'Description'
  511. 'Class:SoftwareInstance/Attribute:description+' => '', # ''
  512. ));
  513. //
  514. // Class: ApplicationInstance
  515. //
  516. Dict::Add('JA JP', 'Japanese', '日本語', array (
  517. 'Class:ApplicationInstance' => 'アプリケーションインスタンス', // 'Application Instance', # 'Application Instance'
  518. 'Class:ApplicationInstance+' => '', # ''
  519. 'Class:ApplicationInstance/Attribute:software_id' => 'ソフトウェア', // 'Software', # 'Software'
  520. 'Class:ApplicationInstance/Attribute:software_id+' => '', # ''
  521. 'Class:ApplicationInstance/Attribute:software_name' => '名前', // 'Name', # 'Name'
  522. 'Class:ApplicationInstance/Attribute:software_name+' => '', # ''
  523. ));
  524. //
  525. // Class: DBServerInstance
  526. //
  527. Dict::Add('JA JP', 'Japanese', '日本語', array (
  528. 'Class:DBServerInstance' => 'DBサーバインスタンス', // 'DB Server Instance', # 'DB Server Instance'
  529. 'Class:DBServerInstance+' => '', # ''
  530. 'Class:DBServerInstance/Attribute:software_id' => 'ソフトウェア', // 'Software', # 'Software'
  531. 'Class:DBServerInstance/Attribute:software_id+' => '', # ''
  532. 'Class:DBServerInstance/Attribute:software_name' => 'ソフトウェア名', // 'Software Name', # 'Software Name'
  533. 'Class:DBServerInstance/Attribute:software_name+' => '', # ''
  534. 'Class:DBServerInstance/Attribute:dbinstance_list' => 'データベース', // 'Databases', # 'Databases'
  535. 'Class:DBServerInstance/Attribute:dbinstance_list+' => 'データベースソース', // 'Database sources', # 'Database sources'
  536. ));
  537. //
  538. // Class: DatabaseInstance
  539. //
  540. Dict::Add('JA JP', 'Japanese', '日本語', array (
  541. 'Class:DatabaseInstance' => 'データベースインスタンス', // 'Database Instance', # 'Database Instance'
  542. 'Class:DatabaseInstance+' => '', # ''
  543. 'Class:DatabaseInstance/Attribute:db_server_instance_id' => 'データベースサーバ', // 'Database server', # 'Database server'
  544. 'Class:DatabaseInstance/Attribute:db_server_instance_id+' => '', # ''
  545. 'Class:DatabaseInstance/Attribute:db_server_instance_version' => 'データベースバージョン', // 'Database version', # 'Database version'
  546. 'Class:DatabaseInstance/Attribute:db_server_instance_version+' => '', # ''
  547. 'Class:DatabaseInstance/Attribute:description' => '詳細記述', // 'Description', # 'Description'
  548. 'Class:DatabaseInstance/Attribute:description+' => '', # ''
  549. ));
  550. //
  551. // Class: ApplicationSolution
  552. //
  553. Dict::Add('JA JP', 'Japanese', '日本語', array (
  554. 'Class:ApplicationSolution' => 'アプリケーションソリューション', // 'Application Solution', # 'Application Solution'
  555. 'Class:ApplicationSolution+' => '', # ''
  556. 'Class:ApplicationSolution/Attribute:description' => '詳細記述', // 'Description', # 'Description'
  557. 'Class:ApplicationSolution/Attribute:description+' => '', # ''
  558. 'Class:ApplicationSolution/Attribute:ci_list' => 'CIs', # 'CIs'
  559. 'Class:ApplicationSolution/Attribute:ci_list+' => 'このソリューションを構成するCI', // 'CIs composing the solution', # 'CIs composing the solution'
  560. 'Class:ApplicationSolution/Attribute:process_list' => 'ビジネスプロセス', // 'Business processes', # 'Business processes'
  561. 'Class:ApplicationSolution/Attribute:process_list+' => 'このソリューションに依存するビジネスプロセス', // 'Business processes relying on the solution', # 'Business processes relying on the solution'
  562. ));
  563. //
  564. // Class: BusinessProcess
  565. //
  566. Dict::Add('JA JP', 'Japanese', '日本語', array (
  567. 'Class:BusinessProcess' => 'ビジネスプロセス', // 'Business Process', # 'Business Process'
  568. 'Class:BusinessProcess+' => '', # ''
  569. 'Class:BusinessProcess/Attribute:description' => '詳細記述', // 'Description', # 'Description'
  570. 'Class:BusinessProcess/Attribute:description+' => '', # ''
  571. 'Class:BusinessProcess/Attribute:used_solution_list' => 'アプリケーションソリューション', // 'Application solutions', # 'Application solutions'
  572. 'Class:BusinessProcess/Attribute:used_solution_list+' => 'このプロセスが依存するアプリケーションソリューション', // 'Application solutions the process is relying on', # 'Application solutions the process is relying on'
  573. ));
  574. //
  575. // Class: ConnectableCI
  576. //
  577. Dict::Add('JA JP', 'Japanese', '日本語', array (
  578. 'Class:ConnectableCI' => '接続可能なCI', // 'Connectable CI', # 'Connectable CI'
  579. 'Class:ConnectableCI+' => 'フィジカルCI', // 'Physical CI', # 'Physical CI'
  580. 'Class:ConnectableCI/Attribute:brand' => 'ブランド', // 'Brand', # 'Brand'
  581. 'Class:ConnectableCI/Attribute:brand+' => '', # ''
  582. 'Class:ConnectableCI/Attribute:model' => 'モデル', // 'Model', # 'Model'
  583. 'Class:ConnectableCI/Attribute:model+' => '', # ''
  584. 'Class:ConnectableCI/Attribute:serial_number' => 'シリアル番号', // 'Serial Number', # 'Serial Number'
  585. 'Class:ConnectableCI/Attribute:serial_number+' => '', # ''
  586. 'Class:ConnectableCI/Attribute:asset_ref' => 'アセットリファレンス', // 'Asset Reference', # 'Asset Reference'
  587. 'Class:ConnectableCI/Attribute:asset_ref+' => '', # ''
  588. ));
  589. //
  590. // Class: NetworkInterface
  591. //
  592. Dict::Add('JA JP', 'Japanese', '日本語', array (
  593. 'Class:NetworkInterface' => 'ネットワークインタフェース', // 'Network Interface', # 'Network Interface'
  594. 'Class:NetworkInterface+' => '', # ''
  595. 'Class:NetworkInterface/Attribute:device_id' => 'デバイス', // 'Device', # 'Device'
  596. 'Class:NetworkInterface/Attribute:device_id+' => '', # ''
  597. 'Class:NetworkInterface/Attribute:device_name' => 'デバイス', // 'Device', # 'Device'
  598. 'Class:NetworkInterface/Attribute:device_name+' => '', # ''
  599. 'Class:NetworkInterface/Attribute:logical_type' => '論理タイプ', // 'Logical Type', # 'Logical Type'
  600. 'Class:NetworkInterface/Attribute:logical_type+' => '', # ''
  601. 'Class:NetworkInterface/Attribute:logical_type/Value:backup' => 'バックアップ', // 'Backup', # 'Backup'
  602. 'Class:NetworkInterface/Attribute:logical_type/Value:backup+' => '', # ''
  603. 'Class:NetworkInterface/Attribute:logical_type/Value:logical' => '論理', // 'Logical', # 'Logical'
  604. 'Class:NetworkInterface/Attribute:logical_type/Value:logical+' => '', # ''
  605. 'Class:NetworkInterface/Attribute:logical_type/Value:port' => 'ポート', // 'Port', # 'Port'
  606. 'Class:NetworkInterface/Attribute:logical_type/Value:port+' => '', # ''
  607. 'Class:NetworkInterface/Attribute:logical_type/Value:primary' => 'プライマリ', // 'Primary', # 'Primary'
  608. 'Class:NetworkInterface/Attribute:logical_type/Value:primary+' => '', # ''
  609. 'Class:NetworkInterface/Attribute:logical_type/Value:secondary' => 'セカンダリ', // 'Secondary', # 'Secondary'
  610. 'Class:NetworkInterface/Attribute:logical_type/Value:secondary+' => '', # ''
  611. 'Class:NetworkInterface/Attribute:physical_type' => '物理タイプ', // 'Physical Type', # 'Physical Type'
  612. 'Class:NetworkInterface/Attribute:physical_type+' => '', # ''
  613. 'Class:NetworkInterface/Attribute:physical_type/Value:atm' => 'ATM', # 'ATM'
  614. 'Class:NetworkInterface/Attribute:physical_type/Value:atm+' => '', # ''
  615. 'Class:NetworkInterface/Attribute:physical_type/Value:ethernet' => 'イーサネット', // 'Ethernet', # 'Ethernet'
  616. 'Class:NetworkInterface/Attribute:physical_type/Value:ethernet+' => '', # ''
  617. 'Class:NetworkInterface/Attribute:physical_type/Value:framerelay' => 'フレームリレー', // 'Frame Relay', # 'Frame Relay'
  618. 'Class:NetworkInterface/Attribute:physical_type/Value:framerelay+' => '', # ''
  619. 'Class:NetworkInterface/Attribute:physical_type/Value:vlan' => 'VLAN', # 'VLAN'
  620. 'Class:NetworkInterface/Attribute:physical_type/Value:vlan+' => '', # ''
  621. 'Class:NetworkInterface/Attribute:ip_address' => 'IPアドレス', // 'IP Address', # 'IP Address'
  622. 'Class:NetworkInterface/Attribute:ip_address+' => '', # ''
  623. 'Class:NetworkInterface/Attribute:ip_mask' => 'IPマスク', // 'IP Mask', # 'IP Mask'
  624. 'Class:NetworkInterface/Attribute:ip_mask+' => '', # ''
  625. 'Class:NetworkInterface/Attribute:mac_address' => 'MACアドレス', // 'MAC Address', # 'MAC Address'
  626. 'Class:NetworkInterface/Attribute:mac_address+' => '', # ''
  627. 'Class:NetworkInterface/Attribute:speed' => '速度', // 'Speed', # 'Speed'
  628. 'Class:NetworkInterface/Attribute:speed+' => '', # ''
  629. 'Class:NetworkInterface/Attribute:duplex' => '多重', // 'Duplex', # 'Duplex'
  630. 'Class:NetworkInterface/Attribute:duplex+' => '', # ''
  631. 'Class:NetworkInterface/Attribute:duplex/Value:auto' => '自動', // 'Auto', # 'Auto'
  632. 'Class:NetworkInterface/Attribute:duplex/Value:auto+' => '自動', // 'Auto', # 'Auto'
  633. 'Class:NetworkInterface/Attribute:duplex/Value:full' => '全', // 'Full', # 'Full'
  634. 'Class:NetworkInterface/Attribute:duplex/Value:full+' => '', # ''
  635. 'Class:NetworkInterface/Attribute:duplex/Value:half' => '半', // 'Half', # 'Half'
  636. 'Class:NetworkInterface/Attribute:duplex/Value:half+' => '', # ''
  637. 'Class:NetworkInterface/Attribute:duplex/Value:unknown' => '不明', // 'Unknown', # 'Unknown'
  638. 'Class:NetworkInterface/Attribute:duplex/Value:unknown+' => '', # ''
  639. 'Class:NetworkInterface/Attribute:connected_if' => '接続済み', // 'Connected to', # 'Connected to'
  640. 'Class:NetworkInterface/Attribute:connected_if+' => '接続済みインタフェース', // 'Connected interface', # 'Connected interface'
  641. 'Class:NetworkInterface/Attribute:connected_name' => '接続済み', // 'Connected to', # 'Connected to'
  642. 'Class:NetworkInterface/Attribute:connected_name+' => '', # ''
  643. 'Class:NetworkInterface/Attribute:connected_if_device_id' => '接続先デバイス', // 'Connected device', # 'Connected device'
  644. 'Class:NetworkInterface/Attribute:connected_if_device_id+' => '', # ''
  645. 'Class:NetworkInterface/Attribute:connected_if_device_id_name' => 'デバイス', // 'Device', # 'Device'
  646. 'Class:NetworkInterface/Attribute:connected_if_device_id_name+' => '', # ''
  647. 'Class:NetworkInterface/Attribute:link_type' => 'リンクタイプ', // 'Link type', # 'Link type'
  648. 'Class:NetworkInterface/Attribute:link_type+' => '', # ''
  649. 'Class:NetworkInterface/Attribute:link_type/Value:downlink' => 'ダウンリンク', // 'Down link', # 'Down link'
  650. 'Class:NetworkInterface/Attribute:link_type/Value:downlink+' => '', # ''
  651. 'Class:NetworkInterface/Attribute:link_type/Value:uplink' => 'アップリンク', // 'Up link', # 'Up link'
  652. 'Class:NetworkInterface/Attribute:link_type/Value:uplink+' => '', # ''
  653. ));
  654. //
  655. // Class: Device
  656. //
  657. Dict::Add('JA JP', 'Japanese', '日本語', array (
  658. 'Class:Device' => 'デバイス', // 'Device', # 'Device'
  659. 'Class:Device+' => '', # ''
  660. 'Class:Device/Attribute:nwinterface_list' => 'ネットワークインタフェース', // 'Network interfaces', # 'Network interfaces'
  661. 'Class:Device/Attribute:nwinterface_list+' => '', # ''
  662. ));
  663. //
  664. // Class: PC
  665. //
  666. Dict::Add('JA JP', 'Japanese', '日本語', array (
  667. 'Class:PC' => 'PC', # 'PC'
  668. 'Class:PC+' => '', # ''
  669. 'Class:PC/Attribute:cpu' => 'CPU', # 'CPU'
  670. 'Class:PC/Attribute:cpu+' => '', # ''
  671. 'Class:PC/Attribute:ram' => 'RAM', # 'RAM'
  672. 'Class:PC/Attribute:ram+' => '', # ''
  673. 'Class:PC/Attribute:hdd' => 'ハードディスク', // 'Hard disk', # 'Hard disk'
  674. 'Class:PC/Attribute:hdd+' => '', # ''
  675. 'Class:PC/Attribute:os_family' => 'OSファミリ', // 'OS Family', # 'OS Family'
  676. 'Class:PC/Attribute:os_family+' => '', # ''
  677. 'Class:PC/Attribute:os_version' => 'OSバージョン', // 'OS Version', # 'OS Version'
  678. 'Class:PC/Attribute:os_version+' => '', # ''
  679. 'Class:PC/Attribute:application_list' => 'アプリケーション', // 'Applications', # 'Applications'
  680. 'Class:PC/Attribute:application_list+' => '本PCにインストール済みアプリケーション', // 'Applications installed on this PC', # 'Applications installed on this PC'
  681. 'Class:PC/Attribute:patch_list' => 'パッチ', // 'Patches', # 'Patches'
  682. 'Class:PC/Attribute:patch_list+' => '本PCにインストール済みのパッチ', // 'Patches installed on this PC', # 'Patches installed on this PC'
  683. ));
  684. //
  685. // Class: MobileCI
  686. //
  687. Dict::Add('JA JP', 'Japanese', '日本語', array (
  688. 'Class:MobileCI' => 'モバイルCI', // 'Mobile CI', # 'Mobile CI'
  689. 'Class:MobileCI+' => '', # ''
  690. ));
  691. //
  692. // Class: MobilePhone
  693. //
  694. Dict::Add('JA JP', 'Japanese', '日本語', array (
  695. 'Class:MobilePhone' => 'ケータイ', // 'Mobile Phone', # 'Mobile Phone'
  696. 'Class:MobilePhone+' => '', # ''
  697. 'Class:MobilePhone/Attribute:number' => 'ケータイ番号', // 'Phone number', # 'Phone number'
  698. 'Class:MobilePhone/Attribute:number+' => '', # ''
  699. 'Class:MobilePhone/Attribute:imei' => 'IMEI', # 'IMEI'
  700. 'Class:MobilePhone/Attribute:imei+' => '', # ''
  701. 'Class:MobilePhone/Attribute:hw_pin' => 'ハードウェアPIN', // 'Hardware PIN', # 'Hardware PIN'
  702. 'Class:MobilePhone/Attribute:hw_pin+' => '', # ''
  703. ));
  704. //
  705. // Class: InfrastructureCI
  706. //
  707. Dict::Add('JA JP', 'Japanese', '日本語', array (
  708. 'Class:InfrastructureCI' => 'インフラCI', // 'Infrastructure CI', # 'Infrastructure CI'
  709. 'Class:InfrastructureCI+' => '', # ''
  710. 'Class:InfrastructureCI/Attribute:description' => '詳細記述', // 'Description', # 'Description'
  711. 'Class:InfrastructureCI/Attribute:description+' => '', # ''
  712. 'Class:InfrastructureCI/Attribute:location_id' => 'ロケーション', // 'Location', # 'Location'
  713. 'Class:InfrastructureCI/Attribute:location_id+' => '', # ''
  714. 'Class:InfrastructureCI/Attribute:location_name' => 'ロケーション', // 'Location', # 'Location'
  715. 'Class:InfrastructureCI/Attribute:location_name+' => '', # ''
  716. 'Class:InfrastructureCI/Attribute:location_details' => 'ロケーション詳細', // 'Location details', # 'Location details'
  717. 'Class:InfrastructureCI/Attribute:location_details+' => '', # ''
  718. 'Class:InfrastructureCI/Attribute:management_ip' => '管理IP', // 'Management IP', # 'Management IP'
  719. 'Class:InfrastructureCI/Attribute:management_ip+' => '', # ''
  720. 'Class:InfrastructureCI/Attribute:default_gateway' => 'デフォルトゲートウェイ', // 'Default Gateway', # 'Default Gateway'
  721. 'Class:InfrastructureCI/Attribute:default_gateway+' => '', # ''
  722. ));
  723. //
  724. // Class: NetworkDevice
  725. //
  726. Dict::Add('JA JP', 'Japanese', '日本語', array (
  727. 'Class:NetworkDevice' => 'ネットワークデバイス', // 'Network Device', # 'Network Device'
  728. 'Class:NetworkDevice+' => '', # ''
  729. 'Class:NetworkDevice/Attribute:type' => 'タイプ', // 'Type', # 'Type'
  730. 'Class:NetworkDevice/Attribute:type+' => '', # ''
  731. 'Class:NetworkDevice/Attribute:type/Value:wanaccelerator' => 'WANアクセラレータ', // 'WAN Accelerator', # 'WAN Accelerator'
  732. 'Class:NetworkDevice/Attribute:type/Value:wanaccelerator+' => '', # ''
  733. 'Class:NetworkDevice/Attribute:type/Value:firewall' => 'ファイアウォール', // 'Firewall', # 'Firewall'
  734. 'Class:NetworkDevice/Attribute:type/Value:firewall+' => '', # ''
  735. 'Class:NetworkDevice/Attribute:type/Value:hub' => 'ハブ', // 'Hub', # 'Hub'
  736. 'Class:NetworkDevice/Attribute:type/Value:hub+' => '', # ''
  737. 'Class:NetworkDevice/Attribute:type/Value:loadbalancer' => 'ロードバランサ', // 'Load Balancer', # 'Load Balancer'
  738. 'Class:NetworkDevice/Attribute:type/Value:loadbalancer+' => '', # ''
  739. 'Class:NetworkDevice/Attribute:type/Value:router' => 'ルータ', // 'Router', # 'Router'
  740. 'Class:NetworkDevice/Attribute:type/Value:router+' => '', # ''
  741. 'Class:NetworkDevice/Attribute:type/Value:switch' => 'スイッチ', // 'Switch', # 'Switch'
  742. 'Class:NetworkDevice/Attribute:type/Value:switch+' => '', # ''
  743. 'Class:NetworkDevice/Attribute:ios_version' => 'IOSバージョン', // 'IOS Version', # 'IOS Version'
  744. 'Class:NetworkDevice/Attribute:ios_version+' => '', # ''
  745. 'Class:NetworkDevice/Attribute:ram' => 'RAM', # 'RAM'
  746. 'Class:NetworkDevice/Attribute:ram+' => '', # ''
  747. 'Class:NetworkDevice/Attribute:snmp_read' => 'SNMP Read', # 'SNMP Read'
  748. 'Class:NetworkDevice/Attribute:snmp_read+' => '', # ''
  749. 'Class:NetworkDevice/Attribute:snmp_write' => 'SNMP Write', # 'SNMP Write'
  750. 'Class:NetworkDevice/Attribute:snmp_write+' => '', # ''
  751. ));
  752. //
  753. // Class: Server
  754. //
  755. Dict::Add('JA JP', 'Japanese', '日本語', array (
  756. 'Class:Server' => 'サーバ', // 'Server', # 'Server'
  757. 'Class:Server+' => '', # ''
  758. 'Class:Server/Attribute:cpu' => 'CPU', # 'CPU'
  759. 'Class:Server/Attribute:cpu+' => '', # ''
  760. 'Class:Server/Attribute:ram' => 'RAM', # 'RAM'
  761. 'Class:Server/Attribute:ram+' => '', # ''
  762. 'Class:Server/Attribute:hdd' => 'ハードディスク', // 'Hard Disk', # 'Hard Disk'
  763. 'Class:Server/Attribute:hdd+' => '', # ''
  764. 'Class:Server/Attribute:os_family' => 'OSファミリ', // 'OS Family', # 'OS Family'
  765. 'Class:Server/Attribute:os_family+' => '', # ''
  766. 'Class:Server/Attribute:os_version' => 'OSバージョン', // 'OS Version', # 'OS Version'
  767. 'Class:Server/Attribute:os_version+' => '', # ''
  768. 'Class:Server/Attribute:application_list' => 'アプリケーション', // 'Applications', # 'Applications'
  769. 'Class:Server/Attribute:application_list+' => '本サーバにインストール済みのアプリケーション', // 'Applications installed on this server', # 'Applications installed on this server'
  770. 'Class:Server/Attribute:patch_list' => 'パッチ', // 'Patches', # 'Patches'
  771. 'Class:Server/Attribute:patch_list+' => '本サーバにインストール済みのパッチ', // 'Patches installed on this server', # 'Patches installed on this server'
  772. ));
  773. //
  774. // Class: Printer
  775. //
  776. Dict::Add('JA JP', 'Japanese', '日本語', array (
  777. 'Class:Printer' => 'プリンタ', // 'Printer', # 'Printer'
  778. 'Class:Printer+' => '', # ''
  779. 'Class:Printer/Attribute:type' => 'タイプ', // 'Type', # 'Type'
  780. 'Class:Printer/Attribute:type+' => '', # ''
  781. 'Class:Printer/Attribute:type/Value:mopier' => 'MFP', // 'Mopier', # 'Mopier'
  782. 'Class:Printer/Attribute:type/Value:mopier+' => '', # ''
  783. 'Class:Printer/Attribute:type/Value:printer' => 'プリンタ', // 'Printer', # 'Printer'
  784. 'Class:Printer/Attribute:type/Value:printer+' => '', # ''
  785. 'Class:Printer/Attribute:technology' => 'テクノロジ', // 'Technology', # 'Technology'
  786. 'Class:Printer/Attribute:technology+' => '', # ''
  787. 'Class:Printer/Attribute:technology/Value:inkjet' => 'インクジェット', // 'Inkjet', # 'Inkjet'
  788. 'Class:Printer/Attribute:technology/Value:inkjet+' => '', # ''
  789. 'Class:Printer/Attribute:technology/Value:laser' => 'レーザー', // 'Laser', # 'Laser'
  790. 'Class:Printer/Attribute:technology/Value:laser+' => '', # ''
  791. 'Class:Printer/Attribute:technology/Value:tracer' => 'トレーサー', // 'Tracer', # 'Tracer'
  792. 'Class:Printer/Attribute:technology/Value:tracer+' => '', # ''
  793. ));
  794. //
  795. // Class: lnkCIToDoc
  796. //
  797. Dict::Add('JA JP', 'Japanese', '日本語', array (
  798. 'Class:lnkCIToDoc' => 'ドキュメント/CI', // 'Doc/CI', # 'Doc/CI'
  799. 'Class:lnkCIToDoc+' => '', # ''
  800. 'Class:lnkCIToDoc/Attribute:ci_id' => 'CI', # 'CI'
  801. 'Class:lnkCIToDoc/Attribute:ci_id+' => '', # ''
  802. 'Class:lnkCIToDoc/Attribute:ci_name' => 'CI', # 'CI'
  803. 'Class:lnkCIToDoc/Attribute:ci_name+' => '', # ''
  804. 'Class:lnkCIToDoc/Attribute:ci_status' => 'CIステータス', // 'CI Status', # 'CI Status'
  805. 'Class:lnkCIToDoc/Attribute:ci_status+' => '', # ''
  806. 'Class:lnkCIToDoc/Attribute:document_id' => 'ドキュメント', // 'Document', # 'Document'
  807. 'Class:lnkCIToDoc/Attribute:document_id+' => '', # ''
  808. 'Class:lnkCIToDoc/Attribute:document_name' => 'ドキュメント', // 'Document', # 'Document'
  809. 'Class:lnkCIToDoc/Attribute:document_name+' => '', # ''
  810. 'Class:lnkCIToDoc/Attribute:document_type' => 'ドキュメントタイプ', // 'Document Type', # 'Document Type'
  811. 'Class:lnkCIToDoc/Attribute:document_type+' => '', # ''
  812. 'Class:lnkCIToDoc/Attribute:document_status' => 'ドキュメントステータス', // 'Document Status', # 'Document Status'
  813. 'Class:lnkCIToDoc/Attribute:document_status+' => '', # ''
  814. ));
  815. //
  816. // Class: lnkCIToContact
  817. //
  818. Dict::Add('JA JP', 'Japanese', '日本語', array (
  819. 'Class:lnkCIToContact' => 'CI/コンタクト', // 'CI/Contact', # 'CI/Contact'
  820. 'Class:lnkCIToContact+' => '', # ''
  821. 'Class:lnkCIToContact/Attribute:ci_id' => 'CI', # 'CI'
  822. 'Class:lnkCIToContact/Attribute:ci_id+' => '', # ''
  823. 'Class:lnkCIToContact/Attribute:ci_name' => 'CI', # 'CI'
  824. 'Class:lnkCIToContact/Attribute:ci_name+' => '', # ''
  825. 'Class:lnkCIToContact/Attribute:ci_status' => 'CIステータス', // 'CI Status', # 'CI Status'
  826. 'Class:lnkCIToContact/Attribute:ci_status+' => '', # ''
  827. 'Class:lnkCIToContact/Attribute:contact_id' => 'コンタクト', // 'Contact', # 'Contact'
  828. 'Class:lnkCIToContact/Attribute:contact_id+' => '', # ''
  829. 'Class:lnkCIToContact/Attribute:contact_name' => 'コンタクト', // 'Contact', # 'Contact'
  830. 'Class:lnkCIToContact/Attribute:contact_name+' => '', # ''
  831. 'Class:lnkCIToContact/Attribute:contact_email' => 'コンタクトEメール', // 'Contact Email', # 'Contact Email'
  832. 'Class:lnkCIToContact/Attribute:contact_email+' => '', # ''
  833. 'Class:lnkCIToContact/Attribute:role' => '役割', // 'Role', # 'Role'
  834. 'Class:lnkCIToContact/Attribute:role+' => 'このCIに言及するコンタクトの役割', // 'Role of the contact regarding the CI', # 'Role of the contact regarding the CI'
  835. ));
  836. //
  837. // Class: lnkSolutionToCI
  838. //
  839. Dict::Add('JA JP', 'Japanese', '日本語', array (
  840. 'Class:lnkSolutionToCI' => 'CI/ソリューション', // 'CI/Solution', # 'CI/Solution'
  841. 'Class:lnkSolutionToCI+' => '', # ''
  842. 'Class:lnkSolutionToCI/Attribute:solution_id' => 'アプリケーションソリューション', // 'Application solution', # 'Application solution'
  843. 'Class:lnkSolutionToCI/Attribute:solution_id+' => '', # ''
  844. 'Class:lnkSolutionToCI/Attribute:solution_name' => 'アプリケーションソリューション', // 'Application solution', # 'Application solution'
  845. 'Class:lnkSolutionToCI/Attribute:solution_name+' => '', # ''
  846. 'Class:lnkSolutionToCI/Attribute:ci_id' => 'CI', # 'CI'
  847. 'Class:lnkSolutionToCI/Attribute:ci_id+' => '', # ''
  848. 'Class:lnkSolutionToCI/Attribute:ci_name' => 'CI', # 'CI'
  849. 'Class:lnkSolutionToCI/Attribute:ci_name+' => '', # ''
  850. 'Class:lnkSolutionToCI/Attribute:ci_status' => 'CIステータス', // 'CI Status', # 'CI Status'
  851. 'Class:lnkSolutionToCI/Attribute:ci_status+' => '', # ''
  852. 'Class:lnkSolutionToCI/Attribute:utility' => 'ユーティリティ', // 'Utility', # 'Utility'
  853. 'Class:lnkSolutionToCI/Attribute:utility+' => 'ソリューション中のCIユーティリティ', // 'Utility of the CI in the solution', # 'Utility of the CI in the solution'
  854. ));
  855. //
  856. // Class: lnkProcessToSolution
  857. //
  858. Dict::Add('JA JP', 'Japanese', '日本語', array (
  859. 'Class:lnkProcessToSolution' => 'ビジネスプロセス/ソリューション', // 'Business process/Solution', # 'Business process/Solution'
  860. 'Class:lnkProcessToSolution+' => '', # ''
  861. 'Class:lnkProcessToSolution/Attribute:solution_id' => 'アプリケーションソリューション', // 'Application solution', # 'Application solution'
  862. 'Class:lnkProcessToSolution/Attribute:solution_id+' => '', # ''
  863. 'Class:lnkProcessToSolution/Attribute:solution_name' => 'アプリケーションソリューション', // 'Application solution', # 'Application solution'
  864. 'Class:lnkProcessToSolution/Attribute:solution_name+' => '', # ''
  865. 'Class:lnkProcessToSolution/Attribute:process_id' => 'プロセス', // 'Process', # 'Process'
  866. 'Class:lnkProcessToSolution/Attribute:process_id+' => '', # ''
  867. 'Class:lnkProcessToSolution/Attribute:process_name' => 'プロセス', // 'Process', # 'Process'
  868. 'Class:lnkProcessToSolution/Attribute:process_name+' => '', # ''
  869. 'Class:lnkProcessToSolution/Attribute:reason' => '理由', // 'Reason', # 'Reason'
  870. 'Class:lnkProcessToSolution/Attribute:reason+' => 'プロセスとソリューション間のリンクに関する詳細情報', // 'More information on the link between the process and the solution', # 'More information on the link between the process and the solution'
  871. ));
  872. //
  873. // Class extensions
  874. //
  875. Dict::Add('JA JP', 'Japanese', '日本語', array (
  876. 'Class:Subnet/Tab:IPUsage' => 'IPの用途', // 'IP Usage', # 'IP Usage'
  877. 'Class:Subnet/Tab:IPUsage-explain' => '<em>%1$s</em>から<em>%2$s</em>の範囲のIPアドレスを保持するインタフェース', // 'Interfaces having an IP in the range: <em>%1$s</em> to <em>%2$s</em>', # 'Interfaces having an IP in the range: <em>%1$s</em> to <em>%2$s</em>'
  878. 'Class:Subnet/Tab:FreeIPs' => '未割り当てIP', // 'Free IPs', # 'Free IPs'
  879. 'Class:Subnet/Tab:FreeIPs-count' => '未割り当てIPアドレス:%1$s', // 'Free IPs: %1$s', # 'Free IPs: %1$s'
  880. 'Class:Subnet/Tab:FreeIPs-explain' => 'これが未割り当てIPアドレスから10個を抽出したものです。', // 'Here is an extract of 10 free IP addresses', # 'Here is an extract of 10 free IP addresses'
  881. ));
  882. //
  883. // Application Menu
  884. //
  885. Dict::Add('JA JP', 'Japanese', '日本語', array (
  886. 'Menu:Catalogs' => 'カタログ', // 'Catalogs', # 'Catalogs'
  887. 'Menu:Catalogs+' => 'データタイプ', // 'Data types', # 'Data types'
  888. 'Menu:Audit' => '監査', // 'Audit', # 'Audit'
  889. 'Menu:Audit+' => '監査', // 'Audit', # 'Audit'
  890. 'Menu:Organization' => '組織', // 'Organizations', # 'Organizations'
  891. 'Menu:Organization+' => '全組織', // 'All Organizations', # 'All Organizations'
  892. 'Menu:Application' => 'アプリケーション', // 'Applications', # 'Applications'
  893. 'Menu:Application+' => '全アプリケーション', // 'All Applications', # 'All Applications'
  894. 'Menu:DBServer' => 'データベースサーバ', // 'Database Servers', # 'Database Servers'
  895. 'Menu:DBServer+' => 'データベースサーバ', // 'Database Servers', # 'Database Servers'
  896. 'Menu:Audit' => '監査', // 'Audit', # 'Audit'
  897. 'Menu:ConfigManagement' => '設定管理', // 'Configuration Management', # 'Configuration Management'
  898. 'Menu:ConfigManagement+' => '設定管理', // 'Configuration Management', # 'Configuration Management'
  899. 'Menu:ConfigManagementOverview' => '概要', # 'Overview'
  900. 'Menu:ConfigManagementOverview+' => '概要', # 'Overview'
  901. 'Menu:Contact' => 'コンタクト', // 'Contacts', # 'Contacts'
  902. 'Menu:Contact+' => 'コンタクト', // 'Contacts', # 'Contacts'
  903. 'Menu:Person' => 'パーソン', // 'Persons', # 'Persons'
  904. 'Menu:Person+' => '全パーソン', // 'All Persons', # 'All Persons'
  905. 'Menu:Team' => 'チーム', // 'Teams', # 'Teams'
  906. 'Menu:Team+' => '全チーム', // 'All Teams', # 'All Teams'
  907. 'Menu:Document' => 'ドキュメント', // 'Documents', # 'Documents'
  908. 'Menu:Document+' => '全ドキュメント', // 'All Documents', # 'All Documents'
  909. 'Menu:Location' => 'ロケーション', // 'Locations', # 'Locations'
  910. 'Menu:Location+' => '全ロケーション', // 'All Locations', # 'All Locations'
  911. 'Menu:ConfigManagementCI' => '設定項目', // 'Configuration Items', # 'Configuration Items'
  912. 'Menu:ConfigManagementCI+' => '設定項目', // 'Configuration Items', # 'Configuration Items'
  913. 'Menu:BusinessProcess' => 'ビジネスプロセス', // 'Business Processes', # 'Business Processes'
  914. 'Menu:BusinessProcess+' => '全ビジネスプロセス', // 'All Business Processes', # 'All Business Processes'
  915. 'Menu:ApplicationSolution' => 'アプリケーションソリューション', // 'Application Solutions', # 'Application Solutions'
  916. 'Menu:ApplicationSolution+' => '全アプリケーションソリューション', // 'All Application Solutions', # 'All Application Solutions'
  917. 'Menu:ConfigManagementSoftware' => 'アプリケーション管理', // 'Application Management', # 'Application Management'
  918. 'Menu:Licence' => 'ライセンス', // 'Licences', # 'Licences'
  919. 'Menu:Licence+' => '全ライセンス', // 'All Licences', # 'All Licences'
  920. 'Menu:Patch' => 'パッチ', // 'Patches', # 'Patches'
  921. 'Menu:Patch+' => '全パッチ', // 'All Patches', # 'All Patches'
  922. 'Menu:ApplicationInstance' => 'インストール済みソフトウェア', // 'Installed Software', # 'Installed Software'
  923. 'Menu:ApplicationInstance+' => 'アプリケーションとデータベースサーバ', // 'Applications and Database servers', # 'Applications and Database servers'
  924. 'Menu:ConfigManagementHardware' => 'インフラストラクチャ管理', // 'Infrastructure Management', # 'Infrastructure Management'
  925. 'Menu:Subnet' => 'サブネット', // 'Subnets', # 'Subnets'
  926. 'Menu:Subnet+' => '全サブネット', // 'All Subnets', # 'All Subnets'
  927. 'Menu:NetworkDevice' => 'ネットワークデバイス', // 'Network Devices', # 'Network Devices'
  928. 'Menu:NetworkDevice+' => '全ネットワークデバイス', // 'All Network Devices', # 'All Network Devices'
  929. 'Menu:Server' => 'サーバ', // 'Servers', # 'Servers'
  930. 'Menu:Server+' => '全サーバ', // 'All Servers', # 'All Servers'
  931. 'Menu:Printer' => 'プリンタ', // 'Printers', # 'Printers'
  932. 'Menu:Printer+' => '全プリンタ', // 'All Printers', # 'All Printers'
  933. 'Menu:MobilePhone' => 'モバイルフォン', // 'Mobile Phones', # 'Mobile Phones'
  934. 'Menu:MobilePhone+' => '全モバイルフォン', // 'All Mobile Phones', # 'All Mobile Phones'
  935. 'Menu:PC' => 'パーソナルコンピュータ', // 'Personal Computers', # 'Personal Computers'
  936. 'Menu:PC+' => '全パーソナルコンピュータ', // 'All Personal Computers', # 'All Personal Computers'
  937. 'Menu:NewContact' => '新規コンタクト', // 'New Contact', # 'New Contact'
  938. 'Menu:NewContact+' => '新規コンタクト', // 'New Contact', # 'New Contact'
  939. 'Menu:SearchContacts' => 'コンタクトを検索', // 'Search for contacts', # 'Search for contacts'
  940. 'Menu:SearchContacts+' => 'コンタクトを検索', // 'Search for contacts', # 'Search for contacts'
  941. 'Menu:NewCI' => '新規CI', // 'New CI', # 'New CI'
  942. 'Menu:NewCI+' => '新規CI', // 'New CI', # 'New CI'
  943. 'Menu:SearchCIs' => 'CIを検索', // 'Search for CIs', # 'Search for CIs'
  944. 'Menu:SearchCIs+' => 'CIを検索', // 'Search for CIs', # 'Search for CIs'
  945. 'Menu:ConfigManagement:Devices' => 'デバイス', // 'Devices', # 'Devices'
  946. 'Menu:ConfigManagement:AllDevices' => 'デバイス数: %1$d', // 'Number of devices: %1$d', # 'Number of devices: %1$d'
  947. 'Menu:ConfigManagement:SWAndApps' => 'ソフトウェアとアプリケーション', // 'Software and Applications', # 'Software and Applications'
  948. 'Menu:ConfigManagement:Misc' => 'Misc', // 'Miscellaneous', # 'Miscellaneous'
  949. 'Menu:Group' => 'CIグループ', // 'Groups of CIs', # 'Groups of CIs'
  950. 'Menu:Group+' => 'CIグループ', // 'Groups of CIs', # 'Groups of CIs'
  951. 'Menu:ConfigManagement:Shortcuts' => 'ショートカット', # 'Shortcuts'
  952. 'Menu:ConfigManagement:AllContacts' => '全コンタクト:%1$d', // 'All contacts: %1$d', # 'All contacts: %1$d'
  953. ));
  954. ?>