123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- Ext.define('Ext.locale.pt_BR.Panel', {
- override: 'Ext.Panel',
- config: {
- standardButtons: {
- ok: {
- text: 'OK'
- },
- abort: {
- text: 'Abortar'
- },
- retry: {
- text: 'Repetir'
- },
- ignore: {
- text: 'Ignorar'
- },
- yes: {
- text: 'Sim'
- },
- no: {
- text: 'Não'
- },
- cancel: {
- text: 'Cancelar'
- },
- apply: {
- text: 'Aplicar'
- },
- save: {
- text: 'Salvar'
- },
- submit: {
- text: 'Enviar'
- },
- help: {
- text: 'Ajuda'
- },
- close: {
- text: 'Fechar'
- }
- },
- closeToolText: 'Fechar Painel'
- }
- });
|