Revision 36341

View differences:

tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/prepare-workspace.xml
1
<project name="org.gvsig.initial.build" default="prepare-workspace">
2
	
3
	<dirname property="org.gvsig.initial.build.basedir" file="${ant.file.org.gvsig.initial.build}"/>
4
	
5
	<property name="workspace.basedir" 
6
			  value="${org.gvsig.initial.build.basedir}/.."/>
7
	<property name="build.basedir" 
8
		      value="${workspace.basedir}/org.gvsig.maven.base.build"
9
		      description="Eclipse workspace location"/>
10
	<property name="build.jar.version" 
11
			 	  value="1.0.6-SNAPSHOT" />
12
	<property name="build.jar.file" 
13
		 	  value="org.gvsig.maven.base.build-${build.jar.version}.jar" />
14
	
15
	<target name="check-maven-base-build-available">
16
		<available file="${user.home}/.m2/repository/org/gvsig/org.gvsig.maven.base.build/${build.jar.version}/${build.jar.file}" 
17
				   property="maven-base-build-available"/>
18
	</target>
19
	
20
	<target name="get-maven-base-build-local" 
21
			depends="check-maven-base-build-available"
22
			if="maven-base-build-available">
23
		<!-- Unzip de build jar file from the maven repository into the workspace root folder -->
24
		<unzip src="${user.home}/.m2/repository/org/gvsig/org.gvsig.maven.base.build/${build.jar.version}/${build.jar.file}"
25
		       dest="${workspace.basedir}">
26
		    <patternset>
27
		        <exclude name="META-INF/**"/>
28
		    </patternset>
29
		</unzip>	
30
	</target>
31
	
32
	<target name="get-maven-base-build-remote" 
33
			depends="check-maven-base-build-available"
34
			unless="maven-base-build-available">
35
		<!-- Download the build jar file -->
36
		<get src="http://gvsig-desktop.forge.osor.eu/downloads/pub/projects/gvSIG-desktop/maven-repository/org/gvsig/org.gvsig.maven.base.build/${build.jar.version}/${build.jar.file}" 
37
			 dest="target/${build.jar.file}"
38
			 verbose="true"/>
39
		
40
		<!-- Unzip de build jar file into the workspace root folder -->
41
		<unzip src="target/${build.jar.file}"
42
		       dest="${workspace.basedir}">
43
		    <patternset>
44
		        <exclude name="META-INF/**"/>
45
		    </patternset>
46
		</unzip>	
47
	</target>
48
	
49
	<target name="prepare-workspace" depends="get-maven-base-build-local,get-maven-base-build-remote">
50
		
51
		<mkdir dir="target"/>
52
	
53
		<chmod dir="${build.basedir}/maven/bin" perm="u+x" includes="m2,mvn,mvnDebug"/>
54
		
55
		<!-- Copy the maven launchers to the workspace metadata folder -->
56
		<copy todir="${workspace.basedir}/.metadata">
57
		    <fileset dir="${build.basedir}/eclipse-launchers"/>
58
		</copy>
59
		
60
		<!-- Configure the eclipse workspace -->
61
		<ant antfile="${build.basedir}/maven-goals.xml" target="mvn-configure-eclipse-workspace"/>
62

  
63
		<!-- Configure the gvSIG profile -->
64
		<ant antfile="${build.basedir}/check-gvsig-profile.xml" target="initialize"/>
65

  
66
		<!-- Compile, install and generate eclipse projects -->
67
		<ant antfile="${build.basedir}/maven-goals.xml" target="mvn-install-and-eclipse-eclipse"/>
68
		
69
		<echo>INFORMATION!!!</echo>
70
		<echo>Restart eclipse and then proceed to import the subprojects contained into the main project</echo>
71
		
72
		<!-- TODO: copiar al proyecto de configuraciĆ³n general -->
73
	</target>
74
 	
75
	<target name="clean">
76
		<delete dir="target"/>
77
	</target>
78

  
79
</project>
0 80

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/pom.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2

  
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
	<modelVersion>4.0.0</modelVersion>
6
	<groupId>org.gvsig</groupId>
7
	<artifactId>org.gvsig.selectiontools.app</artifactId>
8
	<packaging>pom</packaging>
9
	<version>1.0.0-SNAPSHOT</version>
10
	<name>org.gvsig.selectiontools.app</name>
11
	<description>Advanced selection tools:
12
- select all
13
- by buffer
14
- by cicle
15
- by polilyne
16
</description>
17
	<url>http://gvsig-desktop.forge.osor.eu/downloads/pub/projects/gvSIG-desktop/docs/reference/org.gvsig.selectiontools/${project.version}/basic/org.gvsig.selectiontools.app</url>
18
	<parent>
19
		<groupId>org.gvsig</groupId>
20
		<artifactId>gvsig-base-extension-pom</artifactId>
21
		<version>2.0-SNAPSHOT</version>
22
	</parent>
23

  
24
	<scm>
25
		<connection>scm:svn:https://svn.forge.osor.eu/svn/gvsig-selectiontools/org.gvsig.selectiontools/extension/trunk</connection>
26
		<developerConnection>scm:svn:https://svn.forge.osor.eu/svn/gvsig-selectiontools/org.gvsig.selectiontools/extension/trunk</developerConnection>
27
		<url>https://forge.osor.eu/plugins/scmsvn/viewcvs.php/org.gvsig.selectiontools/extension/trunk/?root=gvsig-selectiontools</url>
28
	</scm>
29

  
30
	<distributionManagement>
31
		<site>
32
			<id>gvsig-repository</id>
33
			<url>scp://shell.forge.osor.eu/home/groups/gvsig-desktop/www/downloads/pub/projects/gvSIG-desktop/docs/reference/org.gvsig.selectiontools/${project.version}/basic/org.gvsig.selectiontools.app</url>
34
		</site>
35
	</distributionManagement>
36
	<repositories>
37
		<repository>
38
			<id>gvsig-public-http-repository</id>
39
			<name>gvSIG maven public HTTP repository</name>
40
			<url>http://gvsig-desktop.forge.osor.eu/downloads/pub/projects/gvSIG-desktop/maven-repository</url>
41
			<releases>
42
				<enabled>true</enabled>
43
				<updatePolicy>daily</updatePolicy>
44
				<checksumPolicy>warn</checksumPolicy>
45
			</releases>
46
			<snapshots>
47
				<enabled>true</enabled>
48
				<updatePolicy>daily</updatePolicy>
49
				<checksumPolicy>warn</checksumPolicy>
50
			</snapshots>
51
		</repository>
52
	</repositories>
53
	<build>
54
		<plugins>
55
			<plugin>
56
				<groupId>org.apache.maven.plugins</groupId>
57
				<artifactId>maven-release-plugin</artifactId>
58
				<configuration>
59
					<tagBase>https://svn.forge.osor.eu/svn/gvsig-selectiontools/org.gvsig.selectiontools/extension/tags</tagBase>
60
				</configuration>
61
			</plugin>
62
		</plugins>
63
	</build>
64

  
65
	<modules>
66
		<module>org.gvsig.selectiontools.app.extension</module>
67
	</modules>
68
	<properties>
69
		<build-dir>${basedir}/../build</build-dir>
70
	</properties>
71

  
72
</project>
0 73

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/README.txt
1
The first time you checkout the current project to a new workspace, 
2
you have to prepare it to be able to work easily with maven from
3
eclipse itself.
4

  
5
Perform the following steps:
6

  
7
1.- Launch the *prepare-workspace.xml* ant build file. 
8
    You can do it by loading the file into the ant view, 
9
    and running the default task, or right-clicking the 
10
    file from the package explorer or the navigator and
11
    select the option: *Run as > Ant build*. 
12
    
13
2.- Restart eclipse.
14

  
15
3.- Import the subprojects of the project you have just checked out.
16

  
17
Those steps are only needed once per workspace.     
18

  
0 19

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/distribution/distribution.xml
1
<assembly>
2
</assembly>
0 3

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/buildNumber.properties
1
#maven.buildNumber.plugin properties file
2
#Thu Sep 01 13:26:10 CEST 2011
3
buildNumber=2043
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/distribution/distribution.xml
1
<assembly>
2
	<id>distribution</id>
3
	<formats>
4
		<format>dir</format>
5
	</formats>
6
	<fileSets>
7
		<!-- Estructure for the extension -->
8
		<fileSet>
9
			<directory>src/main/resources</directory>
10
			<outputDirectory>${extension.install.dir.name}
11
			</outputDirectory>
12
		</fileSet>
13
	</fileSets>
14
	<files>
15
        <file>
16
            <source>package.info</source>
17
            <outputDirectory>${extension.install.dir.name}
18
            </outputDirectory>
19
        </file>
20
    </files>
21
    <dependencySets>
22
		<dependencySet>
23
			<outputDirectory>${extension.install.dir.name}/${library-dir}
24
			</outputDirectory>
25
			<includes>
26
				<include>org.gvsig:org.gvsig.selectiontools.app.extension</include>
27
			</includes>
28
		</dependencySet>
29
	</dependencySets>
30
</assembly>
0 31

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/buildNumber.properties
1
#maven.buildNumber.plugin properties file
2
#Thu Sep 01 13:26:11 CEST 2011
3
buildNumber=2035
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_de.properties
1
#Translations for language [de]
2
#Mon Sep 21 10:02:11 CEST 2009
3
add_buffer_layers=Layer f\u00fcr Puffer hinzuf\u00fcgen
4
add_influence_areas_layers=Layer durch Pufferzone selektieren.
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=Puffer-Fl\u00e4che zu Legende hinzuf\u00fcgen
7
Added_layer_with_influence_areas_to_TOC=Layer mit Pufferzone wurde in der Legende geladen. 
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=<html>Pufferzonen f\u00fcr jeden aktiven Layer <br> als neuen Vektor-Layer hinzuf\u00fcgen.</html>
9
Both=Beide
10
Buffer_cap=Puffer Max.
11
Buffer_information=Puffer Information
12
Buffer_width=Puffer Weite
13
bufferWidth_TOOLTIP_HTML_explanation=<html>Breite des Puffers.</html>
14
configuration=Konfiguration
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=Layer mit Pufferbereich wurde angelegt
17
Creating_temp_file=Tempdatei wurde erzeugt
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=<html>Einheit einer Distanz.</html>
19
Error=Fehler
20
Error_fallo_geoproceso=Fehler\: Geoprozess fehlgeschlagen\!
21
Error_preparar_escritura_resultados=Fehler beim Erstellen des Ergebnislayers
22
extSelectionTools=Erweiterung Selektion
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_the_temporal_layer=Fehler beim Anlegen eines tempor\u00e4ren Layers.
25
Failed_creating_the_temporal_layer=Fehler beim Anlegen eines tempor\u00e4ren Layers.
26
Failed_reloading_the_layer=
27
Failed_selecting_geometries=Fehler beim Selektieren von Geometrien.
28
Failed_selecting_geometries_by_circle_topology_exception_explanation=Fehler beim Selektieren von Geometrien eines Layers.\nDie Selektion durch Kreis ber\u00fchrt fehlerhafte Geometrien. Bitte \u00fcberpr\u00fcfen Sie die Eingabe-Daten.
29
Failed_selecting_geometries_by_polyline_topology_exception_explanation=Fehler beim Selektieren von Geometrien eines Layers.\nDie Selektion durch Polygon ber\u00fchrt fehlerhafte Geometrien. Bitte \u00fcberpr\u00fcfen Sie die Eingabe-Daten.
30
Failed_selecting_geometries_in_layer=Fehler beim Selektieren von Geometrien eines Layers
31
Failed_selecting_layer=Fehler beim Selektieren.
32
Failed_the_process=Vorgang abgebrochen
33
Information=Information
34
Inside=Innerhalb
35
Invalid_width=Ung\u00fcltige Breite
36
Layer_with_buffers_created=
37
Layer_with_buffers_reprojected=
38
Layer_with_influence_areas_created=Layer wurde durch Pufferbereich erzeugt 
39
Layer_with_influence_areas_reprojected=Layer mit berechneter Pufferzone wurde angelegt
40
Layer_with_unsupported_geometries_type=Geometrie-Typ wird nicht unterst\u00fctzt
41
Line=Linie
42
lineSideLabel_TOOLTIP_HTML_explanation=<html>Geometrien vom Typ "Linie".</html>
43
Multi_layer_selection_applied_for_influence_area=Multi-Layer Selektion, der auf Pufferbereiche angewendet wird. 
44
multiLayer_selection=Multi-Layer Selektion
45
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=<html>Alle Features eines Layers selektieren.</html>
46
MultiPoint=Multi-Punkt
47
multiPointSideLabel_TOOLTIP_HTML_explanation=<html>Geometrien vom Typ "Multi-Punkt"</html>
48
Ongoing_process_please_wait=Vorgang wird durchgef\u00fchrt, bitte warten ...
49
Options=Optionen
50
Outside=Au\u00dferhalb
51
Outside_and_inside=Au\u00dferhalb und innerhalb
52
Percent=Prozent
53
Point=Punkt
54
pointSideLabel_TOOLTIP_HTML_explanation=<html>Punkt-Geometrie.</html>
55
Polygon=Polygon
56
polygonSideLabel_TOOLTIP_HTML_explanation=<html>Polygon-Geometrie.</html>
57
Process_canceled=Prozess wurde abgebrochen.
58
Process_cancelled=Prozess wurde abgebrochen.
59
Process_finished=Prozess beendet.
60
Process_finished_wont_be_cancelled=Vorgang ist bereits beendet. Er wird nicht abgebrochen. 
61
Removed_layer_with_influence_areas_to_TOC=Layer mit Puffer-Information wird von der Legende entfernt.
62
Round=gerundet
63
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=Fehler w\u00e4hrend die Hauptkomponente durch einen Swing Thread aktualisiert wird
64
seleccion=Elemente ausw\u00e4hlen ...
65
select_all=Alle ausw\u00e4hlen
66
select_all_info=
67
select_by_buffer=Selektion durch Puffer
68
select_by_buffer_info=<html>Die Geometrien des aktiven Vektor-Layers<br>der aktuellen Ansicht werden ausgew\u00e4hlt, die<br>sich mit dem Puffer, durch zuvor gew\u00e4hlte Geometrien, \u00fcberschneiden.</html>
69
select_by_circle=Selektion durch Kreis
70
select_by_circle_info=<html>Die Geometrien des aktiven Vektor-Layers<br>der aktuellen Ansicht, die<br>sich mit dem gew\u00e4hltenKreis \u00fcberschneiden werden ausgew\u00e4hlt.</html>
71
select_by_polyline=Selektion durch Polylinie
72
select_by_polyline_info=<html>Die Geometrien des aktiven Vektor-Layers<br>der aktuellen Ansicht, die<br>sich mit der gew\u00e4hlten Polylinie \u00fcberschneiden werden ausgew\u00e4hlt.</html>
73
Selection_by_buffer_process=Selektion anhand eines Puffers
74
Selection_process_finished_succesfully=Selektion erfolgreich durchgef\u00fchrt
75
Selection_restored=Selektion wieder hergestellt
76
Side=Seite
77
sideLabel_TOOLTIP_HTML_explanation=<html>Methode f\u00fcr die Selektion durch Pufferbereich vergeben, <br> ist abh\u00e4ngig vom Typ des Layers.</html>
78
Starting_selection_of_layer=Starten den Layer zu selektieren
79
Starting_selection_process=Prozess der Selektierung starten
80
Summary_of_the_process_of_selecting_by_buffer=Ergebnis Selektion durch Puffer
81
There_are_no_geometries_selected=Es wurden keine Geometrien selektiert
82
Tool_unavaliable_with_view_in_geographic_projection=Werkzeuge nicht in Ansicht mit geographischer Projektion verf\u00fcgar
83
Tools_Select=Auswahl des Werkzeuges
84
Undefined_layer=
85
Unit=Einheit
86
Vista=Ansicht
87
Warning=Warnung
88
Width=Breite
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=Geometrien k\u00f6nnen nicht ausgew\u00e4hlt werden, da die Projektion des Layers nicht kompatibel ist. 
0 90

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_sw.properties
1
#Translations for language [sw]
2
#Mon Sep 21 10:02:12 CEST 2009
3
add_buffer_layers=
4
add_influence_areas_layers=
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=
9
Both=
10
Buffer_cap=
11
Buffer_information=
12
Buffer_width=
13
bufferWidth_TOOLTIP_HTML_explanation=
14
configuration=
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=
17
Creating_temp_file=
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=
19
Error=
20
Error_fallo_geoproceso=Kosa wakati wa Kuchambua data/habari za zinazohusu dunia.
21
Error_preparar_escritura_resultados=Kosa Wakati wa Kutayarisha Tabaka ya Matokeo
22
extSelectionTools=
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_the_temporal_layer=
25
Failed_creating_the_temporal_layer=
26
Failed_reloading_the_layer=
27
Failed_selecting_geometries=
28
Failed_selecting_geometries_by_circle_topology_exception_explanation=
29
Failed_selecting_geometries_by_polyline_topology_exception_explanation=
30
Failed_selecting_geometries_in_layer=
31
Failed_selecting_layer=
32
Failed_the_process=
33
Information=
34
Inside=
35
Invalid_width=
36
Layer_with_buffers_created=
37
Layer_with_buffers_reprojected=
38
Layer_with_influence_areas_created=
39
Layer_with_influence_areas_reprojected=
40
Layer_with_unsupported_geometries_type=
41
Line=
42
lineSideLabel_TOOLTIP_HTML_explanation=
43
Multi_layer_selection_applied_for_influence_area=
44
multiLayer_selection=
45
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=
46
MultiPoint=
47
multiPointSideLabel_TOOLTIP_HTML_explanation=
48
Ongoing_process_please_wait=
49
Options=
50
Outside=
51
Outside_and_inside=
52
Percent=
53
Point=
54
pointSideLabel_TOOLTIP_HTML_explanation=
55
Polygon=
56
polygonSideLabel_TOOLTIP_HTML_explanation=
57
Process_canceled=
58
Process_cancelled=
59
Process_finished=
60
Process_finished_wont_be_cancelled=
61
Removed_layer_with_influence_areas_to_TOC=
62
Round=
63
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=
64
seleccion=Chaguzi
65
select_all=Chagua Yote
66
select_all_info=
67
select_by_buffer=
68
select_by_buffer_info=
69
select_by_circle=
70
select_by_circle_info=
71
select_by_polyline=
72
select_by_polyline_info=
73
Selection_by_buffer_process=
74
Selection_process_finished_succesfully=
75
Selection_restored=
76
Side=
77
sideLabel_TOOLTIP_HTML_explanation=
78
Starting_selection_of_layer=
79
Starting_selection_process=
80
Summary_of_the_process_of_selecting_by_buffer=
81
There_are_no_geometries_selected=
82
Tool_unavaliable_with_view_in_geographic_projection=
83
Tools_Select=
84
Undefined_layer=
85
Unit=
86
Vista=Angalia/kagua
87
Warning=
88
Width=
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=
0 90

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_el.properties
1
#Translations for language [el]
2
#Mon Sep 21 10:02:12 CEST 2009
3
add_buffer_layers=
4
add_influence_areas_layers=
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=
9
Both=
10
Buffer_cap=
11
Buffer_information=
12
Buffer_width=
13
bufferWidth_TOOLTIP_HTML_explanation=
14
configuration=
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=
17
Creating_temp_file=
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=
19
Error=
20
Error_fallo_geoproceso=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b3\u03b5\u03c9\u03b4\u03b9\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2
21
Error_preparar_escritura_resultados=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b5\u03c4\u03bf\u03b9\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03bd\u03ad\u03bf\u03c5 \u03b5\u03c0\u03b9\u03c0\u03ad\u03b4\u03bf\u03c5
22
extSelectionTools=
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_the_temporal_layer=
25
Failed_creating_the_temporal_layer=
26
Failed_reloading_the_layer=
27
Failed_selecting_geometries=
28
Failed_selecting_geometries_by_circle_topology_exception_explanation=
29
Failed_selecting_geometries_by_polyline_topology_exception_explanation=
30
Failed_selecting_geometries_in_layer=
31
Failed_selecting_layer=
32
Failed_the_process=
33
Information=
34
Inside=
35
Invalid_width=
36
Layer_with_buffers_created=
37
Layer_with_buffers_reprojected=
38
Layer_with_influence_areas_created=
39
Layer_with_influence_areas_reprojected=
40
Layer_with_unsupported_geometries_type=
41
Line=
42
lineSideLabel_TOOLTIP_HTML_explanation=
43
Multi_layer_selection_applied_for_influence_area=
44
multiLayer_selection=
45
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=
46
MultiPoint=
47
multiPointSideLabel_TOOLTIP_HTML_explanation=
48
Ongoing_process_please_wait=
49
Options=
50
Outside=
51
Outside_and_inside=
52
Percent=
53
Point=
54
pointSideLabel_TOOLTIP_HTML_explanation=
55
Polygon=
56
polygonSideLabel_TOOLTIP_HTML_explanation=
57
Process_canceled=
58
Process_cancelled=
59
Process_finished=
60
Process_finished_wont_be_cancelled=
61
Removed_layer_with_influence_areas_to_TOC=
62
Round=
63
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=
64
seleccion=\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae
65
select_all=\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03cc\u03bb\u03c9\u03bd
66
select_all_info=
67
select_by_buffer=
68
select_by_buffer_info=
69
select_by_circle=
70
select_by_circle_info=
71
select_by_polyline=
72
select_by_polyline_info=
73
Selection_by_buffer_process=
74
Selection_process_finished_succesfully=
75
Selection_restored=
76
Side=
77
sideLabel_TOOLTIP_HTML_explanation=
78
Starting_selection_of_layer=
79
Starting_selection_process=
80
Summary_of_the_process_of_selecting_by_buffer=
81
There_are_no_geometries_selected=
82
Tool_unavaliable_with_view_in_geographic_projection=
83
Tools_Select=
84
Undefined_layer=
85
Unit=
86
Vista=\u038c\u03c8\u03b7
87
Warning=
88
Width=
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=
0 90

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/about.htm
1
<html>
2
  <head>
3
    <title>Herramientas Selecci&oacute;n. Proyecto Junta de Castilla y Le&oacute;n.</title>
4
    <meta content="">
5
<style type="text/css">
6
body {
7
	background-color: #7e7e7e;
8
	background-image: url(images/about.jpg);
9
	background-position: top center;
10
	background-repeat:no-repeat;
11
}
12

  
13
html, body, h1, h2, h3, h4, div, p, ul, li, input {
14
   font-family: Arial, Helvetica, sans-serif;
15
}
16

  
17
p, h1, h2, h3 {
18
  text-align: center;
19
}
20

  
21
</style>
22
  </head>
23
  <body>
24
  <br><br><br><br><br><br><br><br><br><br><br><br>
25
  <p>Version: 0.1
26
  <br>Build Number: #build.number#</p>
27
  <p><br><br><br><a href="http://www.iver.es/">http://www.iver.es/</a></p>
28
  </body>
29
</html>
0 30

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_en.properties
1
#Translations for language [en]
2
#Mon Sep 21 10:02:11 CEST 2009
3
add_buffer_layers=Add buffer layers
4
add_influence_areas_layers=Add buffer zone layers
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=Added layer with buffer zones to TOC.
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=<html>Add buffer zones for each active layer<br> as new vector layers</html>
9
Both=Both
10
Buffer_cap=Buffer cap
11
Buffer_information=Buffer information
12
Buffer_width=Buffer width
13
bufferWidth_TOOLTIP_HTML_explanation=<html>Buffer width</html>
14
configuration=Configuration
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=Creating layer with areas of influence...
17
Creating_temp_file=Creating temporary file...
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=<html>Distance measurement unit</html>
19
Error=Error
20
Error_fallo_geoproceso=Error during geoprocess execution
21
Error_preparar_escritura_resultados=Error during preparation of result layer
22
extSelectionTools=Selection Tools Extension
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_geometry=Failed to create geometry..
25
failed_creating_the_temporal_layer=Failed to create temporary layer.
26
Failed_creating_the_temporal_layer=Failed to create temporary layer.
27
Failed_performing_the_operation=Failed performing the operation
28
Failed_reloading_the_layer=
29
Failed_selecting_geometries=Failed to select geometries.
30
Failed_selecting_geometries_by_circle_topology_exception_explanation=Failed to select geometries in layer.\nThe circular selection area intersects some faulty geometries. Please revise input data.
31
Failed_selecting_geometries_by_polyline_topology_exception_explanation=Failed to select geometries in layer.\nThe polygonal selection area intersects some faulty geometries. Please revise input data.
32
Failed_selecting_geometries_in_layer=Failed to select geometries from layer.
33
Failed_selecting_layer=Failed to select layer.
34
Failed_the_process=The process failed
35
Information=Information
36
Inside=Inside
37
Invalid_width=Invalid width.
38
Layer_with_buffers_created=
39
Layer_with_buffers_reprojected=
40
Layer_with_influence_areas_created=Created layer with areas of influence.
41
Layer_with_influence_areas_reprojected=Created layer with reprojected areas of influence.
42
Layer_with_unsupported_geometries_type=Layer geometry type not supported.
43
Line=Line
44
lineSideLabel_TOOLTIP_HTML_explanation=<html>Geometries of type "line"</html>
45
Multi_layer_selection_applied_for_influence_area=Multi-layer selection applied to buffer zones.
46
multiLayer_selection=Multi-layer selection
47
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=<html>Select features from all layers</html>
48
MultiPoint=Multipoint
49
multiPointSideLabel_TOOLTIP_HTML_explanation=<html>Geometries of type "multipoint"</html>
50
Ongoing_process_please_wait=Ongoing process, please wait...
51
Operation_not_supported=Operation not supported
52
Options=Options
53
Outside=Outside
54
Outside_and_inside=Outside and inside
55
Percent=Percent
56
Point=Point
57
pointSideLabel_TOOLTIP_HTML_explanation=<html>Geometries of type "point"</html>
58
Polygon=Polygon
59
polygonSideLabel_TOOLTIP_HTML_explanation=<html>Geometries of type "polygon"</html>
60
Process_canceled=Process canceled
61
Process_cancelled=Process cancelled.
62
Process_finished=Process finished
63
Process_finished_wont_be_cancelled=Process has already finished. Will not be cancelled.
64
Removed_layer_with_influence_areas_to_TOC=Removed layer with buffer zones from TOC.
65
Round=Rounded
66
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=Program exception (fatal error) encountered while calling Java Swing thread to refresh main user interface frame.
67
seleccion=Selection
68
select_all=Select all
69
select_all_info=
70
select_by_buffer=Select by buffer zone
71
select_by_buffer_info=<html>Select those features from the view's<br> active vector layers that intersect<br> with a buffer zone created<b> around previously selected features.</html>
72
select_by_circle=Select by circle
73
select_by_circle_info=<html>Select those features from the view's<br> active vector layers that intersect<br> with a user-defined circle.</html>
74
select_by_polyline=Select by polyline
75
select_by_polyline_info=<html>Select those features from the view's<br> active vector layers that intersect<br> with a user-defined polyline.</html>
76
Selection_by_buffer_process=Buffer zone selection tool
77
Selection_process_finished_succesfully=Selection process finished successfully.
78
Selection_restored=Selection restored.
79
Side=Side
80
sideLabel_TOOLTIP_HTML_explanation=<html>Choose the mode for buffer zone selection depending on layer type</html>
81
Starting_selection_of_layer=Initializing layer selection...
82
Starting_selection_process=Initializing selection process...
83
Summary_of_the_process_of_selecting_by_buffer=Summary of "selection by buffer zone" process
84
There_are_no_geometries_selected=There are no selected geometries.
85
Tool_unavaliable_with_view_in_geographic_projection=This tool is not available for views using geographic (lat/long) projection systems.
86
Tools_Select=Tools select
87
Undefined_layer=
88
Unit=Unit
89
Vista=View
90
Warning=Warning
91
Width=Width
92
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=Incompatible projection. Failed to select geometries from layer.
0 93

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_gl.properties
1
#Translations for language [gl]
2
#Mon Sep 21 10:02:11 CEST 2009
3
add_buffer_layers=
4
add_influence_areas_layers=Agregar capas de \u00e1reas de influencia.
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=Agregada capa con \u00e1reas de influencia ao TOC.
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=<html>Agrega as \u00e1reas de influencia de cada capa activa<br> como novas capas vectoriais.</html>
9
Both=Ambos
10
Buffer_cap=Cuberta do buffer
11
Buffer_information=Informaci\u00f3n do buffer
12
Buffer_width=Anchura do buffer
13
bufferWidth_TOOLTIP_HTML_explanation=<html>Anchura do buffer.</html>
14
configuration=configuraci\u00f3n
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=Creando capa con \u00e1reas de influencia.
17
Creating_temp_file=Creando arquivo temporal
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=<html>Unidade de distancia.</html>
19
Error=Erro
20
Error_fallo_geoproceso=Produc\u00eduse un erro durante a execuci\u00f3n do xeoproceso
21
Error_preparar_escritura_resultados=Produc\u00eduse un erro ao preparar a capa de resultados
22
extSelectionTools=Extensi\u00f3n Ferramentas de Selecci\u00f3n
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_the_temporal_layer=Erro ao crear a capa temporal
25
Failed_creating_the_temporal_layer=Erro ao crear a capa temporal.
26
Failed_reloading_the_layer=
27
Failed_selecting_geometries=Erro ao seleccionar xeometr\u00edas.
28
Failed_selecting_geometries_by_circle_topology_exception_explanation=Erro ao seleccionar xeometr\u00edas na capa.\nO \u00e1rea circular de selecci\u00f3n intersecta con algunha xeometr\u00eda mal definida, deber\u00eda revisalas.
29
Failed_selecting_geometries_by_polyline_topology_exception_explanation=Erro ao seleccionar xeometr\u00edas na capa.\nA polili\u00f1a intersecta con algunha xeometr\u00eda mal definida, deber\u00eda revisalas.
30
Failed_selecting_geometries_in_layer=Erro ao seleccionar xeometr\u00edas na capa
31
Failed_selecting_layer=Erro ao seleccionar a capa
32
Failed_the_process=Erro no proceso.
33
Information=Informaci\u00f3n
34
Inside=Interior
35
Invalid_width=Ancho non v\u00e1lido.
36
Layer_with_buffers_created=
37
Layer_with_buffers_reprojected=
38
Layer_with_influence_areas_created=Capa con \u00e1reas de influencia creada.
39
Layer_with_influence_areas_reprojected=Capa con \u00e1reas de influencia reproxectada.
40
Layer_with_unsupported_geometries_type=Capa con tipo de xeometr\u00edas non soportadas.
41
Line=Li\u00f1a
42
lineSideLabel_TOOLTIP_HTML_explanation=<html>Xeometr\u00eda de tipo li\u00f1a.</html>
43
Multi_layer_selection_applied_for_influence_area=Selecci\u00f3n multicapa aplicada para \u00e1rea de influencia.
44
multiLayer_selection=Selecci\u00f3n multicapa.
45
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=<html>A selecci\u00f3n de xeometr\u00edas afecta a todas as capas.</html>
46
MultiPoint=Multipunto
47
multiPointSideLabel_TOOLTIP_HTML_explanation=<html>Xeometr\u00edas de tipo multi punto.</html>
48
Ongoing_process_please_wait=Proceso en marcha, por favor espere...
49
Options=Opci\u00f3ns
50
Outside=Exterior
51
Outside_and_inside=Exterior e interior
52
Percent=Porcentaxe
53
Point=Punto
54
pointSideLabel_TOOLTIP_HTML_explanation=<html>Xeometr\u00edas de tipo punto.</html>
55
Polygon=Pol\u00edgono
56
polygonSideLabel_TOOLTIP_HTML_explanation=<html>Xeometr\u00edas de tipo pol\u00edgono.</html>
57
Process_canceled=Proceso cancelado.
58
Process_cancelled=Proceso cancelado.
59
Process_finished=Proceso rematado.
60
Process_finished_wont_be_cancelled=O proceso rematou, non se cancelar\u00e1.
61
Removed_layer_with_influence_areas_to_TOC=Eliminada capa con \u00e1reas de influencia da TOC.
62
Round=Redondeado
63
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=Excepci\u00f3n en tempo de execuci\u00f3n refrescando o compo\u00f1ente principal dende un f\u00edo Swing
64
seleccion=Selecci\u00f3n
65
select_all=Seleccionar todo
66
select_all_info=
67
select_by_buffer=Seleccionar por \u00e1rea de influencia
68
select_by_buffer_info=<html>Selecciona as xeometr\u00edas das capas<br>vectoriais activas na vista actual que<br>intersecten co buffer creado das<br>xeometr\u00edas seleccionadas antes.</html>
69
select_by_circle=Seleccionar por c\u00edrculo
70
select_by_circle_info=<html>Selecciona as xeometr\u00edas das capas<br> vectoriais activas na vista actual que<br> intersecta co c\u00edrculo seleccionado.</html>
71
select_by_polyline=Seleccionar por polili\u00f1a
72
select_by_polyline_info=<html>Selecciona as xeometr\u00edas das capas<br> vectoriais activas na vista actual que<br> intersectan coa polili\u00f1a seleccionada.</html>
73
Selection_by_buffer_process=Proceso de selecci\u00f3n por \u00e1rea de influencia
74
Selection_process_finished_succesfully=Proceso de selecci\u00f3n rematado de xeito satisfactorio.
75
Selection_restored=Selecci\u00f3n restaurada.
76
Side=Senso
77
sideLabel_TOOLTIP_HTML_explanation=<html>Indique o sentido que seleccionar\u00e1 o buffer segundo<br> o tipo de capa.</html>
78
Starting_selection_of_layer=A iniciar selecci\u00f3n de capa
79
Starting_selection_process=A iniciar proceso de selecci\u00f3n.
80
Summary_of_the_process_of_selecting_by_buffer=Resumo do proceso de selecci\u00f3n por buffer
81
There_are_no_geometries_selected=Non hai xeometr\u00edas seleccionadas.
82
Tool_unavaliable_with_view_in_geographic_projection=Ferramenta non dispo\u00f1ible en vistas con proxecci\u00f3ns xeogr\u00e1ficas.
83
Tools_Select=Selecci\u00f3n de ferramentas
84
Undefined_layer=
85
Unit=Unidade
86
Vista=Vista
87
Warning=Aviso
88
Width=Anchura
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=Non seleccionar\u00e1 xeometr\u00edas na capa porque ten proxecci\u00f3n incompatible.
0 90

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
	<depends plugin-name="org.gvsig.app" />
4
	<resourceBundle name="text"/>
5
	<libraries library-dir="lib"/>
6
	<extensions>
7

  
8
 		<extension class-name="org.gvsig.selectiontools.app.extension.AboutSelectionToolsExtension"
9
            description="Extension Selection Tools of the Consejer?a de Medio Ambiente of the Junta de Castilla y Le?n Project."
10
			active="true"
11
			priority="1">
12
		</extension>
13
		
14
		<extension class-name="org.gvsig.selectiontools.app.extension.SelectAllExtension"
15
			description="Extension that allows select all geometries of the selected vectorial layers."
16
			active="true"
17
			priority="30">
18
			<menu text="Vista/seleccion/select_all"
19
				action-command="SELALL"
20
				tooltip="select_all_info"
21
				icon="select-all-icon"
22
				position="6570"/>
23
			<tool-bar name="Tools_Select" position="6">
24
				<selectable-tool icon="select-all-icon" action-command="SELALL" tooltip="select_all_info" position="7"/>
25
			</tool-bar>
26
		</extension>		
27
		 <extension class-name="org.gvsig.selectiontools.app.extension.SelectByCircleExtension"
28
			description="Extension that allows select all geometries of the selected vectorial layers that are contained or intersect with a circle defined by the user."
29
			active="true"
30
			priority="30">
31
			<menu text="Vista/seleccion/select_by_circle"
32
				action-command="SELCIRCLE"
33
				tooltip="select_by_circle_info"
34
				icon="select-by-circle-icon"
35
				position="6521"/>
36
			<tool-bar name="Tools_Select" position="6">
37
				<selectable-tool icon="select-by-circle-icon" action-command="SELCIRCLE" tooltip="select_by_circle" position="6"/>
38
			</tool-bar>
39
		</extension>		
40
		<extension class-name="org.gvsig.selectiontools.app.extension.SelectByPolylineExtension"
41
			description="Extension that allows select all geometries of the selected vectorial layers that intersect with a polyline defined by the user."
42
			active="false"
43
			priority="30">
44
			<menu text="Vista/seleccion/select_by_polyline"
45
				action-command="SELPOLYLINE"
46
				tooltip="select_by_polyline_info"
47
				icon="select-by-polyline-icon"
48
				position="6531"/>
49
			<tool-bar name="Tools_Select" position="6">
50
				<selectable-tool icon="select-by-polyline-icon" action-command="SELPOLYLINE" tooltip="select_by_polyline" position="5"/>
51
			</tool-bar>
52
		</extension>		
53

  
54
 		<extension class-name="org.gvsig.selectiontools.app.extension.SelectByBufferExtension"
55
			description="Extension that allows select all geometries of the selected vectorial layers that intersect with a buffer around their previously selected geometries."
56
			active="true"
57
			priority="30">
58
			<menu text="Vista/seleccion/select_by_buffer"
59
				action-command="SELBUFFER"
60
				tooltip="select_by_buffer_info"
61
				icon="select-by-buffer-icon"
62
				position="6532"/>
63
			<tool-bar name="Tools_Select" position="6">
64
				<action-tool icon="select-by-buffer-icon" action-command="SELBUFFER" tooltip="select_by_buffer" position="7"/>
65
			</tool-bar>
66
		</extension>
67
				
68
	</extensions>
69
</plugin-config>
0 70

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/jcyl.html
1
<html>
2
<body>
3

  
4
<img src="jcyl.png"><br>
5

  
6
<h2>Junta de Castilla y Le?n</h2>
7
<br>
8

  
9
<p>EN CONSTRUCCION</p>
10

  
11
</body>
12
</html>
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_cs.properties
1
#Translations for language [cs]
2
#Mon Sep 21 10:02:11 CEST 2009
3
add_buffer_layers=
4
add_influence_areas_layers=
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=
9
Both=
10
Buffer_cap=
11
Buffer_information=
12
Buffer_width=
13
bufferWidth_TOOLTIP_HTML_explanation=
14
configuration=
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=
17
Creating_temp_file=
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=
19
Error=
20
Error_fallo_geoproceso=Chyba b\u011bhem vykon\u00e1v\u00e1n\u00ed funkce
21
Error_preparar_escritura_resultados=Chyba b\u011bhem p\u0159\u00edpravy v\u00fdsledn\u00e9 vrstvy 
22
extSelectionTools=
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_the_temporal_layer=
25
Failed_creating_the_temporal_layer=
26
Failed_reloading_the_layer=
27
Failed_selecting_geometries=
28
Failed_selecting_geometries_by_circle_topology_exception_explanation=
29
Failed_selecting_geometries_by_polyline_topology_exception_explanation=
30
Failed_selecting_geometries_in_layer=
31
Failed_selecting_layer=
32
Failed_the_process=
33
Information=
34
Inside=
35
Invalid_width=
36
Layer_with_buffers_created=
37
Layer_with_buffers_reprojected=
38
Layer_with_influence_areas_created=
39
Layer_with_influence_areas_reprojected=
40
Layer_with_unsupported_geometries_type=
41
Line=
42
lineSideLabel_TOOLTIP_HTML_explanation=
43
Multi_layer_selection_applied_for_influence_area=
44
multiLayer_selection=
45
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=
46
MultiPoint=
47
multiPointSideLabel_TOOLTIP_HTML_explanation=
48
Ongoing_process_please_wait=
49
Options=
50
Outside=
51
Outside_and_inside=
52
Percent=
53
Point=
54
pointSideLabel_TOOLTIP_HTML_explanation=
55
Polygon=
56
polygonSideLabel_TOOLTIP_HTML_explanation=
57
Process_canceled=
58
Process_cancelled=
59
Process_finished=
60
Process_finished_wont_be_cancelled=
61
Removed_layer_with_influence_areas_to_TOC=
62
Round=
63
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=
64
seleccion=V\u00fdb\u011br
65
select_all=Vyber v\u0161e
66
select_all_info=
67
select_by_buffer=
68
select_by_buffer_info=
69
select_by_circle=
70
select_by_circle_info=
71
select_by_polyline=
72
select_by_polyline_info=
73
Selection_by_buffer_process=
74
Selection_process_finished_succesfully=
75
Selection_restored=
76
Side=
77
sideLabel_TOOLTIP_HTML_explanation=
78
Starting_selection_of_layer=
79
Starting_selection_process=
80
Summary_of_the_process_of_selecting_by_buffer=
81
There_are_no_geometries_selected=
82
Tool_unavaliable_with_view_in_geographic_projection=
83
Tools_Select=
84
Undefined_layer=
85
Unit=
86
Vista=Pohled
87
Warning=
88
Width=
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=
0 90

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_pt_BR.properties
1
#Translations for language [pt_BR]
2
#Mon Sep 21 10:02:12 CEST 2009
3
add_buffer_layers=Adicionar buffer no plano de informa\u00e7\u00e3o
4
add_influence_areas_layers=Adicionar plano de informa\u00e7\u00e3o da \u00e1rea de influ\u00eancia
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=Adicionado plano de informa\u00e7\u00e3o com \u00e1reas de influ\u00eancia TOC
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=<html>Adicione as \u00e1reas de influ\u00eancia de cada plano de informa\u00e7\u00e3o ativo<br>como novo plano de informa\u00e7\u00e3o vetorial.<html>
9
Both=Ambos
10
Buffer_cap=Sobrescrever \u00e1rea de influ\u00eancia
11
Buffer_information=Informa\u00e7\u00f5es da \u00e1rea de influ\u00eancia
12
Buffer_width=Largura da \u00e1rea de influ\u00eancia
13
bufferWidth_TOOLTIP_HTML_explanation=<html>Largura da \u00e1rea de influ\u00eancia.</html>
14
configuration=configura\u00e7\u00e3o
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=Criando plano de informa\u00e7\u00e3o com \u00e1reas de influ\u00eancia.
17
Creating_temp_file=Criando arquivo tempor\u00e1rio
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=<html> Unidade de dist\u00e2ncia. </html>
19
Error=Erro
20
Error_fallo_geoproceso=Falha ao executar o geoprocesso.
21
Error_preparar_escritura_resultados=Erro ao gerar o arquivo de resultados.
22
extSelectionTools=Extens\u00e3o Ferramentas de Sele\u00e7\u00e3o
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_the_temporal_layer=Falha criando plano de informa\u00e7\u00e3o temporaria.
25
Failed_creating_the_temporal_layer=Falha criando plano de informa\u00e7\u00e3o temporario.
26
Failed_reloading_the_layer=
27
Failed_selecting_geometries=Falha selecionando geometrias.
28
Failed_selecting_geometries_by_circle_topology_exception_explanation=Falha selecionando geometrias do plano de informa\u00e7\u00e3o.\nA \u00e1rea circular de sele\u00e7\u00e3o intersecta com alguma geometria mal definida, revise novamente.
29
Failed_selecting_geometries_by_polyline_topology_exception_explanation=Falha selecionando geometria do plano de informa\u00e7\u00e3o.\nA polilinha intersecta com alguma geometria mal definida, revise novamente.
30
Failed_selecting_geometries_in_layer=Falha selecionando geometria no plano de informa\u00e7\u00e3o.
31
Failed_selecting_layer=Falha selecionando plano de informa\u00e7\u00e3o.
32
Failed_the_process=Falha no processo.
33
Information=Informa\u00e7\u00e3o
34
Inside=Interior
35
Invalid_width=Largura inv\u00e1lida
36
Layer_with_buffers_created=
37
Layer_with_buffers_reprojected=
38
Layer_with_influence_areas_created=plano de Informa\u00e7\u00e3o com \u00e1rea de influ\u00eancia criada.
39
Layer_with_influence_areas_reprojected=Plano de Informa\u00e7\u00e3o com \u00e1rea de influ\u00eancia reprojetada.
40
Layer_with_unsupported_geometries_type=Plano de Informa\u00e7\u00e3o com tipo de geometrias n\u00e3o suportadas.
41
Line=Linha
42
lineSideLabel_TOOLTIP_HTML_explanation=<html> Geometria de tipo de linha. </html>
43
Multi_layer_selection_applied_for_influence_area=Sele\u00e7\u00e3o multi-plano de informa\u00e7\u00e3o aplicado para \u00e1rea de influ\u00eancia.
44
multiLayer_selection=Sele\u00e7\u00e3o multi-plano de informa\u00e7\u00e3o
45
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=<html>A sele\u00e7\u00e3o da geometria afeta todos os planos de informa\u00e7\u00e3o.</html>
46
MultiPoint=Multiponto
47
multiPointSideLabel_TOOLTIP_HTML_explanation=<html>Geometr\u00eda do tipo multi-ponto.</html>
48
Ongoing_process_please_wait=Processo em andamento, aguarde...
49
Options=Op\u00e7\u00f5es
50
Outside=Exterior
51
Outside_and_inside=Exterior e interior
52
Percent=Porcentagem
53
Point=Ponto
54
pointSideLabel_TOOLTIP_HTML_explanation=<html>Geometr\u00eda do tipo pontual.</html>
55
Polygon=Pol\u00edgono
56
polygonSideLabel_TOOLTIP_HTML_explanation=<html>Geometrias do tipo pol\u00edgono.</html>
57
Process_canceled=Processo cancelado.
58
Process_cancelled=Processo cancelado.
59
Process_finished=Processo finalizado.
60
Process_finished_wont_be_cancelled=O processo finalizou, n\u00e3o ser\u00e1 cancelado.
61
Removed_layer_with_influence_areas_to_TOC=Apagado plano de informa\u00e7\u00e3o com \u00e1rea de influ\u00eancia do TOC.
62
Round=Arredondado
63
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=Exce\u00e7\u00e3o em tempo de execu\u00e7\u00e3o a partir do arrefecimento prim\u00e1rio Swing
64
seleccion=Sele\u00e7\u00e3o
65
select_all=Selecionar tudo
66
select_all_info=
67
select_by_buffer=Selecionar por \u00e1rea de influ\u00eancia
68
select_by_buffer_info=<html>Selecionar as geometr\u00edas do plano de informa\u00e7\u00e3o<br> vetoriais ativas no bloco atual que<br> intersectem com a \u00e1rea de influ\u00eancia das<br> geometr\u00edas anteriores selecionadas.</html>
69
select_by_circle=Selecionar por c\u00edrculo
70
select_by_circle_info=<html>Selecionar as geometr\u00edas dos planos de informa\u00e7\u00e3o<br> vetores ativos no bloco atual que<br> intersectam com o circulo selecionado. </html>
71
select_by_polyline=Selecioanr por polilinha
72
select_by_polyline_info=<html>Selecioanr as geometr\u00edas dos planos de informa\u00e7\u00e3o<br> vetoriais ativos no bloco atual que<br> intersectam com as polil\u00ednhas selecionadas. </html>
73
Selection_by_buffer_process=Processo de sele\u00e7\u00e3o por \u00e1rea de influ\u00eancia
74
Selection_process_finished_succesfully=Processo de sele\u00e7\u00e3o finalizado com sucesso.
75
Selection_restored=Sele\u00e7\u00e3o restaurada.
76
Side=Sentido
77
sideLabel_TOOLTIP_HTML_explanation=<html> Indique o sentido que selecionar\u00e1 a \u00e1rea de influ\u00eancia segundo<br> o tipo de plano de informa\u00e7\u00e3o.</html>
78
Starting_selection_of_layer=Iniciando se\u00e7\u00e3o do bloco
79
Starting_selection_process=Iniciando processo de sele\u00e7\u00e3o.
80
Summary_of_the_process_of_selecting_by_buffer=Resumo do processo de sele\u00e7\u00e3o por \u00e1rea de influ\u00eancia.
81
There_are_no_geometries_selected=N\u00e3o existem geometrias selecionadas...
82
Tool_unavaliable_with_view_in_geographic_projection=Ferramenta n\u00e3o dispon\u00edvel no bloco com proje\u00e7\u00f5es geogr\u00e1ficas.
83
Tools_Select=Sele\u00e7\u00e3o de ferramentas
84
Undefined_layer=
85
Unit=Unidade
86
Vista=Bloco
87
Warning=Aviso
88
Width=Largura
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=N\u00e3o ser\u00e1 selecionada a geometria do plano de informa\u00e7\u00e3o porque tem proje\u00e7\u00e3o incompat\u00edvel.
0 90

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_fr.properties
1
#Translations for language [fr]
2
#Mon Sep 21 10:02:12 CEST 2009
3
add_buffer_layers=Ajouter les couches zones tampon
4
add_influence_areas_layers=Ajouter couches zones tampon
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=Ajouter couche zones tampon dans la TDM.
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=<html>Ajoute les zones tampon de chaque couche active<br> comme nouvelles couches vectorielles</html>
9
Both=Les deux
10
Buffer_cap=Couverture du tampon
11
Buffer_information=Information du tampon
12
Buffer_width=Largeur du tampon
13
bufferWidth_TOOLTIP_HTML_explanation=<html>Largeur du tampon</html>
14
configuration=configuration
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=Cr\u00e9ation de couche avec zones d'influence
17
Creating_temp_file=Cr\u00e9ation d'un fichier temporaire
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=<html>Unit\u00e9s de distance</html>
19
Error=Erreur
20
Error_fallo_geoproceso=Erreur lors du g\u00e9otraitement.
21
Error_preparar_escritura_resultados=Erreur lors de l'\u00e9criture des donn\u00e9es.
22
extSelectionTools=Outils de s\u00e9lection
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_the_temporal_layer=Echec lors de la cr\u00e9ation de la couche temporaire.
25
Failed_creating_the_temporal_layer=Echec lors de la cr\u00e9ation de la couche temporaire.
26
Failed_reloading_the_layer=
27
Failed_selecting_geometries=Echec lors de la s\u00e9lection des entit\u00e9s.
28
Failed_selecting_geometries_by_circle_topology_exception_explanation=Echec lors de la s\u00e9lection des entit\u00e9s.\nLa s\u00e9lection par cercle intersecte avec des entit\u00e9s d\u00e9fectueuses. Veuillez v\u00e9rifier les donn\u00e9es d'entr\u00e9e.
29
Failed_selecting_geometries_by_polyline_topology_exception_explanation=Echec lors de la s\u00e9lection des entit\u00e9s.\nLa s\u00e9lection par polygone intersecte avec des entit\u00e9s d\u00e9fectueuses. Veuillez v\u00e9rifier les donn\u00e9es d'entr\u00e9e.
30
Failed_selecting_geometries_in_layer=Echec lors de la s\u00e9lection des entit\u00e9s de la couche.
31
Failed_selecting_layer=Echec lors de la s\u00e9lection de la couche.
32
Failed_the_process=Le traitement a \u00e9chou\u00e9.
33
Information=Information
34
Inside=Int\u00e9rieur
35
Invalid_width=Largeur non valide
36
Layer_with_buffers_created=
37
Layer_with_buffers_reprojected=
38
Layer_with_influence_areas_created=Couche avec zones d'influence cr\u00e9\u00e9e.
39
Layer_with_influence_areas_reprojected=Couche avec zones d'influence reprojet\u00e9es cr\u00e9\u00e9e.
40
Layer_with_unsupported_geometries_type=Couche d'entit\u00e9s de type non support\u00e9.
41
Line=Ligne
42
lineSideLabel_TOOLTIP_HTML_explanation=<html>G\u00e9om\u00e9tries de type lignes.</html>
43
Multi_layer_selection_applied_for_influence_area=S\u00e9lection multi-couches appliqu\u00e9e aux zones tampons.
44
multiLayer_selection=S\u00e9lection multi couches.
45
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=<html>La s\u00e9lection des entit\u00e9s affectera l'ensemble des couches.</html>
46
MultiPoint=Multipoint
47
multiPointSideLabel_TOOLTIP_HTML_explanation=<html>G\u00e9om\u00e9tries de type multi points.</html>
48
Ongoing_process_please_wait=traitement en cours d'ex\u00e9cution, veuillez patienter...
49
Options=Options
50
Outside=Ext\u00e9rieur
51
Outside_and_inside=Ext\u00e9rieur et int\u00e9rieur
52
Percent=Pourcentage
53
Point=Point
54
pointSideLabel_TOOLTIP_HTML_explanation=<html>G\u00e9om\u00e9tries de type point.</html>
55
Polygon=Polygone
56
polygonSideLabel_TOOLTIP_HTML_explanation=<html>G\u00e9om\u00e9trie de type polygones.</html>
57
Process_canceled=Traitement annul\u00e9
58
Process_cancelled=Traitement annul\u00e9
59
Process_finished=Traitement termin\u00e9
60
Process_finished_wont_be_cancelled=Le traitement est termin\u00e9 et ne peut \u00eatre annul\u00e9
61
Removed_layer_with_influence_areas_to_TOC=Supprimer couche zones tampon de la TDM.
62
Round=Arrondi
63
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=Une exception (erreur fatale)  a \u00e9t\u00e9 rencontr\u00e9e lors de l'appel  de Java Swing pour rafra\u00eechir l'interface utilisateur.
64
seleccion=S\u00e9lection
65
select_all=Tout s\u00e9lectionner
66
select_all_info=
67
select_by_buffer=S\u00e9lection par zone tampon
68
select_by_buffer_info=<html>S\u00e9lectionne les entit\u00e9s g\u00e9om\u00e9triques des couches<br>vectorielles actives de la vue qui<br> intersecte avec la zone tampon d\u00e9finie par l'utilisateur.</html>
69
select_by_circle=S\u00e9lectionner par cercle
70
select_by_circle_info=<html>S\u00e9lectionne les entit\u00e9s g\u00e9om\u00e9triques des couches<br>vectorielles actives de la vue qui<br> intersecte avec le cercle d\u00e9fini par l'utilisateur.</html>
71
select_by_polyline=S\u00e9lection par polyligne
72
select_by_polyline_info=<html>S\u00e9lectionne les entit\u00e9s g\u00e9om\u00e9triques des couches<br>vectorielles actives de la vue qui<br> intersecte avec la polyligne d\u00e9finie par l'utilisateur.</html>
73
Selection_by_buffer_process=S\u00e9lection par zone tampon
74
Selection_process_finished_succesfully=La s\u00e9lection s'est termin\u00e9e avec succ\u00e8s.
75
Selection_restored=S\u00e9lection restaur\u00e9e.
76
Side=Limites
77
sideLabel_TOOLTIP_HTML_explanation=<html>Indique le mode de s\u00e9lection de zone tampon suivant le type de couche</html>
78
Starting_selection_of_layer=D\u00e9marrer s\u00e9lection de couche
79
Starting_selection_process=D\u00e9marrer traitement de s\u00e9lection
80
Summary_of_the_process_of_selecting_by_buffer=R\u00e9capitulatif
81
There_are_no_geometries_selected=Pas de g\u00e9om\u00e9tries s\u00e9lectionn\u00e9es
82
Tool_unavaliable_with_view_in_geographic_projection=Outil non disponible avec une vue en projection g\u00e9ographiques.
83
Tools_Select=S\u00e9lection d'outils
84
Undefined_layer=
85
Unit=Unit\u00e9
86
Vista=Vue
87
Warning=Attention
88
Width=Largeur
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=Echec lors de la s\u00e9lection d'entit\u00e9s dans la couche, la projection n'est pas compatible.
0 90

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_eu.properties
1
#Translations for language [eu]
2
#Mon Sep 21 10:02:11 CEST 2009
3
add_buffer_layers=
4
add_influence_areas_layers=Eragin-eremu geruzak gehitzen ditu.
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=TOCean eragin-eremu geruza gehitu da
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=<html>Geruza aktiboen eragin-eremuak gehitzen ditu<br> bektore-geruza berri bezala.</html>
9
Both=Biak
10
Buffer_cap=Eragin-eremuaren txanoa
11
Buffer_information=Eragin-eremuaren informazioa
12
Buffer_width=Eragin-eremuaren zabalera
13
bufferWidth_TOOLTIP_HTML_explanation=<html>Eragin-eremuaren zabalera</html>
14
configuration=konfigurazio
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=Eragin-eremudun geruza sortzen
17
Creating_temp_file=Fitxategi tenporala sortzen
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=<html>Distantzia unitatea.</html>
19
Error=Errorea
20
Error_fallo_geoproceso=Errorea geoprozesua gauzatzean
21
Error_preparar_escritura_resultados=Errore bat gertatu da emaitzen geruza prestatzean.
22
extSelectionTools=Hautaketa tresnaren luzapena.
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_the_temporal_layer=Hutsegitea geruza tenporala sortzean
25
Failed_creating_the_temporal_layer=Hutsegitea geruza tenporala sortzean.
26
Failed_reloading_the_layer=
27
Failed_selecting_geometries=Hutsegitea geometriak hautatzerakoan.
28
Failed_selecting_geometries_by_circle_topology_exception_explanation=Hutsegitea geruzan geometriak hautatzerakoan.\nHautaketa eremu zirkularra geometria oker batekin gurutzatzen da; berrikusi.
29
Failed_selecting_geometries_by_polyline_topology_exception_explanation=Hutsegitea geruzan geometriak hautatzerakoan.\nPolilerroa geometria oker batekin gurutzatzen da; berrikusi.
30
Failed_selecting_geometries_in_layer=Hutsegitea geruzan geometriak hautatzerakoan.
31
Failed_selecting_layer=Hutsegitea geruza hautatzean
32
Failed_the_process=Hutsegitea prozesuan.
33
Information=Informazioa
34
Inside=Barrua
35
Invalid_width=Zabalera okerra
36
Layer_with_buffers_created=
37
Layer_with_buffers_reprojected=
38
Layer_with_influence_areas_created=Eragin-eremuen geruza sortua.
39
Layer_with_influence_areas_reprojected=Eragin-eremuen geruza birproiektatua.
40
Layer_with_unsupported_geometries_type=Geruzaren geometria mota jasangaitza da.
41
Line=Lerroa
42
lineSideLabel_TOOLTIP_HTML_explanation=<html>Lerro motako geometriak.</html>
43
Multi_layer_selection_applied_for_influence_area=Geruza anitzeko hautaketa eragin-eremuari aplikatua
44
multiLayer_selection=Geruza anitzeko hautaketa
45
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=<html>Geometrien hautaketak geruza guztiei eragiten die.</html>
46
MultiPoint=Puntuanitza
47
multiPointSideLabel_TOOLTIP_HTML_explanation=<html>Puntuanitz motako geometriak.</html>
48
Ongoing_process_please_wait=Prozesua martxan, itxaron mesedez...
49
Options=Aukerak
50
Outside=Kanpo
51
Outside_and_inside=Kanpo eta barne
52
Percent=Ehunekoa
53
Point=Puntua
54
pointSideLabel_TOOLTIP_HTML_explanation=<html>Puntu motako geometriak.</html>
55
Polygon=Poligonoa
56
polygonSideLabel_TOOLTIP_HTML_explanation=<html>Poligono motako geometriak.</html>
57
Process_canceled=Prozesua bertan behera utzi da.
58
Process_cancelled=Prozesua bertan behera utzi da.
59
Process_finished=Prozesua amaituta
60
Process_finished_wont_be_cancelled=Prozesua amaitu da, ez da ezeztatuko.
61
Removed_layer_with_influence_areas_to_TOC=Kenduta eragin-eremudun geruza TOCetik
62
Round=Biribildua
63
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=Exekutatze denbora-muga gainditu da.
64
seleccion=Hautaketa
65
select_all=Hautatu dena
66
select_all_info=
67
select_by_buffer=Hautatu eragin-eremuaren arabera
68
select_by_buffer_info=<html>Lehendik hautatuta dauden geometrien<br> eragin-eremuekin gurutzaten diren<br> bistako geruza aktibo bektorialen geometriak<br> hautatzen ditu.</html> \n 
69
select_by_circle=Hautatu zirkulu bidez
70
select_by_circle_info=<html>Hautatuta dagoen zirkuluarekin gurutzatzen<br>diren bistako geruza aktibo bektorialen<br>geometriak hautatzen ditu.</html>
71
select_by_polyline=Hautatu polilinea bidez
72
select_by_polyline_info=<html>Hautatuta dagoen polilinearekin gurutzatzen<br>diren bistako geruza aktibo bektorialen<br>geometriak hautatzen ditu.</html>
73
Selection_by_buffer_process=Eragin-eremuaren araberako hautaketa prozesua
74
Selection_process_finished_succesfully=Hautaketa prozesua ondo burutu da
75
Selection_restored=Hautaketa berrezarria
76
Side=Noranzkoa
77
sideLabel_TOOLTIP_HTML_explanation=<html>Adierazi eragin-eremuaren noranzkoa<br>geruza-motaren arabera.</html>
78
Starting_selection_of_layer=Geruza hautaketa hasieratzen
79
Starting_selection_process=Hautaketa prozesua hasieratzen.
80
Summary_of_the_process_of_selecting_by_buffer=Eragin-eremu bidez hautatzeko prozesuaren laburpena
81
There_are_no_geometries_selected=Ez dago geometriarik hautatuta
82
Tool_unavaliable_with_view_in_geographic_projection=Tresna hau ez dago erabilgarri proiekzio geografikodun bistetan
83
Tools_Select=Tresnen hautaketa
84
Undefined_layer=
85
Unit=Unitatea
86
Vista=Bista
87
Warning=Oharra
88
Width=Zabalera
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=Proiekzio bateraezina dauka eta ez da geometriarik hautatuko geruzan
0 90

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_en_US.properties
1
#Translations for language [en_US]
2
#Mon Sep 21 10:02:11 CEST 2009
3
add_buffer_layers=Add buffer layers
4
add_influence_areas_layers=Add buffer zone layers
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=Added layer with buffer zones to TOC.
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=<html>Add buffer zones for each active layer<br> as new vector layers</html>
9
Both=Both
10
Buffer_cap=Buffer cap
11
Buffer_information=Buffer information
12
Buffer_width=Buffer width
13
bufferWidth_TOOLTIP_HTML_explanation=<html>Buffer width</html>
14
configuration=Configuration
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=Creating layer with areas of influence...
17
Creating_temp_file=Creating temporary file...
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=<html>Distance measurement unit</html>
19
Error=Error
20
Error_fallo_geoproceso=Failed to execute geoprocessing tool.
21
Error_preparar_escritura_resultados=Error generating results layer
22
extSelectionTools=Selection Tools Extension
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_the_temporal_layer=Failed to create temporary layer.
25
Failed_creating_the_temporal_layer=Failed to create temporary layer.
26
Failed_reloading_the_layer=
27
Failed_selecting_geometries=Failed to select geometries.
28
Failed_selecting_geometries_by_circle_topology_exception_explanation=Failed to select geometries in layer.\nThe circular selection area intersects some faulty geometries. Please revise input data.
29
Failed_selecting_geometries_by_polyline_topology_exception_explanation=Failed to select geometries in layer.\nThe polygonal selection area intersects some faulty geometries. Please revise input data.
30
Failed_selecting_geometries_in_layer=Failed to select geometries from layer.
31
Failed_selecting_layer=Failed to select layer.
32
Failed_the_process=The process failed.
33
Information=Information
34
Inside=Inside
35
Invalid_width=Invalid width.
36
Layer_with_buffers_created=
37
Layer_with_buffers_reprojected=
38
Layer_with_influence_areas_created=Created layer with areas of influence.
39
Layer_with_influence_areas_reprojected=Created layer with reprojected areas of influence.
40
Layer_with_unsupported_geometries_type=Layer geometry type not supported.
41
Line=Line
42
lineSideLabel_TOOLTIP_HTML_explanation=<html>Geometries of type "line"</html>
43
Multi_layer_selection_applied_for_influence_area=Multi-layer selection applied to buffer zones.
44
multiLayer_selection=Multi-layer selection
45
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=<html>Select features from all layers</html>
46
MultiPoint=Multipoint
47
multiPointSideLabel_TOOLTIP_HTML_explanation=<html>Geometries of type "multipoint"</html>
48
Ongoing_process_please_wait=Computation in progress. Please be patient...
49
Options=Options
50
Outside=Outside
51
Outside_and_inside=Outside and inside
52
Percent=Percent
53
Point=Point
54
pointSideLabel_TOOLTIP_HTML_explanation=<html>Geometries of type "point"</html>
55
Polygon=Polygon
56
polygonSideLabel_TOOLTIP_HTML_explanation=<html>Geometries of type "polygon"</html>
57
Process_canceled=Process canceled.
58
Process_cancelled=Process canceled.
59
Process_finished=Process finished.
60
Process_finished_wont_be_cancelled=Process has already finished. Will not be canceled.
61
Removed_layer_with_influence_areas_to_TOC=Removed layer with buffer zones from TOC.
62
Round=Rounded
63
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=Program exception (fatal error) encountered while calling Java Swing thread to refresh main user interface frame.
64
seleccion=Selection
65
select_all=Select all
66
select_all_info=
67
select_by_buffer=Select by buffer zone
68
select_by_buffer_info=<html>Select those features from the view's<br> active vector layers that intersect<br> with a buffer zone created<b> around previously selected features.</html>
69
select_by_circle=Select by circle
70
select_by_circle_info=<html>Select those features from the view's<br> active vector layers that intersect<br> with a user-defined circle.</html>
71
select_by_polyline=Select by polyline
72
select_by_polyline_info=<html>Select those features from the view's<br> active vector layers that intersect<br> with a user-defined polyline.</html>
73
Selection_by_buffer_process=Buffer zone selection tool
74
Selection_process_finished_succesfully=Selection process finished successfully.
75
Selection_restored=Selection restored.
76
Side=Side
77
sideLabel_TOOLTIP_HTML_explanation=<html>Choose the mode for buffer zone selection depending on layer type</html>
78
Starting_selection_of_layer=Initializing layer selection...
79
Starting_selection_process=Initializing selection process...
80
Summary_of_the_process_of_selecting_by_buffer=Summary of "selection by buffer zone" process
81
There_are_no_geometries_selected=There are no selected geometries.
82
Tool_unavaliable_with_view_in_geographic_projection=This tool is not available for views using geographic (lat/long) projection systems.
83
Tools_Select=Tool selection
84
Undefined_layer=
85
Unit=Unit
86
Vista=View
87
Warning=Warning
88
Width=Width
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=Incompatible projection. Failed to select geometries from layer.
0 90

  
tags/v2_0_0_Build_2035/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/iver.html
1
<html>
2
<body>
3

  
4
<img src="iver-logo.png"><br>
5

  
6
<h2>IVER</h2>
7
<br>
8

  
9
<p>EN CONSTRUCCION</p>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff