ext-lang-pt_PT.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:8k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * Ext 2.2.0 - Portuguese/Portugal (pt_PT) Translation
  9.  * by Nuno Franco da Costa - francodacosta.com
  10.  * translated from ext-lang-en.js
  11.  * 11 Nov 2008
  12.  */
  13. Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">A carregar...</div>';
  14. if(Ext.View){
  15.   Ext.View.prototype.emptyText = "";
  16. }
  17. if(Ext.grid.GridPanel){
  18.   Ext.grid.GridPanel.prototype.ddText = "{0} linha(s) seleccionada(s)";
  19. }
  20. if(Ext.TabPanelItem){
  21.   Ext.TabPanelItem.prototype.closeText = "Fechar aba";
  22. }
  23. if(Ext.LoadMask){
  24.   Ext.LoadMask.prototype.msg = "A carregar...";
  25. }
  26. Date.monthNames = [
  27.   "Janeiro",
  28.   "Fevereiro",
  29.   "Mar&ccedil;o",
  30.   "Abril",
  31.   "Maio",
  32.   "Junho",
  33.   "Julho",
  34.   "Agosto",
  35.   "Setembro",
  36.   "Outubro",
  37.   "Novembro",
  38.   "Dezembro"
  39. ];
  40. Date.getShortMonthName = function(month) {
  41.   return Date.monthNames[month].substring(0, 3);
  42. };
  43. Date.monthNumbers = {
  44.   Jan : 0,
  45.   Feb : 1,
  46.   Mar : 2,
  47.   Apr : 3,
  48.   May : 4,
  49.   Jun : 5,
  50.   Jul : 6,
  51.   Aug : 7,
  52.   Sep : 8,
  53.   Oct : 9,
  54.   Nov : 10,
  55.   Dec : 11
  56. };
  57. Date.getMonthNumber = function(name) {
  58.   return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()];
  59. };
  60. Date.dayNames = [
  61.   "Domingo",
  62.   "Segunda",
  63.   "Ter&ccedil;a",
  64.   "Quarta",
  65.   "Quinta",
  66.   "Sexta",
  67.   "Sabado"
  68. ];
  69. Date.getShortDayName = function(day) {
  70.   return Date.dayNames[day].substring(0, 3);
  71. };
  72. if(Ext.MessageBox){
  73.   Ext.MessageBox.buttonText = {
  74.     ok     : "OK",
  75.     cancel : "Cancelar",
  76.     yes    : "Sim",
  77.     no     : "N&atilde;o"
  78.   };
  79. }
  80. if(Ext.util.Format){
  81.   Ext.util.Format.date = function(v, format){
  82.     if(!v) return "";
  83.     if(!(v instanceof Date)) v = new Date(Date.parse(v));
  84.     return v.dateFormat(format || "Y/m/d");
  85.   };
  86. }
  87. if(Ext.DatePicker){
  88.   Ext.apply(Ext.DatePicker.prototype, {
  89.     todayText         : "Hoje",
  90.     minText           : "A data &eacute; anterior ao m&iacute;nimo definido",
  91.     maxText           : "A data &eacute; posterior ao m�ximo definido",
  92.     disabledDaysText  : "",
  93.     disabledDatesText : "",
  94.     monthNames        : Date.monthNames,
  95.     dayNames          : Date.dayNames,
  96.     nextText          : 'M&ecirc;s Seguinte (Control+Right)',
  97.     prevText          : 'M&ecirc;s Anterior (Control+Left)',
  98.     monthYearText     : 'Escolha um m&ecirc;s (Control+Up/Down ava&ccedil;ar/recuar anos)',
  99.     todayTip          : "{0} (barra de espa�o)",
  100.     format            : "y/m/d",
  101.     okText            : "*OK*",
  102.     cancelText        : "Cancelar",
  103.     startDay          : 0
  104.   });
  105. }
  106. if(Ext.PagingToolbar){
  107.   Ext.apply(Ext.PagingToolbar.prototype, {
  108.     beforePageText : "P&aacute;gina",
  109.     afterPageText  : "de {0}",
  110.     firstText      : "Primeira P&aacute;gina",
  111.     prevText       : "P&aacute;gina Anterior",
  112.     nextText       : "Pr%oacute;xima P&aacute;gina",
  113.     lastText       : "&Uacute;ltima P&aacute;gina",
  114.     refreshText    : "Recaregar",
  115.     displayMsg     : "A mostrar {0} - {1} de {2}",
  116.     emptyMsg       : 'Sem dados para mostrar'
  117.   });
  118. }
  119. if(Ext.form.Field){
  120.   Ext.form.Field.prototype.invalidText = "O valor deste campo &eacute; inv&aacute;lido";
  121. }
  122. if(Ext.form.TextField){
  123.   Ext.apply(Ext.form.TextField.prototype, {
  124.     minLengthText : "O comprimento m&iacute;nimo deste campo &eaute; {0}",
  125.     maxLengthText : "O comprimento m&aacute;ximo deste campo &eaute; {0}",
  126.     blankText     : "Este campo &eacute; de preenchimento obrigat&oacute;rio",
  127.     regexText     : "",
  128.     emptyText     : null
  129.   });
  130. }
  131. if(Ext.form.NumberField){
  132.   Ext.apply(Ext.form.NumberField.prototype, {
  133.     minText : "O valor m&iacute;nimo deste campo &eaute; {0}",
  134.     maxText : "O valor m&aacute;ximo deste campo &eaute; {0}",
  135.     nanText : "{0} n&atilde;o &eacute; um numero"
  136.   });
  137. }
  138. if(Ext.form.DateField){
  139.   Ext.apply(Ext.form.DateField.prototype, {
  140.     disabledDaysText  : "Desabilitado",
  141.     disabledDatesText : "Desabilitado",
  142.     minText           : "A data deste campo deve ser posterior a {0}",
  143.     maxText           : "A data deste campo deve ser anterior a {0}",
  144.     invalidText       : "{0} n&atilde;o &eacute; uma data v&aacute;lida - deve estar no seguinte formato{1}",
  145.     format            : "y/m/d",
  146.     altFormats        : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d|Y-m-d"
  147.   });
  148. }
  149. if(Ext.form.ComboBox){
  150.   Ext.apply(Ext.form.ComboBox.prototype, {
  151.     loadingText       : "A Carregar...",
  152.     valueNotFoundText : undefined
  153.   });
  154. }
  155. if(Ext.form.VTypes){
  156.   Ext.apply(Ext.form.VTypes, {
  157.     emailText    : 'Este campo deve ser um endere&ccedil;o de email no formato "utilizaor@dominio.com"',
  158.     urlText      : 'Este campo deve ser um URL no formato "http:/'+'/www.dominio.com"',
  159.     alphaText    : 'Este campo deve conter apenas letras e _',
  160.     alphanumText : 'Este campo deve conter apenas letras, numeros e _'
  161.   });
  162. }
  163. if(Ext.form.HtmlEditor){
  164.   Ext.apply(Ext.form.HtmlEditor.prototype, {
  165.     createLinkText : 'Indique o endere&ccedil;o do link:',
  166.     buttonTips : {
  167.       bold : {
  168.         title: 'Negrito (Ctrl+B)',
  169.         text: 'Transforma o texto em Negrito.',
  170.         cls: 'x-html-editor-tip'
  171.       },
  172.       italic : {
  173.         title: 'Italico (Ctrl+I)',
  174.         text: 'Transforma o texto em italico.',
  175.         cls: 'x-html-editor-tip'
  176.       },
  177.       underline : {
  178.         title: 'SUblinhar (Ctrl+U)',
  179.         text: 'Sublinha o texto.',
  180.         cls: 'x-html-editor-tip'
  181.       },
  182.       increasefontsize : {
  183.         title: 'Aumentar texto',
  184.         text: 'Aumenta o tamanho da fonte.',
  185.         cls: 'x-html-editor-tip'
  186.       },
  187.       decreasefontsize : {
  188.         title: 'Encolher texto',
  189.         text: 'Diminui o tamanho da fonte.',
  190.         cls: 'x-html-editor-tip'
  191.       },
  192.       backcolor : {
  193.         title: 'C&ocirc;r de fundo do texto',
  194.         text: 'Altera a c&ocirc;r de fundo do texto.',
  195.         cls: 'x-html-editor-tip'
  196.       },
  197.       forecolor : {
  198.         title: 'C&ocirc;r do texo',
  199.         text: 'Altera a a&ocirc;r do texo.',
  200.         cls: 'x-html-editor-tip'
  201.       },
  202.       justifyleft : {
  203.         title: 'ALinhar &agrave; esquerda',
  204.         text: 'ALinha o texto &agrave; esquerda.',
  205.         cls: 'x-html-editor-tip'
  206.       },
  207.       justifycenter : {
  208.         title: 'Centrar',
  209.         text: 'Centra o texto.',
  210.         cls: 'x-html-editor-tip'
  211.       },
  212.       justifyright : {
  213.         title: 'ALinhar &agrave; direita',
  214.         text: 'ALinha o texto &agravce; direita.',
  215.         cls: 'x-html-editor-tip'
  216.       },
  217.       insertunorderedlist : {
  218.         title: 'Lista',
  219.         text: 'Inicia uma lista.',
  220.         cls: 'x-html-editor-tip'
  221.       },
  222.       insertorderedlist : {
  223.         title: 'Lista Numerada',
  224.         text: 'Inicia uma lista numerada.',
  225.         cls: 'x-html-editor-tip'
  226.       },
  227.       createlink : {
  228.         title: 'Hyperlink',
  229.         text: 'Transforma o texto num hyperlink.',
  230.         cls: 'x-html-editor-tip'
  231.       },
  232.       sourceedit : {
  233.         title: 'Editar c&oacute;digo',
  234.         text: 'Alterar para o modo de edi&ccedil;&atilde;o de c&oacute;digo.',
  235.         cls: 'x-html-editor-tip'
  236.       }
  237.     }
  238.   });
  239. }
  240. if(Ext.form.BasicForm){
  241.   Ext.form.BasicForm.prototype.waitTitle = "Por favor espere...";
  242. }
  243. if(Ext.grid.GridView){
  244.   Ext.apply(Ext.grid.GridView.prototype, {
  245.     sortAscText  : "Ordena&ccedil;&atilde;o Crescente",
  246.     sortDescText : "Ordena&ccedil;&atilde;o Decrescente",
  247.     lockText     : "Fixar Coluna",
  248.     unlockText   : "Libertar Coluna",
  249.     columnsText  : "Colunas"
  250.   });
  251. }
  252. if(Ext.grid.GroupingView){
  253.   Ext.apply(Ext.grid.GroupingView.prototype, {
  254.     emptyGroupText : '(Nenhum)',
  255.     groupByText    : 'Agrupar por este campo',
  256.     showGroupsText : 'Mostrar nos Grupos'
  257.   });
  258. }
  259. if(Ext.grid.PropertyColumnModel){
  260.   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
  261.     nameText   : "Nome",
  262.     valueText  : "Valor",
  263.     dateFormat : "Y/j/m"
  264.   });
  265. }
  266. if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
  267.   Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
  268.     splitTip            : "Arastar para redimensionar.",
  269.     collapsibleSplitTip : "Arastar para redimensionar. DUplo clique para esconder"
  270.   });
  271. }