Commit add750b4b027dcf19f9078bdd4109803fdb72559
1 parent
86509020
Exists in
master
and in
7 other branches
Complementação dos textos da página inicial
Showing
3 changed files
with
64 additions
and
29 deletions
Show diff stats
init/dicionario.js
... | ... | @@ -24,32 +24,60 @@ g_traducao_init = |
24 | 24 | ], |
25 | 25 | 3 : [ |
26 | 26 | { |
27 | - pt : "Sistema de administração", | |
27 | + pt : "Administração", | |
28 | 28 | en : "Management system", |
29 | 29 | es : "Sistema de administración" |
30 | 30 | } |
31 | 31 | ], |
32 | + "3a" : [ | |
33 | + { | |
34 | + pt : "Usuários cadastrados podem criar camadas, organizar o acesso aos dados, inserir novos dados no servidor e executar diversas tarefas administrativas.", | |
35 | + en : "", | |
36 | + es : "" | |
37 | + } | |
38 | + ], | |
32 | 39 | 4 : [ |
33 | 40 | { |
34 | - pt : "Mapa com interface Openlayers", | |
35 | - en : "Map with Openlayers interface", | |
36 | - es : "Mapa con interfaz Openlayers" | |
41 | + pt : "i3Geo + <a href='http://openlayers.org/' >OpenLayers <i class='fa fa-external-link fa-1g' aria-hidden='true'></i></a>", | |
42 | + en : "", | |
43 | + es : "" | |
37 | 44 | } |
38 | 45 | ], |
46 | + "4a" : [ | |
47 | + { | |
48 | + pt : "Essa é a interface de mapas de uso mais comum. Não utiliza uma projeção cartográfica específica, o que torna mais rápida a renderização das camadas.", | |
49 | + en : "", | |
50 | + es : "" | |
51 | + } | |
52 | + ], | |
39 | 53 | 5 : [ |
40 | 54 | { |
41 | - pt : "Mapa com interface Openlayers (modo debug)", | |
42 | - en : "Map with Openlayers interface (debug mode)", | |
43 | - es : "Mapa con interfaz Openlayers (modo debug)" | |
55 | + pt : "Debug", | |
56 | + en : "Debug", | |
57 | + es : "Debug" | |
44 | 58 | } |
45 | 59 | ], |
60 | + "5a" : [ | |
61 | + { | |
62 | + pt : "Mapa (OpenLayers) com o código javascript não compactado, útil para desenvolvedores. Também nas versões com <a href='interface/osmdebug.htm' >OSM</a> e <a href='interface/gmdebug.phtml'>GoogleMaps</a>.", | |
63 | + en : "", | |
64 | + es : "" | |
65 | + } | |
66 | + ], | |
46 | 67 | 6 : [ |
47 | 68 | { |
48 | - pt : "Mapa com interface Google Maps", | |
49 | - en : "Map with Google Maps interface", | |
50 | - es : "Mapa con interfaz Google Maps " | |
69 | + pt : "i3Geo + <a href='https://developers.google.com/maps' >Google Maps <i class='fa fa-external-link' aria-hidden='true'></i></a>", | |
70 | + en : "", | |
71 | + es : "" | |
51 | 72 | } |
52 | 73 | ], |
74 | + "6a" : [ | |
75 | + { | |
76 | + pt : "Baseado na API do GoogleMaps, esse mapa incorpora as funcionalidades desse popular software, incluindo as camadas de fundo com imagens e cartografia básica.", | |
77 | + en : "", | |
78 | + es : "" | |
79 | + } | |
80 | + ], | |
53 | 81 | 7 : [ |
54 | 82 | { |
55 | 83 | pt : "Mapa com interface Google Earth (depreciado)", |
... | ... | @@ -164,9 +192,16 @@ g_traducao_init = |
164 | 192 | ], |
165 | 193 | 23 : [ |
166 | 194 | { |
167 | - pt : "Mapa com Open Street Map (OSM)", | |
168 | - en : "Map with Open Street Map (OSM) ", | |
169 | - es : "Mapa con Open Street Map (OSM)" | |
195 | + pt : "i3Geo + <a href='http://wiki.openstreetmap.org' >OSM <i class='fa fa-external-link' aria-hidden='true'></i></a>", | |
196 | + en : "", | |
197 | + es : "" | |
198 | + } | |
199 | + ], | |
200 | + "23a" : [ | |
201 | + { | |
202 | + pt : "A mais completa base cartográfica livre, um esforço de milhares de pessoas de todo o globo. Adicione outras camadas do catálogo e crie mapas com riqueza de detalhes.", | |
203 | + en : "", | |
204 | + es : "" | |
170 | 205 | } |
171 | 206 | ], |
172 | 207 | 24 : [ | ... | ... |
init/index.js
... | ... | @@ -3,14 +3,21 @@ botoesIni = [ |
3 | 3 | "img":"openlayers.png", |
4 | 4 | "href":"../<?php echo $customDir; ?>/black_ol.htm", |
5 | 5 | "titulo":$trad(4,g_traducao_init), |
6 | - "subtitulo": "", | |
6 | + "subtitulo": $trad("4a",g_traducao_init), | |
7 | 7 | "fa": "map-o", |
8 | 8 | "_target": "_blank" |
9 | 9 | },{ |
10 | 10 | "img":"osm.png", |
11 | 11 | "href":"../<?php echo $customDir; ?>/black_osm.htm", |
12 | 12 | "titulo":$trad(23,g_traducao_init), |
13 | - "subtitulo": "", | |
13 | + "subtitulo": $trad("23a",g_traducao_init), | |
14 | + "fa": "map-o", | |
15 | + "_target": "_blank" | |
16 | +},{ | |
17 | + "img":"googlemaps.png", | |
18 | + "href":"../<?php echo $customDir; ?>/black_gm.phtml", | |
19 | + "titulo":$trad(6,g_traducao_init), | |
20 | + "subtitulo": $trad("6a",g_traducao_init), | |
14 | 21 | "fa": "map-o", |
15 | 22 | "_target": "_blank" |
16 | 23 | },{ |
... | ... | @@ -21,13 +28,6 @@ botoesIni = [ |
21 | 28 | "fa": "map-o", |
22 | 29 | "_target": "_self" |
23 | 30 | },{ |
24 | - "img":"googlemaps.png", | |
25 | - "href":"../<?php echo $customDir; ?>/black_gm.phtml", | |
26 | - "titulo":$trad(6,g_traducao_init), | |
27 | - "subtitulo": "", | |
28 | - "fa": "map-o", | |
29 | - "_target": "_blank" | |
30 | -},{ | |
31 | 31 | "img":"googlemaps_noite.png", |
32 | 32 | "href":"../<?php echo $customDir; ?>/googlemaps_noite.phtml", |
33 | 33 | "titulo":$trad(22,g_traducao_init), |
... | ... | @@ -101,7 +101,7 @@ botoesIni = [ |
101 | 101 | "img":"openlayersdebug.png", |
102 | 102 | "href":"../<?php echo $customDir; ?>/openlayersdebug.htm", |
103 | 103 | "titulo":$trad(5,g_traducao_init), |
104 | - "subtitulo": "", | |
104 | + "subtitulo": $trad("5a",g_traducao_init), | |
105 | 105 | "fa": "map-o", |
106 | 106 | "_target": "_blank" |
107 | 107 | },{ |
... | ... | @@ -115,7 +115,7 @@ botoesIni = [ |
115 | 115 | "img":"applications-development-web.png", |
116 | 116 | "href":"../admin", |
117 | 117 | "titulo":$trad(3,g_traducao_init), |
118 | - "subtitulo": "", | |
118 | + "subtitulo": $trad("3a",g_traducao_init), | |
119 | 119 | "fa": "cogs", |
120 | 120 | "_target": "_self" |
121 | 121 | },{ | ... | ... |
init/nindex.php
... | ... | @@ -102,19 +102,19 @@ define ( "ONDEI3GEO", ".." ); |
102 | 102 | <!-- template para permitir a traducao --> |
103 | 103 | <div id="menuTpl"> |
104 | 104 | <ul class="nav navbar-nav"> |
105 | - <li><a href="#map-o">{{{mapas}}}</a></li> | |
105 | + <li><a href="#map-o">{{{mapas}}} <i class="fa fa-map-o" aria-hidden="true"></i></a></li> | |
106 | 106 | </ul> |
107 | 107 | <ul class="nav navbar-nav"> |
108 | - <li><a href="#download">Download</a></li> | |
108 | + <li><a href="#download">Download <i class="fa fa-download" aria-hidden="true"></i></a></li> | |
109 | 109 | </ul> |
110 | 110 | <ul class="nav navbar-nav"> |
111 | - <li><a href="#check">{{{admin}}}</a></li> | |
111 | + <li><a href="#check">{{{admin}}} <i class="fa fa-cogs" aria-hidden="true"></i></a></li> | |
112 | 112 | </ul> |
113 | 113 | <ul class="nav navbar-nav"> |
114 | - <li><a href="#book">{{{docs}}}</a></li> | |
114 | + <li><a href="#book">{{{docs}}} <i class="fa fa-book" aria-hidden="true"></i></a></li> | |
115 | 115 | </ul> |
116 | 116 | <ul class="nav navbar-nav"> |
117 | - <li><a href="#group">{{{comunidade}}}</a></li> | |
117 | + <li><a href="#group">{{{comunidade}}} <i class="fa fa-group" aria-hidden="true"></i></a></li> | |
118 | 118 | </ul> |
119 | 119 | <ul class="nav navbar-nav pull-right"> |
120 | 120 | <li><a href="#"><i class="fa fa-home fa-2x"></i></i></a></li> | ... | ... |