dictionary.itop.ui.php 47 KB

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