pt_br.dictionary.itop.ui.php 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851
  1. <?php
  2. // Copyright (C) 2010 Combodo SARL
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; version 3 of the License.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. /**
  17. * Localized data
  18. *
  19. * @author Erwan Taloc <erwan.taloc@combodo.com>
  20. * @author Romain Quetiez <romain.quetiez@combodo.com>
  21. * @author Denis Flaven <denis.flaven@combodo.com>
  22. * @license http://www.opensource.org/licenses/gpl-3.0.html LGPL
  23. */
  24. //////////////////////////////////////////////////////////////////////
  25. // Classes in 'gui'
  26. //////////////////////////////////////////////////////////////////////
  27. //
  28. //
  29. // Class: menuNode
  30. //
  31. Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
  32. 'Class:menuNode' => 'menuNode',
  33. 'Class:menuNode+' => 'Menu principal configuracoes elementos',
  34. 'Class:menuNode/Attribute:name' => 'Nome menu',
  35. 'Class:menuNode/Attribute:name+' => 'Nome curto para este menu',
  36. 'Class:menuNode/Attribute:label' => 'Descricao do menu',
  37. 'Class:menuNode/Attribute:label+' => 'Descricao longa para este menu',
  38. 'Class:menuNode/Attribute:hyperlink' => 'Hyperlink',
  39. 'Class:menuNode/Attribute:hyperlink+' => 'Hyperlink para a p&aacute;gina',
  40. 'Class:menuNode/Attribute:icon_path' => 'Icones menu',
  41. 'Class:menuNode/Attribute:icon_path+' => 'Caminho parra o icone do menu',
  42. 'Class:menuNode/Attribute:template' => 'Modelo',
  43. 'Class:menuNode/Attribute:template+' => 'Modelo HTML para ver',
  44. 'Class:menuNode/Attribute:type' => 'Tipo',
  45. 'Class:menuNode/Attribute:type+' => 'Tipo de menu',
  46. 'Class:menuNode/Attribute:type/Value:application' => 'aplicacao',
  47. 'Class:menuNode/Attribute:type/Value:application+' => 'aplicacao',
  48. 'Class:menuNode/Attribute:type/Value:user' => 'usuario',
  49. 'Class:menuNode/Attribute:type/Value:user+' => 'usuario',
  50. 'Class:menuNode/Attribute:type/Value:administrator' => 'administrador',
  51. 'Class:menuNode/Attribute:type/Value:administrator+' => 'administrador',
  52. 'Class:menuNode/Attribute:rank' => 'Mostrar rank',
  53. 'Class:menuNode/Attribute:rank+' => 'Ordem de classificação para exibir o menu',
  54. 'Class:menuNode/Attribute:parent_id' => 'Item Menu principal',
  55. 'Class:menuNode/Attribute:parent_id+' => 'Item Menu principal',
  56. 'Class:menuNode/Attribute:parent_name' => 'Item Menu principal',
  57. 'Class:menuNode/Attribute:parent_name+' => 'Item Menu principal',
  58. 'Class:menuNode/Attribute:user_id' => 'Proprietario do menu',
  59. 'Class:menuNode/Attribute:user_id+' => 'O usuário que possui este menu (menu para usuario definido)',
  60. ));
  61. //////////////////////////////////////////////////////////////////////
  62. // Classes in 'application'
  63. //////////////////////////////////////////////////////////////////////
  64. //
  65. //
  66. // Class: AuditCategory
  67. //
  68. Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
  69. 'Class:AuditCategory' => 'AuditCategory',
  70. 'Class:AuditCategory+' => 'Uma seção dentro da auditoria global',
  71. 'Class:AuditCategory/Attribute:name' => 'Nome categoria',
  72. 'Class:AuditCategory/Attribute:name+' => 'Nome curto da categoria',
  73. 'Class:AuditCategory/Attribute:description' => 'Descricao categoria auditoria',
  74. 'Class:AuditCategory/Attribute:description+' => 'Descricao longa para a categoria auditoria',
  75. 'Class:AuditCategory/Attribute:definition_set' => 'Definicao configuracao',
  76. 'Class:AuditCategory/Attribute:definition_set+' => 'Expressão OQL que define o conjunto de objetos de auditoria',
  77. ));
  78. //
  79. // Class: AuditRule
  80. //
  81. Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
  82. 'Class:AuditRule' => 'AuditRule',
  83. 'Class:AuditRule+' => 'A regra para verificar se há uma categoria de Auditoria dado',
  84. 'Class:AuditRule/Attribute:name' => 'Nome regra',
  85. 'Class:AuditRule/Attribute:name+' => 'Nome curto para a regra',
  86. 'Class:AuditRule/Attribute:description' => 'Descricao regra auditoria',
  87. 'Class:AuditRule/Attribute:description+' => 'Descricao longa para este regra auditoria',
  88. 'Class:AuditRule/Attribute:query' => 'Executar consulta',
  89. 'Class:AuditRule/Attribute:query+' => 'A expressão OQL a executar',
  90. 'Class:AuditRule/Attribute:valid_flag' => 'Objetos validos?',
  91. 'Class:AuditRule/Attribute:valid_flag+' => 'True se a regra retorna os objetos válido, false caso contrário',
  92. 'Class:AuditRule/Attribute:valid_flag/Value:true' => 'verdadeiro',
  93. 'Class:AuditRule/Attribute:valid_flag/Value:true+' => 'verdadeiro',
  94. 'Class:AuditRule/Attribute:valid_flag/Value:false' => 'falso',
  95. 'Class:AuditRule/Attribute:valid_flag/Value:false+' => 'falso',
  96. 'Class:AuditRule/Attribute:category_id' => 'Categoria',
  97. 'Class:AuditRule/Attribute:category_id+' => 'A categoria para esta regra',
  98. 'Class:AuditRule/Attribute:category_name' => 'Categoria',
  99. 'Class:AuditRule/Attribute:category_name+' => 'Nome da categoria para esta regra',
  100. ));
  101. //////////////////////////////////////////////////////////////////////
  102. // Classes in 'addon/userrights'
  103. //////////////////////////////////////////////////////////////////////
  104. //
  105. //
  106. // Class: URP_Users
  107. //
  108. Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
  109. 'Class:URP_Users' => 'Usuario',
  110. 'Class:URP_Users+' => 'Usuarios e credenciais',
  111. 'Class:URP_Users/Attribute:userid' => 'Contatos (pessoa)',
  112. 'Class:URP_Users/Attribute:userid+' => 'Os dados pessoais a partir dos dados de negócio',
  113. 'Class:URP_Users/Attribute:last_name' => 'Ultimo nome',
  114. 'Class:URP_Users/Attribute:last_name+' => 'Nome do contato correspondente',
  115. 'Class:URP_Users/Attribute:first_name' => 'Primeiro nome',
  116. 'Class:URP_Users/Attribute:first_name+' => 'Primeiro nome do contato correspondente',
  117. 'Class:URP_Users/Attribute:email' => 'Email',
  118. 'Class:URP_Users/Attribute:email+' => 'Email do contato correspondente',
  119. 'Class:URP_Users/Attribute:login' => 'Usuario',
  120. 'Class:URP_Users/Attribute:login+' => 'identificação do usuário',
  121. 'Class:URP_Users/Attribute:password' => 'Senha',
  122. 'Class:URP_Users/Attribute:password+' => 'autenticação/senha usuário',
  123. 'Class:URP_Users/Attribute:language' => 'Linguagem',
  124. 'Class:URP_Users/Attribute:language+' => 'linguagem usuário',
  125. 'Class:URP_Users/Attribute:language/Value:EN US' => 'Ingles',
  126. 'Class:URP_Users/Attribute:language/Value:EN US+' => 'Ingles U.S.',
  127. 'Class:URP_Users/Attribute:language/Value:FR FR' => 'Frances',
  128. 'Class:URP_Users/Attribute:language/Value:FR FR+' => 'FR FR',
  129. 'Class:URP_Users/Attribute:language/Value:PT BR' => 'Brazilian',
  130. 'Class:URP_Users/Attribute:language/Value:PT BR+' => 'PT BR',
  131. 'Class:URP_Users/Attribute:profile_list' => 'Profiles',
  132. 'Class:URP_Users/Attribute:profile_list+' => 'Regras, permissao direitos para esta pessoa',
  133. ));
  134. //
  135. // Class: URP_Profiles
  136. //
  137. Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
  138. 'Class:URP_Profiles' => 'Profile',
  139. 'Class:URP_Profiles+' => 'Profile usuario',
  140. 'Class:URP_Profiles/Attribute:name' => 'Nome',
  141. 'Class:URP_Profiles/Attribute:name+' => 'Titulo',
  142. 'Class:URP_Profiles/Attribute:description' => 'Descricao',
  143. 'Class:URP_Profiles/Attribute:description+' => 'uma linha descricao',
  144. 'Class:URP_Profiles/Attribute:user_list' => 'Usuarios',
  145. 'Class:URP_Profiles/Attribute:user_list+' => 'pessoas possuem esta regra',
  146. ));
  147. //
  148. // Class: URP_Dimensions
  149. //
  150. Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
  151. 'Class:URP_Dimensions' => 'dimensão',
  152. 'Class:URP_Dimensions+' => 'dimensão aplicação',
  153. 'Class:URP_Dimensions/Attribute:name' => 'Nome',
  154. 'Class:URP_Dimensions/Attribute:name+' => 'label',
  155. 'Class:URP_Dimensions/Attribute:description' => 'Descrição',
  156. 'Class:URP_Dimensions/Attribute:description+' => 'one line description',
  157. 'Class:URP_Dimensions/Attribute:type' => 'Tipo',
  158. 'Class:URP_Dimensions/Attribute:type+' => 'nome classe ou tipo dado (unidade projetada)',
  159. ));
  160. //
  161. // Class: URP_UserProfile
  162. //
  163. Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
  164. 'Class:URP_UserProfile' => 'Usuario para profile',
  165. 'Class:URP_UserProfile+' => 'profiles usuario',
  166. 'Class:URP_UserProfile/Attribute:userid' => 'Usuario',
  167. 'Class:URP_UserProfile/Attribute:userid+' => 'conta usuario',
  168. 'Class:URP_UserProfile/Attribute:userlogin' => 'Login',
  169. 'Class:URP_UserProfile/Attribute:userlogin+' => 'Login Usuario\'s',
  170. 'Class:URP_UserProfile/Attribute:profileid' => 'Profile',
  171. 'Class:URP_UserProfile/Attribute:profileid+' => 'profile utilizada',
  172. 'Class:URP_UserProfile/Attribute:profile' => 'Profile',
  173. 'Class:URP_UserProfile/Attribute:profile+' => 'Nome profile',
  174. 'Class:URP_UserProfile/Attribute:reason' => 'Razao',
  175. 'Class:URP_UserProfile/Attribute:reason+' => 'explicar porque este usuario teve ter esta regra',
  176. ));
  177. //
  178. // Class: URP_ProfileProjection
  179. //
  180. Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
  181. 'Class:URP_ProfileProjection' => 'profile_projection',
  182. 'Class:URP_ProfileProjection+' => 'profile projections',
  183. 'Class:URP_ProfileProjection/Attribute:dimensionid' => 'Dimension',
  184. 'Class:URP_ProfileProjection/Attribute:dimensionid+' => 'application dimension',
  185. 'Class:URP_ProfileProjection/Attribute:dimension' => 'Dimension',
  186. 'Class:URP_ProfileProjection/Attribute:dimension+' => 'application dimension',
  187. 'Class:URP_ProfileProjection/Attribute:profileid' => 'Profile',
  188. 'Class:URP_ProfileProjection/Attribute:profileid+' => 'usage profile',
  189. 'Class:URP_ProfileProjection/Attribute:profile' => 'Profile',
  190. 'Class:URP_ProfileProjection/Attribute:profile+' => 'Profile name',
  191. 'Class:URP_ProfileProjection/Attribute:value' => 'Value expression',
  192. 'Class:URP_ProfileProjection/Attribute:value+' => 'OQL expression (using $user) | constant | | +attribute code',
  193. 'Class:URP_ProfileProjection/Attribute:attribute' => 'Attribute',
  194. 'Class:URP_ProfileProjection/Attribute:attribute+' => 'Target attribute code (optional)',
  195. ));
  196. //
  197. // Class: URP_ClassProjection
  198. //
  199. Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
  200. 'Class:URP_ClassProjection' => 'class_projection',
  201. 'Class:URP_ClassProjection+' => 'class projections',
  202. 'Class:URP_ClassProjection/Attribute:dimensionid' => 'Dimension',
  203. 'Class:URP_ClassProjection/Attribute:dimensionid+' => 'application dimension',
  204. 'Class:URP_ClassProjection/Attribute:dimension' => 'Dimension',
  205. 'Class:URP_ClassProjection/Attribute:dimension+' => 'application dimension',
  206. 'Class:URP_ClassProjection/Attribute:class' => 'Class',
  207. 'Class:URP_ClassProjection/Attribute:class+' => 'Target class',
  208. 'Class:URP_ClassProjection/Attribute:value' => 'Value expression',
  209. 'Class:URP_ClassProjection/Attribute:value+' => 'OQL expression (using $this) | constant | | +attribute code',
  210. 'Class:URP_ClassProjection/Attribute:attribute' => 'Attribute',
  211. 'Class:URP_ClassProjection/Attribute:attribute+' => 'Target attribute code (optional)',
  212. ));
  213. //
  214. // Class: URP_ActionGrant
  215. //
  216. Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
  217. 'Class:URP_ActionGrant' => 'action_permission',
  218. 'Class:URP_ActionGrant+' => 'permissões nas classes',
  219. 'Class:URP_ActionGrant/Attribute:profileid' => 'Profile',
  220. 'Class:URP_ActionGrant/Attribute:profileid+' => 'profiles usadas',
  221. 'Class:URP_ActionGrant/Attribute:profile' => 'Profile',
  222. 'Class:URP_ActionGrant/Attribute:profile+' => 'usage profile',
  223. 'Class:URP_ActionGrant/Attribute:class' => 'Class',
  224. 'Class:URP_ActionGrant/Attribute:class+' => 'Target class',
  225. 'Class:URP_ActionGrant/Attribute:permission' => 'Permission',
  226. 'Class:URP_ActionGrant/Attribute:permission+' => 'allowed or not allowed?',
  227. 'Class:URP_ActionGrant/Attribute:permission/Value:yes' => 'yes',
  228. 'Class:URP_ActionGrant/Attribute:permission/Value:yes+' => 'yes',
  229. 'Class:URP_ActionGrant/Attribute:permission/Value:no' => 'no',
  230. 'Class:URP_ActionGrant/Attribute:permission/Value:no+' => 'no',
  231. 'Class:URP_ActionGrant/Attribute:action' => 'Action',
  232. 'Class:URP_ActionGrant/Attribute:action+' => 'operations to perform on the given class',
  233. ));
  234. //
  235. // Class: URP_StimulusGrant
  236. //
  237. Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
  238. 'Class:URP_StimulusGrant' => 'stimulus_permission',
  239. 'Class:URP_StimulusGrant+' => 'permissions on stimilus in the life cycle of the object',
  240. 'Class:URP_StimulusGrant/Attribute:profileid' => 'Profile',
  241. 'Class:URP_StimulusGrant/Attribute:profileid+' => 'usage profile',
  242. 'Class:URP_StimulusGrant/Attribute:profile' => 'Profile',
  243. 'Class:URP_StimulusGrant/Attribute:profile+' => 'usage profile',
  244. 'Class:URP_StimulusGrant/Attribute:class' => 'Class',
  245. 'Class:URP_StimulusGrant/Attribute:class+' => 'Target class',
  246. 'Class:URP_StimulusGrant/Attribute:permission' => 'Permission',
  247. 'Class:URP_StimulusGrant/Attribute:permission+' => 'allowed or not allowed?',
  248. 'Class:URP_StimulusGrant/Attribute:permission/Value:yes' => 'yes',
  249. 'Class:URP_StimulusGrant/Attribute:permission/Value:yes+' => 'yes',
  250. 'Class:URP_StimulusGrant/Attribute:permission/Value:no' => 'no',
  251. 'Class:URP_StimulusGrant/Attribute:permission/Value:no+' => 'no',
  252. 'Class:URP_StimulusGrant/Attribute:stimulus' => 'Stimulus',
  253. 'Class:URP_StimulusGrant/Attribute:stimulus+' => 'stimulus code',
  254. ));
  255. //
  256. // Class: URP_AttributeGrant
  257. //
  258. Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
  259. 'Class:URP_AttributeGrant' => 'attribute_permission',
  260. 'Class:URP_AttributeGrant+' => 'permissions at the attributes level',
  261. 'Class:URP_AttributeGrant/Attribute:actiongrantid' => 'Action grant',
  262. 'Class:URP_AttributeGrant/Attribute:actiongrantid+' => 'action grant',
  263. 'Class:URP_AttributeGrant/Attribute:attcode' => 'Attribute',
  264. 'Class:URP_AttributeGrant/Attribute:attcode+' => 'attribute code',
  265. ));
  266. //
  267. // String from the User Interface: menu, messages, buttons, etc...
  268. //
  269. Dict::Add('PT BR', 'Brazilian', 'Brazilian', array(
  270. 'Menu:WelcomeMenu' => 'Bem-vindo',
  271. 'Menu:WelcomeMenu+' => 'Bem-vindo ao iTop',
  272. 'Menu:WelcomeMenuPage' => 'Bem-vindo',
  273. 'Menu:WelcomeMenuPage+' => 'Bem-vindo ao iTop',
  274. 'UI:WelcomeMenu:Title' => 'Bem-vindo ao iTop',
  275. 'UI:WelcomeMenu:LeftBlock' => '<p>iTop é um completo, livre, portal IT.</p>
  276. <ul>Inclui:
  277. <li>completo CMDB (Configuration management database) documentar e gerenciar inventários IT.</li>
  278. <li>módulo Gerenciador Incidente para monitorar e comunicar-se sobre todas as questões que ocorrem na TI.</li>
  279. <li>módulo Gerenciador Mudanças/Alterações para planejar e monitorar mudanças/alterações no ambiente TI.</li>
  280. <li>base de dados com erros conhecidos para agilizar a solução de incidentes.</li>
  281. <li>módulo falha para documentar todas as interrupções planejadas e notificar os contatos adequados.</li>
  282. <li>painéis para obter rapidamente uma visão geral de TI.</li>
  283. </ul>
  284. <p>Todos os módulos podem ser configurados, passo a passo, cada um, independente dos outros..</p>',
  285. 'UI:WelcomeMenu:RightBlock' => '<p>iTop é um provedor de serviço, que permite gerenciar facilmente múltiplos clientes ou organizações.
  286. <ul>iTop, oferece um conjunto rico em recursos de processos de negócios que:
  287. <li>melhora a eficácia da gestão de TI</li>
  288. <li>melhora operações de TI</li>
  289. <li>melhora o desempenho da satisfação do cliente.</li>
  290. </ul>
  291. </p>
  292. <p>iTop é completamente aberto para ser integrado com infra-estrutura de IT atuais.</p>
  293. <p>
  294. <ul>Adopting this new generation of IT Operational portal will help you to:
  295. <li>Better manage a more and more complex IT environment.</li>
  296. <li>Implement ITIL processes at your own pace.</li>
  297. <li>Manage the most important asset of your IT: Documentation.</li>
  298. </ul>
  299. </p>',
  300. 'UI:WelcomeMenu:AllOpenRequests' => 'Chamados Abertos: %1$d',
  301. 'UI:WelcomeMenu:MyCalls' => 'Solicitações de usuários atribuído a mim',
  302. 'UI:WelcomeMenu:OpenIncidents' => 'Incidentes Abertos: %1$d',
  303. 'UI:WelcomeMenu:AllConfigItems' => 'Configuração Itens: %1$d',
  304. 'UI:WelcomeMenu:MyIncidents' => 'Incidentes atribuídas a mim',
  305. 'UI:AllOrganizations' => ' Todas Organizações ',
  306. 'UI:YourSearch' => 'Pesquisar',
  307. 'UI:LoggedAsMessage' => 'Conectado como %1$s',
  308. 'UI:LoggedAsMessage+Admin' => 'Conectado como %1$s (Administrador)',
  309. 'UI:Button:Logoff' => 'Sair',
  310. 'UI:Button:GlobalSearch' => 'Pesquisar',
  311. 'UI:Button:Search' => ' Pesquisar ',
  312. 'UI:Button:Query' => ' Consultar ',
  313. 'UI:Button:Ok' => 'Ok',
  314. 'UI:Button:Cancel' => 'Cancelar',
  315. 'UI:Button:Apply' => 'Aplicar',
  316. 'UI:Button:Back' => ' << Voltar ',
  317. 'UI:Button:Next' => ' Proximo >> ',
  318. 'UI:Button:Finish' => ' Finalizar ',
  319. 'UI:Button:DoImport' => ' Executar para importar ! ',
  320. 'UI:Button:Done' => ' Concluido ',
  321. 'UI:Button:SimulateImport' => ' Simulate the Import ',
  322. 'UI:Button:Test' => 'Testar!',
  323. 'UI:Button:Evaluate' => ' Evaluate ',
  324. 'UI:Button:AddObject' => ' Adicionar... ',
  325. 'UI:Button:BrowseObjects' => ' Navegar... ',
  326. 'UI:Button:Add' => ' Adicionar ',
  327. 'UI:Button:AddToList' => ' << Adicionar ',
  328. 'UI:Button:RemoveFromList' => ' Remover >> ',
  329. 'UI:Button:FilterList' => ' Filtrar... ',
  330. 'UI:Button:Create' => ' Criar ',
  331. 'UI:Button:Delete' => ' Apagar ! ',
  332. 'UI:Button:ChangePassword' => ' Alterar senha ',
  333. 'UI:SearchToggle' => 'Pesquisar',
  334. 'UI:ClickToCreateNew' => 'Criar um(a) novo(a) %1$s',
  335. 'UI:SearchFor_Class' => 'Pesquisa para %1$s objetos',
  336. 'UI:NoObjectToDisplay' => 'Nenhum objeto encontrado.',
  337. 'UI:Error:MandatoryTemplateParameter_object_id' => 'Parâmetro object_id é obrigatório quando link_attr é especificado. Verifique a definição do modelo.',
  338. 'UI:Error:MandatoryTemplateParameter_target_attr' => 'Parâmetro target_attr é obrigatório quando link_attr é especificado. Verifique a definição do modelo.',
  339. 'UI:Error:MandatoryTemplateParameter_group_by' => 'Parâmetro group_by é obrigatório. Verifique a definição do modelo.',
  340. 'UI:Error:InvalidGroupByFields' => 'Inválido lista de campos para agrupar por: "%1$s".',
  341. 'UI:Error:UnsupportedStyleOfBlock' => 'Erro: não suportado estilo de bloco: "%1$s".',
  342. 'UI:Error:IncorrectLinkDefinition_LinkedClass_Class' => 'Incorreta definição link: a classe de objetos para gerenciar: %1$s não foi encontrado como uma chave externa na classe %2$s',
  343. 'UI:Error:Object_Class_Id_NotFound' => 'Objeto: %1$s:%2$d não encontrado.',
  344. 'UI:Error:WizardCircularReferenceInDependencies' => 'Erro: Referência circular nas dependências entre os campos, verifique o modelo de dados.',
  345. 'UI:Error:UploadedFileTooBig' => 'O arquivo enviado é muito grande (Tamanho máximo permitido é %1$s. Verifique sua configuração do PHP para upload_max_filesize.',
  346. 'UI:Error:UploadedFileTruncated.' => 'Envio de arquivo foi truncado!',
  347. 'UI:Error:NoTmpDir' => 'O diretorio temporário não está definido.',
  348. 'UI:Error:CannotWriteToTmp_Dir' => 'Desabilitado escrever o arquivo temporario no disco. upload_tmp_dir = "%1$s".',
  349. 'UI:Error:UploadStoppedByExtension_FileName' => 'Upload parado por extensao. (Nome original arquivo = "%1$s").',
  350. 'UI:Error:UploadFailedUnknownCause_Code' => 'Upload de arquivo falhou, causa desconhecida. (Erro codigo = "%1$s").',
  351. 'UI:Error:1ParametersMissing' => 'Erro: o seguinte parametro deve ser especificado para esta operacao: %1$s.',
  352. 'UI:Error:2ParametersMissing' => 'Erro: os seguinte parametros devem ser especificados para esta operacao: %1$s e %2$s.',
  353. 'UI:Error:3ParametersMissing' => 'Erro: os seguinte parametros devem ser especificados para esta operacao: %1$s, %2$s e %3$s.',
  354. 'UI:Error:4ParametersMissing' => 'Erro: os seguinte parametros devem ser especificados para esta operacao: %1$s, %2$s, %3$s e %4$s.',
  355. 'UI:Error:IncorrectOQLQuery_Message' => 'Erro: Consulta OQL incorreta: %1$s',
  356. 'UI:Error:AnErrorOccuredWhileRunningTheQuery_Message' => 'Um erro ocorreu enquanto executava a consulta: %1$s',
  357. 'UI:Error:ObjectAlreadyUpdated' => 'Erro: o objeto já foi atualizado.',
  358. 'UI:Error:ObjectCannotBeUpdated' => 'Erro: objeto nao pode ser atualizado.',
  359. 'UI:Error:ObjectsAlreadyDeleted' => 'Erro: objeto já pode ter sido eliminada!',
  360. 'UI:Error:BulkDeleteNotAllowedOn_Class' => 'Permissão negado para executar uma exclusão em massa de objetos da classe %1$s',
  361. 'UI:Error:DeleteNotAllowedOn_Class' => 'Permissão negado para apagar objeto da classe %1$s',
  362. 'UI:Error:ObjectAlreadyCloned' => 'Erro: o objeto ja foi clonado!',
  363. 'UI:Error:ObjectAlreadyCreated' => 'Erro: o objeto ja foi criado!',
  364. 'UI:Error:Invalid_Stimulus_On_Object_In_State' => 'Erro: invalid stimulus "%1$s" on object %2$s in state "%3$s".',
  365. 'UI:GroupBy:Count' => 'Contagem',
  366. 'UI:GroupBy:Count+' => 'N&uacute;mero de elementos',
  367. 'UI:CountOfObjects' => '%1$d objetos que correspondem aos criterios.',
  368. 'UI:NoObject_Class_ToDisplay' => 'Nenhum %1$s para mostrar',
  369. 'UI:History:LastModified_On_By' => 'Ultima modificacao de %1$s por %2$s.',
  370. 'UI:HistoryTab' => 'Historico',
  371. 'UI:History:BulkImports' => 'History',
  372. 'UI:History:BulkImports+' => 'List of CSV imports (last first)',
  373. 'UI:History:BulkImportDetails' => 'Changes resulting from the CSV import performed on %1$s (by %2$s)',
  374. 'UI:History:Date' => 'Data',
  375. 'UI:History:Date+' => 'Data da alteração',
  376. 'UI:History:User' => 'Usuario',
  377. 'UI:History:User+' => 'Usuario que fez alteração',
  378. 'UI:History:Changes' => 'Alterações',
  379. 'UI:History:Changes+' => 'Alterações feita no objeto',
  380. 'UI:History:StatsModifs' => 'Modified',
  381. 'UI:History:StatsModifs+' => 'Count of objects modified',
  382. 'UI:History:StatsDeletes' => 'Deleted',
  383. 'UI:History:StatsDeletes+' => 'Count of objects deleted',
  384. 'UI:Loading' => 'Carregando...',
  385. 'UI:Menu:Actions' => 'Ações',
  386. 'UI:Menu:New' => 'Novo...',
  387. 'UI:Menu:Add' => 'Adicionar...',
  388. 'UI:Menu:Manage' => 'Gerencia...',
  389. 'UI:Menu:EMail' => 'eMail',
  390. 'UI:Menu:CSVExport' => 'Exportar CSV',
  391. 'UI:Menu:Modify' => 'Modificar...',
  392. 'UI:Menu:Delete' => 'Apagar...',
  393. 'UI:Menu:Manage' => 'Gerencia...',
  394. 'UI:Menu:BulkDelete' => 'Apagar...',
  395. 'UI:UndefinedObject' => 'indefinido',
  396. 'UI:Document:OpenInNewWindow:Download' => 'Abrir em nova janela: %1$s, Download: %2$s',
  397. 'UI:SelectAllToggle+' => 'Selecionar / Deselecionar todos',
  398. 'UI:TruncatedResults' => '%1$d objetos mostrados out of %2$d',
  399. 'UI:DisplayAll' => 'Mostrar todos',
  400. 'UI:CountOfResults' => '%1$d objeto(s)',
  401. 'UI:ChangesLogTitle' => 'Alteracoes log (%1$d):',
  402. 'UI:EmptyChangesLogTitle' => 'Alteracoes log esta limpo',
  403. 'UI:SearchFor_Class_Objects' => 'Pesquisa para %1$s objetos',
  404. 'UI:OQLQueryBuilderTitle' => 'Construir consulta OQL',
  405. 'UI:OQLQueryTab' => 'Consulta OQL',
  406. 'UI:SimpleSearchTab' => 'Pesquisa simples',
  407. 'UI:Details+' => 'Detalhes',
  408. 'UI:SearchValue:Any' => '* Qualquer *',
  409. 'UI:SearchValue:Mixed' => '* mix *',
  410. 'UI:SelectOne' => '-- selecione um --',
  411. 'UI:Login:Welcome' => 'Bem-vindo ao iTop!',
  412. 'UI:Login:IncorrectLoginPassword' => 'Usuario/senha incorreto(s), por favor, tente novamente.',
  413. 'UI:Login:IdentifyYourself' => 'Identifique-se antes continuar...',
  414. 'UI:Login:UserNamePrompt' => 'Nome usuario',
  415. 'UI:Login:PasswordPrompt' => 'Senha',
  416. 'UI:Login:ChangeYourPassword' => 'Alterar sua senha',
  417. 'UI:Login:OldPasswordPrompt' => 'Senha antiga',
  418. 'UI:Login:NewPasswordPrompt' => 'Nova senha',
  419. 'UI:Login:RetypeNewPasswordPrompt' => 'Digite novamente a senha',
  420. 'UI:Login:IncorrectOldPassword' => 'Erro: senha incorreta',
  421. 'UI:LogOffMenu' => 'Sair',
  422. 'UI:ChangePwdMenu' => 'Alterar senha...',
  423. 'UI:AccessRO-All' => 'iTop is read-only',
  424. 'UI:AccessRO-Users' => 'iTop is read-only for end-users',
  425. 'UI:Login:RetypePwdDoesNotMatch' => 'A nova senha nao confere!',
  426. 'UI:Button:Login' => 'Enter iTop',
  427. 'UI:Login:Error:AccessRestricted' => 'iTop accesso restrito. Por favor, contate o suporte.',
  428. 'UI:CSVImport:MappingSelectOne' => '-- selecione um --',
  429. 'UI:CSVImport:MappingNotApplicable' => '-- ignore este campo --',
  430. 'UI:CSVImport:NoData' => 'Conjunto vazio de dados..., forneca alguns dados!',
  431. 'UI:Title:DataPreview' => 'Visualizar dado',
  432. 'UI:CSVImport:ErrorOnlyOneColumn' => 'Erro: Os dados contem apenas uma coluna. Sera que voce selecionou o separador adequado?',
  433. 'UI:CSVImport:FieldName' => 'Campo %1$d',
  434. 'UI:CSVImport:DataLine1' => 'Dado linha 1',
  435. 'UI:CSVImport:DataLine2' => 'Dado linha 2',
  436. 'UI:CSVImport:idField' => 'id (Chave primaria)',
  437. 'UI:Title:BulkImport' => 'iTop - Importacao em massa',
  438. 'UI:Title:BulkImport+' => 'CSV Assistente de Importacao',
  439. 'UI:CSVImport:ClassesSelectOne' => '-- selecione um --',
  440. 'UI:CSVImport:ErrorExtendedAttCode' => 'Erro interno: "%1$s" e um codigo incorreto, pois "%2$s" NAO e chave externa da classe "%3$s"',
  441. 'UI:CSVImport:ObjectsWillStayUnchanged' => '%1$d objeto(s) permanecera inalterados.',
  442. 'UI:CSVImport:ObjectsWillBeModified' => '%1$d objeto(s) sera modificado.',
  443. 'UI:CSVImport:ObjectsWillBeAdded' => '%1$d objeto(s) sera adicionado.',
  444. 'UI:CSVImport:ObjectsWillHaveErrors' => '%1$d objeto(s) tem erros.',
  445. 'UI:CSVImport:ObjectsRemainedUnchanged' => '%1$d objeto(s) manteve-se inalterada.',
  446. 'UI:CSVImport:ObjectsWereModified' => '%1$d objeto(s) foram modificados.',
  447. 'UI:CSVImport:ObjectsWereAdded' => '%1$d objeto(s) foram adicionados.',
  448. 'UI:CSVImport:ObjectsAddErrors' => '%1$d objeto(s) apresentam erros.',
  449. 'UI:Title:CSVImportStep2' => 'Step 2 of 5: CSV opcoes dados',
  450. 'UI:Title:CSVImportStep3' => 'Step 3 of 5: Mapeamento de dados',
  451. 'UI:Title:CSVImportStep4' => 'Step 4 of 5: Simulacao Importacao',
  452. 'UI:Title:CSVImportStep5' => 'Step 5 of 5: Importacao completado',
  453. 'UI:CSVImport:LinesNotImported' => 'Linhas que nao pode ser carregadas:',
  454. 'UI:CSVImport:LinesNotImported+' => 'As seguintes linhas nao foram importados, porque eles contem erros',
  455. 'UI:CSVImport:SeparatorComma+' => ', (comma)',
  456. 'UI:CSVImport:SeparatorSemicolon+' => '; (semicolon)',
  457. 'UI:CSVImport:SeparatorTab+' => 'tab',
  458. 'UI:CSVImport:SeparatorOther' => 'outros:',
  459. 'UI:CSVImport:QualifierDoubleQuote+' => '" (aspa dupla)',
  460. 'UI:CSVImport:QualifierSimpleQuote+' => '\' (simple quote)',
  461. 'UI:CSVImport:QualifierOther' => 'outros:',
  462. 'UI:CSVImport:TreatFirstLineAsHeader' => 'Tratar a primeira linha como um cabecalho (nome da coluna)',
  463. 'UI:CSVImport:Skip_N_LinesAtTheBeginning' => 'Skip %1$s line(s) at the beginning of the file',
  464. 'UI:CSVImport:CSVDataPreview' => 'CSV Data Preview',
  465. 'UI:CSVImport:SelectFile' => 'Select the file to import:',
  466. 'UI:CSVImport:Tab:LoadFromFile' => 'Load from a file',
  467. 'UI:CSVImport:Tab:CopyPaste' => 'Copy and paste data',
  468. 'UI:CSVImport:Tab:Templates' => 'Templates',
  469. 'UI:CSVImport:PasteData' => 'Paste the data to import:',
  470. 'UI:CSVImport:PickClassForTemplate' => 'Pick the template to download: ',
  471. 'UI:CSVImport:SeparatorCharacter' => 'Separator character:',
  472. 'UI:CSVImport:TextQualifierCharacter' => 'Text qualifier character',
  473. 'UI:CSVImport:CommentsAndHeader' => 'Comments and header',
  474. 'UI:CSVImport:SelectClass' => 'Select the class to import:',
  475. 'UI:CSVImport:AdvancedMode' => 'Advanced mode',
  476. 'UI:CSVImport:AdvancedMode+' => 'In advanced mode the "id" (primary key) of the objects can be used to update and rename objects.' .
  477. 'However the column "id" (if present) can only be used as a search criteria and can not be combined with any other search criteria.',
  478. 'UI:CSVImport:SelectAClassFirst' => 'To configure the mapping, select a class first.',
  479. 'UI:CSVImport:HeaderFields' => 'Fields',
  480. 'UI:CSVImport:HeaderMappings' => 'Mappings',
  481. 'UI:CSVImport:HeaderSearch' => 'Search?',
  482. 'UI:CSVImport:AlertIncompleteMapping' => 'Please select a mapping for every field.',
  483. 'UI:CSVImport:AlertNoSearchCriteria' => 'Please select at least one search criteria',
  484. 'UI:UniversalSearchTitle' => 'iTop - Pesquisa universal',
  485. 'UI:UniversalSearch:Error' => 'Erro: %1$s',
  486. 'UI:UniversalSearch:LabelSelectTheClass' => 'Selecione a classe para pesquisa: ',
  487. 'UI:Audit:Title' => 'iTop - CMDB Auditoria',
  488. 'UI:Audit:InteractiveAudit' => 'Interactive Audit',
  489. 'UI:Audit:HeaderAuditRule' => 'Audit Rule',
  490. 'UI:Audit:HeaderNbObjects' => '# Objects',
  491. 'UI:Audit:HeaderNbErrors' => '# Errors',
  492. 'UI:Audit:PercentageOk' => '% Ok',
  493. 'UI:RunQuery:Title' => 'iTop - OQL Query Evaluation',
  494. 'UI:RunQuery:QueryExamples' => 'Query Examples',
  495. 'UI:RunQuery:HeaderPurpose' => 'Purpose',
  496. 'UI:RunQuery:HeaderPurpose+' => 'Explanation about the query',
  497. 'UI:RunQuery:HeaderOQLExpression' => 'OQL Expression',
  498. 'UI:RunQuery:HeaderOQLExpression+' => 'The query in OQL syntax',
  499. 'UI:RunQuery:ExpressionToEvaluate' => 'Expression to evaluate: ',
  500. 'UI:RunQuery:MoreInfo' => 'More information about the query: ',
  501. 'UI:RunQuery:DevelopedQuery' => 'Redevelopped query expression: ',
  502. 'UI:RunQuery:SerializedFilter' => 'Serialized filter: ',
  503. 'UI:RunQuery:Error' => 'An error occured while running the query: %1$s',
  504. 'UI:Schema:Title' => 'iTop objects schema',
  505. 'UI:Schema:CategoryMenuItem' => 'Category <b>%1$s</b>',
  506. 'UI:Schema:Relationships' => 'Relationships',
  507. 'UI:Schema:AbstractClass' => 'Abstract class: no object from this class can be instantiated.',
  508. 'UI:Schema:NonAbstractClass' => 'Non abstract class: objects from this class can be instantiated.',
  509. 'UI:Schema:ClassHierarchyTitle' => 'Class hierarchy',
  510. 'UI:Schema:AllClasses' => 'All classes',
  511. 'UI:Schema:ExternalKey_To' => 'External key to %1$s',
  512. 'UI:Schema:Columns_Description' => 'Columns: <em>%1$s</em>',
  513. 'UI:Schema:Default_Description' => 'Default: "%1$s"',
  514. 'UI:Schema:NullAllowed' => 'Null Allowed',
  515. 'UI:Schema:NullNotAllowed' => 'Null NOT Allowed',
  516. 'UI:Schema:Attributes' => 'Attributes',
  517. 'UI:Schema:AttributeCode' => 'Attribute Code',
  518. 'UI:Schema:AttributeCode+' => 'Internal code of the attribute',
  519. 'UI:Schema:Label' => 'Label',
  520. 'UI:Schema:Label+' => 'Label of the attribute',
  521. 'UI:Schema:Type' => 'Type',
  522. 'UI:Schema:Type+' => 'Data type of the attribute',
  523. 'UI:Schema:Origin' => 'Origin',
  524. 'UI:Schema:Origin+' => 'The base class in which this attribute is defined',
  525. 'UI:Schema:Description' => 'Description',
  526. 'UI:Schema:Description+' => 'Description of the attribute',
  527. 'UI:Schema:AllowedValues' => 'Allowed values',
  528. 'UI:Schema:AllowedValues+' => 'Restrictions on the possible values for this attribute',
  529. 'UI:Schema:MoreInfo' => 'More info',
  530. 'UI:Schema:MoreInfo+' => 'More information about the field defined in the database',
  531. 'UI:Schema:SearchCriteria' => 'Search criteria',
  532. 'UI:Schema:FilterCode' => 'Filter code',
  533. 'UI:Schema:FilterCode+' => 'Code of this search criteria',
  534. 'UI:Schema:FilterDescription' => 'Description',
  535. 'UI:Schema:FilterDescription+' => 'Description of this search criteria',
  536. 'UI:Schema:AvailOperators' => 'Available operators',
  537. 'UI:Schema:AvailOperators+' => 'Possible operators for this search criteria',
  538. 'UI:Schema:ChildClasses' => 'Child classes',
  539. 'UI:Schema:ReferencingClasses' => 'Referencing classes',
  540. 'UI:Schema:RelatedClasses' => 'Related classes',
  541. 'UI:Schema:LifeCycle' => 'Life cycle',
  542. 'UI:Schema:Triggers' => 'Triggers',
  543. 'UI:Schema:Relation_Code_Description' => 'Relation <em>%1$s</em> (%2$s)',
  544. 'UI:Schema:RelationDown_Description' => 'Down: %1$s',
  545. 'UI:Schema:RelationUp_Description' => 'Up: %1$s',
  546. 'UI:Schema:RelationPropagates' => '%1$s: propagate to %2$d levels, query: %3$s',
  547. 'UI:Schema:RelationDoesNotPropagate' => '%1$s: does not propagates (%2$d levels), query: %3$s',
  548. 'UI:Schema:Class_ReferencingClasses_From_By' => '%1$s is referenced by the class %2$s via the field %3$s',
  549. 'UI:Schema:Class_IsLinkedTo_Class_Via_ClassAndAttribute' => '%1$s is linked to %2$s via %3$s::<em>%4$s</em>',
  550. 'UI:Schema:Links:1-n' => 'Classes pointing to %1$s (1:n links):',
  551. 'UI:Schema:Links:n-n' => 'Classes linked to %1$s (n:n links):',
  552. 'UI:Schema:Links:All' => 'Graph of all related classes',
  553. 'UI:Schema:NoLifeCyle' => 'There is no life cycle defined for this class.',
  554. 'UI:Schema:LifeCycleTransitions' => 'Transitions',
  555. 'UI:Schema:LifeCyleAttributeOptions' => 'Attribute options',
  556. 'UI:Schema:LifeCycleHiddenAttribute' => 'Hidden',
  557. 'UI:Schema:LifeCycleReadOnlyAttribute' => 'Read-only',
  558. 'UI:Schema:LifeCycleMandatoryAttribute' => 'Mandatory',
  559. 'UI:Schema:LifeCycleAttributeMustChange' => 'Must change',
  560. 'UI:Schema:LifeCycleAttributeMustPrompt' => 'User will be prompted to change the value',
  561. 'UI:Schema:LifeCycleEmptyList' => 'lista limpa',
  562. 'UI:LinksWidget:Autocomplete+' => 'Type the first 3 characters...',
  563. 'UI:Combo:SelectValue' => '--- select a value ---',
  564. 'UI:Label:SelectedObjects' => 'Objetos selecionados: ',
  565. 'UI:Label:AvailableObjects' => 'Objetos dispon&iacute;veis: ',
  566. 'UI:Link_Class_Attributes' => '%1$s atributos',
  567. 'UI:SelectAllToggle+' => 'Marque todos / Desmarque todos',
  568. 'UI:AddObjectsOf_Class_LinkedWith_Class_Instance' => 'Adionar %1$s objetos ligados com %2$s: %3$s',
  569. 'UI:ManageObjectsOf_Class_LinkedWith_Class_Instance' => 'Manage %1$s objects linked with %2$s: %3$s',
  570. 'UI:AddLinkedObjectsOf_Class' => 'Adicionado %1$ss...',
  571. 'UI:RemoveLinkedObjectsOf_Class' => 'Apagado objeto(s) selecionado(s)',
  572. 'UI:Message:EmptyList:UseAdd' => 'A lista est&aacute; limpa, use o &iacute;cone "Adicionar..." para adicionar elementos.',
  573. 'UI:Message:EmptyList:UseSearchForm' => 'Use o formul&aacute;rio Pesquisa para pesquisar objetos a ser adicionado.',
  574. 'UI:Wizard:FinalStepTitle' => 'Passo Final: confirmação',
  575. 'UI:Title:DeletionOf_Object' => 'Eliminação de %1$s',
  576. 'UI:Title:BulkDeletionOf_Count_ObjectsOf_Class' => 'Bulk deletion of %1$d objects of class %2$s',
  577. 'UI:Delete:NotAllowedToDelete' => 'Permissão negado para eliminar este objeto',
  578. 'UI:Delete:NotAllowedToUpdate_Fields' => 'Permissão negado para atualizar o(s) seguinte(s) campo(s): %1$s',
  579. 'UI:Error:NotEnoughRightsToDelete' => 'Este objeto não pode ser apagado pelo usu&aacute;rio não ter direitos administrativos',
  580. 'UI:Error:CannotDeleteBecauseOfDepencies' => 'This object could not be deleted because some manual operations must be performed prior to that',
  581. 'UI:Archive_User_OnBehalfOf_User' => '%1$s em nome de %2$s',
  582. 'UI:Delete:AutomaticallyDeleted' => 'eliminado automaticamente',
  583. 'UI:Delete:AutomaticResetOf_Fields' => 'reset autom&aacute;tico dos campo(s): %1$s',
  584. 'UI:Delete:CleaningUpRefencesTo_Object' => 'Limpar todas as refer&ecirc;ncias a %1$s...',
  585. 'UI:Delete:CleaningUpRefencesTo_Several_ObjectsOf_Class' => 'Limpando todas as referências ao objeto %1$d da classe %2$s...',
  586. 'UI:Delete:Done+' => 'What was done...',
  587. 'UI:Delete:_Name_Class_Deleted' => '%1$s - %2$s eliminado.',
  588. 'UI:Delete:ConfirmDeletionOf_Name' => 'Eliminação de %1$s',
  589. 'UI:Delete:ConfirmDeletionOf_Count_ObjectsOf_Class' => 'Eliminação do objeto %1$d da classe %2$s',
  590. 'UI:Delete:ShouldBeDeletedAtomaticallyButNotAllowed' => 'Should be automaticaly deleted, but you are not allowed to do so',
  591. 'UI:Delete:MustBeDeletedManuallyButNotAllowed' => 'Must be deleted manually - but you are not allowed to delete this object, please contact your application admin',
  592. 'UI:Delete:WillBeDeletedAutomatically' => 'Ser&aacute; automaticamente exclu&iacute;do',
  593. 'UI:Delete:MustBeDeletedManually' => 'Deve ser exclu&iacute;do manualmente',
  594. 'UI:Delete:CannotUpdateBecause_Issue' => 'Devem ser atualizados automaticamente, mas: %1$s',
  595. 'UI:Delete:WillAutomaticallyUpdate_Fields' => 'ser&aacute; automaticamente atualizado (reset: %1$s)',
  596. 'UI:Delete:Count_Objects/LinksReferencing_Object' => '%1$d objects/links are referencing %2$s',
  597. 'UI:Delete:Count_Objects/LinksReferencingTheObjects' => '%1$d objects/links are referencing some of the objects to be deleted',
  598. 'UI:Delete:ReferencesMustBeDeletedToEnsureIntegrity' => 'To ensure Database integrity, any reference should be further eliminated',
  599. 'UI:Delete:Consequence+' => 'What will be done',
  600. 'UI:Delete:SorryDeletionNotAllowed' => 'Sorry, you are not allowed to delete this object, see the detailed explanations above',
  601. 'UI:Delete:PleaseDoTheManualOperations' => 'Please perform the manual operations listed above prior to requesting the deletion of this object',
  602. 'UI:Delect:Confirm_Object' => 'Deseja realmente apagar %1$s.',
  603. 'UI:Delect:Confirm_Count_ObjectsOf_Class' => 'Por favor, confirme que deseja apagar o seguinte %1$d objetos da classe %2$s.',
  604. 'UI:WelcomeToITop' => 'Bem-vindo ao iTop',
  605. 'UI:DetailsPageTitle' => 'iTop - %1$s - %2$s detalhes',
  606. 'UI:ErrorPageTitle' => 'iTop - Erro',
  607. 'UI:ObjectDoesNotExist' => 'Desculpe, este objeto não existe (ou voc&ecirc; não tem permissão para v&ecirc;-lo).',
  608. 'UI:SearchResultsPageTitle' => 'iTop - Pesquisa resultados',
  609. 'UI:Search:NoSearch' => 'Nada para pesquisar',
  610. 'UI:FullTextSearchTitle_Text' => 'Resultados para "%1$s":',
  611. 'UI:Search:Count_ObjectsOf_Class_Found' => '%1$d objeto(s) da classe %2$s encontrado(s).',
  612. 'UI:Search:NoObjectFound' => 'Nenhum objeto encontrado.',
  613. 'UI:ModificationPageTitle_Object_Class' => 'iTop - %1$s - %2$s modificação',
  614. 'UI:ModificationTitle_Class_Object' => 'Modificação de %1$s: <span class=\"hilite\">%2$s</span>',
  615. 'UI:ClonePageTitle_Object_Class' => 'iTop - Clone %1$s - %2$s modificação',
  616. 'UI:CloneTitle_Class_Object' => 'Clone de %1$s: <span class=\"hilite\">%2$s</span>',
  617. 'UI:CreationPageTitle_Class' => 'iTop - Criação de um(a) novo(a) %1$s ',
  618. 'UI:CreationTitle_Class' => 'Criação de um(a) novo(a) %1$s',
  619. 'UI:SelectTheTypeOf_Class_ToCreate' => 'Selecione o tipo de %1$s a ser criado:',
  620. 'UI:Class_Object_NotUpdated' => 'Nenhuma mudança detectada, %1$s (%2$s) <strong>não</strong> foi modificado.',
  621. 'UI:Class_Object_Updated' => '%1$s (%2$s) atualizado.',
  622. 'UI:BulkDeletePageTitle' => 'iTop - Excluir em massa',
  623. 'UI:BulkDeleteTitle' => 'Marque os objetos que deseja excluir:',
  624. 'UI:PageTitle:ObjectCreated' => 'iTop Objeto criado.',
  625. 'UI:Title:Object_Of_Class_Created' => '%1$s - %2$s criado.',
  626. '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.',
  627. 'UI:PageTitle:FatalError' => 'iTop - Erro fatal',
  628. 'UI:FatalErrorMessage' => 'Erro fatal, não pode continuar.',
  629. 'UI:Error_Details' => 'Erro: %1$s.',
  630. 'UI:PageTitle:ClassProjections' => 'iTop user management - class projections',
  631. 'UI:PageTitle:ProfileProjections' => 'iTop user management - profile projections',
  632. 'UI:UserManagement:Class' => 'Class',
  633. 'UI:UserManagement:Class+' => 'Class of objects',
  634. 'UI:UserManagement:ProjectedObject' => 'Object',
  635. 'UI:UserManagement:ProjectedObject+' => 'Projected object',
  636. 'UI:UserManagement:AnyObject' => '* any *',
  637. 'UI:UserManagement:User' => 'User',
  638. 'UI:UserManagement:User+' => 'User involved in the projection',
  639. 'UI:UserManagement:Profile' => 'Profile',
  640. 'UI:UserManagement:Profile+' => 'Profile in which the projection is specified',
  641. 'UI:UserManagement:Action:Read' => 'Read',
  642. 'UI:UserManagement:Action:Read+' => 'Read/display objects',
  643. 'UI:UserManagement:Action:Modify' => 'Modify',
  644. 'UI:UserManagement:Action:Modify+' => 'Create and edit (modify) objects',
  645. 'UI:UserManagement:Action:Delete' => 'Delete',
  646. 'UI:UserManagement:Action:Delete+' => 'Delete objects',
  647. 'UI:UserManagement:Action:BulkRead' => 'Bulk Read (Export)',
  648. 'UI:UserManagement:Action:BulkRead+' => 'List objects or export massively',
  649. 'UI:UserManagement:Action:BulkModify' => 'Bulk Modify',
  650. 'UI:UserManagement:Action:BulkModify+' => 'Massively create/edit (CSV import)',
  651. 'UI:UserManagement:Action:BulkDelete' => 'Bulk Delete',
  652. 'UI:UserManagement:Action:BulkDelete+' => 'Massively delete objects',
  653. 'UI:UserManagement:Action:Stimuli' => 'Stimuli',
  654. 'UI:UserManagement:Action:Stimuli+' => 'Allowed (compound) actions',
  655. 'UI:UserManagement:Action' => 'Action',
  656. 'UI:UserManagement:Action+' => 'Action performed by the user',
  657. 'UI:UserManagement:TitleActions' => 'Actions',
  658. 'UI:UserManagement:Permission' => 'Permission',
  659. 'UI:UserManagement:Permission+' => 'User\'s permissions',
  660. 'UI:UserManagement:Attributes' => 'Attributes',
  661. 'UI:UserManagement:ActionAllowed:Yes' => 'Yes',
  662. 'UI:UserManagement:ActionAllowed:No' => 'No',
  663. 'UI:UserManagement:AdminProfile+' => 'Administrators have full read/write access to all objects in the database.',
  664. 'UI:UserManagement:NoLifeCycleApplicable' => 'N/A',
  665. 'UI:UserManagement:NoLifeCycleApplicable+' => 'No lifecycle has been defined for this class',
  666. 'UI:UserManagement:GrantMatrix' => 'Grant Matrix',
  667. 'UI:UserManagement:LinkBetween_User_And_Profile' => 'Link between %1$s and %2$s',
  668. 'Menu:AdminTools' => 'Ferramentas administrativa',
  669. 'Menu:AdminTools+' => 'Ferramentas administrativa',
  670. 'Menu:AdminTools?' => 'Ferramentas permitidas somente para usu&aacute;rio com profile administrador',
  671. 'UI:ChangeManagementMenu' => 'Gerenciamento Mudanças',
  672. 'UI:ChangeManagementMenu+' => 'Gerenciamento Mudanças',
  673. 'UI:ChangeManagementMenu:Title' => 'Visão geral Mudanças',
  674. 'UI-ChangeManagementMenu-ChangesByType' => 'Mudanças por tipo',
  675. 'UI-ChangeManagementMenu-ChangesByStatus' => 'Mudanças por status',
  676. 'UI-ChangeManagementMenu-ChangesByWorkgroup' => 'Mudanças por grupo de trabalho',
  677. 'UI-ChangeManagementMenu-ChangesNotYetAssigned' => 'Mudanças não atribu&iacute;das',
  678. 'UI:ConfigurationItemsMenu'=> 'Configuração Itens',
  679. 'UI:ConfigurationItemsMenu+'=> 'Todos dispositivos',
  680. 'UI:ConfigurationItemsMenu:Title' => 'Visão geral Configuração Itens',
  681. 'UI-ConfigurationItemsMenu-ServersByCriticity' => 'Servidores por criticidade',
  682. 'UI-ConfigurationItemsMenu-PCsByCriticity' => 'PCs por criticidade',
  683. 'UI-ConfigurationItemsMenu-NWDevicesByCriticity' => 'Dispositivo de rede por criticidade',
  684. 'UI-ConfigurationItemsMenu-ApplicationsByCriticity' => 'Aplicação por criticidade',
  685. 'UI:ConfigurationManagementMenu' => 'Gerenciamento Configuração',
  686. 'UI:ConfigurationManagementMenu+' => 'Gerenciamento Configuração',
  687. 'UI:ConfigurationManagementMenu:Title' => 'Visão geral Infra-estrutura',
  688. 'UI-ConfigurationManagementMenu-InfraByType' => 'Objetos Infra-estrutura por tipo',
  689. 'UI-ConfigurationManagementMenu-InfraByStatus' => 'Objetos Infra-estrutura por status',
  690. 'UI:ConfigMgmtMenuOverview:Title' => 'Painel para Gerenciamento Configuração',
  691. 'UI-ConfigMgmtMenuOverview-FunctionalCIbyStatus' => 'Configuração Itens por status',
  692. 'UI-ConfigMgmtMenuOverview-FunctionalCIByType' => 'Configuração Itens por tipo',
  693. 'UI:RequestMgmtMenuOverview:Title' => 'Painel para Gerenciamento de Pedido',
  694. 'UI-RequestManagementOverview-RequestByService' => 'User Requests by service',
  695. 'UI-RequestManagementOverview-RequestByPriority' => 'User Requests by priority',
  696. 'UI-RequestManagementOverview-RequestUnassigned' => 'User Requests not yet assigned to an agent',
  697. 'UI:IncidentMgmtMenuOverview:Title' => 'Painel para Gerenciamento Incidentes',
  698. 'UI-IncidentManagementOverview-IncidentByService' => 'Incidentes por serviço',
  699. 'UI-IncidentManagementOverview-IncidentByPriority' => 'Incidentes por prioridade',
  700. 'UI-IncidentManagementOverview-IncidentUnassigned' => 'Incidentes não atribu&iacute;dos para agentes',
  701. 'UI:ChangeMgmtMenuOverview:Title' => 'Painel para Gerenciamento Mudanças',
  702. 'UI-ChangeManagementOverview-ChangeByType' => 'Mudanças por tipo',
  703. 'UI-ChangeManagementOverview-ChangeUnassigned' => 'Mudanças não atribu&iacute;dos para agentes',
  704. 'UI-ChangeManagementOverview-ChangeWithOutage' => 'Interrupç&otilde;es devido a mudanças',
  705. 'UI:ServiceMgmtMenuOverview:Title' => 'Painel para Gerenciamento Serviço',
  706. 'UI-ServiceManagementOverview-CustomerContractToRenew' => 'Contratos de clientes deverão serem renovados em 30 dias',
  707. 'UI-ServiceManagementOverview-ProviderContractToRenew' => 'Contratos de prestação a serem renovados em 30 dias',
  708. 'UI:ContactsMenu' => 'Contatos',
  709. 'UI:ContactsMenu+' => 'Contatos',
  710. 'UI:ContactsMenu:Title' => 'Visão global contatos',
  711. 'UI-ContactsMenu-ContactsByLocation' => 'Contatos por Localização',
  712. 'UI-ContactsMenu-ContactsByType' => 'Contatos por tipo',
  713. 'UI-ContactsMenu-ContactsByStatus' => 'Contatos por status',
  714. 'Menu:CSVImportMenu' => 'Importacao CSV',
  715. 'Menu:CSVImportMenu+' => 'Bulk creation or update',
  716. 'Menu:DataModelMenu' => 'Modelo dados',
  717. 'Menu:DataModelMenu+' => 'Visao geral do Modelo dados',
  718. 'Menu:ExportMenu' => 'Exportar',
  719. 'Menu:ExportMenu+' => 'Exportar o resultado de qualquer consulta em HTML, CSV or XML',
  720. 'Menu:NotificationsMenu' => 'Notificações',
  721. 'Menu:NotificationsMenu+' => 'Configuração da notificações',
  722. 'UI:NotificationsMenu:Title' => 'Configuração da <span class="hilite">Notificações</span>',
  723. 'UI:NotificationsMenu:Help' => 'Ajuda',
  724. '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>
  725. <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:
  726. <ol>
  727. <li>the "OnCreate" triggers get executed when an object of the specified class is created</li>
  728. <li>the "OnStateEnter" triggers get executed before an object of the given class enters a specified state (coming from another state)</li>
  729. <li>the "OnStateLeave" triggers get executed when an object of the given class is leaving a specified state</li>
  730. </ol>
  731. </p>
  732. <p>
  733. <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.
  734. 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.
  735. </p>
  736. <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>
  737. <p>To be executed, actions must be associated to triggers.
  738. When associated with a trigger, each action is given an "order" number, specifying in which order the actions are to be executed.</p>',
  739. 'UI:NotificationsMenu:Triggers' => 'Triggers',
  740. 'UI:NotificationsMenu:AvailableTriggers' => 'Triggers disponivel',
  741. 'UI:NotificationsMenu:OnCreate' => 'Quando um objeto e criado',
  742. 'UI:NotificationsMenu:OnStateEnter' => 'Quando um objeto entra em um determinado estado',
  743. 'UI:NotificationsMenu:OnStateLeave' => 'Quando um objeto deixa um determinado estado',
  744. 'UI:NotificationsMenu:Actions' => 'Acoes',
  745. 'UI:NotificationsMenu:AvailableActions' => 'Acoes disponiveis',
  746. 'Menu:RunQueriesMenu' => 'Executar consultas',
  747. 'Menu:RunQueriesMenu+' => 'Executar qualquer consulta',
  748. 'Menu:DataAdministration' => 'Administracao de dados',
  749. 'Menu:DataAdministration+' => 'Administracao de dados',
  750. 'Menu:UniversalSearchMenu' => 'Pesquisa Universal',
  751. 'Menu:UniversalSearchMenu+' => 'Pesquisa por nada...',
  752. 'Menu:ApplicationLogMenu' => 'Log de l\'aplicacao',
  753. 'Menu:ApplicationLogMenu+' => 'Log de l\'aplicacao',
  754. 'Menu:ApplicationLogMenu:Title' => 'Log de l\'aplicacao',
  755. 'Menu:UserManagementMenu' => 'Gerenciamento Usuario',
  756. 'Menu:UserManagementMenu+' => 'Gerenciamento usuario',
  757. 'Menu:ProfilesMenu' => 'Profiles',
  758. 'Menu:ProfilesMenu+' => 'Profiles',
  759. 'Menu:ProfilesMenu:Title' => 'Profiles',
  760. 'Menu:UserAccountsMenu' => 'Contas usuarios',
  761. 'Menu:UserAccountsMenu+' => 'Contas usuarios',
  762. 'Menu:UserAccountsMenu:Title' => 'Contas usuarios',
  763. 'UI:iTopVersion:Short' => 'iTop versão %1$s',
  764. 'UI:iTopVersion:Long' => 'iTop versão %1$s-%2$s built on %3$s',
  765. 'UI:PropertiesTab' => 'Propriedades',
  766. 'UI:OpenDocumentInNewWindow_' => 'Abrir este documento em uma nova janela: %1$s',
  767. 'UI:DownloadDocument_' => 'Baixar este documento: %1$s',
  768. 'UI:Document:NoPreview' => 'Nã h&aacute; visualização dispon&iacute;vel para este tipo de documento',
  769. 'UI:DeadlineMissedBy_duration' => 'Perdido por %1$s',
  770. 'UI:Deadline_LessThan1Min' => '< 1 min',
  771. 'UI:Deadline_Minutes' => '%1$d min',
  772. 'UI:Deadline_Hours_Minutes' => '%1$dh %2$dmin',
  773. 'UI:Deadline_Days_Hours_Minutes' => '%1$dd %2$dh %3$dmin',
  774. 'UI:Help' => 'Ajuda',
  775. ));
  776. ?>