12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /**
- * Portuguese/Brazil Translation by Wemerson Januario <wemerson.januario@gmail.com>
- * 10 October 2017
- */
- 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'
- }
- });
|