Revision 36525

View differences:

tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/build.xml
1
<project name="Generar extension en Andami" default="generate-without-source" basedir=".">
2
    <description>
3
        Instala el plugin en Andami
4
    </description>
5
  <!-- set global properties for this build -->
6
	<property name="src" location="src"/>
7
	<property name="build" location="bin"/>
8
	<property name="dist"  location="dist"/>
9
	<property name="mainplugin" value="com.iver.cit.gvsig"/>
10
	<property name="gvsiglibjar" value="gvsig-catalogClient"/>
11

  
12
	<property name="catalogPlugin" value="es.gva.cit.gvsig.catalogClient"/>
13
	<property name="plugin" value="${catalogPlugin}"/>
14
	<property name="gazzetterPlugin" value="es.gva.cit.gvsig.gazetteer"/>
15
	<property name="remoteClientPlugin" value="remoteClient"/>
16
	<property name="wfsPlugin" value="wfs"/>
17
	<property name="postgisPlugin" value="postgis"/>
18

  
19
	<property name="appCatalogDir" value="../appCatalogAndGazetteerClient"/>
20
	<property name="remoteClientsDir" value="../libRemoteServices"/>
21

  
22
	<property name="lib" value="lib"/>
23
	<property name="andami" value="../_fwAndami"/>
24
	<property name="extensionsDir" location="${andami}/gvSIG/extensiones"/>
25
	<property name="catProtocolJarName" value="catCliProto.jar"/>
26
	<property name="andamiJar" location="${andami}/andami.jar"/>
27
	<property name="gvsigJar" location="${extensionsDir}/com.iver.cit.gvsig/lib/com.iver.cit.gvsig.jar"/>
28
	<property name="andamiLibs" location="${andami}/lib"/>
29
	<property name="fmapLibs" location="../libFMap/lib" />
30
	<import file="../binaries/ant/utilities.xml"/>
31

  
32

  
33

  
34
  <target name="init">
35
    <!-- Create the time stamp -->
36
    <tstamp/>
37
    <!-- Create the build directory structure used by compile -->
38
    <mkdir dir="${build}"/>
39
    <mkdir dir="${dist}"/>
40
  	<!-- Creamos un fichero con el timeStamp para que lo lea el FPanelAbout -->
41

  
42
  </target>
43

  
44
	<target name="buildNumber">
45
		<!--      <echo> Obsoleto: este proyecto se distribuye con gvSIG de base </echo>        -->
46

  
47
		<propertyfile
48
				file="build.number"
49
				comment="Build Number for ANT. Do not edit!">
50
				<entry  key="build.number" default="0" type="int" operation="+"/>
51
		</propertyfile>
52
		<property file="build.number"/>
53

  
54
	</target>
55

  
56
	<target name="import-build-number">
57
	  	<copy todir=".">
58
	  		<fileset file="${buildNumberFile}"/>
59
	  	</copy>
60
	</target>
61

  
62
  <target name="generate-without-source_old"
63
  		description="generate the distribution without the source file">
64
  		<!-- depends="wcs-driver" -->
65
    <!-- Create the distribution directory -->
66
    <mkdir dir="${dist}"/>
67
    <mkdir dir="${dist}/lib"/>
68

  
69
    <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
70
    <jar jarfile="${dist}/lib/${catProtocolJarName}" basedir="${appCatalogDir}/bin"/>
71
  	<jar jarfile="${dist}/lib/${remoteClientPlugin}.jar" basedir="${remoteClientsDir}/bin"/>
72
    <jar jarfile="${dist}/lib/${catalogPlugin}.jar" basedir="${build}" includes="es/gva/cit/gvsig/catalog/**"/>
73
  	<jar jarfile="${dist}/lib/${gazzetterPlugin}.jar" basedir="${build}" includes="es/gva/cit/gvsig/gazetteer/**"/>
74
  	<copy file="config/config.xml" todir="${dist}"/>
75
  	<copy file="build.number" todir="${dist}"/>
76
  	<copy file="config/about.htm" todir="${dist}"/>
77
  	<loadproperties srcFile="build.number"/>
78
  	<replace casesensitive="true"
79
  		file="${dist}/about.htm"
80
  	  	token="#build.number#"
81
  		value="${build.number}"/>
82
  	<replace casesensitive="true"
83
  		file="${dist}/about.htm"
84
  	  	token="#build.number.original#"
85
  		value="${build.number.original}"/>
86
    <copy file="config/plugin.dtd" todir="${dist}"/>
87
    <copy todir="${dist}">
88
    	<fileset dir="config" includes="text*.properties"/>
89
    </copy>
90
    <copy todir="${dist}/images">
91
    	<fileset dir="${appCatalogDir}/images/" includes="*"/>
92
    </copy>
93
    <copy todir="${dist}/config">
94
      	<fileset dir="${appCatalogDir}/config/" includes="*"/>
95
    </copy>
96
    <copy todir="${dist}">
97
    	<!--fileset dir="./lib" includes="*.jar,*.zip"/ -->
98
    	<fileset dir="." includes=".keystore"/>
99
     	<fileset dir="${appCatalogDir}" includes="servers.txt"/>
100
        </copy>
101
    <copy todir="${dist}/lib">
102
    	<fileset dir="${appCatalogDir}/lib" includes="*.jar"/>
103
    </copy>
104
  	<move todir="${extensionsDir}/${catalogPlugin}/">
105
    	<fileset dir="${dist}" includes="**/**"/>
106
    </move>
107
  	<delete file="${extensionsDir}/${catalogPlugin}/lib/xercesImpl.jar"/>
108
  	<delete file="${extensionsDir}/${catalogPlugin}/lib/xml-apis.jar"/>
109

  
110
  </target>
111

  
112
	<target name="generate-with-source"
113
   			description="generate the distribution with the source file">
114
    <!-- Create the distribution directory -->
115
    <mkdir dir="${dist}"/>
116

  
117
    <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
118
    <jar jarfile="${dist}/${catalogPlugin}.jar" basedir="${build}"/>
119
    <copy file="config/config.xml" todir="${dist}"/>
120
	<copy file="build.number" todir="${dist}"/>
121
	  	<copy file="config/about.htm" todir="${dist}"/>
122
	  	<loadproperties srcFile="build.number"/>
123
	  	<replace casesensitive="true"
124
	  		file="${dist}/about.htm"
125
	  	  	token="#build.number#"
126
	  		value="${build.number}"/>
127
	  	<replace casesensitive="true"
128
	  		file="${dist}/about.htm"
129
	  	  	token="#build.number.original#"
130
	  		value="${build.number.original}"/>
131
    <copy file="config/plugin.dtd" todir="${dist}"/>
132
    <copy todir="${dist}">
133
    	<fileset dir="config" includes="text*.properties"/>
134
    </copy>
135
    <copy todir="${dist}">
136
    	<fileset dir="." includes="${src}"/>
137
    </copy>
138
    <copy todir="${dist}/images">
139
    	<fileset dir="images/" includes="*"/>
140
    </copy>
141
    <!--copy todir="${dist}">
142
    	<fileset dir="./lib" includes="*.jar,*.zip"/>
143
    </copy-->
144
    <move todir="${extension-dir}/${catalogPlugin}/">
145
    	<fileset dir="${dist}" includes="**/**"/>
146
    </move>
147
  </target>
148

  
149
	<target name="batch-build"
150
			description="compile the sources, create the jar file"
151
			depends="call-appCatalog-build,compile,create-jar,copy-data-files,move-to-andami">
152
	</target>
153

  
154
	<target name="call-appCatalog-build">
155
		<ant dir="${appCatalogDir}" target="batch-build" inheritAll="false">
156
			<property name="targetDir" location="${dist}/lib"/>
157
			<property name="jarName" value="catCliProto.jar"/>
158
			<property name="andamiLibs" value="${andamiLibs}"/>
159
		</ant>
160
	</target>
161

  
162
	<target name="compile" description="compile the source" >
163
		<!-- Compile the Java code from ${src} to ${build} -->
164
		<antcall target="gvSIG-import-build-number"/>
165
		<mkdir dir="${build}" />
166
		<loadEclipseClasspath project="${basedir}"/>
167
		<gvSIG-javac
168
			classpath="${eclipseClasspath}"/>
169
	</target>
170

  
171

  
172
	<target name="create-jar"
173
			description="Creates the plugin jar">
174
		<mkdir dir="${dist}/lib"/>
175
	    <jar jarfile="${dist}/lib/${catalogPlugin}.jar" basedir="${build}" includes="es/gva/cit/gvsig/catalog/**"/>
176
	  	<jar jarfile="${dist}/lib/${gazzetterPlugin}.jar" basedir="${build}" includes="es/gva/cit/gvsig/gazetteer/**"/>
177
	</target>
178

  
179
	<target name="copy-data-files" depends="make-package-info">
180
	  	<copy file="config/config.xml" todir="${dist}"/>
181
		<copy file="build.number" todir="${dist}"/>
182
		<copy file="package.info" todir="${dist}"/>
183
	  	<copy file="config/about.htm" todir="${dist}"/>
184
	  	<loadproperties srcFile="build.number"/>
185
	  	<replace casesensitive="true"
186
	  		file="${dist}/about.htm"
187
	  	  	token="#build.number#"
188
	  		value="${build.number}"/>
189
	  	<replace casesensitive="true"
190
	  		file="${dist}/about.htm"
191
	  	  	token="#build.number.original#"
192
	  		value="${build.number.original}"/>
193
	    <copy file="config/plugin.dtd" todir="${dist}"/>
194
	    <copy todir="${dist}">
195
	    	<fileset dir="config" includes="text*.properties"/>
196
	    </copy>
197
	    <copy todir="${dist}/images">
198
	    	<fileset dir="images" includes="*"/>
199
	    </copy>
200
	    <copy todir="${dist}/images">
201
	    	<fileset dir="${appCatalogDir}/images/" includes="*"/>
202
	    </copy>
203
	    <copy todir="${dist}">
204
	    	<!--fileset dir="./lib" includes="*.jar,*.zip"/ -->
205
	    	<fileset dir="." includes=".keystore"/>
206
	     	<fileset dir="${appCatalogDir}" includes="servers.txt"/>
207
        </copy>
208
	    <copy todir="${dist}/config">
209
	      	<fileset dir="${appCatalogDir}/config/" includes="*"/>
210
	    </copy>
211
	</target>
212

  
213
	<target name="move-to-andami">
214
	    <copy todir="${dist}/lib">
215
	    	<fileset dir="${appCatalogDir}/lib" includes="*.jar"/>
216
	    </copy>
217
	  	<move todir="${extensionsDir}/${catalogPlugin}/">
218
	    	<fileset dir="${dist}" includes="**/**"/>
219
	    </move>
220
	</target>
221

  
222
	<target name="clean"
223
    	description="clean up" >
224
		<!-- Delete the ${build} and ${dist} directory trees -->
225
		<delete dir="${build}"/>
226
		<delete dir="${dist}"/>
227
	</target>
228

  
229

  
230
  <target name="clean-orig"
231
        description="clean up" >
232
    <!-- Delete the ${build} and ${dist} directory trees -->
233

  
234

  
235
  </target>
236
	<target name="distribution"
237
		description="increment build number and generate the distribution without the source file"
238
		depends="buildNumber,call-appCatalog-build,compile,create-jar,copy-data-files,move-to-andami">
239
	</target>
240

  
241
	<target name="generate-without-source"
242
   			description="generate the distribution with the source file"
243
		depends="call-appCatalog-build,create-jar,copy-data-files,move-to-andami">
244

  
245
	</target>
246
</project>
247

  
0 248

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/.classpath
1
<?xml version="1.0" encoding="UTF-8"?>
2
<classpath>
3
	<classpathentry kind="src" path="src"/>
4
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5
	<classpathentry kind="lib" path="/libFMap/lib/gdbms-0.8-SNAPSHOT.jar" sourcepath="/appgvSIG"/>
6
	<classpathentry kind="lib" path="/libFMap/lib/postgis-jdbc-driver.jar"/>
7
	<classpathentry kind="lib" path="/libFMap/lib/postgresql-74.213.jar"/>
8
	<classpathentry kind="lib" path="/_fwAndami/lib/castor-0.9.5.3-xml.jar"/>
9
	<classpathentry kind="lib" path="/libFMap/lib/driver-manager-1.1.jar"/>
10
	<classpathentry kind="lib" path="/_fwAndami/lib/gvsig-i18n.jar"/>
11
	<classpathentry kind="lib" path="/_fwAndami/lib/iver-utiles.jar" sourcepath="/Utiles/src"/>
12
	<classpathentry combineaccessrules="false" kind="src" path="/_fwAndami"/>
13
	<classpathentry combineaccessrules="false" kind="src" path="/libFMap"/>
14
	<classpathentry combineaccessrules="false" kind="src" path="/appgvSIG"/>
15
	<classpathentry combineaccessrules="false" kind="src" path="/appCatalogAndGazetteerClient"/>
16
	<classpathentry kind="lib" path="/appCatalogAndGazetteerClient/lib/commons-httpclient-2.0.2.jar"/>
17
	<classpathentry kind="lib" path="/appCatalogAndGazetteerClient/lib/ostermillerutils_1_04_03_for_java_1_4.jar"/>
18
	<classpathentry kind="lib" path="/libFMap/lib/org.cresques.cts.jar"/>
19
	<classpathentry kind="lib" path="/_fwAndami/lib/org.gvsig.exceptions.jar"/>
20
	<classpathentry kind="output" path="bin"/>
21
</classpath>
0 22

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/.project
1
<?xml version="1.0" encoding="UTF-8"?>
2
<projectDescription>
3
	<name>extCatalogAndGazetteer</name>
4
	<comment></comment>
5
	<projects>
6
	</projects>
7
	<buildSpec>
8
		<buildCommand>
9
			<name>org.eclipse.jdt.core.javabuilder</name>
10
			<arguments>
11
			</arguments>
12
		</buildCommand>
13
	</buildSpec>
14
	<natures>
15
		<nature>org.eclipse.jdt.core.javanature</nature>
16
	</natures>
17
</projectDescription>
0 18

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/src-test/es/gva/cit/gvsig/gazetteer/AllTests.java
1
package es.gva.cit.gvsig.gazetteer;
2

  
3
import junit.framework.Test;
4
import junit.framework.TestSuite;
5

  
6
public class AllTests {
7

  
8
	public static Test suite() {
9
		TestSuite suite = new TestSuite("Test for es.gva.cit.gvsig.gazetteer");
10
		//$JUnit-BEGIN$
11

  
12
		//$JUnit-END$
13
		return suite;
14
	}
15

  
16
}
0 17

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/src-test/es/gva/cit/gvsig/gazetteer/gui/SearchToolPanelTest.java
1
package es.gva.cit.gvsig.gazetteer.gui;
2
import javax.swing.JFrame;
3

  
4
import es.gva.cit.gvsig.gazetteer.gui.tools.SearchToolPanel;
5

  
6
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
7
 *
8
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
9
 *
10
 * This program is free software; you can redistribute it and/or
11
 * modify it under the terms of the GNU General Public License
12
 * as published by the Free Software Foundation; either version 2
13
 * of the License, or (at your option) any later version.
14
 *
15
 * This program is distributed in the hope that it will be useful,
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 * GNU General Public License for more details.
19
 *
20
 * You should have received a copy of the GNU General Public License
21
 * along with this program; if not, write to the Free Software
22
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
23
 *
24
 * For more information, contact:
25
 *
26
 *  Generalitat Valenciana
27
 *   Conselleria d'Infraestructures i Transport
28
 *   Av. Blasco Ib??ez, 50
29
 *   46010 VALENCIA
30
 *   SPAIN
31
 *
32
 *      +34 963862235
33
 *   gvsig@gva.es
34
 *      www.gvsig.gva.es
35
 *
36
 *    or
37
 *
38
 *   IVER T.I. S.A
39
 *   Salamanca 50
40
 *   46005 Valencia
41
 *   Spain
42
 *
43
 *   +34 963163400
44
 *   dac@iver.es
45
 */
46
/* CVS MESSAGES:
47
 *
48
 * $Id$
49
 * $Log$
50
 * Revision 1.1  2006-12-12 10:20:50  jorpiell
51
 * Se ha creado una interfaz que deben usar las tools del gazetteer
52
 *
53
 * Revision 1.1  2006/12/12 08:52:29  jorpiell
54
 * Primera versi?n de la tool de b?squeda usando el protocolo ADL
55
 *
56
 *
57
 */
58
/**
59
 * @author Jorge Piera Llodr? (piera_jor@gva.es)
60
 */
61
public class SearchToolPanelTest {
62

  
63
	/**
64
	 * @param args
65
	 */
66
	public static void main(String[] args) {
67
		JFrame f = new JFrame();
68
		f.addWindowListener(new java.awt.event.WindowAdapter() {
69
            public void windowClosing(java.awt.event.WindowEvent evt) {
70
            	System.exit(0);
71
            }
72
        });
73
		f.getContentPane().add(new SearchToolPanel());	    
74
		f.setBounds(100,100,515,225);
75
		f.setVisible(true);
76
	}
77

  
78
}
0 79

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/text_de.properties
1
#Translations for language [de]
2
#Tue May 12 10:57:39 CEST 2009
3
arcims_load=L\u00e4dt ArcIMS
4
arcims_server_error=ArcIMS Serverfehler
5
Catalog=
6
catalog_search=Suche nach Geodaten
7
Catalogo=
8
Error_accediendo_a_los_datos=Fehler beim Datenzugriff
9
gazetteer_connect=Lokalisierung \u00fcber Namensverzeichnis
10
gazetteer_search=Suche \u00fcber Namensverzeichnis
11
layer=Layer
12
link=Link
13
linkError=Fehler beim Laden der Netzwerkressource
14
linkLoad=Netzwerkressource laden
15
loadWMS=WMS laden
16
mantainold=Vorherige Suchanfragen l\u00f6schen
17
metadata_catalog=Suche nach Geodaten - Verbindung
18
metadata_tree=Metadatenbaum
19
parameters=Parameter
20
pluginNotFound=Es fehlt die n\u00f6tige Erweiterung f\u00fcr das Laden dieser Ressource.
21
pluginNotFoundTitle=Layer laden
22
postgisError=Fehler beim Laden der PostGIS-Datenbank
23
postgisLoad=PostGIS laden
24
propertiesNameWindow=Eigenschaftsfenster
25
Recursos\ Disponibles=Verf\u00fcgbare Ressourcen
26
search_results=Suchergebnisse
27
server=Server
28
wcsError=Fehler beim Laden der Coverage
29
wcsLoad=WCS laden
30
wfsError=Fehler beim Laden des Features
31
wfsLoad=WFS laden
32
wmsError=Fehler beim Laden der Karte
0 33

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/text_sw.properties
1
#Translations for language [sw]
2
#Tue May 12 10:57:39 CEST 2009
3
arcims_load=Kupandisha ArcIms
4
arcims_server_error=Kosa la Kitoa Huduma cha ArcIMS 
5
Catalog=
6
catalog_search=Utafutaji wa data za Sehemu ya Dunia (Inayohusika)
7
Catalogo=
8
Error_accediendo_a_los_datos=Kosa Katika Kupata Data
9
gazetteer_connect=Kutafutwa na Faharasa ya Majina ya Kijiografia
10
gazetteer_search=Kutafutwa na Faharasa ya Majina ya Kijiografia
11
layer=Tabaka/Safu
12
link=Kiungo
13
linkError=Kosa Katika Kuunga na kubeba Kazi
14
linkLoad=Mzigo wa Kuhudumia Mtandao
15
loadWMS=Bebesha WMS
16
mantainold=Ondoa Uchambuzi wa Zamani
17
metadata_catalog=Utafutaji wa data za dunia- Kiungo
18
metadata_tree=Mfumo wa Data Kuhusu Data
19
parameters=Vigezo
20
pluginNotFound=Hakuna ziada za kuweza kubeba nyenzo hii
21
pluginNotFoundTitle=Inabebesha Tabaka
22
postgisError=Kosa katika kubeba Hazina ya Habari
23
postgisLoad=Kubeba Postgis l
24
propertiesNameWindow=
25
Recursos\ Disponibles=\ Rasilimali Zilizopo
26
search_results=Matokeo ya uchambuzi
27
server=Kompyuta Hudumizi
28
wcsError=Kosa katika Kubeba Tabaka
29
wcsLoad=Kubeba WCS
30
wfsError=Kosa Katika Kubeba  Kitu
31
wfsLoad=Kubeba WFS
32
wmsError=Kosa la kubeba Ramani
0 33

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/cvs/Entries
1
/about.htm/1.1.2.1/Tue Jul  3 08:05:39 2007//TCatalogYNomenclator_v1_1_0_1005
2
/config.xml/1.9/Tue Mar 28 10:58:23 2006//TCatalogYNomenclator_v1_1_0_1005
3
/plugin.dtd/1.1/Tue May 24 16:15:40 2005/-kb/TCatalogYNomenclator_v1_1_0_1005
4
/text.properties/1.5.2.7/Tue Mar 13 12:37:30 2007//TCatalogYNomenclator_v1_1_0_1005
5
/text_ca.properties/1.2.2.5/Mon Feb 26 15:43:23 2007//TCatalogYNomenclator_v1_1_0_1005
6
/text_cs.properties/1.2.2.6/Thu Mar 29 14:54:58 2007//TCatalogYNomenclator_v1_1_0_1005
7
/text_de.properties/1.2.2.5/Mon Feb 26 15:43:23 2007//TCatalogYNomenclator_v1_1_0_1005
8
/text_en.properties/1.5.2.5/Mon Feb 26 15:43:23 2007//TCatalogYNomenclator_v1_1_0_1005
9
/text_eu.properties/1.2.2.6/Wed Mar 21 08:41:41 2007//TCatalogYNomenclator_v1_1_0_1005
10
/text_fr.properties/1.2.2.5/Mon Feb 26 15:43:23 2007//TCatalogYNomenclator_v1_1_0_1005
11
/text_gl.properties/1.2.2.5/Mon Feb 26 15:43:23 2007//TCatalogYNomenclator_v1_1_0_1005
12
/text_it.properties/1.2.2.6/Mon Feb 26 15:43:23 2007//TCatalogYNomenclator_v1_1_0_1005
13
/text_nl.properties/1.1.2.1/Mon Feb 26 15:43:23 2007//TCatalogYNomenclator_v1_1_0_1005
14
/text_pl.properties/1.1.2.2/Wed Apr 18 08:50:14 2007//TCatalogYNomenclator_v1_1_0_1005
15
/text_pt.properties/1.2.2.5/Mon Feb 26 15:43:23 2007//TCatalogYNomenclator_v1_1_0_1005
16
/text_ro.properties/1.1.2.2/Thu Mar  1 09:09:48 2007//TCatalogYNomenclator_v1_1_0_1005
17
/text_zh.properties/1.1.2.2/Mon Feb 26 15:43:23 2007//TCatalogYNomenclator_v1_1_0_1005
0 18

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/cvs/Tag
1
TCatalogYNomenclator_v1_1_0_1005
0 2

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/cvs/Repository
1
gvSIG-project/extensions/extCatalogYNomenclator/config
0 2

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/cvs/Root
1
:extssh:jorpiell@www.gvsig.org:/var/lib/cvs-gvSIG
0 2

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/about.htm
1
<html>
2
  <head>
3
    <title>Extesi&oacute;n de Cat&aacute;logo y Nomencl&aacute;tor.</title>
4
    <meta content="">
5
    <style></style>
6
  </head>
7
  <body>
8
<table width="60%" border="0">
9
  <tr>
10
    <td width="64%"><img src="images/logo_horiz_bicolor_gva.png" width="329" height="50"></td>
11
    <td width="36%"><div align="right"><img src="images/logoIver.png" width="87" height="50"></div></td>
12
  </tr>
13
  <tr>
14
    <td colspan="2"><font face="Arial, Helvetica, sans-serif">&copy; Copyright
15
      Generalitat Valenciana, IVER T.I. 2007.</font></td>
16
  </tr>
17
</table>
18
  <h3>Extesi&oacute;n de Cat&aacute;logo y Nomencl&aacute;tor.</h3>
19
  <p><br><br><b> Build Number: #build.number.original#.#build.number#</b></p>
20
  </body>
21
</html>
0 22

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/text_en.properties
1
#Translations for language [en]
2
#Tue May 12 10:57:39 CEST 2009
3
abstract=Abstract
4
addLayer=Add Layer
5
allWords=Every word
6
anyResult=The search hasn't retrieve any result
7
anyWord=Any word
8
arcims_load=Loading ArcIms
9
arcims_server_error=ArcIMS server error
10
aspect=Aspect setup
11
attributes=Attributes
12
BRX=BRX\:
13
BRY=BRY\:
14
cancelSearchButton=Cancel
15
Catalog=
16
catalog_search=Geodata search
17
Catalogo=
18
cathegory=Cathegory
19
cathegoryAny=Any
20
cathegoryBiota=Biota
21
cathegoryBoundaries=Boundaries
22
cathegoryClimatologyMeteorologyAtmosphere=Climatology meteorology and atmosphere
23
cathegoryEconomy=Economy
24
cathegoryElevation=Elevation
25
cathegoryEnvironment=Environment
26
cathegoryFarming=Farming
27
cathegoryGeoscientificInformation=Geoscientific information
28
cathegoryHealth=Health
29
cathegoryImageryBaseMapsEarthCover=Imagery base maps earth cover
30
cathegoryInlandWaters=Insland waters
31
cathegoryIntelligenceMilitary=Intelligence military
32
cathegoryLocation=Location
33
cathegoryOceans=Oceans
34
cathegoryPlanningCadastre=Planning cadastre
35
cathegorySociety=Society
36
cathegoryStructure=Structure
37
cathegoryTransportation=Transportation
38
cathegoryUtilitiesCommunication=Utilities and communication
39
chooseAttribute=Choose one attribute to do the search
40
close=Close
41
concordancia=Agreement
42
connectButton=Connect
43
coordinates=Coordinates
44
coordinatesContains=contain
45
coordinatesEnclose=enclose
46
coordinatesEqual=equal
47
coordinatesFullyOutsideOf=is fully outside of
48
database=Database name
49
description=Description
50
downloadColumn=Download
51
elementName=ElementName
52
Error_accediendo_a_los_datos=Error getting data
53
errorFENotSupported=gvSIG only supports the Filter Encoding Language to do Querys
54
errorGetRecords=Error with the getRecords operation
55
errorIsASRWServer=It is a SRW server\!
56
errorNotCSWSupportedProtocol=Server found, but it doesn't support the CSW protocol
57
errorNotParsedReply=Error parsing the reply. The server has been found, but is possible it doesn't support the specified protocol
58
errorNotSupportedCapabilities=GetCapabilities error. This error could has two reasons\: Either an error doing the operation has happened or the server doesn't support the specified protocol
59
errorNotSupportedProtocol=The server doesn't support the specified protocol
60
errorNotThesaurusSelected=The WFS protocol can't work if you dont select a thesaurus element
61
errorServerException=Server exception returned
62
errorServerNotFound=The server doesn't exist
63
errorSOAPProtocol=SOAP error
64
exactSentence=Exact sentence
65
from=From
66
gazetteer_connect=Finding by Gazetteer
67
gazetteer_search=Finding by Gazetteer
68
goto=Go to the place
69
inteligentSearch=Intelligent search
70
inteligentSearchAscii=All word forms
71
keyWords=KeyWords
72
last=Last
73
lastUpdateDate=Last update
74
layer=Layer
75
link=Link
76
linkColumn=Web Site
77
linkError=Link loading error
78
linkLoad=Web service load
79
loadWMS=WMS load
80
localize=Localize
81
lowerCoordinates=Lower
82
mantainold=Remove old searches
83
metadata_catalog=Geodata Search - Connection
84
metadata_tree=Metadata Tree
85
name=Name
86
next=Next
87
of=of
88
page=Page
89
paint=Draw result
90
parameters=Parameters
91
pluginNotFound=You don't have any extensions to load this type of resources
92
pluginNotFoundTitle=Loading Layers
93
postgisColumn=Postgis
94
postgisError=Database loading error
95
postgisLoad=Postgis load
96
propertiesNameWindow=Window properties
97
protocolsGroup=Protocols
98
provider=Provider
99
purpose=Purpose
100
Recursos\ Disponibles=Available Resources
101
reproyectar_aviso=The layer projection is not the same as the views projection.\nATENTION\: It can be unaccurate with some transformations.\nPlease read docs
102
reproyectar_pregunta=Do you want to reproject?
103
resourceLinkColumn=Link
104
resourceShowColumn=Show
105
resourceTypeColumn=Type
106
restrictArea=Restrict search area
107
results=Results
108
resutsByPage=Results per page
109
rootName=Root
110
scale=Scale
111
scaleAny=any
112
scaleI=>1.000.000
113
scaleII=1.000.000 - 250.000
114
scaleIII=250.000 - 50.000
115
scaleIV=50.000 - 10.000
116
scaleV=10.000 - 5000
117
scaleVI=<5.000
118
search_results=Search results
119
searchButton=Search
120
server=Server
121
serverReply=Server Answer
122
serverURL=Fill the catalog server address
123
serverURLCat=Fill the gazetteer server address
124
title=Title
125
to=To
126
type=Type
127
ULX=ULX\:
128
ULY=ULY\:
129
unknown=Unknown
130
upperCoordinates=Upper
131
value=Value
132
version=Version
133
wcsColumn=Coverage
134
wcsError=Cover loading error
135
wcsLoad=WCS load
136
wfsColumn=Feature
137
wfsError=feature loading error
138
wfsLoad=WFS load
139
wmsColumn=Map
140
wmsError=Map loading error
0 141

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/text_gl.properties
1
#Translations for language [gl]
2
#Tue May 12 10:57:39 CEST 2009
3
arcims_load=Carga de ArcIms
4
arcims_server_error=Erro no servidor ArcIMS
5
Catalog=
6
catalog_search=B\u00fasqueda de xeodatos
7
Catalogo=
8
Error_accediendo_a_los_datos=Erro de acceso aos datos
9
gazetteer_connect=Localizar polo Nomencl\u00e1tor
10
gazetteer_search=Localizar polo Nomencl\u00e1tor
11
layer=Capa
12
link=Ligazon
13
linkError=Ocorreu un erro ao cargar a ligaz\u00f3n
14
linkLoad=Carga dun recurso web
15
loadWMS=Carga de WMS
16
mantainold=Elimina-las b\u00fasquedas anteriores
17
metadata_catalog=B\u00fasqueda de Xeodatos - Conexi\u00f3n
18
metadata_tree=\u00c1rbore de Metadato
19
parameters=Par\u00e1metros
20
pluginNotFound=Non t\u00e9s ningunha extensi\u00f3n para cargar recursos deste tipo
21
pluginNotFoundTitle=Carga de capas
22
postgisError=Ocorr\u00e9u un erro ao cargar a base de datos
23
postgisLoad=Carga de Postgis
24
propertiesNameWindow=
25
Recursos\ Disponibles=Recursos Dispo\u00f1\u00edbeis
26
search_results=Resultados da b\u00fasqueda
27
server=Servidor
28
wcsError=Ocorr\u00e9u un erro ao cargar a cobertura
29
wcsLoad=Carga de WCS
30
wfsError=Ocorr\u00e9u un erro ao cargar a feature (entidade)
31
wfsLoad=Carga de WFS
32
wmsError=Ocorr\u00e9u un erro ao cargar o mapa
0 33

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
	<depends plugin-name="com.iver.cit.gvsig"/>
4
	<libraries library-dir="lib"/>
5
	<resourceBundle name="text"/>
6
	<extensions>
7
		<extension class-name="es.gva.cit.gvsig.catalog.CatalogClientExtension"
8
			description="Catalog extension"
9
			active="true" 
10
			priority="3">
11
			<tool-bar name="Catalogo">
12
				<action-tool icon="catalog-search" 
13
					tooltip="catalog_search"
14
					position="1"
15
				/>
16
			</tool-bar>		
17
		</extension>
18
		<extension class-name="es.gva.cit.gvsig.catalog.CatalogClientAboutExtension"
19
			description="About panel for the catalog and gazetteer clients" 
20
			active="true" 
21
			priority="3">
22
		</extension>
23
		<extension class-name="es.gva.cit.gvsig.gazetteer.GazetteerExtension"
24
			description="Gazetteer extension" 
25
			active="true" 
26
			priority="3">
27
			<tool-bar name="Catalogo">
28
				<action-tool icon="gazetteer-search" 
29
					tooltip="gazetteer_search"
30
					action-command="GAZETTEER"
31
					position="2"
32
				/>
33
			</tool-bar>
34
		</extension>
35
		<extension class-name="es.gva.cit.gvsig.gazetteer.DeleteSearchesExtension"
36
			description="Tool to remove the previous gazetteer searches" 
37
			active="true" 
38
			priority="2">
39
			<tool-bar name="Catalogo">
40
				<action-tool icon="catalog-clear-point" 
41
					tooltip="mantainold"
42
					action-command="DELETE"
43
					position="3"
44
					name="delete"/>
45
			</tool-bar>
46
		</extension>
47
	</extensions>
48
</plugin-config>
0 49

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/text_cs.properties
1
#Translations for language [cs]
2
#Tue May 12 10:57:39 CEST 2009
3
arcims_load=Na\u010d\u00edt\u00e1m ArcIms
4
arcims_server_error=Chyba ArcIMS serveru
5
Catalog=
6
catalog_search=Vyhledat geodata
7
Catalogo=
8
Error_accediendo_a_los_datos=Chyba p\u0159i na\u010d\u00edt\u00e1n\u00ed dat
9
gazetteer_connect=Hled\u00e1n\u00ed slovn\u00edku
10
gazetteer_search=Hled\u00e1n\u00ed ve slovn\u00edku
11
layer=Vrstva
12
link=Propojit
13
linkError=Chyba spojen\u00ed
14
linkLoad=Chyba p\u0159i na\u010d\u00edt\u00e1n\u00ed ze s\u00ed\u0165ov\u00e9ho zdroje
15
loadWMS=Chyba p\u0159i na\u010d\u00edt\u00e1n\u00ed dat z WMS
16
mantainold=Ostranit star\u00e9 v\u00fdsledky hled\u00e1n\u00ed
17
metadata_catalog=Vyhled\u00e1n\u00ed geodat - P\u0159ipojen\u00ed
18
metadata_tree=Strom metadat
19
parameters=Parametry
20
pluginNotFound=Nem\u00e1te pot\u0159ebn\u00e9 extenze pro na\u010dten\u00ed tohoto typu zdroje
21
pluginNotFoundTitle=Na\u010d\u00edt\u00e1n\u00ed vrstev
22
postgisError=Chyba p\u0159i na\u010d\u00edt\u00e1n\u00ed dat z PostGISu
23
postgisLoad=Chyba PostGISu
24
propertiesNameWindow=
25
Recursos\ Disponibles=Dostupn\u00e9 zdroje
26
search_results=V\u00fdsledky hled\u00e1n\u00ed
27
server=Server
28
wcsError=Chyba p\u0159i na\u010d\u00edt\u00e1n\u00ed dat z katalogu
29
wcsLoad=Chyba p\u0159i na\u010d\u00edt\u00e1n\u00ed dat z WCS
30
wfsError=Chyba p\u0159i na\u010d\u00edt\u00e1n\u00ed objektu
31
wfsLoad=Chyba p\u0159i na\u010d\u00edt\u00e1n\u00ed dat z WFS
32
wmsError=Chyba p\u0159i na\u010d\u00edt\u00e1n\u00ed mapy
0 33

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/text_pt_br.properties
1
#Translations for language [pt_br]
2
#Tue May 12 10:57:39 CEST 2009
3
arcims_load=
4
arcims_server_error=
5
Catalog=
6
catalog_search=Pesquisa de geodados
7
Catalogo=
8
Error_accediendo_a_los_datos=Erro ao aceder aos dados
9
gazetteer_connect=Localizar por "Nomencl\u00e1tor"
10
gazetteer_search=Localizar por "Nomencl\u00e1tor"
11
layer=camada
12
link=Hiperliga\u00e7\u00e3o
13
linkError=Erro ao carregar a hiperliga\u00e7\u00e3o
14
linkLoad=Carregando um recurso web
15
loadWMS=Carregar de WMS
16
mantainold=Eliminar as pesquisas anteriores
17
metadata_catalog=Pesquisa de geodados - Conex\u00e3o
18
metadata_tree=\u00c1rvore de metadados
19
parameters=Par\u00e2metros
20
pluginNotFound=N\u00e3o tem nenhuma extens\u00e3o para carregar recursos deste tipo
21
pluginNotFoundTitle=Carga da camadas
22
postgisError=Erro ao carregar o banco de dados
23
postgisLoad=Carregar PostGIS
24
propertiesNameWindow=
25
Recursos\ Disponibles=
26
search_results=Resultados da pesquisa
27
server=Servidor
28
wcsError=Erro ao carregar a cobertura
29
wcsLoad=Carregar WCS
30
wfsError=Erro ao carregar a camada
31
wfsLoad=Carregar WFS
32
wmsError=Erro ao carregar o mapa
0 33

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/text_fr.properties
1
#Translations for language [fr]
2
#Tue May 12 10:57:39 CEST 2009
3
arcims_load=
4
arcims_server_error=
5
Catalog=
6
catalog_search=Rechercher des g\u00e9odonn\u00e9es
7
Catalogo=
8
Error_accediendo_a_los_datos=Erreur d'acc\u00e8s aux donn\u00e9es
9
gazetteer_connect=Localisation par toponymes
10
gazetteer_search=Localisation par toponymes
11
layer=Couche
12
link=Lien
13
linkError=Erreur lors du chargement du lien
14
linkLoad=Cargement du web service
15
loadWMS=Chargement du WMS
16
mantainold=Supprimer toutes les recherches
17
metadata_catalog=Recherche de g\u00e9odonn\u00e9es - Connexion
18
metadata_tree=Arbre des metadonn\u00e9es
19
parameters=Param\u00e8tres
20
pluginNotFound=Vous ne disposez pas d'extension pour charger ce type de ressources
21
pluginNotFoundTitle=Chargement des couches
22
postgisError=Erreur lors du chargement de la base de donn\u00e9es
23
postgisLoad=Chargement de Postgis
24
propertiesNameWindow=
25
Recursos\ Disponibles=
26
search_results=Resultats de la recherche
27
server=Serveur
28
wcsError=Erreur lors du chargement d'une couverture
29
wcsLoad=Chargement du WCS
30
wfsError=Erreur lors du chargement de l'entit\u00e9
31
wfsLoad=Chargement du WFS
32
wmsError=Erreur lors du chargement de la carte
0 33

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/text_nl.properties
1
#Translations for language [nl]
2
#Tue May 12 10:57:39 CEST 2009
3
arcims_load=
4
arcims_server_error=
5
Catalog=
6
catalog_search=
7
Catalogo=
8
Error_accediendo_a_los_datos=
9
gazetteer_connect=
10
gazetteer_search=
11
layer=
12
link=Link
13
linkError=
14
linkLoad=
15
loadWMS=
16
mantainold=
17
metadata_catalog=
18
metadata_tree=
19
parameters=
20
pluginNotFound=
21
pluginNotFoundTitle=
22
postgisError=
23
postgisLoad=
24
propertiesNameWindow=
25
Recursos\ Disponibles=
26
search_results=
27
server=
28
wcsError=
29
wcsLoad=
30
wfsError=
31
wfsLoad=
32
wmsError=
0 33

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/text_eu.properties
1
#Translations for language [eu]
2
#Tue May 12 10:57:39 CEST 2009
3
arcims_load=ArcIms kargatu
4
arcims_server_error=Errorea ArcIMS zerbitzarian
5
Catalog=
6
catalog_search=Geodatuak bilatzea
7
Catalogo=
8
Error_accediendo_a_los_datos=Errorea datuak atzitzean
9
gazetteer_connect=Kokatu izenaren arabera
10
gazetteer_search=Kokatu izenaren arabera
11
layer=Geruza
12
link=Lotura
13
linkError=Errorea gertatu da lotura kargatzerakoan
14
linkLoad=Web baliabide bat kargatzea
15
loadWMS=WMS kargatzea
16
mantainold=Ezabatu aurreko bilaketak
17
metadata_catalog=Geodatuak bilatzea - Lotura
18
metadata_tree=Matadatuaren zuhaitza
19
parameters=Parametroak
20
pluginNotFound=Ez duzu luzapenik mota hauetako baliabideak kargatzeko
21
pluginNotFoundTitle=Geruzak kargatzea
22
postgisError=Errorea gertatu da datu-basea kargatzerakoan
23
postgisLoad=Postgis kargatzea
24
propertiesNameWindow=
25
Recursos\ Disponibles=Baliabide erabilgarriak
26
search_results=Bilaketaren emaitzak
27
server=Zerbitzaria
28
wcsError=Errorea gertatu da estaldura kargatzerakoan
29
wcsLoad=WCS kargatzea
30
wfsError=Errorea gertatu da featurea kargatzerakoan
31
wfsLoad=WFS kargatzea
32
wmsError=Errorea gertatu da mapa kargatzerakoan
0 33

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/text_pl.properties
1
#Translations for language [pl]
2
#Tue May 12 10:57:39 CEST 2009
3
arcims_load=
4
arcims_server_error=
5
Catalog=
6
catalog_search=
7
Catalogo=
8
Error_accediendo_a_los_datos=
9
gazetteer_connect=
10
gazetteer_search=
11
layer=Warstwa
12
link=\u0141\u0105cze
13
linkError=
14
linkLoad=
15
loadWMS=
16
mantainold=
17
metadata_catalog=
18
metadata_tree=
19
parameters=Parametry
20
pluginNotFound=
21
pluginNotFoundTitle=
22
postgisError=
23
postgisLoad=
24
propertiesNameWindow=
25
Recursos\ Disponibles=
26
search_results=
27
server=Serwer
28
wcsError=
29
wcsLoad=
30
wfsError=
31
wfsLoad=
32
wmsError=
0 33

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/text_it.properties
1
#Translations for language [it]
2
#Tue May 12 10:57:39 CEST 2009
3
arcims_load=Caricamento ArcIMS
4
arcims_server_error=Errore del server ArcIMS
5
Catalog=
6
catalog_search=Ricerca dei geodati
7
Catalogo=
8
Error_accediendo_a_los_datos=Errore accedendo ai dati
9
gazetteer_connect=Cerca per toponimi
10
gazetteer_search=Cerca per toponimi
11
layer=Layer
12
link=Collegamento
13
linkError=Errore nel caricare il Link
14
linkLoad=Caricamento di una pagina web
15
loadWMS=Caricamento di WMS
16
mantainold=Elimina le ricerche precedenti
17
metadata_catalog=Ricerca di Geodati - Connessione
18
metadata_tree=Albero di Metadati
19
parameters=Parametri
20
pluginNotFound=Non trovo nessuna estensione per caricare questo tipo di risorsa
21
pluginNotFoundTitle=Caricamento di layers
22
postgisError=Errore nel caricare il database
23
postgisLoad=Caricamento Postgis
24
propertiesNameWindow=
25
Recursos\ Disponibles=Risorse disponibili
26
search_results=Risultati della ricerca
27
server=Server
28
wcsError=Errore nel caricare la copertura
29
wcsLoad=Caricamento di WCS
30
wfsError=Errore nel caricare la FEATURE
31
wfsLoad=Caricamento di WFS
32
wmsError=Errore nel caricare la mappa
0 33

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/text_ro.properties
1
#Translations for language [ro]
2
#Tue May 12 10:57:39 CEST 2009
3
arcims_load=
4
arcims_server_error=
5
Catalog=
6
catalog_search=
7
Catalogo=
8
Error_accediendo_a_los_datos=
9
gazetteer_connect=
10
gazetteer_search=
11
layer=Strat
12
link=Leg\u0103tur\u0103
13
linkError=
14
linkLoad=
15
loadWMS=
16
mantainold=
17
metadata_catalog=
18
metadata_tree=
19
parameters=Parametri
20
pluginNotFound=
21
pluginNotFoundTitle=
22
postgisError=
23
postgisLoad=
24
propertiesNameWindow=
25
Recursos\ Disponibles=
26
search_results=
27
server=Server
28
wcsError=
29
wcsLoad=
30
wfsError=
31
wfsLoad=
32
wmsError=
0 33

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/text.properties
1
#Translations for language [es]
2
#Tue May 12 10:57:39 CEST 2009
3
abstract=Resumen
4
addLayer=A\u00f1adir capa
5
allWords=Todas las palabras
6
anyResult=La b\u00fasqueda no ha producido ning\u00fan resultado
7
anyWord=Cualquier palabra
8
arcims_image_resource=Imagen ArcIMS
9
arcims_load=Carga de ArcIms
10
arcims_server_error=Error en el servidor ArcIMS
11
arcims_vect_resource=Feature ArcIMS
12
aspect=Configuraci\u00f3n de aspecto
13
attributes=Atributos
14
BRX=BRX\:
15
BRY=BRY\:
16
cancelSearchButton=Cancelar
17
Catalog=
18
catalog_search=B\u00fasqueda de geodatos
19
Catalogo=
20
cathegory=categor\u00eda
21
cathegoryAny=Cualquiera
22
cathegoryBiota=Biota
23
cathegoryBoundaries=L\u00edmites
24
cathegoryClimatologyMeteorologyAtmosphere=Atmosfera climatol\u00f3gica y meteorol\u00f3gica
25
cathegoryEconomy=Econom\u00eda
26
cathegoryElevation=Elevaci\u00f3n
27
cathegoryEnvironment=Medio ambiente
28
cathegoryFarming=Agricultura
29
cathegoryGeoscientificInformation=Informaci\u00f3n geocient\u00edfica
30
cathegoryHealth=Salud
31
cathegoryImageryBaseMapsEarthCover=Cobertura de la tierra con mapas
32
cathegoryInlandWaters=Aguas interiores
33
cathegoryIntelligenceMilitary=Inteligencia militar
34
cathegoryLocation=Localizaci\u00f3n
35
cathegoryOceans=Oceanos
36
cathegoryPlanningCadastre=Planeamiento catastral
37
cathegorySociety=Sociedad
38
cathegoryStructure=Estructuras
39
cathegoryTransportation=Transporte
40
cathegoryUtilitiesCommunication=Comunicaci\u00f3n y utilidades
41
chooseAttribute=Elige un atributo para hacer la b\u00fasqueda
42
close=Cerrar
43
concordancia=Concordancia
44
connectButton=Conectar
45
coordinates=Coordenadas
46
coordinatesContains=contiene
47
coordinatesEnclose=incluye
48
coordinatesEqual=igual
49
coordinatesFullyOutsideOf=est\u00e1 totalmente fuera de
50
database=Nombre de la base de datos
51
description=Descripci\u00f3n
52
downloadColumn=Descarga
53
elementName=ElementName
54
Error_accediendo_a_los_datos=Error accediendo a los datos
55
errorFENotSupported=De momento s\u00f3lo se pueden hacer consultas usando la codificaci\u00f3n FILTER ENCODING que no est\u00e1 soportada por el servidor
56
errorGetRecords=Se ha producido un error al intentar obtener los registros (getRecords)
57
errorIsASRWServer=Es un servidor SRW\!
58
errorNotCSWSupportedProtocol=Se ha encontrado el servidor, pero no soporta el protocolo CS-W
59
errorNotParsedReply=Error al parsear la respuesta. Se ha encontrado el servidor, pero posiblemente no soporta el protocolo especificado
60
errorNotSupportedCapabilities=Error al hacer un GetCapabilities.Esto puede ser debido a dos razones\: O bien ha habido un error al intentar hacer la operaci\u00f3n, o bien el servidor no soporta el protocolo especificado
61
errorNotSupportedProtocol=El servidor no soporta el protocolo especificado
62
errorNotThesaurusSelected=El protocolo WFS no permite hacer b\u00fasquedas si no se elige un elemento del tesauro
63
errorServerException=El servidor ha devuelto una excepci\u00f3n
64
errorServerNotFound=No se encuentra el servidor
65
errorSOAPProtocol=Error en el protocolo SOAP
66
exactSentence=Frase exacta
67
from=Desde
68
gazetteer_connect=Localizar por Nomencl\u00e1tor
69
gazetteer_search=Localizar por Nomencl\u00e1tor
70
goto=Hacer un zoom a la b\u00fasqueda
71
inteligentSearch=B\u00fasqueda inteligente
72
inteligentSearchAscii=Todas las formas de la palabra
73
keyWords=Palabras clave
74
last=Anterior
75
lastUpdateDate=Fecha de \u00faltima actualizaci\u00f3n
76
layer=Capa
77
link=Enlace
78
linkColumn=P\u00e1gina Web
79
linkError=Ha ocurrido un error al cargar el enlace
80
linkLoad=Carga de un recurso web
81
loadWMS=Carga de WMS
82
localize=Localizar
83
lowerCoordinates=Inferiores
84
mantainold=Eliminar las busquedas anteriores
85
metadata_catalog=B\u00fasqueda de Geodatos - Conexi\u00f3n
86
metadata_tree=\u00c1rbol del Metadato
87
name=Nombre
88
next=Siguiente
89
of=de
90
page=P\u00e1gina
91
paint=Dibujar el resultado
92
parameters=Par\u00e1metros
93
pluginNotFound=No tienes ninguna extensi\u00f3n para cargar recursos de este tipo
94
pluginNotFoundTitle=Carga de capas
95
postgisColumn=Postgis
96
postgisError=Ha ocurrido un error al cargar la base de datos
97
postgisLoad=Carga de Postgis
98
propertiesNameWindow=Ventana de propiedades
99
protocolsGroup=Protocolos
100
provider=Proveedor
101
purpose=Prop\u00f3sito
102
Recursos\ Disponibles=Recursos Disponibles
103
reproyectar_aviso=La proyecci\u00f3n de la capa no es igual que la de la vista.\nAVISO\: Puede ser inexacto con algunas transformaciones.\nPor favor, lea la documentaci\u00f3n.
104
reproyectar_pregunta=\u00bfDesea reproyectar?
105
resourceLinkColumn=Enlace
106
resourceShowColumn=Ver
107
resourceTypeColumn=Tipo
108
restrictArea=Restringir el area de b\u00fasqueda
109
results=Resultados
110
resutsByPage=Resultados por p\u00e1gina
111
return=Volver
112
rootName=Ra\u00edz
113
scale=Escalar
114
scaleAny=cualquiera
115
scaleI=>1.000.000
116
scaleII=1.000.000 - 250.000
117
scaleIII=250.000 - 50.000
118
scaleIV=50.000 - 10.000
119
scaleV=10.000 - 5000
120
scaleVI=<5.000
121
search_results=Resultados de la b\u00fasqueda
122
searchButton=Buscar
123
server=Servidor
124
serverReply=Respuesta del servidor
125
serverURL=Introduzca la direcci\u00f3n donde se encuentra el servidor de cat\u00e1logo
126
serverURLCat=Introduzca la direcci\u00f3n donde se encuentra el servidor de nomencl\u00e1tor
127
title=T\u00edtulo
128
to=Hasta
129
type=Tipo
130
ULX=ULX\:
131
ULY=ULY\:
132
unknown=Desconocido
133
upperCoordinates=Superiores
134
value=Valor
135
version=Versi\u00f3n
136
wcsColumn=Cobertura
137
wcsError=Ha ocurrido un error al cargar la cobertura
138
wcsLoad=Carga de WCS
139
wfsColumn=Feature
140
wfsError=Ha ocurrido un error al cargar la feature
141
wfsLoad=Carga de WFS
142
wmsColumn=Mapa
143
wmsError=Ha ocurrido un error al cargar el mapa
0 144

  
tags/v_1_12_0_Build_1402/extCatalogAndGazetteer/config/text_zh.properties
1
#Translations for language [zh]
2
#Tue May 12 10:57:39 CEST 2009
3
abstract=\u7b80\u4ecb
4
addLayer=\u6dfb\u52a0\u56fe\u5c42
5
allWords=\u6240\u6709\u6587\u5b57
6
anyResult=\u65e0\u6cd5\u627e\u5230\u60a8\u6240\u9700\u8981\u7684\u7ed3\u679c
7
anyWord=\u4efb\u4f55\u6587\u5b57
8
arcims_image_resource=ArcIMS \u56fe\u7247
9
arcims_load=\u8f7d\u5165 ArcIMS
10
arcims_server_error=ArcIMS \u670d\u52a1\u5668\u51fa\u9519
11
arcims_vect_resource=ArcIMS \u7279\u6027
12
aspect=\u5916\u89c2\u8bbe\u7f6e
13
attributes=\u7279\u6027
14
BRX=BRX\:
15
BRY=BRY\:
16
cancelSearchButton=\u53d6\u6d88
17
Catalog=
18
catalog_search=Geodata \u641c\u7d22
19
Catalogo=
20
cathegory=\u7c7b\u522b
21
cathegoryAny=\u4efb\u4f55
22
cathegoryBiota=\u751f\u7269
23
cathegoryBoundaries=\u754c\u7ebf
24
cathegoryClimatologyMeteorologyAtmosphere=\u5927\u6c14\u6c14\u5019\u4e0e\u6c14\u8c61
25
cathegoryEconomy=\u7ecf\u6d4e\u5b66
26
cathegoryElevation=\u63d0\u9ad8
27
cathegoryEnvironment=\u73af\u5883
28
cathegoryFarming=\u519c\u4e1a
29
cathegoryGeoscientificInformation=\u5730\u7406\u79d1\u5b66\u4fe1\u606f
30
cathegoryHealth=\u5065\u5eb7
31
cathegoryImageryBaseMapsEarthCover=\u57fa\u4e8e\u5730\u56fe\u7684\u5730\u7403\u5c01\u9762
32
cathegoryInlandWaters=\u6e2f\u5185\u6c34\u57df
33
cathegoryIntelligenceMilitary=\u519b\u4e8b\u60c5\u62a5
34
cathegoryLocation=\u672c\u5730\u5316
35
cathegoryOceans=\u6d77\u6d0b
36
cathegoryPlanningCadastre=\u89c4\u5212\u5730\u7c4d
37
cathegorySociety=\u793e\u4f1a
38
cathegoryStructure=\u7ed3\u6784
39
cathegoryTransportation=\u8fd0\u8f93
40
cathegoryUtilitiesCommunication=\u516c\u7528\u901a\u4fe1
41
chooseAttribute=\u5728\u641c\u7d22\u4e4b\u524d\u5148\u9009\u5b9a\u4e00\u79cd\u7279\u6027
42
close=\u5173\u95ed
43
concordancia=\u63a5\u53d7
44
connectButton=\u8fde\u63a5
45
coordinates=\u5750\u6807
46
coordinatesContains=\u5305\u542b
47
coordinatesEnclose=\u5305\u62ec
48
coordinatesEqual=\u4e00\u81f4
49
coordinatesFullyOutsideOf=\u5b8c\u5168\u5728...\u4e4b\u5916
50
database=\u6570\u636e\u5e93\u540d\u79f0
51
description=\u63cf\u8ff0
52
downloadColumn=\u4e0b\u8f7d
53
Error_accediendo_a_los_datos=\u8bfb\u53d6\u6570\u636e\u65f6\u51fa\u9519
54
errorFENotSupported=gvSIG \u53ea\u652f\u6301 FILTER ENCODING \u7f16\u7801\u67e5\u8be2
55
errorGetRecords=\u8fd0\u884c getRecords \u65f6\u51fa\u9519
56
errorIsASRWServer=\u8fd9\u662f SRW \u670d\u52a1\u5668\!
57
errorNotCSWSupportedProtocol=\u670d\u52a1\u5668\u5df2\u53d1\u73b0\uff0c\u4f46\u662f\u5b83\u4e0d\u652f\u6301 CSW \u534f\u8bae
58
errorNotParsedReply=\u89e3\u6790\u7b54\u6848\u65f6\u51fa\u9519\u3002\u670d\u52a1\u5668\u5df2\u53d1\u73b0\uff0c\u4f46\u662f\u6709\u53ef\u80fd\u4e0d\u652f\u6301\u6307\u5b9a\u534f\u8bae
59
errorNotSupportedCapabilities=\u8fd0\u884c GetCapabilities \u65f6\u51fa\u9519\u3002\u53ef\u80fd\u662f\u56e0\u4e3a\u8fd9\u4e24\u79cd\u539f\u56e0\: \u6216\u662f\u5728\u8fd0\u884c\u65f6\u53d1\u751f\u9519\u8bef\u6216\u8005\u662f\u670d\u52a1\u5668\u4e0d\u652f\u6301\u6307\u5b9a\u534f\u8bae
60
errorNotSupportedProtocol=\u670d\u52a1\u5668\u4e0d\u652f\u6301\u6307\u5b9a\u534f\u8bae
61
errorNotThesaurusSelected=WFS \u534f\u8bae\u65e0\u6cd5\u5de5\u4f5c\u5982\u679c\u60a8\u6ca1\u6709\u9009\u5b9a\u8bcd\u5e93\u3002
62
errorServerException=\u670d\u52a1\u5668\u5df2\u8fd4\u56de\u4f8b\u5916
63
errorServerNotFound=\u670d\u52a1\u5668\u4e0d\u5b58\u5728
64
errorSOAPProtocol=SOAP \u534f\u8bae\u51fa\u9519
65
exactSentence=\u5b8c\u6574\u5b57\u53e5
66
from=\u6765\u81ea
67
gazetteer_connect=\u6839\u636e\u5730\u540d\u5b9a\u4f4d
68
gazetteer_search=\u6839\u636e\u5730\u540d\u5b9a\u4f4d
69
goto=\u7f29\u653e\u641c\u5bfb\u533a\u57df
70
inteligentSearch=\u667a\u80fd\u641c\u7d22
71
inteligentSearchAscii=\u6240\u6709\u8bcd\u8868
72
keyWords=\u5173\u952e\u5b57
73
last=\u4e0a\u6b21
74
lastUpdateDate=\u4e0a\u6b21\u66f4\u65b0
75
layer=\u56fe\u5c42
76
link=\u94fe\u63a5
77
linkColumn=\u7f51\u7ad9
78
linkError=\u8f7d\u5165\u94fe\u63a5\u65f6\u51fa\u9519
79
linkLoad=\u8f7d\u5165\u7f51\u9875\u8d44\u6e90
80
loadWMS=\u8f7d\u5165WMS 
81
localize=\u5b9a\u4f4d
82
lowerCoordinates=\u4e0b
83
mantainold=\u5220\u9664\u65e7\u641c\u7d22
84
metadata_catalog=Geodata \u641c\u7d22 - \u8fde\u63a5
85
metadata_tree=\u5143\u6570\u636e\u56fe\u8868
86
name=\u540d\u79f0
87
next=\u7ee7\u7eed
88
of=\u7684
89
page=\u9875
90
paint=\u63cf\u5199\u7ed3\u679c
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff