ja.dictionary.itop.ui.php 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907
  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. // Classes in 'gui'
  27. //////////////////////////////////////////////////////////////////////
  28. //
  29. //////////////////////////////////////////////////////////////////////
  30. // Classes in 'application'
  31. //////////////////////////////////////////////////////////////////////
  32. //
  33. //
  34. // Class: AuditCategory
  35. //
  36. Dict::Add('JA JP', 'Japanese', '日本語', array(
  37. 'Class:AuditCategory' => '監査カテゴリ', //Audit Category',
  38. 'Class:AuditCategory+' => '監査全体の内部セクション', //'A section inside the overall audit',
  39. 'Class:AuditCategory/Attribute:name' => 'カテゴリ名', //'Category Name',
  40. 'Class:AuditCategory/Attribute:name+' => '本カテゴリの短縮名', //'Short name for this category',
  41. 'Class:AuditCategory/Attribute:description' => '監査カテゴリ概要', //'Audit Category Description',
  42. 'Class:AuditCategory/Attribute:description+' => '本監査カテゴリの詳細記述', //'Long description for this audit category',
  43. 'Class:AuditCategory/Attribute:definition_set' => '定義セット', //'Definition Set',
  44. 'Class:AuditCategory/Attribute:definition_set+' => '監査するべきオブジェクトの集合を定義するOQL式', //'OQL expression defining the set of objects to audit',
  45. 'Class:AuditCategory/Attribute:rules_list' => '監査ルール', //'Audit Rules',
  46. 'Class:AuditCategory/Attribute:rules_list+' => '本カテゴリの監査ルール', //'Audit rules for this category',
  47. ));
  48. //
  49. // Class: AuditRule
  50. //
  51. Dict::Add('JA JP', 'Japanese', '日本語', array(
  52. 'Class:AuditRule' => '監査ルール', //'Audit Rule',
  53. 'Class:AuditRule+' => '指定された監査カテゴリをチェックするためのルール', //'A rule to check for a given Audit category',
  54. 'Class:AuditRule/Attribute:name' => 'ルール名', //'Rule Name',
  55. 'Class:AuditRule/Attribute:name+' => '本ルールの短縮名', //'Short name for this rule',
  56. 'Class:AuditRule/Attribute:description' => '監査ルール概要', //'Audit Rule Description',
  57. 'Class:AuditRule/Attribute:description+' => '本監査ルールの詳細記述', //'Long description for this audit rule',
  58. 'Class:AuditRule/Attribute:query' => '実行するクエリ', //'Query to Run',
  59. 'Class:AuditRule/Attribute:query+' => '実行するOQL式', //'The OQL expression to run',
  60. 'Class:AuditRule/Attribute:valid_flag' => '正しいオブジェクト?', // 'Valid Objects?',
  61. 'Class:AuditRule/Attribute:valid_flag+' => 'このルールが正しいオブジェクトを返す場合は真、そうでなければ偽', //'True if the rule returns the valid objects, false otherwise',
  62. 'Class:AuditRule/Attribute:valid_flag/Value:true' => '真', //'true',
  63. 'Class:AuditRule/Attribute:valid_flag/Value:true+' => '真', //'true',
  64. 'Class:AuditRule/Attribute:valid_flag/Value:false' => '偽', //'false',
  65. 'Class:AuditRule/Attribute:valid_flag/Value:false+' => '偽', //'false',
  66. 'Class:AuditRule/Attribute:category_id' => 'カテゴリ', //'Category',
  67. 'Class:AuditRule/Attribute:category_id+' => '本ルールのカテゴリ', //'The category for this rule',
  68. 'Class:AuditRule/Attribute:category_name' => 'カテゴリ', //'Category',
  69. 'Class:AuditRule/Attribute:category_name+' => '本ルールのカテゴリ名', //'Name of the category for this rule',
  70. ));
  71. //////////////////////////////////////////////////////////////////////
  72. // Classes in 'addon/userrights'
  73. //////////////////////////////////////////////////////////////////////
  74. //
  75. //
  76. // Class: User
  77. //
  78. Dict::Add('JA JP', 'Japanese', '日本語', array(
  79. 'Class:User' => 'ユーザ', //'User',
  80. 'Class:User+' => 'ユーザログイン', //'User login',
  81. 'Class:User/Attribute:finalclass' => 'アカウント種別', //'Type of account',
  82. 'Class:User/Attribute:finalclass+' => '',
  83. 'Class:User/Attribute:contactid' => 'コンタクト(人)', //'Contact (person)',
  84. 'Class:User/Attribute:contactid+' => 'ビジネスデータから抽出した個人情報の詳細', //'Personal details from the business data',
  85. 'Class:User/Attribute:last_name' => '名字', //'Last name',
  86. 'Class:User/Attribute:last_name+' => '適切なコンタクト名', //'Name of the corresponding contact',
  87. 'Class:User/Attribute:first_name' => '名前', //'First name',
  88. 'Class:User/Attribute:first_name+' => '適切なコンタクトの名前', //'First name of the corresponding contact',
  89. 'Class:User/Attribute:email' => 'メールアドレス', //'Email',
  90. 'Class:User/Attribute:email+' => '適切なコンタクトのメールアドレス', //'Email of the corresponding contact',
  91. 'Class:User/Attribute:login' => 'ログイン', //'Login',
  92. 'Class:User/Attribute:login+' => 'ユーザ識別文字列', //'user identification string',
  93. 'Class:User/Attribute:language' => '言語', //'Language',
  94. 'Class:User/Attribute:language+' => 'ユーザ使用言語', //'user language',
  95. 'Class:User/Attribute:language/Value:EN US' => '英語', //'English',
  96. 'Class:User/Attribute:language/Value:EN US+' => '英語(米国)', //'English (U.S.)',
  97. 'Class:User/Attribute:language/Value:FR FR' => 'フランス語', //'French',
  98. 'Class:User/Attribute:language/Value:FR FR+' => 'フランス語(フランス)', //'French (France)',
  99. 'Class:User/Attribute:profile_list' => 'プロフィール', //'Profiles',
  100. 'Class:User/Attribute:profile_list+' => '役割、この人に委譲された権限', //'Roles, granting rights for that person',
  101. 'Class:User/Attribute:allowed_org_list' => '許可された組織', //'Allowed Organizations',
  102. 'Class:User/Attribute:allowed_org_list+' => 'このエンドユーザは以下の組織に属するデータの参照を許可されている。組織が指定されていなければ、制限はありません。', //'The end user is allowed to see data belonging to the following organizations. If no organization is specified, there is no restriction.',
  103. 'Class:User/Error:LoginMustBeUnique' => 'ログイン名は一意でないといけません。- "%1s" はすでに使われています。', //'Login must be unique - "%1s" is already being used.',
  104. 'Class:User/Error:AtLeastOneProfileIsNeeded' => '少なくとも1件のプロフィールがこのユーザに指定されていないといけません。', //'At least one profile must be assigned to this user.',
  105. ));
  106. //
  107. // Class: URP_Profiles
  108. //
  109. Dict::Add('JA JP', 'Japanese', '日本語', array(
  110. 'Class:URP_Profiles' => 'プロフィール', //'Profile',
  111. 'Class:URP_Profiles+' => 'ユーザプロフィール', //'User profile',
  112. 'Class:URP_Profiles/Attribute:name' => '名前', //'Name',
  113. 'Class:URP_Profiles/Attribute:name+' => 'ラベル', //'label',
  114. 'Class:URP_Profiles/Attribute:description' => '概要', //'Description',
  115. 'Class:URP_Profiles/Attribute:description+' => '1行で書くと', //'one line description',
  116. 'Class:URP_Profiles/Attribute:user_list' => 'ユーザ', //'Users',
  117. 'Class:URP_Profiles/Attribute:user_list+' => 'この役割をもつ人', //'persons having this role',
  118. ));
  119. //
  120. // Class: URP_Dimensions
  121. //
  122. Dict::Add('JA JP', 'Japanese', '日本語', array(
  123. 'Class:URP_Dimensions' => '次元', //'dimension',
  124. 'Class:URP_Dimensions+' => 'application dimension (defining silos)',
  125. 'Class:URP_Dimensions/Attribute:name' => '名前', //'Name',
  126. 'Class:URP_Dimensions/Attribute:name+' => 'ラベル', //'label',
  127. 'Class:URP_Dimensions/Attribute:description' => '概要', //'Description',
  128. 'Class:URP_Dimensions/Attribute:description+' => '1行で書くと', //'one line description',
  129. 'Class:URP_Dimensions/Attribute:type' => '種別', //'Type',
  130. 'Class:URP_Dimensions/Attribute:type+' => 'クラス名、もしくはデータ型(projection unit)', //'class name or data type (projection unit)',
  131. ));
  132. //
  133. // Class: URP_UserProfile
  134. //
  135. Dict::Add('JA JP', 'Japanese', '日本語', array(
  136. 'Class:URP_UserProfile' => 'User to profile',
  137. 'Class:URP_UserProfile+' => 'ユーザプロフィール', //'user profiles',
  138. 'Class:URP_UserProfile/Attribute:userid' => 'ユーザ', //'User',
  139. 'Class:URP_UserProfile/Attribute:userid+' => 'ユーザアカウント', //'user account',
  140. 'Class:URP_UserProfile/Attribute:userlogin' => 'ログイン', //'Login',
  141. 'Class:URP_UserProfile/Attribute:userlogin+' => 'ユーザのログイン', //'User\'s login',
  142. 'Class:URP_UserProfile/Attribute:profileid' => 'プロフィール', //'Profile',
  143. 'Class:URP_UserProfile/Attribute:profileid+' => 'プロフィールの用法???', //'usage profile',
  144. 'Class:URP_UserProfile/Attribute:profile' => 'プロフィール', //'Profile',
  145. 'Class:URP_UserProfile/Attribute:profile+' => 'プロフィール名', //'Profile name',
  146. 'Class:URP_UserProfile/Attribute:reason' => '理由', //'Reason',
  147. 'Class:URP_UserProfile/Attribute:reason+' => 'なぜ、この人物がこの役割を持つかを説明する', //'explain why this person may have this role',
  148. ));
  149. //
  150. // Class: URP_UserOrg
  151. //
  152. Dict::Add('JA JP', 'Japanese', '日本語', array(
  153. 'Class:URP_UserOrg' => 'ユーザ組織', //'User organizations',
  154. 'Class:URP_UserOrg+' => '許可された組織', //'Allowed organizations',
  155. 'Class:URP_UserOrg/Attribute:userid' => 'ユーザ', //'User',
  156. 'Class:URP_UserOrg/Attribute:userid+' => 'ユーザアカウント', //'user account',
  157. 'Class:URP_UserOrg/Attribute:userlogin' => 'ログイン', //'Login',
  158. 'Class:URP_UserOrg/Attribute:userlogin+' => 'ユーザのログイン', //'User\'s login',
  159. 'Class:URP_UserOrg/Attribute:allowed_org_id' => '組織', //'Organization',
  160. 'Class:URP_UserOrg/Attribute:allowed_org_id+' => '許可された組織', //'Allowed organization',
  161. 'Class:URP_UserOrg/Attribute:allowed_org_name' => '組織', //'Organization',
  162. 'Class:URP_UserOrg/Attribute:allowed_org_name+' => '許可された組織', //'Allowed organization',
  163. 'Class:URP_UserOrg/Attribute:reason' => '理由', //'Reason',
  164. 'Class:URP_UserOrg/Attribute:reason+' => 'なぜこの人物がこの組織に属するデータを参照できるのかを説明する', // 'explain why this person is allowed to see the data belonging to this organization',
  165. ));
  166. //
  167. // Class: URP_ProfileProjection
  168. //
  169. Dict::Add('JA JP', 'Japanese', '日本語', array(
  170. 'Class:URP_ProfileProjection' => 'プロファイルプロジェクション???', // 'profile_projection',
  171. 'Class:URP_ProfileProjection+' => 'プロファイルプロジェクション???', //'profile projections',
  172. 'Class:URP_ProfileProjection/Attribute:dimensionid' => '次元', //'Dimension',
  173. 'Class:URP_ProfileProjection/Attribute:dimensionid+' => 'アプリケーション次元', // 'application dimension',
  174. 'Class:URP_ProfileProjection/Attribute:dimension' => '次元', //'Dimension',
  175. 'Class:URP_ProfileProjection/Attribute:dimension+' => 'アプリケーション次元', //'application dimension',
  176. 'Class:URP_ProfileProjection/Attribute:profileid' => 'プロフィール', //'Profile',
  177. 'Class:URP_ProfileProjection/Attribute:profileid+' => 'usage profile???',
  178. 'Class:URP_ProfileProjection/Attribute:profile' => 'プロフィール', //'Profile',
  179. 'Class:URP_ProfileProjection/Attribute:profile+' => 'プロフィール名', //'Profile name',
  180. 'Class:URP_ProfileProjection/Attribute:value' => 'Value式', //'Value expression',
  181. 'Class:URP_ProfileProjection/Attribute:value+' => '($userを使う)OQL式 | アクセス先 | +attribute code', //'OQL expression (using $user) | constant | | +attribute code',
  182. 'Class:URP_ProfileProjection/Attribute:attribute' => '属性', //'Attribute',
  183. 'Class:URP_ProfileProjection/Attribute:attribute+' => 'Target attribute code (optional)',
  184. ));
  185. //
  186. // Class: URP_ClassProjection
  187. //
  188. Dict::Add('JA JP', 'Japanese', '日本語', array(
  189. 'Class:URP_ClassProjection' => 'class_projection',
  190. 'Class:URP_ClassProjection+' => 'クラスの射影???', // 'clas projection',
  191. 'Class:URP_ClassProjection/Attribute:dimensionid' => '次元', //'Dimension',
  192. 'Class:URP_ClassProjection/Attribute:dimensionid+' => 'アプリケーション次元', //'application dimension',
  193. 'Class:URP_ClassProjection/Attribute:dimension' => '次元', //'Dimension',
  194. 'Class:URP_ClassProjection/Attribute:dimension+' => 'アプリケーション次元', //'application dimension',
  195. 'Class:URP_ClassProjection/Attribute:class' => 'クラス', //'Class',
  196. 'Class:URP_ClassProjection/Attribute:class+' => 'ターゲットクラス', //'Target class',
  197. 'Class:URP_ClassProjection/Attribute:value' => 'Value式???', //'Value expression',
  198. 'Class:URP_ClassProjection/Attribute:value+' => '($this を使った)OQL式 | 定数 | +attribute code', //'OQL expression (using $this) | constant | | +attribute code',
  199. 'Class:URP_ClassProjection/Attribute:attribute' => '属性', //'Attribute',
  200. 'Class:URP_ClassProjection/Attribute:attribute+' => 'ターゲット属性コード(オプション)', //'Target attribute code (optional)',
  201. ));
  202. //
  203. // Class: URP_ActionGrant
  204. //
  205. Dict::Add('JA JP', 'Japanese', '日本語', array(
  206. 'Class:URP_ActionGrant' => 'アクション権限', //'action_permission',
  207. 'Class:URP_ActionGrant+' => 'クラスに対する権限', //'permissions on classes',
  208. 'Class:URP_ActionGrant/Attribute:profileid' => 'プロファイル', //'Profile',
  209. 'Class:URP_ActionGrant/Attribute:profileid+' => 'usage profile',
  210. 'Class:URP_ActionGrant/Attribute:profile' => 'プロファイル', //'Profile',
  211. 'Class:URP_ActionGrant/Attribute:profile+' => 'usage profile',
  212. 'Class:URP_ActionGrant/Attribute:class' => 'クラス', //'Class',
  213. 'Class:URP_ActionGrant/Attribute:class+' => 'ターゲットクラス', //'Target class',
  214. 'Class:URP_ActionGrant/Attribute:permission' => '権限', //'Permission',
  215. 'Class:URP_ActionGrant/Attribute:permission+' => '権限の有無は?', //'allowed or not allowed?',
  216. 'Class:URP_ActionGrant/Attribute:permission/Value:yes' => 'はい', //'yes',
  217. 'Class:URP_ActionGrant/Attribute:permission/Value:yes+' => 'はい', //'yes',
  218. 'Class:URP_ActionGrant/Attribute:permission/Value:no' => 'いいえ', //'no',
  219. 'Class:URP_ActionGrant/Attribute:permission/Value:no+' => 'いいえ', //'no',
  220. 'Class:URP_ActionGrant/Attribute:action' => 'アクション', //'Action',
  221. 'Class:URP_ActionGrant/Attribute:action+' => '指定されたクラスにすべき操作', //'operations to perform on the given class',
  222. ));
  223. //
  224. // Class: URP_StimulusGrant
  225. //
  226. Dict::Add('JA JP', 'Japanese', '日本語', array(
  227. 'Class:URP_StimulusGrant' => 'stimulus_permission',
  228. 'Class:URP_StimulusGrant+' => 'permissions on stimilus in the life cycle of the object',
  229. 'Class:URP_StimulusGrant/Attribute:profileid' => 'プロファイル', //'Profile',
  230. 'Class:URP_StimulusGrant/Attribute:profileid+' => 'usage profile',
  231. 'Class:URP_StimulusGrant/Attribute:profile' => 'プロファイル', //'Profile',
  232. 'Class:URP_StimulusGrant/Attribute:profile+' => 'usage profile',
  233. 'Class:URP_StimulusGrant/Attribute:class' => 'クラス', //'Class',
  234. 'Class:URP_StimulusGrant/Attribute:class+' => 'ターゲットクラス', //'Target class',
  235. 'Class:URP_StimulusGrant/Attribute:permission' => '権限', // 'Permission',
  236. 'Class:URP_StimulusGrant/Attribute:permission+' => '権限の有無?', //'allowed or not allowed?',
  237. 'Class:URP_StimulusGrant/Attribute:permission/Value:yes' => 'はい', //'yes',
  238. 'Class:URP_StimulusGrant/Attribute:permission/Value:yes+' => 'はい', //'yes',
  239. 'Class:URP_StimulusGrant/Attribute:permission/Value:no' => 'いいえ', //'no',
  240. 'Class:URP_StimulusGrant/Attribute:permission/Value:no+' => 'いいえ', //'no',
  241. 'Class:URP_StimulusGrant/Attribute:stimulus' => 'Stimulus',
  242. 'Class:URP_StimulusGrant/Attribute:stimulus+' => 'stimulus code',
  243. ));
  244. //
  245. // Class: URP_AttributeGrant
  246. //
  247. Dict::Add('JA JP', 'Japanese', '日本語', array(
  248. 'Class:URP_AttributeGrant' => '権限属性', //'attribute_permission',
  249. 'Class:URP_AttributeGrant+' => '属性レベルでの権限', //'permissions at the attributes level',
  250. 'Class:URP_AttributeGrant/Attribute:actiongrantid' => '実行権限', //'Action grant',
  251. 'Class:URP_AttributeGrant/Attribute:actiongrantid+' => '実行権限', //'action grant',
  252. 'Class:URP_AttributeGrant/Attribute:attcode' => '属性', //'Attribute',
  253. 'Class:URP_AttributeGrant/Attribute:attcode+' => '属性コード', //'attribute code',
  254. ));
  255. //
  256. // String from the User Interface: menu, messages, buttons, etc...
  257. //
  258. Dict::Add('JA JP', 'Japanese', '日本語', array(
  259. 'Menu:WelcomeMenu' => 'ようこそ', //'Welcome',
  260. 'Menu:WelcomeMenu+' => 'ようこそ、iTopへ', //'Welcome to iTop',
  261. 'Menu:WelcomeMenuPage' => 'ようこそ', //'Welcome',
  262. 'Menu:WelcomeMenuPage+' => 'ようこそ、iTopへ', //'Welcome to iTop',
  263. 'UI:WelcomeMenu:Title' => 'ようこそ、iTopへ', //'Welcome to iTop',
  264. // '<p>iTop is a complete, OpenSource, IT Operational Portal.</p>
  265. 'UI:WelcomeMenu:LeftBlock' => '<p>iTopは、オープンソースの、これだけで完結したIT業務用ポータルです。</p>
  266. <ul>下記に挙げるものが同梱されています。
  267. <li>IT資産インベントリをドキュメント化、管理を行うための完全なCMDB(コンフィグレーション管理データベース)</li>
  268. <li>IT資産関連で発生した問題のトラッキングとそれに関する議論のためのインシデント管理モジュール</li>
  269. <li>IT資産環境への変更を加える場合のプランニングと変更をトラッキングするための変更管理モジュール</li>
  270. <li>インシデント解決のスピードアップするための既知エラーデータベース</li>
  271. <li>計画停電をすべてドキュメント化し、適切な連絡先に通知するための停電モジュール</li>
  272. <li>IT資産の概観を素早く得るためのダッシュボード</li>
  273. </ul>
  274. <p>すべてのモジュールはそれぞれ独立して別個にセットアップが可能である。</p>',
  275. //'<p>iTop is service provider oriented, it allows IT engineers to manage easily multiple customers or organizations.
  276. 'UI:WelcomeMenu:RightBlock' => '<p>iTopはサービスプロバイダ指向であり、ITエンジニアが複数の顧客や組織を簡単に管理できるようになる。
  277. <ul>iTopでは 下記のように、機能豊富なビジネスプロセスを取り揃えた。
  278. <li>効果的なIT資産管理</li>
  279. <li>IT業務の効率化推進</li>
  280. <li>顧客満足度の改善と、経営幹部へ、ビジネスパフォーマンス見える化を提供</li>
  281. </ul>
  282. </p>
  283. <p>iTopは完全にオープンなので、あなたが今使っているIT資産管理インフラとの統合が可能である。</p>
  284. <p>
  285. <ul>この次世代IT資産管理業務ポータルを採用すれば、こんなことが可能になる。
  286. <li>より複雑になりつつある、IT資産環境の管理を確実にする。</li>
  287. <li>自分のペースでITILプロセス実装することができる。</li>
  288. <li>IT資産の中でもっとも重要なアセットである、「ドキュメンテーション」を管理することができる。</li>
  289. </ul>
  290. </p>',
  291. 'UI:WelcomeMenu:AllOpenRequests' => 'リクエストを開く: %1$d', //'Open requests: %1$d',
  292. 'UI:WelcomeMenu:MyCalls' => 'マイリクエスト', //'My requests',
  293. 'UI:WelcomeMenu:OpenIncidents' => 'インシデントを開く: %1$d', //'Open incidents: %1$d',
  294. 'UI:WelcomeMenu:AllConfigItems' => '設定項目', //'Configuration Items: %1$d',
  295. 'UI:WelcomeMenu:MyIncidents' => '自分にアサインされたインシデント', //'Incidents assigned to me',
  296. 'UI:AllOrganizations' => '全組織', //' All Organizations ',
  297. 'UI:YourSearch' => 'あなたのサーチ', //'Your Search',
  298. 'UI:LoggedAsMessage' => '%1$s としてログインする', //'Logged in as %1$s',
  299. 'UI:LoggedAsMessage+Admin' => '%1$s (管理者)としてログインする', //'Logged in as %1$s (Administrator)',
  300. 'UI:Button:Logoff' => 'ログオフ', //'Log off',
  301. 'UI:Button:GlobalSearch' => 'サーチ', //'Search',
  302. 'UI:Button:Search' => ' サーチ', //' Search ',
  303. 'UI:Button:Query' => ' クエリ', //' Query ',
  304. 'UI:Button:Ok' => 'OK', //'Ok',
  305. 'UI:Button:Cancel' => 'キャンセル', //'Cancel',
  306. 'UI:Button:Apply' => '適用する', //'Apply',
  307. 'UI:Button:Back' => ' << 戻る', //' << Back ',
  308. 'UI:Button:Restart' => ' |<< リスタート', //' |<< Restart ',
  309. 'UI:Button:Next' => ' 次へ >> ', //' Next >> ',
  310. 'UI:Button:Finish' => ' 終了 ', //' Finish ',
  311. 'UI:Button:DoImport' => ' インポート実行! ', //' Run the Import ! ',
  312. 'UI:Button:Done' => ' 完了 ', //' Done ',
  313. 'UI:Button:SimulateImport' => ' インポートをシュミレート ', //' Simulate the Import ',
  314. 'UI:Button:Test' => 'テスト実行!', //'Test!',
  315. 'UI:Button:Evaluate' => ' 評価 ', //' Evaluate ',
  316. 'UI:Button:AddObject' => ' 追加...', //' Add... ',
  317. 'UI:Button:BrowseObjects' => 'ブラウズ...', //' Browse... ',
  318. 'UI:Button:Add' => ' 追加 ', //' Add ',
  319. 'UI:Button:AddToList' => ' << 追加 ', //' << Add ',
  320. 'UI:Button:RemoveFromList' => '削除 >> ', //' Remove >> ',
  321. 'UI:Button:FilterList' => ' フィルタ... ', //' Filter... ',
  322. 'UI:Button:Create' => ' 生成 ', //' Create ',
  323. 'UI:Button:Delete' => ' 削除! ', //' Delete ! ',
  324. 'UI:Button:ChangePassword' => ' パスワード変更 ', //' Change Password ',
  325. 'UI:Button:ResetPassword' => 'パスワードリセット ', //' Reset Password ',
  326. 'UI:SearchToggle' => 'サーチ', //'Search',
  327. 'UI:ClickToCreateNew' => '新規 %1$s を生成', //'Create a new %1$s',
  328. 'UI:SearchFor_Class' => '%1$s オブジェクトをサーチ', //'Search for %1$s objects',
  329. 'UI:NoObjectToDisplay' => '表示すべきオブジェクトがありません。', //'No object to display.',
  330. 'UI:Error:MandatoryTemplateParameter_object_id' => 'link_attrが指定されている時は、object_idパラメータは必須です。表示テンプレートの定義を確認してください。', //'Parameter object_id is mandatory when link_attr is specified. Check the definition of the display template.',
  331. 'UI:Error:MandatoryTemplateParameter_target_attr' => 'link_attrを指定する場合は、target_attrパラメータは必須です。表示テンプレートの定義を確認してください。', //'Parameter target_attr is mandatory when link_attr is specified. Check the definition of the display template.',
  332. 'UI:Error:MandatoryTemplateParameter_group_by' => 'group_byパラメータは必須です。表示テンプレートの定義を確認してください。', //'Parameter group_by is mandatory. Check the definition of the display template.',
  333. 'UI:Error:InvalidGroupByFields' => 'Invalid list of fields to group by: "%1$s".',
  334. 'UI:Error:UnsupportedStyleOfBlock' => 'エラー:"%1$s"はサポートされていないブロックスタイルです。', //'Error: unsupported style of block: "%1$s".',
  335. 'UI:Error:IncorrectLinkDefinition_LinkedClass_Class' => 'リンク定義が正しくありません。管理オブジェクトのクラス:%1Ss は、クラス %2$s クラスの外部キーとして見つかりません。', //'Incorrect link definition: the class of objects to manage: %1$s was not found as an external key in the class %2$s',
  336. 'UI:Error:Object_Class_Id_NotFound' => 'オブジェクト:%1$s:%2$d が見つかりません。', //'Object: %1$s:%2$d not found.',
  337. 'UI:Error:WizardCircularReferenceInDependencies' => 'エラー: フィールド間の依存関係に循環参照があります。データモデルを確認してください。', //'Error: Circular reference in the dependencies between the fields, check the data model.',
  338. 'UI:Error:UploadedFileTooBig' => 'アップロードファイルが大きすぎます(上限は %1$s )。PHPの設定にある、upload_max_filesizeと、post_max_sizeを確認してください。', //'Uploaded file is too big. (Max allowed size is %1$s). Check you PHP configuration for upload_max_filesize and post_max_size.',
  339. 'UI:Error:UploadedFileTruncated.' => 'アップロードファイルが切り捨てられました!', //'Uploaded file has been truncated !',
  340. 'UI:Error:NoTmpDir' => 'この一時ディレクトリは定義されていません。', //'The temporary directory is not defined.',
  341. 'UI:Error:CannotWriteToTmp_Dir' => '一時ファイルをディスクに書き込めません。upload_tmp_dir = "%1$s" です。', //'Unable to write the temporary file to the disk. upload_tmp_dir = "%1$s".',
  342. 'UI:Error:UploadStoppedByExtension_FileName' => 'extensionにより、アップロードを停止しました。(オリジナルのファイル名は"%1$s"です)。', //'Upload stopped by extension. (Original file name = "%1$s").',
  343. 'UI:Error:UploadFailedUnknownCause_Code' => 'ファイルのアップロードに失敗しました。原因は不明(エラーコード: "%1$s")です。', //'File upload failed, unknown cause. (Error code = "%1$s").',
  344. 'UI:Error:1ParametersMissing' => 'エラー: この操作には下記のパラメータを指定する必要があります:%1$s', //'Error: the following parameter must be specified for this operation: %1$s.',
  345. 'UI:Error:2ParametersMissing' => 'エラー:この操作には、下記のパラメータを指定する必要があります:%1$s , %2$s', //'Error: the following parameters must be specified for this operation: %1$s and %2$s.',
  346. 'UI:Error:3ParametersMissing' => 'エラー:この操作には、下記のパラメータを指定する必要があります:%1$s, %2$s, %3$s', //Error: the following parameters must be specified for this operation: %1$s, %2$s and %3$s.',
  347. 'UI:Error:4ParametersMissing' => 'エラー:この操作には、下記のパラメータを指定する必要があります:%1$s, %2$s, %3$s,%4$s', //'Error: the following parameters must be specified for this operation: %1$s, %2$s, %3$s and %4$s.',
  348. 'UI:Error:IncorrectOQLQuery_Message' => 'エラー:OQLクエリが正しくありません:%1$s', //'Error: incorrect OQL query: %1$s',
  349. 'UI:Error:AnErrorOccuredWhileRunningTheQuery_Message' => 'クエリ;%1$s 実行中にエラーが発生しました。', //'An error occured while running the query: %1$s',
  350. 'UI:Error:ObjectAlreadyUpdated' => 'エラー:このオブジェクトはすでに更新済みです。', //'Error: the object has already been updated.',
  351. 'UI:Error:ObjectCannotBeUpdated' => 'エラー:オブジェクトを更新できません。', //'Error: object cannot be updated.',
  352. 'UI:Error:ObjectsAlreadyDeleted' => 'エラー:オブジェクトは既に削除されています。', //'Error: objects have already been deleted!',
  353. 'UI:Error:BulkDeleteNotAllowedOn_Class' => '%1$s クラスのオブジェクトに対するバルク削除は許可されていません。', //'You are not allowed to perform a bulk delete of objects of class %1$s',
  354. 'UI:Error:DeleteNotAllowedOn_Class' => '%1$s クラスのオブジェクトの削除は許可されていません。', //'You are not allowed to delete objects of class %1$s',
  355. 'UI:Error:BulkModifyNotAllowedOn_Class' => '%1$s クラスのオブジェクトに対するバルクアップデート処理の実行は許可されていません。', //'You are not allowed to perform a bulk update of objects of class %1$s',
  356. 'UI:Error:ObjectAlreadyCloned' => 'エラー:このオブジェクトはすでに、クローニングされています。', // 'Error: the object has already been cloned!',
  357. 'UI:Error:ObjectAlreadyCreated' => 'エラー:このオブジェクトは既に生成済みです。', //'Error: the object has already been created!',
  358. 'UI:Error:Invalid_Stimulus_On_Object_In_State' => 'エラー:Error: invalid stimulus "%1$s" on object %2$s in state "%3$s".',
  359. 'UI:GroupBy:Count' => 'カウント', //'Count',
  360. 'UI:GroupBy:Count+' => '要素数', //'Number of elements',
  361. 'UI:CountOfObjects' => '%1$d 個のオブジェクトが条件にマッチしました。', //'%1$d objects matching the criteria.',
  362. 'UI_CountOfObjectsShort' => '%1$d オブジェクトです。', //'%1$d objects.',
  363. 'UI:NoObject_Class_ToDisplay' => '表示できる %1$s はありません。', //'No %1$s to display',
  364. 'UI:History:LastModified_On_By' => '最終更新日: %1$s ( %2$s )', //'Last modified on %1$s by %2$s.',
  365. 'UI:HistoryTab' => '履歴', //'History',
  366. 'UI:NotificationsTab' => '通知', //'Notifications',
  367. 'UI:History:BulkImports' => '履歴', //'History',
  368. 'UI:History:BulkImports+' => 'CSVインポートのリスト(last first)', //'List of CSV imports (last first)',
  369. 'UI:History:BulkImportDetails' => '%2$s により実行された %1$s へのCSVインポート結果の変更???', // 'Changes resulting from the CSV import performed on %1$s (by %2$s)',
  370. 'UI:History:Date' => '日付',//'Date',
  371. 'UI:History:Date+' => '更新日時', //'Date of the change',
  372. 'UI:History:User' => 'ユーザ', //'User',
  373. 'UI:History:User+' => 'この変更を行ったユーザ', //'User who made the change',
  374. 'UI:History:Changes' => '変更', //'Changes',
  375. 'UI:History:Changes+' => 'このオブジェクトを変更する', //'Changes made to the object',
  376. 'UI:History:StatsCreations' => '生成された', //'Created',
  377. 'UI:History:StatsCreations+' => '生成されたオブジェクト数', //'Count of objects created',
  378. 'UI:History:StatsModifs' => '修正された', //'Modified',
  379. 'UI:History:StatsModifs+' => '修正されたオブジェクト数', //'Count of objects modified',
  380. 'UI:History:StatsDeletes' => '削除された', //'Deleted',
  381. 'UI:History:StatsDeletes+' => '削除されたオブジェクト数', //'Count of objects deleted',
  382. 'UI:Loading' => '読み込み...', //'Loading...',
  383. 'UI:Menu:Actions' => '実行...', //'Actions',
  384. 'UI:Menu:OtherActions' => '実行...', //'Actions',
  385. 'UI:Menu:New' => '新規...', //'New...',
  386. 'UI:Menu:Add' => '追加...', //'Add...',
  387. 'UI:Menu:Manage' => '管理する...', //'Manage...',
  388. 'UI:Menu:EMail' => 'Eメール', //'eMail',
  389. 'UI:Menu:CSVExport' => 'CSVエクスポート', //'CSV Export',
  390. 'UI:Menu:Modify' => '修正する...', //'Modify...',
  391. 'UI:Menu:Delete' => '削除する...', //'Delete...',
  392. 'UI:Menu:Manage' => '管理する...', //'Manage...',
  393. 'UI:Menu:BulkDelete' => '削除する', //'Delete...',
  394. 'UI:UndefinedObject' => '未定義', //'undefined',
  395. 'UI:Document:OpenInNewWindow:Download' => '新規ウィンドウで開く: %1$s, ダウンロード: %2$s', //'Open in new window: %1$s, Download: %2$s',
  396. 'UI:SelectAllToggle+' => 'すべて選択 / すべて非選択', //'Select / Deselect All',
  397. 'UI:TruncatedResults' => '%1$d objects displayed out of %2$d',
  398. 'UI:DisplayAll' => 'すべて表示', //'Display All',
  399. 'UI:CollapseList' => '折り畳む', //'Collapse',
  400. 'UI:CountOfResults' => '%1$d オブジェクト', //'%1$d object(s)',
  401. 'UI:ChangesLogTitle' => '変更履歴(%1$d)', //'Changes log (%1$d):',
  402. 'UI:EmptyChangesLogTitle' => '変更履歴は空です。', //'Changes log is empty',
  403. 'UI:SearchFor_Class_Objects' => '%1$s オブジェクトを検索', //'Search for %1$s Objects',
  404. 'UI:OQLQueryBuilderTitle' => 'OQLクエリビルダ', //'OQL Query Builder',
  405. 'UI:OQLQueryTab' => 'OQLクエリ', //'OQL Query',
  406. 'UI:SimpleSearchTab' => '単純検索', //'Simple Search',
  407. 'UI:Details+' => '詳細情報', //'Details',
  408. 'UI:SearchValue:Any' => '* 任意 *', //'* Any *',
  409. 'UI:SearchValue:Mixed' => '* 混成 *', //'* mixed *',
  410. 'UI:SelectOne' => '-- 選んでください --', //'-- select one --',
  411. 'UI:Login:Welcome' => 'iTopへようこそ', //'Welcome to iTop!',
  412. 'UI:Login:IncorrectLoginPassword' => 'ログイン/パスワードが正しくありません。再度ログインしてください。', //'Incorrect login/password, please try again.',
  413. 'UI:Login:IdentifyYourself' => '続けて作業を行う前に認証を受けてください。', //'Identify yourself before continuing',
  414. 'UI:Login:UserNamePrompt' => 'ユーザ名', //'User Name',
  415. 'UI:Login:PasswordPrompt' => 'パスワード', //'Password',
  416. 'UI:Login:ChangeYourPassword' => 'パスワードを変更してください', //'Change Your Password',
  417. 'UI:Login:OldPasswordPrompt' => '既存パスワード',//'Old password',
  418. 'UI:Login:NewPasswordPrompt' => '新規パスワード', //'New password',
  419. 'UI:Login:RetypeNewPasswordPrompt' => '新規パスワードを再度入力してください。', //'Retype new password',
  420. 'UI:Login:IncorrectOldPassword' => 'エラー:既存パスワードが正しくありません。', //'Error: the old password is incorrect',
  421. 'UI:LogOffMenu' => 'ログオフ', //'Log off',
  422. 'UI:LogOff:ThankYou' => 'iTopをご利用いただき、ありがとうございます。', //'Thank you for using iTop',
  423. 'UI:LogOff:ClickHereToLoginAgain' => '再度ログインするにはここをクリックしてください...', //'Click here to login again...',
  424. 'UI:ChangePwdMenu' => 'パスワードを変更する...', //'Change Password...',
  425. 'UI:AccessRO-All' => 'iTopは参照のみ有効です。', //'iTop is read-only',
  426. 'UI:AccessRO-Users' => 'エンドユーザの方はiTopは参照のみ有効です。', //'iTop is read-only for end-users',
  427. 'UI:Login:RetypePwdDoesNotMatch' => '2度入力された新規パスワードが一致しません!', //'New password and retyped new password do not match !',
  428. 'UI:Button:Login' => 'iTopへ入る', //'Enter iTop',
  429. 'UI:Login:Error:AccessRestricted' => 'iTopへのアクセスは制限されています。iTop管理者に問い合わせしてください。', //'iTop access is restricted. Please, contact an iTop administrator.',
  430. 'UI:Login:Error:AccessAdmin' => '管理者権限をもつユーザにアクセスが制限されています。iTop管理者に問い合わせしてください。', //'Access restricted to people having administrator privileges. Please, contact an iTop administrator.',
  431. 'UI:CSVImport:MappingSelectOne' => '-- 選択してください --', //'-- select one --',
  432. 'UI:CSVImport:MappingNotApplicable' => '--このフィールドを無視する --', //'-- ignore this field --',
  433. 'UI:CSVImport:NoData' => 'データが空です..., データを指定してください。', // 'Empty data set..., please provide some data!',
  434. 'UI:Title:DataPreview' => 'データプレビュー', //'Data Preview',
  435. 'UI:CSVImport:ErrorOnlyOneColumn' => 'エラー:このデータにはカラムが1つしか含まれていません。適切なセパレータ文字を選択しましたか?', //'Error: The data contains only one column. Did you select the appropriate separator character?',
  436. 'UI:CSVImport:FieldName' => 'フィールド: %1$d', //'Field %1$d',
  437. 'UI:CSVImport:DataLine1' => 'データ行 1', //'Data Line 1',
  438. 'UI:CSVImport:DataLine2' => 'データ行 2', //'Data Line 2',
  439. 'UI:CSVImport:idField' => 'ID (プライマリキー)', //'id (Primary Key)',
  440. 'UI:Title:BulkImport' => 'iTop - バルクインポート', //'iTop - Bulk import',
  441. 'UI:Title:BulkImport+' => 'CSV インポートウィザード', //'CSV Import Wizard',
  442. 'UI:Title:BulkSynchro_nbItem_ofClass_class' => '%2$s クラスの %1$d オブジェクトを同期', //'Synchronization of %1$d objects of class %2$s',
  443. 'UI:CSVImport:ClassesSelectOne' => '--選択してください --', //'-- select one --',
  444. 'UI:CSVImport:ErrorExtendedAttCode' => '内部エラー: "%2$s" は"%3$s"クラスの外部キーではないので、"%1$s" は正しくないコードです。', // 'Internal error: "%1$s" is an incorrect code because "%2$s" is NOT an external key of the class "%3$s"',
  445. 'UI:CSVImport:ObjectsWillStayUnchanged' => '%1$d オブジェクトが変更されないままです。', //'%1$d objects(s) will stay unchanged.',
  446. 'UI:CSVImport:ObjectsWillBeModified' => '%1$d オブジェクトが修正されます。', //'%1$d objects(s) will be modified.',
  447. 'UI:CSVImport:ObjectsWillBeAdded' => '%1$d オブジェクトが追加されます。', //'%1$d objects(s) will be added.',
  448. 'UI:CSVImport:ObjectsWillHaveErrors' => '%1$d オブジェクトにエラーがあります。', //'%1$d objects(s) will have errors.',
  449. 'UI:CSVImport:ObjectsRemainedUnchanged' => '%1$d オブジェクトは変更されていません。', //'%1$d objects(s) remained unchanged.',
  450. 'UI:CSVImport:ObjectsWereModified' => '%1$d オブジェクトが変更されました。', //'%1$d objects(s) were modified.',
  451. 'UI:CSVImport:ObjectsWereAdded' => '%1$d オブジェクトが追加されました。', //'%1$d objects(s) were added.',
  452. 'UI:CSVImport:ObjectsHadErrors' => '%1$s オブジェクトにエラーがあります。', //'%1$d objects(s) had errors.',
  453. 'UI:Title:CSVImportStep2' => 'ステップ2/5: CSVデータオプション', //'Step 2 of 5: CSV data options',
  454. 'UI:Title:CSVImportStep3' => 'ステップ3/5: データマッピング', //'Step 3 of 5: Data mapping',
  455. 'UI:Title:CSVImportStep4' => 'ステップ4/5: インポートシミュレーション', //'Step 4 of 5: Import simulation',
  456. 'UI:Title:CSVImportStep5' => 'ステップ5/5: インポート完了', //'Step 5 of 5: Import completed',
  457. 'UI:CSVImport:LinesNotImported' => 'ロードできなかった行:', //'Lines that could not be loaded:',
  458. 'UI:CSVImport:LinesNotImported+' => '下記の行はエラーが含まれていたのでインポートされませんでした。', //'The following lines have not been imported because they contain errors',
  459. 'UI:CSVImport:SeparatorComma+' => ', (コンマ)', //', (comma)',
  460. 'UI:CSVImport:SeparatorSemicolon+' => '; (セミコロン)', //'; (semicolon)',
  461. 'UI:CSVImport:SeparatorTab+' => 'タブ', //'tab',
  462. 'UI:CSVImport:SeparatorOther' => 'その他:', //'other:',
  463. 'UI:CSVImport:QualifierDoubleQuote+' => '" (ダブルクォート)', //'" (double quote)',
  464. 'UI:CSVImport:QualifierSimpleQuote+' => '\' (シングルクォート)', //'\' (simple quote)',
  465. 'UI:CSVImport:QualifierOther' => 'その他:', //'other:',
  466. 'UI:CSVImport:TreatFirstLineAsHeader' => '1行めをヘッダ(カラム名)として扱う', // 'Treat the first line as a header (column names)',
  467. 'UI:CSVImport:Skip_N_LinesAtTheBeginning' => 'ファイル冒頭の%1$s 行をスキップする', //'Skip %1$s line(s) at the beginning of the file',
  468. 'UI:CSVImport:CSVDataPreview' => 'CSVデータプレビュー', //'CSV Data Preview',
  469. 'UI:CSVImport:SelectFile' => 'インポートするファイルを選択してください:', //'Select the file to import:',
  470. 'UI:CSVImport:Tab:LoadFromFile' => 'ファイルからロードしてください', //'Load from a file',
  471. 'UI:CSVImport:Tab:CopyPaste' => 'データをコピーペーストしてください', //'Copy and paste data',
  472. 'UI:CSVImport:Tab:Templates' => 'テンプレート', //'Templates',
  473. 'UI:CSVImport:PasteData' => 'インポートするデータをペーストしてください', //'Paste the data to import:',
  474. 'UI:CSVImport:PickClassForTemplate' => 'ダウンロードするテンプレートを選んでください', //'Pick the template to download: ',
  475. 'UI:CSVImport:SeparatorCharacter' => 'セパレータ文字', //'Separator character:',
  476. 'UI:CSVImport:TextQualifierCharacter' => 'テキスト識別文字', //'Text qualifier character',
  477. 'UI:CSVImport:CommentsAndHeader' => 'コメントとヘッダ', //'Comments and header',
  478. 'UI:CSVImport:SelectClass' => 'インポートするクラスを選択してください', //'Select the class to import:',
  479. 'UI:CSVImport:AdvancedMode' => '拡張モード', //'Advanced mode',
  480. 'UI:CSVImport:AdvancedMode+' => '拡張モードでは、オブジェクトに付与されている"id"(プライマリキー)がオブジェクトの更新、リネームに指定可能です。' . //In advanced mode the "id" (primary key) of the objects can be used to update and rename objects.' .
  481. 'しかしながら、"id"カラムは(たとえ存在しても)検索条件として指定できるのみであり、他の検索条件と組み合わせて利用することはできません。', //'However the column "id" (if present) can only be used as a search criteria and can not be combined with any other search criteria.',
  482. 'UI:CSVImport:SelectAClassFirst' => 'マッピングを設定するには、まず最初にクラスを選択してください。', //'To configure the mapping, select a class first.',
  483. 'UI:CSVImport:HeaderFields' => 'フィールド', //'Fields',
  484. 'UI:CSVImport:HeaderMappings' => 'マッピング', //'Mappings',
  485. 'UI:CSVImport:HeaderSearch' => '検索しますか?', //'Search?',
  486. 'UI:CSVImport:AlertIncompleteMapping' => 'すべてのフィールドのマッピングを選択してください。', //'Please select a mapping for every field.',
  487. 'UI:CSVImport:AlertNoSearchCriteria' => '少なくとも1つ以上の検索条件を選択してください。', //'Please select at least one search criteria',
  488. 'UI:CSVImport:Encoding' => '文字エンコーディング', //'Character encoding',
  489. 'UI:UniversalSearchTitle' => 'iTop - ユニバーサルサーチ', //'iTop - Universal Search',
  490. 'UI:UniversalSearch:Error' => 'エラー:%1$s', //'Error: %1$s',
  491. 'UI:UniversalSearch:LabelSelectTheClass' => '検索するクラスを選択してください。', //'Select the class to search: ',
  492. 'UI:Audit:Title' => 'iTop - CMDB 監査', //'iTop - CMDB Audit',
  493. 'UI:Audit:InteractiveAudit' => '対話型監査', //'Interactive Audit',
  494. 'UI:Audit:HeaderAuditRule' => '監査ルール', //'Audit Rule',
  495. 'UI:Audit:HeaderNbObjects' => 'オブジェクト数', //'# Objects',
  496. 'UI:Audit:HeaderNbErrors' => 'エラー数', //'# Errors',
  497. 'UI:Audit:PercentageOk' => '% OK', //'% Ok',
  498. 'UI:RunQuery:Title' => 'iTop - OQLクエリ評価', //'iTop - OQL Query Evaluation',
  499. 'UI:RunQuery:QueryExamples' => 'クエリの例', //'Query Examples',
  500. 'UI:RunQuery:HeaderPurpose' => '目的', //'Purpose',
  501. 'UI:RunQuery:HeaderPurpose+' => 'クエリについての説明', //'Explanation about the query',
  502. 'UI:RunQuery:HeaderOQLExpression' => 'OQL式', //'OQL Expression',
  503. 'UI:RunQuery:HeaderOQLExpression+' => 'OQL文法によるクエリ', //'The query in OQL syntax',
  504. 'UI:RunQuery:ExpressionToEvaluate' => '評価式', //'Expression to evaluate: ',
  505. 'UI:RunQuery:MoreInfo' => '本クエリに関する詳細情報', //'More information about the query: ',
  506. 'UI:RunQuery:DevelopedQuery' => 'クエリ式の再開発', //'Redevelopped query expression: ',
  507. 'UI:RunQuery:SerializedFilter' => '序列化フィルタ:', //'Serialized filter: ',
  508. 'UI:RunQuery:Error' => '本クエリ実行時にエラーが発生しました:%1$s', //'An error occured while running the query: %1$s',
  509. 'UI:Schema:Title' => 'iTop オブジェクトスキーマ', //'iTop objects schema',
  510. 'UI:Schema:CategoryMenuItem' => 'カテゴリ <b>%1$s</b>', //'Category <b>%1$s</b>',
  511. 'UI:Schema:Relationships' => '関連', //'Relationships',
  512. 'UI:Schema:AbstractClass' => '抽象クラス:このクラスのインスタンスを生成することはできません。', //'Abstract class: no object from this class can be instantiated.',
  513. 'UI:Schema:NonAbstractClass' => '非抽象クラス:このクラスのインスタンスを生成できます。', //'Non abstract class: objects from this class can be instantiated.',
  514. 'UI:Schema:ClassHierarchyTitle' => 'クラス階層', //'Class hierarchy',
  515. 'UI:Schema:AllClasses' => '全クラス', //'All classes',
  516. 'UI:Schema:ExternalKey_To' => '%1$s の外部キー', //'External key to %1$s',
  517. 'UI:Schema:Columns_Description' => 'カラム: <em>%1$s</em>', //'Columns: <em>%1$s</em>',
  518. 'UI:Schema:Default_Description' => 'デフォルト: "%1$s"', //'Default: "%1$s"',
  519. 'UI:Schema:NullAllowed' => 'Null許容', //'Null Allowed',
  520. 'UI:Schema:NullNotAllowed' => 'Null 非許容', //'Null NOT Allowed',
  521. 'UI:Schema:Attributes' => '属性', //'Attributes',
  522. 'UI:Schema:AttributeCode' => '属性コード', //'Attribute Code',
  523. 'UI:Schema:AttributeCode+' => '属性の内部コード', //'Internal code of the attribute',
  524. 'UI:Schema:Label' => 'ラベル', //'Label',
  525. 'UI:Schema:Label+' => '属性のラベル', //'Label of the attribute',
  526. 'UI:Schema:Type' => '型', //'Type',
  527. 'UI:Schema:Type+' => '属性のデータ型', //'Data type of the attribute',
  528. 'UI:Schema:Origin' => 'オリジン', //'Origin',
  529. 'UI:Schema:Origin+' => 'この属性が定義されているベースクラス', //'The base class in which this attribute is defined',
  530. 'UI:Schema:Description' => '概要', //'Description',
  531. 'UI:Schema:Description+' => '本属性の概要', //'Description of the attribute',
  532. 'UI:Schema:AllowedValues' => '取りうる値', //'Allowed values',
  533. 'UI:Schema:AllowedValues+' => '本属性で取りうる値の制限', //'Restrictions on the possible values for this attribute',
  534. 'UI:Schema:MoreInfo' => '詳細情報', //'More info',
  535. 'UI:Schema:MoreInfo+' => 'データベースに定義された本フィールドの詳細情報', //'More information about the field defined in the database',
  536. 'UI:Schema:SearchCriteria' => '検索条件', //'Search criteria',
  537. 'UI:Schema:FilterCode' => 'フィルタコード', //'Filter code',
  538. 'UI:Schema:FilterCode+' => '本検索条件のコード', //'Code of this search criteria',
  539. 'UI:Schema:FilterDescription' => '概要', //'Description',
  540. 'UI:Schema:FilterDescription+' => '本検索条件の概要', //'Description of this search criteria',
  541. 'UI:Schema:AvailOperators' => '利用可能な演算子', //'Available operators',
  542. 'UI:Schema:AvailOperators+' => '本検索条件で利用可能な演算子', //'Possible operators for this search criteria',
  543. 'UI:Schema:ChildClasses' => '子クラス', //'Child classes',
  544. 'UI:Schema:ReferencingClasses' => '参照クラス', //'Referencing classes',
  545. 'UI:Schema:RelatedClasses' => '関係するクラス', //'Related classes',
  546. 'UI:Schema:LifeCycle' => 'ライフサイクル', //'Life cycle',
  547. 'UI:Schema:Triggers' => 'トリガ', //'Triggers',
  548. 'UI:Schema:Relation_Code_Description' => 'リレーション <em>%1$s</em> (%2$s)', //'Relation <em>%1$s</em> (%2$s)',
  549. 'UI:Schema:RelationDown_Description' => '下へ: %1$s', //'Down: %1$s',
  550. 'UI:Schema:RelationUp_Description' => '上へ: $1$s', //'Up: %1$s',
  551. 'UI:Schema:RelationPropagates' => '%1$s: %2$d レベルへ伝播、クエリ:%3$s', //'%1$s: propagate to %2$d levels, query: %3$s',
  552. 'UI:Schema:RelationDoesNotPropagate' => '%1$s: 伝播しない (%2$d レベル), クエリ: %3$s', //'%1$s: does not propagates (%2$d levels), query: %3$s',
  553. 'UI:Schema:Class_ReferencingClasses_From_By' => '%1$s は%2$s クラスから %3$s フィールドにより参照されている', //'%1$s is referenced by the class %2$s via the field %3$s',
  554. 'UI:Schema:Class_IsLinkedTo_Class_Via_ClassAndAttribute' => '%1$s は %3$s::<em>%4$s</em>により%2$s へリンクされています。', //'%1$s is linked to %2$s via %3$s::<em>%4$s</em>',
  555. 'UI:Schema:Links:1-n' => 'クラスは%1$sへポイントしています。(1:n リンク)', //'Classes pointing to %1$s (1:n links):',
  556. 'UI:Schema:Links:n-n' => 'クラスは%1$sへリンクしています。(n:n リンク)', //'Classes linked to %1$s (n:n links):',
  557. 'UI:Schema:Links:All' => '関連する全クラスのグラフ表示', //'Graph of all related classes',
  558. 'UI:Schema:NoLifeCyle' => 'このクラスにはライフサイクルが定義されていません。', //'There is no life cycle defined for this class.',
  559. 'UI:Schema:LifeCycleTransitions' => 'トランジション', //'Transitions',
  560. 'UI:Schema:LifeCyleAttributeOptions' => '属性オプション', //'Attribute options',
  561. 'UI:Schema:LifeCycleHiddenAttribute' => '隠し', //'Hidden',
  562. 'UI:Schema:LifeCycleReadOnlyAttribute' => '参照限定',// 'Read-only',
  563. 'UI:Schema:LifeCycleMandatoryAttribute' => '必須', //'Mandatory',
  564. 'UI:Schema:LifeCycleAttributeMustChange' => '変更必須', //'Must change',
  565. 'UI:Schema:LifeCycleAttributeMustPrompt' => 'ユーザはこの値を変更するよう、促されます。', //'User will be prompted to change the value',
  566. 'UI:Schema:LifeCycleEmptyList' => '空リスト', //'empty list',
  567. 'UI:LinksWidget:Autocomplete+' => '最初の3文字をタイプしてください...', //'Type the first 3 characters...',
  568. 'UI:Combo:SelectValue' => '--- 値を選んでください ---', //'--- select a value ---',
  569. 'UI:Label:SelectedObjects' => '選択されたオブジェクト: ', //'Selected objects: ',
  570. 'UI:Label:AvailableObjects' => '選択可能なオブジェクト: ', //'Available objects: ',
  571. 'UI:Link_Class_Attributes' => '%1$s 属性', //'%1$s attributes',
  572. 'UI:SelectAllToggle+' => '全部を選択 / 全部を非選択', //'Select All / Deselect All',
  573. 'UI:AddObjectsOf_Class_LinkedWith_Class_Instance' => '%2$s にリンクされた%1$sオブジェクトを追加:%3$s', //'Add %1$s objects linked with %2$s: %3$s',
  574. 'UI:AddObjectsOf_Class_LinkedWith_Class' => '$1$s オブジェクトを%2$sとのリンクに追加', //'Add %1$s objects to link with the %2$s',
  575. 'UI:ManageObjectsOf_Class_LinkedWith_Class_Instance' => '%2$s とりんくされた%1$sオブジェクトを管理する: %3$s', //'Manage %1$s objects linked with %2$s: %3$s',
  576. 'UI:AddLinkedObjectsOf_Class' => '%1$s を追加...', //'Add %1$ss...',
  577. 'UI:RemoveLinkedObjectsOf_Class' => '選択したオブジェクトを除外', //'Remove selected objects',
  578. 'UI:Message:EmptyList:UseAdd' => 'リストは空です。"追加..."ボタンを利用して要素を追加してください。', //'The list is empty, use the "Add..." button to add elements.',
  579. 'UI:Message:EmptyList:UseSearchForm' => '上の検索フォームを使って追加するオブジェクトを検索してください。', //'Use the search form above to search for objects to be added.',
  580. 'UI:Wizard:FinalStepTitle' => '最終ステップ:コンファーム', //'Final step: confirmation',
  581. 'UI:Title:DeletionOf_Object' => '%1$sの削除', //'Deletion of %1$s',
  582. 'UI:Title:BulkDeletionOf_Count_ObjectsOf_Class' => '%2$s クラスの%1$d個のオブジェクトをバルク削除', //'Bulk deletion of %1$d objects of class %2$s',
  583. 'UI:Delete:NotAllowedToDelete' => 'このオブジェクトを削除する権限がありません。', //'You are not allowed to delete this object',
  584. 'UI:Delete:NotAllowedToUpdate_Fields' => '以下のフィールドを更新する権限が与えられていません: %1$s', //'You are not allowed to update the following field(s): %1$s',
  585. 'UI:Error:NotEnoughRightsToDelete' => 'カレントユーザは十分な権限を持っていないので、このオブジェクトは削除することができません。', //'This object could not be deleted because the current user do not have sufficient rights',
  586. 'UI:Error:CannotDeleteBecauseOfDepencies' => 'いくつかのマニュアル操作を先に実装する必要があるので、このオブジェクトは削除できません。', //'This object could not be deleted because some manual operations must be performed prior to that',
  587. 'UI:Archive_User_OnBehalfOf_User' => '%2$s を代表して %1$s', // '%1$s on behalf of %2$s',
  588. 'UI:Delete:AutomaticallyDeleted' => '自動的に削除されました。', //'automatically deleted',
  589. 'UI:Delete:AutomaticResetOf_Fields' => 'フィールドの自動リセット: %1$s', //'automatic reset of field(s): %1$s',
  590. 'UI:Delete:CleaningUpRefencesTo_Object' => '%1$s への参照すべてをクリア', //'Cleaning up all references to %1$s...',
  591. 'UI:Delete:CleaningUpRefencesTo_Several_ObjectsOf_Class' => '%2$s クラスの %1$d個のオブジェクトへの参照をすべてクリア', //'Cleaning up all references to %1$d objects of class %2$s...',
  592. 'UI:Delete:Done+' => '実行しました...???', //'What was done...',
  593. 'UI:Delete:_Name_Class_Deleted' => '%1$s - %2$s 削除しました。', //'%1$s - %2$s deleted.',
  594. 'UI:Delete:ConfirmDeletionOf_Name' => '%1$s の削除', //'Deletion of %1$s',
  595. 'UI:Delete:ConfirmDeletionOf_Count_ObjectsOf_Class' => '%2$sクラスの%1$dオブジェクトの削除', //'Deletion of %1$d objects of class %2$s',
  596. 'UI:Delete:ShouldBeDeletedAtomaticallyButNotAllowed' => '自動的に削除されるべきだが、そのための権限がありません。', //'Should be automaticaly deleted, but you are not allowed to do so',
  597. 'UI:Delete:MustBeDeletedManuallyButNotAllowed' => '手動で削除されるべきだが、このオブジェクトを削除するための権限がありません。アプリケーション管理者に問い合わせてください。', //'Must be deleted manually - but you are not allowed to delete this object, please contact your application admin',
  598. 'UI:Delete:WillBeDeletedAutomatically' => '自動的に削除されます。', //'Will be automaticaly deleted',
  599. 'UI:Delete:MustBeDeletedManually' => '手動で削除されるべきです。', //'Must be deleted manually',
  600. 'UI:Delete:CannotUpdateBecause_Issue' => '自動的に更新されるべきだが: %1$s', //'Should be automatically updated, but: %1$s',
  601. 'UI:Delete:WillAutomaticallyUpdate_Fields' => 'は自動的に更新されます。(reset: %1$s)', //'will be automaticaly updated (reset: %1$s)',
  602. 'UI:Delete:Count_Objects/LinksReferencing_Object' => '%1$dオブジェクト/リンクは%2$sを参照しています。', //'%1$d objects/links are referencing %2$s',
  603. 'UI:Delete:Count_Objects/LinksReferencingTheObjects' => '%1$dオブジェクト/リンクは削除されるべきオブジェクトを参照しています。', //'%1$d objects/links are referencing some of the objects to be deleted',
  604. 'UI:Delete:ReferencesMustBeDeletedToEnsureIntegrity' => 'データベース一貫性を確実にするために、いくつかの参照を除去する必要があります。', //'To ensure Database integrity, any reference should be further eliminated',
  605. 'UI:Delete:Consequence+' => 'What will be done',
  606. 'UI:Delete:SorryDeletionNotAllowed' => '申し訳ございません。このオブジェクトを削除する権限がありません。上述の詳細説明を参照してください。', //'Sorry, you are not allowed to delete this object, see the detailed explanations above',
  607. 'UI:Delete:PleaseDoTheManualOperations' => '本オブジェクトの削除を要求する前に、上記にリストされている操作を手動で行ってください。', //'Please perform the manual operations listed above prior to requesting the deletion of this object',
  608. 'UI:Delect:Confirm_Object' => '%1$sを削除しようとしています。確認してください。', //'Please confirm that you want to delete %1$s.',
  609. 'UI:Delect:Confirm_Count_ObjectsOf_Class' => '以下の%2$sクラスの%1$dオブジェクトを削除しようとしています。確認してください。', //'Please confirm that you want to delete the following %1$d objects of class %2$s.',
  610. 'UI:WelcomeToITop' => 'iTopへようこそ', //'Welcome to iTop',
  611. 'UI:DetailsPageTitle' => 'iTop - %1$s - %2$sの詳細', //'iTop - %1$s - %2$s details',
  612. 'UI:ErrorPageTitle' => 'iTop - エラー', //'iTop - Error',
  613. 'UI:ObjectDoesNotExist' => '申し訳ございません。このオブジェクトは既に存在しません。(あるいは参照する権限がありません。)', //'Sorry, this object does not exist (or you are not allowed to view it).',
  614. 'UI:SearchResultsPageTitle' => 'iTop - 検索結果', //'iTop - Search Results',
  615. 'UI:Search:NoSearch' => '検索するものがありません。', //'Nothing to search for',
  616. 'UI:FullTextSearchTitle_Text' => '"%1$s"の結果:', //'Results for "%1$s":',
  617. 'UI:Search:Count_ObjectsOf_Class_Found' => '%2$sクラスの%1$dオブジェクトが見つかりました。', //'%1$d object(s) of class %2$s found.',
  618. 'UI:Search:NoObjectFound' => 'オブジェクトが見つかりませんでした。', //'No object found.',
  619. 'UI:ModificationPageTitle_Object_Class' => 'iTop - %1$s - %2$s 修正???', //'iTop - %1$s - %2$s modification',
  620. 'UI:ModificationTitle_Class_Object' => '%1$sの修正: <span class=\"hilite\">%2$s</span>', //'Modification of %1$s: <span class=\"hilite\">%2$s</span>',
  621. 'UI:ClonePageTitle_Object_Class' => 'iTop - クローン%1$s - %2$s 修正???', //'iTop - Clone %1$s - %2$s modification',
  622. 'UI:CloneTitle_Class_Object' => '%1$sのクローン:<span class=\"hilite">%2$s</span>', //'Clone of %1$s: <span class=\"hilite\">%2$s</span>',
  623. 'UI:CreationPageTitle_Class' => 'iTop - 新規%1$sを生成', //'iTop - Creation of a new %1$s ',
  624. 'UI:CreationTitle_Class' => '新規%1$sの生成', //'Creation of a new %1$s',
  625. 'UI:SelectTheTypeOf_Class_ToCreate' => '生成する%1$sの型を選択', //'Select the type of %1$s to create:',
  626. 'UI:Class_Object_NotUpdated' => '変更は検出されませんでした。%1$sは修正されて<strong>いません</strong>', //'No change detected, %1$s (%2$s) has <strong>not</strong> been modified.',
  627. 'UI:Class_Object_Updated' => '%1$s (%2$s) は更新されました。', //'%1$s (%2$s) updated.',
  628. 'UI:BulkDeletePageTitle' => 'iTop - バルク削除', //'iTop - Bulk Delete',
  629. 'UI:BulkDeleteTitle' => '削除するオブジェクトを選択してください。', //'Select the objects you want to delete:',
  630. 'UI:PageTitle:ObjectCreated' => 'iTopオブジェクトが生成されました。', //'iTop Object Created.',
  631. 'UI:Title:Object_Of_Class_Created' => '%1$s - %2$s が生成されました。', //'%1$s - %2$s created.',
  632. 'UI:Apply_Stimulus_On_Object_In_State_ToTarget_State' => '状態%3$sにある%1$sを状態%4$s状態をターゲットに、オブジェクト:%2$sに適用します。', //'Applying %1$s on object: %2$s in state %3$s to target state: %4$s.',
  633. 'UI:ObjectCouldNotBeWritten' => 'そのオブジェクトは書き込みできません: %1$s', //'The object could not be written: %1$s',
  634. 'UI:PageTitle:FatalError' => 'iTop - 致命的エラー', // 'iTop - Fatal Error',
  635. 'UI:SystemIntrusion' => 'アクセスできません。権限のない操作を行おうとしています。', //'Access denied. You have trying to perform an operation that is not allowed for you.',
  636. 'UI:FatalErrorMessage' => '致命的エラー、iTopは処理を継続できません。', //'Fatal error, iTop cannot continue.',
  637. 'UI:Error_Details' => 'エラー:%1$s', //'Error: %1$s.',
  638. 'UI:PageTitle:ClassProjections' => 'iTop ユーザ管理', //'iTop user management - class projections',
  639. 'UI:PageTitle:ProfileProjections' => 'iTop ユーザ管理 - プロファイル立案', //'iTop user management - profile projections',
  640. 'UI:UserManagement:Class' => 'クラス', //'Class',
  641. 'UI:UserManagement:Class+' => 'オブジェクトのクラス', //'Class of objects',
  642. 'UI:UserManagement:ProjectedObject' => 'オブジェクト', //'Object',
  643. 'UI:UserManagement:ProjectedObject+' => 'Projected object',
  644. 'UI:UserManagement:AnyObject' => '* 任意 *', //'* any *',
  645. 'UI:UserManagement:User' => 'ユーザ', //'User',
  646. 'UI:UserManagement:User+' => 'User involved in the projection',
  647. 'UI:UserManagement:Profile' => 'プロファイル', //'Profile',
  648. 'UI:UserManagement:Profile+' => 'Profile in which the projection is specified',
  649. 'UI:UserManagement:Action:Read' => '読み込み', //'Read',
  650. 'UI:UserManagement:Action:Read+' => 'オブジェクトの読み込み/表示', //'Read/display objects',
  651. 'UI:UserManagement:Action:Modify' => '修正', //'Modify',
  652. 'UI:UserManagement:Action:Modify+' => 'オブジェクトの生成、編集(修正)', //'Create and edit (modify) objects',
  653. 'UI:UserManagement:Action:Delete' => '削除', //'Delete',
  654. 'UI:UserManagement:Action:Delete+' => 'オブジェクトの削除', //'Delete objects',
  655. 'UI:UserManagement:Action:BulkRead' => '一括読み出し(エクスポート)', //'Bulk Read (Export)',
  656. 'UI:UserManagement:Action:BulkRead+' => 'オブジェクトのリスト表示、もしくは一括エクスポート', // 'List objects or export massively',
  657. 'UI:UserManagement:Action:BulkModify' => '一括修正', // 'Bulk Modify',
  658. 'UI:UserManagement:Action:BulkModify+' => '一括生成/編集(CVSインポート)', //'Massively create/edit (CSV import)',
  659. 'UI:UserManagement:Action:BulkDelete' => '一括削除', //'Bulk Delete',
  660. 'UI:UserManagement:Action:BulkDelete+' => '複数オブジェクトをまとめて削除', //'Massively delete objects',
  661. 'UI:UserManagement:Action:Stimuli' => 'Stimuli',
  662. 'UI:UserManagement:Action:Stimuli+' => '許可されている(複合)アクション', //'Allowed (compound) actions',
  663. 'UI:UserManagement:Action' => 'アクション', // 'Action',
  664. 'UI:UserManagement:Action+' => 'ユーザが実行したアクション', // 'Action performed by the user',
  665. 'UI:UserManagement:TitleActions' => 'アクション', //'Actions',
  666. 'UI:UserManagement:Permission' => 'パーミッション', //'Permission',
  667. 'UI:UserManagement:Permission+' => 'ユーザのパーミッション', // 'User\'s permissions',
  668. 'UI:UserManagement:Attributes' => '属性', // 'Attributes',
  669. 'UI:UserManagement:ActionAllowed:Yes' => 'はい', //'Yes',
  670. 'UI:UserManagement:ActionAllowed:No' => 'いいえ', //'No',
  671. 'UI:UserManagement:AdminProfile+' => '管理者にはデータベース中の全てのオブジェクトに対する読み/書きの全権限が与えられます。', //'Administrators have full read/write access to all objects in the database.',
  672. 'UI:UserManagement:NoLifeCycleApplicable' => 'N/A',
  673. 'UI:UserManagement:NoLifeCycleApplicable+' => 'この暮らすにはライフサイクルは定義されていません。', //'No lifecycle has been defined for this class',
  674. 'UI:UserManagement:GrantMatrix' => '権限マトリクス', //'Grant Matrix',
  675. 'UI:UserManagement:LinkBetween_User_And_Profile' => '%1$s と %2$s間のリンク', //'Link between %1$s and %2$s',
  676. 'UI:UserManagement:LinkBetween_User_And_Org' => '%1$s と %2$s 間のリンク', // 'Link between %1$s and %2$s',
  677. 'Menu:AdminTools' => '管理ツール', //'Admin tools',
  678. 'Menu:AdminTools+' => '管理ツール', //'Administration tools',
  679. 'Menu:AdminTools?' => 'このツールは管理者プロファイルが設定されているユーザにのみアクセスが可能です。', //'Tools accessible only to users having the administrator profile',
  680. 'UI:ChangeManagementMenu' => '変更管理', //'Change Management',
  681. 'UI:ChangeManagementMenu+' => '変更管理', //'Change Management',
  682. 'UI:ChangeManagementMenu:Title' => '変更状況概観', //'Changes Overview',
  683. 'UI-ChangeManagementMenu-ChangesByType' => '型別変更内容', //'Changes by type',
  684. 'UI-ChangeManagementMenu-ChangesByStatus' => '状態別変更内容', //'Changes by status',
  685. 'UI-ChangeManagementMenu-ChangesByWorkgroup' => 'ワークグループ別変更内容', //'Changes by workgroup',
  686. 'UI-ChangeManagementMenu-ChangesNotYetAssigned' => 'まだアサインされていない変更', //'Changes not yet assigned',
  687. 'UI:ConfigurationItemsMenu'=> '設定項目', //'Configuration Items',
  688. 'UI:ConfigurationItemsMenu+'=> 'すべてのデバイス', //'All Devices',
  689. 'UI:ConfigurationItemsMenu:Title' => '設定項目概観', //'Configuration Items Overview',
  690. 'UI-ConfigurationItemsMenu-ServersByCriticity' => 'サーバ(by criticity)', // 'Servers by criticity',
  691. 'UI-ConfigurationItemsMenu-PCsByCriticity' => 'PC (by criticity)', // 'PCs by criticity',
  692. 'UI-ConfigurationItemsMenu-NWDevicesByCriticity' => 'ネットワークデバイス (by criticity)', // 'Network devices by criticity',
  693. 'UI-ConfigurationItemsMenu-ApplicationsByCriticity' => 'アプリケーション (by criticity)', // 'Applications by criticity',
  694. 'UI:ConfigurationManagementMenu' => 'コンフィグレーション管理', //'Configuration Management',
  695. 'UI:ConfigurationManagementMenu+' => 'コンフィグレーション管理', // 'Configuration Management',
  696. 'UI:ConfigurationManagementMenu:Title' => 'インフラストラクチャ概観', // 'Infrastructure Overview',
  697. 'UI-ConfigurationManagementMenu-InfraByType' => '型別インフラオブジェクト', // 'Infrastructure objects by type',
  698. 'UI-ConfigurationManagementMenu-InfraByStatus' => '状態別インフラオブジェクト', // 'Infrastructure objects by status',
  699. 'UI:ConfigMgmtMenuOverview:Title' => 'コンフィグレーション管理用ダッシュボード', // 'Dashboard for Configuration Management',
  700. 'UI-ConfigMgmtMenuOverview-FunctionalCIbyStatus' => '状態別コンフィグレーション項目', //'Configuration Items by status',
  701. 'UI-ConfigMgmtMenuOverview-FunctionalCIByType' => '型別コンフィグレーション項目', // 'Configuration Items by type',
  702. 'UI:RequestMgmtMenuOverview:Title' => 'リクエスト管理用ダッシュボード', // 'Dashboard for Request Management',
  703. 'UI-RequestManagementOverview-RequestByService' => 'サービス別ユーザリクエスト', //'User Requests by service',
  704. 'UI-RequestManagementOverview-RequestByPriority' => '優先度別ユーザリクエスト', // 'User Requests by priority',
  705. 'UI-RequestManagementOverview-RequestUnassigned' => 'エージェントへ未アサインのユーザリクエスト', // 'User Requests not yet assigned to an agent',
  706. 'UI:IncidentMgmtMenuOverview:Title' => 'インシデント管理用ダッシュボード', // 'Dashboard for Incident Management',
  707. 'UI-IncidentManagementOverview-IncidentByService' => 'サービス別インシデント', // 'Incidents by service',
  708. 'UI-IncidentManagementOverview-IncidentByPriority' => '優先度別インシデント', // 'Incidents by priority',
  709. 'UI-IncidentManagementOverview-IncidentUnassigned' => 'エージェントへ未アサインのインシデント', // 'Incidents not yet assigned to an agent',
  710. 'UI:ChangeMgmtMenuOverview:Title' => '変更管理用ダッシュボード', // 'Dashboard for Change Management',
  711. 'UI-ChangeManagementOverview-ChangeByType' => '型別変更内容', // 'Changes by type',
  712. 'UI-ChangeManagementOverview-ChangeUnassigned' => 'エージェントへ未アサインの変更内容', // 'Changes not yet assigned to an agent',
  713. 'UI-ChangeManagementOverview-ChangeWithOutage' => '変更すべき一時停止???', // 'Outages due to changes',
  714. 'UI:ServiceMgmtMenuOverview:Title' => 'サービス管理用ダッシュボード', // 'Dashboard for Service Management',
  715. 'UI-ServiceManagementOverview-CustomerContractToRenew' => '30日以内に契約更新が必要な顧客', // 'Customer contracts to be renewed in 30 days',
  716. 'UI-ServiceManagementOverview-ProviderContractToRenew' => '30日以内に契約更新が必要なプロバイダ', // 'Provider contracts to be renewed in 30 days',
  717. 'UI:ContactsMenu' => 'コンタクト', // 'Contacts',
  718. 'UI:ContactsMenu+' => 'コンタクト', // 'Contacts',
  719. 'UI:ContactsMenu:Title' => 'コンタクト概観', // 'Contacts Overview',
  720. 'UI-ContactsMenu-ContactsByLocation' => 'ロケーション別コンタクト', // 'Contacts by location',
  721. 'UI-ContactsMenu-ContactsByType' => 'タイプ別コンタクト', // 'Contacts by type',
  722. 'UI-ContactsMenu-ContactsByStatus' => '状態別コンタクト', //'Contacts by status',
  723. 'Menu:CSVImportMenu' => 'CSV インポート', // 'CSV import',
  724. 'Menu:CSVImportMenu+' => '一括生成/一括更新', //'Bulk creation or update',
  725. 'Menu:DataModelMenu' => 'データモデル', // 'Data Model',
  726. 'Menu:DataModelMenu+' => 'データモデル概観', // 'Overview of the Data Model',
  727. 'Menu:ExportMenu' => 'エクスポート', // 'Export',
  728. 'Menu:ExportMenu+' => '任意のクエリ結果をHTML、CSV、XMLでエクスポートする', // 'Export the results of any query in HTML, CSV or XML',
  729. 'Menu:NotificationsMenu' => 'ノーティフィケーション', // 'Notifications',
  730. 'Menu:NotificationsMenu+' => 'ノーティフィケーションの設定', // 'Configuration of the Notifications',
  731. 'UI:NotificationsMenu:Title' => '<span class="hilite">ノーティフィケーション</span>の設定', // 'Configuration of the <span class="hilite">Notifications</span>',
  732. 'UI:NotificationsMenu:Help' => 'ヘルプ', // 'Help'
  733. // 'UI:NotificationsMenu:HelpContent' => '<p>In iTop the notifications are fully customizable. They are based on two sets of objects: <i>triggers and actions</i>.</p>
  734. //<p><i><b>Triggers</b></i> define when a notification will be executed. There are 3 types of triggers for covering 3 differents phases of an object life cycle:
  735. //<ol>
  736. // <li>the "OnCreate" triggers get executed when an object of the specified class is created</li>
  737. // <li>the "OnStateEnter" triggers get executed before an object of the given class enters a specified state (coming from another state)</li>
  738. // <li>the "OnStateLeave" triggers get executed when an object of the given class is leaving a specified state</li>
  739. //</ol>
  740. //</p>
  741. //<p>
  742. //<i><b>Actions</b></i> define the actions to be performed when the triggers execute. For now there is only one kind of action consisting in sending an email message.
  743. //Such actions also define the template to be used for sending the email as well as the other parameters of the message like the recipients, importance, etc.
  744. //</p>
  745. //<p>A special page: <a href="../setup/email.test.php" target="_blank">email.test.php</a> is available for testing and troubleshooting your PHP mail configuration.</p>
  746. //<p>To be executed, actions must be associated to triggers.
  747. //When associated with a trigger, each action is given an "order" number, specifying in which order the actions are to be executed.</p>',
  748. 'UI:NotificationsMenu:HelpContent' => '<p>iTopでは、ノーティフィケーションはすべてカスタマイズが可能です。ノーティフィケーションは<i>トリガーとアクション</i>という二つのオブジェクトがベースになっています。
  749. <p><i><b>トリガー</b></i>は、あるノーティフィケーションがいつ実行されるのか、を定義する。トリガーは3つのタイプに分類され、オブジェクトライフサイクルにおける3つの異なるフェーズに対応する:
  750. <ol>
  751. <li>"onCreate"トリガーは、指定されたクラスのオブジェクトが生成されたときに実行される。</li>
  752. <li>"onStateEnter"トリガーは、指定されたクラスのオブジェクトが(他の状態から)指定された状態に入る前に実行される。</li>
  753. <li>"onStateLeave"トリガーは、指定されたクラスのオブジェクトが指定された状態から出る際に実行される。</li>
  754. </ol>
  755. </p>
  756. <p>
  757. <i><b>アクション</b></i>はトリガーが実行される際の動作を定義する。例えば今、「メールを送信する」という動作で構成されるたった1種類だけのアクションがあるとしよう。
  758. このようなアクションは、受信者、重要度といったメッセージに付随する他のパラメータと同様、メール送信に利用されるテンプレートも定義する。
  759. </p>
  760. <p>特別なページ: <a href="../setup/email.test.php" target="_blank">email.test.php</p>は、PHPのメール設定をテストしたりトラブルシュートするのに利用可能である。</p>
  761. <p>実行するには、アクションがトリガーに関連づけられている必要がある。
  762. トリガーに関連づけられると、各々のアクションは順番が与えられ、どの順序でそのアクションが実行されるかが指定される。</p>',
  763. 'UI:NotificationsMenu:Triggers' => 'トリガー', // 'Triggers',
  764. 'UI:NotificationsMenu:AvailableTriggers' => '実行可能トリガー', // 'Available triggers',
  765. 'UI:NotificationsMenu:OnCreate' => 'オブジェクトが生成された時', // 'When an object is created',
  766. 'UI:NotificationsMenu:OnStateEnter' => 'オブジェクトが指定状態に入った時', // 'When an object enters a given state',
  767. 'UI:NotificationsMenu:OnStateLeave' => 'オブジェクトが指定状態から出た時', // 'When an object leaves a given state',
  768. 'UI:NotificationsMenu:Actions' => 'アクション', // 'Actions',
  769. 'UI:NotificationsMenu:AvailableActions' => '実行可能アクション', // 'Available actions',
  770. 'Menu:AuditCategories' => '監査カテゴリ', // 'Audit Categories',
  771. 'Menu:AuditCategories+' => '監査カテゴリ', // 'Audit Categories',
  772. 'Menu:Notifications:Title' => '監査カテゴリ', // 'Audit Categories',
  773. 'Menu:RunQueriesMenu' => 'クエリ実行', // 'Run Queries',
  774. 'Menu:RunQueriesMenu+' => '任意のクエリを実行', // 'Run any query',
  775. 'Menu:DataAdministration' => 'データ管理', // 'Data administration',
  776. 'Menu:DataAdministration+' => 'データ管理', // 'Data administration',
  777. 'Menu:UniversalSearchMenu' => '全検索', // 'Universal Search',
  778. 'Menu:UniversalSearchMenu+' => '何か...を検索', // 'Search for anything...',
  779. 'Menu:ApplicationLogMenu' => 'Log de l\'application',
  780. 'Menu:ApplicationLogMenu+' => 'Log de l\'application',
  781. 'Menu:ApplicationLogMenu:Title' => 'Log de l\'application',
  782. 'Menu:UserManagementMenu' => 'ユーザ管理', // 'User Management',
  783. 'Menu:UserManagementMenu+' => 'ユーザ管理', // 'User management',
  784. 'Menu:ProfilesMenu' => 'プロファイル', // 'Profiles',
  785. 'Menu:ProfilesMenu+' => 'プロファイル', // 'Profiles',
  786. 'Menu:ProfilesMenu:Title' => 'プロファイル', // 'Profiles',
  787. 'Menu:UserAccountsMenu' => 'ユーザアカウント', // 'User Accounts',
  788. 'Menu:UserAccountsMenu+' => 'ユーザアカウント', // 'User Accounts',
  789. 'Menu:UserAccountsMenu:Title' => 'ユーザアカウント', // 'User Accounts',
  790. 'UI:iTopVersion:Short' => 'iTopバージョン%1$s', // 'iTop version %1$s',
  791. 'UI:iTopVersion:Long' => 'iTopバージョン%1$s-%2$s, %3$sビルド', // 'iTop version %1$s-%2$s built on %3$s',
  792. 'UI:PropertiesTab' => 'プロパティ', // 'Properties',
  793. 'UI:OpenDocumentInNewWindow_' => '新規ウィンドウで本ドキュメント: $1$sを開く', // 'Open this document in a new window: %1$s',
  794. 'UI:DownloadDocument_' => '本ドキュメント: $1$sをダウンロードする', // 'Download this document: %1$s',
  795. 'UI:Document:NoPreview' => 'このタイプのドキュメントはプレビューできません。', // 'No preview is available for this type of document',
  796. 'UI:DeadlineMissedBy_duration' => '%1$s によって消去されました。', // 'Missed by %1$s',
  797. 'UI:Deadline_LessThan1Min' => '1分以内', // '< 1 min',
  798. 'UI:Deadline_Minutes' => '%1$d 分', // '%1$d min',
  799. 'UI:Deadline_Hours_Minutes' => '%1$d時間%2$d分', // '%1$dh %2$dmin',
  800. 'UI:Deadline_Days_Hours_Minutes' => '%1$d日%2$d時間%3$d分', // '%1$dd %2$dh %3$dmin',
  801. 'UI:Help' => 'ヘルプ', // 'Help',
  802. 'UI:PasswordConfirm' => '(確認)', // '(Confirm)',
  803. 'UI:BeforeAdding_Class_ObjectsSaveThisObject' => '%1$sオブジェクトをさらに追加する前に、このオブジェクトを保存してください。', // 'Before adding more %1$s objects, save this object.',
  804. 'UI:DisplayThisMessageAtStartup' => '起動時にこのメッセージを表示する', // 'Display this message at startup',
  805. 'UI:RelationshipGraph' => 'グラフィカル表示', // 'Graphical view',
  806. 'UI:RelationshipList' => 'リスト', // 'List',
  807. 'UI:OperationCancelled' => '操作はキャンセルされました', // 'Operation Cancelled',
  808. 'Portal:Title' => 'iTopユーザポータル', // 'iTop user portal',
  809. 'Portal:Refresh' => '更新', // 'Refresh',
  810. 'Portal:Back' => '戻る', // 'Back',
  811. 'Portal:CreateNewRequest' => '新規リクエストを生成する', // 'Create a new request',
  812. 'Portal:ChangeMyPassword' => 'パスワードを変更する', // 'Change my password',
  813. 'Portal:Disconnect' => '切断する', // 'Disconnect',
  814. 'Portal:OpenRequests' => '発行済みリクエスト', // 'My open requests',
  815. 'Portal:ResolvedRequests' => '解決済みリクエスト', // 'My resolved requests',
  816. 'Portal:SelectService' => 'カタログからサービスを選択してください:', // 'Select a service from the catalog:',
  817. 'Portal:PleaseSelectOneService' => 'サービスを1つ選んでください', // 'Please select one service',
  818. 'Portal:SelectSubcategoryFrom_Service' => '本サービス:%1$sのサブカテゴリを選んでください', // 'Select a sub-category for the service %1$s:',
  819. 'Portal:PleaseSelectAServiceSubCategory' => 'サブカテゴリを1つ選んでください', // 'Please select one sub-category',
  820. 'Portal:DescriptionOfTheRequest' => 'あなたのリクエストの詳細を記入してください:', // 'Enter the description of your request:',
  821. 'Portal:TitleRequestDetailsFor_Request' => 'リクエスト%1$sの詳細:', // Details for request %1$s:',
  822. 'Portal:NoOpenRequest' => '本カテゴリにリクエストはありません', // 'No request in this category.',
  823. 'Portal:Button:CloseTicket' => '本チケットを閉じます。', // 'Close this ticket',
  824. 'Portal:EnterYourCommentsOnTicket' => '本チケットの解決について、コメントを入力してください。', // 'Enter your comments about the resolution of this ticket:',
  825. 'Portal:ErrorNoContactForThisUser' => 'エラー:現在のユーザはコンタクト/人物に関連づけられていません。管理者に問い合わせてください。', // 'Error: the current user is not associated with a Contact/Person. Please contact your administrator.',
  826. 'Portal:Attachments' => '添付', // 'Attachments',
  827. 'Portal:AddAttachment' => ' 添付を付加する ', // ' Add Attachment ',
  828. 'Portal:RemoveAttachment' => ' 添付を除去する ', // ' Remove Attachment ',
  829. 'Portal:Attachment_No_To_Ticket_Name' => '#%1$d を$2$s ($3$s)に添付する', // 'Attachment #%1$d to %2$s (%3$s)',
  830. 'Enum:Undefined' => '定義されていません', // 'Undefined',
  831. ));
  832. ?>