Revision 39145

View differences:

tags/v2_0_0_Build_2057/frameworks/_fwAndami/log4j.properties
1
log4j.rootLogger=DEBUG, stdout
2

  
3
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
4
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
5

  
6
# Pattern to output the caller's file name and line number.
7
log4j.appender.stdout.layout.ConversionPattern=%5p [%t] (%F:%L) - %m%n
8

  
0 9

  
tags/v2_0_0_Build_2057/frameworks/_fwAndami/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2

  
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
5
                      http://maven.apache.org/xsd/maven-4.0.0.xsd">
6
    <modelVersion>4.0.0</modelVersion>
7
    <artifactId>org.gvsig.andami</artifactId>
8
    <packaging>jar</packaging>
9
    <version>2.0-SNAPSHOT</version>
10
    <name>_fwAndami</name>
11
    <description>Plugins and extensions management framework</description>
12
    <parent>
13
        <groupId>org.gvsig</groupId>
14
        <artifactId>gvsig-base-library-pom</artifactId>
15
        <version>2.0-SNAPSHOT</version>
16
    </parent>
17
    <properties>
18
        <andami.lib.dir>${gvsig.install.dir}/lib</andami.lib.dir>
19
        <build-dir>${basedir}/../build</build-dir>
20
        <eclipse.project.name>_fwAndami</eclipse.project.name>
21
    </properties>
22
    <dependencies>
23
        <dependency>
24
            <groupId>org.slf4j</groupId>
25
            <artifactId>slf4j-api</artifactId>
26
            <scope>compile</scope>
27
        </dependency>
28
        <dependency>
29
            <groupId>org.slf4j</groupId>
30
            <artifactId>slf4j-log4j12</artifactId>
31
            <scope>runtime</scope>
32
        </dependency>
33
        <dependency>
34
            <groupId>log4j</groupId>
35
            <artifactId>log4j</artifactId>
36
            <!-- TODO: Change to runtime when everything becomes fully migrated to 
37
                SLF4J -->
38
            <scope>compile</scope>
39
        </dependency>
40
        <dependency>
41
            <groupId>org.gvsig</groupId>
42
            <artifactId>org.gvsig.tools.lib</artifactId>
43
            <scope>compile</scope>
44
        </dependency>
45
        <dependency>
46
            <groupId>org.gvsig</groupId>
47
            <artifactId>org.gvsig.i18n</artifactId>
48
            <scope>compile</scope>
49
        </dependency>
50
        <dependency>
51
            <groupId>org.gvsig</groupId>
52
            <artifactId>org.gvsig.tools.swing.api</artifactId>
53
            <scope>compile</scope>
54
        </dependency>
55
        <dependency>
56
            <groupId>org.gvsig</groupId>
57
            <artifactId>org.gvsig.tools.swing.impl</artifactId>
58
        </dependency>
59
        <dependency>
60
            <groupId>org.gvsig</groupId>
61
            <artifactId>org.gvsig.tools.swing.spi</artifactId>
62
        </dependency>
63
        <dependency>
64
            <groupId>org.gvsig</groupId>
65
            <artifactId>org.gvsig.tools.swing.serv.field</artifactId>
66
        </dependency>
67
        <dependency>
68
            <groupId>org.gvsig</groupId>
69
            <artifactId>org.gvsig.tools.swing.serv.jform</artifactId>
70
        </dependency>
71
        <dependency>
72
            <groupId>org.gvsig</groupId>
73
            <artifactId>org.gvsig.tools.swing.serv.jlist</artifactId>
74
        </dependency>
75
        <dependency>
76
            <groupId>org.gvsig</groupId>
77
            <artifactId>org.gvsig.utils</artifactId>
78
            <scope>compile</scope>
79
        </dependency>
80
        <dependency>
81
            <groupId>org.gvsig</groupId>
82
            <artifactId>org.gvsig.ui</artifactId>
83
            <scope>compile</scope>
84
        </dependency>
85
        <dependency>
86
            <groupId>org.gvsig</groupId>
87
            <artifactId>org.gvsig.installer.lib.api</artifactId>
88
            <scope>compile</scope>
89
        </dependency>
90
        <dependency>
91
            <groupId>org.gvsig</groupId>
92
            <artifactId>org.gvsig.installer.lib.impl</artifactId>
93
        </dependency>
94
        <dependency>
95
            <groupId>org.gvsig</groupId>
96
            <artifactId>org.gvsig.installer.lib.spi</artifactId>
97
        </dependency>
98
        <dependency>
99
            <groupId>org.gvsig</groupId>
100
            <artifactId>org.gvsig.installer.prov.plugin</artifactId>
101
        </dependency>
102
        <dependency>
103
            <groupId>org.gvsig</groupId>
104
            <artifactId>org.gvsig.installer.swing.api</artifactId>
105
            <scope>compile</scope>
106
        </dependency>
107
        <dependency>
108
            <groupId>org.gvsig</groupId>
109
            <artifactId>org.gvsig.installer.swing.impl</artifactId>
110
        </dependency>
111
        <dependency>
112
            <groupId>javax.help</groupId>
113
            <artifactId>javahelp</artifactId>
114
            <scope>compile</scope>
115
        </dependency>
116
        <dependency>
117
            <groupId>jwizardcomponent</groupId>
118
            <artifactId>jwizardcomponent</artifactId>
119
            <scope>compile</scope>
120
        </dependency>
121
        <dependency>
122
            <groupId>com.jgoodies</groupId>
123
            <artifactId>looks</artifactId>
124
        </dependency>
125
        <dependency>
126
            <groupId>xerces</groupId>
127
            <artifactId>xercesImpl</artifactId>
128
        </dependency>
129
        <dependency>
130
            <groupId>castor</groupId>
131
            <artifactId>castor</artifactId>
132
            <scope>compile</scope>
133
        </dependency>
134
        <dependency>
135
            <groupId>net.sf.kxml</groupId>
136
            <artifactId>kxml2</artifactId>
137
            <scope>compile</scope>
138
        </dependency>
139
        <dependency>
140
            <groupId>com.sardak</groupId>
141
            <artifactId>antform</artifactId>
142
            <scope>runtime</scope>
143
        </dependency>
144
        <dependency>
145
            <groupId>ant-contrib</groupId>
146
            <artifactId>ant-contrib</artifactId>
147
            <scope>runtime</scope>
148
        </dependency>
149
        <dependency>
150
			<groupId>commons-cli</groupId>
151
			<artifactId>commons-cli</artifactId>
152
			<version>1.2</version>
153
		</dependency>
154
		<dependency>
155
             <groupId>commons-io</groupId>
156
             <artifactId>commons-io</artifactId>
157
             <scope>compile</scope>
158
         </dependency>
159
		<dependency>
160
			<groupId>com.jgoodies</groupId>
161
			<artifactId>forms</artifactId>
162
			<scope>runtime</scope>
163
		</dependency>        
164
    </dependencies>
165
    <build>
166
        <sourceDirectory>src</sourceDirectory>
167
        <testSourceDirectory>src-test</testSourceDirectory>
168
        <resources>
169
            <resource>
170
                <directory>${basedir}/resources</directory>
171
            </resource>
172
        </resources>
173
        <plugins>
174
            <plugin>
175
                <artifactId>maven-clean-plugin</artifactId>
176
                <configuration>
177
                    <filesets>
178
                        <fileset>
179
                            <directory>${andami.lib.dir}</directory>
180
                            <includes>
181
                                <include>**/**</include>
182
                            </includes>
183
                            <followSymlinks>false</followSymlinks>
184
                        </fileset>
185
                        <fileset>
186
                            <directory>${gvsig.install.dir}/gvSIG/extensiones</directory>
187
                            <includes>
188
                                <include>**</include>
189
                            </includes>
190
                        </fileset>
191
                    </filesets>
192
                </configuration>
193
            </plugin>
194
            <plugin>
195
                <groupId>org.codehaus.mojo</groupId>
196
                <artifactId>exec-maven-plugin</artifactId>
197
                <executions>
198
                    <execution>
199
                        <goals>
200
                            <goal>exec</goal>
201
                        </goals>
202
                    </execution>
203
                </executions>
204
                <configuration>
205
                    <executable>java</executable>
206
                    <arguments>
207
                        <argument>-classpath</argument>
208
                        <!-- automatically creates the classpath using all project 
209
                            dependencies, also adding the project build directory -->
210
                        <classpath />
211
                        <argument>org.gvsig.andami.Launcher</argument>
212
                        <argument>gvSIG</argument>
213
                        <argument>${gvsig.install.dir}/gvSIG/extensiones</argument>
214
                    </arguments>
215
                    <environmentVariables>
216
                        <GDAL_DATA>${user.home}/.depman/data/gdal</GDAL_DATA>
217
                        <PROJ_LIB>gvSIG/extensiones/org.gvsig.crs.extension/data</PROJ_LIB>
218
                        <LD_LIBRARY_PATH>${user.home}/.depman/lib</LD_LIBRARY_PATH>
219
                        <PATH>${user.home}/.depman/bin</PATH>
220
                    </environmentVariables>
221
                </configuration>
222
            </plugin>
223
            <!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
224
            <plugin>
225
                <groupId>org.apache.maven.plugins</groupId>
226
                <artifactId>maven-surefire-plugin</artifactId>
227
                <configuration>
228
                    <skipTests>true</skipTests>
229
                </configuration>
230
            </plugin>
231
            <plugin>
232
                <groupId>org.apache.maven.plugins</groupId>
233
                <artifactId>maven-jar-plugin</artifactId>
234
                <configuration>
235
                    <archive>
236
                        <manifest>
237
                            <addClasspath>true</addClasspath>
238
                            <mainClass>org.gvsig.andami.Launcher</mainClass>
239
                        </manifest>
240
                    </archive>
241
                </configuration>
242
            </plugin>
243
        </plugins>
244
    </build>
245
    <profiles>
246
        <profile>
247
            <id>install-extension</id>
248
            <activation>
249
                <activeByDefault>true</activeByDefault>
250
                <property>
251
                    <name>install-extension</name>
252
                </property>
253
            </activation>
254
            <build>
255
                <plugins>
256
                    <plugin>
257
                        <groupId>org.apache.maven.plugins
258
						</groupId>
259
                        <artifactId>maven-dependency-plugin
260
						</artifactId>
261
                        <executions>
262
                            <execution>
263
                                <id>copy-own-dependencies-for-andami
264
								</id>
265
                                <phase>install</phase>
266
                                <goals>
267
                                    <goal>copy-dependencies</goal>
268
                                </goals>
269
                                <configuration>
270
                                    <outputDirectory>${andami.lib.dir}</outputDirectory>
271
                                    <overWriteReleases>true</overWriteReleases>
272
                                    <overWriteSnapshots>true</overWriteSnapshots>
273
                                    <overWriteIfNewer>true</overWriteIfNewer>
274
                                    <includeScope>runtime</includeScope>
275
                                </configuration>
276
                            </execution>
277
                            <execution>
278
                                <id>copy-andami</id>
279
                                <phase>install</phase>
280
                                <goals>
281
                                    <goal>copy</goal>
282
                                </goals>
283
                                <configuration>
284
                                    <artifactItems>
285
                                        <artifactItem>
286
                                            <groupId>org.gvsig</groupId>
287
                                            <artifactId>org.gvsig.andami</artifactId>
288
                                            <version>2.0-SNAPSHOT</version>
289
                                            <type>jar</type>
290
                                            <overWrite>true</overWrite>
291
                                        </artifactItem>
292
                                    </artifactItems>
293
                                    <outputDirectory>${andami.lib.dir}</outputDirectory>
294
                                    <overWriteReleases>true</overWriteReleases>
295
                                    <overWriteSnapshots>false</overWriteSnapshots>
296
                                    <overWriteIfNewer>true</overWriteIfNewer>
297
                                    <excludeTransitive>false</excludeTransitive>
298
                                </configuration>
299
                            </execution>
300
                        </executions>
301
                    </plugin>
302
                    <plugin>
303
                        <artifactId>maven-resources-plugin</artifactId>
304
                        <executions>
305
                            <execution>
306
                                <id>copy-theme</id>
307
                                <phase>install</phase>
308
                                <goals>
309
                                    <goal>copy-resources</goal>
310
                                </goals>
311
                                <configuration>
312
                                    <outputDirectory>${gvsig.install.dir}/theme</outputDirectory>
313
                                    <resources>
314
                                        <resource>
315
                                            <directory>theme</directory>
316
                                            <filtering>false</filtering>
317
                                        </resource>
318
                                    </resources>
319
                                </configuration>
320
                            </execution>
321
                        </executions>
322
                    </plugin>
323
                </plugins>
324
            </build>
325
        </profile>
326
    </profiles>
327
</project>
tags/v2_0_0_Build_2057/frameworks/_fwAndami/resources/META-INF/services/org.gvsig.tools.library.Library
1
org.gvsig.andami.PluginsLibrary
tags/v2_0_0_Build_2057/frameworks/_fwAndami/resources/org/gvsig/andami/text_de.properties
1
#Translations for language [de]
2
#Mon Oct 30 09:38:21 CET 2006
3
aceptar=OK
4
cancelar=Abbrechen
5
com.iver.andami.messages.Messages=
6
Ejecutando\ comando\:\ =
7
en=
8
error_parsing_comboscale_elements=
9
error_parsing_comboscale_value=
10
Error_reading_isocodes_file=
11
Icon_not_found_=
12
KeyMapping.Caracter_no_valido=Ung\u00fcltigiges zeichen\:
13
Launcher.config_mal_formado=. Datei 'config.xml' fehlerhaft
14
Launcher.config_no_encontrado=Konnte die Datei 'config.xml' nicht finden.
15
Launcher.Dependencia_no_resuelta_en_plugin=Ungekl\u00e4rte Plugin-Abh\u00e4ngigkeit
16
Launcher.Dos_skin_extension=Zwei skin-extensions. Es wird die letzte verwendet.
17
Launcher.Error_con_las_librerias_del_plugin=Fehler bei den Plugin-Bibliotheken
18
Launcher.error_getting_class_loader_for_status_bar_control=
19
Launcher.Error_instanciando_la_extension=Kann die erweiterung nicht instanziieren.
20
Launcher.Error_localizando_la_clase_de_la_extension=Fehler bei der lokalisierung der erweiterungsklasse
21
Launcher.Hay_dependencias_circulares=Kreisf\u00f6rmige abh\u00e4ngigkeiten zwischen den plugins
22
Launcher.Ignorando_el_directorio=Das verzeichnis wird ignoriert.
23
Launcher.labelset_class=Kann die etikettenklasse (labelset) nicht finden.
24
Launcher.look_and_feel=Konnte nicht auf 'look and feel'  stellen.
25
Launcher.No_se_encontro_la_clase_de_la_extension=Konnte die erweiterungsklasse nicht finden.
26
Launcher.No_se_encontro_la_clase_mdi_manager=Konnte die mdi-manager-klasse nicht finden.
27
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=Konnte nicht auf den mdi-manager zugreifen.
28
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=Konnte die Andami-Erweiterung nicht speichern.
29
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=Konnte den mdi-manager nicht erstellen.
30
Launcher.No_se_puede_acceder_a=Kein Zugriff m\u00f6glich auf\:
31
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=Fehler bei der speicherung der plugin-konfiguration
32
Launcher.Two_extensions_with_the_same_priority=Zwei Erweiterungen mit der gleichen Priorit\u00e4t. Es wird nur eine geladen.
33
Launcher.Two_menus_with_the_same_position=Zwei Men\u00fcs mit der gleichen priorit\u00e4t. Es wird nur eins geladen.
34
login_exit=
35
login_invalid_user=
36
login_name=
37
login_ok=
38
login_password=
39
MDIFrame.Error_no_capturado_por_el_usuario=Anwendungsfehler
40
MDIFrame.quiere_salir=Sind Sie sicher, dass Sie das Programm beenden wollen?
41
MDIFrame.salir=Beenden
42
MDIManagerFactory.No_skin_extension_in_the_plugins=Keine skin-extension in den plugins gefunden
43
Messages._no_se_encontro_la_traduccion_para=Konnte \u00dcbersetzung nicht finden f\u00fcr\:
44
Messages.no_se_encontro_la_traduccion_para=
45
No_extension_associated_with_this_event_=
46
No_se_encontro_la_traduccion_para=Konnte \u00dcbersetzung nicht finden f\u00fcr\:
47
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=Zwei Klassen mit dem gleichen Namen im Plugin
48
PluginClassLoader.Error_reading_file=Dateilesefehler \:
49
PluginServices.Bug\ en\ el\ c\u00f3digo=
50
PluginServices.Bug_en_el_codigo=Bug im Code
51
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=
52
PluginServices.Error_grave_de_la_aplicaci\u00f3n=
53
PluginServices.No_se_pudo_poner_el_reloj_de_arena=Konnte die Sanduhr nicht stellen.
54
PluginServices.No_se_pudo_restaurar_el_cursor_del_raton=Konnte den cursor nicht wiederherstellen.
55
Preferences=
56
restore_defaults=
57
SplashWindow.Iniciando=Startet...
58
StatusBar.Aplicacion_iniciada=Anwendung gestartet
59
Unable_to_find_icon=
60
y_en=
0 61

  
tags/v2_0_0_Build_2057/frameworks/_fwAndami/resources/org/gvsig/andami/text_eu.properties
1
#Translations for language [eu]
2
#Mon Oct 30 09:38:21 CET 2006
3
aceptar=Ados
4
cancelar=Utzi
5
com.iver.andami.messages.Messages=
6
Ejecutando\ comando\:\ =
7
en=
8
error_parsing_comboscale_elements=
9
error_parsing_comboscale_value=
10
Error_reading_isocodes_file=
11
Icon_not_found_=
12
KeyMapping.Caracter_no_valido=Karakterea ez da baliozkoa\:
13
Launcher.config_mal_formado='config.xml' fitxategia txarto eratuta dago
14
Launcher.config_no_encontrado='config.xml' fitxategia ez da aurkitu
15
Launcher.Dependencia_no_resuelta_en_plugin=Mendekotasuna ez da plugin-ean ebatzi
16
Launcher.Dos_skin_extension=Dos skin luzapena. Azkena erabiliko dugu
17
Launcher.Error_con_las_librerias_del_plugin=Errorea plugin-aren liburutegietan
18
Launcher.error_getting_class_loader_for_status_bar_control=
19
Launcher.Error_instanciando_la_extension=Errorea luzapena instantziatzean
20
Launcher.Error_localizando_la_clase_de_la_extension=Errorea luzapen-mota aurkitzean
21
Launcher.Hay_dependencias_circulares=Plugin-en artean mendekotasun zirkularrak daude
22
Launcher.Ignorando_el_directorio=Ez hartu direktorioa kontuan
23
Launcher.labelset_class=Etiketa-mota (labelset) ezin izan da aurkitu
24
Launcher.look_and_feel=Ezin izan da jarri 'look and feel'
25
Launcher.No_se_encontro_la_clase_de_la_extension=Luzapen-mota ezin izan da aurkitu
26
Launcher.No_se_encontro_la_clase_mdi_manager=Mdi manager klasea ezin izan da aurkitu
27
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=mdi manager klasea ezin izan da atzitu
28
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=Andamiren konfigurazioa ezin izan da gorde
29
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=Ezin izan da mdi manager klasea instantziatu
30
Launcher.No_se_puede_acceder_a=Ezin izan da honakoa atzitu\:
31
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=Errorea plugin-en konfigurazioa gordetzean
32
Launcher.Two_extensions_with_the_same_priority=Lehentasun bereko bi luzapen, bakarra kargatuko da.
33
Launcher.Two_menus_with_the_same_position=Posizio bereko bi menu, bakarra kargatuko da.
34
login_exit=
35
login_invalid_user=
36
login_name=
37
login_ok=
38
login_password=
39
MDIFrame.Error_no_capturado_por_el_usuario=Erabiltzaileak kapturatu ez duen errorea
40
MDIFrame.quiere_salir=Ziur zaude irten nahi duzula?
41
MDIFrame.salir=Irten
42
MDIManagerFactory.No_skin_extension_in_the_plugins=Ez da aurkitu 'skin' luzapenik plugin-en artean
43
Messages._no_se_encontro_la_traduccion_para=Ez da itzulpenik aurkitu honetarako\:
44
Messages.no_se_encontro_la_traduccion_para=Ez da horretarako itzulpenik aurkitu
45
No_extension_associated_with_this_event_=
46
No_se_encontro_la_traduccion_para=Ez da itzulpenik aurkitu honetarako\:
47
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=Izen bereko bi klase plugin-ean
48
PluginClassLoader.Error_reading_file=Errorea fitxategia irakurtzean\:
49
PluginServices.Bug\ en\ el\ c\u00f3digo=
50
PluginServices.Bug_en_el_codigo=Bug-a kodean
51
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=
52
PluginServices.Error_grave_de_la_aplicaci\u00f3n=
53
PluginServices.No_se_pudo_poner_el_reloj_de_arena=Ezin izan da arezko erlojua jarri
54
PluginServices.No_se_pudo_restaurar_el_cursor_del_raton=Saguaren kurtsorea ezin izan da berrezarri
55
Preferences=
56
restore_defaults=
57
SplashWindow.Iniciando=Hasten...
58
StatusBar.Aplicacion_iniciada=Aplikazioa hasita dago
59
Unable_to_find_icon=
60
y_en=
0 61

  
tags/v2_0_0_Build_2057/frameworks/_fwAndami/resources/org/gvsig/andami/text_it.properties
1
#Translations for language [it]
2
#Tue Nov 07 12:30:01 CET 2006
3
aceptar=Accetta
4
cancelar=Cancella
5
com.iver.andami.messages.Messages=
6
Ejecutando\ comando\:\ =Esegui comando\:
7
en=
8
error_parsing_comboscale_elements=Errore nell'esame degli elementi ComboScale
9
error_parsing_comboscale_value=Errore nell'esame del valore ComboScale
10
Error_reading_isocodes_file=Errore di lettura dei codici ISO della lingua
11
Icon_not_found_=Icona non trovata
12
KeyMapping.Caracter_no_valido=Carattere non valido\:
13
Launcher.config_mal_formado=. Documento 'config.xml' mal formato
14
Launcher.config_no_encontrado=. Documento 'config.xml' non trovato
15
Launcher.Dependencia_no_resuelta_en_plugin=La dipendenza non risulta in plugin
16
Launcher.Dos_skin_extension=Due skin-extension. Usare l'ultima
17
Launcher.Error_con_las_librerias_del_plugin=Errore con la libreria del plugin
18
Launcher.error_getting_class_loader_for_status_bar_control=Errore nell'ottenere il loader delle classi per la barra di stato
19
Launcher.Error_instanciando_la_extension=Errore ricorrendo all'estensione
20
Launcher.Error_localizando_la_clase_de_la_extension=Errore localizzando la classe dell'estensione
21
Launcher.Hay_dependencias_circulares=Ci sono dipendenze circolari tra i plugins
22
Launcher.Ignorando_el_directorio=Ignorando il registro
23
Launcher.labelset_class=Non si \u00e9 trovata la classe delle etichette (labelset)
24
Launcher.look_and_feel=Non si \u00e9 potuto porre il 'look and feel'
25
Launcher.No_se_encontro_la_clase_de_la_extension=Non si \u00e9 trovata la classe dell'estensione
26
Launcher.No_se_encontro_la_clase_mdi_manager=No si \u00e9 trovata la classe mdi manager
27
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=Non si \u00e9 potuto accedere alla clase mdi manager
28
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=Non si \u00e9 potuta salvare la configurazione di Andami
29
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=Non si \u00e9 potuto ricorrere alla classe mdi manager
30
Launcher.No_se_puede_acceder_a=Non si puo' accedere a
31
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=Si \u00e9 prodotto un errore salvando la configurazione dei plugins
32
Launcher.Two_extensions_with_the_same_priority=Due estensioni con la stessa priorita', se ne carichera' solo una.
33
Launcher.Two_menus_with_the_same_position=Due men\u00fa con la stessa posizione, se ne carichera' solo uno
34
login_exit=
35
login_invalid_user=
36
login_name=
37
login_ok=
38
login_password=
39
MDIFrame.Error_no_capturado_por_el_usuario=Errore non catturato per l'usario
40
MDIFrame.quiere_salir=Sei sicuro di voler uscire?
41
MDIFrame.salir=Uscire
42
MDIManagerFactory.No_skin_extension_in_the_plugins=Non si \u00e9 trovato nessuna estensione 'skin' tra i plugins
43
Messages._no_se_encontro_la_traduccion_para=Non si \u00e9 incontrata la traduzione per
44
Messages.no_se_encontro_la_traduccion_para=Non \u00e8 stata individuata la traduzione per
45
No_extension_associated_with_this_event_=Nessuna estensione associata a questo evento
46
No_se_encontro_la_traduccion_para=Non si \u00e9 incontrata la traduzione per
47
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=Due classi con lo stesso nome nel plugin
48
PluginClassLoader.Error_reading_file=Errore leggendo il file\:
49
PluginServices.Bug\ en\ el\ c\u00f3digo=Errore dell'applicazione
50
PluginServices.Bug_en_el_codigo=Bug nel codice
51
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=
52
PluginServices.Error_grave_de_la_aplicaci\u00f3n=Errore dell'applicazione. Si raccomanda di riavviare l'applicazione.
53
PluginServices.No_se_pudo_poner_el_reloj_de_arena=Non si \u00e9 potuta porre la clessidra
54
PluginServices.No_se_pudo_restaurar_el_cursor_del_raton=Non si \u00e9 potuto riparare il cursore del mouse
55
Preferences=Preferenze
56
restore_defaults=Ripristina opzioni predefinite
57
SplashWindow.Iniciando=Iniziando...
58
StatusBar.Aplicacion_iniciada=Applicazione iniziata
59
Unable_to_find_icon=Impossibile trovare icona
60
y_en=e in
0 61

  
tags/v2_0_0_Build_2057/frameworks/_fwAndami/resources/org/gvsig/andami/text.properties
1
#Translations for language [es]
2
#Mon Oct 30 09:38:21 CET 2006
3
aceptar=Aceptar
4
cancelar=Cancelar
5
com.iver.andami.messages.Messages=Mensaje
6
Ejecutando\ comando\:\ =Execute command\:
7
en=en
8
error_parsing_comboscale_elements=Error identificando los elementos del comboscale
9
error_parsing_comboscale_value=Error identificando el valor del comboscale
10
Error_reading_isocodes_file=Error al leer el fichero con los c\u00f3digos ISO de idioma
11
Icon_not_found_=No se encontr\u00f3 el icono
12
KeyMapping.Caracter_no_valido=Car\u00e1cter no v\u00e1lido\:
13
Launcher.config_mal_formado=. Fichero 'config.xml' mal formado
14
Launcher.config_no_encontrado=. Fichero 'config.xml' no encontrado
15
Launcher.Dependencia_no_resuelta_en_plugin=Dependencia no resuelta en plugin
16
Launcher.Dos_skin_extension=Dos skin-extension. Usamos el \u00faltimo
17
Launcher.Error_con_las_librerias_del_plugin=Error con las librer\u00edas del plugin
18
Launcher.error_getting_class_loader_for_status_bar_control=Error obteniendo el cargador de clases para la barra de estado
19
Launcher.Error_instanciando_la_extension=Error instanciando la extensi\u00f3n
20
Launcher.Error_localizando_la_clase_de_la_extension=Error localizando la clase de la extensi\u00f3n
21
Launcher.Hay_dependencias_circulares=Hay dependencias circulares entre los plugins
22
Launcher.Ignorando_el_directorio=Ignorando el directorio
23
Launcher.labelset_class=No se pudo encontrar la clase de las etiquetas (labelset)
24
Launcher.look_and_feel=No se pudo poner el 'look and feel'
25
Launcher.No_se_encontro_la_clase_de_la_extension=No se encontr\u00f3 la clase de la extensi\u00f3n
26
Launcher.No_se_encontro_la_clase_mdi_manager=No se encontr\u00f3 la clase mdi manager
27
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=No se pudo acceder a la clase mdi manager
28
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=No se pudo guardar la configuraci\u00f3n de Andami
29
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=No se pudo instanciar la clase mdi manager
30
Launcher.No_se_puede_acceder_a=No se puede acceder a
31
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=Se produjo un error guardando la configuraci\u00f3n de los plugins
32
Launcher.Two_extensions_with_the_same_priority=Dos extensiones con la misma prioridad, s\u00f3lo se cargar\u00e1 una.
33
Launcher.Two_menus_with_the_same_position=Dos men\u00faes con la misma posici\u00f3n, s\u00f3lo se cargar\u00e1 uno
34
login_exit=Salida
35
login_invalid_user=Usuario no v\u00c3\u00a1lido
36
login_name=Nombre
37
login_ok=Ok
38
login_password=Contrase\u00c3\u00b1a
39
MDIFrame.Error_no_capturado_por_el_usuario=Error no capturado por el usuario
40
MDIFrame.quiere_salir=\u00bfEst\u00e1 seguro de que quiere salir?
41
MDIFrame.salir=Salir
42
MDIManagerFactory.No_skin_extension_in_the_plugins=No se encontr\u00f3 ninguna extensi\u00f3n 'skin' entre los plugins
43
memory_usage=Memoria usada
44
Messages._no_se_encontro_la_traduccion_para=No se encontr\u00f3 la traducci\u00f3n para
45
Messages.no_se_encontro_la_traduccion_para=No se encontr\u00f3 la traducci\u00f3n para
46
No_extension_associated_with_this_event_=No hay ninguna extensi\u00f3n asociada con este evento
47
No_se_encontro_la_traduccion_para=No se encontr\u00f3 la traducci\u00f3n para
48
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=Dos clases con el mismo nombre en el plugin
49
PluginClassLoader.Error_reading_file=Error leyendo fichero\:
50
PluginServices.Bug\ en\ el\ c\u00f3digo=Error de la aplicaci\u00f3n
51
PluginServices.Bug_en_el_codigo=Bug en el c\u00f3digo
52
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=Error grave de la aplicaci\u00f3n. Es conveniente que salgas de la aplicaci\u00f3n.
53
PluginServices.Error_grave_de_la_aplicaci\u00f3n=Error grave en la aplicaci\u00c3\u00b3n.
54
PluginServices.No_se_pudo_poner_el_reloj_de_arena=No se pudo poner el reloj de arena
55
PluginServices.No_se_pudo_restaurar_el_cursor_del_raton=No se pudo restaurar el cursor del rat\u00f3n
56
Preferences=Preferencias
57
restore_defaults=Restaurar opciones por defecto
58
SplashWindow.Iniciando=Iniciando...
59
StatusBar.Aplicacion_iniciada=Aplicaci\u00f3n iniciada
60
Unable_to_find_icon=No se pudo encontrar el icono
61
y_en=y en
62
No_se_encontro_la_extension_especificada_en_el_parametro_exclusiveUI=No se encontr\u00f3 la extensi\u00f3n especifiacada en el par\u00e1metro 'exclusiveUI':
63
Error_reading_plugin_persinstence_New_file_created_A_backup_was_made_on_=Error leyendo plugin-persistence.xml. Se crear? un fichero nuevo. Se ha hecho una copia de seguridad en
64
Error_reading_andami_config_New_file_created_A_backup_was_made_on_=Error leyendo andami-config.xml. Se crear? un fichero nuevo. Se ha hecho una copia de seguridad en
65
save_resources=Guardar recursos
66
select_resources_to_save_before_exit=Antes de salir se guardar\u00e1n los elementos que est\u00e9n seleccionados
67
deselect_all=Limpiar selecci\u00f3n
68
discard_changes=Descartar cambios
69
gvsig_package_installer=Instalador de paquetes de gvSIG
70
usage=Uso
71
error_getting_unsaved_data=Error obteniendo los datos sin guardar. Si contin?a, es posible\nque no pueda guardar todos los datos. ?Desea continuar con el proceso de cerrar?
0 72

  
tags/v2_0_0_Build_2057/frameworks/_fwAndami/resources/org/gvsig/andami/text_zh.properties
1
#Translations for language [zh]
2
#Tue Dec 12 10:59:28 GMT+01:00 2006
3
aceptar=\u786e\u5b9a
4
cancelar=\u53d6\u6d88
5
com.iver.andami.messages.Messages=
6
Ejecutando\ comando\:\ =
7
en=
8
error_parsing_comboscale_elements=
9
error_parsing_comboscale_value=
10
Error_reading_isocodes_file=
11
Icon_not_found_=
12
KeyMapping.Caracter_no_valido=
13
Launcher.config_mal_formado=
14
Launcher.config_no_encontrado=
15
Launcher.Dependencia_no_resuelta_en_plugin=
16
Launcher.Dos_skin_extension=
17
Launcher.Error_con_las_librerias_del_plugin=
18
Launcher.error_getting_class_loader_for_status_bar_control=
19
Launcher.Error_instanciando_la_extension=
20
Launcher.Error_localizando_la_clase_de_la_extension=
21
Launcher.Hay_dependencias_circulares=
22
Launcher.Ignorando_el_directorio=
23
Launcher.labelset_class=
24
Launcher.look_and_feel=
25
Launcher.No_se_encontro_la_clase_de_la_extension=
26
Launcher.No_se_encontro_la_clase_mdi_manager=
27
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=
28
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=
29
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=
30
Launcher.No_se_puede_acceder_a=
31
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=
32
Launcher.Two_extensions_with_the_same_priority=
33
Launcher.Two_menus_with_the_same_position=
34
login_exit=
35
login_invalid_user=
36
login_name=
37
login_ok=
38
login_password=
39
MDIFrame.Error_no_capturado_por_el_usuario=
40
MDIFrame.quiere_salir=\u60a8\u786e\u5b9e\u8981\u9000\u51fa gvSIG \u5417?
41
MDIFrame.salir=\u9000\u51fa
42
MDIManagerFactory.No_skin_extension_in_the_plugins=
43
No_extension_associated_with_this_event_=
44
No_se_encontro_la_traduccion_para=
45
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=
46
PluginClassLoader.Error_reading_file=
47
PluginServices.Bug\ en\ el\ c\u00f3digo=
48
PluginServices.Bug_en_el_codigo=
49
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=
50
PluginServices.Error_grave_de_la_aplicaci\u00f3n=
51
PluginServices.No_se_pudo_poner_el_reloj_de_arena=
52
PluginServices.No_se_pudo_restaurar_el_cursor_del_raton=
53
Preferences=
54
restore_defaults=
55
SplashWindow.Iniciando=
56
StatusBar.Aplicacion_iniciada=
57
Unable_to_find_icon=
58
y_en=
0 59

  
tags/v2_0_0_Build_2057/frameworks/_fwAndami/resources/org/gvsig/andami/text_en.properties
1
#Translations for language [en]
2
#Mon Oct 30 09:38:21 CET 2006
3
aceptar=Accept
4
cancelar=Cancel
5
com.iver.andami.messages.Messages=Messages
6
Ejecutando\ comando\:\ =Execute command\:
7
en=In
8
error_parsing_comboscale_elements=Error parsing comboScale elements
9
error_parsing_comboscale_value=Error parsing comboScale value
10
Error_reading_isocodes_file=Error reading the isocodes file for languages
11
Icon_not_found_=Icon not found
12
KeyMapping.Caracter_no_valido=Invalid character
13
Launcher.config_mal_formado=. Malformed 'config.xml'
14
Launcher.config_no_encontrado='config.xml' not found
15
Launcher.Dependencia_no_resuelta_en_plugin=Unsatisfied plugin dependency
16
Launcher.Dos_skin_extension=Two skin-extension.
17
Launcher.Error_con_las_librerias_del_plugin=Plugin library error
18
Launcher.error_getting_class_loader_for_status_bar_control=Error getting class loader for status bar
19
Launcher.Error_instanciando_la_extension=Cannot instantiate extension
20
Launcher.Error_localizando_la_clase_de_la_extension=Cannot locate extension class
21
Launcher.Hay_dependencias_circulares=Plugin dependencies involved in circle
22
Launcher.Ignorando_el_directorio=Ignoring the directory
23
Launcher.labelset_class=Cannot find label set class (labelset)
24
Launcher.look_and_feel=Cannot set system 'look and feel'
25
Launcher.No_se_encontro_la_clase_de_la_extension=Cannot find extension class
26
Launcher.No_se_encontro_la_clase_mdi_manager=Cannot find mdi manager class
27
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=Cannot access mdi manager
28
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=Cannot save Andami configuration
29
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=Cannot instantiate mdi manager
30
Launcher.No_se_puede_acceder_a=Cannot access to
31
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=Cannot save plugins configuration
32
Launcher.Two_extensions_with_the_same_priority=Two extensions with the same priority. Only will load one.
33
Launcher.Two_menus_with_the_same_position=Two menus with the same position. Only will load one.
34
login_exit=Exit
35
login_invalid_user=Invalid user
36
login_name=Name
37
login_ok=ok
38
login_password=Password
39
MDIFrame.Error_no_capturado_por_el_usuario=User error
40
MDIFrame.quiere_salir=Exit gvSIG?
41
MDIFrame.salir=Exit
42
MDIManagerFactory.No_skin_extension_in_the_plugins=No skin extension in the plugins
43
memory_usage=Memory usage
44
Messages._no_se_encontro_la_traduccion_para=Cannot find translation for
45
Messages.no_se_encontro_la_traduccion_para=It hasn't been found the translation for
46
No_extension_associated_with_this_event_=No extension associated with this event
47
No_se_encontro_la_traduccion_para=Cannot find translation for
48
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=Two classes with the same name
49
PluginClassLoader.Error_reading_file=IO error\:
50
PluginServices.Bug\ en\ el\ c\u00f3digo=Application bug
51
PluginServices.Bug_en_el_codigo=Bug
52
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=Application error. It's strongly recommended to close the application.
53
PluginServices.Error_grave_de_la_aplicaci\u00f3n=Fatal error
54
PluginServices.No_se_pudo_poner_el_reloj_de_arena=Cannot set hour glass
55
PluginServices.No_se_pudo_restaurar_el_cursor_del_raton=Cannot restore cursor
56
Preferences=Preferences
57
restore_defaults=Restore defaults
58
SplashWindow.Iniciando=Starting...
59
StatusBar.Aplicacion_iniciada=Application started
60
Unable_to_find_icon=Unable to find icon
61
y_en=and in
62
save_resources=Save resources
63
select_resources_to_save_before_exit=Before exiting, the selected resources will be saved
64
deselect_all=Clear selection
65
discard_changes=Discard changes
66
gvsig_package_installer=gvSIG packages installer
67
usage=Usage
68
error_getting_unsaved_data=Error getting the unsaved data. If you continue, you may not be able\nto save all data. ?Do you want to continue closing the application?
0 69

  
tags/v2_0_0_Build_2057/frameworks/_fwAndami/resources/org/gvsig/andami/text_gl.properties
1
#Translations for language [gl]
2
#Mon Oct 30 09:38:21 CET 2006
3
aceptar=Aceptar
4
cancelar=Cancelar
5
com.iver.andami.messages.Messages=
6
Ejecutando\ comando\:\ =
7
en=
8
error_parsing_comboscale_elements=
9
error_parsing_comboscale_value=
10
Error_reading_isocodes_file=
11
Icon_not_found_=
12
KeyMapping.Caracter_no_valido=Car\u00e1cter non v\u00e1lido
13
Launcher.config_mal_formado=. Arquivo 'config.xml' mal formado
14
Launcher.config_no_encontrado=. Arquivo 'config.xml' non atopado
15
Launcher.Dependencia_no_resuelta_en_plugin=Dependencia non resolta no plugin
16
Launcher.Dos_skin_extension=D\u00faas skin-extension. Usamos a \u00faltima
17
Launcher.Error_con_las_librerias_del_plugin=Erro coas librar\u00edas do plugin
18
Launcher.error_getting_class_loader_for_status_bar_control=
19
Launcher.Error_instanciando_la_extension=Erro instanciando a extensi\u00f3n
20
Launcher.Error_localizando_la_clase_de_la_extension=Erro localizando a clase da extensi\u00f3n
21
Launcher.Hay_dependencias_circulares=Hai dependencias circulares entre os plugins
22
Launcher.Ignorando_el_directorio=Ignorando o directorio
23
Launcher.labelset_class=Non se puido atopar a clase de etiquetas (labelset)
24
Launcher.look_and_feel=Non se puido activar o 'look ans feel'
25
Launcher.No_se_encontro_la_clase_de_la_extension=Non se atopou a clase da extensi\u00f3n
26
Launcher.No_se_encontro_la_clase_mdi_manager=Non se atopou a clase mdi manager
27
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=Non se puido acceder \u00e1 clase mdi manager
28
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=Non se puido gardar a configuraci\u00f3n de Andami
29
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=Non se puido instanciar a clase mdi manager
30
Launcher.No_se_puede_acceder_a=Non se pode acceder a
31
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=Prod\u00faxose un erro ao gardar a configuraci\u00f3n dosplugins
32
Launcher.Two_extensions_with_the_same_priority=D\u00faas extensi\u00f3ns coa mesma prioridade, cargarase soamente unha
33
Launcher.Two_menus_with_the_same_position=Dous men\u00fas coa mesma posici\u00f3n, cargarase soamente un
34
login_exit=
35
login_invalid_user=
36
login_name=
37
login_ok=
38
login_password=
39
MDIFrame.Error_no_capturado_por_el_usuario=Erro non capturado polo usuario
40
MDIFrame.quiere_salir=Est\u00e1 seguro de que quere sa\u00edr?
41
MDIFrame.salir=Sa\u00edr
42
MDIManagerFactory.No_skin_extension_in_the_plugins=Non se atopou ningunha extensi\u00f3n 'skin' entre o splugins
43
Messages._no_se_encontro_la_traduccion_para=Non se atopou a traducci\u00f3n para
44
Messages.no_se_encontro_la_traduccion_para=Non se atopou a traducci\u00f3n para
45
No_extension_associated_with_this_event_=
46
No_se_encontro_la_traduccion_para=Non se atopou a traducci\u00f3n para
47
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=D\u00faas clases c\u00f3 mesmo nome no plugin
48
PluginClassLoader.Error_reading_file=Erro l\u00e9ndo arquivo\:
49
PluginServices.Bug\ en\ el\ c\u00f3digo=
50
PluginServices.Bug_en_el_codigo=Bug no c\u00f3digo
51
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=
52
PluginServices.Error_grave_de_la_aplicaci\u00f3n=
53
PluginServices.No_se_pudo_poner_el_reloj_de_arena=Non se puido activar o reloxio de area
54
PluginServices.No_se_pudo_restaurar_el_cursor_del_raton=Non se puido restaurar o cursor do rato
55
Preferences=
56
restore_defaults=
57
SplashWindow.Iniciando=Iniciando ...
58
StatusBar.Aplicacion_iniciada=Aplicaci\u00f3n iniciada
59
Unable_to_find_icon=
60
y_en=
0 61

  
tags/v2_0_0_Build_2057/frameworks/_fwAndami/resources/org/gvsig/andami/text_ca.properties
1
#Translations for language [ca]
2
#Mon Oct 30 09:38:21 CET 2006
3
aceptar=Acceptar
4
cancelar=Cancel\u00b7lar
5
com.iver.andami.messages.Messages=
6
Ejecutando\ comando\:\ =
7
en=
8
error_parsing_comboscale_elements=
9
error_parsing_comboscale_value=
10
Error_reading_isocodes_file=
11
Icon_not_found_=
12
KeyMapping.Caracter_no_valido=Car\u00e0cter no v\u00e0lid\:
13
Launcher.config_mal_formado=. Fitxer 'config.xml' mal format
14
Launcher.config_no_encontrado=. Fitxer 'config.xml' no trobat
15
Launcher.Dependencia_no_resuelta_en_plugin=Depend\u00e8ncia no resolta en el connector
16
Launcher.Dos_skin_extension=Dos skin-extension. Usem l'\u00faltim
17
Launcher.Error_con_las_librerias_del_plugin=Error amb les llibreries del connector
18
Launcher.error_getting_class_loader_for_status_bar_control=
19
Launcher.Error_instanciando_la_extension=Error instanciant l'extensi\u00f3
20
Launcher.Error_localizando_la_clase_de_la_extension=Error en localitzar la classe de l'extensi\u00f3
21
Launcher.Hay_dependencias_circulares=Hi ha depend\u00e8ncies circulars entre els connectors
22
Launcher.Ignorando_el_directorio=Ignorant el directori
23
Launcher.labelset_class=No s'ha pogut trobar la classe d'etiquetes (labelset)
24
Launcher.look_and_feel=
25
Launcher.No_se_encontro_la_clase_de_la_extension=No s'ha trobat la classe de l'extensi\u00f3
26
Launcher.No_se_encontro_la_clase_mdi_manager=No s'ha trobat la classe mdi manager
27
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=No s'ha pogut accedir a la classe mdi manager
28
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=No s'ha pogut guardar la configuraci\u00f3 d'Andami
29
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=No s'ha pogut instanciar la classe mdi manager
30
Launcher.No_se_puede_acceder_a=No es pot accedir a
31
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=S'ha produ\u00eft un error en guardar la configuraci\u00f3 dels connectors
32
Launcher.Two_extensions_with_the_same_priority=Dos extensions amb la mateixa prioritat, nom\u00e9s se'n carregar\u00e0 una.
33
Launcher.Two_menus_with_the_same_position=Dos men\u00fas amb la mateixa posici\u00f3, nom\u00e9s se'n carregar\u00e0 un
34
login_exit=
35
login_invalid_user=
36
login_name=
37
login_ok=
38
login_password=
39
MDIFrame.Error_no_capturado_por_el_usuario=Error no detectat per l'usuari
40
MDIFrame.quiere_salir=Est\u00e0 segur que vol eixir?
41
MDIFrame.salir=Eixir
42
MDIManagerFactory.No_skin_extension_in_the_plugins=No s'ha trobat cap extensi\u00f3 'skin' entre els connectors
43
Messages._no_se_encontro_la_traduccion_para=No s'ha trobat la traducci\u00f3 per a
44
Messages.no_se_encontro_la_traduccion_para=No s'ha trobat la traducci\u00f3 per a
45
No_extension_associated_with_this_event_=
46
No_se_encontro_la_traduccion_para=No s'ha trobat la traducci\u00f3 per a
47
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=Dos classes amb el mateix nom en el connector
48
PluginClassLoader.Error_reading_file=Error llegint el fitxer\:
49
PluginServices.Bug\ en\ el\ c\u00f3digo=
50
PluginServices.Bug_en_el_codigo=Error en el codi
51
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=
52
PluginServices.Error_grave_de_la_aplicaci\u00f3n=
53
PluginServices.No_se_pudo_poner_el_reloj_de_arena=No s'ha pogut posar el rellotge d'arena
54
PluginServices.No_se_pudo_restaurar_el_cursor_del_raton=No s'ha pogut restaurar el cursor del ratol\u00ed
55
Preferences=Prefer\u00e8ncies
56
restore_defaults=
57
SplashWindow.Iniciando=Iniciant...
58
StatusBar.Aplicacion_iniciada=Aplicaci\u00f3 iniciada
59
Unable_to_find_icon=
60
y_en=
0 61

  
tags/v2_0_0_Build_2057/frameworks/_fwAndami/resources/org/gvsig/andami/text_pt.properties
1
#Translations for language [pt]
2
#Mon Oct 30 09:38:21 CET 2006
3
aceptar=Aceitar
4
cancelar=Cancelar
5
com.iver.andami.messages.Messages=
6
Ejecutando\ comando\:\ =
7
en=
8
error_parsing_comboscale_elements=
9
error_parsing_comboscale_value=
10
Error_reading_isocodes_file=
11
Icon_not_found_=
12
KeyMapping.Caracter_no_valido=Car\u00e1cter inv\u00e1lido
13
Launcher.config_mal_formado=. Ficheiro "config.xml" mal formado
14
Launcher.config_no_encontrado=. Ficheiro "config.xml" n\u00e3o encontrado
15
Launcher.Dependencia_no_resuelta_en_plugin=Depend\u00eancia n\u00e3o resolvida com "plugin"
16
Launcher.Dos_skin_extension=Duas estens\u00f5es "skin". Usaremos a \u00faltima
17
Launcher.Error_con_las_librerias_del_plugin=Erro com a biblioteca do "plugin"
18
Launcher.error_getting_class_loader_for_status_bar_control=
19
Launcher.Error_instanciando_la_extension=Erro ao instanciar a extens\u00e3o
20
Launcher.Error_localizando_la_clase_de_la_extension=Erro ao localizar a classe da extens\u00e3o
21
Launcher.Hay_dependencias_circulares=Existen depend\u00eancias c\u00edclicas entre os "plugins"
22
Launcher.Ignorando_el_directorio=Ignorando o direct\u00f3rio
23
Launcher.labelset_class=N\u00e3o foi poss\u00edvel encontrar a classe das etiquetas (labelset)
24
Launcher.look_and_feel=N\u00e3o foi poss\u00edvel activar o "look and feel"
25
Launcher.No_se_encontro_la_clase_de_la_extension=N\u00e3o se encontrou a classe da extens\u00e3o
26
Launcher.No_se_encontro_la_clase_mdi_manager=N\u00e3o se encontrou a classe "mdi manager"
27
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=N\u00e3o foi poss\u00edvel ter acesso \u00e0 classe "mdi manager"
28
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=N\u00e3o foi poss\u00edvel guardar a configura\u00e7\u00e3o de Andami
29
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=N\u00e3o foi poss\u00edvel instanciar a classe "mdi manager"
30
Launcher.No_se_puede_acceder_a=N\u00e3o se consegue ter acesso a
31
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=Produziu-se um erro ao guardar a configura\u00e7\u00e3o dos "plugins"
32
Launcher.Two_extensions_with_the_same_priority=Duas extens\u00f5es com a mesma prioridade, s\u00f3 uma ser\u00e1 carregada.
33
Launcher.Two_menus_with_the_same_position=Dois menus com a mesma posi\u00e7\u00e3o
34
login_exit=
35
login_invalid_user=
36
login_name=
37
login_ok=
38
login_password=
39
MDIFrame.Error_no_capturado_por_el_usuario=Erro n\u00e3o capturado pelo usu\u00e1rio
40
MDIFrame.quiere_salir=Fechar gvSIG?
41
MDIFrame.salir=Fechar
42
MDIManagerFactory.No_skin_extension_in_the_plugins=N\u00e3o se encontrou nenhuma extens\u00e3o "skin" entre os "plugins"
43
Messages._no_se_encontro_la_traduccion_para=N\u00e3o se encontrou a tradu\u00e7\u00e3o de
44
Messages.no_se_encontro_la_traduccion_para=
45
No_extension_associated_with_this_event_=
46
No_se_encontro_la_traduccion_para=N\u00e3o se encontrou a tradu\u00e7\u00e3o de
47
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=Duas classes com o mesmo nome no "plugin"
48
PluginClassLoader.Error_reading_file=Erro ao ler o ficheiro\:
49
PluginServices.Bug\ en\ el\ c\u00f3digo=
50
PluginServices.Bug_en_el_codigo="Bug" no c\u00f3digo
51
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=
52
PluginServices.Error_grave_de_la_aplicaci\u00f3n=
53
PluginServices.No_se_pudo_poner_el_reloj_de_arena=N\u00e3o foi poss\u00edvel activar a ampulheta
54
PluginServices.No_se_pudo_restaurar_el_cursor_del_raton=N\u00e3o foi poss\u00edvel restaurar o cursor
55
Preferences=
56
restore_defaults=
57
SplashWindow.Iniciando=A iniciar...
58
StatusBar.Aplicacion_iniciada=Aplica\u00e7\u00e3o iniciada
59
Unable_to_find_icon=
60
y_en=
0 61

  
tags/v2_0_0_Build_2057/frameworks/_fwAndami/resources/org/gvsig/andami/text_cs.properties
1
#Translations for language [cs]
2
#Mon Nov 06 09:04:31 CET 2006
3
aceptar=Budi\u017e
4
cancelar=Zru\u0161it
5
com.iver.andami.messages.Messages=com.iver.andami.messages.Messages
6
Ejecutando\ comando\:\ =Vykonej p\u0159\u00edkaz\:
7
en=
8
error_parsing_comboscale_elements=Chyba p\u0159i rozd\u011blov\u00e1n\u00ed elementu m\u011b\u0159\u00edtka
9
error_parsing_comboscale_value=Chyba p\u0159i rozd\u011blov\u00e1n\u00ed hodnoty m\u011b\u0159\u00edtka
10
Error_reading_isocodes_file=Chyba p\u0159i \u010dten\u00ed iso k\u00f3d\u016f pro jazyky
11
Icon_not_found_=Ikona nenalezena
12
KeyMapping.Caracter_no_valido=Neplatn\u00fd znak
13
Launcher.config_mal_formado=. Chybn\u00fd 'config.xml'
14
Launcher.config_no_encontrado='config.xml' nenalezen
15
Launcher.Dependencia_no_resuelta_en_plugin=Poru\u0161en\u00e1 z\u00e1vislost z\u00e1suvn\u00e9ho modulu
16
Launcher.Dos_skin_extension=Dv\u011b extenze pro vzhled.
17
Launcher.Error_con_las_librerias_del_plugin=Chyba v knihovn\u011b z\u00e1suvn\u00e9ho modulu
18
Launcher.error_getting_class_loader_for_status_bar_control=Chyba p\u0159i zji\u0161\u0165ov\u00e1n\u00ed stavu stavov\u00e9ho \u0159\u00e1dku.
19
Launcher.Error_instanciando_la_extension=Nelze vytvo\u0159it instanci extenze
20
Launcher.Error_localizando_la_clase_de_la_extension=Nelze nal\u00e9zt t\u0159\u00eddu extenze
21
Launcher.Hay_dependencias_circulares=Kruhov\u00e1 z\u00e1vislost z\u00e1suvn\u00e9ho modulu
22
Launcher.Ignorando_el_directorio=Ignoruji adres\u00e1\u0159
23
Launcher.labelset_class=Nelze nal\u00e9zt popisek t\u0159\u00eddy (labelset)
24
Launcher.look_and_feel=Nelze nastavit syst\u00e9mov\u00fd vzhled
25
Launcher.No_se_encontro_la_clase_de_la_extension=Nelze nal\u00e9zt t\u0159\u00eddu extenze
26
Launcher.No_se_encontro_la_clase_mdi_manager=Nelze nal\u00e9zt t\u0159\u00eddu mdi manager
27
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=P\u0159\u00edstup k mdi manager odm\u00edtnut
28
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=Nelze ulo\u017eit konfiguraci Andami
29
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=Nelze vytvo\u0159it instanci mdi manager
30
Launcher.No_se_puede_acceder_a=Zam\u00edtnut p\u0159\u00edstup k
31
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=Nelze ulo\u017eit konfigurace z\u00e1suvn\u00fdch modul\u016f
32
Launcher.Two_extensions_with_the_same_priority=Dv\u011b extenze se stejnou prioritou. Bude na\u010dtena jen jedna.
33
Launcher.Two_menus_with_the_same_position=Dv\u011b nab\u00eddky se stejnou pozic\u00ed. Bude na\u010dtena jen jedna.
34
login_exit=
35
login_invalid_user=
36
login_name=
37
login_ok=
38
login_password=
39
MDIFrame.Error_no_capturado_por_el_usuario=Chyba u\u017eivatele
40
MDIFrame.quiere_salir=Ukon\u010dit gvSIG?
41
MDIFrame.salir=Konec
42
MDIManagerFactory.No_skin_extension_in_the_plugins=Neexistuje extenze pro vzhled v z\u00e1suvn\u00e9m modulu
43
Messages._no_se_encontro_la_traduccion_para=Nelze nal\u00e9zt p\u0159eklad pro
44
Messages.no_se_encontro_la_traduccion_para=Nebyl nalezen p\u0159eklad pro
45
No_extension_associated_with_this_event_=S touto ud\u00e1losti nen\u00ed asociov\u00e1na \u017e\u00e1dn\u00e1 p\u0159\u00edpona souboru
46
No_se_encontro_la_traduccion_para=Nelze nal\u00e9zt p\u0159eklad pro
47
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=Dv\u011b t\u0159\u00eddy se stejn\u00fdm jm\u00e9nem
48
PluginClassLoader.Error_reading_file=IO chyba\:
49
PluginServices.Bug\ en\ el\ c\u00f3digo=Chyba aplikace
50
PluginServices.Bug_en_el_codigo=Chyba
51
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=Chyba aplikace. Doporu\u010dujeme uzav\u0159\u00edt aplikaci.
52
PluginServices.Error_grave_de_la_aplicaci\u00f3n=
53
PluginServices.No_se_pudo_poner_el_reloj_de_arena=Nelze nastavit p\u0159es\u00fdpac\u00ed hodiny
54
PluginServices.No_se_pudo_restaurar_el_cursor_del_raton=Nelze obnovit kurzor
55
Preferences=Preference
56
restore_defaults=Obnov standardn\u00ed
57
SplashWindow.Iniciando=Spou\u0161t\u00edm...
58
StatusBar.Aplicacion_iniciada=Aplikace spu\u0161t\u011bna
59
Unable_to_find_icon=
60
y_en=
0 61

  
tags/v2_0_0_Build_2057/frameworks/_fwAndami/resources/org/gvsig/andami/text_va.properties
1
#text_ca.properties
2
KeyMapping.Caracter_no_valido=Car\u00E0cter no v\u00E0lid\:
3
Launcher.config_mal_formado=. Fitxer 'config.xml' mal format
4
Launcher.config_no_encontrado=. Fitxer 'config.xml' no trobat
5
Launcher.Dependencia_no_resuelta_en_plugin=Depend\u00E8ncia no resolta en el connector
6
Launcher.Dos_skin_extension=Dos skin-extension. Usem l'\u00FAltim
7
Launcher.Error_con_las_librerias_del_plugin=Error amb les llibreries del connector
8
Launcher.Error_instanciando_la_extension=Error instanciant l'extensi\u00F3
9
Launcher.Error_localizando_la_clase_de_la_extension=Error en localitzar la classe de l'extensi\u00F3
10
Launcher.Hay_dependencias_circulares=Hi ha depend\u00E8ncies circulars entre els connectors
11
Launcher.Ignorando_el_directorio=Ignorant el directori
12
Launcher.labelset_class=No s'ha pogut trobar la classe d'etiquetes (labelset)
13
Launcher.look_and_feel=No s'ha pogut posar el 'look and feel'
14
Launcher.No_se_encontro_la_clase_de_la_extension=No s'ha trobat la classe de l'extensi\u00F3
15
Launcher.No_se_encontro_la_clase_mdi_manager=No s'ha trobat la classe mdi manager
16
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=No s'ha pogut accedir a la classe mdi manager
17
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=No s'ha pogut guardar la configuraci\u00F3 d'andami
18
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=No s'ha pogut instanciar la classe mdi manager
19
Launcher.No_se_puede_acceder_a=No es pot accedir a
20
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=S'ha produ\u00EFt un error en guardar la configuraci\u00F3 dels connectors
21
Launcher.Two_extensions_with_the_same_priority=Dos extensions amb la mateixa prioritat, nom\u00E9s se'n carregar\u00E0 una.
22
Launcher.Two_menus_with_the_same_position=Dos men\u00FAs amb la mateixa posici\u00F3, nom\u00E9s se'n carregar\u00E0 un
23
MDIFrame.Error_no_capturado_por_el_usuario=Error no detectat per l'usuari
24
MDIFrame.quiere_salir=Est\u00E0 segur que vol eixir?
25
MDIFrame.salir=Eixir
26
MDIManagerFactory.No_skin_extension_in_the_plugins=No s'ha trobat cap extensi\u00F3 'skin' entre els connectors
27
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=Dos classes amb el mateix nom en el connector
28
PluginClassLoader.Error_reading_file=Error llegint el fitxer\: 
29
PluginServices.Bug_en_el_codigo=Error en el codi
30
PluginServices.Error_grave_de_la_aplicacion=Error greu de l'aplicaci\u00F3. \u00C9s convenient que guarde les dades i isca de l'aplicaci\u00F3
31
PluginServices.No_se_encontro_el_recurso_de_traducciones=No s'ha trobat el recurs de traduccions
32
PluginServices.No_se_encontro_la_traduccion_para=No s'ha trobat la traducci\u00F3 per a
33
PluginServices.No_se_pudo_poner_el_reloj_de_arena=No s'ha pogut posar el rellotge d'arena
34
PluginServices.No_se_pudo_restaurar_el_cursor_del_raton=No s'ha pogut restaurar el cursor del ratol\u00ED
35
SplashWindow.Iniciando=Iniciant...
36
StatusBar.Aplicacion_iniciada=Aplicaci\u00F3 iniciada
0 37

  
tags/v2_0_0_Build_2057/frameworks/_fwAndami/resources/org/gvsig/andami/text_fr.properties
1
#Translations for language [fr]
2
#Mon Oct 30 09:38:21 CET 2006
3
aceptar=Accepter
4
cancelar=Annuler
5
com.iver.andami.messages.Messages=
6
Ejecutando\ comando\:\ =
7
en=
8
error_parsing_comboscale_elements=
9
error_parsing_comboscale_value=
10
Error_reading_isocodes_file=
11
Icon_not_found_=
12
KeyMapping.Caracter_no_valido=Caract\u00e8re non valide\:
13
Launcher.config_mal_formado=. Fichier 'config.xml' mal format\u00e9
14
Launcher.config_no_encontrado=. Fichier 'config.xml' non trouv\u00e9
15
Launcher.Dependencia_no_resuelta_en_plugin=D\u00e9pendance non r\u00e9solue dans le plugin
16
Launcher.Dos_skin_extension=Deux "skin-extension". Le dernier sera utilis\u00e9\:
17
Launcher.Error_con_las_librerias_del_plugin=Erreur avec les librairies du plugin
18
Launcher.error_getting_class_loader_for_status_bar_control=
19
Launcher.Error_instanciando_la_extension=Erreur d'instanciation de l'extension
20
Launcher.Error_localizando_la_clase_de_la_extension=Erreur de localisation de la classe d'extension
21
Launcher.Hay_dependencias_circulares=Il y a des d\u00e9pendances circulaires entre les plugins
22
Launcher.Ignorando_el_directorio=Ignor\u00e9 dans le r\u00e9pertoire
23
Launcher.labelset_class=Impossible de trouver la classe des \u00e9tiquettes (labelset)
24
Launcher.look_and_feel=Impossible d'afficher le "look and feel"\:
25
Launcher.No_se_encontro_la_clase_de_la_extension=Impossible de trouver la classe de l'extension
26
Launcher.No_se_encontro_la_clase_mdi_manager=Impossible de trouver la classe mdi manager
27
Launcher.No_se_pudo_acceder_a_la_clase_mdi_manager=Impossible d'acc\u00e9der la clase mdi manager
28
Launcher.No_se_pudo_guardar_la_configuracion_de_andami=Impossible de conserver la configuration d'Andami
29
Launcher.No_se_pudo_instanciar_la_clase_mdi_manager=Impossible d'instancier la classe mdi manager
30
Launcher.No_se_puede_acceder_a=Impossible d'acc\u00e9der \u00e0
31
Launcher.Se_produjo_un_error_guardando_la_configuracion_de_los_plugins=Une erreur s'est produite lors de la sauvegarde de la configuration des plugins
32
Launcher.Two_extensions_with_the_same_priority=Deux extensions ont la m\u00eame priorit\u00e9, une seule sera charg\u00e9e.
33
Launcher.Two_menus_with_the_same_position=Deux menus ont la m\u00eame position, un seul sera charg\u00e9
34
login_exit=
35
login_invalid_user=
36
login_name=
37
login_ok=
38
login_password=
39
MDIFrame.Error_no_capturado_por_el_usuario=Erreur non captur\u00e9e par l'utilisateur
40
MDIFrame.quiere_salir=Voulez-vous vraiment quitter gvSIG?
41
MDIFrame.salir=Quitter
42
MDIManagerFactory.No_skin_extension_in_the_plugins=Aucune extension "skin" n'a \u00e9t\u00e9 trouv\u00e9e parmi les plugins\:
43
Messages._no_se_encontro_la_traduccion_para=Impossible de trouver les traductions pour
44
Messages.no_se_encontro_la_traduccion_para=
45
No_extension_associated_with_this_event_=
46
No_se_encontro_la_traduccion_para=Impossible de trouver les traductions pour
47
PluginClassLoader.Dos_clases_con_el_mismo_nombre_en_el_plugin=Deux classes ont le m\u00eame nom dans le plugin
48
PluginClassLoader.Error_reading_file=Erreur dans la lecture du fichier\:
49
PluginServices.Bug\ en\ el\ c\u00f3digo=
50
PluginServices.Bug_en_el_codigo=Bug dans le code
51
PluginServices.Error\ grave\ de\ la\ aplicaci\u00f3n.\ Es\ conveniente\ que\ salgas\ de\ la\ aplicaci\u00f3n=
52
PluginServices.Error_grave_de_la_aplicaci\u00f3n=
53
PluginServices.No_se_pudo_poner_el_reloj_de_arena=Absence de sablier\:
54
PluginServices.No_se_pudo_restaurar_el_cursor_del_raton=Impossible de restaurer le curseur de la souris
55
Preferences=
56
restore_defaults=
57
SplashWindow.Iniciando=Initialisation...
58
StatusBar.Aplicacion_iniciada=Application initialis\u00e9e
59
Unable_to_find_icon=
60
y_en=
0 61

  
tags/v2_0_0_Build_2057/frameworks/_fwAndami/.cvsignore
1
bin
2
gvsig.log
3
gvSIG
4
web
5
andami.jar
6
keystore
7
java.hprof.txt
8
build-doc
9
*.log
10
cachedir
11
bin-test
0 12

  
tags/v2_0_0_Build_2057/frameworks/_fwAndami/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
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff