Panel.js 959 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. Ext.define('Ext.locale.pt_BR.Panel', {
  2. override: 'Ext.Panel',
  3. config: {
  4. standardButtons: {
  5. ok: {
  6. text: 'OK'
  7. },
  8. abort: {
  9. text: 'Abortar'
  10. },
  11. retry: {
  12. text: 'Repetir'
  13. },
  14. ignore: {
  15. text: 'Ignorar'
  16. },
  17. yes: {
  18. text: 'Sim'
  19. },
  20. no: {
  21. text: 'Não'
  22. },
  23. cancel: {
  24. text: 'Cancelar'
  25. },
  26. apply: {
  27. text: 'Aplicar'
  28. },
  29. save: {
  30. text: 'Salvar'
  31. },
  32. submit: {
  33. text: 'Enviar'
  34. },
  35. help: {
  36. text: 'Ajuda'
  37. },
  38. close: {
  39. text: 'Fechar'
  40. }
  41. },
  42. closeToolText: 'Fechar Painel'
  43. }
  44. });