dictionary.itop.core.php 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760
  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. Dict::Add('EN US', 'English', 'English', array(
  25. 'Core:AttributeLinkedSet' => 'Array of objects',
  26. 'Core:AttributeLinkedSet+' => 'Any kind of objects of the same class or subclass',
  27. 'Core:AttributeLinkedSetIndirect' => 'Array of objects (N-N)',
  28. 'Core:AttributeLinkedSetIndirect+' => 'Any kind of objects [subclass] of the same class',
  29. 'Core:AttributeInteger' => 'Integer',
  30. 'Core:AttributeInteger+' => 'Numeric value (could be negative)',
  31. 'Core:AttributeDecimal' => 'Decimal',
  32. 'Core:AttributeDecimal+' => 'Decimal value (could be negative)',
  33. 'Core:AttributeBoolean' => 'Boolean',
  34. 'Core:AttributeBoolean+' => 'Boolean',
  35. 'Core:AttributeString' => 'String',
  36. 'Core:AttributeString+' => 'Alphanumeric string',
  37. 'Core:AttributeClass' => 'Class',
  38. 'Core:AttributeClass+' => 'Class',
  39. 'Core:AttributeApplicationLanguage' => 'User language',
  40. 'Core:AttributeApplicationLanguage+' => 'Language and country (EN US)',
  41. 'Core:AttributeFinalClass' => 'Class (auto)',
  42. 'Core:AttributeFinalClass+' => 'Real class of the object (automatically created by the core)',
  43. 'Core:AttributePassword' => 'Password',
  44. 'Core:AttributePassword+' => 'Password of an external device',
  45. 'Core:AttributeEncryptedString' => 'Encrypted string',
  46. 'Core:AttributeEncryptedString+' => 'String encrypted with a local key',
  47. 'Core:AttributeText' => 'Text',
  48. 'Core:AttributeText+' => 'Multiline character string',
  49. 'Core:AttributeHTML' => 'HTML',
  50. 'Core:AttributeHTML+' => 'HTML string',
  51. 'Core:AttributeEmailAddress' => 'Email address',
  52. 'Core:AttributeEmailAddress+' => 'Email address',
  53. 'Core:AttributeIPAddress' => 'IP address',
  54. 'Core:AttributeIPAddress+' => 'IP address',
  55. 'Core:AttributeOQL' => 'OQL',
  56. 'Core:AttributeOQL+' => 'Object Query Langage expression',
  57. 'Core:AttributeEnum' => 'Enum',
  58. 'Core:AttributeEnum+' => 'List of predefined alphanumeric strings',
  59. 'Core:AttributeTemplateString' => 'Template string',
  60. 'Core:AttributeTemplateString+' => 'String containing placeholders',
  61. 'Core:AttributeTemplateText' => 'Template text',
  62. 'Core:AttributeTemplateText+' => 'Text containing placeholders',
  63. 'Core:AttributeTemplateHTML' => 'Template HTML',
  64. 'Core:AttributeTemplateHTML+' => 'HTML containing placeholders',
  65. 'Core:AttributeDateTime' => 'Date/time',
  66. 'Core:AttributeDateTime+' => 'Date and time (year-month-day hh:mm:ss)',
  67. 'Core:AttributeDateTime?SmartSearch' => '
  68. <p>
  69. Date format:<br/>
  70. <b>yyyy-mm-dd hh:mm:ss</b><br/>
  71. Example: 2011-07-19 18:40:00
  72. </p>
  73. <p>
  74. Operators:<br/>
  75. <b>&gt;</b><em>date</em><br/>
  76. <b>&lt;</b><em>date</em><br/>
  77. <b>[</b><em>date</em>,<em>date</em><b>]</b>
  78. </p>
  79. <p>
  80. If the time is omitted, it defaults to 00:00:00
  81. </p>',
  82. 'Core:AttributeDate' => 'Date',
  83. 'Core:AttributeDate+' => 'Date (year-month-day)',
  84. 'Core:AttributeDate?SmartSearch' => '
  85. <p>
  86. Date format:<br/>
  87. <b>yyyy-mm-dd</b><br/>
  88. Example: 2011-07-19
  89. </p>
  90. <p>
  91. Operators:<br/>
  92. <b>&gt;</b><em>date</em><br/>
  93. <b>&lt;</b><em>date</em><br/>
  94. <b>[</b><em>date</em>,<em>date</em><b>]</b>
  95. </p>',
  96. 'Core:AttributeDeadline' => 'Deadline',
  97. 'Core:AttributeDeadline+' => 'Date, displayed relatively to the current time',
  98. 'Core:AttributeExternalKey' => 'External key',
  99. 'Core:AttributeExternalKey+' => 'External (or foreign) key',
  100. 'Core:AttributeExternalField' => 'External field',
  101. 'Core:AttributeExternalField+' => 'Field mapped to an external key',
  102. 'Core:AttributeURL' => 'URL',
  103. 'Core:AttributeURL+' => 'Absolute or relative URL as a text string',
  104. 'Core:AttributeBlob' => 'Blob',
  105. 'Core:AttributeBlob+' => 'Any binary content (document)',
  106. 'Core:AttributeOneWayPassword' => 'One way password',
  107. 'Core:AttributeOneWayPassword+' => 'One way encrypted (hashed) password',
  108. 'Core:AttributeTable' => 'Table',
  109. 'Core:AttributeTable+' => 'Indexed array having two dimensions',
  110. 'Core:AttributePropertySet' => 'Properties',
  111. 'Core:AttributePropertySet+' => 'List of untyped properties (name and value)',
  112. 'Core:AttributeFriendlyName' => 'Friendly name',
  113. 'Core:AttributeFriendlyName+' => 'Attribute created automatically ; the friendly name is computed after several attributes',
  114. 'Core:FriendlyName-Label' => 'Name',
  115. 'Core:FriendlyName-Description' => 'Friendly name',
  116. ));
  117. //////////////////////////////////////////////////////////////////////
  118. // Classes in 'core/cmdb'
  119. //////////////////////////////////////////////////////////////////////
  120. //
  121. //
  122. // Class: CMDBChange
  123. //
  124. Dict::Add('EN US', 'English', 'English', array(
  125. 'Class:CMDBChange' => 'Change',
  126. 'Class:CMDBChange+' => 'Changes tracking',
  127. 'Class:CMDBChange/Attribute:date' => 'date',
  128. 'Class:CMDBChange/Attribute:date+' => 'date and time at which the changes have been recorded',
  129. 'Class:CMDBChange/Attribute:userinfo' => 'misc. info',
  130. 'Class:CMDBChange/Attribute:userinfo+' => 'caller\'s defined information',
  131. ));
  132. //
  133. // Class: CMDBChangeOp
  134. //
  135. Dict::Add('EN US', 'English', 'English', array(
  136. 'Class:CMDBChangeOp' => 'Change Operation',
  137. 'Class:CMDBChangeOp+' => 'Change operations tracking',
  138. 'Class:CMDBChangeOp/Attribute:change' => 'change',
  139. 'Class:CMDBChangeOp/Attribute:change+' => 'change',
  140. 'Class:CMDBChangeOp/Attribute:date' => 'date',
  141. 'Class:CMDBChangeOp/Attribute:date+' => 'date and time of the change',
  142. 'Class:CMDBChangeOp/Attribute:userinfo' => 'user',
  143. 'Class:CMDBChangeOp/Attribute:userinfo+' => 'who made this change',
  144. 'Class:CMDBChangeOp/Attribute:objclass' => 'object class',
  145. 'Class:CMDBChangeOp/Attribute:objclass+' => 'object class',
  146. 'Class:CMDBChangeOp/Attribute:objkey' => 'object id',
  147. 'Class:CMDBChangeOp/Attribute:objkey+' => 'object id',
  148. 'Class:CMDBChangeOp/Attribute:finalclass' => 'type',
  149. 'Class:CMDBChangeOp/Attribute:finalclass+' => '',
  150. ));
  151. //
  152. // Class: CMDBChangeOpCreate
  153. //
  154. Dict::Add('EN US', 'English', 'English', array(
  155. 'Class:CMDBChangeOpCreate' => 'object creation',
  156. 'Class:CMDBChangeOpCreate+' => 'Object creation tracking',
  157. ));
  158. //
  159. // Class: CMDBChangeOpDelete
  160. //
  161. Dict::Add('EN US', 'English', 'English', array(
  162. 'Class:CMDBChangeOpDelete' => 'object deletion',
  163. 'Class:CMDBChangeOpDelete+' => 'Object deletion tracking',
  164. ));
  165. //
  166. // Class: CMDBChangeOpSetAttribute
  167. //
  168. Dict::Add('EN US', 'English', 'English', array(
  169. 'Class:CMDBChangeOpSetAttribute' => 'object change',
  170. 'Class:CMDBChangeOpSetAttribute+' => 'Object properties change tracking',
  171. 'Class:CMDBChangeOpSetAttribute/Attribute:attcode' => 'Attribute',
  172. 'Class:CMDBChangeOpSetAttribute/Attribute:attcode+' => 'code of the modified property',
  173. ));
  174. //
  175. // Class: CMDBChangeOpSetAttributeScalar
  176. //
  177. Dict::Add('EN US', 'English', 'English', array(
  178. 'Class:CMDBChangeOpSetAttributeScalar' => 'property change',
  179. 'Class:CMDBChangeOpSetAttributeScalar+' => 'Object scalar properties change tracking',
  180. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:oldvalue' => 'Previous value',
  181. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:oldvalue+' => 'previous value of the attribute',
  182. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:newvalue' => 'New value',
  183. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:newvalue+' => 'new value of the attribute',
  184. ));
  185. // Used by CMDBChangeOp... & derived classes
  186. Dict::Add('EN US', 'English', 'English', array(
  187. 'Change:ObjectCreated' => 'Object created',
  188. 'Change:ObjectDeleted' => 'Object deleted',
  189. 'Change:ObjectModified' => 'Object modified',
  190. 'Change:AttName_SetTo_NewValue_PreviousValue_OldValue' => '%1$s set to %2$s (previous value: %3$s)',
  191. 'Change:AttName_SetTo' => '%1$s set to %2$s',
  192. 'Change:Text_AppendedTo_AttName' => '%1$s appended to %2$s',
  193. 'Change:AttName_Changed_PreviousValue_OldValue' => '%1$s modified, previous value: %2$s',
  194. 'Change:AttName_Changed' => '%1$s modified',
  195. 'Change:AttName_EntryAdded' => '%1$s modified, new entry added.',
  196. ));
  197. //
  198. // Class: CMDBChangeOpSetAttributeBlob
  199. //
  200. Dict::Add('EN US', 'English', 'English', array(
  201. 'Class:CMDBChangeOpSetAttributeBlob' => 'data change',
  202. 'Class:CMDBChangeOpSetAttributeBlob+' => 'data change tracking',
  203. 'Class:CMDBChangeOpSetAttributeBlob/Attribute:prevdata' => 'Previous data',
  204. 'Class:CMDBChangeOpSetAttributeBlob/Attribute:prevdata+' => 'previous contents of the attribute',
  205. ));
  206. //
  207. // Class: CMDBChangeOpSetAttributeText
  208. //
  209. Dict::Add('EN US', 'English', 'English', array(
  210. 'Class:CMDBChangeOpSetAttributeText' => 'text change',
  211. 'Class:CMDBChangeOpSetAttributeText+' => 'text change tracking',
  212. 'Class:CMDBChangeOpSetAttributeText/Attribute:prevdata' => 'Previous data',
  213. 'Class:CMDBChangeOpSetAttributeText/Attribute:prevdata+' => 'previous contents of the attribute',
  214. ));
  215. //
  216. // Class: Event
  217. //
  218. Dict::Add('EN US', 'English', 'English', array(
  219. 'Class:Event' => 'Log Event',
  220. 'Class:Event+' => 'An application internal event',
  221. 'Class:Event/Attribute:message' => 'Message',
  222. 'Class:Event/Attribute:message+' => 'short description of the event',
  223. 'Class:Event/Attribute:date' => 'Date',
  224. 'Class:Event/Attribute:date+' => 'date and time at which the changes have been recorded',
  225. 'Class:Event/Attribute:userinfo' => 'User info',
  226. 'Class:Event/Attribute:userinfo+' => 'identification of the user that was doing the action that triggered this event',
  227. 'Class:Event/Attribute:finalclass' => 'Type',
  228. 'Class:Event/Attribute:finalclass+' => '',
  229. ));
  230. //
  231. // Class: EventNotification
  232. //
  233. Dict::Add('EN US', 'English', 'English', array(
  234. 'Class:EventNotification' => 'Notification event',
  235. 'Class:EventNotification+' => 'Trace of a notification that has been sent',
  236. 'Class:EventNotification/Attribute:trigger_id' => 'Trigger',
  237. 'Class:EventNotification/Attribute:trigger_id+' => 'user account',
  238. 'Class:EventNotification/Attribute:action_id' => 'user',
  239. 'Class:EventNotification/Attribute:action_id+' => 'user account',
  240. 'Class:EventNotification/Attribute:object_id' => 'Object id',
  241. 'Class:EventNotification/Attribute:object_id+' => 'object id (class defined by the trigger ?)',
  242. ));
  243. //
  244. // Class: EventNotificationEmail
  245. //
  246. Dict::Add('EN US', 'English', 'English', array(
  247. 'Class:EventNotificationEmail' => 'Email emission event',
  248. 'Class:EventNotificationEmail+' => 'Trace of an email that has been sent',
  249. 'Class:EventNotificationEmail/Attribute:to' => 'TO',
  250. 'Class:EventNotificationEmail/Attribute:to+' => 'TO',
  251. 'Class:EventNotificationEmail/Attribute:cc' => 'CC',
  252. 'Class:EventNotificationEmail/Attribute:cc+' => 'CC',
  253. 'Class:EventNotificationEmail/Attribute:bcc' => 'BCC',
  254. 'Class:EventNotificationEmail/Attribute:bcc+' => 'BCC',
  255. 'Class:EventNotificationEmail/Attribute:from' => 'From',
  256. 'Class:EventNotificationEmail/Attribute:from+' => 'Sender of the message',
  257. 'Class:EventNotificationEmail/Attribute:subject' => 'Subject',
  258. 'Class:EventNotificationEmail/Attribute:subject+' => 'Subject',
  259. 'Class:EventNotificationEmail/Attribute:body' => 'Body',
  260. 'Class:EventNotificationEmail/Attribute:body+' => 'Body',
  261. ));
  262. //
  263. // Class: EventIssue
  264. //
  265. Dict::Add('EN US', 'English', 'English', array(
  266. 'Class:EventIssue' => 'Issue event',
  267. 'Class:EventIssue+' => 'Trace of an issue (warning, error, etc.)',
  268. 'Class:EventIssue/Attribute:issue' => 'Issue',
  269. 'Class:EventIssue/Attribute:issue+' => 'What happened',
  270. 'Class:EventIssue/Attribute:impact' => 'Impact',
  271. 'Class:EventIssue/Attribute:impact+' => 'What are the consequences',
  272. 'Class:EventIssue/Attribute:page' => 'Page',
  273. 'Class:EventIssue/Attribute:page+' => 'HTTP entry point',
  274. 'Class:EventIssue/Attribute:arguments_post' => 'Posted arguments',
  275. 'Class:EventIssue/Attribute:arguments_post+' => 'HTTP POST arguments',
  276. 'Class:EventIssue/Attribute:arguments_get' => 'URL arguments',
  277. 'Class:EventIssue/Attribute:arguments_get+' => 'HTTP GET arguments',
  278. 'Class:EventIssue/Attribute:callstack' => 'Callstack',
  279. 'Class:EventIssue/Attribute:callstack+' => 'Call stack',
  280. 'Class:EventIssue/Attribute:data' => 'Data',
  281. 'Class:EventIssue/Attribute:data+' => 'More information',
  282. ));
  283. //
  284. // Class: EventWebService
  285. //
  286. Dict::Add('EN US', 'English', 'English', array(
  287. 'Class:EventWebService' => 'Web service event',
  288. 'Class:EventWebService+' => 'Trace of an web service call',
  289. 'Class:EventWebService/Attribute:verb' => 'Verb',
  290. 'Class:EventWebService/Attribute:verb+' => 'Name of the operation',
  291. 'Class:EventWebService/Attribute:result' => 'Result',
  292. 'Class:EventWebService/Attribute:result+' => 'Overall success/failure',
  293. 'Class:EventWebService/Attribute:log_info' => 'Info log',
  294. 'Class:EventWebService/Attribute:log_info+' => 'Result info log',
  295. 'Class:EventWebService/Attribute:log_warning' => 'Warning log',
  296. 'Class:EventWebService/Attribute:log_warning+' => 'Result warning log',
  297. 'Class:EventWebService/Attribute:log_error' => 'Error log',
  298. 'Class:EventWebService/Attribute:log_error+' => 'Result error log',
  299. 'Class:EventWebService/Attribute:data' => 'Data',
  300. 'Class:EventWebService/Attribute:data+' => 'Result data',
  301. ));
  302. //
  303. // Class: EventLoginUsage
  304. //
  305. Dict::Add('EN US', 'English', 'English', array(
  306. 'Class:EventLoginUsage' => 'Login Usage',
  307. 'Class:EventLoginUsage+' => 'Connection to the application',
  308. 'Class:EventLoginUsage/Attribute:user_id' => 'Login',
  309. 'Class:EventLoginUsage/Attribute:user_id+' => 'Login',
  310. 'Class:EventLoginUsage/Attribute:contact_name' => 'User Name',
  311. 'Class:EventLoginUsage/Attribute:contact_name+' => 'User Name',
  312. 'Class:EventLoginUsage/Attribute:contact_email' => 'User Email',
  313. 'Class:EventLoginUsage/Attribute:contact_email+' => 'Email Address of the User',
  314. ));
  315. //
  316. // Class: Action
  317. //
  318. Dict::Add('EN US', 'English', 'English', array(
  319. 'Class:Action' => 'Custom Action',
  320. 'Class:Action+' => 'User defined action',
  321. 'Class:Action/Attribute:name' => 'Name',
  322. 'Class:Action/Attribute:name+' => '',
  323. 'Class:Action/Attribute:description' => 'Description',
  324. 'Class:Action/Attribute:description+' => '',
  325. 'Class:Action/Attribute:status' => 'Status',
  326. 'Class:Action/Attribute:status+' => 'In production or ?',
  327. 'Class:Action/Attribute:status/Value:test' => 'Being tested',
  328. 'Class:Action/Attribute:status/Value:test+' => 'Being tested',
  329. 'Class:Action/Attribute:status/Value:enabled' => 'In production',
  330. 'Class:Action/Attribute:status/Value:enabled+' => 'In production',
  331. 'Class:Action/Attribute:status/Value:disabled' => 'Inactive',
  332. 'Class:Action/Attribute:status/Value:disabled+' => 'Inactive',
  333. 'Class:Action/Attribute:trigger_list' => 'Related Triggers',
  334. 'Class:Action/Attribute:trigger_list+' => 'Triggers linked to this action',
  335. 'Class:Action/Attribute:finalclass' => 'Type',
  336. 'Class:Action/Attribute:finalclass+' => '',
  337. ));
  338. //
  339. // Class: ActionNotification
  340. //
  341. Dict::Add('EN US', 'English', 'English', array(
  342. 'Class:ActionNotification' => 'Notification',
  343. 'Class:ActionNotification+' => 'Notification (abstract)',
  344. ));
  345. //
  346. // Class: ActionEmail
  347. //
  348. Dict::Add('EN US', 'English', 'English', array(
  349. 'Class:ActionEmail' => 'Email notification',
  350. 'Class:ActionEmail+' => '',
  351. 'Class:ActionEmail/Attribute:test_recipient' => 'Test recipient',
  352. 'Class:ActionEmail/Attribute:test_recipient+' => 'Detination in case status is set to "Test"',
  353. 'Class:ActionEmail/Attribute:from' => 'From',
  354. 'Class:ActionEmail/Attribute:from+' => 'Will be sent into the email header',
  355. 'Class:ActionEmail/Attribute:reply_to' => 'Reply to',
  356. 'Class:ActionEmail/Attribute:reply_to+' => 'Will be sent into the email header',
  357. 'Class:ActionEmail/Attribute:to' => 'To',
  358. 'Class:ActionEmail/Attribute:to+' => 'Destination of the email',
  359. 'Class:ActionEmail/Attribute:cc' => 'Cc',
  360. 'Class:ActionEmail/Attribute:cc+' => 'Carbon Copy',
  361. 'Class:ActionEmail/Attribute:bcc' => 'bcc',
  362. 'Class:ActionEmail/Attribute:bcc+' => 'Blind Carbon Copy',
  363. 'Class:ActionEmail/Attribute:subject' => 'subject',
  364. 'Class:ActionEmail/Attribute:subject+' => 'Title of the email',
  365. 'Class:ActionEmail/Attribute:body' => 'body',
  366. 'Class:ActionEmail/Attribute:body+' => 'Contents of the email',
  367. 'Class:ActionEmail/Attribute:importance' => 'importance',
  368. 'Class:ActionEmail/Attribute:importance+' => 'Importance flag',
  369. 'Class:ActionEmail/Attribute:importance/Value:low' => 'low',
  370. 'Class:ActionEmail/Attribute:importance/Value:low+' => 'low',
  371. 'Class:ActionEmail/Attribute:importance/Value:normal' => 'normal',
  372. 'Class:ActionEmail/Attribute:importance/Value:normal+' => 'normal',
  373. 'Class:ActionEmail/Attribute:importance/Value:high' => 'high',
  374. 'Class:ActionEmail/Attribute:importance/Value:high+' => 'high',
  375. ));
  376. //
  377. // Class: Trigger
  378. //
  379. Dict::Add('EN US', 'English', 'English', array(
  380. 'Class:Trigger' => 'Trigger',
  381. 'Class:Trigger+' => 'Custom event handler',
  382. 'Class:Trigger/Attribute:description' => 'Description',
  383. 'Class:Trigger/Attribute:description+' => 'one line description',
  384. 'Class:Trigger/Attribute:action_list' => 'Triggered actions',
  385. 'Class:Trigger/Attribute:action_list+' => 'Actions performed when the trigger is activated',
  386. 'Class:Trigger/Attribute:finalclass' => 'Type',
  387. 'Class:Trigger/Attribute:finalclass+' => '',
  388. ));
  389. //
  390. // Class: TriggerOnObject
  391. //
  392. Dict::Add('EN US', 'English', 'English', array(
  393. 'Class:TriggerOnObject' => 'Trigger (class dependent)',
  394. 'Class:TriggerOnObject+' => 'Trigger on a given class of objects',
  395. 'Class:TriggerOnObject/Attribute:target_class' => 'Target class',
  396. 'Class:TriggerOnObject/Attribute:target_class+' => '',
  397. ));
  398. //
  399. // Class: TriggerOnPortalUpdate
  400. //
  401. Dict::Add('EN US', 'English', 'English', array(
  402. 'Class:TriggerOnPortalUpdate' => 'Trigger (when updated from the portal)',
  403. 'Class:TriggerOnPortalUpdate+' => 'Trigger on a end-user\'s update from the portal',
  404. ));
  405. //
  406. // Class: TriggerOnStateChange
  407. //
  408. Dict::Add('EN US', 'English', 'English', array(
  409. 'Class:TriggerOnStateChange' => 'Trigger (on state change)',
  410. 'Class:TriggerOnStateChange+' => 'Trigger on object state change',
  411. 'Class:TriggerOnStateChange/Attribute:state' => 'State',
  412. 'Class:TriggerOnStateChange/Attribute:state+' => '',
  413. ));
  414. //
  415. // Class: TriggerOnStateEnter
  416. //
  417. Dict::Add('EN US', 'English', 'English', array(
  418. 'Class:TriggerOnStateEnter' => 'Trigger (on entering a state)',
  419. 'Class:TriggerOnStateEnter+' => 'Trigger on object state change - entering',
  420. ));
  421. //
  422. // Class: TriggerOnStateLeave
  423. //
  424. Dict::Add('EN US', 'English', 'English', array(
  425. 'Class:TriggerOnStateLeave' => 'Trigger (on leaving a state)',
  426. 'Class:TriggerOnStateLeave+' => 'Trigger on object state change - leaving',
  427. ));
  428. //
  429. // Class: TriggerOnObjectCreate
  430. //
  431. Dict::Add('EN US', 'English', 'English', array(
  432. 'Class:TriggerOnObjectCreate' => 'Trigger (on object creation)',
  433. 'Class:TriggerOnObjectCreate+' => 'Trigger on object creation of [a child class of] the given class',
  434. ));
  435. //
  436. // Class: lnkTriggerAction
  437. //
  438. Dict::Add('EN US', 'English', 'English', array(
  439. 'Class:lnkTriggerAction' => 'Action/Trigger',
  440. 'Class:lnkTriggerAction+' => 'Link between a trigger and an action',
  441. 'Class:lnkTriggerAction/Attribute:action_id' => 'Action',
  442. 'Class:lnkTriggerAction/Attribute:action_id+' => 'The action to be executed',
  443. 'Class:lnkTriggerAction/Attribute:action_name' => 'Action',
  444. 'Class:lnkTriggerAction/Attribute:action_name+' => '',
  445. 'Class:lnkTriggerAction/Attribute:trigger_id' => 'Trigger',
  446. 'Class:lnkTriggerAction/Attribute:trigger_id+' => '',
  447. 'Class:lnkTriggerAction/Attribute:trigger_name' => 'Trigger',
  448. 'Class:lnkTriggerAction/Attribute:trigger_name+' => '',
  449. 'Class:lnkTriggerAction/Attribute:order' => 'Order',
  450. 'Class:lnkTriggerAction/Attribute:order+' => 'Actions execution order',
  451. ));
  452. //
  453. // Synchro Data Source
  454. //
  455. Dict::Add('EN US', 'English', 'English', array(
  456. 'Class:SynchroDataSource/Attribute:name' => 'Name',
  457. 'Class:SynchroDataSource/Attribute:name+' => 'Name',
  458. 'Class:SynchroDataSource/Attribute:description' => 'Description',
  459. 'Class:SynchroDataSource/Attribute:status' => 'Status', //TODO: enum values
  460. 'Class:SynchroDataSource/Attribute:scope_class' => 'Target class',
  461. 'Class:SynchroDataSource/Attribute:user_id' => 'User',
  462. 'Class:SynchroDataSource/Attribute:notify_contact_id' => 'Contact to notify',
  463. 'Class:SynchroDataSource/Attribute:notify_contact_id+' => 'Contact to notify in case of error',
  464. 'Class:SynchroDataSource/Attribute:url_icon' => 'Icon\'s hyperlink',
  465. 'Class:SynchroDataSource/Attribute:url_icon+' => 'Hyperlink a (small) image representing the application with which iTop is synchronized',
  466. 'Class:SynchroDataSource/Attribute:url_application' => 'Application\'s hyperlink',
  467. 'Class:SynchroDataSource/Attribute:url_application+' => 'Hyperlink to the iTop object in the external application with which iTop is synchronized (if applicable). Possible placeholders: $this->attribute$ and $replica->primary_key$',
  468. 'Class:SynchroDataSource/Attribute:reconciliation_policy' => 'Reconciliation policy', //TODO enum values
  469. 'Class:SynchroDataSource/Attribute:full_load_periodicity' => 'Full load interval',
  470. 'Class:SynchroDataSource/Attribute:full_load_periodicity+' => 'A complete reload of all data must occur at least as often as specified here',
  471. 'Class:SynchroDataSource/Attribute:action_on_zero' => 'Action on zero',
  472. 'Class:SynchroDataSource/Attribute:action_on_zero+' => 'Action taken when the search returns no object',
  473. 'Class:SynchroDataSource/Attribute:action_on_one' => 'Action on one',
  474. 'Class:SynchroDataSource/Attribute:action_on_one+' => 'Action taken when the search returns exactly one object',
  475. 'Class:SynchroDataSource/Attribute:action_on_multiple' => 'Action on many',
  476. 'Class:SynchroDataSource/Attribute:action_on_multiple+' => 'Action taken when the search returns more than one object',
  477. 'Class:SynchroDataSource/Attribute:user_delete_policy' => 'Users allowed',
  478. 'Class:SynchroDataSource/Attribute:user_delete_policy+' => 'Who is allowed to delete synchronized objects',
  479. 'Class:SynchroDataSource/Attribute:user_delete_policy' => 'Users allowed',
  480. 'Class:SynchroDataSource/Attribute:delete_policy/Value:never' => 'Nobody',
  481. 'Class:SynchroDataSource/Attribute:delete_policy/Value:depends' => 'Administrators only',
  482. 'Class:SynchroDataSource/Attribute:delete_policy/Value:always' => 'All allowed users',
  483. 'Class:SynchroDataSource/Attribute:delete_policy_update' => 'Update rules',
  484. 'Class:SynchroDataSource/Attribute:delete_policy_update+' => 'Syntax: field_name:value; ...',
  485. 'Class:SynchroDataSource/Attribute:delete_policy_retention' => 'Retention Duration',
  486. 'Class:SynchroDataSource/Attribute:delete_policy_retention+' => 'How much time an obsolete object is kept before being deleted',
  487. 'Class:SynchroDataSource/Attribute:database_table_name' => 'Data table',
  488. 'Class:SynchroDataSource/Attribute:database_table_name+' => 'Name of the table to store the synchronization data. If left empty, a default name will be computed.',
  489. 'SynchroDataSource:Description' => 'Description',
  490. 'SynchroDataSource:Reconciliation' => 'Search &amp; reconciliation',
  491. 'SynchroDataSource:Deletion' => 'Deletion rules',
  492. 'SynchroDataSource:Status' => 'Status',
  493. 'SynchroDataSource:Information' => 'Information',
  494. 'SynchroDataSource:Definition' => 'Definition',
  495. 'Core:SynchroAttributes' => 'Attributes',
  496. 'Core:SynchroStatus' => 'Status',
  497. 'Core:Synchro:ErrorsLabel' => 'Errors',
  498. 'Core:Synchro:CreatedLabel' => 'Created',
  499. 'Core:Synchro:ModifiedLabel' => 'Modified',
  500. 'Core:Synchro:UnchangedLabel' => 'Unchanged',
  501. 'Core:Synchro:ReconciledErrorsLabel' => 'Errors',
  502. 'Core:Synchro:ReconciledLabel' => 'Reconciled',
  503. 'Core:Synchro:ReconciledNewLabel' => 'Created',
  504. 'Core:SynchroReconcile:Yes' => 'Yes',
  505. 'Core:SynchroReconcile:No' => 'No',
  506. 'Core:SynchroUpdate:Yes' => 'Yes',
  507. 'Core:SynchroUpdate:No' => 'No',
  508. 'Core:Synchro:LastestStatus' => 'Latest Status',
  509. 'Core:Synchro:History' => 'Synchronization History',
  510. 'Core:Synchro:NeverRun' => 'This synchro was never run. No log yet.',
  511. 'Core:Synchro:SynchroEndedOn_Date' => 'The latest synchronization ended on %1$s.',
  512. 'Core:Synchro:SynchroRunningStartedOn_Date' => 'The synchronization started on %1$s is still running...',
  513. 'Menu:DataSources' => 'Synchronization Data Sources',
  514. 'Menu:DataSources+' => 'All Synchronization Data Sources',
  515. 'Core:Synchro:label_repl_ignored' => 'Ignored (%1$s)',
  516. 'Core:Synchro:label_repl_disappeared' => 'Disappeared (%1$s)',
  517. 'Core:Synchro:label_repl_existing' => 'Existing (%1$s)',
  518. 'Core:Synchro:label_repl_new' => 'New (%1$s)',
  519. 'Core:Synchro:label_obj_deleted' => 'Deleted (%1$s)',
  520. 'Core:Synchro:label_obj_obsoleted' => 'Obsoleted (%1$s)',
  521. 'Core:Synchro:label_obj_disappeared_errors' => 'Errors (%1$s)',
  522. 'Core:Synchro:label_obj_disappeared_no_action' => 'No Action (%1$s)',
  523. 'Core:Synchro:label_obj_unchanged' => 'Unchanged (%1$s)',
  524. 'Core:Synchro:label_obj_updated' => 'Updated (%1$s)',
  525. 'Core:Synchro:label_obj_updated_errors' => 'Errors (%1$s)',
  526. 'Core:Synchro:label_obj_new_unchanged' => 'Unchanged (%1$s)',
  527. 'Core:Synchro:label_obj_new_updated' => 'Updated (%1$s)',
  528. 'Core:Synchro:label_obj_created' => 'Created (%1$s)',
  529. 'Core:Synchro:label_obj_new_errors' => 'Errors (%1$s)',
  530. 'Core:Synchro:History' => 'Synchronization History',
  531. 'Core:SynchroLogTitle' => '%1$s - %2$s',
  532. 'Core:Synchro:Nb_Replica' => 'Replica processed: %1$s',
  533. 'Core:Synchro:Nb_Class:Objects' => '%1$s: %2$s',
  534. 'Class:SynchroDataSource/Error:AtLeastOneReconciliationKeyMustBeSpecified' => 'At Least one reconciliation key must be specified, or the reconciliation policy must be to use the primary key.',
  535. 'Class:SynchroDataSource/Error:DeleteRetentionDurationMustBeSpecified' => 'A delete retention period must be specified, since objects are to be deleted after being marked as obsolete',
  536. 'Class:SynchroDataSource/Error:DeletePolicyUpdateMustBeSpecified' => 'Obsolete objects are to be updated, but no update is specified.',
  537. 'Class:SynchroDataSource/Error:DataTableAlreadyExists' => 'The table %1$s already exists in the database. Please use another name for the synchro data table.',
  538. 'Core:SynchroReplica:PublicData' => 'Public Data',
  539. 'Core:SynchroReplica:PrivateDetails' => 'Private Details',
  540. 'Core:SynchroReplica:BackToDataSource' => 'Go Back to the Synchro Data Source: %1$s',
  541. 'Core:SynchroReplica:ListOfReplicas' => 'List of Replica',
  542. 'Core:SynchroAttExtKey:ReconciliationById' => 'id (Primary Key)',
  543. 'Core:SynchroAtt:attcode' => 'Attribute',
  544. 'Core:SynchroAtt:attcode+' => 'Field of the object',
  545. 'Core:SynchroAtt:reconciliation' => 'Reconciliation ?',
  546. 'Core:SynchroAtt:reconciliation+' => 'Used for searching',
  547. 'Core:SynchroAtt:update' => 'Update ?',
  548. 'Core:SynchroAtt:update+' => 'Used to update the object',
  549. 'Core:SynchroAtt:update_policy' => 'Update Policy',
  550. 'Core:SynchroAtt:update_policy+' => 'Behavior of the updated field',
  551. 'Core:SynchroAtt:reconciliation_attcode' => 'Reconciliation Key',
  552. 'Core:SynchroAtt:reconciliation_attcode+' => 'Attribute Code for the External Key Reconciliation',
  553. 'Core:SyncDataExchangeComment' => '(Data Synchro)',
  554. 'Core:Synchro:ListOfDataSources' => 'List of data sources:',
  555. 'Core:Synchro:LastSynchro' => 'Last synchronization:',
  556. 'Core:Synchro:ThisObjectIsSynchronized' => 'This object is synchronized with an external data source',
  557. 'Core:Synchro:TheObjectWasCreatedBy_Source' => 'The object was <b>created</b> by the external data source %1$s',
  558. 'Core:Synchro:TheObjectCanBeDeletedBy_Source' => 'The object <b>can be deleted</b> by the external data source %1$s',
  559. 'Core:Synchro:TheObjectCannotBeDeletedByUser_Source' => 'You <b>cannot delete the object</b> because it is owned by the external data source %1$s',
  560. 'TitleSynchroExecution' => 'Execution of the synchronization',
  561. 'Class:SynchroDataSource:DataTable' => 'Database table: %1$s',
  562. 'Core:SyncDataSourceObsolete' => 'The data source is marked as obsolete. Operation cancelled.',
  563. 'Core:SyncDataSourceAccessRestriction' => 'Only adminstrators or the user specified in the data source can execute this operation. Operation cancelled.',
  564. 'Core:SyncTooManyMissingReplicas' => 'All records have been untouched for some time (all of the objects could be deleted). Please check that the process that writes into the synchronization table is still running. Operation cancelled.',
  565. 'Core:SyncSplitModeCLIOnly' => 'The synchronization can be executed in chunks only if run in mode CLI',
  566. 'Core:Synchro:ListReplicas_AllReplicas_Errors_Warnings' => '%1$s replicas, %2$s error(s), %3$s warning(s).',
  567. 'Core:SynchroReplica:TargetObject' => 'Synchronized Object: %1$s',
  568. 'Class:AsyncSendEmail' => 'Email (asynchronous)',
  569. 'Class:AsyncSendEmail/Attribute:to' => 'To',
  570. 'Class:AsyncSendEmail/Attribute:subject' => 'Subject',
  571. 'Class:AsyncSendEmail/Attribute:body' => 'Body',
  572. 'Class:AsyncSendEmail/Attribute:header' => 'Header',
  573. 'Class:CMDBChangeOpSetAttributeOneWayPassword' => 'Encrypted Password',
  574. 'Class:CMDBChangeOpSetAttributeOneWayPassword/Attribute:prev_pwd' => 'Previous Value',
  575. 'Class:CMDBChangeOpSetAttributeEncrypted' => 'Encrypted Field',
  576. 'Class:CMDBChangeOpSetAttributeEncrypted/Attribute:prevstring' => 'Previous Value',
  577. 'Class:CMDBChangeOpSetAttributeCaseLog' => 'Case Log',
  578. 'Class:CMDBChangeOpSetAttributeCaseLog/Attribute:lastentry' => 'Last Entry',
  579. 'Class:SynchroDataSource' => 'Synchro Data Source',
  580. 'Class:SynchroDataSource/Attribute:status/Value:implementation' => 'Implementation',
  581. 'Class:SynchroDataSource/Attribute:status/Value:obsolete' => 'Obsolete',
  582. 'Class:SynchroDataSource/Attribute:status/Value:production' => 'Production',
  583. 'Class:SynchroDataSource/Attribute:scope_restriction' => 'Scope restriction',
  584. 'Class:SynchroDataSource/Attribute:reconciliation_policy/Value:use_attributes' => 'Use the attributes',
  585. 'Class:SynchroDataSource/Attribute:reconciliation_policy/Value:use_primary_key' => 'Use the primary_key field',
  586. 'Class:SynchroDataSource/Attribute:action_on_zero/Value:create' => 'Create',
  587. 'Class:SynchroDataSource/Attribute:action_on_zero/Value:error' => 'Error',
  588. 'Class:SynchroDataSource/Attribute:action_on_one/Value:error' => 'Error',
  589. 'Class:SynchroDataSource/Attribute:action_on_one/Value:update' => 'Update',
  590. 'Class:SynchroDataSource/Attribute:action_on_multiple/Value:create' => 'Create',
  591. 'Class:SynchroDataSource/Attribute:action_on_multiple/Value:error' => 'Error',
  592. 'Class:SynchroDataSource/Attribute:action_on_multiple/Value:take_first' => 'Take the first one (random?)',
  593. 'Class:SynchroDataSource/Attribute:delete_policy' => 'Delete Policy',
  594. 'Class:SynchroDataSource/Attribute:delete_policy/Value:delete' => 'Delete',
  595. 'Class:SynchroDataSource/Attribute:delete_policy/Value:ignore' => 'Ignore',
  596. 'Class:SynchroDataSource/Attribute:delete_policy/Value:update' => 'Update',
  597. 'Class:SynchroDataSource/Attribute:delete_policy/Value:update_then_delete' => 'Update then Delete',
  598. 'Class:SynchroDataSource/Attribute:attribute_list' => 'Attributes List',
  599. 'Class:SynchroDataSource/Attribute:user_delete_policy/Value:administrators' => 'Administrators only',
  600. 'Class:SynchroDataSource/Attribute:user_delete_policy/Value:everybody' => 'Everybody allowed to delete such objects',
  601. 'Class:SynchroDataSource/Attribute:user_delete_policy/Value:nobody' => 'Nobody',
  602. 'Class:SynchroAttribute' => 'Synchro Attribute',
  603. 'Class:SynchroAttribute/Attribute:sync_source_id' => 'Sycnhro Data Source',
  604. 'Class:SynchroAttribute/Attribute:attcode' => 'Attribute Code',
  605. 'Class:SynchroAttribute/Attribute:update' => 'Update',
  606. 'Class:SynchroAttribute/Attribute:reconcile' => 'Reconcile',
  607. 'Class:SynchroAttribute/Attribute:update_policy' => 'Update Policy',
  608. 'Class:SynchroAttribute/Attribute:update_policy/Value:master_locked' => 'Locked',
  609. 'Class:SynchroAttribute/Attribute:update_policy/Value:master_unlocked' => 'Unlocked',
  610. 'Class:SynchroAttribute/Attribute:update_policy/Value:write_if_empty' => 'Initialize if empty',
  611. 'Class:SynchroAttribute/Attribute:finalclass' => 'Class',
  612. 'Class:SynchroAttExtKey' => 'Synchro Attribute (ExtKey)',
  613. 'Class:SynchroAttExtKey/Attribute:reconciliation_attcode' => 'Reconciliation Attribute',
  614. 'Class:SynchroAttLinkSet' => 'Synchro Attribute (Linkset)',
  615. 'Class:SynchroAttLinkSet/Attribute:row_separator' => 'Rows separator',
  616. 'Class:SynchroAttLinkSet/Attribute:attribute_separator' => 'Attributes separator',
  617. 'Class:SynchroLog' => 'Synchr Log',
  618. 'Class:SynchroLog/Attribute:sync_source_id' => 'Synchro Data Source',
  619. 'Class:SynchroLog/Attribute:start_date' => 'Start Date',
  620. 'Class:SynchroLog/Attribute:end_date' => 'End Date',
  621. 'Class:SynchroLog/Attribute:status' => 'Status',
  622. 'Class:SynchroLog/Attribute:status/Value:completed' => 'Completed',
  623. 'Class:SynchroLog/Attribute:status/Value:error' => 'Error',
  624. 'Class:SynchroLog/Attribute:status/Value:running' => 'Still Running',
  625. 'Class:SynchroLog/Attribute:stats_nb_replica_seen' => 'Nb replica seen',
  626. 'Class:SynchroLog/Attribute:stats_nb_replica_total' => 'Nb replica total',
  627. 'Class:SynchroLog/Attribute:stats_nb_obj_deleted' => 'Nb objects deleted',
  628. 'Class:SynchroLog/Attribute:stats_nb_obj_deleted_errors' => 'Nb of errors while deleting',
  629. 'Class:SynchroLog/Attribute:stats_nb_obj_obsoleted' => 'Nb objects obsoleted',
  630. 'Class:SynchroLog/Attribute:stats_nb_obj_obsoleted_errors' => 'Nb of errors while obsoleting',
  631. 'Class:SynchroLog/Attribute:stats_nb_obj_created' => 'Nb objects created',
  632. 'Class:SynchroLog/Attribute:stats_nb_obj_created_errors' => 'Nb or errors while creating',
  633. 'Class:SynchroLog/Attribute:stats_nb_obj_updated' => 'Nb objects updated',
  634. 'Class:SynchroLog/Attribute:stats_nb_obj_updated_errors' => 'Nb errors while updating',
  635. 'Class:SynchroLog/Attribute:stats_nb_replica_reconciled_errors' => 'Nb of errors during reconciliation',
  636. 'Class:SynchroLog/Attribute:stats_nb_replica_disappeared_no_action' => 'Nb replica disappeared',
  637. 'Class:SynchroLog/Attribute:stats_nb_obj_new_updated' => 'Nb objects updated',
  638. 'Class:SynchroLog/Attribute:stats_nb_obj_new_unchanged' => 'Nb objects unchanged',
  639. 'Class:SynchroLog/Attribute:last_error' => 'Last error',
  640. 'Class:SynchroLog/Attribute:traces' => 'Traces',
  641. 'Class:SynchroReplica' => 'Synchro Replica',
  642. 'Class:SynchroReplica/Attribute:sync_source_id' => 'Synchro Data Source',
  643. 'Class:SynchroReplica/Attribute:dest_id' => 'Destination object (ID)',
  644. 'Class:SynchroReplica/Attribute:dest_class' => 'Destination type',
  645. 'Class:SynchroReplica/Attribute:status_last_seen' => 'Last seen',
  646. 'Class:SynchroReplica/Attribute:status' => 'Status',
  647. 'Class:SynchroReplica/Attribute:status/Value:modified' => 'Modified',
  648. 'Class:SynchroReplica/Attribute:status/Value:new' => 'New',
  649. 'Class:SynchroReplica/Attribute:status/Value:obsolete' => 'Obsolete',
  650. 'Class:SynchroReplica/Attribute:status/Value:orphan' => 'Orphan',
  651. 'Class:SynchroReplica/Attribute:status/Value:synchronized' => 'Synchronized',
  652. 'Class:SynchroReplica/Attribute:status_dest_creator' => 'Object Created ?',
  653. 'Class:SynchroReplica/Attribute:status_last_error' => 'Last Error',
  654. 'Class:SynchroReplica/Attribute:status_last_warning' => 'Warnings',
  655. 'Class:SynchroReplica/Attribute:info_creation_date' => 'Creation Date',
  656. 'Class:SynchroReplica/Attribute:info_last_modified' => 'Last Modified Date',
  657. 'Class:appUserPreferences' => 'User Preferences',
  658. 'Class:appUserPreferences/Attribute:userid' => 'User',
  659. 'Class:appUserPreferences/Attribute:preferences' => 'Prefs',
  660. 'Core:ExecProcess:Code1' => 'Wrong command or command finished with errors (e.g. wrong script name)',
  661. 'Core:ExecProcess:Code255' => 'PHP Error (parsing, or runtime)',
  662. ));
  663. //
  664. // Attribute Duration
  665. //
  666. Dict::Add('EN US', 'English', 'English', array(
  667. 'Core:Duration_Seconds' => '%1$ds',
  668. 'Core:Duration_Minutes_Seconds' =>'%1$dmin %2$ds',
  669. 'Core:Duration_Hours_Minutes_Seconds' => '%1$dh %2$dmin %3$ds',
  670. 'Core:Duration_Days_Hours_Minutes_Seconds' => '%1$sd %2$dh %3$dmin %4$ds',
  671. ));
  672. ?>