Commit 2a1cf90504b47a62970d2de771d9a486a7a8653d
1 parent
bf7e5dc5
Exists in
master
and in
7 other branches
Substituição dos IDs para os textos das ferramenta por palavras-chave
Showing
2 changed files
with
18 additions
and
18 deletions
Show diff stats
ferramentas/markercluster/dicionario.js
| 1 | 1 | //+$trad(1,i3GEOF.markercluster.dicionario)+ |
| 2 | 2 | i3GEOF.markercluster.dicionario = { |
| 3 | - 1 : [{ | |
| 3 | + 'ajuda' : [ { | |
| 4 | 4 | pt : "O agrupamento de pontos é feito conforme a proximidade entre as coordenadas originais e a escala do mapa, sendo o raio de busca definido em pixels. Cada cluster (grupo) receberá um símbolo e um número indicando o total de pontos agrupados. Os pontos fora dos grupos são mostrados com um símbolo individual.", |
| 5 | 5 | en : "", |
| 6 | 6 | es : "" |
| 7 | 7 | } ], |
| 8 | - 2 : [{ | |
| 8 | + 'ajuda2' : [ { | |
| 9 | 9 | pt : "A camada adicionada ao mapa é controlada por elementos incluídos no navegador web, por isso nem todas as funcionalidades do i3Geo irão operar corretamente na nova camada inserida no mapa.", |
| 10 | 10 | en : "", |
| 11 | 11 | es : "" |
| 12 | 12 | } ], |
| 13 | - 3 : [ { | |
| 13 | + 'selecionaTema' : [ { | |
| 14 | 14 | pt : "Tema, que será utilizado", |
| 15 | 15 | en : "", |
| 16 | 16 | es : "" |
| ... | ... | @@ -20,17 +20,17 @@ i3GEOF.markercluster.dicionario = { |
| 20 | 20 | en : "", |
| 21 | 21 | es : "" |
| 22 | 22 | } ], |
| 23 | - 6 : [ { | |
| 23 | + 'adicionaTema' : [ { | |
| 24 | 24 | pt : "O tema calculado será adicionado ao mapa atual", |
| 25 | 25 | en : "", |
| 26 | 26 | es : "" |
| 27 | 27 | } ], |
| 28 | - 7 : [ { | |
| 28 | + 'criaCamada' : [ { | |
| 29 | 29 | pt : "Criar camada", |
| 30 | 30 | en : "", |
| 31 | 31 | es : "" |
| 32 | 32 | } ], |
| 33 | - 8 : [ { | |
| 33 | + 'erroTempo' : [ { | |
| 34 | 34 | pt : "Erro. A operação demorou muito", |
| 35 | 35 | en : "", |
| 36 | 36 | es : "" |
| ... | ... | @@ -45,17 +45,17 @@ i3GEOF.markercluster.dicionario = { |
| 45 | 45 | en : "", |
| 46 | 46 | es : "" |
| 47 | 47 | } ], |
| 48 | - 12 : [ { | |
| 48 | + 'tituloNovaCamada' : [ { | |
| 49 | 49 | pt : "Título da nova camada:", |
| 50 | 50 | en : "", |
| 51 | 51 | es : "" |
| 52 | 52 | } ], |
| 53 | - 13 : [ { | |
| 53 | + 'raio' : [ { | |
| 54 | 54 | pt : "Raio de um ponto em pixels:", |
| 55 | 55 | en : "", |
| 56 | 56 | es : "" |
| 57 | 57 | } ], |
| 58 | - 14 : [ { | |
| 58 | + 'opacidade' : [ { | |
| 59 | 59 | pt : "Opacidade:", |
| 60 | 60 | en : "", |
| 61 | 61 | es : "" | ... | ... |
ferramentas/markercluster/index.js
| ... | ... | @@ -171,11 +171,11 @@ i3GEOF.markercluster = { |
| 171 | 171 | + "/ferramentas/markercluster/exemplo.png' />" |
| 172 | 172 | + "<p class='paragrafo' >" |
| 173 | 173 | + $trad( |
| 174 | - 1, | |
| 174 | + 'ajuda', | |
| 175 | 175 | i3GEOF.markercluster.dicionario) |
| 176 | 176 | + "<p class='paragrafo' >" |
| 177 | 177 | + $trad( |
| 178 | - 2, | |
| 178 | + 'ajuda2', | |
| 179 | 179 | i3GEOF.markercluster.dicionario); |
| 180 | 180 | i3GEO.util.proximoAnterior( |
| 181 | 181 | "", |
| ... | ... | @@ -189,7 +189,7 @@ i3GEOF.markercluster = { |
| 189 | 189 | t1 : function() { |
| 190 | 190 | var ins = "<p class='paragrafo'>" |
| 191 | 191 | + $trad( |
| 192 | - 3, | |
| 192 | + 'selecionaTema', | |
| 193 | 193 | i3GEOF.markercluster.dicionario) |
| 194 | 194 | + ":"; |
| 195 | 195 | ins += "<div class=styled-select id='i3GEOmarkerclusterSelTemas' ></div>"; |
| ... | ... | @@ -206,19 +206,19 @@ i3GEOF.markercluster = { |
| 206 | 206 | t2 : function() { |
| 207 | 207 | var ins = "<p class='paragrafo'>" |
| 208 | 208 | + $trad( |
| 209 | - 12, | |
| 209 | + 'tituloNovaCamada', | |
| 210 | 210 | i3GEOF.markercluster.dicionario); |
| 211 | 211 | ins += "<br></p><div class=styled-select ><input onclick='javascript:this.select();' class=digitar id='i3GEOmarkerclusterTitulo' type=text value='Mapa de agrupamento'/></div>"; |
| 212 | 212 | |
| 213 | 213 | ins += "<br><p class='paragrafo' >" |
| 214 | 214 | + $trad( |
| 215 | - 13, | |
| 215 | + 'raio', | |
| 216 | 216 | i3GEOF.markercluster.dicionario); |
| 217 | 217 | ins += "</p><div class=styled-select ><input onclick='javascript:this.select();' class=digitar id='i3GEOmarkerclusterRaio' type=text value='50'/></div>"; |
| 218 | 218 | |
| 219 | 219 | ins += "<br><p class='paragrafo' >" |
| 220 | 220 | + $trad( |
| 221 | - 14, | |
| 221 | + 'opacidade', | |
| 222 | 222 | i3GEOF.markercluster.dicionario); |
| 223 | 223 | ins += "</p><div class=styled-select ><input onclick='javascript:this.select();' class=digitar id='i3GEOmarkerclusterOpacidade' type=text value='50'/></div>"; |
| 224 | 224 | |
| ... | ... | @@ -235,11 +235,11 @@ i3GEOF.markercluster = { |
| 235 | 235 | t3 : function() { |
| 236 | 236 | var ins = "<p class='paragrafo'>" |
| 237 | 237 | + $trad( |
| 238 | - 6, | |
| 238 | + 'adicionaTema', | |
| 239 | 239 | i3GEOF.markercluster.dicionario); |
| 240 | 240 | ins += "<br><br><input id=i3GEOmarkerclusterbotao1 type='button' value='" |
| 241 | 241 | + $trad( |
| 242 | - 7, | |
| 242 | + 'criaCamada', | |
| 243 | 243 | i3GEOF.markercluster.dicionario) |
| 244 | 244 | + "' />"; |
| 245 | 245 | i3GEO.util.proximoAnterior( |
| ... | ... | @@ -274,7 +274,7 @@ i3GEOF.markercluster = { |
| 274 | 274 | i3GEOF.markercluster.aguarde.visibility = "hidden"; |
| 275 | 275 | if (retorno.data === undefined) { |
| 276 | 276 | $i("i3GEOmarkerclusterfim").innerHTML = $trad( |
| 277 | - 8, | |
| 277 | + 'erroTempo', | |
| 278 | 278 | i3GEOF.markercluster.dicionario); |
| 279 | 279 | } else { |
| 280 | 280 | i3GEO.atualiza(); | ... | ... |