dictionary.itop.ui.php 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859
  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. * @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
  23. */
  24. //////////////////////////////////////////////////////////////////////
  25. // Classes in 'gui'
  26. //////////////////////////////////////////////////////////////////////
  27. //
  28. //
  29. // Class: menuNode
  30. //
  31. Dict::Add('EN US', 'English', 'English', array(
  32. 'Class:menuNode' => 'menuNode',
  33. 'Class:menuNode+' => 'Main menu configuration elements',
  34. 'Class:menuNode/Attribute:name' => 'Menu Name',
  35. 'Class:menuNode/Attribute:name+' => 'Short name for this menu',
  36. 'Class:menuNode/Attribute:label' => 'Menu Description',
  37. 'Class:menuNode/Attribute:label+' => 'Long description for this menu',
  38. 'Class:menuNode/Attribute:hyperlink' => 'Hyperlink',
  39. 'Class:menuNode/Attribute:hyperlink+' => 'Hyperlink to the page',
  40. 'Class:menuNode/Attribute:icon_path' => 'Menu Icon',
  41. 'Class:menuNode/Attribute:icon_path+' => 'Path to the icon o the menu',
  42. 'Class:menuNode/Attribute:template' => 'Template',
  43. 'Class:menuNode/Attribute:template+' => 'HTML template for the view',
  44. 'Class:menuNode/Attribute:type' => 'Type',
  45. 'Class:menuNode/Attribute:type+' => 'Type of menu',
  46. 'Class:menuNode/Attribute:type/Value:application' => 'application',
  47. 'Class:menuNode/Attribute:type/Value:application+' => 'application',
  48. 'Class:menuNode/Attribute:type/Value:user' => 'user',
  49. 'Class:menuNode/Attribute:type/Value:user+' => 'user',
  50. 'Class:menuNode/Attribute:type/Value:administrator' => 'administrator',
  51. 'Class:menuNode/Attribute:type/Value:administrator+' => 'administrator',
  52. 'Class:menuNode/Attribute:rank' => 'Display rank',
  53. 'Class:menuNode/Attribute:rank+' => 'Sort order for displaying the menu',
  54. 'Class:menuNode/Attribute:parent_id' => 'Parent Menu Item',
  55. 'Class:menuNode/Attribute:parent_id+' => 'Parent Menu Item',
  56. 'Class:menuNode/Attribute:parent_name' => 'Parent Menu Item',
  57. 'Class:menuNode/Attribute:parent_name+' => 'Parent Menu Item',
  58. 'Class:menuNode/Attribute:user_id' => 'Owner of the menu',
  59. 'Class:menuNode/Attribute:user_id+' => 'User who owns this menu (for user defined menus)',
  60. ));
  61. //////////////////////////////////////////////////////////////////////
  62. // Classes in 'application'
  63. //////////////////////////////////////////////////////////////////////
  64. //
  65. //
  66. // Class: AuditCategory
  67. //
  68. Dict::Add('EN US', 'English', 'English', array(
  69. 'Class:AuditCategory' => 'AuditCategory',
  70. 'Class:AuditCategory+' => 'A section inside the overall audit',
  71. 'Class:AuditCategory/Attribute:name' => 'Category Name',
  72. 'Class:AuditCategory/Attribute:name+' => 'Short name for this category',
  73. 'Class:AuditCategory/Attribute:description' => 'Audit Category Description',
  74. 'Class:AuditCategory/Attribute:description+' => 'Long description for this audit category',
  75. 'Class:AuditCategory/Attribute:definition_set' => 'Definition Set',
  76. 'Class:AuditCategory/Attribute:definition_set+' => 'OQL expression defining the set of objects to audit',
  77. ));
  78. //
  79. // Class: AuditRule
  80. //
  81. Dict::Add('EN US', 'English', 'English', array(
  82. 'Class:AuditRule' => 'AuditRule',
  83. 'Class:AuditRule+' => 'A rule to check for a given Audit category',
  84. 'Class:AuditRule/Attribute:name' => 'Rule Name',
  85. 'Class:AuditRule/Attribute:name+' => 'Short name for this rule',
  86. 'Class:AuditRule/Attribute:description' => 'Audit Rule Description',
  87. 'Class:AuditRule/Attribute:description+' => 'Long description for this audit rule',
  88. 'Class:AuditRule/Attribute:query' => 'Query to Run',
  89. 'Class:AuditRule/Attribute:query+' => 'The OQL expression to run',
  90. 'Class:AuditRule/Attribute:valid_flag' => 'Valid objects?',
  91. 'Class:AuditRule/Attribute:valid_flag+' => 'True if the rule returns the valid objects, false otherwise',
  92. 'Class:AuditRule/Attribute:valid_flag/Value:true' => 'true',
  93. 'Class:AuditRule/Attribute:valid_flag/Value:true+' => 'true',
  94. 'Class:AuditRule/Attribute:valid_flag/Value:false' => 'false',
  95. 'Class:AuditRule/Attribute:valid_flag/Value:false+' => 'false',
  96. 'Class:AuditRule/Attribute:category_id' => 'Category',
  97. 'Class:AuditRule/Attribute:category_id+' => 'The category for this rule',
  98. 'Class:AuditRule/Attribute:category_name' => 'Category',
  99. 'Class:AuditRule/Attribute:category_name+' => 'Name of the category for this rule',
  100. ));
  101. //////////////////////////////////////////////////////////////////////
  102. // Classes in 'addon/userrights'
  103. //////////////////////////////////////////////////////////////////////
  104. //
  105. //
  106. // Class: URP_Users
  107. //
  108. Dict::Add('EN US', 'English', 'English', array(
  109. 'Class:URP_Users' => 'user',
  110. 'Class:URP_Users+' => 'users and credentials',
  111. 'Class:URP_Users/Attribute:userid' => 'Contact (person)',
  112. 'Class:URP_Users/Attribute:userid+' => 'Personal details from the business data',
  113. 'Class:URP_Users/Attribute:last_name' => 'Last name',
  114. 'Class:URP_Users/Attribute:last_name+' => 'Name of the corresponding contact',
  115. 'Class:URP_Users/Attribute:first_name' => 'First name',
  116. 'Class:URP_Users/Attribute:first_name+' => 'First name of the corresponding contact',
  117. 'Class:URP_Users/Attribute:email' => 'Email',
  118. 'Class:URP_Users/Attribute:email+' => 'Email of the corresponding contact',
  119. 'Class:URP_Users/Attribute:login' => 'Login',
  120. 'Class:URP_Users/Attribute:login+' => 'user identification string',
  121. 'Class:URP_Users/Attribute:password' => 'Password',
  122. 'Class:URP_Users/Attribute:password+' => 'user authentication string',
  123. 'Class:URP_Users/Attribute:language' => 'Language',
  124. 'Class:URP_Users/Attribute:language+' => 'user language',
  125. 'Class:URP_Users/Attribute:language/Value:EN US' => 'English',
  126. 'Class:URP_Users/Attribute:language/Value:EN US+' => 'English U.S.',
  127. 'Class:URP_Users/Attribute:language/Value:FR FR' => 'French',
  128. 'Class:URP_Users/Attribute:language/Value:FR FR+' => 'FR FR',
  129. 'Class:URP_Users/Attribute:profiles' => 'Profiles',
  130. 'Class:URP_Users/Attribute:profiles+' => 'roles, granting rights for that person',
  131. ));
  132. //
  133. // Class: URP_Profiles
  134. //
  135. Dict::Add('EN US', 'English', 'English', array(
  136. 'Class:URP_Profiles' => 'profile',
  137. 'Class:URP_Profiles+' => 'usage profiles',
  138. 'Class:URP_Profiles/Attribute:name' => 'Name',
  139. 'Class:URP_Profiles/Attribute:name+' => 'label',
  140. 'Class:URP_Profiles/Attribute:description' => 'Description',
  141. 'Class:URP_Profiles/Attribute:description+' => 'one line description',
  142. 'Class:URP_Profiles/Attribute:users' => 'Users',
  143. 'Class:URP_Profiles/Attribute:users+' => 'persons having this role',
  144. ));
  145. //
  146. // Class: URP_Dimensions
  147. //
  148. Dict::Add('EN US', 'English', 'English', array(
  149. 'Class:URP_Dimensions' => 'dimension',
  150. 'Class:URP_Dimensions+' => 'application dimension (defining silos)',
  151. 'Class:URP_Dimensions/Attribute:name' => 'Name',
  152. 'Class:URP_Dimensions/Attribute:name+' => 'label',
  153. 'Class:URP_Dimensions/Attribute:description' => 'Description',
  154. 'Class:URP_Dimensions/Attribute:description+' => 'one line description',
  155. 'Class:URP_Dimensions/Attribute:type' => 'Type',
  156. 'Class:URP_Dimensions/Attribute:type+' => 'class name or data type (projection unit)',
  157. ));
  158. //
  159. // Class: URP_UserProfile
  160. //
  161. Dict::Add('EN US', 'English', 'English', array(
  162. 'Class:URP_UserProfile' => 'User to profile',
  163. 'Class:URP_UserProfile+' => 'user profiles',
  164. 'Class:URP_UserProfile/Attribute:userid' => 'User',
  165. 'Class:URP_UserProfile/Attribute:userid+' => 'user account',
  166. 'Class:URP_UserProfile/Attribute:userlogin' => 'Login',
  167. 'Class:URP_UserProfile/Attribute:userlogin+' => 'User\'s login',
  168. 'Class:URP_UserProfile/Attribute:profileid' => 'Profile',
  169. 'Class:URP_UserProfile/Attribute:profileid+' => 'usage profile',
  170. 'Class:URP_UserProfile/Attribute:profile' => 'Profile',
  171. 'Class:URP_UserProfile/Attribute:profile+' => 'Profile name',
  172. 'Class:URP_UserProfile/Attribute:reason' => 'Reason',
  173. 'Class:URP_UserProfile/Attribute:reason+' => 'explain why this person may have this role',
  174. ));
  175. //
  176. // Class: URP_ProfileProjection
  177. //
  178. Dict::Add('EN US', 'English', 'English', array(
  179. 'Class:URP_ProfileProjection' => 'profile_projection',
  180. 'Class:URP_ProfileProjection+' => 'profile projections',
  181. 'Class:URP_ProfileProjection/Attribute:dimensionid' => 'Dimension',
  182. 'Class:URP_ProfileProjection/Attribute:dimensionid+' => 'application dimension',
  183. 'Class:URP_ProfileProjection/Attribute:dimension' => 'Dimension',
  184. 'Class:URP_ProfileProjection/Attribute:dimension+' => 'application dimension',
  185. 'Class:URP_ProfileProjection/Attribute:profileid' => 'Profile',
  186. 'Class:URP_ProfileProjection/Attribute:profileid+' => 'usage profile',
  187. 'Class:URP_ProfileProjection/Attribute:profile' => 'Profile',
  188. 'Class:URP_ProfileProjection/Attribute:profile+' => 'Profile name',
  189. 'Class:URP_ProfileProjection/Attribute:value' => 'Value expression',
  190. 'Class:URP_ProfileProjection/Attribute:value+' => 'OQL expression (using $user) | constant | | +attribute code',
  191. 'Class:URP_ProfileProjection/Attribute:attribute' => 'Attribute',
  192. 'Class:URP_ProfileProjection/Attribute:attribute+' => 'Target attribute code (optional)',
  193. ));
  194. //
  195. // Class: URP_ClassProjection
  196. //
  197. Dict::Add('EN US', 'English', 'English', array(
  198. 'Class:URP_ClassProjection' => 'class_projection',
  199. 'Class:URP_ClassProjection+' => 'class projections',
  200. 'Class:URP_ClassProjection/Attribute:dimensionid' => 'Dimension',
  201. 'Class:URP_ClassProjection/Attribute:dimensionid+' => 'application dimension',
  202. 'Class:URP_ClassProjection/Attribute:dimension' => 'Dimension',
  203. 'Class:URP_ClassProjection/Attribute:dimension+' => 'application dimension',
  204. 'Class:URP_ClassProjection/Attribute:class' => 'Class',
  205. 'Class:URP_ClassProjection/Attribute:class+' => 'Target class',
  206. 'Class:URP_ClassProjection/Attribute:value' => 'Value expression',
  207. 'Class:URP_ClassProjection/Attribute:value+' => 'OQL expression (using $this) | constant | | +attribute code',
  208. 'Class:URP_ClassProjection/Attribute:attribute' => 'Attribute',
  209. 'Class:URP_ClassProjection/Attribute:attribute+' => 'Target attribute code (optional)',
  210. ));
  211. //
  212. // Class: URP_ActionGrant
  213. //
  214. Dict::Add('EN US', 'English', 'English', array(
  215. 'Class:URP_ActionGrant' => 'action_permission',
  216. 'Class:URP_ActionGrant+' => 'permissions on classes',
  217. 'Class:URP_ActionGrant/Attribute:profileid' => 'Profile',
  218. 'Class:URP_ActionGrant/Attribute:profileid+' => 'usage profile',
  219. 'Class:URP_ActionGrant/Attribute:profile' => 'Profile',
  220. 'Class:URP_ActionGrant/Attribute:profile+' => 'usage profile',
  221. 'Class:URP_ActionGrant/Attribute:class' => 'Class',
  222. 'Class:URP_ActionGrant/Attribute:class+' => 'Target class',
  223. 'Class:URP_ActionGrant/Attribute:permission' => 'Permission',
  224. 'Class:URP_ActionGrant/Attribute:permission+' => 'allowed or not allowed?',
  225. 'Class:URP_ActionGrant/Attribute:permission/Value:yes' => 'yes',
  226. 'Class:URP_ActionGrant/Attribute:permission/Value:yes+' => 'yes',
  227. 'Class:URP_ActionGrant/Attribute:permission/Value:no' => 'no',
  228. 'Class:URP_ActionGrant/Attribute:permission/Value:no+' => 'no',
  229. 'Class:URP_ActionGrant/Attribute:action' => 'Action',
  230. 'Class:URP_ActionGrant/Attribute:action+' => 'operations to perform on the given class',
  231. ));
  232. //
  233. // Class: URP_StimulusGrant
  234. //
  235. Dict::Add('EN US', 'English', 'English', array(
  236. 'Class:URP_StimulusGrant' => 'stimulus_permission',
  237. 'Class:URP_StimulusGrant+' => 'permissions on stimilus in the life cycle of the object',
  238. 'Class:URP_StimulusGrant/Attribute:profileid' => 'Profile',
  239. 'Class:URP_StimulusGrant/Attribute:profileid+' => 'usage profile',
  240. 'Class:URP_StimulusGrant/Attribute:profile' => 'Profile',
  241. 'Class:URP_StimulusGrant/Attribute:profile+' => 'usage profile',
  242. 'Class:URP_StimulusGrant/Attribute:class' => 'Class',
  243. 'Class:URP_StimulusGrant/Attribute:class+' => 'Target class',
  244. 'Class:URP_StimulusGrant/Attribute:permission' => 'Permission',
  245. 'Class:URP_StimulusGrant/Attribute:permission+' => 'allowed or not allowed?',
  246. 'Class:URP_StimulusGrant/Attribute:permission/Value:yes' => 'yes',
  247. 'Class:URP_StimulusGrant/Attribute:permission/Value:yes+' => 'yes',
  248. 'Class:URP_StimulusGrant/Attribute:permission/Value:no' => 'no',
  249. 'Class:URP_StimulusGrant/Attribute:permission/Value:no+' => 'no',
  250. 'Class:URP_StimulusGrant/Attribute:stimulus' => 'Stimulus',
  251. 'Class:URP_StimulusGrant/Attribute:stimulus+' => 'stimulus code',
  252. ));
  253. //
  254. // Class: URP_AttributeGrant
  255. //
  256. Dict::Add('EN US', 'English', 'English', array(
  257. 'Class:URP_AttributeGrant' => 'attribute_permission',
  258. 'Class:URP_AttributeGrant+' => 'permissions at the attributes level',
  259. 'Class:URP_AttributeGrant/Attribute:actiongrantid' => 'Action grant',
  260. 'Class:URP_AttributeGrant/Attribute:actiongrantid+' => 'action grant',
  261. 'Class:URP_AttributeGrant/Attribute:attcode' => 'Attribute',
  262. 'Class:URP_AttributeGrant/Attribute:attcode+' => 'attribute code',
  263. ));
  264. //
  265. // String from the User Interface: menu, messages, buttons, etc...
  266. //
  267. Dict::Add('EN US', 'English', 'English', array(
  268. 'UI:WelcomeMenu' => 'Welcome',
  269. 'UI:WelcomeMenu+' => 'Welcome to iTop',
  270. 'UI:WelcomeMenu:Title' => 'Welcome to iTop',
  271. 'UI:WelcomeMenu:LeftBlock' => '<p>iTop is a complete, OpenSource, IT Operational Portal.</p>
  272. <ul>It includes:
  273. <li>A complete CMDB (Configuration management database) to document and manage the IT inventory.</li>
  274. <li>An Incident management module to track and communicate about all issues occurring in the IT.</li>
  275. <li>A change management module to plan and track the changes to the IT environment.</li>
  276. <li>A known error database to speed up the resolution of incidents.</li>
  277. <li>An outage module to document all planned outages and notify the appropriate contacts.</li>
  278. <li>Dashboards to quickly get an overview of your IT.</li>
  279. </ul>
  280. <p>All the modules can be setup, step by step, indepently of each other.</p>',
  281. 'UI:WelcomeMenu:RightBlock' => '<p>iTop is service provider oriented, it allows IT engineers to manage easily multiple customers or organizations.
  282. <ul>iTop, delivers a feature-rich set of business processes that:
  283. <li>Enhances IT management effectiveness</li>
  284. <li>Drives IT operations performance</li>
  285. <li>Improves customer satisfaction and provides executives with insights into business performance.</li>
  286. </ul>
  287. </p>
  288. <p>iTop is completely opened to be integrated within your current IT Management infrastructure.</p>
  289. <p>
  290. <ul>Adopting this new generation of IT Operational portal will help you to:
  291. <li>Better manage a more and more complex IT environment.</li>
  292. <li>Implement ITIL processes at your own pace.</li>
  293. <li>Manage the most important asset of your IT: Documentation.</li>
  294. </ul>
  295. </p>',
  296. 'UI:WelcomeMenu:MyCalls' => 'My Service Calls',
  297. 'UI:WelcomeMenu:MyIncidents' => 'My Incidents',
  298. 'UI:AllOrganizations' => ' All Organizations ',
  299. 'UI:YourSearch' => 'Your Search',
  300. 'UI:LoggedAsMessage' => 'Logged in as %1$s',
  301. 'UI:LoggedAsMessage+Admin' => 'Logged in as %1$s (Administrator)',
  302. 'UI:Button:Logoff' => 'Log off',
  303. 'UI:Button:GlobalSearch' => 'Search',
  304. 'UI:Button:Search' => ' Search ',
  305. 'UI:Button:Query' => ' Query ',
  306. 'UI:Button:Ok' => 'Ok',
  307. 'UI:Button:Cancel' => 'Cancel',
  308. 'UI:Button:Apply' => 'Apply',
  309. 'UI:Button:Back' => ' << Back ',
  310. 'UI:Button:Next' => ' Next >> ',
  311. 'UI:Button:Finish' => ' Finish ',
  312. 'UI:Button:DoImport' => ' Run the Import ! ',
  313. 'UI:Button:Done' => ' Done ',
  314. 'UI:Button:SimulateImport' => ' Simulate the Import ',
  315. 'UI:Button:Test' => 'Test!',
  316. 'UI:Button:Evaluate' => ' Evaluate ',
  317. 'UI:Button:AddObject' => ' Add... ',
  318. 'UI:Button:BrowseObjects' => ' Browse... ',
  319. 'UI:Button:Add' => ' Add ',
  320. 'UI:Button:AddToList' => ' << Add ',
  321. 'UI:Button:RemoveFromList' => ' Remove >> ',
  322. 'UI:Button:FilterList' => ' Filter... ',
  323. 'UI:Button:Delete' => 'Delete ! ',
  324. 'UI:SearchToggle' => 'Search',
  325. 'UI:ClickToCreateNew' => 'Click here to create a new %1$s',
  326. 'UI:NoObjectToDisplay' => 'No object to display.',
  327. 'UI:Error:MandatoryTemplateParameter_object_id' => 'Parameter object_id is mandatory when link_attr is specified. Check the definition of the display template.',
  328. 'UI:Error:MandatoryTemplateParameter_target_attr' => 'Parameter target_attr is mandatory when link_attr is specified. Check the definition of the display template.',
  329. 'UI:Error:MandatoryTemplateParameter_group_by' => 'Parameter group_by is mandatory. Check the definition of the display template.',
  330. 'UI:Error:InvalidGroupByFields' => 'Invalid list of fields to group by: "%1$s".',
  331. 'UI:Error:UnsupportedStyleOfBlock' => 'Error: unsupported style of block: "%1$s".',
  332. 'UI:Error:IncorrectLinkDefinition_LinkedClass_Class' => 'Incorrect link definition: the class of objects to manage: %1$s was not found as an external key in the class %2$s',
  333. 'UI:Error:Object_Class_Id_NotFound' => 'Object: %1$s:%2$d not found.',
  334. 'UI:Error:WizardCircularReferenceInDependencies' => 'Error: Circular reference in the dependencies between the fields, check the data model.',
  335. 'UI:Error:UploadedFileTooBig' => 'Uploaded file is too big. (Max allowed size is %1$s. Check you PHP configuration for upload_max_filesize.',
  336. 'UI:Error:UploadedFileTruncated.' => 'Uploaded file has been truncated !',
  337. 'UI:Error:NoTmpDir' => 'The temporary directory is not defined.',
  338. 'UI:Error:CannotWriteToTmp_Dir' => 'Unable to write the temporary file to the disk. upload_tmp_dir = "%1$s".',
  339. 'UI:Error:UploadStoppedByExtension_FileName' => 'Upload stopped by extension. (Original file name = "%1$s").',
  340. 'UI:Error:UploadFailedUnknownCause_Code' => 'File upload failed, unknown cause. (Error code = "%1$s").',
  341. 'UI:Error:1ParametersMissing' => 'Error: the following parameter must be specified for this operation: %1$s.',
  342. 'UI:Error:2ParametersMissing' => 'Error: the following parameters must be specified for this operation: %1$s and %2$s.',
  343. 'UI:Error:3ParametersMissing' => 'Error: the following parameters must be specified for this operation: %1$s, %2$s and %3$s.',
  344. 'UI:Error:4ParametersMissing' => 'Error: the following parameters must be specified for this operation: %1$s, %2$s, %3$s and %4$s.',
  345. 'UI:Error:IncorrectOQLQuery_Message' => 'Error: incorrect OQL query: %1$s',
  346. 'UI:Error:AnErrorOccuredWhileRunningTheQuery_Message' => 'An error occured while running the query: %1$s',
  347. 'UI:Error:ObjectAlreadyUpdated' => 'Error: the object has already been updated.',
  348. 'UI:Error:ObjectCannotBeUpdated' => 'Error: object cannot be updated.',
  349. 'UI:Error:ObjectsAlreadyDeleted' => 'Error: objects have already been deleted!',
  350. 'UI:Error:BulkDeleteNotAllowedOn_Class' => 'You are not allowed to perform a bulk delete of objects of class %1$s',
  351. 'UI:Error:DeleteNotAllowedOn_Class' => 'You are not allowed to delete objects of class %1$s',
  352. 'UI:Error:ObjectAlreadyCloned' => 'Error: the object has already been cloned!',
  353. 'UI:Error:ObjectAlreadyCreated' => 'Error: the object has laready been created!',
  354. 'UI:Error:Invalid_Stimulus_On_Object_In_State' => 'Error: invalid stimulus "%1$s" on object %2$s in state "%3$s".',
  355. 'UI:GroupBy:Count' => 'Count',
  356. 'UI:GroupBy:Count+' => 'Number of elements',
  357. 'UI:CountOfObjects' => '%1$d objects matching the criteria.',
  358. 'UI:NoObject_Class_ToDisplay' => 'No %1$s to display',
  359. 'UI:History:LastModified_On_By' => 'Last modified on %1$s by %2$s.',
  360. 'UI:History:Date' => 'Date',
  361. 'UI:History:Date+' => 'Date of the change',
  362. 'UI:History:User' => 'User',
  363. 'UI:History:User+' => 'User who made the change',
  364. 'UI:History:Changes' => 'Changes',
  365. 'UI:History:Changes+' => 'Changes made to the object',
  366. 'UI:Loading' => 'Loading...',
  367. 'UI:Menu:Actions' => 'Actions',
  368. 'UI:Menu:New' => 'New...',
  369. 'UI:Menu:Add' => 'Add...',
  370. 'UI:Menu:Manage' => 'Manage...',
  371. 'UI:Menu:EMail' => 'eMail',
  372. 'UI:Menu:CSVExport' => 'CSV Export',
  373. 'UI:Menu:Modify' => 'Modify...',
  374. 'UI:Menu:Delete' => 'Delete...',
  375. 'UI:Menu:Manage' => 'Manage...',
  376. 'UI:Menu:BulkDelete' => 'Delete...',
  377. 'UI:UndefinedObject' => 'undefined',
  378. 'UI:Document:OpenInNewWindow:Download' => 'Open in new window: %1$s, Download: %2$s',
  379. 'UI:SelectAllToggle+' => 'Select / Deselect All',
  380. 'UI:ClickToDisplay+' => 'Click to display',
  381. 'UI:TruncatedResults' => '%1$d objects displayed out of %2$d',
  382. 'UI:DisplayAll' => 'Display All',
  383. 'UI:CountOfResults' => '%1$d object(s)',
  384. 'UI:ChangesLogTitle' => 'Changes log (%1$d):',
  385. 'UI:EmptyChangesLogTitle' => 'Changes log is empty',
  386. 'UI:SearchFor_Class_Objects' => 'Search for %1$s Objects',
  387. 'UI:OQLQueryBuilderTitle' => 'OQL Query Builder',
  388. 'UI:OQLQueryTab' => 'OQL Query',
  389. 'UI:SimpleSearchTab' => 'Simple Search',
  390. 'UI:Details+' => 'Details',
  391. 'UI:SearchValue:Any' => '* Any *',
  392. 'UI:SearchValue:Mixed' => '* mixed *',
  393. 'UI:SelectOne' => '-- select one --',
  394. 'UI:Login:Welcome' => 'Welcome to iTop!',
  395. 'UI:Login:IncorrectLoginPassword' => 'Incorrect login/password, please try again.',
  396. 'UI:Login:IdentifyYourself' => 'Identify yourself before continuing',
  397. 'UI:Login:UserNamePrompt' => 'User Name',
  398. 'UI:Login:PasswordPrompt' => 'Password',
  399. 'UI:Button:Login' => 'Enter iTop',
  400. 'UI:Login:Error:AccessRestricted' => 'iTop access is restricted. Please, contact an iTop administrator.',
  401. 'UI:CSVImport:MappingSelectOne' => '-- select one --',
  402. 'UI:CSVImport:MappingNotApplicable' => '------ n/a ------',
  403. 'UI:CSVImport:NoData' => 'Empty data set..., please provide some data!',
  404. 'UI:Title:DataPreview' => 'Data Preview',
  405. 'UI:CSVImport:ErrorOnlyOneColumn' => 'Error: The data contains only one column. Did you select the appropriate separator character?',
  406. 'UI:CSVImport:FieldName' => 'Field %1$d',
  407. 'UI:CSVImport:DataLine1' => 'Data Line 1',
  408. 'UI:CSVImport:DataLine2' => 'Data Line 2',
  409. 'UI:CSVImport:idField' => 'id (Primary Key)',
  410. 'UI:Title:BulkImport' => 'iTop - Bulk import',
  411. 'UI:Title:BulkImport+' => 'CSV Import Wizard',
  412. 'UI:CSVImport:ClassesSelectOne' => '-- select one --',
  413. 'UI:CSVImport:ErrorExtendedAttCode' => 'Internal error: "%1$s" is an incorrect code because "%2$s" is NOT an external key of the class "%3$s"',
  414. 'UI:CSVImport:ObjectsWillStayUnchanged' => '%1$d objects(s) will stay unchanged.',
  415. 'UI:CSVImport:ObjectsWillBeModified' => '%1$d objects(s) will stay be modified.',
  416. 'UI:CSVImport:ObjectsWillBeAdded' => '%1$d objects(s) will be added.',
  417. 'UI:CSVImport:ObjectsWillHaveErrors' => '%1$d objects(s) will have errors.',
  418. 'UI:CSVImport:ObjectsRemainedUnchanged' => '%1$d objects(s) remained unchanged.',
  419. 'UI:CSVImport:ObjectsWereModified' => '%1$d objects(s) were modified.',
  420. 'UI:CSVImport:ObjectsWereAdded' => '%1$d objects(s) were added.',
  421. 'UI:CSVImport:ObjectsAddErrors' => '%1$d objects(s) had errors.',
  422. 'UI:Title:CSVImportStep2' => 'Step 2 of 5: CSV data options',
  423. 'UI:Title:CSVImportStep3' => 'Step 3 of 5: Data mapping',
  424. 'UI:Title:CSVImportStep4' => 'Step 4 of 5: Import simulation',
  425. 'UI:Title:CSVImportStep5' => 'Step 5 of 5: Import completed',
  426. 'UI:CSVImport:LinesNotImported' => 'Lines that could not be loaded:',
  427. 'UI:CSVImport:LinesNotImported+' => 'The following lines have not been imported because they contain errors',
  428. 'UI:CSVImport:SeparatorComma+' => ', (comma)',
  429. 'UI:CSVImport:SeparatorSemicolon+' => '; (semicolon)',
  430. 'UI:CSVImport:SeparatorTab+' => 'tab',
  431. 'UI:CSVImport:SeparatorOther' => 'other:',
  432. 'UI:CSVImport:QualifierDoubleQuote+' => '" (double quote)',
  433. 'UI:CSVImport:QualifierSimpleQuote+' => '\' (simple quote)',
  434. 'UI:CSVImport:QualifierOther' => 'other:',
  435. 'UI:CSVImport:TreatFirstLineAsHeader' => 'Treat the first line as a header (column names)',
  436. 'UI:CSVImport:Skip_N_LinesAtTheBeginning' => 'Skip %1$s line(s) at the beginning of the file',
  437. 'UI:CSVImport:CSVDataPreview' => 'CSV Data Preview',
  438. 'UI:CSVImport:SelectFile' => 'Select the file to import:',
  439. 'UI:CSVImport:Tab:LoadFromFile' => 'Load from a file',
  440. 'UI:CSVImport:Tab:CopyPaste' => 'Copy and paste data',
  441. 'UI:CSVImport:Tab:Templates' => 'Templates',
  442. 'UI:CSVImport:PasteData' => 'Paste the data to import:',
  443. 'UI:CSVImport:PickClassForTemplate' => 'Pick the template to download: ',
  444. 'UI:CSVImport:SeparatorCharacter' => 'Separator character:',
  445. 'UI:CSVImport:TextQualifierCharacter' => 'Text qualifier character',
  446. 'UI:CSVImport:CommentsAndHeader' => 'Comments and header',
  447. 'UI:CSVImport:SelectClass' => 'Select the class to import:',
  448. 'UI:CSVImport:AdvancedMode' => 'Advanced mode',
  449. 'UI:CSVImport:AdvancedMode+' => 'In advanced mode the "id" (primary key) of the objects can be used to update and rename objects.' .
  450. 'However the column "id" (if present) can only be used as a search criteria and can not be combined with any other search criteria.',
  451. 'UI:CSVImport:SelectAClassFirst' => 'To configure the mapping, select a class first.',
  452. 'UI:CSVImport:HeaderFields' => 'Fields',
  453. 'UI:CSVImport:HeaderMappings' => 'Mappings',
  454. 'UI:CSVImport:HeaderSearch' => 'Search?',
  455. 'UI:CSVImport:AlertIncompleteMapping' => 'Please select a mapping for every field.',
  456. 'UI:CSVImport:AlertNoSearchCriteria' => 'Please select at least one search criteria',
  457. 'UI:UniversalSearchTitle' => 'iTop - Universal Search',
  458. 'UI:UniversalSearch:Error' => 'Error: %1$s',
  459. 'UI:UniversalSearch:LabelSelectTheClass' => 'Select the class to search: ',
  460. 'UI:Audit:Title' => 'iTop - CMDB Audit',
  461. 'UI:Audit:InteractiveAudit' => 'Interactive Audit',
  462. 'UI:Audit:HeaderAuditRule' => 'Audit Rule',
  463. 'UI:Audit:HeaderNbObjects' => '# Objects',
  464. 'UI:Audit:HeaderNbErrors' => '# Errors',
  465. 'UI:Audit:PercentageOk' => '% Ok',
  466. 'UI:RunQuery:Title' => 'iTop - OQL Query Evaluation',
  467. 'UI:RunQuery:QueryExamples' => 'Query Examples',
  468. 'UI:RunQuery:HeaderPurpose' => 'Purpose',
  469. 'UI:RunQuery:HeaderPurpose+' => 'Explanation about the query',
  470. 'UI:RunQuery:HeaderOQLExpression' => 'OQL Expression',
  471. 'UI:RunQuery:HeaderOQLExpression+' => 'The query in OQL syntax',
  472. 'UI:RunQuery:ExpressionToEvaluate' => 'Expression to evaluate: ',
  473. 'UI:RunQuery:MoreInfo' => 'More information about the query: ',
  474. 'UI:RunQuery:DevelopedQuery' => 'Redevelopped query expression: ',
  475. 'UI:RunQuery:SerializedFilter' => 'Serialized filter: ',
  476. 'UI:RunQuery:Error' => 'An error occured while running the query: %1$s',
  477. 'UI:Schema:Title' => 'iTop objects schema',
  478. 'UI:Schema:CategoryMenuItem' => 'Category <b>%1$s</b>',
  479. 'UI:Schema:Relationships' => 'Relationships',
  480. 'UI:Schema:AbstractClass' => 'Abstract class: no object from this class can be instantiated.',
  481. 'UI:Schema:NonAbstractClass' => 'Non abstract class: objects from this class can be instantiated.',
  482. 'UI:Schema:ClassHierarchyTitle' => 'Class hierarchy',
  483. 'UI:Schema:AllClasses' => 'All classes',
  484. 'UI:Schema:ExternalKey_To' => 'External key to %1$s',
  485. 'UI:Schema:Columns_Description' => 'Columns: <em>%1$s</em>',
  486. 'UI:Schema:Default_Description' => 'Default: "%1$s"',
  487. 'UI:Schema:NullAllowed' => 'Null Allowed',
  488. 'UI:Schema:NullNotAllowed' => 'Null NOT Allowed',
  489. 'UI:Schema:Attributes' => 'Attributes',
  490. 'UI:Schema:AttributeCode' => 'Attribute Code',
  491. 'UI:Schema:AttributeCode+' => 'Internal code of the attribute',
  492. 'UI:Schema:Label' => 'Label',
  493. 'UI:Schema:Label+' => 'Label of the attribute',
  494. 'UI:Schema:Type' => 'Type',
  495. 'UI:Schema:Type+' => 'Data type of the attribute',
  496. 'UI:Schema:Origin' => 'Origin',
  497. 'UI:Schema:Origin+' => 'The base class in which this attribute is defined',
  498. 'UI:Schema:Description' => 'Description',
  499. 'UI:Schema:Description+' => 'Description of the attribute',
  500. 'UI:Schema:AllowedValues' => 'Allowed values',
  501. 'UI:Schema:AllowedValues+' => 'Restrictions on the possible values for this attribute',
  502. 'UI:Schema:MoreInfo' => 'More info',
  503. 'UI:Schema:MoreInfo+' => 'More information about the field defined in the database',
  504. 'UI:Schema:SearchCriteria' => 'Search criteria',
  505. 'UI:Schema:FilterCode' => 'Filter code',
  506. 'UI:Schema:FilterCode+' => 'Code of this search criteria',
  507. 'UI:Schema:FilterDescription' => 'Description',
  508. 'UI:Schema:FilterDescription+' => 'Description of this search criteria',
  509. 'UI:Schema:AvailOperators' => 'Available operators',
  510. 'UI:Schema:AvailOperators+' => 'Possible operators for this search criteria',
  511. 'UI:Schema:ChildClasses' => 'Child classes',
  512. 'UI:Schema:ReferencingClasses' => 'Referencing classes',
  513. 'UI:Schema:RelatedClasses' => 'Related classes',
  514. 'UI:Schema:LifeCycle' => 'Life cycle',
  515. 'UI:Schema:Triggers' => 'Triggers',
  516. 'UI:Schema:Relation_Code_Description' => 'Relation <em>%1$s</em> (%2$s)',
  517. 'UI:Schema:RelationDown_Description' => 'Down: %1$s',
  518. 'UI:Schema:RelationUp_Description' => 'Up: %1$s',
  519. 'UI:Schema:RelationPropagates' => '%1$s: propagate to %2$d levels, query: %3$s',
  520. 'UI:Schema:RelationDoesNotPropagate' => '%1$s: does not propagates (%2$d levels), query: %3$s',
  521. 'UI:Schema:Class_ReferencingClasses_From_By' => '%1$s is referenced by the class %2$s via the field %3$s',
  522. 'UI:Schema:Class_IsLinkedTo_Class_Via_ClassAndAttribute' => '%1$s is linked to %2$s via %3$s::<em>%4$s</em>',
  523. 'UI:Schema:Links:1-n' => 'Classes pointing to %1$s (1:n links):',
  524. 'UI:Schema:Links:n-n' => 'Classes linked to %1$s (n:n links):',
  525. 'UI:Schema:Links:All' => 'Graph of all related classes',
  526. 'UI:Schema:NoLifeCyle' => 'There is no life cycle defined for this class.',
  527. 'UI:Schema:LifeCycleTransitions' => 'Transitions',
  528. 'UI:Schema:LifeCyleAttributeOptions' => 'Attribute options',
  529. 'UI:Schema:LifeCycleHiddenAttribute' => 'Hidden',
  530. 'UI:Schema:LifeCycleReadOnlyAttribute' => 'Read-only',
  531. 'UI:Schema:LifeCycleMandatoryAttribute' => 'Mandatory',
  532. 'UI:Schema:LifeCycleAttributeMustChange' => 'Must change',
  533. 'UI:Schema:LifeCycleAttributeMustPrompt' => 'User will be prompted to change the value',
  534. 'UI:Schema:LifeCycleEmptyList' => 'empty list',
  535. 'UI:LinksWidget:Autocomplete+' => 'Type the first 3 characters...',
  536. 'UI:Combo:SelectValue' => '--- select a value ---',
  537. 'UI:Label:SelectedObjects' => 'Selected objects: ',
  538. 'UI:Label:AvailableObjects' => 'Available objects: ',
  539. 'UI:Link_Class_Attributes' => '%1$s attributes',
  540. 'UI:SelectAllToggle+' => 'Select All / Deselect All',
  541. 'UI:AddObjectsOf_Class_LinkedWith_Class_Instance' => 'Add %1$s objects linked with %2$s: %3$s',
  542. 'UI:ManageObjectsOf_Class_LinkedWith_Class_Instance' => 'Manage %1$s objects linked with %2$s: %3$s',
  543. 'UI:AddLinkedObjectsOf_Class' => 'Add %1$ss...',
  544. 'UI:RemoveLinkedObjectsOf_Class' => 'Remove selected objects',
  545. 'UI:Message:EmptyList:UseAdd' => 'The list is empty, use the "Add..." button to add elements.',
  546. 'UI:Message:EmptyList:UseSearchForm' => 'Use the search form above to search for objects to be added.',
  547. 'UI:Wizard:FinalStepTitle' => 'Final step: confirmation',
  548. 'UI:Title:DeletionOf_Object' => 'Deletion of %1$s',
  549. 'UI:Title:BulkDeletionOf_Count_ObjectsOf_Class' => 'Bulk deletion of %1$d objects of class %2$s',
  550. 'UI:Delete:NotAllowedToDelete' => 'You are not allowed to delete this object',
  551. 'UI:Delete:NotAllowedToUpdate_Fields' => 'You are not allowed to update the following field(s): %1$s',
  552. 'UI:Error:NotEnoughRightsToDelete' => 'This object could not be deleted because the current user do not have sufficient rights',
  553. 'UI:Error:CannotDeleteBecauseOfDepencies' => 'This object could not be deleted because some manual operations must be performed prior to that',
  554. 'UI:Archive_User_OnBehalfOf_User' => '%1$s on behalf of %2$s',
  555. 'UI:Delete:AutomaticallyDeleted' => 'automatically deleted',
  556. 'UI:Delete:AutomaticResetOf_Fields' => 'automatic reset of field(s): %1$s',
  557. 'UI:Delete:CleaningUpRefencesTo_Object' => 'Cleaning up all references to %1$s...',
  558. 'UI:Delete:CleaningUpRefencesTo_Several_ObjectsOf_Class' => 'Cleaning up all references to %1$d objects of class %2$s...',
  559. 'UI:Delete:Done+' => 'What was done...',
  560. 'UI:Delete:_Name_Class_Deleted' => '%1$s - %2$s deleted.',
  561. 'UI:Delete:ConfirmDeletionOf_Name' => 'Deletion of %1$s',
  562. 'UI:Delete:ConfirmDeletionOf_Count_ObjectsOf_Class' => 'Deletion of %1$d objects of class %2$s',
  563. 'UI:Delete:ShouldBeDeletedAtomaticallyButNotAllowed' => 'Should be automaticaly deleted, but you are not allowed to do so',
  564. 'UI:Delete:MustBeDeletedManuallyButNotAllowed' => 'Must be deleted manually - but you are not allowed to delete this object, please contact your application admin',
  565. 'UI:Delete:WillBeDeletedAutomatically' => 'Will be automaticaly deleted',
  566. 'UI:Delete:MustBeDeletedManually' => 'Must be deleted manually',
  567. 'UI:Delete:CannotUpdateBecause_Issue' => 'Should be automatically updated, but: %1$s',
  568. 'UI:Delete:WillAutomaticallyUpdate_Fields' => 'will be automaticaly updated (reset: %1$s)',
  569. 'UI:Delete:Count_Objects/LinksReferencing_Object' => '%1$d objects/links are referencing %2$s',
  570. 'UI:Delete:Count_Objects/LinksReferencingTheObjects' => '%1$d objects/links are referencing some of the objects to be deleted',
  571. 'UI:Delete:ReferencesMustBeDeletedToEnsureIntegrity' => 'To ensure Database integrity, any reference should be further eliminated',
  572. 'UI:Delete:Consequence+' => 'What will be done',
  573. 'UI:Delete:SorryDeletionNotAllowed' => 'Sorry, you are not allowed to delete this object, see the detailed explanations above',
  574. 'UI:Delete:PleaseDoTheManualOperations' => 'Please perform the manual operations listed above prior to requesting the deletion of this object',
  575. 'UI:Delect:Confirm_Object' => 'Please confirm that you want to delete %1$s.',
  576. 'UI:Delect:Confirm_Count_ObjectsOf_Class' => 'Please confirm that you want to delete the following %1$d objects of class %2$s.',
  577. 'UI:WelcomeToITop' => 'Welcome to iTop',
  578. 'UI:DetailsPageTitle' => 'iTop - %1$s - %2$s details',
  579. 'UI:ErrorPageTitle' => 'iTop - Error',
  580. 'UI:ObjectDoesNotExist' => 'Sorry, this object does not exist (or you are not allowed to view it).',
  581. 'UI:SearchResultsPageTitle' => 'iTop - Search Results',
  582. 'UI:Search:NoSearch' => 'Nothing to search for',
  583. 'UI:FullTextSearchTitle_Text' => 'Results for "%1$s":',
  584. 'UI:Search:Count_ObjectsOf_Class_Found' => '%1$d object(s) of class %2$s found.',
  585. 'UI:Search:NoObjectFound' => 'No object found.',
  586. 'UI:ModificationPageTitle_Object_Class' => 'iTop - %1$s - %2$s modification',
  587. 'UI:ModificationTitle_Class_Object' => 'Modification of %1$s: <span class=\"hilite\">%2$s</span>',
  588. 'UI:ClonePageTitle_Object_Class' => 'iTop - Clone %1$s - %2$s modification',
  589. 'UI:CloneTitle_Class_Object' => 'Clone of %1$s: <span class=\"hilite\">%2$s</span>',
  590. 'UI:CreationPageTitle_Class' => 'iTop - Creation of a new %1$s ',
  591. 'UI:CreationTitle_Class' => 'Creation of a new %1$s',
  592. 'UI:Class_Object_NotUpdated' => 'No change detected, %1$s (%2$s) has <strong>not</strong> been modified.',
  593. 'UI:Class_Object_Updated' => '%1$s (%2$s) updated.',
  594. 'UI:BulkDeletePageTitle' => 'iTop - Bulk Delete',
  595. 'UI:BulkDeleteTitle' => 'Select the objects you want to delete:',
  596. 'UI:PageTitle:ObjectCreated' => 'iTop Object Created.',
  597. 'UI:Title:Object_Of_Class_Created' => '%1$s - %2$s created.',
  598. 'UI:Apply_Stimulus_On_Object_In_State_ToTarget_State' => 'Applying %1$s on object: %2$s in state %3$s to target state: %4$s.',
  599. 'UI:PageTitle:FatalError' => 'iTop - Fatal Error',
  600. 'UI:FatalErrorMessage' => 'Fatal error, iTop cannot continue.',
  601. 'UI:Error_Details' => 'Error: %1$s.',
  602. 'UI:PageTitle:ClassProjections' => 'iTop user management - class projections',
  603. 'UI:PageTitle:ProfileProjections' => 'iTop user management - profile projections',
  604. 'UI:UserManagement:Class' => 'Class',
  605. 'UI:UserManagement:Class+' => 'Class of objects',
  606. 'UI:UserManagement:ProjectedObject' => 'Object',
  607. 'UI:UserManagement:ProjectedObject+' => 'Projected object',
  608. 'UI:UserManagement:AnyObject' => '* any *',
  609. 'UI:UserManagement:User' => 'User',
  610. 'UI:UserManagement:User+' => 'User involved in the projection',
  611. 'UI:UserManagement:Profile' => 'Profile',
  612. 'UI:UserManagement:Profile+' => 'Profile in which the projection is specified',
  613. 'UI:UserManagement:Action:Read' => 'Read',
  614. 'UI:UserManagement:Action:Read+' => 'Read/display objects',
  615. 'UI:UserManagement:Action:Modify' => 'Modify',
  616. 'UI:UserManagement:Action:Modify+' => 'Create and edit (modify) objects',
  617. 'UI:UserManagement:Action:Delete' => 'Delete',
  618. 'UI:UserManagement:Action:Delete+' => 'Delete objects',
  619. 'UI:UserManagement:Action:BulkRead' => 'Bulk Read (Export)',
  620. 'UI:UserManagement:Action:BulkRead+' => 'List objects or export massively',
  621. 'UI:UserManagement:Action:BulkModify' => 'Bulk Modify',
  622. 'UI:UserManagement:Action:BulkModify+' => 'Massively create/edit (CSV import)',
  623. 'UI:UserManagement:Action:BulkDelete' => 'Bulk Delete',
  624. 'UI:UserManagement:Action:BulkDelete+' => 'Massively delete objects',
  625. 'UI:UserManagement:Action:Stimuli' => 'Stimuli',
  626. 'UI:UserManagement:Action:Stimuli+' => 'Allowed (compound) actions',
  627. 'UI:UserManagement:Action' => 'Action',
  628. 'UI:UserManagement:Action+' => 'Action performed by the user',
  629. 'UI:UserManagement:TitleActions' => 'Actions',
  630. 'UI:UserManagement:Permission' => 'Permission',
  631. 'UI:UserManagement:Permission+' => 'User\'s permissions',
  632. 'UI:UserManagement:Attributes' => 'Attributes',
  633. 'UI:UserManagement:ActionAllowed:Yes' => 'Yes',
  634. 'UI:UserManagement:ActionAllowed:No' => 'No',
  635. 'UI:UserManagement:AdminProfile+' => 'Administrators have full read/write access to all objects in the database.',
  636. 'UI:UserManagement:NoLifeCycleApplicable' => 'N/A',
  637. 'UI:UserManagement:NoLifeCycleApplicable+' => 'No lifecycle has been defined for this class',
  638. 'UI:UserManagement:GrantMatrix' => 'Grant Matrix',
  639. 'UI:UserManagement:LinkBetween_User_And_Profile' => 'Link between %1$s and %2$s',
  640. 'UI:AdminToolsMenu' => 'Admin tools',
  641. 'UI:AdminToolsMenu+' => 'Admin tools',
  642. 'UI:AdminToolsMenu:Title' => 'Administration tools',
  643. 'UI:AdminToolsMenu:Text' => 'Tools accessible only to users having the administrator profile',
  644. 'UI:AuditMenu' => 'Audit',
  645. 'UI:AuditMenu+' => 'Audit',
  646. 'UI:ChangeManagementMenu' => 'Change Management',
  647. 'UI:ChangeManagementMenu+' => 'Change Management',
  648. 'UI:ChangeManagementMenu:Title' => 'Changes Overview',
  649. 'UI-ChangeManagementMenu-ChangesByType' => 'Changes by type',
  650. 'UI-ChangeManagementMenu-ChangesByStatus' => 'Changes by status',
  651. 'UI-ChangeManagementMenu-ChangesByWorkgroup' => 'Changes by workgroup',
  652. 'UI-ChangeManagementMenu-ChangesNotYetAssigned' => 'Changes not yet assigned',
  653. 'UI:ConfigurationItemsMenu'=> 'Configuration Items',
  654. 'UI:ConfigurationItemsMenu+'=> 'All Devices',
  655. 'UI:ConfigurationItemsMenu:Title' => 'Configuration Items Overview',
  656. 'UI-ConfigurationItemsMenu-ServersByCriticity' => 'Servers by criticity',
  657. 'UI-ConfigurationItemsMenu-PCsByCriticity' => 'PCs by criticity',
  658. 'UI-ConfigurationItemsMenu-NWDevicesByCriticity' => 'Network devices by criticity',
  659. 'UI-ConfigurationItemsMenu-ApplicationsByCriticity' => 'Applications by criticity',
  660. 'UI:ConfigurationManagementMenu' => 'Configuration Management',
  661. 'UI:ConfigurationManagementMenu+' => 'Configuration Management',
  662. 'UI:ConfigurationManagementMenu:Title' => 'Infrastructure Overview',
  663. 'UI-ConfigurationManagementMenu-InfraByType' => 'Infrastructure objects by type',
  664. 'UI-ConfigurationManagementMenu-InfraByStatus' => 'Infrastructure objects by status',
  665. 'UI:ContactsMenu' => 'Contacts',
  666. 'UI:ContactsMenu+' => 'Contacts',
  667. 'UI:ContactsMenu:Title' => 'Contacts Overview',
  668. 'UI-ContactsMenu-ContactsByLocation' => 'Contacts by location',
  669. 'UI-ContactsMenu-ContactsByType' => 'Contacts by type',
  670. 'UI-ContactsMenu-ContactsByStatus' => 'Contacts by status',
  671. 'UI:CSVImportMenu' => 'CSV import',
  672. 'UI:CSVImportMenu+' => 'Bulk creation or update',
  673. 'UI:DataModelMenu' => 'Data Model',
  674. 'UI:DataModelMenu+' => 'Overview of the Data Model',
  675. 'UI:ExportMenu' => 'Export',
  676. 'UI:ExportMenu+' => 'Export the results of any query in HTML, CSV or XML',
  677. 'UI:IncidentManagementMenu' => 'Incident Management',
  678. 'UI:IncidentManagementMenu+' => 'Incident Management',
  679. 'UI:IncidentManagementMenu:Title' => 'Incident Overview',
  680. 'UI-IncidentManagementMenu-IncidentsByType' => 'Incidents by type',
  681. 'UI-IncidentManagementMenu-IncidentsByStatus' => 'Incidents by status',
  682. 'UI-IncidentManagementMenu-IncidentsByWorkgroup' => 'Incidents by workgroup',
  683. 'UI-IncidentManagementMenu-IncidentsNotYetAssigned' => 'Incidents not yet assigned',
  684. 'UI:NotificationsMenu' => 'Notifications',
  685. 'UI:NotificationsMenu+' => 'Configuration of the Notifications',
  686. 'UI:RunQueriesMenu' => 'Run Queries',
  687. 'UI:RunQueriesMenu+' => 'Run any query',
  688. 'UI:ServiceDeskMenu' => 'Service Desk',
  689. 'UI:ServiceDeskMenu+' => 'Service Desk',
  690. 'UI:ServiceDeskMenu:Title' => 'Service Calls Overview',
  691. 'UI-ServiceDeskMenu-CallsByType' => 'Calls by type',
  692. 'UI-ServiceDeskMenu-CallsByStatus' => 'Calls by status',
  693. 'UI-ServiceDeskMenu-CallsBySeverity' => 'Calls by severity',
  694. 'UI-ServiceDeskMenu-CallsNotYetAssigned' => 'Calls not yet assigned',
  695. 'UI:ServiceManagementMenu' => 'Service Management',
  696. 'UI:ServiceManagementMenu+' => 'Service Management',
  697. 'UI:ServiceManagementMenu:Title' => 'Service Management Overview',
  698. 'UI-ServiceManagementMenu-ContractsBySrvLevel' => 'Contracts by service level',
  699. 'UI-ServiceManagementMenu-ContractsByStatus' => 'Contracts by status',
  700. 'UI-ServiceManagementMenu-ContractsEndingIn30Days' => 'Contracts ending in less then 30 days',
  701. 'UI:AdvancedToolsMenu' => 'Tools',
  702. 'UI:AdvancedToolsMenu+' => 'Advanced tools',
  703. 'UI:UniversalSearchMenu' => 'Universal Search',
  704. 'UI:UniversalSearchMenu+' => 'Search for anything...',
  705. 'UI:UserManagementMenu' => 'User Management',
  706. 'UI:UserManagementMenu+' => 'User management',
  707. 'UI:ApplicationsMenu' => 'Applications',
  708. 'UI:ApplicationsMenu+' => 'Applications',
  709. 'UI:ApplicationsMenu:Title' => 'Applications',
  710. 'UI:CircuitsMenu' => 'Circuits',
  711. 'UI:CircuitsMenu+' => 'Circuits',
  712. 'UI:CircuitsMenu:Title' => 'Circuits',
  713. 'UI:ContractsMenu' => 'Contracts',
  714. 'UI:ContractsMenu+' => 'Contracts',
  715. 'UI:ContractsMenu:Title' => 'Contracts',
  716. 'UI:InterfacesMenu' => 'Interfaces',
  717. 'UI:InterfacesMenu+' => 'Interfaces',
  718. 'UI:InterfacesMenu:Title' => 'Interfaces',
  719. 'UI:NetworkDevicesMenu' => 'Network Devices',
  720. 'UI:NetworkDevicesMenu+' => 'Network Devices',
  721. 'UI:NetworkDevicesMenu:Title' => 'Network Devices',
  722. 'UI:PatchesMenu' => 'Patches',
  723. 'UI:PatchesMenu+' => 'Patches',
  724. 'UI:PatchesMenu:Title' => 'Patches',
  725. 'UI:PCsMenu' => 'PCs',
  726. 'UI:PCsMenu+' => 'PCs',
  727. 'UI:PCsMenu:Title' => 'PCs',
  728. 'UI:ServersMenu' => 'Servers',
  729. 'UI:ServersMenu+' => 'Servers',
  730. 'UI:ServersMenu:Title' => 'Servers',
  731. 'UI:ServicesMenu' => 'Services',
  732. 'UI:ServicesMenu+' => 'Services',
  733. 'UI:ServicesMenu:Title' => 'Services',
  734. 'UI:SubnetsMenu' => 'Subnets',
  735. 'UI:SubnetsMenu+' => 'Subnets',
  736. 'UI:SubnetsMenu:Title' => 'Subnets',
  737. 'UI:ApplicationLogMenu' => 'Application Log',
  738. 'UI:ApplicationLogMenu+' => 'Application Log',
  739. 'UI:ApplicationLogMenu:Title' => 'Application Log',
  740. 'UI:ClosedChangesMenu' => 'Closed Changes',
  741. 'UI:ClosedChangesMenu+' => 'Closed Changes',
  742. 'UI:ClosedChangesMenu:Title' => 'Closed Changes',
  743. 'UI:ClosedIncidentsMenu' => 'Closed Incidents',
  744. 'UI:ClosedIncidentsMenu+' => 'Closed Incidents',
  745. 'UI:ClosedIncidentsMenu:Title' => 'Closed Incidents',
  746. 'UI:DocumentsMenu' => 'Documents',
  747. 'UI:DocumentsMenu+' => 'Documents',
  748. 'UI:DocumentsMenu:Title' => 'Documents',
  749. 'UI:GroupingMenu' => 'Groups',
  750. 'UI:GroupingMenu+' => 'Groups',
  751. 'UI:GroupingMenu:Title' => 'Groups',
  752. 'UI:KnownErrorsMenu' => 'Known Errors',
  753. 'UI:KnownErrorsMenu+' => 'Known Errors',
  754. 'UI:KnownErrorsMenu:Title' => 'Known Errors',
  755. 'UI:LocationsMenu' => 'Locations',
  756. 'UI:LocationsMenu+' => 'Locations',
  757. 'UI:LocationsMenu:Title' => 'Locations',
  758. 'UI:MyChangesMenu' => 'My Changes',
  759. 'UI:MyChangesMenu+' => 'My Changes',
  760. 'UI:MyChangesMenu:Title' => 'My Changes',
  761. 'UI:MyIncidentsMenu' => 'My Incidents',
  762. 'UI:MyIncidentsMenu+' => 'My Incidents',
  763. 'UI:MyIncidentsMenu:Title' => 'My Incidents',
  764. 'UI:MyServiceCallsMenu' => 'My Service Calls',
  765. 'UI:MyServiceCallsMenu+' => 'My Service Calls',
  766. 'UI:MyServiceCallsMenu:Title' => 'My Service Calls',
  767. 'UI:OpenChangesMenu' => 'Open Changes',
  768. 'UI:OpenChangesMenu+' => 'Open Changes',
  769. 'UI:OpenChangesMenu:Title' => 'Open Changes',
  770. 'UI:OpenIncidentsMenu' => 'Open Incidents',
  771. 'UI:OpenIncidentsMenu+' => 'Open Incidents',
  772. 'UI:OpenIncidentsMenu:Title' => 'Open Incidents',
  773. 'UI:OpenServiceCallsMenu' => 'Open Service Calls',
  774. 'UI:OpenServiceCallsMenu+' => 'Open Service Calls',
  775. 'UI:OpenServiceCallsMenu:Title' => 'Open Service Calls',
  776. 'UI:PersonsMenu' => 'Persons',
  777. 'UI:PersonsMenu+' => 'Persons',
  778. 'UI:PersonsMenu:Title' => 'Persons',
  779. 'UI:ProfilesMenu' => 'Profiles',
  780. 'UI:ProfilesMenu+' => 'Profiles',
  781. 'UI:ProfilesMenu:Title' => 'Profiles',
  782. 'UI:ScheduledOutagesMenu' => 'Scheduled Outages',
  783. 'UI:ScheduledOutagesMenu+' => 'Scheduled Outages',
  784. 'UI:ScheduledOutagesMenu:Title' => 'Scheduled Outages',
  785. 'UI:TeamsMenu' => 'Teams',
  786. 'UI:TeamsMenu+' => 'Teams',
  787. 'UI:TeamsMenu:Title' => 'Teams',
  788. 'UI:UserAccountsMenu' => 'User Accounts',
  789. 'UI:UserAccountsMenu+' => 'User Accounts',
  790. 'UI:UserAccountsMenu:Title' => 'User Accounts',
  791. ));
  792. ?>