Revision 36538

View differences:

tags/v_1_12_0_Build_1402/extExpressionField/.cvsignore
1
bin
2
dist-src
3
bin-test
0 4

  
tags/v_1_12_0_Build_1402/extExpressionField/build.xml
1
<project name="extExpressionField" default="deploy" basedir=".">
2
	<description>
3
        Instala el plugin de Centrar la Vista sobre un punto en Andami.
4
    </description>
5
	<!-- set global properties for this build -->
6
	<property name="src" location="src"/>
7
	<property name="build" location="bin"/>
8
	<property name="src-test" location="src-test"/>
9
	<property name="build-test" location="build-test"/>
10
	<property name="doc"  location="doc"/>
11
	<property name="dist"  location="dist"/>
12
	<property name="dist-src-name"  value="dist-src"/>
13
	<property name="dist-src"  location="${dist-src-name}"/>
14
	<property name="without_src"  location="without_src"/>
15
	<property name="plugin" value="com.iver.gvsig.expressionfield"/>
16
	<property name="mainplugin" value="com.iver.cit.gvsig"/>
17
	<property name="extensionDir" location="../_fwAndami/gvSIG/extensiones"/>
18
	<property name="readMe.files" value="Leeme-ExpressionField.txt, Readme-ExpressionField.txt"/>
19
	<property name="andami" location="../_fwAndami"/>
20
	<property name="andamiLibs" location="${andami}/lib"/>
21
	<property name="fmap" location="../libFMap"/>
22
	<property name="fmapLibs" location="${fmap}/lib"/>
23
	<property name="scripting" location="../extScripting"/>
24
	<property name="scriptingLibs" location="${scripting}/lib"/>
25
	<property name="installLibDir" location="${extensionDir}/${mainplugin}/lib"/>
26
	<property name="cad_gvsig_jar" location="${extensionDir}/${mainplugin}.cad/${mainplugin}.cad.jar"/>
27
	<import file="../binaries/ant/utilities.xml"/>
28
	<target name="init">
29
		<!-- Create the time stamp -->
30
        <echo>
31
            Compiling ${ant.project.name}...</echo>
32
		<tstamp/>
33
   		<mkdir dir="${without_src}"/>
34
	</target>
35

  
36

  
37
	<target name="generate-source-package">
38
		<delete dir="${dist-src}" quiet="yes"/>
39
		<mkdir dir="${dist-src}"/>
40
		<basename file="${basedir}" property="extensionProjectDir"/>
41
		<mkdir dir="${dist-src}/${extensionProjectDir}"/>
42
		<copy todir="${dist-src}/${extensionProjectDir}">
43
			<fileset dir="${basedir}"/>
44
		</copy>
45
		<copy todir="${dist-src}">
46
			<fileset dir="${basedir}/install/resources" includes="${readMe.files}"/>
47
		</copy>
48
		<delete dir="${dist-src}/${extensionProjectDir}/bin"/>
49
		<mkdir dir="${dist-src}/${extensionProjectDir}/bin"/>
50
		<delete dir="${dist-src}/${extensionProjectDir}/install"/>
51
		<delete dir="${dist-src}/${extensionProjectDir}/dist" quiet="yes"/>
52
		<delete dir="${dist-src}/${extensionProjectDir}/dist-src" quiet="yes"/>
53
		<loadproperties srcFile="build.number"/>
54
		<replace casesensitive="true"
55
	  	  	token="#build.number#"
56
	  		value="${build.number}"
57
	  		dir="${dist-src}"
58
	  		includes="${readMe.files}"/>
59
		<zip destfile="${dist-src}/gvsig_expressionfield-01_${build.number}-src.zip"
60
	  	       basedir="${dist-src-name}"
61
	  	       excludes="*.zip"
62
	  	  />
63

  
64
	</target>
65

  
66
	<target name="distribution" description="increment build number and generate the distribution without the source file" >
67
		<echo> Obsoleto: este proyecto se distribuye con gvSIG de base </echo>
68
        <!--     -->
69
	</target>
70
	<target name="generate-without-source" description="generate the distribution without the source file" >
71
		<!-- Create the distribution directory -->
72
		<mkdir dir="${without_src}"/>
73

  
74
		<!-- Put everything in ${build} into the MyProject-${DSTAMP}.jar file -->
75
		<jar jarfile="${without_src}/${plugin}.jar" basedir="${build}"/>
76
		<copy file="config/config.xml" todir="${without_src}"/>
77
		<copy file="build.number" todir="${without_src}"/>
78
		<copy file="config/about.htm" todir="${without_src}"/>
79
		<loadproperties srcFile="build.number"/>
80
		<replace casesensitive="true"
81
  		file="${without_src}/about.htm"
82
  	  	token="#build.number#"
83
  		value="${build.number}"/>
84
		<copy todir="${without_src}">
85
			<fileset dir="config" includes="text*.properties"/>
86
		</copy>
87
		<copy todir="${without_src}/images">
88
			<fileset dir="images/" includes="*"/>
89
		</copy>
90
		<move todir="${extensionDir}/${plugin}/">
91
			<fileset dir="${without_src}" includes="**/**"/>
92
		</move>
93
	</target>
94

  
95

  
96
    <target name="deploy"
97
            description="compile the sources, create the jar file"
98
            depends="init,create-jar,copy-data-files,move-to-andami">
99
    </target>
100

  
101
    <target name="batch-build"
102
            description="compile the sources, create the jar file"
103
            depends="init,compile,create-jar,copy-data-files,move-to-andami">
104
    </target>
105

  
106
    <target name="compile" description="compile the source" >
107
		<!-- Compile the Java code from ${src} to ${build} -->
108
		<antcall target="gvSIG-import-build-number"/>
109
		<mkdir dir="${build}" />
110
		<loadEclipseClasspath project="${basedir}"/>
111
		<gvSIG-javac
112
			classpath="${eclipseClasspath}"	/>
113
    </target>
114

  
115
    <target name="create-jar"
116
            description="Creates the plugin jar">
117
		<jar jarfile="${without_src}/${plugin}.jar" basedir="${build}"/>
118
    </target>
119

  
120
    <target name="copy-data-files" depends="make-package-info">
121
		<copy file="config/config.xml" todir="${without_src}"/>
122
		<copy file="build.number" todir="${without_src}"/>
123
		<copy file="package.info" todir="${without_src}"/>
124
		<copy file="config/about.htm" todir="${without_src}"/>
125
		<loadproperties srcFile="build.number"/>
126
		<replace casesensitive="true"
127
  		file="${without_src}/about.htm"
128
  	  	token="#build.number#"
129
  		value="${build.number}"/>
130
		<copy todir="${without_src}">
131
			<fileset dir="config" includes="text*.properties"/>
132
		</copy>
133
		<copy todir="${without_src}/images">
134
			<fileset dir="images/" includes="*"/>
135
		</copy>
136
    </target>
137

  
138

  
139
    <target name="move-to-andami">
140
		<move todir="${extensionDir}/${plugin}/">
141
			<fileset dir="${without_src}" includes="**/**"/>
142
		</move>
143
    </target>
144

  
145
	<target name="clean">
146
		<delete dir="${dist}" failonerror="false"/>
147
		<delete dir="${dist-src}" failonerror="false"/>
148
	</target>
149

  
150
	<target name="run-tests" depends="batch-build,compile-tests">
151
		<antcall target="generic-run-tests">
152
			<param name="TestSuite.Name" value="org.gvsig.scripting.AllTests"/>
153
		</antcall>
154
	</target>
155
</project>
156

  
0 157

  
tags/v_1_12_0_Build_1402/extExpressionField/.classpath
1
<?xml version="1.0" encoding="UTF-8"?>
2
<classpath>
3
	<classpathentry kind="src" path="src"/>
4
	<classpathentry kind="src" output="bin-test" path="src-test"/>
5
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
6
	<classpathentry combineaccessrules="false" kind="src" path="/_fwAndami"/>
7
	<classpathentry combineaccessrules="false" kind="src" path="/appgvSIG"/>
8
	<classpathentry combineaccessrules="false" kind="src" path="/extCAD"/>
9
	<classpathentry combineaccessrules="false" kind="src" path="/libFMap"/>
10
	<classpathentry kind="lib" path="/extScripting/lib/bsf-2.3.0rc1.jar"/>
11
	<classpathentry kind="lib" path="/extScripting/lib/bsh-2.0b1.jar"/>
12
	<classpathentry kind="lib" path="/libFMap/lib/gdbms-0.8-SNAPSHOT.jar" sourcepath="/libGDBMS"/>
13
	<classpathentry kind="lib" path="/_fwAndami/lib/iver-utiles.jar" sourcepath="/Utiles/src"/>
14
	<classpathentry kind="lib" path="/libFMap/lib/driver-manager-1.1.jar" sourcepath="/libDriverManager"/>
15
	<classpathentry kind="lib" path="/libFMap/lib/org.cresques.cts.jar"/>
16
	<classpathentry kind="var" path="JUNIT_HOME/junit.jar"/>
17
	<classpathentry kind="lib" path="/_fwAndami/lib/org.gvsig.exceptions.jar"/>
18
	<classpathentry kind="lib" path="/libFMap/lib/jts-1.9.jar"/>
19
	<classpathentry kind="lib" path="/_fwAndami/lib/log4j-1.2.14.jar"/>
20
	<classpathentry kind="lib" path="/_fwAndami/lib/org.gvsig.ui.jar"/>
21
	<classpathentry kind="output" path="bin"/>
22
</classpath>
0 23

  
tags/v_1_12_0_Build_1402/extExpressionField/.project
1
<?xml version="1.0" encoding="UTF-8"?>
2
<projectDescription>
3
	<name>extExpressionField</name>
4
	<comment></comment>
5
	<projects>
6
	</projects>
7
	<buildSpec>
8
		<buildCommand>
9
			<name>org.eclipse.jdt.core.javabuilder</name>
10
			<arguments>
11
			</arguments>
12
		</buildCommand>
13
		<buildCommand>
14
			<name>de.loskutov.FileSync.FSBuilder</name>
15
			<arguments>
16
			</arguments>
17
		</buildCommand>
18
	</buildSpec>
19
	<natures>
20
		<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
21
		<nature>org.eclipse.jdt.core.javanature</nature>
22
		<nature>org.eclipse.jem.beaninfo.BeanInfoNature</nature>
23
	</natures>
24
</projectDescription>
0 25

  
tags/v_1_12_0_Build_1402/extExpressionField/src-test/com/iver/cit/gvsig/expressionField/AllTests.java
1
package com.iver.cit.gvsig.expressionField;
2

  
3
import junit.framework.Test;
4
import junit.framework.TestSuite;
5

  
6
public class AllTests {
7

  
8
	public static Test suite() {
9
		TestSuite suite = new TestSuite(
10
				"Test for com.iver.cit.gvsig.expressionField");
11
		//$JUnit-BEGIN$
12

  
13
		//$JUnit-END$
14
		return suite;
15
	}
16

  
17
}
0 18

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text_pl.properties
1
#Translations for language [pl]
2
#Mon Sep 21 10:02:03 CEST 2009
3
advanced=Zaawansowane
4
boolean_value=
5
calculate_expression=
6
charged_operators=
7
charging_operators=
8
clear_expression=
9
column=
10
commands=
11
continue?=
12
date=
13
date_value=
14
description=Opis
15
double_value=
16
error=B\u0142\u0105d
17
error_expression=
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=
19
evaluate=
20
evaluate_expression_with_errors=
21
explorer=
22
expression=
23
expressions=
24
#fix expression_field translation
25
expression_field=
26
expressions_from_file=
27
field=Kolumna
28
field_toolbar=
29
format=
30
general=Og\u00f3lne
31
incorrect_file=
32
information=
33
integer_value=
34
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=
35
limit_rows_in_memory=
36
numeric=
37
numeric_value=
38
operator=
39
optional=
40
parameter=
41
python=
42
returns=
43
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=
44
string=
45
string_value=
46
type=Typ
47
value=warto\u015b\u0107
48
without_limit=
0 49

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text_it.properties
1
#Translations for language [it]
2
#Mon Sep 21 10:02:02 CEST 2009
3
advanced=Avanzata
4
boolean_value=Valore boleano
5
calculate_expression=Calcola espressione
6
charged_operators=Operatori caricati.
7
charging_operators=Caricamento operatori
8
clear_expression=Cancella espressione
9
column=Colonna
10
commands=Comandi
11
continue?=Continuare?
12
date=Data
13
date_value=Valore della data
14
description=Descrizione
15
double_value=
16
error=Errore
17
error_expression=Errore nell'espressione
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=L'espressione verr\u00e0 processata ora, \ncon gli attuali dati della tabella
19
evaluate=Processa
20
evaluate_expression_with_errors=Espressione processata con errori
21
explorer=Esplorare
22
expression=Espressione
23
expressions=Espressioni
24
#fix expression_field translation
25
expression_field=Espressione
26
expressions_from_file=Espressioni da un file
27
field=Campo
28
field_toolbar=
29
format=Formato
30
general=Generale
31
incorrect_file=File incorretto
32
information=Informazione
33
integer_value=
34
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=E' stato stabilito un limite di righe nelle preferenze, non sar\u00e0 possibile annullare l'operazione. Proseguire?
35
limit_rows_in_memory=Limite di righe in memoria
36
numeric=Numerico
37
numeric_value=Valore numerico
38
operator=
39
optional=Opzionale
40
parameter=Parametro
41
python=
42
returns=Torna
43
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=Specifica il numero di righe \n in memoria quando viene processata un'espressione,\n riducendo drasticamente il tempo di esecuzione\n quando viene diminuito.
44
string=Stringa
45
string_value=Valore stringa
46
type=Tipo
47
value=Valore
48
without_limit=Senza limite
0 49

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text_ro.properties
1
#Translations for language [ro]
2
#Mon Sep 21 10:02:03 CEST 2009
3
advanced=Inainta
4
boolean_value=Valoare boolen\u0103
5
calculate_expression=Calcul expresie
6
charged_operators=Operatori \u00eenc\u0103rca\u021bi
7
charging_operators=Schimbare operatori
8
clear_expression=Elimin\u0103 expresie
9
column=Coloan\u0103
10
commands=Comenzi
11
continue?=Continuu?
12
date=Dat\u0103
13
date_value=Valoare dat\u0103
14
description=Descriere
15
double_value=
16
error=Eroare
17
error_expression=Eroare \u00een expresie
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=Evaluarea expresiei va fi efectuat\u0103 chiar acum\r\ncu valorile curente din tabel.
19
evaluate=Evalueaz\u0103
20
evaluate_expression_with_errors=Expresii evaluate cu erori
21
explorer=Explorator
22
expression=Expresii
23
expressions=Expresii
24
#fix expression_field translation
25
expression_field=Expresii
26
expressions_from_file=Expresii din fi\u0219ier
27
field=C\u00e2mp
28
field_toolbar=
29
format=Format
30
general=General
31
incorrect_file=Fi\u0219ier incorect
32
information=Informa\u021bie
33
integer_value=
34
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=Este stabilit\u0103 o limit\u0103 de r\u00e2nduri la preferin\u021be, ve\u021bi pierde posibilitate de a anula opera\u021bia. Continua\u021bi?
35
limit_rows_in_memory=Limitare c\u00e2mpuri \u00een memorie
36
numeric=Numeric
37
numeric_value=Valoare numeric\u0103
38
operator=
39
optional=Op\u021bional
40
parameter=Parametru
41
python=
42
returns=Reveniri
43
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=Specific\u0103 num\u0103rul de \u00eenregistr\u0103ri limit\u0103\r\n  \u00een memorie la evaluarea expresiei,\r\n  se reduce drastic viteza\r\n  c\u00e2nd se limiteaz\u0103.
44
string=\u0218ir (String)
45
string_value=Valoare \u0219ir (string)
46
type=Tip
47
value=Valoare
48
without_limit=F\u0103r\u0103 limit\u0103
0 49

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text.properties
1
#Translations for language [es]
2
#Mon Sep 21 10:02:02 CEST 2009
3
advanced=Avanzada
4
boolean_value=Valor booleano
5
calculate_expression=Calcular expresi\u00f3n
6
charged_operators=Operadores cargados.
7
charging_operators=Cargando operadores
8
clear_expression=Borrar expresi\u00f3n
9
column=Columna
10
commands=Comandos
11
continue?=\u00bfQuiere continuar?
12
date=Fecha
13
date_value=Valor fecha
14
description=Descripci\u00f3n
15
double_value=
16
error=Error
17
error_expression=Error en la expresi\u00f3n
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=El c\u00e1lculo de la expresi\u00f3n se realizar\u00e1 en este momento\nsobre los registros existentes en la tabla.
19
evaluate=Evaluarconcello-escala_25-proyeccion_23029.shp
20
evaluate_expression_with_errors=Expresiones evaluadas con errores
21
explorer=Explorar
22
expression=Expresi\u00f3n
23
expressions=Expresiones
24
espression_field=Calculadora de campos
25
expressions_from_file=Expresiones de fichero
26
field=Campo
27
field_toolbar=
28
format=Formato
29
general=General
30
incorrect_file=Fichero incorrecto
31
information=Informaci\u00f3n
32
integer_value=
33
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=Tiene establecido un l\u00edmite de registros en preferencias, perder\u00e1 la posibilidad de deshacer. \u00bfQuiere continuar?
34
limit_rows_in_memory=L\u00edmite de registros en memoria
35
numeric=Num\u00e9rico
36
numeric_value=Valor num\u00e9rico
37
operator=
38
optional=Opcional
39
parameter=Par\u00e1metro
40
python=
41
returns=Devuelve
42
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=Especifica el n\u00famero de registros\n  en memoria cuando se evalue la expresi\u00f3n,\n  reduciendose dr\u00e1sticamente la velocidad\n cuando se limite.
43
string=Cadena
44
string_value=Valor String
45
type=Tipo
46
value=Valor
47
without_limit=Sin l\u00edmite
0 48

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text_zh.properties
1
#Translations for language [zh]
2
#Mon Sep 21 10:02:03 CEST 2009
3
advanced=\u9ad8\u7ea7
4
boolean_value=
5
calculate_expression=
6
charged_operators=
7
charging_operators=
8
clear_expression=
9
column=
10
commands=
11
continue?=
12
date=
13
date_value=
14
description=\u63cf\u8ff0
15
double_value=
16
error=\u9519\u8bef
17
error_expression=
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=
19
evaluate=
20
evaluate_expression_with_errors=
21
explorer=
22
expression=
23
expressions=
24
expression_field=
25
expressions_from_file=
26
field=\u5b57\u6bb5
27
field_toolbar=
28
format=\u683c\u5f0f
29
general=\u57fa\u672c\u8bbe\u7f6e
30
incorrect_file=
31
information=
32
integer_value=
33
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=
34
limit_rows_in_memory=
35
numeric=
36
numeric_value=
37
operator=
38
optional=
39
parameter=
40
python=
41
returns=
42
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=
43
string=
44
string_value=
45
type=\u7c7b\u578b
46
value=\u6570\u636e
47
without_limit=
0 48

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text_ca.properties
1
#Translations for language [ca]
2
#Mon Sep 21 10:02:02 CEST 2009
3
advanced=Avan\u00e7ada
4
boolean_value=Valor boole\u00e0
5
calculate_expression=Calcular l'expressi\u00f3
6
charged_operators=Operadors carregats.
7
charging_operators=Carregant operadors
8
clear_expression=Esborrar expressi\u00f3
9
column=Columna
10
commands=Comandaments
11
continue?=Vol continuar?
12
date=Data
13
date_value=Valor data
14
description=Descripci\u00f3
15
double_value=
16
error=Error
17
error_expression=Error en l'expressi\u00f3
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=El c\u00e0lcul de l'expressi\u00f3 es realitzar\u00e0 en este moment sobre els registres existents en la taula\n
19
evaluate=Avaluar
20
evaluate_expression_with_errors=Expressions avaluades amb errors
21
explorer=Explorar
22
expression=Expressi\u00f3
23
expressions=Expressions
24
expressions_from_file=Expressions de fitxer
25
field=Camp
26
field_toolbar=
27
format=Format
28
general=General
29
incorrect_file=Fitxer incorrecte
30
information=Informaci\u00f3
31
integer_value=
32
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=T\u00e9 establit un l\u00edmit de registres en prefer\u00e8ncies, perdr\u00e0 la possibilitat de desfer. Vol continuar?\n
33
limit_rows_in_memory=L\u00edmit de registres en mem\u00f2ria
34
numeric=Num\u00e8ric
35
numeric_value=Valor num\u00e8ric
36
operator=
37
optional=Opcional
38
parameter=Par\u00e0metre
39
python=
40
returns=Torna
41
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=en mem\u00f2ria quan s'avalue l'expressi\u00f3, i es redu\u00efx dr\u00e0sticament la velocitat quan es limite
42
string=Cadena
43
string_value=Valor cadena
44
type=Tipus
45
value=Valor
46
without_limit=Sense l\u00edmit
0 47

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text_pt.properties
1
#Translations for language [pt]
2
#Mon Sep 21 10:02:03 CEST 2009
3
advanced=Avan\u00e7ado
4
boolean_value=
5
calculate_expression=
6
charged_operators=
7
charging_operators=
8
clear_expression=
9
column=Coluna
10
commands=
11
continue?=
12
date=
13
date_value=
14
description=Descri\u00e7\u00e3o
15
double_value=
16
error=Error
17
error_expression=
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=
19
evaluate=
20
evaluate_expression_with_errors=
21
explorer=
22
expression=
23
expressions=
24
#fix expression_field translation
25
expression_field=
26
expressions_from_file=
27
field=Campo
28
field_toolbar=
29
format=Formato
30
general=Geral
31
incorrect_file=
32
information=
33
integer_value=
34
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=
35
limit_rows_in_memory=
36
numeric=
37
numeric_value=
38
operator=
39
optional=
40
parameter=
41
python=
42
returns=
43
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=
44
string=
45
string_value=
46
type=Tipo
47
value=Valor
48
without_limit=
0 49

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text_sr.properties
1
#Translations for language [sr]
2
#Mon Sep 21 10:02:03 CEST 2009
3
advanced=Napredno
4
boolean_value=
5
calculate_expression=
6
charged_operators=
7
charging_operators=
8
clear_expression=
9
column=Kolona
10
commands=
11
continue?=
12
date=
13
date_value=
14
description=Opis
15
double_value=
16
error=Gre\u0161ka
17
error_expression=
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=
19
evaluate=
20
evaluate_expression_with_errors=
21
explorer=
22
expression=
23
#fix expression_field translation
24
expression_field=
25
expressions_from_file=
26
field=Polje
27
field_toolbar=
28
format=Format
29
general=General
30
incorrect_file=
31
information=
32
integer_value=
33
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=
34
limit_rows_in_memory=
35
numeric=
36
numeric_value=
37
operator=
38
optional=
39
parameter=
40
python=
41
returns=
42
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=
43
string=
44
string_value=
45
type=Tip
46
value=Vrednost
47
without_limit=
0 48

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text_tr.properties
1
#Translations for language [tr]
2
#Mon Sep 21 10:02:03 CEST 2009
3
advanced=Geli\u015fmi\u015f
4
boolean_value=Boole de\u011feri
5
calculate_expression=\u0130fadeyi hesapla
6
charged_operators=
7
charging_operators=
8
clear_expression=\u0130fadeyi sil
9
column=S\u00fctun
10
commands=Komutlar
11
continue?=Devam?
12
date=Tarih
13
date_value=Tarih de\u011feri
14
description=Tan\u0131m
15
double_value=
16
error=Hata
17
error_expression=Hata ifadesi
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=
19
evaluate=De\u011ferlendir
20
evaluate_expression_with_errors=
21
explorer=
22
expression=\u0130fade
23
#fix expression_field translation
24
expression_field=\u0130fade
25
expressions_from_file=Dosyadan ifadeler
26
field=Alan
27
field_toolbar=
28
format=Bi\u00e7im
29
general=Genel
30
incorrect_file=Hatal\u0131 dosya
31
information=Bilgi
32
integer_value=
33
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=
34
limit_rows_in_memory=
35
numeric=Rakamsal
36
numeric_value=Rakamsal de\u011fer
37
operator=
38
optional=Se\u00e7imlik
39
parameter=Parametre
40
python=
41
returns=
42
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=
43
string=Dizgi
44
string_value=Dizgi de\u011feri
45
type=Tip
46
value=De\u011fer
47
without_limit=S\u0131n\u0131rs\u0131z
tags/v_1_12_0_Build_1402/extExpressionField/config/text_ru.properties
1
#Translations for language [ru]
2
#Mon Sep 21 10:02:03 CEST 2009
3
advanced=\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435
4
boolean_value=\u041b\u043e\u0433\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435
5
calculate_expresion=\u0420\u0430\u0441\u0441\u0447\u0438\u0442\u0430\u0442\u044c \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435
6
calculate_expression=
7
charged_operators=
8
charging_operators=\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u043f\u0435\u0440\u0430\u0442\u043e\u0440\u044b
9
clear_expresion=\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435
10
clear_expression=
11
column=\u041f\u043e\u043b\u0435
12
commands=\u041a\u043e\u043c\u0430\u043d\u0434\u044b
13
continue?=\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c?
14
date=\u0414\u0430\u0442\u0430
15
date_value=\u0412\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435
16
description=\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435
17
double_value=
18
error=\u041e\u0448\u0438\u0431\u043a\u0430
19
error_expresion=\u041e\u0448\u0438\u0431\u043e\u0447\u043d\u043e\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435
20
error_expression=
21
eval_expresion_will_be_carried_out_right_now_with_current_values_in_table=\u0412\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0431\u0443\u0434\u0435\u0442 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e \n\u0441 \u0442\u0435\u043a\u0443\u0449\u0438\u043c\u0438 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f\u043c\u0438 \u0432 \u0442\u0430\u0431\u043b\u0438\u0446\u0435
22
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=
23
evaluate=\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c
24
evaluate_expresion_with_errors=\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u043c\u044b\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442 \u043e\u0448\u0438\u0431\u043a\u0438
25
evaluate_expression_with_errors=
26
explorer=\u041e\u0431\u0437\u043e\u0440
27
expression=\u0420\u0430\u0441\u0441\u0447\u0438\u0442\u0430\u0442\u044c \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435
28
expressions=\u0412\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f
29
expressions_from_file=\u0412\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0438\u0437 \u0444\u0430\u0439\u043b\u0430
30
#fix expression_field translation
31
expression_field=\u0420\u0430\u0441\u0441\u0447\u0438\u0442\u0430\u0442\u044c \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435
32
field=\u041f\u043e\u043b\u0435
33
field_toolbar=
34
format=\u0424\u043e\u0440\u043c\u0430\u0442
35
general=\u041e\u0431\u0449\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438
36
incorrect_file=\u041d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u044b\u0439 \u0444\u0430\u0439\u043b
37
information=\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f
38
integer_value=
39
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044e, \u0442.\u043a. \u043b\u0438\u043c\u0438\u0442 \u0441\u0442\u0440\u043e\u043a \u0443\u0436\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d \u0432 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u0445. \u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c?
40
limit_rows_in_memory=\u041b\u0438\u043c\u0438\u0442 \u0441\u0442\u0440\u043e\u043a \u0432 \u043f\u0430\u043c\u044f\u0442\u0438
41
numeric=\u0427\u0438\u0441\u043b\u043e
42
numeric_value=\u0427\u0438\u0441\u043b\u043e\u0432\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435
43
operator=\u041a\u043e\u043c\u0430\u043d\u0434\u0430
44
optional=
45
parameter=\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b
46
python=
47
returns=\u0412\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0435\u0442
48
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expresion=\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043b\u0438\u043c\u0438\u0442 \u0441\u0442\u0440\u043e\u043a \u0432 \u043f\u0430\u043c\u044f\u0442\u0438 \u043f\u0440\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0438 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f. \n\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u043b\u0438\u043c\u0438\u0442\u0430 \u0441\u043d\u0438\u0436\u0430\u0435\u0442 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f.
49
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=
50
string=\u0422\u0435\u043a\u0441\u0442
51
string_value=\u0422\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435
52
type=\u0422\u0438\u043f
53
value=\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435
54
without_limit=\u0411\u0435\u0437 \u043b\u0438\u043c\u0438\u0442\u0430
0 55

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text_de.properties
1
#Translations for language [de]
2
#Mon Sep 21 10:02:02 CEST 2009
3
advanced=Erweitert
4
boolean_value=Boolscher Wert
5
calculate_expression=Ausdruck berechnen
6
charged_operators=geladener Operator
7
charging_operators=Ladezeit Operator
8
clear_expression=Ausdruck l\u00f6schen
9
column=Spalte
10
commands=Kommandos
11
continue?=Fortfahren?
12
date=Datum
13
date_value=Datums-Wert
14
description=Beschreibung
15
double_value=
16
error=Fehler
17
error_expression=Fehler im Ausdruck.
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=Ausdruck wird nicht f\u00fcr die aktuellen Werte der Tabelle gepr\u00fcft.
19
evaluate=Auswerten
20
evaluate_expression_with_errors=Durch das Pr\u00fcfen der Ausdr\u00fccke wurden Fehler gefunden
21
explorer=Durchsuchen
22
expression=Ausdruck
23
expressions=Ausdr\u00fccke
24
expressions_from_file=Ausdr\u00fccke von Datei
25
field=Feld
26
field_toolbar=
27
format=Format
28
general=Allgemein
29
incorrect_file=Ung\u00fcltige Datei
30
information=Information
31
integer_value=
32
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=Zeilen- Limit wurde erreicht in den Eigenschaften, dieser Schritt kann nicht r\u00fcckg\u00e4ngi gemacht werden. Wollen Sie fortfahren?
33
limit_rows_in_memory=Zeilen- Limit erreicht
34
numeric=Numerisch
35
numeric_value=Numerischer Wert
36
operator=
37
optional=Optional
38
parameter=Parameter
39
python=
40
returns=Ergebnis
41
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=Zeilen-Limit im Speicher wird bestimmt, w\u00e4hrend das Programm den Ausdruck pr\u00fcft.\nLimit verringert die Geschwindigkeit.
42
string=Zeichenkette
43
string_value=Wert der Zeichenkette
44
type=Typ
45
value=Wert
46
without_limit=Ohne Beschr\u00e4nkung
0 47

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text_sw.properties
1
#Translations for language [sw]
2
#Mon Sep 21 10:02:03 CEST 2009
3
advanced=Ya juu (iliyoendelea)
4
boolean_value=Thamani ya Booleani
5
calculate_expression=
6
charged_operators=
7
charging_operators=Sheheni/Beba Vitenda Kazi (Viopereta)
8
clear_expression=
9
column=Safu
10
commands=Maagizo
11
continue?=Niendelee?
12
date=Tarehe
13
date_value=Tarehe Halisi
14
description=Maelezo
15
double_value=
16
error=Kosa
17
error_expression=
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=
19
evaluate=Tathimini
20
evaluate_expression_with_errors=
21
explorer=Mtumikishaji
22
expression=
23
#fix expression_field translation
24
expression_field=
25
expressions_from_file=
26
field=Safu.
27
field_toolbar=
28
format=Muundo
29
general=Kwa Ujumla
30
incorrect_file=Faili siyo sahihi
31
information=Habari
32
integer_value=
33
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=Imeunda Kikomo cha masafa kwa upendeleo, itapoteza uwezekano wa kutangua. Wataka Kuendelea?
34
limit_rows_in_memory=Upeo wa Masafa Kwenye Kumbukumbu
35
numeric=Ya_kinumerali
36
numeric_value=Kiwango kwa Tarakimu
37
operator=
38
optional=
39
parameter=Kigezo
40
python=
41
returns=Merejesho
42
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=
43
string=Mtungo wa herufi
44
string_value=Kiwango cha Mtungo wa herufi
45
type=Aina
46
value=Thamani 
47
without_limit=Bila ya Kikomo
0 48

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text_el.properties
1
#Translations for language [el]
2
#Mon Sep 21 10:02:03 CEST 2009
3
advanced=\u0395\u03b9\u03b4\u03b9\u03ba\u03ad\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u1f10\u03c2
4
boolean_value=\u03a4\u03b9\u03bc\u03ae Boolean
5
calculate_expression=
6
charged_operators=
7
charging_operators=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ce\u03bd
8
clear_expression=
9
column=\u03a3\u03c4\u03ae\u03bb\u03b7
10
commands=\u0395\u03bd\u03c4\u03bf\u03bb\u03ad\u03c2
11
continue?=\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03b5\u03c4\u03b5;
12
date=\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1
13
date_value=\u03a4\u03b9\u03bc\u03ae \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2
14
description=\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u1f20
15
double_value=
16
error=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1
17
error_expression=
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=
19
evaluate=\u0395\u03ba\u03c4\u03af\u03bc\u03b7\u03c3\u03b7
20
evaluate_expression_with_errors=
21
explorer=\u0395\u039e\u0395\u03a1\u0395\u03a5\u039d\u0397\u03a4\u0397\u03a3
22
expression=
23
expressions_from_file=
24
field=\u03a0\u03b5\u03b4\u03af\u03bf
25
field_toolbar=
26
format=\u03a6\u03bf\u03c1\u03bc\u03ac\u03c4
27
general=\u0393\u03b5\u03bd\u03b9\u03ba\u03ac
28
incorrect_file=\u0395\u03c3\u03c6\u03b1\u03bb\u03bc\u03ad\u03bd\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf
29
information=\u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b1
30
integer_value=
31
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=\u0388\u03c7\u03b5\u03b9 \u03c3\u03c5\u03c3\u03c4\u03b1\u03b8\u03b5\u03af \u03ad\u03bd\u03b1 \u03cc\u03c1\u03b9\u03bf \u03c3\u03b5\u03b9\u03c1\u03ce\u03bd \u03c3\u03c4\u03b9\u03c2 \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2, \u03b8\u03b1 \u03c7\u03b1\u03b8\u03b5\u03af \u03b7 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03b1\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7\u03c2. \u0395\u03c0\u03b9\u03b8\u03c5\u03bc\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03b5\u03c4\u03b5;
32
limit_rows_in_memory=\u1f48\u03c1\u03b9\u03bf \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ce\u03bd \u03c3\u03c4\u03b7\u03bd \u03bc\u03bd\u03ae\u03bc\u03b7
33
numeric=\u0391\u03c1\u03b9\u03b8\u03bc\u03b7\u03c4\u03b9\u03ba\u03cc\u03c2
34
numeric_value=\u0391\u03c1\u03b9\u03b8\u03bc\u03b7\u03c4\u03b9\u03ba\u03ae \u03c4\u03b9\u03bc\u03ae
35
operator=
36
optional=
37
parameter=\u03a0\u03b1\u03c1\u03ac\u03bc\u03b5\u03c4\u03c1\u03bf\u03c2
38
python=
39
returns=\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae
40
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=
41
string=\u0391\u03bb\u03c6\u03b1\u03c1\u03b9\u03b8\u03bc\u03b7\u03c4\u03b9\u03ba\u03cc
42
string_value=\u0391\u03bb\u03c6\u03b1\u03c1\u03b9\u03b8\u03bc\u03b7\u03c4\u03b9\u03ba\u03ae \u03c4\u03b9\u03bc\u03ae
43
type=\u03a4\u03cd\u03c0\u03bf\u03c2
44
value=\u03a4\u03b9\u03bc\u03ae
45
without_limit=\u03a7\u03c9\u03c1\u03af\u03c2 \u03cc\u03c1\u03b9\u03bf
tags/v_1_12_0_Build_1402/extExpressionField/config/text_gl.properties
1
#Translations for language [gl]
2
#Mon Sep 21 10:02:02 CEST 2009
3
advanced=Avanzada
4
boolean_value=Valor booleano
5
calculate_expression=Calcular expresi\u00f3n
6
charged_operators=Operadores cargados.
7
charging_operators=Cargando operadores
8
clear_expression=Borrar expresi\u00f3n
9
column=Columna
10
commands=Comandos
11
continue?=\u00bfQuere continuar?
12
date=Data
13
date_value=Valor data
14
description=Descripci\u00f3n
15
double_value=
16
error=Erro
17
error_expression=Erro na expresi\u00f3n
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=O c\u00e1lculo da expresi\u00f3n realizarase neste momento\nsobre os rexistros que existen na t\u00e1boa.
19
evaluate=Avaliar
20
evaluate_expression_with_errors=Expresi\u00f3ns avaliadas con erros
21
explorer=Explorar
22
expression=Expresi\u00f3n
23
expressions=Expresi\u00f3ns
24
expression_field=Calculadora de campos
25
expressions_from_file=Expresi\u00f3ns do arquivo
26
field=Campo
27
field_toolbar=
28
format=Formato
29
general=Xeral
30
incorrect_file=Arquivo incorrecto
31
information=Informaci\u00f3n
32
integer_value=
33
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=Ten establecido un l\u00edmite de rexistros en preferencias, perder\u00e1 a posibilidade de desfacer. \u00bfQuere continuar?
34
limit_rows_in_memory=L\u00edmite de rexistros en memoria
35
numeric=Num\u00e9rico
36
numeric_value=Valor num\u00e9rico
37
operator=
38
optional=Opcional
39
parameter=Par\u00e1metro
40
python=
41
returns=Devolve
42
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=Especifica o n\u00famero de rexistros\n en memoria cando se evalue a expresi\u00f3n,\n reduc\u00edndose de xeito dr\u00e1stico a velocidade\n cando se limite.
43
string=Cadea
44
string_value=Valor String
45
type=Tipo
46
value=Valor
47
without_limit=Sin l\u00edmite
0 48

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text_en.properties
1
#Translations for language [en]
2
#Mon Sep 21 10:02:02 CEST 2009
3
advanced=Advanced
4
boolean_value=Boolean value
5
calculate_expression=Calculate expression
6
charged_operators=Loaded operators.
7
charging_operators=Charging operators
8
clear_expression=Clear expression
9
column=Column
10
commands=Commands
11
continue?=Continue?
12
date=Date
13
date_value=Date value
14
description=Description
15
double_value=
16
error=Error
17
error_expression=Error expression
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=Eval expression will be carried out right now\nwith current values in table.
19
evaluate=Evaluate
20
evaluate_expression_with_errors=Evaluated expressions with errors
21
explorer=Explorer
22
expression=Expression
23
expressions=Expressions
24
#fix expression_field translation
25
expression_field=Expression
26
expressions_from_file=Expressions from file
27
field=Field
28
field_toolbar=
29
format=Format
30
general=General
31
incorrect_file=Incorrect file
32
information=Information
33
integer_value=
34
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=It has established a limit of rows in preferences, will lose the possibility to undo.  Wants to continue?
35
limit_rows_in_memory=Limit rows in memory
36
numeric=Numeric
37
numeric_value=Numeric value
38
operator=
39
optional=Optional
40
parameter=Parameter
41
python=
42
returns=Returns
43
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=Speficies the limit rows in memory when the program eval the expression\n The limit down the velocity.
44
string=String
45
string_value=String value
46
type=Type
47
value=Value
48
without_limit=Without limit
0 49

  
tags/v_1_12_0_Build_1402/extExpressionField/config/about.htm
1
<html>
2
  <head>
3
    <title>Extesi&oacute;n de la Aplicaci&oacute;n para el c&aacute;lculo de una expresi&oacute;n sobre una columna de la tabla.</title>
4
    <meta content="">
5
    <style></style>
6
  </head>
7
  <body>
8
<table width="60%" border="0">
9
  <tr>
10
    <td width="64%"><img src="images/logo_horiz_bicolor_gva.png" width="329" height="50"></td>
11
    <td width="36%"><div align="right"><img src="images/logoIver.png" width="87" height="50"></div></td>
12
  </tr>
13
  <tr>
14
    <td colspan="2"><font face="Arial, Helvetica, sans-serif">&copy; Copyright
15
      Generalitat Valenciana, IVER T.I. 2007.</font></td>
16
  </tr>
17
</table>
18
  <h3>Extensi&oacute;n de la Aplicaci&oacute;n para el c&aacute;lculo de una expresi&oacute;n sobre una columna de la tabla.</h3>
19
  <p><br><br><b> Build Number: #build.number#</b></p>
20
  </body>
21
</html>
0 22

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text_cs.properties
1
#Translations for language [cs]
2
#Mon Sep 21 10:02:02 CEST 2009
3
advanced=Pokro\u010dil\u00fd
4
boolean_value=Boolean hodnota
5
calculate_expression=Vypo\u010d\u00edtat v\u00fdraz
6
charged_operators=
7
charging_operators=Napln\u011bn\u00ed oper\u00e1tor\u016f
8
clear_expression=Vymazat v\u00fdraz
9
column=Sloupec
10
commands=P\u0159\u00edkazy
11
continue?=Pokra\u010dovat?
12
date=Datum
13
date_value=Datum
14
description=Popis
15
double_value=
16
error=Error
17
error_expression=Chybn\u00fd v\u00fdraz
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=V\u00fdraz bude vyhodnocen te\u010f na z\u00e1klad\u011b\nsou\u010dasn\u00fdch hodnot v tabulce.
19
evaluate=Vyhodnotit
20
evaluate_expression_with_errors=Vyhodnotit v\u00fdraz s chybami
21
explorer=Pr\u016fzkumn\u00edk
22
expression=V\u00fdraz
23
expressions=V\u00fdrazy
24
expressions_from_file=V\u00fdrazy ze souboru
25
field=Polo\u017eka
26
field_toolbar=
27
format=Form\u00e1t
28
general=Obecn\u00fd
29
incorrect_file=Chybn\u00fd soubor
30
information=Informace
31
integer_value=
32
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=Byl dosa\u017een \u0159\u00e1dkov\u00fd limit v nastaven\u00ed, bude ztracena mo\u017enost vracen\u00ed zm\u011bn. Chcete pokra\u010dovat?
33
limit_rows_in_memory=Omezen\u00ed \u0159\u00e1dk\u016f v pam\u011bti
34
numeric=\u010c\u00edseln\u00fd
35
numeric_value=\u010c\u00edseln\u00e1 hodnota
36
operator=
37
optional=
38
parameter=Parametr
39
python=
40
returns=Vr\u00e1tit se
41
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=Ud\u00e1v\u00e1 \u0159\u00e1dkov\u00e9 omezen\u00ed v pam\u011bti kdy\u017e prokram vyhodnocuje v\u00fdraz\n Omezen\u00ed sni\u017euje v\u00fdkon
42
string=\u0158et\u011bzec
43
string_value=Hodnota \u0159et\u011bzce
44
type=Typ
45
value=Hodnota
46
without_limit=Bez omezen\u00ed
0 47

  
tags/v_1_12_0_Build_1402/extExpressionField/config/config.xml
1
<?xml version="1.0" encoding="ISO-8859-1"?>
2
<plugin-config>
3
	<libraries library-dir="."/>
4
	<depends plugin-name="com.iver.cit.gvsig"/>
5
	<depends plugin-name="com.iver.cit.gvsig.cad"/>
6
	<depends plugin-name="org.gvsig.scripting"/>
7
		<resourceBundle name="text"/>
8
	<extensions>
9
		<extension class-name="com.iver.cit.gvsig.ExpressionFieldExtension"
10
			description="Extension that evaluate the expression to a column."
11
			active="true">
12
			<menu text="field/expression_field" tooltip="expression_field"
13
				action-command="EXPRESSION"
14
				icon="ext-kcalc"
15
				position="700" />
16
			<tool-bar name="field_toolbar">
17
				<action-tool icon="ext-kcalc"
18
					action-command="EXPRESSION" tooltip="expression_field"
19
					last="true"/>
20
			</tool-bar>
21
		</extension>
22
		<extension class-name="com.iver.cit.gvsig.AboutExpressionFieldExtension"
23
			description="Extension to add about panel."
24
			active="false"
25
			priority="1">
26
		</extension>
27
	</extensions>
28
</plugin-config>
0 29

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text_pt_BR.properties
1
#Translations for language [pt_BR]
2
#Mon Sep 21 10:02:03 CEST 2009
3
advanced=Avan\u00e7ado
4
boolean_value=Valor booleano
5
calculate_expression=Calcular express\u00e3o
6
charged_operators=Operadores carregados.
7
charging_operators=Carregando operadores
8
clear_expression=Limpar express\u00e3o
9
column=Colunas
10
commands=Comandos
11
continue?=Deseja continuar?
12
date=Data
13
date_value=Valor da data
14
description=Descri\u00e7\u00e3o
15
double_value=
16
error=Erro
17
error_expression=Erro na express\u00e3o
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=O calculo da express\u00e3o se realizar\u00e1 neste momento\nsobre os registros existentes na tabela.
19
evaluate=Avalie
20
evaluate_expression_with_errors=Express\u00f5es avaliadas com erros
21
explorer=Explorar
22
expression=Express\u00e3o
23
#fix expression_field translation
24
expression_field=Express\u00e3o
25
expressions_from_file=Express\u00f5es do arquivo
26
field=Campo
27
field_toolbar=
28
format=Formato
29
general=Geral
30
incorrect_file=Arquivo incorreto
31
information=Informa\u00e7\u00e3o
32
integer_value=
33
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=Tem estabelecido um limite de registros em prefer\u00eancias, perder\u00e1 a possibilidade de desfazer. Deseja continuar?
34
limit_rows_in_memory=Limite de registro na mem\u00f3ria
35
numeric=Num\u00e9rico
36
numeric_value=Valor num\u00e9rico
37
operator=
38
optional=Opcional
39
parameter=Par\u00e2metro
40
python=
41
returns=Retornar
42
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=Especif\u00edque o n\u00famero de registros na mem\u00f3ria quando validada a expre\u00e7\u00e3o, reduzindo-se drasticamente a velocidade quando limitado.
43
string=String
44
string_value=Valor String
45
type=Tipo
46
value=Valor
47
without_limit=Sem lim\u00edte
tags/v_1_12_0_Build_1402/extExpressionField/config/text_fr.properties
1
#Translations for language [fr]
2
#Mon Sep 21 10:02:02 CEST 2009
3
advanced=Avanc\u00e9
4
boolean_value=Valeur bool\u00e9enne
5
calculate_expression=Calculer l'expression
6
charged_operators=Op\u00e9rateurs charg\u00e9s.
7
charging_operators=Charger op\u00e9rateurs
8
clear_expression=Effacer l'expression
9
column=Colonne
10
commands=Commandes
11
continue?=Continuer ?
12
date=Date
13
date_value=Valeur de date
14
description=Description
15
double_value=Valeur double
16
error=Erreur
17
error_expression=Erreur dans l'expression
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=L'\u00e9valuation de l'expression va \u00eatre lanc\u00e9e tout de suite\n \u00e0 partir des valeurs courantes de la table.
19
evaluate=Evaluer
20
evaluate_expression_with_errors=Expressions \u00e9valu\u00e9es avec des erreurs
21
explorer=Parcourir
22
expression=Expression
23
expressions=Expressions
24
#fix expression_field translation
25
expression_field=Expression
26
expressions_from_file=Expressions depuis un fichier
27
field=Colonne
28
field_toolbar=
29
format=Format
30
general=G\u00e9n\u00e9ral
31
incorrect_file=Fichier incorrect
32
information=Information
33
integer_value=Entier
34
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=Modifier le param\u00e8tre du nombre d'op\u00e9rations enregistr\u00e9es va supprimer l'historique pour la session en cours. Voulez-vous continuer ?
35
limit_rows_in_memory=Limiter la taille du cache
36
numeric=Num\u00e9rique
37
numeric_value=Valeur num\u00e9rique
38
operator=Op\u00e9rateur
39
optional=Optionnel
40
parameter=Param\u00e8tre
41
python=python
42
returns=Retours
43
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=Limite le nombre de lignes en m\u00e9moire lorsque le programme \u00e9value une expression.\nAppliquer une limite ralentit la vitesse de calcul.
44
string=Cha\u00eene de caract\u00e8res
45
string_value=Valeur
46
type=Type
47
value=Valeur
48
without_limit=Sans limite
0 49

  
tags/v_1_12_0_Build_1402/extExpressionField/config/text_en_US.properties
1
#Translations for language [en_US]
2
#Mon Sep 21 10:02:02 CEST 2009
3
advanced=Advanced
4
boolean_value=Boolean value
5
calculate_expression=Process expression
6
charged_operators=Loaded operators.
7
charging_operators=Loading operators...
8
clear_expression=Clear expression
9
column=Column
10
commands=Commands
11
continue?=Continue?
12
date=Date
13
date_value=Date value
14
description=Description
15
double_value=
16
error=Error
17
error_expression=Expression error.
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=Expression will now be evaluated for current values in table.
19
evaluate=Evaluate
20
evaluate_expression_with_errors=Evaluation of expressions finished with errors.
21
explorer=Explorer
22
expression=Expression
23
expressions_from_file=Expressions from file
24
#fix expression_field translation
25
expression_field=Expression
26
field=Field
27
field_toolbar=
28
format=Format
29
general=General
30
incorrect_file=Invalid file.
31
information=Information
32
integer_value=
33
it_has_established_a_limit_of_rows_will_lose_the_possibility_to_undo_wants_to_continue=Setting a new limit for the number of records will erase the undo history for the current session.  Do you want to continue?
34
limit_rows_in_memory=Memory
35
numeric=Numeric
36
numeric_value=Numeric value
37
operator=
38
optional=Optional
39
parameter=Parameter
40
python=
41
returns=Returns
42
specifies_the_limit_rows_in_memory_when_the_program_eval_the_expression=Specifies the limit for records to be kept in memory while evaluating expressions. Low values conserve memory but drastically reduce evaluation speed.
43
string=String
44
string_value=String value
45
type=Type
46
value=Value
47
without_limit=No limit
tags/v_1_12_0_Build_1402/extExpressionField/config/text_eu.properties
1
#Translations for language [eu]
2
#Mon Sep 21 10:02:02 CEST 2009
3
advanced=Aurreratua
4
boolean_value=Balio boolear
5
calculate_expression=Kalkulatu espresioa
6
charged_operators=Operadoreak kargatuta
7
charging_operators=Operadoreak kargatzen
8
clear_expression=Ezabatu espresioa
9
column=Zutabea
10
commands=Komandoak
11
continue?=Jarraitu nahi duzu?
12
date=Data
13
date_value=Data balioa
14
description=Deskripzioa
15
double_value=
16
error=Errorea
17
error_expression=Errorea espresioan
18
eval_expression_will_be_carried_out_right_now_with_current_values_in_table=Espresioaren kalkulua orain gauzatuko da\ntaulan dauden erregistroekin.
19
evaluate=Ebaluatu
20
evaluate_expression_with_errors=Erroreekin ebaluatutako espresioak
21
explorer=Esploratu
22
expression=Adierazpena
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff