Revision 38364

View differences:

tags/v2_0_0_Build_2047/extensions/org.gvsig.selectiontools.app/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" value="${org.gvsig.initial.build.basedir}/.." />
6
	<property name="build.basedir" value="${workspace.basedir}/org.gvsig.maven.base.build" description="Eclipse workspace location" />
7
	<property name="build.jar.version" value="1.0.8-SNAPSHOT" />
8
	<property name="build.jar.file" value="org.gvsig.maven.base.build-${build.jar.version}.jar" />
9

  
10
	<property name="ant.libs.dir" location="${build.basedir}" description="Additional ant tasks libs folder" />
11

  
12
	<target name="check-maven-base-build-available">
13
		<available file="${user.home}/.m2/repository/org/gvsig/org.gvsig.maven.base.build/${build.jar.version}/${build.jar.file}" property="maven-base-build-available" />
14
	</target>
15

  
16
	<target name="get-maven-base-build-local" depends="check-maven-base-build-available" if="maven-base-build-available">
17
		<!-- Unzip de build jar file from the maven repository into the workspace root folder -->
18
		<copy todir="${workspace.basedir}" preservelastmodified="false" filtering="false">
19
			<zipfileset src="${user.home}/.m2/repository/org/gvsig/org.gvsig.maven.base.build/${build.jar.version}/${build.jar.file}">
20
				<patternset>
21
					<exclude name="META-INF/**" />
22
				</patternset>
23
			</zipfileset>
24
		</copy>
25
	</target>
26

  
27
	<target name="get-maven-base-build-remote" depends="check-maven-base-build-available" unless="maven-base-build-available">
28
		<mkdir dir="target" />
29

  
30
		<!-- Download the build jar file -->
31
		<get src="http://devel.gvsig.org/m2repo/j2se/org/gvsig/org.gvsig.maven.base.build/${build.jar.version}/${build.jar.file}" dest="target/${build.jar.file}" verbose="true" />
32

  
33
		<!-- Unzip de build jar file into the workspace root folder -->
34
		<copy todir="${workspace.basedir}" preservelastmodified="false" filtering="false">
35
			<zipfileset src="target/${build.jar.file}">
36
				<patternset>
37
					<exclude name="META-INF/**" />
38
				</patternset>
39
			</zipfileset>
40
		</copy>
41

  
42
	</target>
43
	
44
	<target name="find.depends.natives.file">
45
	    <condition property="depends.natives.file.exists">
46
            <available file="${org.gvsig.initial.build.basedir}/DEPENDS_ON_NATIVE_LIBRARIES"/>
47
	    </condition>	
48
	</target>
49
	
50
	<target name="find.gvsig.platform.properties.file" 
51
			depends="find.depends.natives.file"
52
			if="depends.natives.file.exists">
53
	    <condition property="gvsig.platform.exists">
54
            <available file="${user.home}/.gvsig.platform.properties"/>
55
	    </condition>	
56
	</target>
57
	
58
	<target name="check.gvsig.platform.properties" 
59
			depends="find.gvsig.platform.properties.file">
60
		<fail if="depends.natives.file.exists" unless="gvsig.platform.exists">
61
ERROR!!
62
	
63
You have to define your gvSIG platform properties, 
64
by creating the file: ${user.home}/.gvsig.platform.properties
65
with the following content:
66

  
67
native_platform=linux
68
native_distribution=all
69
native_compiler=gcc4
70
native_arch=i386
71
native_libraryType=dynamic
72
export native_classifier=${native_platform}-${native_distribution}-${native_compiler}-${native_arch}-${native_libraryType}
73

  
74
Replace the fifth initial variables values with the ones appropiate 
75
to your platform.
76
	
77
If you use maven in the command line, you can use the previous file also
78
to define the MAVEN_OPTS environment variable, by adding to your 
79
.bash_rc file something like this:
80

  
81
if [ -f "${HOME}/.gvsig.platform.properties" ]
82
then
83
    . ${HOME}/.gvsig.platform.properties
84
    export MAVEN_OPTS="-Xmx256M -XX:MaxPermSize=64m -Dnative-classifier=${native_classifier}"
85
else
86
    export MAVEN_OPTS="-Xmx256M -XX:MaxPermSize=64m"
87
fi
88

  
89
It will work if you use the bash shell. In any other case or platform, you'll
90
have to define your MAVEN_OPTS environment variable and set the 
91
"native-classifier" parameter directly.
92
		</fail>			
93
	
94
	</target>
95

  
96
	<target name="prepare-workspace" depends="get-maven-base-build-local,get-maven-base-build-remote,check.gvsig.platform.properties">
97

  
98
		<mkdir dir="target" />
99

  
100
		<chmod dir="${build.basedir}/maven/bin" perm="u+x" includes="m2,mvn,mvnDebug" />
101

  
102
		<!-- Copy the maven launchers to the workspace metadata folder -->
103
		<copy todir="${workspace.basedir}/.metadata">
104
			<fileset dir="${build.basedir}/eclipse-launchers">
105
				<exclude name="**/org.eclipse.jdt.core.prefs" />
106
				<exclude name="**/org.eclipse.core.variables.prefs" />
107
			</fileset>
108
		</copy>
109

  
110
		<concat destfile="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs" append="true">
111
			<filelist dir="${build.basedir}/eclipse-launchers/.plugins/org.eclipse.core.runtime/.settings" files="org.eclipse.jdt.core.prefs" />
112
		</concat>
113
		<concat destfile="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.variables.prefs" append="true">
114
			<filelist dir="${build.basedir}/eclipse-launchers/.plugins/org.eclipse.core.runtime/.settings" files="org.eclipse.core.variables.prefs" />
115
		</concat>
116

  
117
		<!-- Configure the eclipse workspace -->
118
		<ant antfile="${build.basedir}/maven-goals.xml" target="mvn-configure-eclipse-workspace" />
119

  
120
		<!-- Configure the gvSIG profile -->
121
		<ant antfile="${build.basedir}/check-gvsig-profile.xml" />
122

  
123
		<property name="user-settings-file-location" value="${user.home}/.m2/settings.xml" />
124

  
125
		<taskdef name="xmltask" classname="com.oopsconsultancy.xmltask.ant.XmlTask">
126
			<classpath>
127
				<pathelement location="${ant.libs.dir}/com.oopsconsultancy.xmltask-1.16.1.jar" />
128
			</classpath>
129
		</taskdef>
130

  
131
		<xmltask source="${user-settings-file-location}" dest="${user-settings-file-location}">
132
			<copy path="//:settings/:profiles/:profile[:id/text() = 'gvsig-install']/:properties/:gvsig.install.dir/text()" property="current-gvsig-location" />
133
		</xmltask>
134

  
135
		<replace file="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.core.prefs" token="@GVSIG_HOME@" value="${current-gvsig-location}" />
136
		<replace file="${workspace.basedir}/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.variables.prefs" token="@GVSIG_HOME@" value="${current-gvsig-location}" />
137

  
138
		<!-- Compile, install and generate eclipse projects -->
139
		<ant antfile="${build.basedir}/maven-goals.xml" target="mvn-install-and-eclipse-eclipse" />
140

  
141
		<echo>INFORMATION!!!</echo>
142
		<echo>Restart eclipse and then proceed to import the subprojects contained into the main project</echo>
143

  
144
		<!-- TODO: copiar al proyecto de configuraciĆ³n general -->
145
	</target>
146

  
147
	<target name="clean">
148
		<delete dir="target" />
149
	</target>
150
	
151
</project>
0 152

  
tags/v2_0_0_Build_2047/extensions/org.gvsig.selectiontools.app/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
	<artifactId>org.gvsig.selectiontools.app</artifactId>
7
	<packaging>pom</packaging>
8
	<version>1.0.0-SNAPSHOT</version>
9
	<name>org.gvsig.selectiontools.app</name>
10
	<description>Advanced selection tools:
11
- select all
12
- by buffer
13
- by cicle
14
- by polilyne
15
</description>
16
    <parent>
17
        <groupId>org.gvsig</groupId>
18
        <artifactId>org.gvsig.maven.base.extension.pom</artifactId>
19
        <version>1.0.8-SNAPSHOT</version>
20
    </parent>
21
    <scm>
22
        <connection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/extensions/org.gvsig.selectiontools.app</connection>
23
        <developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/extensions/org.gvsig.selectiontools.app</developerConnection>
24
        <url>https://devel.gvsig.org/redmine/projects/gvsig-desktop/repository/show/branches/v2_0_0_prep/extensions/org.gvsig.selectiontools.app</url>
25
    </scm>
26
	<repositories>
27
		<repository>
28
			<id>gvsig-public-http-repository</id>
29
			<name>gvSIG maven public HTTP repository</name>
30
            <url>http://devel.gvsig.org/m2repo/j2se</url>
31
			<releases>
32
				<enabled>true</enabled>
33
				<updatePolicy>daily</updatePolicy>
34
				<checksumPolicy>warn</checksumPolicy>
35
			</releases>
36
			<snapshots>
37
				<enabled>true</enabled>
38
				<updatePolicy>daily</updatePolicy>
39
				<checksumPolicy>warn</checksumPolicy>
40
			</snapshots>
41
		</repository>
42
	</repositories>
43
    <dependencyManagement>
44
        <dependencies>          
45
            <dependency>
46
                <groupId>org.gvsig</groupId>
47
                <artifactId>org.gvsig.core.maven.dependencies</artifactId>
48
                <version>2.0.1-SNAPSHOT</version>
49
                <type>pom</type>
50
                <scope>import</scope>
51
            </dependency>
52
        </dependencies>
53
    </dependencyManagement>
54
	<modules>
55
		<module>org.gvsig.selectiontools.app.extension</module>
56
	</modules>
57
	<properties>
58
		<package.info.state>alpha5</package.info.state>
59
	</properties>
60

  
61
</project>
0 62

  
tags/v2_0_0_Build_2047/extensions/org.gvsig.selectiontools.app/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_2047/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app/distribution/distribution.xml
1
<assembly>
2
</assembly>
0 3

  
tags/v2_0_0_Build_2047/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app/buildNumber.properties
1
#maven.buildNumber.plugin properties file
2
#Tue May 29 16:41:47 CEST 2012
3
buildNumber=2055
tags/v2_0_0_Build_2047/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/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/maven-v4_0_0.xsd">
5
	<modelVersion>4.0.0</modelVersion>
6
	<artifactId>org.gvsig.selectiontools.app.extension</artifactId>
7
	<packaging>jar</packaging>
8
	<name>Tools: Selection tools</name>
9
	<parent>
10
		<groupId>org.gvsig</groupId>
11
		<artifactId>org.gvsig.selectiontools.app</artifactId>
12
		<version>1.0.0-SNAPSHOT</version>
13
	</parent>
14

  
15
	<dependencies>
16
		<dependency>
17
			<groupId>org.gvsig</groupId>
18
			<artifactId>org.gvsig.andami</artifactId>
19
            <scope>compile</scope>
20
		</dependency>
21
		<dependency>
22
			<groupId>org.gvsig</groupId>
23
			<artifactId>org.gvsig.i18n</artifactId>
24
            <scope>compile</scope>
25
		</dependency>
26
		<dependency>
27
			<groupId>org.gvsig</groupId>
28
			<artifactId>org.gvsig.tools.lib</artifactId>
29
            <scope>compile</scope>
30
		</dependency>
31
		<dependency>
32
			<groupId>org.gvsig</groupId>
33
			<artifactId>org.gvsig.app</artifactId>
34
			<version>2.0-SNAPSHOT</version>
35
            <scope>compile</scope>
36
		</dependency>
37
        <dependency>
38
            <groupId>org.gvsig</groupId>
39
            <artifactId>org.gvsig.about.api</artifactId>
40
            <scope>compile</scope>
41
        </dependency>
42
        <dependency>
43
            <groupId>org.gvsig</groupId>
44
            <artifactId>org.gvsig.fmap.dal</artifactId>
45
            <scope>compile</scope>
46
        </dependency>
47
        <dependency>
48
            <groupId>org.gvsig</groupId>
49
            <artifactId>org.gvsig.fmap.geometry</artifactId>
50
            <scope>compile</scope>
51
        </dependency>
52
        <dependency>
53
            <groupId>org.gvsig</groupId>
54
            <artifactId>org.gvsig.ui</artifactId>
55
            <scope>compile</scope>
56
        </dependency>
57
        <dependency>
58
            <groupId>org.gvsig</groupId>
59
            <artifactId>org.gvsig.fmap.mapcontext</artifactId>
60
            <scope>compile</scope>
61
        </dependency>
62
        <dependency>
63
            <groupId>org.gvsig</groupId>
64
            <artifactId>org.gvsig.fmap.control</artifactId>
65
            <scope>compile</scope>
66
        </dependency>
67
        <dependency>
68
            <groupId>org.gvsig</groupId>
69
            <artifactId>org.gvsig.utils</artifactId>
70
            <scope>compile</scope>
71
        </dependency>
72
        <dependency>
73
            <groupId>org.gvsig</groupId>
74
            <artifactId>org.gvsig.metadata.lib.basic.api</artifactId>
75
            <scope>compile</scope>
76
        </dependency>
77
        <dependency>
78
            <groupId>org.gvsig</groupId>
79
            <artifactId>org.gvsig.projection</artifactId>
80
            <scope>compile</scope>
81
        </dependency>
82
        <dependency>
83
            <groupId>org.slf4j</groupId>
84
            <artifactId>slf4j-api</artifactId>
85
            <scope>compile</scope>
86
        </dependency>
87
        <dependency>
88
            <groupId>com.vividsolutions</groupId>
89
            <artifactId>jts</artifactId>
90
            <scope>compile</scope>
91
        </dependency>
92
	</dependencies>
93
	<description>Advanced selection tools: 
94
- select all 
95
- by buffer 
96
- by cicle 
97
- by polilyne
98
</description>
99
	<profiles>
100
		<profile>
101
			<id>gvsig-install</id>
102
			<activation>
103
				<activeByDefault>true</activeByDefault>
104
			</activation>
105
			<properties>
106
				<!--
107
					Default gvSIG installation folder relative to the current workspace
108
				-->
109
				<gvsig.install.dir>${basedir}/../../build/product</gvsig.install.dir>
110
			</properties>
111
		</profile>
112
	</profiles>
113
	<properties>
114
        <package.info.categories>View,Vector</package.info.categories>
115
	</properties>
116
</project>
0 117

  
tags/v2_0_0_Build_2047/extensions/org.gvsig.selectiontools.app/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_2047/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/buildNumber.properties
1
#maven.buildNumber.plugin properties file
2
#Tue May 29 16:41:48 CEST 2012
3
buildNumber=2047
tags/v2_0_0_Build_2047/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/test/resources/README.txt
1
Put into this folder the resources needed by your test classes.
2

  
3
This folder is added to the Tests classpath, so you can load any resources 
4
through the ClassLoader.
5

  
6
By default, in this folder you can find an example of log4j configuration,
7
prepared to log messages through the console, so logging works when you
8
run your tests classes.
0 9

  
tags/v2_0_0_Build_2047/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/test/resources/log4j.xml
1
<?xml version="1.0" encoding="ISO-8859-1" ?>
2
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
3

  
4
<!-- 
5
Log4J configuration file for unit tests execution.
6
 -->
7
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
8

  
9
	<!-- Appender configuration to show logging messages through the console -->
10
	<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
11
		<layout class="org.apache.log4j.PatternLayout">
12
			<param name="ConversionPattern" value="%d{HH:mm:ss,SSS} %-5p [%c{2}.%M()]\n  %m%n" />
13
		</layout>
14
	</appender>
15

  
16
	<!-- 
17
	Activate logging messages of DEBUG level of higher only for the
18
	org.gvsig.tools packages.
19
	You can put full classes names or packages instead, to configure
20
	logging for all the classes and subpackages of the package.
21
	-->
22
	<category name="org.gvsig.tools">
23
		<priority value="DEBUG" />
24
	</category>
25
	<category name="org.gvsig.selectiontools">
26
		<priority value="DEBUG" />
27
	</category>
28

  
29
	<!-- 
30
	By default, show only logging messages of INFO level or higher, 
31
	through the previously configured CONSOLE appender. 
32
	-->
33
	<root>
34
		<priority value="INFO" />
35
		<appender-ref ref="CONSOLE" />
36
	</root>
37
</log4j:configuration>
0 38

  
tags/v2_0_0_Build_2047/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_sr.properties
1
#Translations for language [sr]
2
#Mon Nov 02 08:36:03 CET 2009
3
add_buffer_layers=
4
add_influence_areas_layers=Dodaj lejere bafera.
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=TOC-u dodat lejer sa baferom.
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=<html>Dodaj bafere svakog aktivnog lejera<br> kao novi vektorski lejer.</html>
9
Both=Oba
10
Buffer_cap=Buffer cap
11
Buffer_information=Podaci iz buffer-a
12
Buffer_width=\u0160irina buffer-a
13
bufferWidth_TOOLTIP_HTML_explanation=<html>\u0160irina bafera.</html>
14
configuration=pode\u0161avanje
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=U toku je kreiranje lejera sa baferima.
17
Creating_temp_file=U toku je kreiranje temp datoteke
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=<html>Jedinica udaljenosti.</html>
19
Error=Gre\u0161ka
20
Error_fallo_geoproceso=Gre\u0161ka pri realizaciji geoprocesa
21
Error_preparar_escritura_resultados=Gre\u0161ka u procesu pripreme lejera sa rezultatima
22
extSelectionTools=Ekstenzija Alati za izbor
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_the_temporal_layer=Neuspe\u0161no kreiranje privremenog lejera.
25
Failed_creating_the_temporal_layer=Neuspe\u0161no kreiranje privremenog lejera.
26
Failed_reloading_the_layer=
27
Failed_selecting_geometries=Neuspe\u0161an izbor geometrija.
28
Failed_selecting_geometries_by_circle_topology_exception_explanation=Neuspe\u0161an izbor geometrija na lejeru.\nIzabrana kru\u017ena oblast upisana sa nekom pogre\u0161no definisanom geometrijom, trebalo bi ih pregledati.
29
Failed_selecting_geometries_by_polyline_topology_exception_explanation=Neuspe\u0161an izbor geometrija na lejeru.\nPoli-linija upisana sa nekom pogre\u0161no definisanom geometrijom, trebalo bi ih pregledati.
30
Failed_selecting_geometries_in_layer=Neuspe\u0161an izbor geometrija na lejeru
31
Failed_selecting_layer=Neuspe\u0161an izbor lejera
32
Failed_the_process=Neuspe\u0161an proces.
33
Information=Podaci
34
Inside=Unutra
35
Invalid_width=Pogre\u0161na \u0161irina.
36
Layer_with_buffers_created=
37
Layer_with_buffers_reprojected=
38
Layer_with_influence_areas_created=Lejer sa kreiranim baferima.
39
Layer_with_influence_areas_reprojected=Lejer sa ponovo projektovanim baferima.
40
Layer_with_unsupported_geometries_type=Lejer sa tipom geometrija koje nemaju podr\u0161ku.
41
Line=Linija
42
lineSideLabel_TOOLTIP_HTML_explanation=<html>Geometrje linijskog tipa.</html>
43
Multi_layer_selection_applied_for_influence_area=Izbran multi-lejer za bafer
44
multiLayer_selection=Izbor multi-lejera.
45
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=<html>Izbor geometrja uti\u010de na sve lejere.</html>
46
MultiPoint=Multi-ta\u010dke
47
multiPointSideLabel_TOOLTIP_HTML_explanation=<html>Geometrije tipa multi-ta\u010dke.</html>
48
Ongoing_process_please_wait=Proces u toku, molimo sa\u010dekajte...
49
Options=Opcije
50
Outside=Spoljnji
51
Outside_and_inside=Unutra\u0161nji i spoljnji
52
Percent=Procenat
53
Point=Ta\u010dka
54
pointSideLabel_TOOLTIP_HTML_explanation=<html>Geometrije ta\u010dkastog tipa.</html>
55
Polygon=Poligon
56
polygonSideLabel_TOOLTIP_HTML_explanation=<html>Geometrije tipa poligon.</html>
57
Process_canceled=Proces otkazan.
58
Process_cancelled=Proces otkazan.
59
Process_finished=Proces je zavr\u0161en.
60
Process_finished_wont_be_cancelled=Proces je zavr\u0161en, ne\u0107e biti otkazan.
61
Removed_layer_with_influence_areas_to_TOC=Lejer sa TOC baferima je uklonjen.
62
Round=Zaobljeno
63
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=Izuzetak u vremenu realizacije osve\u017eavanjem glavne komponente po Swing niti
64
seleccion=Izbor
65
select_all=Izaberi sve
66
select_all_info=
67
select_by_buffer=Izaberi na osnovu bafera
68
select_by_buffer_info=<html>Izaberi geometrje aktivnih vektorskih lejera<br> u aktivnom prikazu koji<br> se presecaju sa kreiranim baferom <br> od ranije ozna\u010denih geometrija.</html>
69
select_by_circle=Izaberi po krugu
70
select_by_circle_info=<html>Izaberi geometrije aktivnih vektorskih lejera<br> u aktivnom prikazu koji<br> se presecaju sa ozna\u010denim krugom.</html>
71
select_by_polyline=Izaberi po poli-liniji
72
select_by_polyline_info=<html>Izaberi geometrije aktivnih vektorskih lejera<br> u aktivnom prikazu koji<br> se presecaju sa ozna\u010denom poli-linijom.</html>
73
Selection_by_buffer_process=Proces izbora po baferu
74
Selection_process_finished_succesfully=Uspe\u0161no zavr\u0161en proces izbora.
75
Selection_restored=Obnovljen izbor.
76
Side=Smer
77
sideLabel_TOOLTIP_HTML_explanation=<html>Navedi smer koji \u0107e napraviti izbor bafera prema<br> tipu lejera.</html>
78
Starting_selection_of_layer=Po\u010dinje izbor lejera
79
Starting_selection_process=Po\u010dinje proces izbora
80
Summary_of_the_process_of_selecting_by_buffer=Rezime procesa izbora po baferima
81
There_are_no_geometries_selected=Geometrija nije ozna\u010dena.
82
Tool_unavaliable_with_view_in_geographic_projection=Nije dostupna alatka u prikazima sa geografskim projekcijama.
83
Tools_Select=Izbor alatki
84
Undefined_layer=
85
Unit=Jedinica
86
Vista=Prikaz
87
Warning=Upozorenje
88
Width=\u0160irina
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=Ne\u0107e sa\u010duvati gemetrije u lejeru zato \u0161to je projekcija nekompatibilna.
0 90

  
tags/v2_0_0_Build_2047/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_tr.properties
1
#Translations for language [tr]
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=Hata
20
Error_fallo_geoproceso=Co\u011frafi i\u015flemi uygulamada hata
21
Error_preparar_escritura_resultados=Sonu\u00e7 katman\u0131n\u0131 haz\u0131rlamada hata
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=\u0130\u015flemde hata
33
Information=Bilgi
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=Se\u00e7enekler
50
Outside=
51
Outside_and_inside=
52
Percent=Y\u00fczde
53
Point=
54
pointSideLabel_TOOLTIP_HTML_explanation=
55
Polygon=
56
polygonSideLabel_TOOLTIP_HTML_explanation=
57
Process_canceled=\u0130\u015flem iptal edildi
58
Process_cancelled=
59
Process_finished=\u0130\u015flem tamamland\u0131
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=Se\u00e7im
65
select_all=T\u00fcm\u00fcn\u00fc se\u00e7
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=Ara\u00e7 Se\u00e7im
84
Undefined_layer=
85
Unit=
86
Vista=Pencere
87
Warning=Uyar\u0131
88
Width=
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=
0 90

  
tags/v2_0_0_Build_2047/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_ru.properties
1
#Translations for language [ru]
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=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0438 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0430 \u0433\u0435\u043e\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0438
21
Error_preparar_escritura_resultados=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0438 \u0432\u044b\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u0441\u043b\u043e\u044f
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=\u0412\u044b\u0431\u043e\u0440
65
select_all=\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u0432\u0441\u0435
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=\u041a\u0430\u0440\u0442\u0430
87
Warning=
88
Width=
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=
0 90

  
tags/v2_0_0_Build_2047/extensions/org.gvsig.selectiontools.app/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_2047/extensions/org.gvsig.selectiontools.app/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_2047/extensions/org.gvsig.selectiontools.app/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_2047/extensions/org.gvsig.selectiontools.app/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_2047/extensions/org.gvsig.selectiontools.app/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_2047/extensions/org.gvsig.selectiontools.app/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_2047/extensions/org.gvsig.selectiontools.app/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_2047/extensions/org.gvsig.selectiontools.app/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_2047/extensions/org.gvsig.selectiontools.app/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=
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff