Revision 2808

View differences:

org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.164/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.164</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.164</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.164/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.164/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/buildNumber.properties
1
#Thu Oct 21 12:47:23 CEST 2021
2
buildNumber=173
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.164/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
      <menu text="Layer/start_editing" name="start-editing" />
41
      <menu text="Layer/end_editing" name="end-editing" />
42
      <menu text="Layer/_Editing_tool_options" name="vector-editing-tooloptions" />
43

  
44
      <tool-bar name="vector_editing" position="4000">
45
        <action-tool name="start-editing" />
46
        <action-tool name="end-editing" />
47
        <action-tool name="vector-editing-tooloptions" />
48
      </tool-bar>
49

  
50
    </extension>
51

  
52
    <extension class-name="org.gvsig.vectorediting.app.mainplugin.ServiceExtension"
53
      description="" active="true" priority="1">
54

  
55
      <action name="remove" label="remove_selected_geometries" tooltip="remove_selected_geometries"
56
        action-command="remove" icon="remove" position="601002000"
57
        accelerator="delete" />
58
        <!-- accelerator="" /> -->
59

  
60
      <action name="insert-point" label="insert_point" tooltip="insert_point"
61
        action-command="insert-point" icon="insert-point" position="601002010"
62
        accelerator="" />
63

  
64
      <action name="insert-multipoint" label="insert_multipoint" tooltip="insert_multipoint"
65
        action-command="insert-multipoint" icon="insert-multipoint" position="601002025"
66
        accelerator="" />
67

  
68
      <action name="insert-line" label="insert_line" tooltip="insert_line"
69
        position="601002050" action-command="insert-line" icon="insert-line"
70
        accelerator="" />
71

  
72
      <action name="insert-arc" label="insert_arc" tooltip="insert_arc"
73
        position="601002060" action-command="insert-arc" icon="insert-arc"
74
        accelerator="" />
75

  
76
      <action name="insert-arc-by-center" label="insert_arc_by_center" tooltip="insert_arc_by_center"
77
        position="601002070" action-command="insert-arc-by-center" icon="insert-arc-by-center"
78
        accelerator="" />
79

  
80
      <action name="insert-arc-three-points" label="insert_arc_three_points" tooltip="insert_arc_three_points"
81
        position="601002080" action-command="insert-arc-three-points" icon="insert-arc-three-points"
82
        accelerator="" />
83

  
84
      <action name="insert-circle-cr" label="insert_circle_cr" tooltip="insert_circle_cr"
85
        position="601002100" action-command="insert-circle-cr" icon="insert-circle-cr"
86
        accelerator="" />
87

  
88
      <action name="insert-circle-2tg1p" label="insert_circle_2tg1p" tooltip="insert_circle_2tg1p"
89
        position="601002110" action-command="insert-circle-2tg1p" icon="insert-circle-2tg1p"
90
        accelerator="" />
91

  
92
      <action name="insert-circle-tantanradius" label="insert_circle_tantanradius" tooltip="insert_circle_tantanradius"
93
        position="601002120" action-command="insert-circle-tantanradius" icon="insert-circle-tantanradius"
94
        accelerator="" />
95

  
96
      <action name="insert-circumference-cr" label="insert_circumference_cr"
97
        tooltip="insert_circumference_cr" position="601002101" action-command="insert-circumference-cr"
98
        icon="insert-circumference-cr" accelerator="" />
99

  
100
      <action name="insert-circumference-2tg1p" label="insert_circumference_2tg1p" tooltip="insert_circumference_2tg1p"
101
        position="601002111" action-command="insert-circumference-2tg1p" icon="insert-circumference-2tg1p"
102
        accelerator="" />
103

  
104
      <action name="insert-circumference-tantanradius" label="insert_circumference_tantanradius" tooltip="insert_circumference_tantanradius"
105
        position="601002121" action-command="insert-circumference-tantanradius" icon="insert-circumference-tantanradius"
106
        accelerator="" />
107

  
108
      <action name="insert-circle-3p" label="insert_circle_3p" tooltip="insert_circle_3p"
109
        position="601002125" action-command="insert-circle-3p" icon="insert-circle-3p"
110
        accelerator="" />
111

  
112
      <action name="insert-circumference-3p" label="insert_circumference_3p"
113
        tooltip="insert_circumference_3p" position="601002126" action-command="insert-circumference-3p"
114
        icon="insert-circumference-3p" accelerator="" />
115

  
116
      <action name="insert-circle-2p" label="insert_circle_2p" tooltip="insert_circle_2p"
117
        position="601002127" action-command="insert-circle-2p" icon="insert-circle-2p"
118
        accelerator="" />
119

  
120
      <action name="insert-circumference-2p" label="insert_circumference_2p"
121
        tooltip="insert_circumference_2p" position="601002128" action-command="insert-circumference-2p"
122
        icon="insert-circumference-2p" accelerator="" />
123

  
124
      <action name="insert-ellipse" label="insert_ellipse" tooltip="insert_ellipse"
125
        position="601002150" action-command="insert-ellipse" icon="insert-ellipse"
126
        accelerator="" />
127

  
128
        <action name="insert-ellipse-center-axes" label="insert_ellipse_center_axes" tooltip="insert_ellipse_center_axes"
129
        position="601002160" action-command="insert-ellipse-center-axes" icon="insert-ellipse-center-axes"
130
        accelerator="" />
131

  
132
      <action name="insert-filled-ellipse" label="insert_filled_ellipse"
133
        tooltip="insert_filled_ellipse" position="601002160" action-command="insert-filled-ellipse"
134
        icon="insert-filled-ellipse" accelerator="" />
135

  
136
      <action name="insert-filled-ellipse-center-axes" label="insert_filled_ellipse_center_axes"
137
        tooltip="insert_filled_ellipse_center_axes" position="601002170" action-command="insert-filled-ellipse-center-axes"
138
        icon="insert-filled-ellipse-center-axes" accelerator="" />
139

  
140
      <action name="insert-polygon" label="insert_polygon" tooltip="insert_polygon"
141
        position="601002200" action-command="insert-polygon" icon="insert-polygon"
142
        accelerator="" />
143

  
144
      <action name="insert-polyline" label="insert_polyline" tooltip="insert_polyline"
145
        position="601002201" action-command="insert-polyline" icon="insert-polyline"
146
        accelerator="" />
147

  
148
      <action name="insert-filled-regular-polygon" label="insert_filled_regular_polygon"
149
        tooltip="insert_filled_regular_polygon" position="601002300"
150
        action-command="insert-filled-regular-polygon" icon="insert-filled-regular-polygon"
151
        accelerator="" />
152

  
153
      <action name="insert-regular-polygon" label="insert_regular_polygon"
154
        tooltip="insert_regular_polygon" position="601002301" action-command="insert-regular-polygon"
155
        icon="insert-regular-polygon" accelerator="" />
156

  
157
      <action name="insert-filled-rectangle" label="insert_filled_rectangle"
158
        tooltip="insert_filled_rectangle" position="601002350" action-command="insert-filled-rectangle"
159
        icon="insert-filled-rectangle" accelerator="" />
160

  
161
      <action name="insert-rectangle" label="insert_rectangle" tooltip="insert_rectangle"
162
        position="601002351" action-command="insert-rectangle" icon="insert-rectangle"
163
        accelerator="" />
164

  
165
      <action name="insert-filled-spline" label="insert_filled_spline"
166
        tooltip="insert_filled_spline" position="601002370" action-command="insert-filled-spline"
167
        icon="insert-filled-spline" accelerator="" />
168

  
169
      <action name="insert-spline" label="insert_spline" tooltip="insert_spline"
170
        position="601002371" action-command="insert-spline" icon="insert-spline"
171
        accelerator="" />
172

  
173
      <action name="modify-internal-polygon" label="modify_internal_polygon"
174
        tooltip="modify_internal_polygon" position="601002500" action-command="modify-internal-polygon"
175
        icon="modify-internal-polygon" accelerator="" />
176

  
177
      <action name="modify-explode-geometry" label="modify_explode_geometry"
178
        tooltip="modify_explode_geometry" position="601002600" action-command="modify-explode-geometry"
179
        icon="modify-explode-geometry" accelerator="" />
180

  
181
      <action name="modify-move" label="modify_move" tooltip="modify_move"
182
        position="601002700" action-command="modify-move" icon="modify-move"
183
        accelerator="" />
184

  
185
      <action name="modify-rotate" label="modify_rotate" tooltip="modify_rotate"
186
        position="601002800" action-command="modify-rotate" icon="modify-rotate"
187
        accelerator="" />
188

  
189
      <action name="modify-duplicate" label="modify_duplicate" tooltip="modify_duplicate"
190
        position="601002900" action-command="modify-duplicate" icon="modify-duplicate"
191
        accelerator="" />
192

  
193
      <action name="modify-measure" label="modify_measure" tooltip="modify_measure"
194
        position="601002910" action-command="modify-measure" icon="modify-measure"
195
        accelerator="" />
196

  
197
      <action name="modify-divide" label="modify_divide" tooltip="modify_divide"
198
        position="601002920" action-command="modify-divide" icon="modify-divide"
199
        accelerator="" />
200

  
201
      <action name="modify-paste-from-clipboard" label="_Modify_paste_from_clipboard" tooltip="_Modify_paste_from_clipboard"
202
        position="601105100" action-command="modify-paste-from-clipboard" icon="modify-paste-from-clipboard"
203
        accelerator="" />
204

  
205
      <action name="modify-split" label="modify_split" tooltip="modify_split"
206
        position="601003000" action-command="modify-split" icon="modify-split"
207
        accelerator="" />
208

  
209
      <action name="modify-split-line" label="modify_split_line" tooltip="modify_split_line"
210
        position="601003050" action-command="modify-split-line" icon="modify-split-line"
211
        accelerator="" />
212

  
213
      <action name="modify-scale" label="modify_scale" tooltip="modify_scale"
214
        position="601003100" action-command="modify-scale" icon="modify-scale"
215
        accelerator="" />
216

  
217
      <action name="modify-simplify" label="modify_simplify" tooltip="modify_simplify"
218
        position="601003200" action-command="modify-simplify" icon="modify-simplify"
219
        accelerator="" />
220

  
221
      <action name="modify-join" label="modify_join" tooltip="modify_join"
222
        position="601003300" action-command="modify-join" icon="modify-join"
223
        accelerator="" />
224

  
225
      <action name="insert-autopolygon" label="insert_autopolygon"
226
        tooltip="insert_autopolygon" position="601003400" action-command="insert-autopolygon"
227
        icon="insert-autopolygon" accelerator="" />
228

  
229
      <action name="modify-stretch" label="modify_stretch" tooltip="modify_stretch"
230
        position="601003500" action-command="modify-stretch" icon="modify-stretch"
231
        accelerator="" />
232

  
233
      <action name="modify-extend-line" label="modify_extend_line"
234
        tooltip="modify_extend_line" position="601003600" action-command="modify-extend-line"
235
        icon="modify-extend-line" accelerator="" />
236

  
237
      <action name="modify-trim-line" label="modify_trim_lines_by_cutting_edges" tooltip="modify_trim_lines_by_cutting_edges"
238
        position="601003700" action-command="modify-trim-line" icon="modify-trim-line"
239
        accelerator="" />
240

  
241
      <action name="modify-trim-polygon" label="modify_trim_polygons" tooltip="modify_trim_polygons"
242
        position="601003800" action-command="modify-trim-polygon" icon="modify-trim-polygon"
243
        accelerator="" />
244

  
245
      <action name="modify-smooth-line" label="modify_smooth_line"
246
        tooltip="modify_smooth_line" position="601003800" action-command="modify-smooth-line"
247
        icon="modify-smooth-line" accelerator="" />
248

  
249
      <action name="modify-edit-vertex" label="modify_edit_vertex"
250
        tooltip="modify_edit_vertex" position="601003900" action-command="modify-edit-vertex"
251
        icon="modify-edit-vertex" accelerator="" />
252

  
253
      <action name="insert-rectangular-matrix" label="insert_rectangular_matrix"
254
        tooltip="insert_rectangular_matrix" position="601004000" action-command="insert-rectangular-matrix"
255
        icon="insert-rectangular-matrix" accelerator="" />
256

  
257
      <action name="insert-polar-matrix" label="insert_polar_matrix"
258
        tooltip="insert_polar_matrix" position="601004100" action-command="insert-polar-matrix"
259
        icon="insert-polar-matrix" accelerator="" />
260

  
261
      <action name="modify-convert-to-polyline" label="modify_convert_to_polyline"
262
        tooltip="modify_convert_to_polyline" position="601004200" action-command="modify-convert-to-polyline"
263
        icon="modify-convert-to-polyline" accelerator="" />
264

  
265
      <action name="modify-reverse-direction" label="modify_reverse_direction"
266
        tooltip="modify_reverse_direction" position="601004300" action-command="modify-reverse-direction"
267
        icon="modify-reverse-direction" accelerator="" />
268

  
269
      <action name="modify-align-edges" label="modify_align_edges"
270
        tooltip="modify_align_edges" position="601004400" action-command="modify-align-edges"
271
        icon="modify-align-edges" accelerator="" />
272

  
273
      <menu text="Layer/Remove/remove_selected_geometries" name="remove" />
274
      <menu text="Layer/Insert/insert_point" name="insert-point" />
275
      <menu text="Layer/Insert/insert_multipoint" name="insert-multipoint" />
276
      <menu text="Layer/Insert/insert_line" name="insert-line" />
277
      <menu text="Layer/Insert/insert_arc" name="insert-arc" />
278
      <menu text="Layer/Insert/insert_arc_by_center" name="insert-arc-by-center" />
279
      <menu text="Layer/Insert/insert_arc_three_points" name="insert-arc-three-points" />
280
      <menu text="Layer/Insert/insert_circle_cr" name="insert-circle-cr" />
281
      <menu text="Layer/Insert/insert_circumference_cr" name="insert-circumference-cr" />
282
      <menu text="Layer/Insert/insert_circle_3p" name="insert-circle-3p" />
283
      <menu text="Layer/Insert/insert_circumference_3p" name="insert-circumference-3p" />
284
      <menu text="Layer/Insert/insert_circle_2p" name="insert-circle-2p" />
285
      <menu text="Layer/Insert/insert_circumference_2p" name="insert-circumference-2p" />
286
      <menu text="Layer/Insert/insert_circle_2tg1p" name="insert-circle-2tg1p" />
287
      <menu text="Layer/Insert/insert_circumference_2tg1p" name="insert-circumference-2tg1p" />
288
      <menu text="Layer/Insert/insert_circle_tantanradius" name="insert-circle-tantanradius" />
289
      <menu text="Layer/Insert/insert_circumference_tantanradius" name="insert-circumference-tantanradius" />
290
      <menu text="Layer/Insert/insert_ellipse" name="insert-ellipse" />
291
      <menu text="Layer/Insert/insert_filled_ellipse" name="insert-filled-ellipse" />
292
      <menu text="Layer/Insert/insert_ellipse_center_axes" name="insert-ellipse-center-axes" />
293
      <menu text="Layer/Insert/insert_filled_ellipse_center_axes" name="insert-filled-ellipse-center-axes" />
294
      <menu text="Layer/Insert/insert_polyline" name="insert-polyline" />
295
      <menu text="Layer/Insert/insert_polygon" name="insert-polygon" />
296
      <menu text="Layer/Insert/insert_regular_polygon" name="insert-regular-polygon" />
297
      <menu text="Layer/Insert/insert_filled_regular_polygon" name="insert-filled-regular-polygon" />
298
      <menu text="Layer/Insert/insert_rectangle" name="insert-rectangle" />
299
      <menu text="Layer/Insert/insert_filled_rectangle" name="insert-filled-rectangle" />
300
      <menu text="Layer/Insert/insert_spline" name="insert-spline" />
301
      <menu text="Layer/Insert/insert_filled_spline" name="insert-filled-spline" />
302
      <menu text="Layer/Insert/insert_rectangular_matrix" name="insert-rectangular-matrix" />
303
      <menu text="Layer/Insert/insert_polar_matrix" name="insert-polar-matrix" />
304
      <menu text="Layer/Insert/insert_autopolygon" name="insert-autopolygon" />
305
      <menu text="Layer/Modify/modify_internal_polygon" name="modify-internal-polygon" />
306
      <menu text="Layer/Modify/modify_explode_geometry" name="modify-explode-geometry" />
307
      <menu text="Layer/Modify/modify_move" name="modify-move" />
308
      <menu text="Layer/Modify/modify_rotate" name="modify-rotate" />
309
      <menu text="Layer/Modify/modify_duplicate" name="modify-duplicate" />
310
      <menu text="Layer/Modify/modify_measure" name="modify-measure" />
311
      <menu text="Layer/Modify/modify_divide" name="modify-divide" />
312
      <menu text="Layer/Modify/_Modify_paste_from_clipboard" name="modify-paste-from-clipboard" />
313
      <menu text="Layer/Modify/modify_split_line" name="modify-split-line" />
314
      <menu text="Layer/Modify/modify_split" name="modify-split" />
315
      <menu text="Layer/Modify/modify_scale" name="modify-scale" />
316
      <menu text="Layer/Modify/modify_simplify" name="modify-simplify" />
317
      <menu text="Layer/Modify/modify_join" name="modify-join" />
318
      <menu text="Layer/Modify/modify_stretch" name="modify-stretch" />
319
      <menu text="Layer/Modify/modify_extend_line" name="modify-extend-line" />
320
      <menu text="Layer/Modify/modify_trim_lines_by_cutting_edges" name="modify-trim-line" />
321
      <menu text="Layer/Modify/modify_trim_polygons" name="modify-trim-polygon" />
322
      <menu text="Layer/Modify/modify_smooth_line" name="modify-smooth-line" />
323
      <menu text="Layer/Modify/modify_edit_vertex" name="modify-edit-vertex" />
324
      <menu text="Layer/Modify/modify_convert_to_polyline" name="modify-convert-to-polyline" />
325
      <menu text="Layer/Modify/modify_reverse_direction" name="modify-reverse-direction" />
326
      <menu text="Layer/Modify/modify_align_edges" name="modify-align-edges" />
327

  
328
      <tool-bar name="vector_editing" position="4000">
329
        <selectable-tool name="remove" />
330
        <selectable-tool name="insert-point" />
331
        <selectable-tool name="insert-multipoint" />
332
        <selectable-tool name="insert-line" />
333
        <selectable-tool name="insert-arc" dropdowngroup="arc" />
334
        <selectable-tool name="insert-arc-by-center" dropdowngroup="arc" />
335
        <selectable-tool name="insert-arc-three-points" dropdowngroup="arc" />
336
        <selectable-tool name="insert-circumference-cr" dropdowngroup="circle" />
337
        <selectable-tool name="insert-circle-cr" dropdowngroup="circle" />
338
        <selectable-tool name="insert-circle-2tg1p" dropdowngroup="circle" />
339
        <selectable-tool name="insert-circle-tantanradius" dropdowngroup="circle" />
340
        <selectable-tool name="insert-circumference-3p" dropdowngroup="circle" />
341
        <selectable-tool name="insert-circle-3p" dropdowngroup="circle" />
342
        <selectable-tool name="insert-circumference-2p" dropdowngroup="circle" />
343
        <selectable-tool name="insert-circle-2p" dropdowngroup="circle" />
344
        <selectable-tool name="insert-circumference-2tg1p" dropdowngroup="circle" />
345
        <selectable-tool name="insert-circumference-tantanradius" dropdowngroup="circle" />
346
        <selectable-tool name="insert-ellipse" dropdowngroup="ellipse" />
347
        <selectable-tool name="insert-filled-ellipse" dropdowngroup="ellipse" />
348
        <selectable-tool name="insert-ellipse-center-axes" dropdowngroup="ellipse" />
349
        <selectable-tool name="insert-filled-ellipse-center-axes" dropdowngroup="ellipse" />
350
        <selectable-tool name="insert-polyline" dropdowngroup="polygon"/>
351
        <selectable-tool name="insert-polygon" dropdowngroup="polygon"/>
352
        <selectable-tool name="insert-regular-polygon" dropdowngroup="regularpolygon"/>
353
        <selectable-tool name="insert-filled-regular-polygon" dropdowngroup="regularpolygon"/>
354
        <selectable-tool name="insert-rectangle" dropdowngroup="rectangle"/>
355
        <selectable-tool name="insert-filled-rectangle" dropdowngroup="rectangle"/>
356
        <selectable-tool name="insert-filled-spline" dropdowngroup="spline"/>
357
        <selectable-tool name="insert-spline" dropdowngroup="spline"/>
358
        <selectable-tool name="modify-internal-polygon" />
359
        <selectable-tool name="modify-explode-geometry" />
360
        <selectable-tool name="modify-move" />
361
        <selectable-tool name="modify-rotate" />
362
        <selectable-tool name="modify-duplicate" />
363
        <selectable-tool name="modify-measure" />
364
        <selectable-tool name="modify-divide" />
365
<!--        <selectable-tool name="modify-paste-from-clipboard" />-->
366
        <selectable-tool name="modify-split" />
367
        <selectable-tool name="modify-split-line" />
368
        <selectable-tool name="modify-scale" />
369
        <selectable-tool name="modify-simplify" />
370
        <selectable-tool name="insert-autopolygon" />
371
        <selectable-tool name="modify-join" />
372
        <selectable-tool name="modify-stretch" />
373
        <selectable-tool name="modify-extend-line" />
374
        <selectable-tool name="modify-trim-line" />
375
        <selectable-tool name="modify-trim-polygon" />
376
        <selectable-tool name="modify-smooth-line" />
377
        <selectable-tool name="insert-rectangular-matrix" dropdowngroup="matrix" />
378
        <selectable-tool name="insert-polar-matrix" dropdowngroup="matrix" />
379
        <selectable-tool name="modify-edit-vertex" />
380
        <selectable-tool name="modify-convert-to-polyline" />
381
        <selectable-tool name="modify-reverse-direction" />
382
        <selectable-tool name="modify-align-edges" />
383
      </tool-bar>
384

  
385
      <tool-bar name="edit">
386
          <action-tool
387
              name="modify-paste-from-clipboard"
388
          />
389
      </tool-bar>
390

  
391
    </extension>    
392
  </extensions>
393
</plugin-config>
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.164/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_2p = Insert circle (two point)key_natural_cubic_splines
12
insert_circle_3p = Insert circle (three point)
13
insert_circle_tantanradius = Insert circle (tan, tan, radius)
14
insert_circumference_2p = Insert circumference (two points)
15
insert_circumference_3p = Insert circumference (three points)
16
insert_circumference_tantanradius = Insert circumference (tan, tan, radius)
17
insert_ellipse = Insert ellipse
18
insert_filled_ellipse = Insert filled ellipse
19
insert_ellipse_center_axes = Insert ellipse (center & axes)
20
insert_filled_ellipse_center_axes = Insert filled ellipse (center & axes)
21
insert_polyline = Insert polyline
22
insert_polygon = Insert polygon
23
insert_regular_polygon = Insert regular polygon
24
insert_filled_regular_polygon = Insert filled regular polygon
25
insert_rectangle = Insert rectangle
26
insert_filled_rectangle = Insert filled rectangle
27
insert_spline= Insert spline curve
28
insert_filled_spline = Insert filled spline
29
insert_rectangular_matrix = Rectangular matrix of geometries
30
insert_polar_matrix = Polar matrix of geometries
31
modify_internal_polygon = Internal polygon
32
modify_explode_geometry = Explode geometry
33
modify_move = Move geometry
34
modify_rotate = Rotate geometry
35
modify_duplicate = Duplicate geometry
36
modify_divide = Divide
37
modify_measure = Measure
38
modify_split_line = Split line open by a point
39
modify_split = Split geometry
40
modify_scale = Scale geometry
41
modify_simplify = Simplify geometry
42
insert_autopolygon = Insert autopolygon
43
modify_join = Join geometries
44
modify_stretch = Stretch geometry
45
modify_extend_line = Extend line to object
46
modify_trim_lines_by_cutting_edges = Trim lines by cutting edges
47
modify_trim_polygons = Trim polygons by object
48
modify_edit_vertex = Edit vertex
49
modify_convert_to_polyline= Convert to polyline
50
modify_reverse_direction=Reverse direction
51
modify_align_edges=Align edges
52
uniqueselection = Select only one geometry
53
selectvertex = Select a vertex
54
new_position = New position
55
new_position_or_z_value = New position or Z value
56
insert_vertex = Insertr vertex
57
remove_vertex = Remove vertex
58
selection=Selection
59
invalid_option=Invalid option
60
center=Center
61
radius=Radius
62
save_changes_performed=Save changed performed
63
discard= Discard
64
discard_and_loose_changes= Discard changes and loose changes
65
continue= Continue
66
do_not_save_yet_stay_in_editing_mode= Don't save changes and continue editing
67
indicate_new_point= Indicate new point
68
arc_mode = Arc mode
69
line_mode = Line mode
70
select_new_tool= Select a new tool
71
draw_geometry_to_interal_polygon= Select tool to draw a internal polygon
72
draw_geometry_to_autopolygon = Select tool to draw an autopolygon
73
draw_geometry_to_split = Select tool to split selected geometries
74
draw_geometry_to_select_vertex = Select a polygonal tool to select vertex
75
save = Save
76
discard = Discard
77
continue = Continue
78
export = Export
79
ask_save_layer = Would you really like to save the layer
80
can_not_write_layer =  There are not writer for this layer format or you don't have write permissions.\nWhat do you want to do?
81
save_changes_performed = Save changed performed
82
discard_and_loose_changes = Discard and loose changes
83
export_to_another_format = Export to another format
84
do_not_save_yet_stay_in_editing_mode = Do not save changes and continue editing
85
first_point= First point
86
second_point= Second point
87
start_point= Start point
88
middle_point= Middle point
89
third_point= Third point
90
end_point= End point
91
first_point_A_axis = First point of A axis
92
second_point_A_axis = Second point of A axis
93
length_of_B_axis= Length of B axis
94
length_of_B_semiaxis= Length of B semiaxis
95
point_A_axis = Punto del eje A
96
inscribed = Inscribed
97
circumscribed = Circumscribed
98
sides_of_regular_polygon = Indicate sides of regular polygon
99
center_of_regular_polygon = Center of regular polygon
100
point_of_circle = Point of circle of  polygon
101
first_point_of_the_first_line = First point of the first line
102
second_point_of_the_first_line = Second point of the first line
103
first_point_of_the_second_line = First point of the second line
104
second_point_of_the_second_line = Second point of the second line
105
point_near_center = Point near center
106
point_near_tangent_in_first_geometry = Point near tangent in first geometry
107
point_near_tangent_in_second_geometry = Point near tangent in second geometry
108
radius = Radius
109
sides = Sides
110
key_arc_mode = A
111
key_line_mode = L
112
key_close = C
113
key_finish = F
114
key_inscribed = I
115
key_circumscribed = C
116
key_remove_last_point = R
117
remove_last_point = Remove last point
118
close_polyline = Close polyline
119
close_spline = Close spline curve
120
new_point = New point
121
new_value = New value
122
finished = finished
123
center_of_rotation=Center of rotation
124
angle_of_rotation=Angle of rotation (degree)
125
origin_point = Origin
126
scale_factor_or_reference_point = Scale factor or reference point
127
second_scale_point = Second scale point
128
tolerance = Tolerance
129
line_to_extend = Select line to extend
130
line_to_trim = Select line to trim
131
modify_smooth_line = Smooth line
132
intermediate_steps_1_9 = Intermediate steps [1,9]
133
algorithm = algorithm
134
natural_cubic_splines = Natural cubic splines
135
bezier_curves = Bezier curves
136
b_splines = B-splines
137
key_natural_cubic_splines = NCS
138
key_bezier_curves = BC
139
key_b_splines = BS
140
columns_number = Number of columns
141
rows_number = Number of rows
142
distance_between_columns = Distance between columns
143
distance_between_rows = Distance between rows
144
key_yes= Y
145
key_no = N
146
yes = Yes
147
no = No
148
number_of_total_elements = Number of total elements
149
rotate_elements = Rotate elements?
150
angle_between_elements = Angle between elements
151
modify = modify
152
insert = insert
153
Modify = Modify
154
Insert = Insert
155
_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=The layer is reproyected on the fly.\nNot all editing tools work properly.\nWhen you finish editing will only export the changes to another layer will be allowed.
156
_Do_you_want_to_finish_editing_If_not_exported_the_data_the_changes_will_be_lost=Do you want to finish editing?\nIf not exported the data and finish editing, the changes will be lost.
157
_Cant_finish_editing_See_the_error_log_for_more_information=Unable to finish editing.\nSee the error log for more information
158
_The_layer_can_not_be_written_When_you_finish_editing_will_only_export_the_changes_to_another_layer=The layer can not be written.\nWhen you finish editing will only export the changes to another layer will be allowed.
159
remove_selected_geometries=Remove selected geometries
160
_Use_a_point_previously_captured=Use a point previously captured.
161
_Enter_the_coordinates_manually=Enter the coordinates manually.
162
start_angle = Start angle
163
sweep_angle = Sweep angle
164
center_point = Center point
165
_graphic_distance = Graphic distance
166
geometry_to_extend_to=Geometry to extend to
167
geometry_to_trim_with=Geometry to trim with
168
shearing_point=Shearing point
169
_dismiss=Dismiss
170
_List_of_layers_to_finish_editing=List of layers to finish editing
171
_The_following_layers_dismiss_the_changes=The following layers dismiss the changes: \n
172
_Dismiss_information=Dismiss information
173
_finish_edition=Finish edition
174
_align_edges=Align edges
175
_geometry_base=Geometry base
176
_geometry_to_align=Geometry to align
177
_align_mode=Align mode
178
_up=Up
179
_down=Down
180
_left=Left
181
_right=Right
182
_horizontal_centering=Horizontal
183
_vertical_centering=Vertical
184
_both_centering=Both centers
185
_short_up=U
186
_short_down=D
187
_short_left=L
188
_short_right=R
189
_short_horizontal_centering=H
190
_short_vertical_centering=V
191
_short_both_centering=C
192
_do_copy_question=Do copy?
193
_delete_original_geometries=Delete original geometries
194
_do_copy=Do copy
195
_yes=Yes
196
_no=No
197
_short_yes=Y
198
_short_no=N
199
_Modify_paste_from_clipboard=Paste from clipboard
200
_Location=Location
201
_Clipboard=Clipboard
202
_Copy_alphanumeric_attributes=Copy alphanumeric attributes
203
copyAlphanumericAttributes=Copy alphanumeric attributes
204
_Dont_copy_alphanumeric_attributes=Don't copy alphanumeric attributes
205
_Editing_tool_options=Editing tool options
206
_Vector_editing_tool_options=Vector editing tool options
207
_Activate_an_editing_tool_to_see_your_options_here=Activate an editing tool to see your options here.
208
_Options=Options
209
_Apply=Apply
210
_Default_values=Default values
211
_Table=Table
212
_Tool=Tool
213
_insertion_point=Insertion point
214
_measure=measure
215
_align=align
216
_dont_align=don't align
217
_rotate_field=rotate field
218
segments_number=segments number
219
_point_options=Point options
220
_Direction=Direction
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.164/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_3p = Insertar c\u00edrculo (tres puntos)
12
insert_circle_2p = Insertar c\u00edrculo (dos puntos)
13
insert_circle_tantanradius = Insertar c\u00edrculo (tan, tan, radio)
14
insert_circumference_3p = Insertar circunferencia (tres puntos)
15
insert_circumference_2p = Insertar circunferencia (dos puntos)
16
insert_circumference_tantanradius = Insertar circunferencia (tan, tan, radio)
17
insert_circle_2tg1p = Insertar c\u00edrculo (2 tangentes y 1 punto)
18
insert_circumference_2tg1p = Insertar circunferencia (2 tangentes y 1 punto)
19
insert_ellipse = Insertar elipse
20
insert_filled_ellipse = Insertar elipse rellena
21
insert_ellipse_center_axes = Insertar elipse (centro y ejes)
22
insert_filled_ellipse_center_axes = Insertar elipse rellena (centro y ejes)
23
insert_polyline = Insertar polil\u00ednea
24
insert_polygon = Insertar pol\u00edgono
25
insert_regular_polygon = Insertar pol\u00edgono regular
26
insert_filled_regular_polygon = Insertar pol\u00edgono regular relleno
27
insert_rectangle = Insertar rect\u00e1ngulo
28
insert_filled_rectangle =  Insertar rect\u00e1ngulo relleno
29
insert_spline= Insertar curva spline
30
insert_filled_spline = Insertar curva spline rellena
31
insert_rectangular_matrix = Matriz rectangular de geometr\u00edas
32
insert_polar_matrix = Matriz polar de geometr\u00edas
33
modify_internal_polygon = Pol\u00edgono interno
34
modify_explode_geometry = Descomponer geometr\u00eda
35
modify_move = Mover geometr\u00eda
36
modify_rotate = Rotar geometr\u00eda
37
modify_duplicate = Duplicar geometr\u00eda
38
modify_divide = Divide
39
modify_measure = Grad\u00faa
40
modify_split_line = Partir linea por un punto
41
modify_split = Partir geometr\u00eda
42
modify_scale = Escalar geometr\u00eda
43
modify_simplify = Simplificar geometr\u00eda
44
modify_join = Unir geometr\u00edas
45
insert_autopolygon = Insertar autopol\u00edgono
46
modify_stretch = Estirar geometr\u00eda
47
modify_extend_line = Alargar l\u00ednea hasta objeto
48
modify_trim_lines_by_cutting_edges = Recortar l\u00edneas eliminando los bordes
49
modify_trim_polygons = Recortar pol\u00edgonos por un objeto
50
modify_edit_vertex = Editar v\u00e9rtice
51
modify_convert_to_polyline= Convertir a polil\u00ednea
52
modify_reverse_direction=Invertir direcci\u00f3n
53
modify_align_edges=Alinear bordes
54
uniqueselection = Seleccione una \u00fanica geometr\u00eda
55
selectvertex = Seleccione un v\u00e9rtice
56
new_position = Nueva posici\u00f3n
57
new_position_or_z_value = Nueva posici\u00f3n o valor Z
58
insert_vertex = Insertar v\u00e9rtice
59
remove_vertex = Eliminar v\u00e9rtice
60
selection=Selecci\u00f3n
61
invalid_option=Opci\u00f3n no v\u00e1lida
62
center=Centro
63
radius=Radio
64
save_changes_performed=Guardar cambios realizados
65
discard= Descartar
66
discard_and_loose_changes= Descartar cambios y perder los cambios
67
continue= Continuar
68
do_not_save_yet_stay_in_editing_mode= No guardar los cambios y seguir en modo edici\u00f3n
69
indicate_new_point= Indique un nuevo punto
70
arc_mode = Modo arco
71
line_mode = Modo l\u00ednea
72
select_new_tool= Seleccione una nueva herramienta
73
draw_geometry_to_internal_polygon= Seleccione una herramienta para dibujar un pol\u00edgono interno
74
draw_geometry_to_autopolygon = Seleccione una herramienta para dibujar un autopol\u00edgono
75
draw_geometry_to_split = Seleccione una herramienta para partir las geometr\u00edas
76
draw_geometry_to_select_vertex = Seleccione una herramienta poligonal para seleccionar v\u00e9rtices
77
save = Guardar
78
discard = Descartar
79
continue = Continuar
80
export = Exportar
81
ask_save_layer = \u00bfDesea guardar la capa
82
can_not_write_layer =  No existe writer para este formato de capa o no tiene permisos de escritura.\n\u00bfQu\u00e9 desea hacer?
83
save_changes_performed = Guardar cambios realizados
84
discard_and_loose_changes = Descartar y perder los cambios
85
export_to_another_format = Exportar a otro formato
86
do_not_save_yet_stay_in_editing_mode = No guardar los cambios y seguir editando
87
first_point= Primer punto
88
second_point= Segundo punto
89
third_point= Tercer punto
90
start_point= Punto de inicio
91
middle_point= Punto medio
92
end_point= Punto final
93
first_point_A_axis = Primer punto del eje A
94
second_point_A_axis = Segundo punto del eje A
95
length_of_B_axis= Longitud del eje B
96
length_of_B_semiaxis= Longitud del semieje B
97
point_A_axis = Punto del eje A
98
inscribed = Inscrito
99
circumscribed = Circunscrito
100
sides_of_regular_polygon = Indique los lados del poligono regular
101
center_of_regular_polygon = Centro del pol\u00edguno regular
102
point_of_circle = Punto del c\u00edrculo del pol\u00edgono
103
first_point_of_the_first_line = Primer punto de la primera l\u00ednea
104
second_point_of_the_first_line = Segundo punto de la primera l\u00ednea
105
first_point_of_the_second_line = Primer punto de la segunda l\u00ednea
106
second_point_of_the_second_line = Segundo punto de la segunda l\u00ednea
107
point_near_center = Punto cercano al centro
108
point_near_tangent_in_first_geometry = Punto cercano a la tangente en la primera geometr\u00eda
109
point_near_tangent_in_second_geometry = Punto cercano a la tangente en la segunda geometr\u00eda
110
radius = Radio
111
sides = Lados
112
key_arc_mode = A
113
key_line_mode = L
114
key_close = C
115
key_finish = F
116
key_inscribed = I
117
key_circumscribed = C
118
key_remove_last_point = Q
119
remove_last_point = Quitar \u00faltimo punto
120
close_polyline = Cerrar polil\u00ednea
121
close_spline = Cerrar curva spline
122
new_point = Nuevo punto
123
new_value = Nuevo valor
124
finished = finalizada
125
center_of_rotation = Centro de rotaci\u00f3n
126
angle_of_rotation = \u00c1ngulo de rotaci\u00f3n (grados)
127
origin_point = Origen
128
scale_factor_or_reference_point = Factor de escala o punto de referencia
129
second_scale_point = Segundo punto para la escala
130
tolerance = Tolerancia
131
line_to_extend = Seleccione l\u00ednea para alargar
132
line_to_trim = Seleccione l\u00ednea para partir
133
modify_smooth_line = Suavizar l\u00ednea
134
intermediate_steps_1_9 = Pasos intermedios [1,9]
135
algorithm = algoritmo
136
natural_cubic_splines = Splines c\u00fabicos naturales
137
bezier_curves = Curvas B\u00e9zier
138
b_splines = B-splines
139
key_natural_cubic_splines = SCN
140
key_bezier_curves = CB
141
key_b_splines = BS
142
columns_number = N\u00famero de columnas
143
rows_number = N\u00famero de filas
144
distance_between_columns = Distancia entre columnas
145
distance_between_rows = Distancia entre filas
146
key_yes= S
147
key_no = N
148
yes = Si
149
no = No
150
number_of_total_elements = N\u00famero de elementos totales
151
rotate_elements = Rotar elementos?
152
angle_between_elements = Angulo entre elementos
153
modify = modificar
154
insert = insertar
155
Modify = Modificar
156
Insert = Insertar
157
_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.
158
_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.
159
_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.
160
_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.
161
remove_selected_geometries=Eliminar geometr\u00edas seleccionadas
162
_Use_a_point_previously_captured=Usar un punto capturado previamente.
163
_Enter_the_coordinates_manually=Introducir las coordenadas manualmente.
164
start_angle = \u00c1ngulo inicial
165
sweep_angle = \u00c1ngulo de barrido
166
center_point = Centro
167
_graphic_distance = Distancia gr\u00e1fica
168
geometry_to_extend_to=Geometr\u00eda hasta la que extender
169
geometry_to_trim_with=Geometr\u00eda con la que recortar
170
shearing_point=Punto de recorte
171
_dismiss=Descartar
172
_List_of_layers_to_finish_editing=Lista de capas a terminar edici\u00f3n
173
_The_following_layers_dismiss_the_changes=Las siguientes capas descartar\u00e1n los cambios: \n
174
_Dismiss_information=Informaci\u00f3n a descartar
175
_finish_edition=Finalizar edici\u00f3n
176
_align_edges=Alinear bordes
177
_geometry_base=Geometr\u00eda base
178
_geometry_to_align=Geometr\u00eda a alinear
179
_align_mode=Alineaci\u00f3n
180
_up=Arriba
181
_down=Abajo
182
_left=Izquierda
183
_right=Derecha
184
_horizontal_centering=Horizontal
185
_vertical_centering=Vertical
186
_both_centering=Ambos centros
187
_short_up=A
188
_short_down=Ab
189
_short_left=I
190
_short_right=D
191
_short_horizontal_centering=H
192
_short_vertical_centering=V
193
_short_both_centering=C
194
_do_copy_question=\u00bfHacer copia?
195
_delete_original_geometries=Eliminar la geometr\u00edas originales
196
_do_copy=Hacer copia
197
_yes=S\u00ed
198
_no=No
199
_short_yes=S
200
_short_no=N
201
_Modify_paste_from_clipboard=Pegar desde el portapapeles
202
_Location=Posici\u00f3n
203
_Clipboard=Portapapeles
204
_Copy_alphanumeric_attributes=Copiar atributos alfanum\u00e9ricos
205
copyAlphanumericAttributes=Copiar atributos alfanum\u00e9ricos
206
_Dont_copy_alphanumeric_attributes=No copiar atributos alfanum\u00e9ricos
207
_Editing_tool_options=Opciones de las herramientas de edici\u00f3n
208
_Vector_editing_tool_options=Opciones de las herramientas de edici\u00f3n
209
_Activate_an_editing_tool_to_see_your_options_here=Active una herramienta de edicion para ver aqui sus opciones.
210
_Options=Opciones
211
_Apply=Aplicar
212
_Default_values=Valores por defecto
213
_Table=Tabla
214
_Tool=Herramienta
215
_insertion_point=punto de inserci\u00f3n
216
_measure=medida
217
_align=alinear
218
_dont_align=no alinear
219
_rotate_field=campo de rotaci\u00f3n
220
_segments_number=n\u00ba de segmentos
221
_point_options=Opciones del punto
222
_Direction=Direcci\u00f3n
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.164/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/main/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
Put into this folder the resources to be included in the plugin jar.
27

  
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.164/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/main/assembly/gvsig-plugin-package.xml
1
<!-- gvSIG. Desktop Geographic Information System. Copyright (C) 2007-2013 gvSIG
2
  Association. This program is free software; you can redistribute it and/or modify
3
  it under the terms of the GNU General Public License as published by the Free Software
4
  Foundation; either version 3 of the License, or (at your option) any later version.
5
  This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
6
  without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
7
  PURPOSE. See the GNU General Public License for more details. You should have received
8
  a copy of the GNU General Public License along with this program; if not, write to
9
  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
10
  USA. For any additional information, do not hesitate to contact us at info AT gvsig.com,
11
  or visit our website www.gvsig.com. -->
12
<assembly>
13
  <id>gvsig-plugin-package</id>
14
  <formats>
15
    <format>zip</format>
16
  </formats>
17
  <baseDirectory>${project.artifactId}</baseDirectory>
18
  <includeBaseDirectory>true</includeBaseDirectory>
19
  <files>
20
    <file>
21
      <source>target/${project.artifactId}-${project.version}.jar</source>
22
      <outputDirectory>lib</outputDirectory>
23
    </file>
24
    <file>
25
      <source>target/package.info</source>
26
    </file>
27
  </files>
28

  
29
  <fileSets>
30
    <fileSet>
31
      <directory>src/main/resources-plugin</directory>
32
      <outputDirectory>.</outputDirectory>
33
    </fileSet>
34
  </fileSets>
35

  
36

  
37
  <dependencySets>
38
    <dependencySet>
39
      <useProjectArtifact>false</useProjectArtifact>
40
      <useTransitiveDependencies>false</useTransitiveDependencies>
41
      <outputDirectory>lib</outputDirectory>
42
      <includes>
43
        <include>org.gvsig:org.gvsig.vectorediting.lib.api</include>
44
        <include>org.gvsig:org.gvsig.vectorediting.swing.api</include>
45
        <include>org.gvsig:org.gvsig.vectorediting.lib.impl</include>
46
        <include>org.gvsig:org.gvsig.vectorediting.swing.impl</include>
47
        <include>org.gvsig:org.gvsig.vectorediting.lib.spi</include>
48
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.point</include>
49
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.circlecr</include>
50
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.circle3p</include>
51
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.polyline</include>
52
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.internalpolygon</include>
53
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.line</include>
54
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.arc</include>
55
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.ellipse</include>
56
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.regularpolygon</include>
57
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.rectangle</include>
58
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.spline</include>
59
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.explode</include>
60
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.move</include>
61
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.rotate</include>
62
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.duplicate</include>
63
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.scale</include>
64
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.splitline</include>
65
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.simplify</include>
66
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.multipoint</include>
67
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.autopolygon</include>
68
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.join</include>
69
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.stretch</include>
70
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.extendline</include>
71
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.split</include>
72
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.smoothline</include>
73
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.trimline</include>
74
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.rectangularmatrix</include>
75
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.polarmatrix</include>
76
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.editvertex</include>
77
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.remove</include>
78
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.converttopolyline</include>
79
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.reversedirection</include>
80
        <include>org.gvsig:org.gvsig.vectorediting.lib.prov.align</include>
81
      </includes>
82
    </dependencySet>
83
  </dependencySets>
84

  
85
</assembly>
86

  
org.gvsig.vectorediting/tags/org.gvsig.vectorediting-1.0.164/org.gvsig.vectorediting.app/org.gvsig.vectorediting.app.mainplugin/src/main/java/org/gvsig/vectorediting/app/mainplugin/MultilayerFinishEditingPanel.java
1
/*
2
 * To change this license header, choose License Headers in Project Properties.
3
 * To change this template file, choose Tools | Templates
4
 * and open the template in the editor.
5
 */
6
package org.gvsig.vectorediting.app.mainplugin;
7

  
8
import java.awt.Dimension;
9
import java.awt.GridBagConstraints;
10
import java.awt.GridBagLayout;
11
import java.awt.Insets;
12
import java.awt.event.ActionEvent;
13
import java.awt.event.ActionListener;
14
import java.awt.event.ItemEvent;
15
import java.awt.event.ItemListener;
16
import java.util.ArrayList;
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff