tr.dictionary.itop.core.php 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803
  1. <?php
  2. // Copyright (C) 2010-2017 Combodo SARL
  3. //
  4. // This file is part of iTop.
  5. //
  6. // iTop is free software; you can redistribute it and/or modify
  7. // it under the terms of the GNU Affero General Public License as published by
  8. // the Free Software Foundation, either version 3 of the License, or
  9. // (at your option) any later version.
  10. //
  11. // iTop is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. // GNU Affero General Public License for more details.
  15. //
  16. // You should have received a copy of the GNU Affero General Public License
  17. // along with iTop. If not, see <http://www.gnu.org/licenses/>
  18. /**
  19. * Localized data
  20. *
  21. * @author Izzet Sirin <izzet.sirin@htr.com.tr>
  22. * @copyright Copyright (C) 2010-2017 Combodo SARL
  23. * @license http://opensource.org/licenses/AGPL-3.0
  24. */
  25. //////////////////////////////////////////////////////////////////////
  26. // Classes in 'core/cmdb'
  27. //////////////////////////////////////////////////////////////////////
  28. //
  29. //
  30. // Class: CMDBChange
  31. //
  32. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  33. 'Class:CMDBChange' => 'Değişiklik',
  34. 'Class:CMDBChange+' => 'Değişiklik izleme',
  35. 'Class:CMDBChange/Attribute:date' => 'tarih',
  36. 'Class:CMDBChange/Attribute:date+' => 'değişikliğin yapıldığı tarih',
  37. 'Class:CMDBChange/Attribute:userinfo' => 'diğer bilgiler',
  38. 'Class:CMDBChange/Attribute:userinfo+' => 'ilave bilgiler',
  39. ));
  40. //
  41. // Class: CMDBChangeOp
  42. //
  43. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  44. 'Class:CMDBChangeOp' => 'Değişiklik işlemi',
  45. 'Class:CMDBChangeOp+' => 'Değişiklik izleme',
  46. 'Class:CMDBChangeOp/Attribute:change' => 'değişiklik',
  47. 'Class:CMDBChangeOp/Attribute:change+' => 'değişiklik',
  48. 'Class:CMDBChangeOp/Attribute:date' => 'tarih',
  49. 'Class:CMDBChangeOp/Attribute:date+' => 'değişikliğin yapıldığı zaman',
  50. 'Class:CMDBChangeOp/Attribute:userinfo' => 'kullanıcı',
  51. 'Class:CMDBChangeOp/Attribute:userinfo+' => 'değişikliğ yapan',
  52. 'Class:CMDBChangeOp/Attribute:objclass' => 'nesne sınıfı',
  53. 'Class:CMDBChangeOp/Attribute:objclass+' => 'nesne sınıfı',
  54. 'Class:CMDBChangeOp/Attribute:objkey' => 'nesne no',
  55. 'Class:CMDBChangeOp/Attribute:objkey+' => 'nesne no',
  56. 'Class:CMDBChangeOp/Attribute:finalclass' => 'tip',
  57. 'Class:CMDBChangeOp/Attribute:finalclass+' => '',
  58. ));
  59. //
  60. // Class: CMDBChangeOpCreate
  61. //
  62. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  63. 'Class:CMDBChangeOpCreate' => 'nesne yaratımı',
  64. 'Class:CMDBChangeOpCreate+' => 'Nesne Yaratım izleme',
  65. ));
  66. //
  67. // Class: CMDBChangeOpDelete
  68. //
  69. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  70. 'Class:CMDBChangeOpDelete' => 'nesne silimi',
  71. 'Class:CMDBChangeOpDelete+' => 'Nesne silme izleme',
  72. ));
  73. //
  74. // Class: CMDBChangeOpSetAttribute
  75. //
  76. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  77. 'Class:CMDBChangeOpSetAttribute' => 'nesne değişikliği',
  78. 'Class:CMDBChangeOpSetAttribute+' => 'Nesne değişiminin izlemesi',
  79. 'Class:CMDBChangeOpSetAttribute/Attribute:attcode' => 'Özellik',
  80. 'Class:CMDBChangeOpSetAttribute/Attribute:attcode+' => 'Değişen özelliğin kodu',
  81. ));
  82. //
  83. // Class: CMDBChangeOpSetAttributeScalar
  84. //
  85. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  86. 'Class:CMDBChangeOpSetAttributeScalar' => 'özellik değişimi',
  87. 'Class:CMDBChangeOpSetAttributeScalar+' => 'Nesne özellik değişimi izleme',
  88. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:oldvalue' => 'Önceki değer',
  89. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:oldvalue+' => 'önceki değer',
  90. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:newvalue' => 'Yeni değer',
  91. 'Class:CMDBChangeOpSetAttributeScalar/Attribute:newvalue+' => 'yeni değer',
  92. ));
  93. // Used by CMDBChangeOp... & derived classes
  94. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  95. 'Change:ObjectCreated' => 'Nesne yaratıldı',
  96. 'Change:ObjectDeleted' => 'Nesne silindi',
  97. 'Change:AttName_SetTo_NewValue_PreviousValue_OldValue' => '%1$s\'nin değeri %2$s olarak atandı (önceki değer: %3$s)',
  98. 'Change:AttName_SetTo' => '%1$s\'nin değeri %2$s olarak atandı',
  99. 'Change:Text_AppendedTo_AttName' => '%2$s\'ye %1$s eklendi',
  100. 'Change:AttName_Changed_PreviousValue_OldValue' => '%1$\'nin değeri deiştirildi, önceki değer: %2$s',
  101. 'Change:AttName_Changed' => '%1$s değiştirildi',
  102. ));
  103. //
  104. // Class: CMDBChangeOpSetAttributeBlob
  105. //
  106. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  107. 'Class:CMDBChangeOpSetAttributeBlob' => 'tarih değişimi',
  108. 'Class:CMDBChangeOpSetAttributeBlob+' => 'tarih değişim izleme',
  109. 'Class:CMDBChangeOpSetAttributeBlob/Attribute:prevdata' => 'Önceki veri',
  110. 'Class:CMDBChangeOpSetAttributeBlob/Attribute:prevdata+' => 'önceki değer',
  111. ));
  112. //
  113. // Class: CMDBChangeOpSetAttributeText
  114. //
  115. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  116. 'Class:CMDBChangeOpSetAttributeText' => 'metin değişikliği',
  117. 'Class:CMDBChangeOpSetAttributeText+' => 'metin değişikliği izleme',
  118. 'Class:CMDBChangeOpSetAttributeText/Attribute:prevdata' => 'Önceki veri',
  119. 'Class:CMDBChangeOpSetAttributeText/Attribute:prevdata+' => 'önceki değer',
  120. ));
  121. //
  122. // Class: Event
  123. //
  124. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  125. 'Class:Event' => 'Olay kaydı',
  126. 'Class:Event+' => 'Uygulama olayı',
  127. 'Class:Event/Attribute:message' => 'mesaj',
  128. 'Class:Event/Attribute:message+' => 'Olay tanımlama',
  129. 'Class:Event/Attribute:date' => 'tarih',
  130. 'Class:Event/Attribute:date+' => 'değişiklik tarihi',
  131. 'Class:Event/Attribute:userinfo' => 'kullanıcı bigileri',
  132. 'Class:Event/Attribute:userinfo+' => 'olay anındaki kullanıcı',
  133. 'Class:Event/Attribute:finalclass' => 'tip',
  134. 'Class:Event/Attribute:finalclass+' => '',
  135. ));
  136. //
  137. // Class: EventNotification
  138. //
  139. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  140. 'Class:EventNotification' => 'Olay uyarımı',
  141. 'Class:EventNotification+' => 'Uyarının tarihçesi',
  142. 'Class:EventNotification/Attribute:trigger_id' => 'Uyarı tetikçisi',
  143. 'Class:EventNotification/Attribute:trigger_id+' => 'kullanıcı hesabı',
  144. 'Class:EventNotification/Attribute:action_id' => 'kullanıcı',
  145. 'Class:EventNotification/Attribute:action_id+' => 'kullanıcı hesabı',
  146. 'Class:EventNotification/Attribute:object_id' => 'Nesne belirleyicisi',
  147. 'Class:EventNotification/Attribute:object_id+' => 'nesne belirleyicisi (olayı tetikleyen nesne ?)',
  148. ));
  149. //
  150. // Class: EventNotificationEmail
  151. //
  152. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  153. 'Class:EventNotificationEmail' => 'E-posta gönderim işlemi',
  154. 'Class:EventNotificationEmail+' => 'Gönderilen E-posta tarihçesi',
  155. 'Class:EventNotificationEmail/Attribute:to' => 'Kime',
  156. 'Class:EventNotificationEmail/Attribute:to+' => 'Kime',
  157. 'Class:EventNotificationEmail/Attribute:cc' => 'Kopya',
  158. 'Class:EventNotificationEmail/Attribute:cc+' => 'Kopya',
  159. 'Class:EventNotificationEmail/Attribute:bcc' => 'Gizli Kopya',
  160. 'Class:EventNotificationEmail/Attribute:bcc+' => 'Gizli Kopya',
  161. 'Class:EventNotificationEmail/Attribute:from' => 'Kimden',
  162. 'Class:EventNotificationEmail/Attribute:from+' => 'Mesajı gönderen',
  163. 'Class:EventNotificationEmail/Attribute:subject' => 'Konu',
  164. 'Class:EventNotificationEmail/Attribute:subject+' => 'Konu',
  165. 'Class:EventNotificationEmail/Attribute:body' => 'Mesaj',
  166. 'Class:EventNotificationEmail/Attribute:body+' => 'Mesaj',
  167. ));
  168. //
  169. // Class: EventIssue
  170. //
  171. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  172. 'Class:EventIssue' => 'Olay ekle',
  173. 'Class:EventIssue+' => 'Olay tipi (uyarı, hata, vb.)',
  174. 'Class:EventIssue/Attribute:issue' => 'Konu',
  175. 'Class:EventIssue/Attribute:issue+' => 'Olan',
  176. 'Class:EventIssue/Attribute:impact' => 'Etkisi',
  177. 'Class:EventIssue/Attribute:impact+' => 'Sonuçları',
  178. 'Class:EventIssue/Attribute:page' => 'Sayfa',
  179. 'Class:EventIssue/Attribute:page+' => 'HTTP giriş noktası',
  180. 'Class:EventIssue/Attribute:arguments_post' => 'Verilen değişkenlerin değerleri',
  181. 'Class:EventIssue/Attribute:arguments_post+' => 'HTTP değişken değerleri',
  182. 'Class:EventIssue/Attribute:arguments_get' => 'URL POST değişken değerleri',
  183. 'Class:EventIssue/Attribute:arguments_get+' => 'HTTP GET değişken değerleri',
  184. 'Class:EventIssue/Attribute:callstack' => 'Çağrım sırası',
  185. 'Class:EventIssue/Attribute:callstack+' => 'Çağrım sırası',
  186. 'Class:EventIssue/Attribute:data' => 'Veri',
  187. 'Class:EventIssue/Attribute:data+' => 'Diğer bilgiler',
  188. ));
  189. //
  190. // Classes: EventWebService and EventRestService
  191. //
  192. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  193. 'Class:EventWebService' => 'Web service olayı',
  194. 'Class:EventWebService+' => 'web service çağrım sırası',
  195. 'Class:EventWebService/Attribute:verb' => 'Fiil',
  196. 'Class:EventWebService/Attribute:verb+' => 'Operasyonun adı',
  197. 'Class:EventWebService/Attribute:result' => 'Sonuç',
  198. 'Class:EventWebService/Attribute:result+' => 'Genel başarı/başarısızlık',
  199. 'Class:EventWebService/Attribute:log_info' => 'Bilgi kaydı',
  200. 'Class:EventWebService/Attribute:log_info+' => 'Sonuç bilgi kaydı',
  201. 'Class:EventWebService/Attribute:log_warning' => 'Uyarı kaydı',
  202. 'Class:EventWebService/Attribute:log_warning+' => 'Sonuç uyarı kaydı',
  203. 'Class:EventWebService/Attribute:log_error' => 'Hata kaydı',
  204. 'Class:EventWebService/Attribute:log_error+' => 'Sonuç hata kaydı',
  205. 'Class:EventWebService/Attribute:data' => 'Veri',
  206. 'Class:EventWebService/Attribute:data+' => 'Sonuç veri',
  207. 'Class:EventRestService' => 'REST/JSON call~~',
  208. 'Class:EventRestService+' => 'Trace of a REST/JSON service call~~',
  209. 'Class:EventRestService/Attribute:operation' => 'Operation~~',
  210. 'Class:EventRestService/Attribute:operation+' => 'Argument \'operation\'~~',
  211. 'Class:EventRestService/Attribute:version' => 'Version~~',
  212. 'Class:EventRestService/Attribute:version+' => 'Argument \'version\'~~',
  213. 'Class:EventRestService/Attribute:json_input' => 'Input~~',
  214. 'Class:EventRestService/Attribute:json_input+' => 'Argument \'json_data\'~~',
  215. 'Class:EventRestService/Attribute:code' => 'Code~~',
  216. 'Class:EventRestService/Attribute:code+' => 'Result code~~',
  217. 'Class:EventRestService/Attribute:json_output' => 'Response~~',
  218. 'Class:EventRestService/Attribute:json_output+' => 'HTTP response (json)~~',
  219. 'Class:EventRestService/Attribute:provider' => 'Provider~~',
  220. 'Class:EventRestService/Attribute:provider+' => 'PHP class implementing the expected operation~~',
  221. ));
  222. //
  223. // Class: Action
  224. //
  225. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  226. 'Class:Action' => 'Özel işlem',
  227. 'Class:Action+' => 'Kullanıcının tanımladığı işlemler',
  228. 'Class:Action/Attribute:name' => 'Adı',
  229. 'Class:Action/Attribute:name+' => '',
  230. 'Class:Action/Attribute:description' => 'Tanımlama',
  231. 'Class:Action/Attribute:description+' => '',
  232. 'Class:Action/Attribute:status' => 'Durum',
  233. 'Class:Action/Attribute:status+' => 'Kullanımda mı?',
  234. 'Class:Action/Attribute:status/Value:test' => 'Test aşamasında',
  235. 'Class:Action/Attribute:status/Value:test+' => 'Test aşamasında',
  236. 'Class:Action/Attribute:status/Value:enabled' => 'Kullanımda',
  237. 'Class:Action/Attribute:status/Value:enabled+' => 'Kullanımda',
  238. 'Class:Action/Attribute:status/Value:disabled' => 'Etkin değil',
  239. 'Class:Action/Attribute:status/Value:disabled+' => 'Etkin değil',
  240. 'Class:Action/Attribute:trigger_list' => 'İlgili tetikleyiciler',
  241. 'Class:Action/Attribute:trigger_list+' => 'İşleme bağlı tetikleyici',
  242. 'Class:Action/Attribute:finalclass' => 'Tip',
  243. 'Class:Action/Attribute:finalclass+' => '',
  244. ));
  245. //
  246. // Class: ActionNotification
  247. //
  248. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  249. 'Class:ActionNotification' => 'Bildirim',
  250. 'Class:ActionNotification+' => 'Bildirim (soyut)',
  251. ));
  252. //
  253. // Class: ActionEmail
  254. //
  255. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  256. 'Class:ActionEmail' => 'E-posta bildirimi',
  257. 'Class:ActionEmail+' => '',
  258. 'Class:ActionEmail/Attribute:test_recipient' => 'Test alıcısı',
  259. 'Class:ActionEmail/Attribute:test_recipient+' => 'Durumu "Test" olması durumundaki alıcı',
  260. 'Class:ActionEmail/Attribute:from' => 'Kimden',
  261. 'Class:ActionEmail/Attribute:from+' => 'e-posta başlığında gönderilecek',
  262. 'Class:ActionEmail/Attribute:reply_to' => 'Yanıtla',
  263. 'Class:ActionEmail/Attribute:reply_to+' => 'e-posta başlığında gönderilecek',
  264. 'Class:ActionEmail/Attribute:to' => 'Kime',
  265. 'Class:ActionEmail/Attribute:to+' => 'E-posta alıcısı',
  266. 'Class:ActionEmail/Attribute:cc' => 'Kopya',
  267. 'Class:ActionEmail/Attribute:cc+' => 'Kopya',
  268. 'Class:ActionEmail/Attribute:bcc' => 'gizli kopya',
  269. 'Class:ActionEmail/Attribute:bcc+' => 'Gizli alıcı',
  270. 'Class:ActionEmail/Attribute:subject' => 'konu',
  271. 'Class:ActionEmail/Attribute:subject+' => 'E-posta konusu',
  272. 'Class:ActionEmail/Attribute:body' => 'E-posta içeriği',
  273. 'Class:ActionEmail/Attribute:body+' => 'E-posta içeriği',
  274. 'Class:ActionEmail/Attribute:importance' => 'önem derecesi',
  275. 'Class:ActionEmail/Attribute:importance+' => 'önem derecesi',
  276. 'Class:ActionEmail/Attribute:importance/Value:low' => 'düşük',
  277. 'Class:ActionEmail/Attribute:importance/Value:low+' => 'düşük',
  278. 'Class:ActionEmail/Attribute:importance/Value:normal' => 'normal',
  279. 'Class:ActionEmail/Attribute:importance/Value:normal+' => 'normal',
  280. 'Class:ActionEmail/Attribute:importance/Value:high' => 'yüksek',
  281. 'Class:ActionEmail/Attribute:importance/Value:high+' => 'yüksek',
  282. ));
  283. //
  284. // Class: Trigger
  285. //
  286. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  287. 'Class:Trigger' => 'Tetikleyici',
  288. 'Class:Trigger+' => 'Özel olay yürütücü',
  289. 'Class:Trigger/Attribute:description' => 'Tanımlama',
  290. 'Class:Trigger/Attribute:description+' => 'tek satır tanımlama',
  291. 'Class:Trigger/Attribute:action_list' => 'Tetiklenen işlemler',
  292. 'Class:Trigger/Attribute:action_list+' => 'Tetiklenen işlemler',
  293. 'Class:Trigger/Attribute:finalclass' => 'Tip',
  294. 'Class:Trigger/Attribute:finalclass+' => '',
  295. ));
  296. //
  297. // Class: TriggerOnObject
  298. //
  299. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  300. 'Class:TriggerOnObject' => 'Tetiklenen (sınıf bağımlılığı)',
  301. 'Class:TriggerOnObject+' => 'Verilen sınıflar üzerinde işlemleri gerçekleştir',
  302. 'Class:TriggerOnObject/Attribute:target_class' => 'Hedef sınıf',
  303. 'Class:TriggerOnObject/Attribute:target_class+' => '',
  304. ));
  305. //
  306. // Class: TriggerOnStateChange
  307. //
  308. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  309. 'Class:TriggerOnStateChange' => 'Tetiklenen (durum değişikliğinde)',
  310. 'Class:TriggerOnStateChange+' => 'Durum değişikliğinde tetiklenen işlemler',
  311. 'Class:TriggerOnStateChange/Attribute:state' => 'Durum',
  312. 'Class:TriggerOnStateChange/Attribute:state+' => '',
  313. ));
  314. //
  315. // Class: TriggerOnStateEnter
  316. //
  317. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  318. 'Class:TriggerOnStateEnter' => 'Tetiklenen (duruma girişte)',
  319. 'Class:TriggerOnStateEnter+' => 'Durum değişikliğinde tetiklenen işlemler (duruma giriş)',
  320. ));
  321. //
  322. // Class: TriggerOnStateLeave
  323. //
  324. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  325. 'Class:TriggerOnStateLeave' => 'Tetiklenen (durum çıkışında)',
  326. 'Class:TriggerOnStateLeave+' => 'Durum değişikliğinde tetiklenen işlemler (duruma çıkış)',
  327. ));
  328. //
  329. // Class: TriggerOnObjectCreate
  330. //
  331. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  332. 'Class:TriggerOnObjectCreate' => 'Tetiklenen (nesne yaratımında)',
  333. 'Class:TriggerOnObjectCreate+' => 'Verilen sınıf tipi nesne yaratımında tetiklenen işlemler',
  334. ));
  335. //
  336. // Class: lnkTriggerAction
  337. //
  338. Dict::Add('TR TR', 'Turkish', 'Türkçe', array(
  339. 'Class:lnkTriggerAction' => 'İşlem/Tetikleme',
  340. 'Class:lnkTriggerAction+' => 'Tetikleme ve işlem arasındaki ilişki',
  341. 'Class:lnkTriggerAction/Attribute:action_id' => 'İşlem',
  342. 'Class:lnkTriggerAction/Attribute:action_id+' => 'Yapılacak işlem',
  343. 'Class:lnkTriggerAction/Attribute:action_name' => 'İşlem',
  344. 'Class:lnkTriggerAction/Attribute:action_name+' => '',
  345. 'Class:lnkTriggerAction/Attribute:trigger_id' => 'Tetikleme',
  346. 'Class:lnkTriggerAction/Attribute:trigger_id+' => '',
  347. 'Class:lnkTriggerAction/Attribute:trigger_name' => 'Tetikleme',
  348. 'Class:lnkTriggerAction/Attribute:trigger_name+' => '',
  349. 'Class:lnkTriggerAction/Attribute:order' => 'Order',
  350. 'Class:lnkTriggerAction/Attribute:order+' => 'İşlem uygulama sırası',
  351. 'Core:DeletedObjectLabel' => '%1s (deleted)~~',
  352. 'Core:DeletedObjectTip' => 'The object has been deleted on %1$s (%2$s)~~',
  353. 'Core:UnknownObjectLabel' => 'Object not found (class: %1$s, id: %2$d)~~',
  354. 'Core:UnknownObjectTip' => 'The object could not be found. It may have been deleted some time ago and the log has been purged since.~~',
  355. 'Core:AttributeLinkedSet' => 'Array of objects~~',
  356. 'Core:AttributeLinkedSet+' => 'Any kind of objects of the same class or subclass~~',
  357. 'Core:AttributeLinkedSetIndirect' => 'Array of objects (N-N)~~',
  358. 'Core:AttributeLinkedSetIndirect+' => 'Any kind of objects [subclass] of the same class~~',
  359. 'Core:AttributeInteger' => 'Integer~~',
  360. 'Core:AttributeInteger+' => 'Numeric value (could be negative)~~',
  361. 'Core:AttributeDecimal' => 'Decimal~~',
  362. 'Core:AttributeDecimal+' => 'Decimal value (could be negative)~~',
  363. 'Core:AttributeBoolean' => 'Boolean~~',
  364. 'Core:AttributeBoolean+' => 'Boolean~~',
  365. 'Core:AttributeBoolean/Value:null' => '',
  366. 'Core:AttributeBoolean/Value:yes' => 'Yes~~',
  367. 'Core:AttributeBoolean/Value:no' => 'No~~',
  368. 'Core:AttributeArchiveFlag' => 'Archive flag~~',
  369. 'Core:AttributeArchiveFlag/Value:yes' => 'Yes~~',
  370. 'Core:AttributeArchiveFlag/Value:yes+' => 'This object is visible only in archive mode~~',
  371. 'Core:AttributeArchiveFlag/Value:no' => 'No~~',
  372. 'Core:AttributeArchiveFlag/Label' => 'Archived~~',
  373. 'Core:AttributeArchiveFlag/Label+' => '',
  374. 'Core:AttributeArchiveDate/Label' => 'Archive date~~',
  375. 'Core:AttributeArchiveDate/Label+' => '',
  376. 'Core:AttributeObsolescenceFlag' => 'Obsolescence flag~~',
  377. 'Core:AttributeObsolescenceFlag/Value:yes' => 'Yes~~',
  378. 'Core:AttributeObsolescenceFlag/Value:yes+' => 'This object is excluded from the impact analysis, and hidden from search results~~',
  379. 'Core:AttributeObsolescenceFlag/Value:no' => 'No~~',
  380. 'Core:AttributeObsolescenceFlag/Label' => 'Obsolete~~',
  381. 'Core:AttributeObsolescenceFlag/Label+' => 'Computed dynamically on other attributes~~',
  382. 'Core:AttributeObsolescenceDate/Label' => 'Obsolescence date~~',
  383. 'Core:AttributeObsolescenceDate/Label+' => 'Approximative date at which the object has been considered obsolete~~',
  384. 'Core:AttributeString' => 'String~~',
  385. 'Core:AttributeString+' => 'Alphanumeric string~~',
  386. 'Core:AttributeClass' => 'Class~~',
  387. 'Core:AttributeClass+' => 'Class~~',
  388. 'Core:AttributeApplicationLanguage' => 'User language~~',
  389. 'Core:AttributeApplicationLanguage+' => 'Language and country (EN US)~~',
  390. 'Core:AttributeFinalClass' => 'Class (auto)~~',
  391. 'Core:AttributeFinalClass+' => 'Real class of the object (automatically created by the core)~~',
  392. 'Core:AttributePassword' => 'Password~~',
  393. 'Core:AttributePassword+' => 'Password of an external device~~',
  394. 'Core:AttributeEncryptedString' => 'Encrypted string~~',
  395. 'Core:AttributeEncryptedString+' => 'String encrypted with a local key~~',
  396. 'Core:AttributeText' => 'Text~~',
  397. 'Core:AttributeText+' => 'Multiline character string~~',
  398. 'Core:AttributeHTML' => 'HTML~~',
  399. 'Core:AttributeHTML+' => 'HTML string~~',
  400. 'Core:AttributeEmailAddress' => 'Email address~~',
  401. 'Core:AttributeEmailAddress+' => 'Email address~~',
  402. 'Core:AttributeIPAddress' => 'IP address~~',
  403. 'Core:AttributeIPAddress+' => 'IP address~~',
  404. 'Core:AttributeOQL' => 'OQL~~',
  405. 'Core:AttributeOQL+' => 'Object Query Langage expression~~',
  406. 'Core:AttributeEnum' => 'Enum~~',
  407. 'Core:AttributeEnum+' => 'List of predefined alphanumeric strings~~',
  408. 'Core:AttributeTemplateString' => 'Template string~~',
  409. 'Core:AttributeTemplateString+' => 'String containing placeholders~~',
  410. 'Core:AttributeTemplateText' => 'Template text~~',
  411. 'Core:AttributeTemplateText+' => 'Text containing placeholders~~',
  412. 'Core:AttributeTemplateHTML' => 'Template HTML~~',
  413. 'Core:AttributeTemplateHTML+' => 'HTML containing placeholders~~',
  414. 'Core:AttributeDateTime' => 'Date/time~~',
  415. 'Core:AttributeDateTime+' => 'Date and time (year-month-day hh:mm:ss)~~',
  416. 'Core:AttributeDateTime?SmartSearch' => '
  417. <p>
  418. Date format:<br/>
  419. <b>%1$ss</b><br/>
  420. Example: %2$s
  421. </p>
  422. <p>
  423. Operators:<br/>
  424. <b>&gt;</b><em>date</em><br/>
  425. <b>&lt;</b><em>date</em><br/>
  426. <b>[</b><em>date</em>,<em>date</em><b>]</b>
  427. </p>
  428. <p>
  429. If the time is omitted, it defaults to 00:00:00
  430. </p>~~',
  431. 'Core:AttributeDate' => 'Date~~',
  432. 'Core:AttributeDate+' => 'Date (year-month-day)~~',
  433. 'Core:AttributeDate?SmartSearch' => '
  434. <p>
  435. Date format:<br/>
  436. <b>%1$s</b><br/>
  437. Example: %2$s
  438. </p>
  439. <p>
  440. Operators:<br/>
  441. <b>&gt;</b><em>date</em><br/>
  442. <b>&lt;</b><em>date</em><br/>
  443. <b>[</b><em>date</em>,<em>date</em><b>]</b>
  444. </p>~~',
  445. 'Core:AttributeDeadline' => 'Deadline~~',
  446. 'Core:AttributeDeadline+' => 'Date, displayed relatively to the current time~~',
  447. 'Core:AttributeExternalKey' => 'External key~~',
  448. 'Core:AttributeExternalKey+' => 'External (or foreign) key~~',
  449. 'Core:AttributeHierarchicalKey' => 'Hierarchical Key~~',
  450. 'Core:AttributeHierarchicalKey+' => 'External (or foreign) key to the parent~~',
  451. 'Core:AttributeExternalField' => 'External field~~',
  452. 'Core:AttributeExternalField+' => 'Field mapped to an external key~~',
  453. 'Core:AttributeURL' => 'URL~~',
  454. 'Core:AttributeURL+' => 'Absolute or relative URL as a text string~~',
  455. 'Core:AttributeBlob' => 'Blob~~',
  456. 'Core:AttributeBlob+' => 'Any binary content (document)~~',
  457. 'Core:AttributeOneWayPassword' => 'One way password~~',
  458. 'Core:AttributeOneWayPassword+' => 'One way encrypted (hashed) password~~',
  459. 'Core:AttributeTable' => 'Table~~',
  460. 'Core:AttributeTable+' => 'Indexed array having two dimensions~~',
  461. 'Core:AttributePropertySet' => 'Properties~~',
  462. 'Core:AttributePropertySet+' => 'List of untyped properties (name and value)~~',
  463. 'Core:AttributeFriendlyName' => 'Friendly name~~',
  464. 'Core:AttributeFriendlyName+' => 'Attribute created automatically ; the friendly name is computed after several attributes~~',
  465. 'Core:FriendlyName-Label' => 'Friendly name~~',
  466. 'Core:FriendlyName-Description' => 'Friendly name~~',
  467. 'Change:ObjectModified' => 'Object modified~~',
  468. 'Change:AttName_EntryAdded' => '%1$s modified, new entry added.~~',
  469. 'Change:LinkSet:Added' => 'added %1$s~~',
  470. 'Change:LinkSet:Removed' => 'removed %1$s~~',
  471. 'Change:LinkSet:Modified' => 'modified %1$s~~',
  472. 'Class:EventNotificationEmail/Attribute:attachments' => 'Attachments~~',
  473. 'Class:EventLoginUsage' => 'Login Usage~~',
  474. 'Class:EventLoginUsage+' => 'Connection to the application~~',
  475. 'Class:EventLoginUsage/Attribute:user_id' => 'Login~~',
  476. 'Class:EventLoginUsage/Attribute:user_id+' => 'Login~~',
  477. 'Class:EventLoginUsage/Attribute:contact_name' => 'User Name~~',
  478. 'Class:EventLoginUsage/Attribute:contact_name+' => 'User Name~~',
  479. 'Class:EventLoginUsage/Attribute:contact_email' => 'User Email~~',
  480. 'Class:EventLoginUsage/Attribute:contact_email+' => 'Email Address of the User~~',
  481. 'Class:TriggerOnObject/Attribute:filter' => 'Filter~~',
  482. 'TriggerOnObject:WrongFilterQuery' => 'Wrong filter query: %1$s~~',
  483. 'TriggerOnObject:WrongFilterClass' => 'The filter query must return objects of class \"%1$s\"~~',
  484. 'Class:TriggerOnPortalUpdate' => 'Trigger (when updated from the portal)~~',
  485. 'Class:TriggerOnPortalUpdate+' => 'Trigger on a end-user\'s update from the portal~~',
  486. 'Class:TriggerOnThresholdReached' => 'Trigger (on threshold)~~',
  487. 'Class:TriggerOnThresholdReached+' => 'Trigger on Stop-Watch threshold reached~~',
  488. 'Class:TriggerOnThresholdReached/Attribute:stop_watch_code' => 'Stop watch~~',
  489. 'Class:TriggerOnThresholdReached/Attribute:threshold_index' => 'Threshold~~',
  490. 'Class:SynchroDataSource/Attribute:name' => 'Name~~',
  491. 'Class:SynchroDataSource/Attribute:name+' => 'Name~~',
  492. 'Class:SynchroDataSource/Attribute:description' => 'Description~~',
  493. 'Class:SynchroDataSource/Attribute:status' => 'Status~~',
  494. 'Class:SynchroDataSource/Attribute:scope_class' => 'Target class~~',
  495. 'Class:SynchroDataSource/Attribute:user_id' => 'User~~',
  496. 'Class:SynchroDataSource/Attribute:notify_contact_id' => 'Contact to notify~~',
  497. 'Class:SynchroDataSource/Attribute:notify_contact_id+' => 'Contact to notify in case of error~~',
  498. 'Class:SynchroDataSource/Attribute:url_icon' => 'Icon\'s hyperlink~~',
  499. 'Class:SynchroDataSource/Attribute:url_icon+' => 'Hyperlink a (small) image representing the application with which iTop is synchronized~~',
  500. 'Class:SynchroDataSource/Attribute:url_application' => 'Application\'s hyperlink~~',
  501. '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$~~',
  502. 'Class:SynchroDataSource/Attribute:reconciliation_policy' => 'Reconciliation policy~~',
  503. 'Class:SynchroDataSource/Attribute:full_load_periodicity' => 'Full load interval~~',
  504. 'Class:SynchroDataSource/Attribute:full_load_periodicity+' => 'A complete reload of all data must occur at least as often as specified here~~',
  505. 'Class:SynchroDataSource/Attribute:action_on_zero' => 'Action on zero~~',
  506. 'Class:SynchroDataSource/Attribute:action_on_zero+' => 'Action taken when the search returns no object~~',
  507. 'Class:SynchroDataSource/Attribute:action_on_one' => 'Action on one~~',
  508. 'Class:SynchroDataSource/Attribute:action_on_one+' => 'Action taken when the search returns exactly one object~~',
  509. 'Class:SynchroDataSource/Attribute:action_on_multiple' => 'Action on many~~',
  510. 'Class:SynchroDataSource/Attribute:action_on_multiple+' => 'Action taken when the search returns more than one object~~',
  511. 'Class:SynchroDataSource/Attribute:user_delete_policy' => 'Users allowed~~',
  512. 'Class:SynchroDataSource/Attribute:user_delete_policy+' => 'Who is allowed to delete synchronized objects~~',
  513. 'Class:SynchroDataSource/Attribute:delete_policy/Value:never' => 'Nobody~~',
  514. 'Class:SynchroDataSource/Attribute:delete_policy/Value:depends' => 'Administrators only~~',
  515. 'Class:SynchroDataSource/Attribute:delete_policy/Value:always' => 'All allowed users~~',
  516. 'Class:SynchroDataSource/Attribute:delete_policy_update' => 'Update rules~~',
  517. 'Class:SynchroDataSource/Attribute:delete_policy_update+' => 'Syntax: field_name:value; ...~~',
  518. 'Class:SynchroDataSource/Attribute:delete_policy_retention' => 'Retention Duration~~',
  519. 'Class:SynchroDataSource/Attribute:delete_policy_retention+' => 'How much time an obsolete object is kept before being deleted~~',
  520. 'Class:SynchroDataSource/Attribute:database_table_name' => 'Data table~~',
  521. 'Class:SynchroDataSource/Attribute:database_table_name+' => 'Name of the table to store the synchronization data. If left empty, a default name will be computed.~~',
  522. 'SynchroDataSource:Description' => 'Description~~',
  523. 'SynchroDataSource:Reconciliation' => 'Search &amp; reconciliation~~',
  524. 'SynchroDataSource:Deletion' => 'Deletion rules~~',
  525. 'SynchroDataSource:Status' => 'Status~~',
  526. 'SynchroDataSource:Information' => 'Information~~',
  527. 'SynchroDataSource:Definition' => 'Definition~~',
  528. 'Core:SynchroAttributes' => 'Attributes~~',
  529. 'Core:SynchroStatus' => 'Status~~',
  530. 'Core:Synchro:ErrorsLabel' => 'Errors~~',
  531. 'Core:Synchro:CreatedLabel' => 'Created~~',
  532. 'Core:Synchro:ModifiedLabel' => 'Modified~~',
  533. 'Core:Synchro:UnchangedLabel' => 'Unchanged~~',
  534. 'Core:Synchro:ReconciledErrorsLabel' => 'Errors~~',
  535. 'Core:Synchro:ReconciledLabel' => 'Reconciled~~',
  536. 'Core:Synchro:ReconciledNewLabel' => 'Created~~',
  537. 'Core:SynchroReconcile:Yes' => 'Yes~~',
  538. 'Core:SynchroReconcile:No' => 'No~~',
  539. 'Core:SynchroUpdate:Yes' => 'Yes~~',
  540. 'Core:SynchroUpdate:No' => 'No~~',
  541. 'Core:Synchro:LastestStatus' => 'Latest Status~~',
  542. 'Core:Synchro:History' => 'Synchronization History~~',
  543. 'Core:Synchro:NeverRun' => 'This synchro was never run. No log yet.~~',
  544. 'Core:Synchro:SynchroEndedOn_Date' => 'The latest synchronization ended on %1$s.~~',
  545. 'Core:Synchro:SynchroRunningStartedOn_Date' => 'The synchronization started on %1$s is still running...~~',
  546. 'Menu:DataSources' => 'Synchronization Data Sources~~',
  547. 'Menu:DataSources+' => 'All Synchronization Data Sources~~',
  548. 'Core:Synchro:label_repl_ignored' => 'Ignored (%1$s)~~',
  549. 'Core:Synchro:label_repl_disappeared' => 'Disappeared (%1$s)~~',
  550. 'Core:Synchro:label_repl_existing' => 'Existing (%1$s)~~',
  551. 'Core:Synchro:label_repl_new' => 'New (%1$s)~~',
  552. 'Core:Synchro:label_obj_deleted' => 'Deleted (%1$s)~~',
  553. 'Core:Synchro:label_obj_obsoleted' => 'Obsoleted (%1$s)~~',
  554. 'Core:Synchro:label_obj_disappeared_errors' => 'Errors (%1$s)~~',
  555. 'Core:Synchro:label_obj_disappeared_no_action' => 'No Action (%1$s)~~',
  556. 'Core:Synchro:label_obj_unchanged' => 'Unchanged (%1$s)~~',
  557. 'Core:Synchro:label_obj_updated' => 'Updated (%1$s)~~',
  558. 'Core:Synchro:label_obj_updated_errors' => 'Errors (%1$s)~~',
  559. 'Core:Synchro:label_obj_new_unchanged' => 'Unchanged (%1$s)~~',
  560. 'Core:Synchro:label_obj_new_updated' => 'Updated (%1$s)~~',
  561. 'Core:Synchro:label_obj_created' => 'Created (%1$s)~~',
  562. 'Core:Synchro:label_obj_new_errors' => 'Errors (%1$s)~~',
  563. 'Core:SynchroLogTitle' => '%1$s - %2$s~~',
  564. 'Core:Synchro:Nb_Replica' => 'Replica processed: %1$s~~',
  565. 'Core:Synchro:Nb_Class:Objects' => '%1$s: %2$s~~',
  566. 'Class:SynchroDataSource/Error:AtLeastOneReconciliationKeyMustBeSpecified' => 'At Least one reconciliation key must be specified, or the reconciliation policy must be to use the primary key.~~',
  567. 'Class:SynchroDataSource/Error:DeleteRetentionDurationMustBeSpecified' => 'A delete retention period must be specified, since objects are to be deleted after being marked as obsolete~~',
  568. 'Class:SynchroDataSource/Error:DeletePolicyUpdateMustBeSpecified' => 'Obsolete objects are to be updated, but no update is specified.~~',
  569. 'Class:SynchroDataSource/Error:DataTableAlreadyExists' => 'The table %1$s already exists in the database. Please use another name for the synchro data table.~~',
  570. 'Core:SynchroReplica:PublicData' => 'Public Data~~',
  571. 'Core:SynchroReplica:PrivateDetails' => 'Private Details~~',
  572. 'Core:SynchroReplica:BackToDataSource' => 'Go Back to the Synchro Data Source: %1$s~~',
  573. 'Core:SynchroReplica:ListOfReplicas' => 'List of Replica~~',
  574. 'Core:SynchroAttExtKey:ReconciliationById' => 'id (Primary Key)~~',
  575. 'Core:SynchroAtt:attcode' => 'Attribute~~',
  576. 'Core:SynchroAtt:attcode+' => 'Field of the object~~',
  577. 'Core:SynchroAtt:reconciliation' => 'Reconciliation ?~~',
  578. 'Core:SynchroAtt:reconciliation+' => 'Used for searching~~',
  579. 'Core:SynchroAtt:update' => 'Update ?~~',
  580. 'Core:SynchroAtt:update+' => 'Used to update the object~~',
  581. 'Core:SynchroAtt:update_policy' => 'Update Policy~~',
  582. 'Core:SynchroAtt:update_policy+' => 'Behavior of the updated field~~',
  583. 'Core:SynchroAtt:reconciliation_attcode' => 'Reconciliation Key~~',
  584. 'Core:SynchroAtt:reconciliation_attcode+' => 'Attribute Code for the External Key Reconciliation~~',
  585. 'Core:SyncDataExchangeComment' => '(Data Synchro)~~',
  586. 'Core:Synchro:ListOfDataSources' => 'List of data sources:~~',
  587. 'Core:Synchro:LastSynchro' => 'Last synchronization:~~',
  588. 'Core:Synchro:ThisObjectIsSynchronized' => 'This object is synchronized with an external data source~~',
  589. 'Core:Synchro:TheObjectWasCreatedBy_Source' => 'The object was <b>created</b> by the external data source %1$s~~',
  590. 'Core:Synchro:TheObjectCanBeDeletedBy_Source' => 'The object <b>can be deleted</b> by the external data source %1$s~~',
  591. 'Core:Synchro:TheObjectCannotBeDeletedByUser_Source' => 'You <b>cannot delete the object</b> because it is owned by the external data source %1$s~~',
  592. 'TitleSynchroExecution' => 'Execution of the synchronization~~',
  593. 'Class:SynchroDataSource:DataTable' => 'Database table: %1$s~~',
  594. 'Core:SyncDataSourceObsolete' => 'The data source is marked as obsolete. Operation cancelled.~~',
  595. 'Core:SyncDataSourceAccessRestriction' => 'Only adminstrators or the user specified in the data source can execute this operation. Operation cancelled.~~',
  596. '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.~~',
  597. 'Core:SyncSplitModeCLIOnly' => 'The synchronization can be executed in chunks only if run in mode CLI~~',
  598. 'Core:Synchro:ListReplicas_AllReplicas_Errors_Warnings' => '%1$s replicas, %2$s error(s), %3$s warning(s).~~',
  599. 'Core:SynchroReplica:TargetObject' => 'Synchronized Object: %1$s~~',
  600. 'Class:AsyncSendEmail' => 'Email (asynchronous)~~',
  601. 'Class:AsyncSendEmail/Attribute:to' => 'To~~',
  602. 'Class:AsyncSendEmail/Attribute:subject' => 'Subject~~',
  603. 'Class:AsyncSendEmail/Attribute:body' => 'Body~~',
  604. 'Class:AsyncSendEmail/Attribute:header' => 'Header~~',
  605. 'Class:CMDBChangeOpSetAttributeOneWayPassword' => 'Encrypted Password~~',
  606. 'Class:CMDBChangeOpSetAttributeOneWayPassword/Attribute:prev_pwd' => 'Previous Value~~',
  607. 'Class:CMDBChangeOpSetAttributeEncrypted' => 'Encrypted Field~~',
  608. 'Class:CMDBChangeOpSetAttributeEncrypted/Attribute:prevstring' => 'Previous Value~~',
  609. 'Class:CMDBChangeOpSetAttributeCaseLog' => 'Case Log~~',
  610. 'Class:CMDBChangeOpSetAttributeCaseLog/Attribute:lastentry' => 'Last Entry~~',
  611. 'Class:SynchroDataSource' => 'Synchro Data Source~~',
  612. 'Class:SynchroDataSource/Attribute:status/Value:implementation' => 'Implementation~~',
  613. 'Class:SynchroDataSource/Attribute:status/Value:obsolete' => 'Obsolete~~',
  614. 'Class:SynchroDataSource/Attribute:status/Value:production' => 'Production~~',
  615. 'Class:SynchroDataSource/Attribute:scope_restriction' => 'Scope restriction~~',
  616. 'Class:SynchroDataSource/Attribute:reconciliation_policy/Value:use_attributes' => 'Use the attributes~~',
  617. 'Class:SynchroDataSource/Attribute:reconciliation_policy/Value:use_primary_key' => 'Use the primary_key field~~',
  618. 'Class:SynchroDataSource/Attribute:action_on_zero/Value:create' => 'Create~~',
  619. 'Class:SynchroDataSource/Attribute:action_on_zero/Value:error' => 'Error~~',
  620. 'Class:SynchroDataSource/Attribute:action_on_one/Value:error' => 'Error~~',
  621. 'Class:SynchroDataSource/Attribute:action_on_one/Value:update' => 'Update~~',
  622. 'Class:SynchroDataSource/Attribute:action_on_multiple/Value:create' => 'Create~~',
  623. 'Class:SynchroDataSource/Attribute:action_on_multiple/Value:error' => 'Error~~',
  624. 'Class:SynchroDataSource/Attribute:action_on_multiple/Value:take_first' => 'Take the first one (random?)~~',
  625. 'Class:SynchroDataSource/Attribute:delete_policy' => 'Delete Policy~~',
  626. 'Class:SynchroDataSource/Attribute:delete_policy/Value:delete' => 'Delete~~',
  627. 'Class:SynchroDataSource/Attribute:delete_policy/Value:ignore' => 'Ignore~~',
  628. 'Class:SynchroDataSource/Attribute:delete_policy/Value:update' => 'Update~~',
  629. 'Class:SynchroDataSource/Attribute:delete_policy/Value:update_then_delete' => 'Update then Delete~~',
  630. 'Class:SynchroDataSource/Attribute:attribute_list' => 'Attributes List~~',
  631. 'Class:SynchroDataSource/Attribute:user_delete_policy/Value:administrators' => 'Administrators only~~',
  632. 'Class:SynchroDataSource/Attribute:user_delete_policy/Value:everybody' => 'Everybody allowed to delete such objects~~',
  633. 'Class:SynchroDataSource/Attribute:user_delete_policy/Value:nobody' => 'Nobody~~',
  634. 'Class:SynchroAttribute' => 'Synchro Attribute~~',
  635. 'Class:SynchroAttribute/Attribute:sync_source_id' => 'Synchro Data Source~~',
  636. 'Class:SynchroAttribute/Attribute:attcode' => 'Attribute Code~~',
  637. 'Class:SynchroAttribute/Attribute:update' => 'Update~~',
  638. 'Class:SynchroAttribute/Attribute:reconcile' => 'Reconcile~~',
  639. 'Class:SynchroAttribute/Attribute:update_policy' => 'Update Policy~~',
  640. 'Class:SynchroAttribute/Attribute:update_policy/Value:master_locked' => 'Locked~~',
  641. 'Class:SynchroAttribute/Attribute:update_policy/Value:master_unlocked' => 'Unlocked~~',
  642. 'Class:SynchroAttribute/Attribute:update_policy/Value:write_if_empty' => 'Initialize if empty~~',
  643. 'Class:SynchroAttribute/Attribute:finalclass' => 'Class~~',
  644. 'Class:SynchroAttExtKey' => 'Synchro Attribute (ExtKey)~~',
  645. 'Class:SynchroAttExtKey/Attribute:reconciliation_attcode' => 'Reconciliation Attribute~~',
  646. 'Class:SynchroAttLinkSet' => 'Synchro Attribute (Linkset)~~',
  647. 'Class:SynchroAttLinkSet/Attribute:row_separator' => 'Rows separator~~',
  648. 'Class:SynchroAttLinkSet/Attribute:attribute_separator' => 'Attributes separator~~',
  649. 'Class:SynchroLog' => 'Synchr Log~~',
  650. 'Class:SynchroLog/Attribute:sync_source_id' => 'Synchro Data Source~~',
  651. 'Class:SynchroLog/Attribute:start_date' => 'Start Date~~',
  652. 'Class:SynchroLog/Attribute:end_date' => 'End Date~~',
  653. 'Class:SynchroLog/Attribute:status' => 'Status~~',
  654. 'Class:SynchroLog/Attribute:status/Value:completed' => 'Completed~~',
  655. 'Class:SynchroLog/Attribute:status/Value:error' => 'Error~~',
  656. 'Class:SynchroLog/Attribute:status/Value:running' => 'Still Running~~',
  657. 'Class:SynchroLog/Attribute:stats_nb_replica_seen' => 'Nb replica seen~~',
  658. 'Class:SynchroLog/Attribute:stats_nb_replica_total' => 'Nb replica total~~',
  659. 'Class:SynchroLog/Attribute:stats_nb_obj_deleted' => 'Nb objects deleted~~',
  660. 'Class:SynchroLog/Attribute:stats_nb_obj_deleted_errors' => 'Nb of errors while deleting~~',
  661. 'Class:SynchroLog/Attribute:stats_nb_obj_obsoleted' => 'Nb objects obsoleted~~',
  662. 'Class:SynchroLog/Attribute:stats_nb_obj_obsoleted_errors' => 'Nb of errors while obsoleting~~',
  663. 'Class:SynchroLog/Attribute:stats_nb_obj_created' => 'Nb objects created~~',
  664. 'Class:SynchroLog/Attribute:stats_nb_obj_created_errors' => 'Nb or errors while creating~~',
  665. 'Class:SynchroLog/Attribute:stats_nb_obj_updated' => 'Nb objects updated~~',
  666. 'Class:SynchroLog/Attribute:stats_nb_obj_updated_errors' => 'Nb errors while updating~~',
  667. 'Class:SynchroLog/Attribute:stats_nb_replica_reconciled_errors' => 'Nb of errors during reconciliation~~',
  668. 'Class:SynchroLog/Attribute:stats_nb_replica_disappeared_no_action' => 'Nb replica disappeared~~',
  669. 'Class:SynchroLog/Attribute:stats_nb_obj_new_updated' => 'Nb objects updated~~',
  670. 'Class:SynchroLog/Attribute:stats_nb_obj_new_unchanged' => 'Nb objects unchanged~~',
  671. 'Class:SynchroLog/Attribute:last_error' => 'Last error~~',
  672. 'Class:SynchroLog/Attribute:traces' => 'Traces~~',
  673. 'Class:SynchroReplica' => 'Synchro Replica~~',
  674. 'Class:SynchroReplica/Attribute:sync_source_id' => 'Synchro Data Source~~',
  675. 'Class:SynchroReplica/Attribute:dest_id' => 'Destination object (ID)~~',
  676. 'Class:SynchroReplica/Attribute:dest_class' => 'Destination type~~',
  677. 'Class:SynchroReplica/Attribute:status_last_seen' => 'Last seen~~',
  678. 'Class:SynchroReplica/Attribute:status' => 'Status~~',
  679. 'Class:SynchroReplica/Attribute:status/Value:modified' => 'Modified~~',
  680. 'Class:SynchroReplica/Attribute:status/Value:new' => 'New~~',
  681. 'Class:SynchroReplica/Attribute:status/Value:obsolete' => 'Obsolete~~',
  682. 'Class:SynchroReplica/Attribute:status/Value:orphan' => 'Orphan~~',
  683. 'Class:SynchroReplica/Attribute:status/Value:synchronized' => 'Synchronized~~',
  684. 'Class:SynchroReplica/Attribute:status_dest_creator' => 'Object Created ?~~',
  685. 'Class:SynchroReplica/Attribute:status_last_error' => 'Last Error~~',
  686. 'Class:SynchroReplica/Attribute:status_last_warning' => 'Warnings~~',
  687. 'Class:SynchroReplica/Attribute:info_creation_date' => 'Creation Date~~',
  688. 'Class:SynchroReplica/Attribute:info_last_modified' => 'Last Modified Date~~',
  689. 'Class:appUserPreferences' => 'User Preferences~~',
  690. 'Class:appUserPreferences/Attribute:userid' => 'User~~',
  691. 'Class:appUserPreferences/Attribute:preferences' => 'Prefs~~',
  692. 'Core:ExecProcess:Code1' => 'Wrong command or command finished with errors (e.g. wrong script name)~~',
  693. 'Core:ExecProcess:Code255' => 'PHP Error (parsing, or runtime)~~',
  694. 'Core:Duration_Seconds' => '%1$ds~~',
  695. 'Core:Duration_Minutes_Seconds' => '%1$dmin %2$ds~~',
  696. 'Core:Duration_Hours_Minutes_Seconds' => '%1$dh %2$dmin %3$ds~~',
  697. 'Core:Duration_Days_Hours_Minutes_Seconds' => '%1$sd %2$dh %3$dmin %4$ds~~',
  698. 'Core:ExplainWTC:ElapsedTime' => 'Time elapsed (stored as \"%1$s\")~~',
  699. 'Core:ExplainWTC:StopWatch-TimeSpent' => 'Time spent for \"%1$s\"~~',
  700. 'Core:ExplainWTC:StopWatch-Deadline' => 'Deadline for \"%1$s\" at %2$d%%~~',
  701. 'Core:BulkExport:MissingParameter_Param' => 'Missing parameter \"%1$s\"~~',
  702. 'Core:BulkExport:InvalidParameter_Query' => 'Invalid value for the parameter \"query\". There is no Query Phrasebook corresponding to the id: \"%1$s\".~~',
  703. 'Core:BulkExport:ExportFormatPrompt' => 'Export format:~~',
  704. 'Core:BulkExportOf_Class' => '%1$s Export~~',
  705. 'Core:BulkExport:ClickHereToDownload_FileName' => 'Click here to download %1$s~~',
  706. 'Core:BulkExport:ExportResult' => 'Result of the export:~~',
  707. 'Core:BulkExport:RetrievingData' => 'Retrieving data...~~',
  708. 'Core:BulkExport:HTMLFormat' => 'Web Page (*.html)~~',
  709. 'Core:BulkExport:CSVFormat' => 'Comma Separated Values (*.csv)~~',
  710. 'Core:BulkExport:XLSXFormat' => 'Excel 2007 or newer (*.xlsx)~~',
  711. 'Core:BulkExport:PDFFormat' => 'PDF Document (*.pdf)~~',
  712. 'Core:BulkExport:DragAndDropHelp' => 'Drag and drop the columns\' headers to arrange the columns. Preview of %1$s lines. Total number of lines to export: %2$s.~~',
  713. 'Core:BulkExport:EmptyPreview' => 'Select the columns to be exported from the list above~~',
  714. 'Core:BulkExport:ColumnsOrder' => 'Columns order~~',
  715. 'Core:BulkExport:AvailableColumnsFrom_Class' => 'Available columns from %1$s~~',
  716. 'Core:BulkExport:NoFieldSelected' => 'Select at least one column to be exported~~',
  717. 'Core:BulkExport:CheckAll' => 'Check All~~',
  718. 'Core:BulkExport:UncheckAll' => 'Uncheck All~~',
  719. 'Core:BulkExport:ExportCancelledByUser' => 'Export cancelled by the user~~',
  720. 'Core:BulkExport:CSVOptions' => 'CSV Options~~',
  721. 'Core:BulkExport:CSVLocalization' => 'Localization~~',
  722. 'Core:BulkExport:PDFOptions' => 'PDF Options~~',
  723. 'Core:BulkExport:PDFPageFormat' => 'Page Format~~',
  724. 'Core:BulkExport:PDFPageSize' => 'Page Size:~~',
  725. 'Core:BulkExport:PageSize-A4' => 'A4~~',
  726. 'Core:BulkExport:PageSize-A3' => 'A3~~',
  727. 'Core:BulkExport:PageSize-Letter' => 'Letter~~',
  728. 'Core:BulkExport:PDFPageOrientation' => 'Page Orientation:~~',
  729. 'Core:BulkExport:PageOrientation-L' => 'Landscape~~',
  730. 'Core:BulkExport:PageOrientation-P' => 'Portrait~~',
  731. 'Core:BulkExport:XMLFormat' => 'XML file (*.xml)~~',
  732. 'Core:BulkExport:XMLOptions' => 'XML Options~~',
  733. 'Core:BulkExport:SpreadsheetFormat' => 'Spreadsheet HTML format (*.html)~~',
  734. 'Core:BulkExport:SpreadsheetOptions' => 'Spreadsheet Options~~',
  735. 'Core:BulkExport:OptionLinkSets' => 'Include linked objects~~',
  736. 'Core:BulkExport:OptionNoLocalize' => 'Do not localize the values (for Enumerated fields)~~',
  737. 'Core:BulkExport:OptionFormattedText' => 'Preserve text formatting~~',
  738. 'Core:BulkExport:ScopeDefinition' => 'Definition of the objects to export~~',
  739. 'Core:BulkExportLabelOQLExpression' => 'OQL Query:~~',
  740. 'Core:BulkExportLabelPhrasebookEntry' => 'Query Phrasebook Entry:~~',
  741. 'Core:BulkExportMessageEmptyOQL' => 'Please enter a valid OQL query.~~',
  742. 'Core:BulkExportMessageEmptyPhrasebookEntry' => 'Please select a valid phrasebook entry.~~',
  743. 'Core:BulkExportQueryPlaceholder' => 'Type an OQL query here...~~',
  744. 'Core:BulkExportCanRunNonInteractive' => 'Click here to run the export in non-interactive mode.~~',
  745. 'Core:BulkExportLegacyExport' => 'Click here to access the legacy export.~~',
  746. 'Core:BulkExport:XLSXOptions' => 'Excel Options~~',
  747. 'Core:BulkExport:TextFormat' => 'Text fields containing some HTML markup~~',
  748. 'Core:Validator:Default' => 'Wrong format~~',
  749. 'Core:Validator:Mandatory' => 'Please, fill this field~~',
  750. 'Core:Validator:MustBeInteger' => 'Must be an integer~~',
  751. 'Core:Validator:MustSelectOne' => 'Please, select one~~',
  752. ));