Revision 2800

View differences:

tags/Root_gvSIG04/applications/appgvSIG/A.txt
1
 ============================================================================
2
                   The Apache Software License, Version 1.1
3
 ============================================================================
4
 
5
 Copyright (C) 2000 The Apache Software Foundation. All rights reserved.
6
 
7
 Redistribution and use in source and binary forms, with or without modifica-
8
 tion, are permitted provided that the following conditions are met:
9
 
10
 1. Redistributions of  source code must  retain the above copyright  notice,
11
    this list of conditions and the following disclaimer.
12
 
13
 2. Redistributions in binary form must reproduce the above copyright notice,
14
    this list of conditions and the following disclaimer in the documentation
15
    and/or other materials provided with the distribution.
16
 
17
 3. The end-user documentation included with the redistribution, if any, must
18
    include  the following  acknowledgment:  "This product includes  software
19
    developed  by the  Apache Software Foundation  (http://www.apache.org/)."
20
    Alternately, this  acknowledgment may  appear in the software itself,  if
21
    and wherever such third-party acknowledgments normally appear.
22
 
23
 4. The names "Batik" and  "Apache Software Foundation"  must not be  used to
24
    endorse  or promote  products derived  from this  software without  prior
25
    written permission. For written permission, please contact
26
    apache@apache.org.
27
 
28
 5. Products  derived from this software may not  be called "Apache", nor may
29
    "Apache" appear  in their name,  without prior written permission  of the
30
    Apache Software Foundation.
31
 
32
 THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
33
 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
34
 FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
35
 APACHE SOFTWARE  FOUNDATION  OR ITS CONTRIBUTORS  BE LIABLE FOR  ANY DIRECT,
36
 INDIRECT, INCIDENTAL, SPECIAL,  EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLU-
37
 DING, BUT NOT LIMITED TO, PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS
38
 OF USE, DATA, OR  PROFITS; OR BUSINESS  INTERRUPTION)  HOWEVER CAUSED AND ON
39
 ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
40
 (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
41
 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42
 
43
 This software  consists of voluntary contributions made  by many individuals
44
 on  behalf  of the Apache Software  Foundation. For more  information on the
45
 Apache Software Foundation, please see <http://www.apache.org/>.
0 46

  
tags/Root_gvSIG04/applications/appgvSIG/build.xml
1
<project name="Generar extension en MDIAPP" default="dist" basedir=".">
2
    <description>
3
        Instala el plugin
4
    </description>
5
  <!-- set global properties for this build -->
6
  <property name="buildDate" value="20041018"/>
7
  <property name="version" value="0.3.0 beta ${buildDate}"/>
8
  <property name="src" location="src"/>
9
  <property name="build" location="bin"/>
10
  <property name="dist"  location="dist"/>
11
  <property name="plugin" value="com.iver.cit.gvsig"/>
12
  <property name="fmapdir" value="../FMap 03"/>
13
  <property name="extensionDir" location="../Andami/gvSIG/extensiones"/>
14
  <property name="makeZip" location="makeZip"/>
15
  <property name="zipName" value="gvSIG-${version}"/>
16
  <property name="build-doc" value="../FMap 03/build-doc"/>
17

  
18
  <target name="init">
19
    <!-- Create the time stamp -->
20
    <tstamp/>
21
    <!-- Create the build directory structure used by compile -->
22
    <mkdir dir="${build}"/>
23
  	<!-- Creamos un fichero con el timeStamp para que lo lea el FPanelAbout -->
24
  	<buildnumber/>
25
  	
26
  </target>
27
	
28
  <target name="build-doc" depends="" description="Genera un zip con la documentación">
29
	<javadoc 
30
		packagenames="com.iver.cit.gvsig.*"
31
		sourcepath="src"
32
		defaultexcludes="yes"
33
		destdir="${build-doc}/gvSIG-api"
34
		windowtitle="gvSIG API">
35
	</javadoc>
36
  </target>
37

  
38
  <target name="compile" depends="init"
39
        description="compile the source " >
40
    <!-- Compile the java code from ${src} into ${build} 
41
    <javac srcdir="${src}" destdir="${build}"/>-->
42
  </target>
43

  
44
  <target name="dist" depends="compile"
45
        description="generate the distribution" >
46
    <!-- Create the distribution directory -->
47
    <mkdir dir="${dist}"/>
48

  
49
    <!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
50
    <copy todir="${dist}/lib">
51
    	<fileset dir="./lib" includes="*.jar,*.zip"/>
52
    </copy>
53
    <copy todir="${dist}/lib">
54
    	<fileset dir="${fmapdir}/lib" includes="*.jar"/>
55
    </copy>
56
    <jar jarfile="${dist}/lib/fmap.jar" basedir="${fmapdir}/bin"/>
57
    <jar jarfile="${dist}/lib/${plugin}.jar" basedir="${build}"/>
58
    <copy file="config/config.xml" todir="${dist}"/>
59
    <copy file="config/about.htm" todir="${dist}"/>  	
60
    <copy file="build.number" todir="${dist}"/>
61
    <copy todir="${dist}">
62
    	<fileset dir="." includes="text*.properties"/>
63
    </copy>
64
    <copy todir="${dist}/images">
65
    	<fileset dir="images/" includes="*"/>
66
    </copy>
67

  
68
    <move todir="${extensionDir}/${plugin}/">
69
    	<fileset dir="${dist}" includes="**/**"/>
70
    </move>
71
  </target>
72

  
73
  <target name="makeZip"
74
  	description="Genera un zip con todo lo necesario para ejecutar gvSIG"
75
  	depends="dist">
76
    <!-- Create the distribution directory -->
77
    <mkdir dir="${dist}/${zipName}"/>
78
    <jar jarfile="${dist}/${zipName}/gvSIG.jar" basedir="../mdiApp/bin" manifest="../mdiApp/manifest.mf"/>
79
    <jar jarfile="${dist}/${zipName}/gvSIG.jar" basedir="../mdiApp/" includes="images/*" update="true"/>
80
    <jar jarfile="${dist}/${zipName}/gvSIG.jar" basedir="../mdiApp/" includes="plugin.dtd" update="true"/>
81
    <copy todir="${dist}/${zipName}">
82
		<fileset dir="../mdiApp">
83
			<include name="extensiones/${plugin}/**"/>
84
			<include name="extensiones/plugin.*"/>
85
			<include name="plugin.*"/>
86
		</fileset>  
87
		<!-- fileset dir="${dist}" includes="gvSIG.jar"/ -->
88
		<fileset dir="../mdiApp_v02_estable">
89
			<include name="lib/**"/>
90
		</fileset>  
91
		<fileset dir="distFiles" includes="**/**"/>
92
    </copy>
93
	<zip zipfile="${zipName}.zip">
94
		<fileset dir="${dist}">
95
			<include name="**/**"/>
96
		</fileset>
97
	</zip>
98
    <delete dir="${dist}"/>
99
  </target>
100

  
101
  <target name="clean"
102
        description="clean up" >
103
    <!-- Delete the ${build} and ${dist} directory trees -->
104
    <delete dir="${build}"/>
105
    <delete dir="${dist}"/>
106
  </target>
107
</project>
108

  
0 109

  
tags/Root_gvSIG04/applications/appgvSIG/.classpath
1
<?xml version="1.0" encoding="UTF-8"?>
2
<classpath>
3
	<classpathentry kind="src" path="src"/>
4
	<classpathentry kind="lib" path="lib/JimiProClasses.zip"/>
5
	<classpathentry kind="lib" path="lib/batik-awt-util.jar"/>
6
	<classpathentry kind="lib" path="lib/batik-ext.jar"/>
7
	<classpathentry kind="lib" path="lib/batik-gui-util.jar"/>
8
	<classpathentry kind="lib" path="lib/batik-gvt.jar"/>
9
	<classpathentry kind="lib" path="lib/batik-util.jar"/>
10
	<classpathentry kind="lib" path="lib/jep-2.24.jar"/>
11
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
12
	<classpathentry kind="lib" path="/Andami/lib/log4j-1.2.8.jar"/>
13
	<classpathentry kind="src" path="/Andami"/>
14
	<classpathentry kind="lib" path="/Andami/lib/iver-utiles.jar"/>
15
	<classpathentry kind="lib" path="/Andami/lib/castor-0.9.5.3-xml.jar"/>
16
	<classpathentry kind="lib" path="lib/batik-bridge.jar"/>
17
	<classpathentry kind="lib" path="lib/batik-transcoder.jar"/>
18
	<classpathentry kind="lib" path="lib/js.jar"/>
19
	<classpathentry kind="lib" path="lib/pdf-transcoder.jar"/>
20
	<classpathentry kind="lib" path="lib/batik-css.jar"/>
21
	<classpathentry kind="lib" path="lib/batik-dom.jar"/>
22
	<classpathentry kind="lib" path="lib/batik-extension.jar"/>
23
	<classpathentry kind="lib" path="lib/batik-parser.jar"/>
24
	<classpathentry kind="lib" path="lib/batik-script.jar"/>
25
	<classpathentry kind="lib" path="lib/batik-svg-dom.jar"/>
26
	<classpathentry kind="lib" path="lib/batik-svggen.jar"/>
27
	<classpathentry kind="lib" path="lib/batik-swing.jar"/>
28
	<classpathentry kind="lib" path="lib/batik-xml.jar"/>
29
	<classpathentry kind="lib" path="lib/xml-apis.jar"/>
30
	<classpathentry sourcepath="/jCMS" kind="lib" path="/FMap 03/lib/cms.jar"/>
31
	<classpathentry sourcepath="/DriverManager" kind="lib" path="/FMap 03/lib/driver-manager-1.0.jar"/>
32
	<classpathentry kind="lib" path="/FMap 03/lib/geoapi-SNAPSHOT.jar"/>
33
	<classpathentry kind="lib" path="/FMap 03/lib/gt2-legacy.jar"/>
34
	<classpathentry kind="lib" path="/FMap 03/lib/gt2-main.jar"/>
35
	<classpathentry kind="lib" path="/FMap 03/lib/gt2-postgis.jar"/>
36
	<classpathentry kind="lib" path="/FMap 03/lib/gt2-wfs.jar"/>
37
	<classpathentry kind="lib" path="/FMap 03/lib/gt2-wms.jar"/>
38
	<classpathentry kind="lib" path="/FMap 03/lib/jecw.jar"/>
39
	<classpathentry kind="lib" path="/FMap 03/lib/jogr.jar"/>
40
	<classpathentry kind="lib" path="/FMap 03/lib/units-0.01.jar"/>
41
	<classpathentry combineaccessrules="false" kind="src" path="/FMap 03"/>
42
	<classpathentry kind="lib" path="/FMap 03/lib/jecwcompress.jar"/>
43
	<classpathentry kind="lib" path="/FMap 03/lib/jgdal.jar"/>
44
	<classpathentry sourcepath="ECLIPSE_HOME/plugins/org.eclipse.jdt.source_3.0.0/src/org.junit_3.8.1/junitsrc.zip" kind="var" path="JUNIT_HOME/junit.jar"/>
45
	<classpathentry kind="lib" path="/FMap 03/lib/wmsclient.jar"/>
46
	<classpathentry kind="lib" path="/FMap 03/lib/jts-1.6.jar"/>
47
	<classpathentry kind="lib" path="/FMap 03/lib/gdbms-0.8-SNAPSHOT.jar"/>
48
	<classpathentry kind="lib" path="lib/itext-1.3.jar"/>
49
	<classpathentry kind="output" path="bin"/>
50
</classpath>
0 51

  
tags/Root_gvSIG04/applications/appgvSIG/gpl.txt
1
		    GNU GENERAL PUBLIC LICENSE
2
		       Version 2, June 1991
3

  
4
 Copyright (C) 1989, 1991 Free Software Foundation, Inc.
5
                       59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
6
 Everyone is permitted to copy and distribute verbatim copies
7
 of this license document, but changing it is not allowed.
8

  
9
			    Preamble
10

  
11
  The licenses for most software are designed to take away your
12
freedom to share and change it.  By contrast, the GNU General Public
13
License is intended to guarantee your freedom to share and change free
14
software--to make sure the software is free for all its users.  This
15
General Public License applies to most of the Free Software
16
Foundation's software and to any other program whose authors commit to
17
using it.  (Some other Free Software Foundation software is covered by
18
the GNU Library General Public License instead.)  You can apply it to
19
your programs, too.
20

  
21
  When we speak of free software, we are referring to freedom, not
22
price.  Our General Public Licenses are designed to make sure that you
23
have the freedom to distribute copies of free software (and charge for
24
this service if you wish), that you receive source code or can get it
25
if you want it, that you can change the software or use pieces of it
26
in new free programs; and that you know you can do these things.
27

  
28
  To protect your rights, we need to make restrictions that forbid
29
anyone to deny you these rights or to ask you to surrender the rights.
30
These restrictions translate to certain responsibilities for you if you
31
distribute copies of the software, or if you modify it.
32

  
33
  For example, if you distribute copies of such a program, whether
34
gratis or for a fee, you must give the recipients all the rights that
35
you have.  You must make sure that they, too, receive or can get the
36
source code.  And you must show them these terms so they know their
37
rights.
38

  
39
  We protect your rights with two steps: (1) copyright the software, and
40
(2) offer you this license which gives you legal permission to copy,
41
distribute and/or modify the software.
42

  
43
  Also, for each author's protection and ours, we want to make certain
44
that everyone understands that there is no warranty for this free
45
software.  If the software is modified by someone else and passed on, we
46
want its recipients to know that what they have is not the original, so
47
that any problems introduced by others will not reflect on the original
48
authors' reputations.
49

  
50
  Finally, any free program is threatened constantly by software
51
patents.  We wish to avoid the danger that redistributors of a free
52
program will individually obtain patent licenses, in effect making the
53
program proprietary.  To prevent this, we have made it clear that any
54
patent must be licensed for everyone's free use or not licensed at all.
55

  
56
  The precise terms and conditions for copying, distribution and
57
modification follow.
58

59
		    GNU GENERAL PUBLIC LICENSE
60
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61

  
62
  0. This License applies to any program or other work which contains
63
a notice placed by the copyright holder saying it may be distributed
64
under the terms of this General Public License.  The "Program", below,
65
refers to any such program or work, and a "work based on the Program"
66
means either the Program or any derivative work under copyright law:
67
that is to say, a work containing the Program or a portion of it,
68
either verbatim or with modifications and/or translated into another
69
language.  (Hereinafter, translation is included without limitation in
70
the term "modification".)  Each licensee is addressed as "you".
71

  
72
Activities other than copying, distribution and modification are not
73
covered by this License; they are outside its scope.  The act of
74
running the Program is not restricted, and the output from the Program
75
is covered only if its contents constitute a work based on the
76
Program (independent of having been made by running the Program).
77
Whether that is true depends on what the Program does.
78

  
79
  1. You may copy and distribute verbatim copies of the Program's
80
source code as you receive it, in any medium, provided that you
81
conspicuously and appropriately publish on each copy an appropriate
82
copyright notice and disclaimer of warranty; keep intact all the
83
notices that refer to this License and to the absence of any warranty;
84
and give any other recipients of the Program a copy of this License
85
along with the Program.
86

  
87
You may charge a fee for the physical act of transferring a copy, and
88
you may at your option offer warranty protection in exchange for a fee.
89

  
90
  2. You may modify your copy or copies of the Program or any portion
91
of it, thus forming a work based on the Program, and copy and
92
distribute such modifications or work under the terms of Section 1
93
above, provided that you also meet all of these conditions:
94

  
95
    a) You must cause the modified files to carry prominent notices
96
    stating that you changed the files and the date of any change.
97

  
98
    b) You must cause any work that you distribute or publish, that in
99
    whole or in part contains or is derived from the Program or any
100
    part thereof, to be licensed as a whole at no charge to all third
101
    parties under the terms of this License.
102

  
103
    c) If the modified program normally reads commands interactively
104
    when run, you must cause it, when started running for such
105
    interactive use in the most ordinary way, to print or display an
106
    announcement including an appropriate copyright notice and a
107
    notice that there is no warranty (or else, saying that you provide
108
    a warranty) and that users may redistribute the program under
109
    these conditions, and telling the user how to view a copy of this
110
    License.  (Exception: if the Program itself is interactive but
111
    does not normally print such an announcement, your work based on
112
    the Program is not required to print an announcement.)
113

114
These requirements apply to the modified work as a whole.  If
115
identifiable sections of that work are not derived from the Program,
116
and can be reasonably considered independent and separate works in
117
themselves, then this License, and its terms, do not apply to those
118
sections when you distribute them as separate works.  But when you
119
distribute the same sections as part of a whole which is a work based
120
on the Program, the distribution of the whole must be on the terms of
121
this License, whose permissions for other licensees extend to the
122
entire whole, and thus to each and every part regardless of who wrote it.
123

  
124
Thus, it is not the intent of this section to claim rights or contest
125
your rights to work written entirely by you; rather, the intent is to
126
exercise the right to control the distribution of derivative or
127
collective works based on the Program.
128

  
129
In addition, mere aggregation of another work not based on the Program
130
with the Program (or with a work based on the Program) on a volume of
131
a storage or distribution medium does not bring the other work under
132
the scope of this License.
133

  
134
  3. You may copy and distribute the Program (or a work based on it,
135
under Section 2) in object code or executable form under the terms of
136
Sections 1 and 2 above provided that you also do one of the following:
137

  
138
    a) Accompany it with the complete corresponding machine-readable
139
    source code, which must be distributed under the terms of Sections
140
    1 and 2 above on a medium customarily used for software interchange; or,
141

  
142
    b) Accompany it with a written offer, valid for at least three
143
    years, to give any third party, for a charge no more than your
144
    cost of physically performing source distribution, a complete
145
    machine-readable copy of the corresponding source code, to be
146
    distributed under the terms of Sections 1 and 2 above on a medium
147
    customarily used for software interchange; or,
148

  
149
    c) Accompany it with the information you received as to the offer
150
    to distribute corresponding source code.  (This alternative is
151
    allowed only for noncommercial distribution and only if you
152
    received the program in object code or executable form with such
153
    an offer, in accord with Subsection b above.)
154

  
155
The source code for a work means the preferred form of the work for
156
making modifications to it.  For an executable work, complete source
157
code means all the source code for all modules it contains, plus any
158
associated interface definition files, plus the scripts used to
159
control compilation and installation of the executable.  However, as a
160
special exception, the source code distributed need not include
161
anything that is normally distributed (in either source or binary
162
form) with the major components (compiler, kernel, and so on) of the
163
operating system on which the executable runs, unless that component
164
itself accompanies the executable.
165

  
166
If distribution of executable or object code is made by offering
167
access to copy from a designated place, then offering equivalent
168
access to copy the source code from the same place counts as
169
distribution of the source code, even though third parties are not
170
compelled to copy the source along with the object code.
171

172
  4. You may not copy, modify, sublicense, or distribute the Program
173
except as expressly provided under this License.  Any attempt
174
otherwise to copy, modify, sublicense or distribute the Program is
175
void, and will automatically terminate your rights under this License.
176
However, parties who have received copies, or rights, from you under
177
this License will not have their licenses terminated so long as such
178
parties remain in full compliance.
179

  
180
  5. You are not required to accept this License, since you have not
181
signed it.  However, nothing else grants you permission to modify or
182
distribute the Program or its derivative works.  These actions are
183
prohibited by law if you do not accept this License.  Therefore, by
184
modifying or distributing the Program (or any work based on the
185
Program), you indicate your acceptance of this License to do so, and
186
all its terms and conditions for copying, distributing or modifying
187
the Program or works based on it.
188

  
189
  6. Each time you redistribute the Program (or any work based on the
190
Program), the recipient automatically receives a license from the
191
original licensor to copy, distribute or modify the Program subject to
192
these terms and conditions.  You may not impose any further
193
restrictions on the recipients' exercise of the rights granted herein.
194
You are not responsible for enforcing compliance by third parties to
195
this License.
196

  
197
  7. If, as a consequence of a court judgment or allegation of patent
198
infringement or for any other reason (not limited to patent issues),
199
conditions are imposed on you (whether by court order, agreement or
200
otherwise) that contradict the conditions of this License, they do not
201
excuse you from the conditions of this License.  If you cannot
202
distribute so as to satisfy simultaneously your obligations under this
203
License and any other pertinent obligations, then as a consequence you
204
may not distribute the Program at all.  For example, if a patent
205
license would not permit royalty-free redistribution of the Program by
206
all those who receive copies directly or indirectly through you, then
207
the only way you could satisfy both it and this License would be to
208
refrain entirely from distribution of the Program.
209

  
210
If any portion of this section is held invalid or unenforceable under
211
any particular circumstance, the balance of the section is intended to
212
apply and the section as a whole is intended to apply in other
213
circumstances.
214

  
215
It is not the purpose of this section to induce you to infringe any
216
patents or other property right claims or to contest validity of any
217
such claims; this section has the sole purpose of protecting the
218
integrity of the free software distribution system, which is
219
implemented by public license practices.  Many people have made
220
generous contributions to the wide range of software distributed
221
through that system in reliance on consistent application of that
222
system; it is up to the author/donor to decide if he or she is willing
223
to distribute software through any other system and a licensee cannot
224
impose that choice.
225

  
226
This section is intended to make thoroughly clear what is believed to
227
be a consequence of the rest of this License.
228

229
  8. If the distribution and/or use of the Program is restricted in
230
certain countries either by patents or by copyrighted interfaces, the
231
original copyright holder who places the Program under this License
232
may add an explicit geographical distribution limitation excluding
233
those countries, so that distribution is permitted only in or among
234
countries not thus excluded.  In such case, this License incorporates
235
the limitation as if written in the body of this License.
236

  
237
  9. The Free Software Foundation may publish revised and/or new versions
238
of the General Public License from time to time.  Such new versions will
239
be similar in spirit to the present version, but may differ in detail to
240
address new problems or concerns.
241

  
242
Each version is given a distinguishing version number.  If the Program
243
specifies a version number of this License which applies to it and "any
244
later version", you have the option of following the terms and conditions
245
either of that version or of any later version published by the Free
246
Software Foundation.  If the Program does not specify a version number of
247
this License, you may choose any version ever published by the Free Software
248
Foundation.
249

  
250
  10. If you wish to incorporate parts of the Program into other free
251
programs whose distribution conditions are different, write to the author
252
to ask for permission.  For software which is copyrighted by the Free
253
Software Foundation, write to the Free Software Foundation; we sometimes
254
make exceptions for this.  Our decision will be guided by the two goals
255
of preserving the free status of all derivatives of our free software and
256
of promoting the sharing and reuse of software generally.
257

  
258
			    NO WARRANTY
259

  
260
  11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN
262
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS
266
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU.  SHOULD THE
267
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
REPAIR OR CORRECTION.
269

  
270
  12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
POSSIBILITY OF SUCH DAMAGES.
279

  
280
		     END OF TERMS AND CONDITIONS
281

282
	    How to Apply These Terms to Your New Programs
283

  
284
  If you develop a new program, and you want it to be of the greatest
285
possible use to the public, the best way to achieve this is to make it
286
free software which everyone can redistribute and change under these terms.
287

  
288
  To do so, attach the following notices to the program.  It is safest
289
to attach them to the start of each source file to most effectively
290
convey the exclusion of warranty; and each file should have at least
291
the "copyright" line and a pointer to where the full notice is found.
292

  
293
    <one line to give the program's name and a brief idea of what it does.>
294
    Copyright (C) <year>  <name of author>
295

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

  
301
    This program is distributed in the hope that it will be useful,
302
    but WITHOUT ANY WARRANTY; without even the implied warranty of
303
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
304
    GNU General Public License for more details.
305

  
306
    You should have received a copy of the GNU General Public License
307
    along with this program; if not, write to the Free Software
308
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
309

  
310

  
311
Also add information on how to contact you by electronic and paper mail.
312

  
313
If the program is interactive, make it output a short notice like this
314
when it starts in an interactive mode:
315

  
316
    Gnomovision version 69, Copyright (C) year name of author
317
    Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
318
    This is free software, and you are welcome to redistribute it
319
    under certain conditions; type `show c' for details.
320

  
321
The hypothetical commands `show w' and `show c' should show the appropriate
322
parts of the General Public License.  Of course, the commands you use may
323
be called something other than `show w' and `show c'; they could even be
324
mouse-clicks or menu items--whatever suits your program.
325

  
326
You should also get your employer (if you work as a programmer) or your
327
school, if any, to sign a "copyright disclaimer" for the program, if
328
necessary.  Here is a sample; alter the names:
329

  
330
  Yoyodyne, Inc., hereby disclaims all copyright interest in the program
331
  `Gnomovision' (which makes passes at compilers) written by James Hacker.
332

  
333
  <signature of Ty Coon>, 1 April 1989
334
  Ty Coon, President of Vice
335

  
336
This General Public License does not permit incorporating your program into
337
proprietary programs.  If your program is a subroutine library, you may
338
consider it more useful to permit linking proprietary applications with the
339
library.  If this is what you want to do, use the GNU Library General
340
Public License instead of this License.
0 341

  
tags/Root_gvSIG04/applications/appgvSIG/jalopy-config.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2
<jalopy>
3
    <general>
4
        <compliance>
5
            <version>14</version>
6
        </compliance>
7
        <style>
8
            <description>Sun Java Coding Convention</description>
9
            <name>Sun</name>
10
        </style>
11
    </general>
12
    <inspector>
13
        <enable>false</enable>
14
        <naming>
15
            <classes>
16
                <abstract>[A-Z][a-zA-Z0-9]+</abstract>
17
                <general>[A-Z][a-zA-Z0-9]+</general>
18
            </classes>
19
            <fields>
20
                <default>[a-z][\w]+</default>
21
                <defaultStatic>[a-z][\w]+</defaultStatic>
22
                <defaultStaticFinal>[a-zA-Z][\w]+</defaultStaticFinal>
23
                <private>[a-z][\w]+</private>
24
                <privateStatic>[a-z][\w]+</privateStatic>
25
                <privateStaticFinal>[a-zA-Z][\w]+</privateStaticFinal>
26
                <protected>[a-z][\w]+</protected>
27
                <protectedStatic>[a-z][\w]+</protectedStatic>
28
                <protectedStaticFinal>[a-zA-Z][\w]+</protectedStaticFinal>
29
                <public>[a-z][\w]+</public>
30
                <publicStatic>[a-z][\w]+</publicStatic>
31
                <publicStaticFinal>[a-zA-Z][\w]+</publicStaticFinal>
32
            </fields>
33
            <interfaces>[A-Z][a-zA-Z0-9]+</interfaces>
34
            <labels>\w+</labels>
35
            <methods>
36
                <default>[a-z][\w]+</default>
37
                <defaultStatic>[a-z][\w]+</defaultStatic>
38
                <defaultStaticFinal>[a-z][\w]+</defaultStaticFinal>
39
                <private>[a-z][\w]+</private>
40
                <privateStatic>[a-z][\w]+</privateStatic>
41
                <privateStaticFinal>[a-z][\w]+</privateStaticFinal>
42
                <protected>[a-z][\w]+</protected>
43
                <protectedStatic>[a-z][\w]+</protectedStatic>
44
                <protectedStaticFinal>[a-z][\w]+</protectedStaticFinal>
45
                <public>[a-z][\w]+</public>
46
                <publicStatic>[a-z][\w]+</publicStatic>
47
                <publicStaticFinal>[a-z][\w]+</publicStaticFinal>
48
            </methods>
49
            <packages>[a-z]+(?:\.[a-z]+)*</packages>
50
            <parameters>
51
                <default>[a-z][\w]+</default>
52
                <final>[a-z][\w]+</final>
53
            </parameters>
54
            <variables>[a-z][\w]*</variables>
55
        </naming>
56
        <tips>
57
            <adhereToNamingConvention>false</adhereToNamingConvention>
58
            <alwaysOverrideHashCode>false</alwaysOverrideHashCode>
59
            <avoidThreadGroups>false</avoidThreadGroups>
60
            <declareCollectionComment>false</declareCollectionComment>
61
            <dontIgnoreExceptions>false</dontIgnoreExceptions>
62
            <dontSubstituteObjectEquals>false</dontSubstituteObjectEquals>
63
            <neverDeclareException>false</neverDeclareException>
64
            <neverDeclareThrowable>false</neverDeclareThrowable>
65
            <neverInvokeWaitOutsideLoop>false</neverInvokeWaitOutsideLoop>
66
            <neverReturnZeroArrays>false</neverReturnZeroArrays>
67
            <neverUseEmptyFinally>false</neverUseEmptyFinally>
68
            <obeyContractEquals>false</obeyContractEquals>
69
            <overrideToString>false</overrideToString>
70
            <referToObjectsByInterface>false</referToObjectsByInterface>
71
            <replaceStructureWithClass>false</replaceStructureWithClass>
72
            <stringLiterallI18n>false</stringLiterallI18n>
73
            <useInterfaceOnlyForTypes>false</useInterfaceOnlyForTypes>
74
            <wrongCollectionComment>false</wrongCollectionComment>
75
        </tips>
76
    </inspector>
77
    <internal>
78
        <version>6</version>
79
    </internal>
80
    <messages>
81
        <priority>
82
            <general>30000</general>
83
            <parser>30000</parser>
84
            <parserJavadoc>30000</parserJavadoc>
85
            <printer>30000</printer>
86
            <printerJavadoc>30000</printerJavadoc>
87
            <transform>30000</transform>
88
        </priority>
89
        <showErrorStackTrace>true</showErrorStackTrace>
90
    </messages>
91
    <misc>
92
        <threadCount>1</threadCount>
93
    </misc>
94
    <printer>
95
        <alignment>
96
            <methodCallChain>true</methodCallChain>
97
            <parameterMethodDeclaration>false</parameterMethodDeclaration>
98
            <ternaryOperator>true</ternaryOperator>
99
            <variableAssignment>false</variableAssignment>
100
            <variableIdentifier>false</variableIdentifier>
101
        </alignment>
102
        <backup>
103
            <directory>bak</directory>
104
            <level>0</level>
105
        </backup>
106
        <blanklines>
107
            <after>
108
                <block>1</block>
109
                <braceLeft>0</braceLeft>
110
                <class>1</class>
111
                <declaration>0</declaration>
112
                <footer>1</footer>
113
                <header>0</header>
114
                <interface>1</interface>
115
                <lastImport>2</lastImport>
116
                <method>1</method>
117
                <package>1</package>
118
            </after>
119
            <before>
120
                <block>1</block>
121
                <braceRight>0</braceRight>
122
                <caseBlock>1</caseBlock>
123
                <comment>
124
                    <javadoc>1</javadoc>
125
                    <multiline>1</multiline>
126
                    <singleline>1</singleline>
127
                </comment>
128
                <controlStatement>1</controlStatement>
129
                <declaration>1</declaration>
130
                <footer>0</footer>
131
                <header>0</header>
132
            </before>
133
            <keepUpTo>1</keepUpTo>
134
        </blanklines>
135
        <braces>
136
            <empty>
137
                <cuddle>false</cuddle>
138
                <insertStatement>false</insertStatement>
139
            </empty>
140
            <insert>
141
                <dowhile>false</dowhile>
142
                <for>false</for>
143
                <ifelse>true</ifelse>
144
                <while>false</while>
145
            </insert>
146
            <remove>
147
                <block>true</block>
148
                <dowhile>false</dowhile>
149
                <for>false</for>
150
                <ifelse>false</ifelse>
151
                <while>false</while>
152
            </remove>
153
            <treatDifferent>
154
                <methodClass>false</methodClass>
155
                <methodClassIfWrapped>false</methodClassIfWrapped>
156
            </treatDifferent>
157
        </braces>
158
        <chunks>
159
            <blanklines>true</blanklines>
160
            <comments>true</comments>
161
        </chunks>
162
        <comments>
163
            <format>
164
                <multiline>true</multiline>
165
            </format>
166
            <javadoc>
167
                <check>
168
                    <innerclass>true</innerclass>
169
                    <tags>true</tags>
170
                    <throwsTags>true</throwsTags>
171
                </check>
172
                <fieldsShort>true</fieldsShort>
173
                <generate>
174
                    <class>23</class>
175
                    <constructor>23</constructor>
176
                    <field>1</field>
177
                    <method>23</method>
178
                </generate>
179
                <parseComments>true</parseComments>
180
                <tags>
181
                    <in-line />
182
                    <standard />
183
                </tags>
184
                <templates>
185
                    <class>/**| * DOCUMENT ME!| *| * @author $author$| */</class>
186
                    <constructor>
187
                        <bottom> */</bottom>
188
                        <exception> * @throws $exceptionType$ DOCUMENT ME!</exception>
189
                        <param> * @param $paramType$ DOCUMENT ME!</param>
190
                        <top>/**| * Crea un nuevo $objectType$.</top>
191
                    </constructor>
192
                    <interface>/**| * DOCUMENT ME!| *| * @author $author$| */</interface>
193
                    <method>
194
                        <bottom> */</bottom>
195
                        <exception> * @throws $exceptionType$ DOCUMENT ME!</exception>
196
                        <param> * @param $paramType$ DOCUMENT ME!</param>
197
                        <return> * @return DOCUMENT ME!</return>
198
                        <top>/**| * DOCUMENT ME!</top>
199
                    </method>
200
                    <variable>/**| * DOCUMENT ME!| */</variable>
201
                </templates>
202
            </javadoc>
203
            <remove>
204
                <javadoc>false</javadoc>
205
                <multiline>false</multiline>
206
                <singleline>false</singleline>
207
            </remove>
208
            <separator>
209
                <fillCharacter>-</fillCharacter>
210
                <insert>false</insert>
211
                <insertRecursive>false</insertRecursive>
212
                <text>
213
                    <class>Inner Classes</class>
214
                    <constructor>Constructors</constructor>
215
                    <field>Instance fields</field>
216
                    <initializer>Instance initializers</initializer>
217
                    <interface>Inner Interfaces</interface>
218
                    <method>Methods</method>
219
                    <static>Static fields/initializers</static>
220
                </text>
221
            </separator>
222
        </comments>
223
        <environment />
224
        <footer>
225
            <keys />
226
            <smartMode>0</smartMode>
227
            <use>false</use>
228
        </footer>
229
        <header>
230
            <keys />
231
            <smartMode>0</smartMode>
232
            <use>false</use>
233
        </header>
234
        <history>
235
            <policy>disabled</policy>
236
        </history>
237
        <imports>
238
            <grouping>
239
                <defaultDepth>3</defaultDepth>
240
                <packages>*:0|gnu:2|java:2|javax:2</packages>
241
            </grouping>
242
            <policy>disabled</policy>
243
            <sort>true</sort>
244
        </imports>
245
        <indentation>
246
            <caseFromSwitch>true</caseFromSwitch>
247
            <continuation>
248
                <block>true</block>
249
                <operator>false</operator>
250
            </continuation>
251
            <firstColumnComments>true</firstColumnComments>
252
            <label>false</label>
253
            <policy>
254
                <deep>false</deep>
255
            </policy>
256
            <sizes>
257
                <braceCuddled>1</braceCuddled>
258
                <braceLeft>1</braceLeft>
259
                <braceRight>0</braceRight>
260
                <braceRightAfter>1</braceRightAfter>
261
                <continuation>4</continuation>
262
                <deep>55</deep>
263
                <extends>-1</extends>
264
                <general>4</general>
265
                <implements>-1</implements>
266
                <leading>0</leading>
267
                <tabs>8</tabs>
268
                <throws>-1</throws>
269
                <trailingComment>1</trailingComment>
270
            </sizes>
271
            <tabs>
272
                <enable>false</enable>
273
                <onlyLeading>false</onlyLeading>
274
            </tabs>
275
        </indentation>
276
        <misc>
277
            <arrayBracketsAfterIdent>false</arrayBracketsAfterIdent>
278
            <forceFormatting>false</forceFormatting>
279
            <insertExpressionParentheses>true</insertExpressionParentheses>
280
            <insertLoggingConditional>false</insertLoggingConditional>
281
            <insertTrailingNewline>true</insertTrailingNewline>
282
            <insertUID>false</insertUID>
283
        </misc>
284
        <sorting>
285
            <declaration>
286
                <class>false</class>
287
                <constructor>false</constructor>
288
                <enable>true</enable>
289
                <interface>false</interface>
290
                <method>false</method>
291
                <order>static|field|initializer|constructor|method|interface|class</order>
292
                <variable>false</variable>
293
            </declaration>
294
            <modifier>
295
                <enable>false</enable>
296
                <order>public|protected|private|abstract|static|final|synchronized|transient|volatile|native|strictfp</order>
297
            </modifier>
298
        </sorting>
299
        <whitespace>
300
            <after>
301
                <comma>true</comma>
302
                <semicolon>true</semicolon>
303
                <typeCast>true</typeCast>
304
            </after>
305
            <before>
306
                <braces>true</braces>
307
                <brackets>false</brackets>
308
                <bracketsTypes>false</bracketsTypes>
309
                <caseColon>false</caseColon>
310
                <operator>
311
                    <not>false</not>
312
                </operator>
313
                <parentheses>
314
                    <methodCall>false</methodCall>
315
                    <methodDeclaration>false</methodDeclaration>
316
                    <statement>true</statement>
317
                </parentheses>
318
            </before>
319
            <padding>
320
                <braces>true</braces>
321
                <brackets>false</brackets>
322
                <operator>
323
                    <assignment>true</assignment>
324
                    <bitwise>true</bitwise>
325
                    <logical>true</logical>
326
                    <mathematical>true</mathematical>
327
                    <relational>true</relational>
328
                    <shift>true</shift>
329
                </operator>
330
                <parenthesis>false</parenthesis>
331
                <typeCast>false</typeCast>
332
            </padding>
333
        </whitespace>
334
        <wrapping>
335
            <always>
336
                <after>
337
                    <arrayElement>0</arrayElement>
338
                    <braceRight>false</braceRight>
339
                    <extendsTypes>false</extendsTypes>
340
                    <implementsTypes>false</implementsTypes>
341
                    <label>true</label>
342
                    <methodCallChained>false</methodCallChained>
343
                    <ternaryOperator>
344
                        <first>false</first>
345
                        <second>false</second>
346
                    </ternaryOperator>
347
                    <throwsTypes>false</throwsTypes>
348
                </after>
349
                <before>
350
                    <braceLeft>false</braceLeft>
351
                    <extends>false</extends>
352
                    <implements>false</implements>
353
                    <throws>false</throws>
354
                </before>
355
                <parameter>
356
                    <methodCall>false</methodCall>
357
                    <methodCallNested>false</methodCallNested>
358
                    <methodDeclaration>false</methodDeclaration>
359
                </parameter>
360
            </always>
361
            <general>
362
                <beforeOperator>false</beforeOperator>
363
                <enable>true</enable>
364
                <lineLength>80</lineLength>
365
            </general>
366
            <ondemand>
367
                <after>
368
                    <assignment>false</assignment>
369
                    <leftParenthesis>false</leftParenthesis>
370
                    <parameter>false</parameter>
371
                    <types>
372
                        <extends>false</extends>
373
                        <implements>false</implements>
374
                        <throws>false</throws>
375
                    </types>
376
                </after>
377
                <before>
378
                    <rightParenthesis>false</rightParenthesis>
379
                </before>
380
                <groupingParentheses>false</groupingParentheses>
381
            </ondemand>
382
        </wrapping>
383
    </printer>
384
</jalopy>
385

  
0 386

  
tags/Root_gvSIG04/applications/appgvSIG/text_en.properties
1
#text_en.properties
2
__espacio_vertical=Vertical spacing\:
3
__lineas=lines
4
__proyeccion_actual=Current projection\:
5
__redimensionar_texto_escala=Resize the text to the view scale
6
__seleccion_de_fuente=Font selection
7
_(Etiquetas_estandar)=(Standard labels)
8
_(Intervalos)=(Intervals)
9
_(Simbolo_unico)=(Unique symbols)
10
_(Valores_unicos)=(Unique values)
11
(escala_m\u00E1xima)=(maximum scale)                
12
(escala_m\u00EDnima)=(minimum scale)
13
A0=A0
14
A1=A1
15
A2=A2
16
A3=A3
17
A4=A4
18
A5=A5
19
A6=A6
20
abajo=Down
21
abrir=Open
22
Abrir_Imagen=Open image
23
abrir_proyecto=Open project
24
abrir_tooltip=Open an existing project
25
Abrir_una_capa=Open Layer
26
Accion_Predefinida=Predefined Action
27
Aceptar=OK
28
acerca_de=About...
29
activar_regla=Activate ruler
30
activos=Active
31
adjust_transparency=Set Transparency
32
agrupar=Group
33
agrupar_capas=Group layers
34
agrupar_graficos=Group graphics
35
agrupar_linea=Group graphic line with graphics  
36
Ajustar_cobertura_wcs=WCS coverage settings
37
Ajustar_transparencia=Adjust Transparency
38
ajustes_linea_grafica=Graphic line settings
39
Al_leer_la_leyenda=Reading legend
40
alerta=Warning
41
alias=Alias
42
alineamiento=Alignment\:
43
alinear=Align
44
alinear_graficos=Align graphics
45
alta=High
46
alto=Height
47
altura=Height\:
48
Altura_fija_de_texto=Fixed text height
49
ambito=Scope
50
Anadir=Add
51
Anadir_al_conjunto=Add to set
52
Anadir_capa=Add layer
53
Anadir_Capa=Add Layer
54
Anadir_todos=Add all
55
ancho=Width
56
ancho_alto=Wide X Height
57
Ancho_Contorno=Outline Width
58
Ancho_de_l\u00EDnea=Line Width
59
anchura=Width\:
60
angulo_rotacion=Angle of rotation\:
61
anterior=Previous
62
Anterior=Previous
63
Aplicar=Apply
64
Archivo=File
65
Archivos_de_Disco=Disc files
66
area_trabajo=Working area
67
arriba=Up
68
ascending_order=Ascending order
69
ascending_order_tooltip=Sort by selected field in ascending order
70
automatico=Automatic
71
Ayuda=Help
72
back=Previous
73
Back=Previous
74
background_color=Background color
75
baja=Low
76
Bajar_capa=Move layer down
77
bandas=Bands
78
bands=Bands
79
barra=Bar\:
80
bd=db
81
bmp=BMP files
82
Bold=Bold
83
borra_seleccion=Del selection
84
borrador=Draft
85
borrar=Delete
86
Calcular_intervalos=Compute intervals
87
calidad=Quality
88
Cambio_Color=Change Color
89
Cambio_de_estilo=Change style
90
Cambio_Estilo=Change Style
91
cambio_nombre=Name change
92
Cambios_de_estilo=Style changes
93
campo=Field
94
Campo=Field
95
campo_altura_texto=Text field heigth\:
96
Campo_clasifica=Classification field
97
Campo_de_clasificacion=Classification field
98
campo_de_documentos_asociados=Associated documents field
99
Campo_de_etiquetado=Labelling field
100
Campos=Fields
101
cancel=Cancel
102
Cancel=Cancel
103
Cancelar=Cancel
104
Capa=Layer
105
Capas=Layers
106
Capas_del_localizador=Locator layers
107
capaWMS=WMSLayer
108
cargar_leyenda=Load legend
109
causa_error_desconocida=Unexpected server error
110
Centimetros=Centimeters
111
cerrar=Close
112
Cerrar=Close
113
circulo=Circle
114
Circulo=Circle
115
Coberturas=Coverages
116
coincidir_tama\u00F1o=Match size\:
117
colocar_a_margenes=Place with reference to margins.
118
colocar_alrededor_seleccionados=Place around the graphics selected.  
119
colocar_alrededor_todos=Place around all the graphics.  
120
colocar_delante=Bring to front
121
colocar_detras=Place back
122
color=Color\:
123
Color_Contorno=Color Outline
124
Color_de_la_L\u00EDnea=Line Color
125
Color_de_Relleno=Fill color\: 
126
Color_final=End color\: 
127
Color_inicial=Initial color\: 
128
Color_inicio=Begin color
129
color_texto=Text color\:
130
comentarios=Comments
131
configuracion_andami_tooltip=Andami configuration
132
configurar=Configure
133
configurar_localizador=Configure Locator Map
134
Configurar_localizador=Configure locator ...
135
confirmar_borrar=The element will be removed. Are you sure?
136
conservar_escala_visualizacion=Maintain viewing scale
137
coor_geograficas=Geografical coordinates
138
creation_date=Creation date
139
Cruz=Cross
140
Cuadrado=Square
141
cuando_activo=When active
142
Dado_un_campo_de_atributos=Given a atribute field
143
debe_estar_activada=Must be active
144
Derecha=Right
145
Derecho=Right
146
desagrupar=Ungroup
147
desagrupar_graficos=Ungroup graphics
148
descending_order=Descending order
149
descending_order_tooltip=Sort by selected field in descending order
150
descripcion=Description
151
Descripcion=Description
152
desde_arriba=From top\:
153
desde_izquierda=From left\:
154
Desplazamiento=Displacement
155
desviacion_tipica=Standard deviation
156
detalles=Details
157
Detalles=Details
158
DGNFiles=DGNFiles
159
distance_units=Measuring units
160
distribuir=Distributing\:
161
divisiones_izquierda=Divisions to the left
162
documentos_existentes=Existing documents
163
driver=driver
164
Dxffiles=DXFFiles
165
Editar_leyenda=Edit style
166
editar_propiedades=Edit properties
167
el_numero_maximo_de_intervalos_para_este_campo_es=The maximum number of intervals for this field is
168
Elegir_Color=Select Color
169
Elegir_Fuente=Select Font
170
Eliminar=Delete
171
eliminar_capa=Delete Layer
172
eliminar_extremos=Remove edges
173
en_el_mapa=In the Layout\:
174
En_metros=In meters
175
En_pixels=In pixels
176
Encuadre=Zoom
177
Encuadre_Vista=View frame Pan
178
enlace_vivo=Active link
179
Enlazar_a_fichero_de_texto=Link to text files
180
Enlazar_a_ficheros_de_imagen=Link to image files
181
equal_intervals=Equal intervals
182
Error_abriendo_el_fichero=Error opening file
183
Error_accediendo_a_los_datos=Error getting data
184
error_comunicacion_servidor=An error connecting to server
185
error_escritura=Can't write file
186
Error_guardando_la_leyenda=Error saving legend
187
error_lectura=Can't read file
188
escala=Scale
189
Escala=Scale
190
escala_maxima=maximum scale
191
Escala_Maxima=Maximum scale
192
escala_minima=minimum scale
193
Escala_Minima=Minimum scale
194
escala_usuario=Scale specified by the user
195
espaciado_horizontal=Horizontal grid spacing
196
espaciado_vertical=Vertical grid spacing
197
espacio=Space\:
198
espere=Please wait
199
estadisticas=Statistics
200
este_por_debajo_de_=To be under 
201
este_por_encima_de=To be over
202
Estilo=Style\: 
203
Etiqueta=Label
204
Etiquetado=Labelling
205
Etiquetados=Labelling
206
etiquetas=Lables\:
207
Etiquetas_estandar=Standard labels
208
Examinar=Browse
209
exportar=Export
210
exportar_a=Export to...
211
exportar_pdf=Export to pdf
212
extension=Extension
213
Extent=Extent
214
extents_no_coincidentes=Extent of the selected image does not match with the origin image. 
215
Fichero=File
216
fichero_existe=Selected file already exists as layer band
217
fichero_incorrecto=Invalid file
218
filtro=Filter
219
finalizar=Finish
220
finish=Finish
221
Font=Font
222
formato=Format
223
Formato=Format
224
formato_incorrecto=Invalid format
225
fuente=Font
226
Fuente=Font
227
General=General
228
Generar_Intervalos=Generate Intervals
229
gestion_encuadre=Management of Fit in
230
grados=Degrees\:
231
Gr\u00E1ficos=Graphics
232
Grosor_de_linea=Line width
233
grosor_linea=Line width\:
234
guardado=Saved in
235
Guardar=Save
236
guardar_cambios=Save changes?
237
guardar_como=Save as...
238
Guardar_el_zoom_actual=Save current zoom
239
guardar_leyenda=Save legend
240
Guardar_leyenda=Save Style
241
guardar_proyecto=Save project
242
guardar_tooltip=Save changes to project
243
Habilitar_etiquetado=Enable labelling
244
hasta=to
245
Herramientas=Tools
246
Herramientas_vista=View tools
247
Hiperenlace=Hyperlink
248
horizontal=Horizontal
249
host=computer
250
Identificar_Resultados=Identify Results
251
Igual_que_la_impresora=Same as printer
252
igual_todos_lados=Equal displacement for all sides.
253
imagen=Image
254
Imagen=Image
255
importar=Import
256
importar_extent=Import actual view extent
257
Imprimir=Print
258
Inferior=Lower
259
info=Info
260
infobreak=It shows the elements of the layer using a range of colors.  
261
infodef=It shows all the elements of a layer using the same symbol.  
262
informacion=Information
263
Informaci\u00F3n=Information
264
infovalue=It shows elements of the layer using a symbol for each value. 
265
Inicializando=Initializing
266
Insertar=Insert
267
insertar_circulo=Insert Circle
268
insertar_escala=Insert Scale
269
insertar_imagen=Insert Image
270
insertar_leyenda=Insert Legend
271
insertar_linea=Insert Line
272
insertar_poligono=Insert Polygon
273
insertar_punto=Insert Point
274
insertar_recta=Insert Straight line
275
insertar_rectangulo=Insert Rectangle
276
insertar_texto=Insert Text
277
insertar_vista=Insert View
278
Intervalo=Interval
279
Intervalos=Intervals
280
Intervalos_equidistantes=Equality Intervals
281
Intervalos_por_rupturas_naturales=Intervals by natural breaks.
282
introduce_nombre=Type the new name
283
Italic=Italic
284
Izquierda=Left
285
Izquierdo=Left
286
join=Join
287
jpg=JPEG files
288
kilometros=Kilometers
289
Kilometros=Kilometers
290
leyenda=Legend
291
Leyenda=Legend
292
leyenda_campo_unido=You are using a field of the union either in the legend or in the labelling. Please, change the legend before removing the union
293
Leyenda_Por_Defecto=Default legend
294
linea=Line
295
Linea=Line
296
linea_grafica=Graphic line
297
lineal_directo=Direct Linear
298
linf_der=lower right X
299
link=Link
300
Link=Link
301
Localizador_por_atributo=Locate by attribute
302
lppp=ppi
303
lsup_izq=Upper left X
304
malla_activada=Active grid
305
mantener_intervalo=Keep interval
306
map_units=Map units
307
Mapa=Map
308
mapas=Maps
309
marco=Frame
310
marco_vista=Framework of the view
311
margenes=Margins\:
312
M\u00E1s_100=The number of values is higher than 100, and does not provide information
313
mas_de_100_simbolos=More than 100 symbols usually do not give any information in a map
314
maximo=Maximum
315
media=Mean
316
medir_area=Measure area
317
medir_distancias=Measure distances
318
metros=Meters
319
Metros=Meters
320
Milimetros=Milimeters
321
Millas=Miles
322
minimo=Minimum
323
modification_date=Modification date
324
mosaico_tooltip=Mosaic
325
Mostrar_Contorno=Show Outline
326
mostrar_descripcion=Show description
327
Mostrar_siempre=To show always
328
mostrar_unidades=Show units
329
Muestra_atributos=Show attributes of selected layers.
330
muestra_consola_tooltip=Shows the console
331
Muestra_los_atributos_de_las_capas_seleccionadas=Show selected layers attributes
332
muestra_los_elementos_de_la_capa_usando_un_simbolo_por_cada_valor_unico=Show the layers features using a each unique value symbol
333
Muestra_los_elementos_de_la_capa_usando_una_gama_de_colores_en_funcion_del_valor_de_un_determinado_campo_de_atributos=Show the layers features using a range of color according to values of a attribute field
334
Muestra_todos_los_elementos_de_una_capa_usando_el_mismo_simbolo=Show all the items of a layer using the same symbol
335
natural_intervals=Natural intervals
336
necesita_un_tema_activo=Needs an active theme
337
necesita_un_tema_vectorial_activo=Needs an active vectorial theme
338
next=Next
339
Next=Next
340
ninguna_impresora_configurada=No printer set
341
Nivel_de_transparencia=Transparency Level
342
no_activos=Not active
343
No_de_intervalos=Nr of intervals
344
No_mostrar=Do not show the layer when the scale 
345
No_mostrar_la_capa_cuando_la_escala=Don't show the layer when the scale
346
No_reconocido=Not recognized
347
No_Shape=This Layer is not Shape type
348
no_visibles=Not visible
349
nombre=Name
350
Nombre=Name
351
nombre_capa=Name of the layer
352
nombre_cobertura=Coverage's name
353
Nombre_que_se_le_dara_al_zoom=Name for the zoom
354
nombre_sesion=Session name
355
Nombres=Names
356
normal=Normal
357
Nueva_tabla=New Table
358
nuevo=New
359
Nuevo_conjunto=New set
360
nuevo_proyecto=New project
361
nuevo_tamano_fuente=New size of font\:
362
nuevo_tooltip=Create a new project
363
num_bandas=Band numbers
364
N\u00FAm_intervalos=Number of Intervals
365
numero_incorrecto=Invalid value
366
ok=Ok
367
opacidad=Opacity
368
orientacion=Orientation\:
369
Origen_de_datos=Data origin
370
Origen_de_Datos=Data Origin\: 
371
Otros=Other
372
owner=Owner
373
Parametros=Parameters
374
path=Path
375
Perimetro=Perimeter
376
Permite_etiquetar_los_elementos_del_mapa_con_el_valor_de_un_determinado_campo=Allows to set label of the map elements with the value of a particular field 
377
Personalizado=Custom
378
Pies=Feet
379
pixeles=pixels
380
Plain=Plain
381
png=PNG files
382
poligono=Poligon
383
poner_temas_a=Set themes to ...  
384
por_debajo_de=below\: 
385
por_encima_de=above\:
386
Por_favor_active_el_tema=Please activate the layer
387
posicion_linea=Position of the line
388
preparar_pagina=Prepare page
389
Preparar_pagina=Prepare Page
390
presentacion=Presentation
391
Previsualizacion=Preview
392
Previsualizacion_de_simbolo=Symbol preview
393
propiedades=Properties
394
Propiedades_de_la_Capa=Properties of the layer
395
propiedades_del_tema=Theme properties
396
Propiedades_del_Tema=Theme properties
397
Propiedades_escala_grafica=Properties of the scale bar
398
propiedades_grafico=Graphic properties
399
propiedades_mapa=Map properties
400
propiedades_marco_imagenes=Properties of Image framework
401
propiedades_marco_leyenda=Properties of legend framework
402
propiedades_marco_vista=Properties of view framework
403
propiedades_raster=Raster propierties
404
propiedades_sesion=Session properties
405
propiedades_tabla=Table properties
406
propiedades_tema=Layer properties
407
Propiedades_texto=Properties of text
408
propiedades_vista=View properties
409
puerto=port
410
Pulgadas=Inches
411
punto=Point
412
quantile_intervals=Quantile interval
413
quiere_continuar=Would you like to continue?
414
Quitar=Remove
415
Quitar_capa=Remove layer
416
quitar_enlaces=Remove links
417
Quitar_todos=Remove all
418
Quitar_Todos=Remove All
419
quitar_uniones=Remove joins
420
rango_de_escalas=Scale range
421
Rango_de_escalas=Rank of Scales
422
Rasterfiles=Rasterfiles
423
realce=Enhance
424
recorte=clipping
425
recorte_colas=Queue clipping
426
recorte_vista=Cut to view
427
recta=Straight line
428
rectangulo=Rectangle
429
recuento=Recount
430
Recuperar_leyenda=Load legend
431
Recuperar_y_eliminar_otros_zoom=Recover and delete other zoom
432
refrescar=Refresh
433
registros=records
434
registros_seleccionados_total=Total of selected records
435
rellenar_marco_vista=Fill view framework
436
relleno=Fill\:
437
renombrar=Rename
438
reproyectar_aviso=The layer projection is not the same as the views projection.\nATENTION\: It can be unaccurate with some transformations.\nPlease read docs
439
reproyectar_pregunta=Do you want to reproject?
440
resolucion=Resolution
441
resolucion_resultado=Resolution of the result\:
442
respuesta_error_servidor=Cannot get the coverage
443
resto_valores=Other values
444
salir=Exit
445
Salir=Exit
446
salir_tooltip=Exit
447
salvar_raster=Save as raster
448
Sample=Sample
449
Se_va_a_tener_en_cuenta_para_borrar_los_registros_desde=... delete registers from
450
seleccion_campos=Select fields
451
seleccion_fuente=Font selection
452
Seleccion_por_tema=Theme Selection
453
Seleccionar=Select
454
seleccionar_capas=Select Layers
455
seleccionar_coberturas=Select Coverages
456
seleccionar_CRS=Select CRS
457
Seleccionar_del_conjunto=Select from set
458
Seleccionar_fichero=Select file
459
seleccionar_formato=Select Format
460
seleccionar_parametros=Select parameters
461
seleccionar_por_punto=Select by point
462
seleccionar_por_rectangulo=Select by rectangle
463
seleccionar_tiempo=Select time position
464
seleccionar_todos=Select all
465
seleccione_campo_enlace=Select field to use for link
466
seleccione_fecha=Select date...
467
seleccione_tabla=Table select
468
seleccione_tabla_a_enlazar=Select table to link
469
seleccione_tabla_origen=Select origin table of the join
470
select_all=Select all
471
select_geom_field=Select field with geometry
472
select_none=Remove all
473
select_unique_field=Select unique field
474
selection_color=Color selection 
475
servidor=Server
476
Servidor=Server
477
servidor_wcs_no_responde=No reply on selected server
478
shape_seleccion=Export selection. 
479
Shapefile=Shapefile
480
Shapefiles=Shapefiles
481
siempre=Always
482
siguiente=Next
483
Siguiente=Next
484
Simbolo=Symbol
485
S\u00EDmbolo=Symbol
486
Simbolo_unico=Unique symbols
487
S\u00EDmbolo_\u00DAnico=Unique symbol
488
Simbologia=Symbols
489
Simbolog\u00EDa=Symbols
490
simplificar=Simplify
491
sin_realce=No enhance
492
sin_titulo=Untitled
493
sincronizar_color_borde_relleno=Sincronize color of stroke and fill\:
494
Size=Size
495
sobre_la_barra=On the scale bar
496
Solo_para_capas_vectoriales=Only for vector layers
497
statistics=Statistics
498
Style=Style
499
Subir_capa=Move layer up
500
suma=Sum
501
Superior=Upper
502
Tabla=Table
503
Tabla_de_Atributos=Table of Attributes
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff