Bienvenue sur PostGIS.fr

Bienvenue sur PostGIS.fr , le site de la communauté des utilisateurs francophones de PostGIS.

PostGIS ajoute le support d'objets géographique à la base de données PostgreSQL. En effet, PostGIS "spatialise" le serverur PostgreSQL, ce qui permet de l'utiliser comme une base de données SIG.

Maintenu à jour, en fonction de nos disponibilités et des diverses sorties des outils que nous testons, nous vous proposons l'ensemble de nos travaux publiés en langue française.

source: trunk/workshop-routing-foss4g/web/ext/src/locale/ext-lang-pt.js @ 76

Revision 76, 7.9 KB checked in by djay, 12 years ago (diff)

Ajout du répertoire web

  • Property svn:executable set to *
Line 
1/*!
2 * Ext JS Library 3.4.0
3 * Copyright(c) 2006-2011 Sencha Inc.
4 * licensing@sencha.com
5 * http://www.sencha.com/license
6 */
7/*
8 * Portuguese/Brazil Translation by Weber Souza
9 * 08 April 2007
10 * Updated by Allan Brazute Alves (EthraZa)
11 * 06 September 2007
12 * Adapted to European Portuguese by Helder Batista (hbatista)
13 * 31 January 2008
14 */
15
16Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Carregando...</div>';
17
18if(Ext.View){
19   Ext.View.prototype.emptyText = "";
20}
21
22if(Ext.grid.GridPanel){
23   Ext.grid.GridPanel.prototype.ddText = "{0} linha(s) seleccionada(s)";
24}
25
26if(Ext.TabPanelItem){
27   Ext.TabPanelItem.prototype.closeText = "Fechar";
28}
29
30if(Ext.form.Field){
31   Ext.form.Field.prototype.invalidText = "O valor para este campo &eacute; inv&aacute;lido";
32}
33
34if(Ext.LoadMask){
35    Ext.LoadMask.prototype.msg = "Carregando...";
36}
37
38Date.monthNames = [
39   "Janeiro",
40   "Fevereiro",
41   "Mar&ccedil;o",
42   "Abril",
43   "Maio",
44   "Junho",
45   "Julho",
46   "Agosto",
47   "Setembro",
48   "Outubro",
49   "Novembro",
50   "Dezembro"
51];
52
53Date.dayNames = [
54   "Domingo",
55   "Segunda",
56   "Ter&ccedil;a",
57   "Quarta",
58   "Quinta",
59   "Sexta",
60   "S&aacute;bado"
61];
62
63if(Ext.MessageBox){
64   Ext.MessageBox.buttonText = {
65      ok     : "OK",
66      cancel : "Cancelar",
67      yes    : "Sim",
68      no     : "N&atilde;o"
69   };
70}
71
72if(Ext.util.Format){
73   Ext.util.Format.date = function(v, format){
74      if(!v) return "";
75      if(!(v instanceof Date)) v = new Date(Date.parse(v));
76      return v.dateFormat(format || "d/m/Y");
77   };
78}
79
80if(Ext.DatePicker){
81   Ext.apply(Ext.DatePicker.prototype, {
82      todayText         : "Hoje",
83      minText           : "Esta data &eacute; anterior &agrave; menor data",
84      maxText           : "Esta data &eacute; posterior &agrave; maior data",
85      disabledDaysText  : "",
86      disabledDatesText : "",
87      monthNames        : Date.monthNames,
88      dayNames          : Date.dayNames,
89      nextText          : 'Pr&oacute;ximo M&ecirc;s (Control+Direita)',
90      prevText          : 'M&ecirc;s Anterior (Control+Esquerda)',
91      monthYearText     : 'Escolha um M&ecirc;s (Control+Cima/Baixo para mover entre os anos)',
92      todayTip          : "{0} (Espa&ccedil;o)",
93      format            : "d/m/Y",
94      okText            : "&#160;OK&#160;",
95      cancelText        : "Cancelar",
96      startDay          : 0
97   });
98}
99
100if(Ext.PagingToolbar){
101   Ext.apply(Ext.PagingToolbar.prototype, {
102      beforePageText : "P&aacute;gina",
103      afterPageText  : "de {0}",
104      firstText      : "Primeira P&aacute;gina",
105      prevText       : "P&aacute;gina Anterior",
106      nextText       : "Pr&oacute;xima P&aacute;gina",
107      lastText       : "&Uacute;ltima P&aacute;gina",
108      refreshText    : "Atualizar",
109      displayMsg     : "<b>{0} &agrave; {1} de {2} registo(s)</b>",
110      emptyMsg       : 'Sem registos para exibir'
111   });
112}
113
114if(Ext.form.TextField){
115   Ext.apply(Ext.form.TextField.prototype, {
116      minLengthText : "O tamanho m&iacute;nimo para este campo &eacute; {0}",
117      maxLengthText : "O tamanho m&aacute;ximo para este campo &eacute; {0}",
118      blankText     : "Este campo &eacute; obrigat&oacute;rio.",
119      regexText     : "",
120      emptyText     : null
121   });
122}
123
124if(Ext.form.NumberField){
125   Ext.apply(Ext.form.NumberField.prototype, {
126      minText : "O valor m&iacute;nimo para este campo &eacute; {0}",
127      maxText : "O valor m&aacute;ximo para este campo &eacute; {0}",
128      nanText : "{0} n&atilde;o &eacute; um n&uacute;mero v&aacute;lido"
129   });
130}
131
132if(Ext.form.DateField){
133   Ext.apply(Ext.form.DateField.prototype, {
134      disabledDaysText  : "Desabilitado",
135      disabledDatesText : "Desabilitado",
136      minText           : "A data deste campo deve ser posterior a {0}",
137      maxText           : "A data deste campo deve ser anterior a {0}",
138      invalidText       : "{0} n&atilde;o &eacute; uma data v&aacute;lida - deve ser usado o formato {1}",
139      format            : "d/m/Y",
140      startDay          : 0
141   });
142}
143
144if(Ext.form.ComboBox){
145   Ext.apply(Ext.form.ComboBox.prototype, {
146      loadingText       : "Carregando...",
147      valueNotFoundText : undefined
148   });
149}
150
151if(Ext.form.VTypes){
152   Ext.apply(Ext.form.VTypes, {
153      emailText    : 'Este campo deve ser um endere&ccedil;o de e-mail v&aacute;lido, no formato "utilizador@dominio.com"',
154      urlText      : 'Este campo deve ser um URL no formato "http:/'+'/www.dominio.com"',
155      alphaText    : 'Este campo deve conter apenas letras e _',
156      alphanumText : 'Este campo deve conter apenas letras, n&uacute;meros e _'
157   });
158}
159
160if(Ext.form.HtmlEditor){
161   Ext.apply(Ext.form.HtmlEditor.prototype, {
162         createLinkText : 'Por favor, entre com o URL do link:',
163         buttonTips : {
164            bold : {
165               title: 'Negrito (Ctrl+B)',
166               text: 'Deixa o texto seleccionado em negrito.',
167               cls: 'x-html-editor-tip'
168            },
169            italic : {
170               title: 'Italico (Ctrl+I)',
171               text: 'Deixa o texto seleccionado em italico.',
172               cls: 'x-html-editor-tip'
173            },
174            underline : {
175               title: 'Sublinhado (Ctrl+U)',
176               text: 'Sublinha o texto seleccionado.',
177               cls: 'x-html-editor-tip'
178           },
179           increasefontsize : {
180               title: 'Aumentar Texto',
181               text: 'Aumenta o tamanho da fonte.',
182               cls: 'x-html-editor-tip'
183           },
184           decreasefontsize : {
185               title: 'Diminuir Texto',
186               text: 'Diminui o tamanho da fonte.',
187               cls: 'x-html-editor-tip'
188           },
189           backcolor : {
190               title: 'Cor de Fundo',
191               text: 'Muda a cor do fundo do texto seleccionado.',
192               cls: 'x-html-editor-tip'
193           },
194           forecolor : {
195               title: 'Cor da Fonte',
196               text: 'Muda a cor do texto seleccionado.',
197               cls: 'x-html-editor-tip'
198           },
199           justifyleft : {
200               title: 'Alinhar &agrave; Esquerda',
201               text: 'Alinha o texto &agrave; esquerda.',
202               cls: 'x-html-editor-tip'
203           },
204           justifycenter : {
205               title: 'Centrar Texto',
206               text: 'Centra o texto no editor.',
207               cls: 'x-html-editor-tip'
208           },
209           justifyright : {
210               title: 'Alinhar &agrave; Direita',
211               text: 'Alinha o texto &agrave; direita.',
212               cls: 'x-html-editor-tip'
213           },
214           insertunorderedlist : {
215               title: 'Lista com Marcadores',
216               text: 'Inicia uma lista com marcadores.',
217               cls: 'x-html-editor-tip'
218           },
219           insertorderedlist : {
220               title: 'Lista Numerada',
221               text: 'Inicia uma lista numerada.',
222               cls: 'x-html-editor-tip'
223           },
224           createlink : {
225               title: 'Hyperliga&ccedil;&atilde;o',
226               text: 'Transforma o texto selecionado num hyperlink.',
227               cls: 'x-html-editor-tip'
228           },
229           sourceedit : {
230               title: 'Editar Fonte',
231               text: 'Troca para o modo de edi&ccedil;&atilde;o de c&oacute;digo fonte.',
232               cls: 'x-html-editor-tip'
233           }
234        }
235   });
236}
237
238if(Ext.grid.GridView){
239   Ext.apply(Ext.grid.GridView.prototype, {
240      sortAscText  : "Ordem Ascendente",
241      sortDescText : "Ordem Descendente",
242      lockText     : "Bloquear Coluna",
243      unlockText   : "Desbloquear Coluna",
244      columnsText  : "Colunas"
245   });
246}
247
248if(Ext.grid.PropertyColumnModel){
249   Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
250      nameText   : "Nome",
251      valueText  : "Valor",
252      dateFormat : "d/m/Y"
253   });
254}
255
256if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
257   Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
258      splitTip            : "Arraste para redimensionar.",
259      collapsibleSplitTip : "Arraste para redimensionar. Duplo clique para esconder."
260   });
261}
Note: See TracBrowser for help on using the repository browser.