Revision 4071

View differences:

org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.245/org.gvsig.vectorediting.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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
	<modelVersion>4.0.0</modelVersion>
5
	<groupId>org.gvsig</groupId>
6
	<artifactId>org.gvsig.vectorediting.app</artifactId>
7
	<packaging>pom</packaging>
8
	<version>1.0.245</version>
9
	<name>${project.artifactId}</name>
10
	<description>This plugin add to gvSIG a tool to show Vectorediting messages</description>
11
	<parent>
12
		<groupId>org.gvsig</groupId>
13
		<artifactId>org.gvsig.vectorediting</artifactId>
14
		<version>1.0.245</version>
15
	</parent>
16
	<dependencyManagement>
17
		<dependencies>
18
		
19
		</dependencies>
20
	</dependencyManagement>
21

  
22
	<modules>
23
		<module>org.gvsig.vectorediting.app.mainplugin</module>
24
	</modules>
25

  
26
</project>
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.245/org.gvsig.vectorediting.app/maven-howto.rst
1

  
2
==================================
3
Usefull maven "howtos" and FAQs
4
==================================
5

  
6
.. contents::
7

  
8
How to reduce the process of "install" to run as fast as possible.
9
-------------------------------------------------------------------
10

  
11
Can reduce install execution skiping test execution and compilation,
12
javadoc generation, test signature checking, license checking, and 
13
attach sources in jar.
14

  
15
  mvn  -Danimal.sniffer.skip=true -Dmaven.test.skip=true -Dsource.skip=true -DskipTests -Dmaven.javadoc.skip=true install
16

  
17
How to increment the build number of gvSIG plugins
18
----------------------------------------------------
19

  
20
To increase the build number of gvSIG plugins, yo can do:
21

  
22
  mvn -Dincrease-build-number process-sources
23
  
24
How to deploy a package of a gvSIG plugin
25
--------------------------------------------
26

  
27
Yo can deploy the package of a gvSIG plugin with:
28

  
29
  mvn -Ddeploy-package -Duser=USER -Dpassword=PASSWORD install
30

  
31
Notes:
32
- Require that the gvsig.package.info.poolURL property that this set to the correct value.
33
- The process uses WEBDAV to upload the packages, gvspkg and gvspki, and require 
34
  access to write in the location specified by gvsig.package.info.poolURL
35
- If "user" or "password" is not present, the process ask its each time it need.
36
- If folder specified in  gvsig.package.info.poolURL does not exist, the process try to create it.
37
- The process create a file "addon-request.txt" in the target with the information to 
38
  add to the ticket to request the update of the package in the main repository of
39
  packages of gvSIG.
40

  
41
How to skip attach sources in jar from command line
42
------------------------------------------------------
43

  
44
If in the project is enabled by default the generation of jar whith 
45
the sources of the project, you can disable this setting the property
46
"source.skip" to true in the command line::
47

  
48
    mvn -Dsource.skip=true  install
49

  
50
How to skip test compile from command line
51
--------------------------------------------
52

  
53
You can skip the compilation of test setting the propety "maven.test.skip" 
54
to true in the command line::
55

  
56
    mvn -Dmaven.test.skip=true  install
57

  
58

  
59
How to skip test execution from command line
60
----------------------------------------------
61

  
62
You can skip the tests execution setting the propety "skipTests" to true
63
in the command line::
64

  
65
    mvn -DskipTests install
66

  
67
How to skip javadoc generation from command line
68
--------------------------------------------------
69

  
70
You can skip the javadoc generation setting the property
71
"maven.javadoc.skip" to true in the command line::
72

  
73
    mvn -Dmaven.javadoc.skip=true  install
74

  
75
How to skip test signature cheks from command line
76
---------------------------------------------------
77

  
78
You can skip the signature check setting the property
79
"animal.sniffer.skip" to true in the command line::
80

  
81
    mvn -Danimal.sniffer.skip=true install
82

  
83
How to install a project without install submodules
84
----------------------------------------------------------
85

  
86
To install a project with submodules and only install the
87
parent project without submodules use the option "--non-recursive" ::
88

  
89
    mvn --non-recursive install
90

  
91
  
92
How to skip test compilation
93
--------------------------------
94

  
95
To configure a project to don't run the compilation
96
of test you can add to this pom the next configuration of
97
the plugin "maven-compiler-plugin"::
98

  
99
  <build>
100
    <plugins>
101
      ...
102
      <plugin>
103
        <!-- Skip compilation tests -->
104
        <groupId>org.apache.maven.plugins</groupId>
105
        <artifactId>maven-compiler-plugin</artifactId>
106
        <executions>
107
          <execution>
108
            <id>default-testCompile</id>
109
            <phase>process-test-sources</phase>
110
            <goals>
111
              <goal>testCompile</goal>
112
            </goals>
113
            <configuration>
114
              <skip>true</skip>
115
            </configuration>
116
          </execution>
117
        </executions>
118
      </plugin>
119
      ...
120
    </plugins>
121
  </build>
122

  
123
Skip test execution
124
----------------------
125

  
126
To configure a project to don't run the execution
127
of test you can add to this pom the next configuration of
128
the plugin "maven-surefire-plugin"::
129

  
130

  
131
  <build>
132
    <plugins>
133
      ...
134
      <plugin>
135
        <!-- Skip test execution -->
136
        <groupId>org.apache.maven.plugins</groupId>
137
        <artifactId>maven-surefire-plugin</artifactId>
138
        <configuration>
139
          <skipTests>true</skipTests>
140
        </configuration>
141
      </plugin>
142
      ...
143
    </plugins>
144
  </build>
145

  
146
Continue on test failure
147
-----------------------------
148

  
149
You can configure a project to continue on test execution 
150
failure. To do this add to the pom of the project the next 
151
configuration of plugin "maven-surefire-plugin" ::
152

  
153
  <build>
154
    <plugins>
155
      ...
156
      <plugin>
157
        <!-- Continue on test failure -->
158
        <groupId>org.apache.maven.plugins</groupId>
159
        <artifactId>maven-surefire-plugin</artifactId>
160
        <configuration>
161
          <testFailureIgnore>true</testFailureIgnore>
162
        </configuration>
163
      </plugin>
164
      ...
165
    </plugins>
166
  </build>
167

  
168

  
169
Set java compatibility
170
--------------------------
171

  
172
To set the compatibility with a java version  add to the 
173
pom of the project the next configuration of plugin 
174
"maven-compiler-plugin" ::
175

  
176
  <build>
177
    <plugins>
178
      ...
179
      <plugin>
180
          <!-- Set java compatibility -->
181
          <groupId>org.apache.maven.plugins</groupId>
182
          <artifactId>maven-compiler-plugin</artifactId>
183
          <configuration>
184
              <source>1.5</source>
185
              <target>1.5</target>
186
              <encoding>ISO-8859-1</encoding>
187
          </configuration>
188
      </plugin>
189
      ...
190
    </plugins>
191
  </build>
192

  
193
Packaging tests in jar
194
------------------------
195

  
196
Test classes do not packaging in jar by default.
197
To packing add to pom::
198

  
199
  <build>
200
    <plugins>
201
      ...
202
      <plugin>
203
        <!-- Packaging tests in jar -->
204
        <groupId>org.apache.maven.plugins</groupId>
205
        <artifactId>maven-jar-plugin</artifactId>
206
        <executions>
207
          <!-- Generates a jar file only with the test classes -->
208
          <execution>
209
            <goals>
210
              <goal>test-jar</goal>
211
            </goals>
212
            <configuration>
213
              <includes>
214
                <include>**/**</include>
215
              </includes>
216
            </configuration>
217
          </execution>
218
        </executions>
219
      </plugin> 
220
      ...
221
    </plugins>
222
  </build>
223

  
224
How to set a dependency with tests jar
225
-----------------------------------------
226

  
227
You can set a dependency with a test jar adding to
228
the declaration of the dependency the scope of
229
test and the type of "test-jar"::
230

  
231
  <dependency>
232
      <groupId>...</groupId>
233
      <artifactId>...</artifactId>
234
      <type>test-jar</type>
235
      <scope>test</scope>
236
  </dependency>
237

  
238
How use ant in maven
239
-------------------------
240

  
241
You can use ant embed in the pom of you project.
242
To do this use::
243

  
244
  <plugin>
245
    <artifactId>maven-antrun-plugin</artifactId>
246
    <version>1.7</version>
247
    <executions>
248
      <execution>
249
        <phase>generate-sources</phase>
250
        <configuration>
251
          <target>
252
            <echo>Hello world!</echo>
253
          </target>
254
        </configuration>
255
        <goals>
256
          <goal>run</goal>
257
        </goals>
258
      </execution>
259
    </executions>
260
  </plugin>
261

  
262
Fail when execute "mvn deploy" with "No connector available"
263
-------------------------------------------------------------
264

  
265
When execute a "mvn deploy" fail with the error::
266

  
267
  [INFO] ------------------------------------------------------------------------
268
  [ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy 
269
    (default-deploy) on project org.gvsig.desktop: Failed to deploy artifacts/metadata: 
270
    No connector available to access repository gvsig-repository (dav:https://devel.gvsig.org/m2repo/j2se) 
271
    of type default using the available factories WagonRepositoryConnectorFactory -> [Help 1]
272
  [ERROR] 
273
  
274
This happens to be configured the webdav wagon as an extension in the section "build"::
275

  
276
  ...
277
  <build>
278
    <extensions>
279
        <extension>
280
            <groupId>org.apache.maven.wagon</groupId>
281
            <artifactId>wagon-webdav-jackrabbit</artifactId>
282
            <version>1.0-beta-7</version>
283
        </extension>
284
    </extensions>
285
  ...
286

  
287
Fail when execute "mvn release: prepare" with "svn command failed... Could not authenticate"
288
------------------------------------------------------------------------------------------------
289

  
290
When running "mvn release: prepare" updates poms, compiles, and then
291
fails with the following error ::
292

  
293
  [INFO] ------------------------------------------------------------------------
294
  [ERROR] Failed to execute goal org.apache.maven.plugins:maven-release-plugin:2.1:prepare 
295
    (default-cli) on project org.gvsig.desktop: Unable to commit files
296
  [ERROR] Provider message:
297
  [ERROR] The svn command failed.
298
  [ERROR] Command output:
299
  [ERROR] svn: Commit failed (details follow):
300
  [ERROR] svn: MKACTIVITY of '/svn/gvsig-desktop/!svn/act/931a27bc-57e8-45d9-adcd-5a2cf54a7045': 
301
    authorization failed: Could not authenticate to server: rejected Basic challenge (https://devel.gvsig.org)
302
  [ERROR] -> [Help 1]
303
  [ERROR] 
304
  [ERROR]
305

  
306
Apparently maven in linux system use the svn of system and if you're not
307
authenticated when trying to access to the repository, svn fails.
308

  
309
This is solved by executing a commit from the command line on
310
some file of the project (only if you have not enabled the option 
311
"store-passwords = no" in $ HOME / .subversion / config). For example, you 
312
can add or remove at the end of "pom.xml" a blank line and then run 
313
from the command line ::
314

  
315
  svn ci -m "" pom.xml
316
  
317
Another option that works on Windows in declaring the user and password in the command:
318

  
319
mvn release:prepare -Dusername=[username] -Dpassword=[password]
320

  
321

  
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.245/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/buildNumber.properties
1
#Mon Jul 17 01:09:33 CEST 2023
2
buildNumber=256
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.245/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/test/resources/README.txt
1
====
2

  
3
    gvSIG. Desktop Geographic Information System.
4

  
5
    Copyright (C) 2007-2013 gvSIG Association.
6

  
7
    This program is free software; you can redistribute it and/or
8
    modify it under the terms of the GNU General Public License
9
    as published by the Free Software Foundation; either version 3
10
    of the License, or (at your option) any later version.
11

  
12
    This program is distributed in the hope that it will be useful,
13
    but WITHOUT ANY WARRANTY; without even the implied warranty of
14
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
    GNU General Public License for more details.
16

  
17
    You should have received a copy of the GNU General Public License
18
    along with this program; if not, write to the Free Software
19
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20
    MA  02110-1301, USA.
21

  
22
    For any additional information, do not hesitate to contact us
23
    at info AT gvsig.com, or visit our website www.gvsig.com.
24

  
25
====
26

  
27
Put into this folder the resources needed by your test classes.
28

  
29
This folder is added to the Tests classpath, so you can load any resources 
30
through the ClassLoader.
31

  
32
By default, in this folder you can find an example of log4j configuration,
33
prepared to log messages through the console, so logging works when you
34
run your tests classes.
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.245/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/test/resources/log4j.xml
1
<?xml version="1.0" encoding="ISO-8859-1" ?>
2
<!--
3

  
4
    gvSIG. Desktop Geographic Information System.
5

  
6
    Copyright (C) 2007-2012 gvSIG Association.
7

  
8
    This program is free software; you can redistribute it and/or
9
    modify it under the terms of the GNU General Public License
10
    as published by the Free Software Foundation; either version 2
11
    of the License, or (at your option) any later version.
12

  
13
    This program is distributed in the hope that it will be useful,
14
    but WITHOUT ANY WARRANTY; without even the implied warranty of
15
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
    GNU General Public License for more details.
17

  
18
    You should have received a copy of the GNU General Public License
19
    along with this program; if not, write to the Free Software
20
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
21
    MA  02110-1301, USA.
22

  
23
    For any additional information, do not hesitate to contact us
24
    at info AT gvsig.com, or visit our website www.gvsig.com.
25

  
26
-->
27
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
28

  
29
<!-- 
30
Log4J configuration file for unit tests execution.
31
 -->
32
<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/">
33

  
34
	<!-- Appender configuration to show logging messages through the console -->
35
	<appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
36
		<layout class="org.apache.log4j.PatternLayout">
37
			<param name="ConversionPattern" value="%d{HH:mm:ss,SSS} %-5p [%c{2}.%M()]\n  %m%n" />
38
		</layout>
39
	</appender>
40

  
41
	<!-- 
42
	Activate logging messages of DEBUG level of higher only for the
43
	org.gvsig.tools packages.
44
	You can put full classes names or packages instead, to configure
45
	logging for all the classes and subpackages of the package.
46
	-->
47
	<category name="org.gvsig.tools">
48
		<priority value="DEBUG" />
49
	</category>
50
	<category name="org.gvsig.vectorediting">
51
		<priority value="DEBUG" />
52
	</category>
53

  
54
	<!-- 
55
	By default, show only logging messages of INFO level or higher, 
56
	through the previously configured CONSOLE appender. 
57
	-->
58
	<root>
59
		<priority value="INFO" />
60
		<appender-ref ref="CONSOLE" />
61
	</root>
62
</log4j:configuration>
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.245/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/main/resources-plugin/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<!-- gvSIG. Desktop Geographic Information System. Copyright (C) 2007-2013 gvSIG
3
  Association. This program is free software; you can redistribute it and/or modify
4
  it under the terms of the GNU General Public License as published by the Free Software
5
  Foundation; either version 3 of the License, or (at your option) any later version.
6
  This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
7
  without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
8
  PURPOSE. See the GNU General Public License for more details. You should have received
9
  a copy of the GNU General Public License along with this program; if not, write to
10
  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
11
  USA. For any additional information, do not hesitate to contact us at info AT gvsig.com,
12
  or visit our website www.gvsig.com. -->
13
<plugin-config>
14
  <depends plugin-name="org.gvsig.app.mainplugin" />
15
  <depends plugin-name="org.gvsig.exportto.app.mainplugin" />
16
  <resourceBundle name="text" />
17
  <libraries library-dir="lib" />
18
  <extensions>
19
    <extension class-name="org.gvsig.vectorediting.app.mainplugin.EditingExtension"
20
      description="" active="true" priority="1">
21

  
22
      <action name="start-editing" label="start_editing" tooltip="start_editing"
23
        position="600800000" action-command="start-editing" icon="vector-editing"
24
        accelerator="" />
25
      
26
      <action name="end-editing" label="end_editing" tooltip="end_editing"
27
        position="600800000" action-command="end-editing" icon="vector-editing"
28
        accelerator="" />
29
      
30
      <action 
31
          name="vector-editing-tooloptions" 
32
          label="_Show_editing_tool_options" 
33
          tooltip="_Show_editing_tool_options"
34
          position="608900000" 
35
          action-command="vector-editing-tooloptions" 
36
          icon="vector-editing-tooloptions"
37
          accelerator="" 
38
      />
39
      
40
      <action 
41
          name="vector-editing-ortomode-enable" 
42
          label="_Enable_orto_mode" 
43
          tooltip="_Enable_orto_mode"
44
          position="209000000" 
45
          action-command="vector-editing-ortomode-enable" 
46
          icon="vector-editing-ortomode-enable"
47
          accelerator="" 
48
      /> <!-- accelerator="F8" -->
49
      
50
      <action 
51
          name="vector-editing-ortomode-disable" 
52
          label="_Disable_orto_mode" 
53
          tooltip="_Disable_orto_mode"
54
          position="209000000" 
55
          action-command="vector-editing-ortomode-disable" 
56
          icon="vector-editing-ortomode-disable"
57
          accelerator="" 
58
      /> <!-- accelerator="F8" -->
59
      
60
      
61
      
62
           
63
      <menu text="Layer/start_editing" name="start-editing" />
64
      <menu text="Layer/end_editing" name="end-editing" />
65
      <menu text="Layer/_Editing_tool_options" name="vector-editing-tooloptions" />
66
      <menu text="Edit/_Enable_orto_mode" name="vector-editing-ortomode-enable" />
67
      <menu text="Edit/_Disable_orto_mode" name="vector-editing-ortomode-disable" />
68

  
69
      <tool-bar name="vector_editing" position="4000">
70
        <action-tool name="start-editing" />
71
        <action-tool name="end-editing" />
72
        <action-tool name="vector-editing-tooloptions" />
73
      </tool-bar>
74

  
75
    </extension>
76

  
77
    <extension class-name="org.gvsig.vectorediting.app.mainplugin.ServiceExtension"
78
      description="" active="true" priority="1">
79

  
80
      <action name="remove" label="remove_selected_geometries" tooltip="remove_selected_geometries"
81
        action-command="remove" icon="remove" position="601002000"
82
        accelerator="delete" />
83
        <!-- accelerator="" /> -->
84

  
85
      <action name="insert-point" label="insert_point" tooltip="insert_point"
86
        action-command="insert-point" icon="insert-point" position="601002010"
87
        accelerator="" />
88

  
89
      <action name="insert-multipoint" label="insert_multipoint" tooltip="insert_multipoint"
90
        action-command="insert-multipoint" icon="insert-multipoint" position="601002025"
91
        accelerator="" />
92

  
93
      <action name="insert-line" label="insert_line" tooltip="insert_line"
94
        position="601002050" action-command="insert-line" icon="insert-line"
95
        accelerator="" />
96

  
97
      <action name="insert-arc" label="insert_arc" tooltip="insert_arc"
98
        position="601002060" action-command="insert-arc" icon="insert-arc"
99
        accelerator="" />
100

  
101
      <action name="insert-arc-by-center" label="insert_arc_by_center" tooltip="insert_arc_by_center"
102
        position="601002070" action-command="insert-arc-by-center" icon="insert-arc-by-center"
103
        accelerator="" />
104

  
105
      <action name="insert-arc-three-points" label="insert_arc_three_points" tooltip="insert_arc_three_points"
106
        position="601002080" action-command="insert-arc-three-points" icon="insert-arc-three-points"
107
        accelerator="" />
108

  
109
      <action name="insert-circle-cr" label="insert_circle_cr" tooltip="insert_circle_cr"
110
        position="601002100" action-command="insert-circle-cr" icon="insert-circle-cr"
111
        accelerator="" />
112

  
113
      <action name="insert-circle-cd" label="insert_circle_cd" tooltip="insert_circle_cd"
114
        position="601002110" action-command="insert-circle-cd" icon="insert-circle-cd"
115
        accelerator="" />
116

  
117
      <action name="insert-circle-2tg1p" label="insert_circle_2tg1p" tooltip="insert_circle_2tg1p"
118
        position="601002120" action-command="insert-circle-2tg1p" icon="insert-circle-2tg1p"
119
        accelerator="" />
120

  
121
      <action name="insert-circle-tantanradius" label="insert_circle_tantanradius" tooltip="insert_circle_tantanradius"
122
        position="601002130" action-command="insert-circle-tantanradius" icon="insert-circle-tantanradius"
123
        accelerator="" />
124

  
125
      <action name="insert-circumference-cr" label="insert_circumference_cr" tooltip="insert_circumference_cr" 
126
        position="601002101" action-command="insert-circumference-cr"
127
        icon="insert-circumference-cr" accelerator="" />
128

  
129
      <action name="insert-circumference-cd" label="insert_circumference_cd" tooltip="insert_circumference_cd" 
130
        position="601002111" action-command="insert-circumference-cd"
131
        icon="insert-circumference-cd" accelerator="" />
132

  
133
      <action name="insert-circumference-2tg1p" label="insert_circumference_2tg1p" tooltip="insert_circumference_2tg1p"
134
        position="601002121" action-command="insert-circumference-2tg1p" icon="insert-circumference-2tg1p"
135
        accelerator="" />
136

  
137
      <action name="insert-circumference-tantanradius" label="insert_circumference_tantanradius" tooltip="insert_circumference_tantanradius"
138
        position="601002131" action-command="insert-circumference-tantanradius" icon="insert-circumference-tantanradius"
139
        accelerator="" />
140

  
141
      <action name="insert-circle-3p" label="insert_circle_3p" tooltip="insert_circle_3p"
142
        position="601002135" action-command="insert-circle-3p" icon="insert-circle-3p"
143
        accelerator="" />
144

  
145
      <action name="insert-circumference-3p" label="insert_circumference_3p" tooltip="insert_circumference_3p" 
146
        position="601002136" action-command="insert-circumference-3p"
147
        icon="insert-circumference-3p" accelerator="" />
148

  
149
      <action name="insert-circle-2p" label="insert_circle_2p" tooltip="insert_circle_2p"
150
        position="601002137" action-command="insert-circle-2p" icon="insert-circle-2p"
151
        accelerator="" />
152

  
153
      <action name="insert-circumference-2p" label="insert_circumference_2p" tooltip="insert_circumference_2p" 
154
        position="601002138" action-command="insert-circumference-2p"
155
        icon="insert-circumference-2p" accelerator="" />
156

  
157
      <action name="insert-ellipse" label="insert_ellipse" tooltip="insert_ellipse"
158
        position="601002150" action-command="insert-ellipse" icon="insert-ellipse"
159
        accelerator="" />
160

  
161
        <action name="insert-ellipse-center-axes" label="insert_ellipse_center_axes" tooltip="insert_ellipse_center_axes"
162
        position="601002160" action-command="insert-ellipse-center-axes" icon="insert-ellipse-center-axes"
163
        accelerator="" />
164

  
165
      <action name="insert-filled-ellipse" label="insert_filled_ellipse"
166
        tooltip="insert_filled_ellipse" position="601002160" action-command="insert-filled-ellipse"
167
        icon="insert-filled-ellipse" accelerator="" />
168

  
169
      <action name="insert-filled-ellipse-center-axes" label="insert_filled_ellipse_center_axes"
170
        tooltip="insert_filled_ellipse_center_axes" position="601002170" action-command="insert-filled-ellipse-center-axes"
171
        icon="insert-filled-ellipse-center-axes" accelerator="" />
172

  
173
      <action name="insert-polygon" label="insert_polygon" tooltip="insert_polygon"
174
        position="601002200" action-command="insert-polygon" icon="insert-polygon"
175
        accelerator="" />
176

  
177
      <action name="insert-polyline" label="insert_polyline" tooltip="insert_polyline"
178
        position="601002201" action-command="insert-polyline" icon="insert-polyline"
179
        accelerator="" />
180

  
181
      <action name="insert-filled-regular-polygon" label="insert_filled_regular_polygon"
182
        tooltip="insert_filled_regular_polygon" position="601002300"
183
        action-command="insert-filled-regular-polygon" icon="insert-filled-regular-polygon"
184
        accelerator="" />
185

  
186
      <action name="insert-regular-polygon" label="insert_regular_polygon"
187
        tooltip="insert_regular_polygon" position="601002301" action-command="insert-regular-polygon"
188
        icon="insert-regular-polygon" accelerator="" />
189

  
190
      <action name="insert-filled-rectangle" label="insert_filled_rectangle"
191
        tooltip="insert_filled_rectangle" position="601002350" action-command="insert-filled-rectangle"
192
        icon="insert-filled-rectangle" accelerator="" />
193

  
194
      <action name="insert-rectangle" label="insert_rectangle" tooltip="insert_rectangle"
195
        position="601002351" action-command="insert-rectangle" icon="insert-rectangle"
196
        accelerator="" />
197

  
198
      <action name="insert-filled-spline" label="insert_filled_spline"
199
        tooltip="insert_filled_spline" position="601002370" action-command="insert-filled-spline"
200
        icon="insert-filled-spline" accelerator="" />
201

  
202
      <action name="insert-spline" label="insert_spline" tooltip="insert_spline"
203
        position="601002371" action-command="insert-spline" icon="insert-spline"
204
        accelerator="" />
205

  
206
      <action name="modify-internal-polygon" label="modify_internal_polygon"
207
        tooltip="modify_internal_polygon" position="601002500" action-command="modify-internal-polygon"
208
        icon="modify-internal-polygon" accelerator="" />
209

  
210
      <action name="modify-explode-geometry" label="modify_explode_geometry"
211
        tooltip="modify_explode_geometry" position="601002600" action-command="modify-explode-geometry"
212
        icon="modify-explode-geometry" accelerator="" />
213

  
214
      <action name="modify-move" label="modify_move" tooltip="modify_move"
215
        position="601002700" action-command="modify-move" icon="modify-move"
216
        accelerator="" />
217

  
218
      <action name="modify-rotate" label="modify_rotate" tooltip="modify_rotate"
219
        position="601002800" action-command="modify-rotate" icon="modify-rotate"
220
        accelerator="" />
221

  
222
      <action name="modify-duplicate" label="modify_duplicate" tooltip="modify_duplicate"
223
        position="601002900" action-command="modify-duplicate" icon="modify-duplicate"
224
        accelerator="" />
225

  
226
      <action name="modify-measure" label="modify_measure" tooltip="modify_measure"
227
        position="601002910" action-command="modify-measure" icon="modify-measure"
228
        accelerator="" />
229

  
230
      <action name="modify-divide" label="modify_divide" tooltip="modify_divide"
231
        position="601002920" action-command="modify-divide" icon="modify-divide"
232
        accelerator="" />
233

  
234
      <action name="modify-paste-from-clipboard" label="_Modify_paste_from_clipboard" tooltip="_Modify_paste_from_clipboard"
235
        position="601105100" action-command="modify-paste-from-clipboard" icon="modify-paste-from-clipboard"
236
        accelerator="" />
237

  
238
      <action name="modify-split" label="modify_split" tooltip="modify_split"
239
        position="601003000" action-command="modify-split" icon="modify-split"
240
        accelerator="" />
241

  
242
      <action name="modify-split-line" label="modify_split_line" tooltip="modify_split_line"
243
        position="601003050" action-command="modify-split-line" icon="modify-split-line"
244
        accelerator="" />
245

  
246
      <action name="modify-scale" label="modify_scale" tooltip="modify_scale"
247
        position="601003100" action-command="modify-scale" icon="modify-scale"
248
        accelerator="" />
249

  
250
      <action name="modify-simplify" label="modify_simplify" tooltip="modify_simplify"
251
        position="601003200" action-command="modify-simplify" icon="modify-simplify"
252
        accelerator="" />
253

  
254
      <action name="modify-join" label="modify_join" tooltip="modify_join"
255
        position="601003300" action-command="modify-join" icon="modify-join"
256
        accelerator="" />
257

  
258
      <action name="modify-combine" label="modify_combine" tooltip="modify_combine"
259
        position="601003350" action-command="modify-combine" icon="modify-combine"
260
        accelerator="" />
261

  
262
      <action name="insert-autopolygon" label="insert_autopolygon"
263
        tooltip="insert_autopolygon" position="601003400" action-command="insert-autopolygon"
264
        icon="insert-autopolygon" accelerator="" />
265

  
266
      <action name="modify-stretch" label="modify_stretch" tooltip="modify_stretch"
267
        position="601003500" action-command="modify-stretch" icon="modify-stretch"
268
        accelerator="" />
269

  
270
      <action name="modify-extend-line" label="modify_extend_line"
271
        tooltip="modify_extend_line" position="601003600" action-command="modify-extend-line"
272
        icon="modify-extend-line" accelerator="" />
273

  
274
      <action name="modify-trim-line" label="modify_trim_lines_by_cutting_edges" tooltip="modify_trim_lines_by_cutting_edges"
275
        position="601003700" action-command="modify-trim-line" icon="modify-trim-line"
276
        accelerator="" />
277

  
278
      <action name="modify-trim-polygon" label="modify_trim_polygons" tooltip="modify_trim_polygons"
279
        position="601003800" action-command="modify-trim-polygon" icon="modify-trim-polygon"
280
        accelerator="" />
281

  
282
      <action name="modify-smooth-line" label="modify_smooth_line"
283
        tooltip="modify_smooth_line" position="601003800" action-command="modify-smooth-line"
284
        icon="modify-smooth-line" accelerator="" />
285

  
286
      <action name="modify-edit-vertex" label="modify_edit_vertex"
287
        tooltip="modify_edit_vertex" position="601003900" action-command="modify-edit-vertex"
288
        icon="modify-edit-vertex" accelerator="" />
289

  
290
      <action name="modify-chamfer" label="modify_chamfer"
291
        tooltip="modify_chamfer" position="601003950" action-command="modify-chamfer"
292
        icon="modify-chamfer" accelerator="" />
293

  
294
      <action name="modify-chamfer-by-length-and-angle" label="modify_chamfer_by_length_and_angle"
295
        tooltip="modify_chamfer_by_length_and_angle" position="601003960" action-command="modify-chamfer-by-length-and-angle"
296
        icon="modify-chamfer-by-length-and-angle" accelerator="" />
297

  
298
      <action name="modify-fix-chamfer-by-length-and-angle" label="modify_fix_chamfer_by_length_and_angle"
299
        tooltip="modify_fix_chamfer_by_length_and_angle" position="601003970" action-command="modify-fix-chamfer-by-length-and-angle"
300
        icon="modify-fix-chamfer-by-length-and-angle" accelerator="" />
301

  
302
      <action name="modify-parabolicfillet" label="modify_parabolicfillet"
303
        tooltip="modify_parabolicfillet" position="601003980" action-command="modify-parabolicfillet"
304
        icon="modify-parabolicfillet" accelerator="" />
305

  
306
      <action name="insert-rectangular-matrix" label="insert_rectangular_matrix"
307
        tooltip="insert_rectangular_matrix" position="601004000" action-command="insert-rectangular-matrix"
308
        icon="insert-rectangular-matrix" accelerator="" />
309

  
310
      <action name="insert-polar-matrix" label="insert_polar_matrix"
311
        tooltip="insert_polar_matrix" position="601004100" action-command="insert-polar-matrix"
312
        icon="insert-polar-matrix" accelerator="" />
313

  
314
      <action name="modify-convert-to-polyline" label="modify_convert_to_polyline"
315
        tooltip="modify_convert_to_polyline" position="601004200" action-command="modify-convert-to-polyline"
316
        icon="modify-convert-to-polyline" accelerator="" />
317

  
318
      <action name="modify-reverse-direction" label="modify_reverse_direction"
319
        tooltip="modify_reverse_direction" position="601004300" action-command="modify-reverse-direction"
320
        icon="modify-reverse-direction" accelerator="" />
321

  
322
      <action name="modify-align-edges" label="modify_align_edges"
323
        tooltip="modify_align_edges" position="601004400" action-command="modify-align-edges"
324
        icon="modify-align-edges" accelerator="" />
325

  
326
      <menu text="Layer/Remove/remove_selected_geometries" name="remove" />
327
      <menu text="Layer/Insert/insert_point" name="insert-point" />
328
      <menu text="Layer/Insert/insert_multipoint" name="insert-multipoint" />
329
      <menu text="Layer/Insert/insert_line" name="insert-line" />
330
      <menu text="Layer/Insert/insert_arc" name="insert-arc" />
331
      <menu text="Layer/Insert/insert_arc_by_center" name="insert-arc-by-center" />
332
      <menu text="Layer/Insert/insert_arc_three_points" name="insert-arc-three-points" />
333
      <menu text="Layer/Insert/insert_circle_cr" name="insert-circle-cr" />
334
      <menu text="Layer/Insert/insert_circumference_cr" name="insert-circumference-cr" />
335
      <menu text="Layer/Insert/insert_circle_cd" name="insert-circle-cd" />
336
      <menu text="Layer/Insert/insert_circumference_cd" name="insert-circumference-cd" />
337
      <menu text="Layer/Insert/insert_circle_3p" name="insert-circle-3p" />
338
      <menu text="Layer/Insert/insert_circumference_3p" name="insert-circumference-3p" />
339
      <menu text="Layer/Insert/insert_circle_2p" name="insert-circle-2p" />
340
      <menu text="Layer/Insert/insert_circumference_2p" name="insert-circumference-2p" />
341
      <menu text="Layer/Insert/insert_circle_2tg1p" name="insert-circle-2tg1p" />
342
      <menu text="Layer/Insert/insert_circumference_2tg1p" name="insert-circumference-2tg1p" />
343
      <menu text="Layer/Insert/insert_circle_tantanradius" name="insert-circle-tantanradius" />
344
      <menu text="Layer/Insert/insert_circumference_tantanradius" name="insert-circumference-tantanradius" />
345
      <menu text="Layer/Insert/insert_ellipse" name="insert-ellipse" />
346
      <menu text="Layer/Insert/insert_filled_ellipse" name="insert-filled-ellipse" />
347
      <menu text="Layer/Insert/insert_ellipse_center_axes" name="insert-ellipse-center-axes" />
348
      <menu text="Layer/Insert/insert_filled_ellipse_center_axes" name="insert-filled-ellipse-center-axes" />
349
      <menu text="Layer/Insert/insert_polyline" name="insert-polyline" />
350
      <menu text="Layer/Insert/insert_polygon" name="insert-polygon" />
351
      <menu text="Layer/Insert/insert_regular_polygon" name="insert-regular-polygon" />
352
      <menu text="Layer/Insert/insert_filled_regular_polygon" name="insert-filled-regular-polygon" />
353
      <menu text="Layer/Insert/insert_rectangle" name="insert-rectangle" />
354
      <menu text="Layer/Insert/insert_filled_rectangle" name="insert-filled-rectangle" />
355
      <menu text="Layer/Insert/insert_spline" name="insert-spline" />
356
      <menu text="Layer/Insert/insert_filled_spline" name="insert-filled-spline" />
357
      <menu text="Layer/Insert/insert_rectangular_matrix" name="insert-rectangular-matrix" />
358
      <menu text="Layer/Insert/insert_polar_matrix" name="insert-polar-matrix" />
359
      <menu text="Layer/Insert/insert_autopolygon" name="insert-autopolygon" />
360
      <menu text="Layer/Modify/modify_internal_polygon" name="modify-internal-polygon" />
361
      <menu text="Layer/Modify/modify_explode_geometry" name="modify-explode-geometry" />
362
      <menu text="Layer/Modify/modify_move" name="modify-move" />
363
      <menu text="Layer/Modify/modify_rotate" name="modify-rotate" />
364
      <menu text="Layer/Modify/modify_duplicate" name="modify-duplicate" />
365
      <menu text="Layer/Modify/modify_measure" name="modify-measure" />
366
      <menu text="Layer/Modify/modify_divide" name="modify-divide" />
367
      <menu text="Layer/Modify/_Modify_paste_from_clipboard" name="modify-paste-from-clipboard" />
368
      <menu text="Layer/Modify/modify_split_line" name="modify-split-line" />
369
      <menu text="Layer/Modify/modify_split" name="modify-split" />
370
      <menu text="Layer/Modify/modify_scale" name="modify-scale" />
371
      <menu text="Layer/Modify/modify_simplify" name="modify-simplify" />
372
      <menu text="Layer/Modify/modify_join" name="modify-join" />
373
      <menu text="Layer/Modify/modify_combine" name="modify-combine" />
374
      <menu text="Layer/Modify/modify_stretch" name="modify-stretch" />
375
      <menu text="Layer/Modify/modify_extend_line" name="modify-extend-line" />
376
      <menu text="Layer/Modify/modify_trim_lines_by_cutting_edges" name="modify-trim-line" />
377
      <menu text="Layer/Modify/modify_trim_polygons" name="modify-trim-polygon" />
378
      <menu text="Layer/Modify/modify_smooth_line" name="modify-smooth-line" />
379
      <menu text="Layer/Modify/modify_edit_vertex" name="modify-edit-vertex" />
380
      <menu text="Layer/Modify/modify_chamfer" name="modify-chamfer" />
381
      <menu text="Layer/Modify/modify_chamfer" name="modify-chamfer-by-length-and-angle" />
382
      <menu text="Layer/Modify/modify_chamfer" name="modify-fix-chamfer-by-length-and-angle" />
383
      <menu text="Layer/Modify/modify_parabolicfillet" name="modify-parabolicfillet" />
384
      <menu text="Layer/Modify/modify_convert_to_polyline" name="modify-convert-to-polyline" />
385
      <menu text="Layer/Modify/modify_reverse_direction" name="modify-reverse-direction" />
386
      <menu text="Layer/Modify/modify_align_edges" name="modify-align-edges" />
387

  
388
      <tool-bar name="vector_editing" position="4010">
389
        <selectable-tool name="remove" />
390
        <selectable-tool name="insert-point" />
391
        <selectable-tool name="insert-multipoint" />
392
        <selectable-tool name="insert-line" />
393
        <selectable-tool name="insert-arc" dropdowngroup="arc" />
394
        <selectable-tool name="insert-arc-by-center" dropdowngroup="arc" />
395
        <selectable-tool name="insert-arc-three-points" dropdowngroup="arc" />
396
        <selectable-tool name="insert-circle-cr" dropdowngroup="circle" />
397
        <selectable-tool name="insert-circumference-cr" dropdowngroup="circle" />
398
        <selectable-tool name="insert-circle-cd" dropdowngroup="circle" />
399
        <selectable-tool name="insert-circumference-cd" dropdowngroup="circle" />
400
        <selectable-tool name="insert-circle-2tg1p" dropdowngroup="circle" />
401
        <selectable-tool name="insert-circumference-2tg1p" dropdowngroup="circle" />
402
        <selectable-tool name="insert-circle-tantanradius" dropdowngroup="circle" />
403
        <selectable-tool name="insert-circumference-tantanradius" dropdowngroup="circle" />
404
        <selectable-tool name="insert-circle-3p" dropdowngroup="circle" />
405
        <selectable-tool name="insert-circumference-3p" dropdowngroup="circle" />
406
        <selectable-tool name="insert-circle-2p" dropdowngroup="circle" />
407
        <selectable-tool name="insert-circumference-2p" dropdowngroup="circle" />
408
        <selectable-tool name="insert-ellipse" dropdowngroup="ellipse" />
409
        <selectable-tool name="insert-filled-ellipse" dropdowngroup="ellipse" />
410
        <selectable-tool name="insert-ellipse-center-axes" dropdowngroup="ellipse" />
411
        <selectable-tool name="insert-filled-ellipse-center-axes" dropdowngroup="ellipse" />
412
        <selectable-tool name="insert-polyline" dropdowngroup="polygon"/>
413
        <selectable-tool name="insert-polygon" dropdowngroup="polygon"/>
414
        <selectable-tool name="insert-regular-polygon" dropdowngroup="regularpolygon"/>
415
        <selectable-tool name="insert-filled-regular-polygon" dropdowngroup="regularpolygon"/>
416
        <selectable-tool name="insert-rectangle" dropdowngroup="rectangle"/>
417
        <selectable-tool name="insert-filled-rectangle" dropdowngroup="rectangle"/>
418
        <selectable-tool name="insert-filled-spline" dropdowngroup="spline"/>
419
        <selectable-tool name="insert-spline" dropdowngroup="spline"/>
420
        <selectable-tool name="insert-autopolygon" />
421
        <selectable-tool name="insert-rectangular-matrix" dropdowngroup="matrix" />
422
        <selectable-tool name="insert-polar-matrix" dropdowngroup="matrix" />
423
      </tool-bar>
424

  
425

  
426
      <tool-bar name="vector_editing_modify1" position="4020">
427
        <selectable-tool name="modify-move" />
428
        <selectable-tool name="modify-rotate" />
429
        <selectable-tool name="modify-duplicate" />
430
        <selectable-tool name="modify-scale" />
431
        <selectable-tool name="modify-stretch" />
432
        <selectable-tool name="modify-edit-vertex" />
433
        <selectable-tool name="modify-align-edges" />
434
        <selectable-tool name="modify-reverse-direction" />
435
      </tool-bar>
436

  
437
      <tool-bar name="vector_editing_modify2" position="4030">
438
        <selectable-tool name="modify-internal-polygon" />
439
        <selectable-tool name="modify-explode-geometry" />
440
        <selectable-tool name="modify-measure" dropdowngroup="divide"/>
441
        <selectable-tool name="modify-divide" dropdowngroup="divide"/>
442
        <selectable-tool name="modify-split" dropdowngroup="split"/>
443
        <selectable-tool name="modify-split-line" dropdowngroup="split"/>
444
        <selectable-tool name="modify-simplify" />
445
        <selectable-tool name="modify-join" />
446
        <selectable-tool name="modify-combine" />
447
        <selectable-tool name="modify-extend-line" />
448
        <selectable-tool name="modify-trim-line" dropdowngroup="trim"/>
449
        <selectable-tool name="modify-trim-polygon" dropdowngroup="trim"/>
450
        <selectable-tool name="modify-smooth-line" />
451
        <selectable-tool name="modify-chamfer" dropdowngroup="chamfer" />
452
        <selectable-tool name="modify-chamfer-by-length-and-angle" dropdowngroup="chamfer" />
453
        <selectable-tool name="modify-fix-chamfer-by-length-and-angle" dropdowngroup="chamfer" />
454
        <selectable-tool name="modify-parabolicfillet" dropdowngroup="chamfer" />
455
        <selectable-tool name="modify-convert-to-polyline" />
456
      </tool-bar>
457

  
458

  
459
<!--
460
      <tool-bar name="vector_editing" position="4000">
461
        <selectable-tool name="modify-internal-polygon" />
462
        <selectable-tool name="modify-explode-geometry" />
463
        <selectable-tool name="modify-move" />
464
        <selectable-tool name="modify-rotate" />
465
        <selectable-tool name="modify-duplicate" />
466
        <selectable-tool name="modify-measure" />
467
        <selectable-tool name="modify-divide" />
468
        <selectable-tool name="modify-split" />
469
        <selectable-tool name="modify-split-line" />
470
        <selectable-tool name="modify-scale" />
471
        <selectable-tool name="modify-simplify" />
472
        <selectable-tool name="insert-autopolygon" />
473
        <selectable-tool name="modify-join" />
474
        <selectable-tool name="modify-combine" />
475
        <selectable-tool name="modify-stretch" />
476
        <selectable-tool name="modify-extend-line" />
477
        <selectable-tool name="modify-trim-line" />
478
        <selectable-tool name="modify-trim-polygon" />
479
        <selectable-tool name="modify-smooth-line" />
480
        <selectable-tool name="insert-rectangular-matrix" dropdowngroup="matrix" />
481
        <selectable-tool name="insert-polar-matrix" dropdowngroup="matrix" />
482
        <selectable-tool name="modify-edit-vertex" />
483
        <selectable-tool name="modify-chamfer" />
484
        <selectable-tool name="modify-chamfer-by-length-and-angle" />
485
        <selectable-tool name="modify-fix-chamfer-by-length-and-angle" />
486
        <selectable-tool name="modify-parabolicfillet" />
487
        <selectable-tool name="modify-convert-to-polyline" />
488
        <selectable-tool name="modify-reverse-direction" />
489
        <selectable-tool name="modify-align-edges" />
490
      </tool-bar>
491
-->
492
      <tool-bar name="edit">
493
          <action-tool
494
              name="modify-paste-from-clipboard"
495
          />
496
      </tool-bar>
497

  
498
    </extension>    
499
  </extensions>
500
</plugin-config>
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.245/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/main/resources-plugin/i18n/text.properties
1
start_editing = Comenzar edici\u00f3n
2
end_editing = Terminar edici\u00f3n
3
insert_point = Insertar punto
4
insert_multipoint = Insertar MultiPunto
5
insert_line = Insertar l\u00ednea
6
insert_arc = Insertar arco
7
insert_arc_by_center = Insertar arco seg\u00fan centro
8
insert_arc_three_points = Insertar arco seg\u00fan tres puntos
9
insert_circle_cr = Insertar c\u00edrculo (centro y radio)
10
insert_circumference_cr = Insertar circunferencia (centro y radio)
11
insert_circle_cd = Insertar c\u00edrculo (centro y di\u00e1metro)
12
insert_circumference_cd = Insertar circunferencia (centro y di\u00e1metro)
13
insert_circle_3p = Insertar c\u00edrculo (tres puntos)
14
insert_circle_2p = Insertar c\u00edrculo (dos puntos)
15
insert_circle_tantanradius = Insertar c\u00edrculo (tan, tan, radio)
16
insert_circumference_3p = Insertar circunferencia (tres puntos)
17
insert_circumference_2p = Insertar circunferencia (dos puntos)
18
insert_circumference_tantanradius = Insertar circunferencia (tan, tan, radio)
19
insert_circle_2tg1p = Insertar c\u00edrculo (2 tangentes y 1 punto)
20
insert_circumference_2tg1p = Insertar circunferencia (2 tangentes y 1 punto)
21
insert_ellipse = Insertar elipse
22
insert_filled_ellipse = Insertar elipse rellena
23
insert_ellipse_center_axes = Insertar elipse (centro y ejes)
24
insert_filled_ellipse_center_axes = Insertar elipse rellena (centro y ejes)
25
insert_polyline = Insertar polil\u00ednea
26
insert_polygon = Insertar pol\u00edgono
27
insert_regular_polygon = Insertar pol\u00edgono regular
28
insert_filled_regular_polygon = Insertar pol\u00edgono regular relleno
29
insert_rectangle = Insertar rect\u00e1ngulo
30
insert_filled_rectangle =  Insertar rect\u00e1ngulo relleno
31
insert_spline= Insertar curva spline
32
insert_filled_spline = Insertar curva spline rellena
33
insert_rectangular_matrix = Matriz rectangular de geometr\u00edas
34
insert_polar_matrix = Matriz polar de geometr\u00edas
35
modify_internal_polygon = Pol\u00edgono interno
36
modify_explode_geometry = Descomponer geometr\u00eda
37
modify_move = Mover geometr\u00eda
38
modify_rotate = Rotar geometr\u00eda
39
modify_duplicate = Duplicar geometr\u00eda
40
modify_divide = Divide
41
modify_measure = Grad\u00faa
42
modify_split_line = Partir linea por un punto
43
modify_split = Partir geometr\u00eda
44
modify_scale = Escalar geometr\u00eda
45
modify_simplify = Simplificar geometr\u00eda
46
modify_join = Unir geometr\u00edas
47
modify_combine = Combinar geometr\u00edas
48
insert_autopolygon = Insertar autopol\u00edgono
49
modify_stretch = Estirar geometr\u00eda
50
modify_extend_line = Alargar l\u00ednea hasta objeto
51
modify_trim_lines_by_cutting_edges = Recortar l\u00edneas eliminando los bordes
52
modify_trim_polygons = Recortar pol\u00edgonos por un objeto
53
modify_edit_vertex = Editar v\u00e9rtice
54
modify_convert_to_polyline= Convertir a polil\u00ednea
55
modify_reverse_direction=Invertir direcci\u00f3n
56
modify_align_edges=Alinear bordes
57
modify_chamfer=Chafl\u00e1n
58
modify_parabolicfillet=Filete parab\u00f3lico
59
uniqueselection = Seleccione una \u00fanica geometr\u00eda
60
selectvertex = Seleccione un v\u00e9rtice
61
new_position = Nueva posici\u00f3n
62
new_position_or_z_value = Nueva posici\u00f3n o valor Z
63
insert_vertex = Insertar v\u00e9rtice
64
remove_vertex = Eliminar v\u00e9rtice
65
selection=Selecci\u00f3n
66
invalid_option=Opci\u00f3n no v\u00e1lida
67
center=Centro
68
radius=Radio
69
diameter=Di\u00e1metro
70
save_changes_performed=Guardar cambios realizados
71
discard= Descartar
72
discard_and_loose_changes= Descartar cambios y perder los cambios
73
continue= Continuar
74
do_not_save_yet_stay_in_editing_mode= No guardar los cambios y seguir en modo edici\u00f3n
75
indicate_new_point= Indique un nuevo punto
76
arc_mode = Modo arco
77
line_mode = Modo l\u00ednea
78
select_new_tool= Seleccione una nueva herramienta
79
draw_geometry_to_internal_polygon= Seleccione una herramienta para dibujar un pol\u00edgono interno
80
draw_geometry_to_autopolygon = Seleccione una herramienta para dibujar un autopol\u00edgono
81
draw_geometry_to_split = Seleccione una herramienta para partir las geometr\u00edas
82
draw_geometry_to_select_vertex = Seleccione una herramienta poligonal para seleccionar v\u00e9rtices
83
save = Guardar
84
discard = Descartar
85
continue = Continuar
86
export = Exportar
87
ask_save_layer = \u00bfDesea guardar la capa
88
can_not_write_layer =  No existe writer para este formato de capa o no tiene permisos de escritura.\n\u00bfQu\u00e9 desea hacer?
89
save_changes_performed = Guardar cambios realizados
90
discard_and_loose_changes = Descartar y perder los cambios
91
export_to_another_format = Exportar a otro formato
92
do_not_save_yet_stay_in_editing_mode = No guardar los cambios y seguir editando
93
first_point= Primer punto
94
second_point= Segundo punto
95
third_point= Tercer punto
96
start_point= Punto de inicio
97
middle_point= Punto medio
98
end_point= Punto final
99
first_point_A_axis = Primer punto del eje A
100
second_point_A_axis = Segundo punto del eje A
101
length_of_B_axis= Longitud del eje B
102
length_of_B_semiaxis= Longitud del semieje B
103
point_A_axis = Punto del eje A
104
inscribed = Inscrito
105
circumscribed = Circunscrito
106
sides_of_regular_polygon = Indique los lados del poligono regular
107
center_of_regular_polygon = Centro del pol\u00edguno regular
108
point_of_circle = Punto del c\u00edrculo del pol\u00edgono
109
first_point_of_the_first_line = Primer punto de la primera l\u00ednea
110
second_point_of_the_first_line = Segundo punto de la primera l\u00ednea
111
first_point_of_the_second_line = Primer punto de la segunda l\u00ednea
112
second_point_of_the_second_line = Segundo punto de la segunda l\u00ednea
113
point_near_center = Punto cercano al centro
114
point_near_tangent_in_first_geometry = Punto cercano a la tangente en la primera geometr\u00eda
115
point_near_tangent_in_second_geometry = Punto cercano a la tangente en la segunda geometr\u00eda
116
radius = Radio
117
sides = Lados
118
key_arc_mode = A
119
key_line_mode = L
120
key_close = C
121
key_finish = F
122
key_inscribed = I
123
key_circumscribed = C
124
key_remove_last_point = Q
125
remove_last_point = Quitar \u00faltimo punto
126
close_polyline = Cerrar polil\u00ednea
127
close_spline = Cerrar curva spline
128
new_point = Nuevo punto
129
new_value = Nuevo valor
130
finished = finalizada
131
center_of_rotation = Centro de rotaci\u00f3n
132
angle_of_rotation = \u00c1ngulo de rotaci\u00f3n (grados)
133
origin_point = Origen
134
tolerance = Tolerancia
135
line_to_extend = Seleccione l\u00ednea para alargar
136
line_to_trim = Seleccione l\u00ednea para partir
137
modify_smooth_line = Suavizar l\u00ednea
138
intermediate_steps_1_9 = Pasos intermedios [1,9]
139
algorithm = algoritmo
140
natural_cubic_splines = Splines c\u00fabicos naturales
141
bezier_curves = Curvas B\u00e9zier
142
b_splines = B-splines
143
key_natural_cubic_splines = SCN
144
key_bezier_curves = CB
145
key_b_splines = BS
146
columns_number = N\u00famero de columnas
147
rows_number = N\u00famero de filas
148
distance_between_columns = Distancia entre columnas
149
distance_between_rows = Distancia entre filas
150
key_yes= S
151
key_no = N
152
yes = Si
153
no = No
154
number_of_total_elements = N\u00famero de elementos totales
155
rotate_elements = Rotar elementos?
156
angle_between_elements = Angulo entre elementos
157
modify = modificar
158
insert = insertar
159
Modify = Modificar
160
Insert = Insertar
161
_The_layer_is_reproyected_on_the_fly_Not_all_editing_tools_work_properly_When_you_finish_editing_will_only_export_the_changes_to_another_layer=La capa esta reproyectada el vuelo.\nNo todas las herramientas de edici\u00f3n funcionar\u00e1n correctamente.\nCuando termine edici\u00f3n solo podra exportar los cambios a otra capa.
162
_Do_you_want_to_finish_editing_If_not_exported_the_data_the_changes_will_be_lost=\u00bf Desea terminar la edici\u00f3n ?\nSi no ha exportado los datos y termina edici\u00f3n, los cambios realizados se perder\u00e1n.
163
_Cant_finish_editing_See_the_error_log_for_more_information=No se puede terminar la edici\u00f3n.\nConsulte el registro de errores para mas informaci\u00f3n.
164
_The_layer_can_not_be_written_When_you_finish_editing_will_only_export_the_changes_to_another_layer=No puede escribirse en la capa.\nCuando termine edici\u00f3n solo podra exportar los cambios a otra capa.
165
remove_selected_geometries=Eliminar geometr\u00edas seleccionadas
166
_Use_a_point_previously_captured=Usar un punto capturado previamente.
167
_Enter_the_coordinates_manually=Introducir las coordenadas manualmente.
168
start_angle = \u00c1ngulo inicial
169
sweep_angle = \u00c1ngulo de barrido
170
center_point = Centro
171
_graphic_distance = Distancia gr\u00e1fica
172
geometry_to_extend_to=Geometr\u00eda hasta la que extender
173
geometry_to_trim_with=Geometr\u00eda con la que recortar
174
shearing_point=Punto de recorte
175
_dismiss=Descartar
176
_List_of_layers_to_finish_editing=Lista de capas a terminar edici\u00f3n
177
_The_following_layers_dismiss_the_changes=Las siguientes capas descartar\u00e1n los cambios: \n
178
_Dismiss_information=Informaci\u00f3n a descartar
179
_finish_edition=Finalizar edici\u00f3n
180
_align_edges=Alinear bordes
181
_geometry_base=Geometr\u00eda base
182
_geometry_to_align=Geometr\u00eda a alinear
183
_align_mode=Alineaci\u00f3n
184
_up=Arriba
185
_down=Abajo
186
_left=Izquierda
187
_right=Derecha
188
_horizontal_centering=Horizontal
189
_vertical_centering=Vertical
190
_both_centering=Ambos centros
191
_short_up=A
192
_short_down=Ab
193
_short_left=I
194
_short_right=D
195
_short_horizontal_centering=H
196
_short_vertical_centering=V
197
_short_both_centering=C
198
_do_copy_question=\u00bfHacer copia?
199
_delete_original_geometries=Eliminar la geometr\u00edas originales
200
_do_copy=Hacer copia
201
_yes=S\u00ed
202
_no=No
203
_short_yes=S
204
_short_no=N
205
_Modify_paste_from_clipboard=Pegar desde el portapapeles
206
_Location=Posici\u00f3n
207
_Clipboard=Portapapeles
208
_Copy_alphanumeric_attributes=Copiar atributos alfanum\u00e9ricos
209
copyAlphanumericAttributes=Copiar atributos alfanum\u00e9ricos
210
_Dont_copy_alphanumeric_attributes=No copiar atributos alfanum\u00e9ricos
211
_Editing_tool_options=Opciones de las herramientas de edici\u00f3n
212
_Vector_editing_tool_options=Opciones de las herramientas de edici\u00f3n
213
_Activate_an_editing_tool_to_see_your_options_here=Active una herramienta de edicion para ver aqui sus opciones.
214
_Options=Opciones
215
_Apply=Aplicar
216
_Default_values=Valores por defecto
217
_Table=Tabla
218
_Tool=Herramienta
219
_insertion_point=punto de inserci\u00f3n
220
_measure=medida
221
_align=alinear
222
_dont_align=no alinear
223
_rotate_field=campo de rotaci\u00f3n
224
_segments_number=n\u00ba de segmentos
225
_point_options=Opciones del punto
226
_Direction=Direcci\u00f3n
227
equidistant_copies=Copias equidistantes
228
_save=Guardar
229
_export=Exportar
230
_Origin_point=Origen
231
_Key_origin_center=C
232
_Origin_center=Centro
233
_Proportional_scale_question=\u00bfEscala proporcional?
234
_Proportional_scale=Escala proporcional
235
_Scale_factor_or_reference_point = Factor de escala o punto de referencia
236
_Horizontal_scale_factor_or_reference_point=Factor de escala horizontal o punto de referencia
237
_Second_scale_point = Segundo punto para la escala
238
_Vertical_scale_factor=Factor de escala vertical
239
_Pivot_center_envelope=Centro de la envoltura
240
_Key_pivot_center_envelope=C
241
_Pivot_centroid=Baricentro (centroide)
242
_Key_pivot_centroid=B
243
_Rotate_mode=Modo
244
_Rotate_active_angle_mode=\u00c1ngulo
245
_Rotate_two_points_mode=Dos puntos
246
_Rotate_three_points_mode=Tres puntos
247
_Key_rotate_active_angle_mode=A
248
_Key_rotate_two_points_mode=2
249
_Key_rotate_three_points_mode=3
250
_Pivot_XcolonX_Point=Pivote: Punto
251
_Pivot_point=Punto de pivote
252
_Angle=\u00c1ngulo
253
_Start_of_rotation=Inicio de rotaci\u00f3n
254
_End_of_rotation=Fin de rotaci\u00f3n
255
_Separate_elements_question=\u00bfPivotar los elementos individualmente?
256
_Element_rotation=Rotaci\u00f3n de elementos
257
_Individually=Individualmente
258
_Together=Conjuntamente
259
_First_point=Primer punto
260
_Second_point=Segundo punto
261
_First_distance=Distancia primera
262
_Second_distance=Distancia segunda
263
_Angle=\u00c1ngulo
264
_Delete_second_selected_geometry_question=\u00bfBorrar la segunda geometr\u00eda seleccionada?
265
_Method=M\u00e9todo
266
_Distance=Distancia
267
_Short_distance=D
268
_Short_angle=A
269
_Delete_second_selected_geometry=Borrar la segunda geometr\u00eda seleccionada
270
_First_segment=Primer segmento
271
_Second_segment=Segundo segmento
272
_The_resulting_geometry_is_not_valid_for_the_store=La geometr\u00eda resultado no es v\u00e1lida para la capa
273
_Enable_orto_mode=Activar modo ORTO
274
_Disable_orto_mode=Desactivar modo ORTO
275

  
276
modify_chamfer_by_length_and_angle=Chafl\u00e1n mediante longitud y \u00e1ngulo
277
_Length=Longitud
278
_Valid=V\u00e1lido
279
_Chamfer_too_large=Chafl\u00e1n demasiado largo
280
_Cant_fill_segment_data=No se han podido rellenar los datos del segmentos
281
_First_segment_data_is_null=El primer segmento no existe
282
_Same_segment=Mismo segmento
283
_Cant_calculate_chamfer_point=No se puede calcular el punto de chafl\u00e1n
284
_Non-adjacent_segments=Segmentos no adjacentes
285
_Different_geometry_types=Diferentes tipos de geometr\u00eda
286
_Cant_connect_segments=No se pueden conectar los segmentos
287
_One_of_the_two_segments_isnt_extreme=Uno de los dos segmentos no son extremos
288
_Invalid_value=Valor inv\u00e1lido
289
_Invalid_geometry_type=Tipo de geometr\u00eda inv\u00e1lido
290
_Cant_find_nearest_geometry=No se puede encontrar la geometr\u00eda m\u00e1s cercana
291
_Cant_calculate_chamfer=No se puede calcular el chafl\u00e1n
292

  
293
modify_fix_chamfer_by_length_and_angle=Arreglar chafl\u00e1n mediante longitud y \u00e1ngulo
294
_Chamfer_to_fix=Chafl\u00e1n a arreglar
295
_Tolerance=Tolerancia
296
_Selected_segment_is_one_of_the_ends_of_an_open_line=El segmento seleccionado es uno de los extremos de una linea abierta
297
_Selected_segment_lenght_is_in_valid_range_0_plus_minus_1=La longitud del segmento seleccionado est\u00e1 dentro del rango v\u00e1lido {0}\u00b1{1}
298
_Cant_calculate_opposite_vertices=No se han podido calcular los v\u00e9rtices opuestos
299
_Show_editing_tool_options=Mostrar las opciones de las herramientas de edicion
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.245/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/main/resources-plugin/i18n/text_en.properties
1
key_natural_cubic_splinesstart_editing = Start editing
2
end_editing = End editing
3
insert_point = Insert point
4
insert_multipoint = Insert MultiPoint
5
insert_line = Insert line
6
insert_arc = Insert arc
7
insert_arc_by_center = Insert arc by center
8
insert_arc_three_points = Insert arc by three points
9
insert_circle_cr=Insert circle (center & radius)
10
insert_circumference_cr=Insert circumference (center & radius)
11
insert_circle_cd=Insert circle (center & diameter)
12
insert_circumference_cd=Insert circumference (center & diameter)
13
insert_circle_2p = Insert circle (two point)key_natural_cubic_splines
14
insert_circle_3p = Insert circle (three point)
15
insert_circle_tantanradius = Insert circle (tan, tan, radius)
16
insert_circumference_2p = Insert circumference (two points)
17
insert_circumference_3p = Insert circumference (three points)
18
insert_circumference_tantanradius = Insert circumference (tan, tan, radius)
19
insert_ellipse = Insert ellipse
20
insert_filled_ellipse = Insert filled ellipse
21
insert_ellipse_center_axes = Insert ellipse (center & axes)
22
insert_filled_ellipse_center_axes = Insert filled ellipse (center & axes)
23
insert_polyline = Insert polyline
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff