Skip to content

Commit 06ed403

Browse files
authored
Merge pull request #45 from IBMStreams/develop
New Globalization messages
2 parents ff7dbbb + 0db19f1 commit 06ed403

File tree

34 files changed

+711
-461
lines changed

34 files changed

+711
-461
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,6 @@
4848
* Fix: Use relative path in all sample index.html files to be able to be used behind proxy
4949
* Fix: Correct timing issue in junit tests
5050

51+
## v4.3.2
52+
* Globalization support
53+

build.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,16 @@
3030
description="Main target: Build the toolkit code, build the samples index and generate the spl documentation - incremental build"
3131
/>
3232

33-
<target name="clean" depends="spldoc-clean,samples-clean,releaseinfo-clean,test-clean"
33+
<target name="clean" depends="spldoc-clean,samples-clean,releaseinfo-clean"
3434
description="Main target: clean up toolkit code, samples code, all spldocs and downloaded libs">
3535
<ant dir="${toolkit.dir}" target="clean" />
3636
</target>
3737

38+
<target name="clean-all" depends="clean,test-clean"
39+
description="Main target: clean up toolkit code, samples code, all spldocs and downloaded libs and test artifacts">
40+
<ant dir="${toolkit.dir}" target="clean" />
41+
</target>
42+
3843
<target name="toolkit" depends="get_name"
3944
description="Main target: Build any code and index the toolkit - incremental build." >
4045
<ant dir="${toolkit.dir}" target="toolkit"/>
Lines changed: 43 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,48 @@
11
# NLS_MESSAGEFORMAT_ALL
22
# NLS_ENCODING=UNICODE
3-
CONSISTENT_CHECK_2=CDIST0200E {0} operator cannot be used inside a consistent region.
3+
4+
#Messages range for inetserver toolkit: CDIST3850-CDIST3899
5+
6+
CONSISTENT_CHECK_2=CDIST3850E {0} operator cannot be used inside a consistent region.
47
# TRNOTE - CONSISTENT_CHECK_2 - Do not translate the word: consistent region
5-
CONSISTENT_CHECK_1=CDIST0205E {0} operator cannot be placed at the start of a consistent region.
8+
9+
CONSISTENT_CHECK_1=CDIST3851E {0} operator cannot be placed at the start of a consistent region.
610
# TRNOTE - CONSISTENT_CHECK_1 - Do not translate the word: consistent region
7-
INPUT_PORT_PARAM_CHECK_1=CDIST0206E Input port ''{0}'' requires an xml attribute.
11+
12+
INPUT_PORT_PARAM_CHECK_1=CDIST3852E Input port ''{0}'' requires an XML-attribute.
813
# TRNOTE - INPUT_PORT_PARAM_CHECK_1 - Do not translate the words input port
9-
PARAM_METHOD_CHECK=CDIST0215E {0} operator requires parameter method or fixedMethod.
10-
#TRNOTE - PARAM_METHOD_CHECK - Do not translate the words: method, fixedMethod
11-
PARAM_URL_CHECK=CDIST0216E {0} operator requires parameter url or fixedUrl.
12-
#TRNOTE - PARAM_URL_CHECK - Do not translate the words: url, fixedUrl
13-
PARAM_TRUST_STORE_CHECK=CDIST0217E {0} operator: Invalid trust store parameters, provide both a sslTrustStoreFile and a sslTrustStorePassword or provide neither.
14-
#TRNOTE - PARAM_TRUST_STORE_CHECK - Do not translate the words: sslTrustStoreFile, sslTrustStorePassword
15-
PARAM_TRUST_STORE_CHECK2=CDIST0218E {0} operator: Invalid keystore parameters, provide both a keyStoreFile and a keyStorePassword or provide neither.
16-
#TRNOTE - PARAM_TRUST_STORE_CHECK2 - Do not translate the words: keyStoreFile, keyStorePassword
17-
PARAM_HEADER_CHECK1=CDIST0219E {0} operator: Invalid headerContextType: ''{1}'' when used with parameter includeAttributes.
18-
#TRNOTE - PARAM_HEADER_CHECK1 - Do not translate the words: headerContextType, includeAttributes
19-
PARAM_CONTENT_TYPE_CHECK=CDIST0220E Argument of fixedContentType: ''{0}'' is invalid.
20-
#TRNOTE - PARAM_CONTENT_TYPE_CHECK - Do not translate word: fixedContentType
21-
PARAM_REQUEST_ATTRIBUTE_CHECK=CDIST0221E Input stream does not have all requestAttributes: ''{0}''.
22-
#TRNOTE - PARAM_REQUEST_ATTRIBUTE_CHECK - Do not translate word: requestAttributes
23-
PARAM_ATTRIBUTE_TYPE_CHECK_1=CDIST0222E Only type ''{0}'' is allowed for attribute ''{1}''.
24-
PARAM_ATTRIBUTE_TYPE_CHECK_2=CDIST0223E Only types ''{0}'' and ''{1}'' are allowed for attribute ''{2}''.
25-
PARAM_ATTRIBUTE_ELEMENT_TYPE_CHECK_1=CDIST0224E Only element type ''{0}'' is allowed for attribute ''{1}''.
26-
PARAM_MISSING_ATTRIBUTE=CDIST0225E No attribute with name ''{0}'' found in schema of output port 0.
27-
PARAM_NO_OUTPUT_PORT_CHECK=CDIST0226E Operator has output attribute name parameter but has no output port.
28-
29-
PROP_ILLEGAL_AUTH_PROP=CDIST0227E Invalid authentication property: ''{0}''
30-
PROP_INVALID_VALUE=CDIST0228E Invalid value field in authentication property ''{0}'' : ''{1}}''
31-
PROP_REQUIRED_1=CDIST0229E Required property ''{0}'' but no authentication properties specified.
32-
PROP_REQUIRED_2=CDIST0245E Required property ''{0}'' not specified.
33-
34-
DATA_INVALID_CONTENT_TYPE=CDIST0246E Invalid Content Type in input tuple: ''{0}''
35-
#TRNOTE - DATA_INVALID_CONTENT_TYPE - Do not translate word: Content Type
36-
37-
CONNECTION_SUCCESS=CDIST0241I Connection successful
38-
#END
14+
15+
PARAM_ATTRIBUTE_TYPE_CHECK_1=CDIST3853E Only type ''{0}'' is allowed for attribute ''{1}''.
16+
17+
APP_CONFIG_PROP_REQURED=CDIST3854E Property ''{0}'' is required in application configuration ''{1}''.
18+
# TRNOTE - Do not translate the word: application configuration
19+
20+
PARAM_MUST_NOT_BE_EMPTY=CDIST3855E Parameter ''{0}'' must not be empty.
21+
22+
REQUIRED_KEY_ATTRIBUTE=CDIST3856E Could not detect required attribute ''{0}'' on {1} port 0. Or specify a valid value for parameter ''{2}''.
23+
24+
ATTRIBUTE_TYPE_CHECK_1=CDIST3857E Only type ''{0}'' is allowed for attribute ''{1}''.
25+
26+
ATTRIBUTE_TYPE_CHECK_2=CDIST3858E Only types ''{0}'' and ''{1}'' is allowed for attribute ''{2}''.
27+
28+
WINDOW_PARTITION_REQUIRED=CDIST3859E No Input port window is partitioned, but parameter ''{0}'' has a non empty value.
29+
30+
PARAMETER_CARDINALLITY_MISMATCH=CDIST3860E The cardinality of parameter partitionBy ({0}) must be equal the number of input ports ({1}) !
31+
32+
DUPLICATE_PARTITION=CDIST3861E Partition name: ''{0}'' is duplicate for input port {1}.
33+
34+
INPUT_PORT_REQUIRES_ATTRIBUTE=CDIST3862E Input port {0} has no attribute with name ''{1}''.
35+
# TRNOTE - INPUT_PORT_REQUIRES_ATTRIBUTE - Do not translate the words input port
36+
37+
INPUT_PORT_PARTITION_REQUIRED=CDIST3863E Input port {0} is not partitioned but has none empty partition with name ''{1}''.
38+
# TRNOTE - INPUT_PORT_PARTITION_REQUIRED - Do not translate the words input port
39+
40+
WINDOW_PARTITION_REQUIRED_2=CDIST3864E Window is partitioned but partition attribute names are not specified.
41+
42+
WSS_PARAMETER_MESSAGE_ATTRIBUTE_NAME_REQUIRED=CDIST3865E Parameter messageAttributeName is required if output port has more than one attribute.
43+
# TRNOTE - WSS_PARAMETER_MESSAGE_ATTRIBUTE_NAME_REQUIRED - Do not translate word messageAttributeName
44+
45+
ATTRIBUTE_TYPE_CHECK_3=CDIST3866E Port Attribute {0} must be of type {1}, {2} or {3}.
46+
47+
APP_CONFIG_REQURED=CDIST3867E Application configuration with name ''{0}'' is required.
48+
# TRNOTE - Do not translate the word: application configuration
Lines changed: 43 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,48 @@
11
# NLS_MESSAGEFORMAT_ALL
22
# NLS_ENCODING=UNICODE
3-
CONSISTENT_CHECK_2=CDIST0200E Operator {0} darf nicht in einer konsistenten Region verwendet werden.
3+
4+
#Messages range for inetserver toolkit: CDIST3850-CDIST3899
5+
6+
CONSISTENT_CHECK_2=CDIST3850E Operator {0} darf nicht in einer konsistenten Region verwendet werden.
47
# TRNOTE - CONSISTENT_CHECK_2 - Do not translate the word: consistent region
5-
CONSISTENT_CHECK_1=CDIST0205E Operator {0} darf nicht an den Anfang einer konsistenten Region gestellt werden.
8+
9+
CONSISTENT_CHECK_1=CDIST3851E Operator {0} darf nicht an den Anfang einer konsistenten Region gestellt werden.
610
# TRNOTE - CONSISTENT_CHECK_1 - Do not translate the word: consistent region
7-
INPUT_PORT_PARAM_CHECK_1=CDIST0206E Eingabeport ''{0}'' erfordert ein XML-Attribut.
11+
12+
INPUT_PORT_PARAM_CHECK_1=CDIST3852E Eingabeport ''{0}'' erfordert ein XML-Attribut.
813
# TRNOTE - INPUT_PORT_PARAM_CHECK_1 - Do not translate the words input port
9-
PARAM_METHOD_CHECK=CDIST0215E Der Operator {0} erfordert den Parameter ''method'' oder ''fixedMethod''.
10-
#TRNOTE - PARAM_METHOD_CHECK - Do not translate the words: method, fixedMethod
11-
PARAM_URL_CHECK=CDIST0216E Der Operator {0} erfordert den Parameter ''url'' oder ''fixedUrl''.
12-
#TRNOTE - PARAM_URL_CHECK - Do not translate the words: url, fixedUrl
13-
PARAM_TRUST_STORE_CHECK=CDIST0217E Operator {0}: Ung\u00fcltige Truststore-Parameter, geben Sie sslTrustStoreFile und sslTrustStorePassword gleichzeitig oder gar nicht an.
14-
#TRNOTE - PARAM_TRUST_STORE_CHECK - Do not translate the words: sslTrustStoreFile, sslTrustStorePassword
15-
PARAM_TRUST_STORE_CHECK2=CDIST0218E Operator {0}: Ung\u00fcltige Keystore-Parameter, geben Sie keyStoreFile und keyStorePassword gleichzeitig oder gar nicht an.
16-
#TRNOTE - PARAM_TRUST_STORE_CHECK2 - Do not translate the words: keyStoreFile, keyStorePassword
17-
PARAM_HEADER_CHECK1=CDIST0219E Operator {0}: headerContextType ung\u00fcltig: ''{1}'' bei Verwendung mit Parameter includeAttributes.
18-
#TRNOTE - PARAM_HEADER_CHECK1 - Do not translate the words: headerContextType, includeAttributes
19-
PARAM_CONTENT_TYPE_CHECK=CDIST0220E Argument von fixedContentType: ''{0}'' ist ung\u00fcltig.
20-
#TRNOTE - PARAM_CONTENT_TYPE_CHECK - Do not translate word: fixedContentType
21-
PARAM_REQUEST_ATTRIBUTE_CHECK=CDIST0221E Eingabedatenstrom enth\u00e4lt nicht alle requestAttributes: ''{0}''.
22-
#TRNOTE - PARAM_REQUEST_ATTRIBUTE_CHECK - Do not translate word: requestAttributes
23-
PARAM_ATTRIBUTE_TYPE_CHECK_1=CDIST0222E Nur der Typ ''{0}'' ist f\u00fcr Attribut ''{1}'' zul\u00e4ssig.
24-
PARAM_ATTRIBUTE_TYPE_CHECK_2=CDIST0223E Nur die Typen ''{0}'' und ''{1}'' sind f\u00fcr Attribut ''{2}'' zul\u00e4ssig.
25-
PARAM_ATTRIBUTE_ELEMENT_TYPE_CHECK_1=CDIST0224E Nur der Elementtyp ''{0}'' ist f\u00fcr Attribut ''{1}'' zul\u00e4ssig.
26-
PARAM_MISSING_ATTRIBUTE=CDIST0225E Es wurde kein Attribut mit dem Namen ''{0}'' im Schema von Ausgabeport 0 gefunden.
27-
PARAM_NO_OUTPUT_PORT_CHECK=CDIST0226E Operator verf\u00fcgt \u00fcber einen Parameter f\u00fcr den Ausgabeattributnamen, aber nicht \u00fcber einen Ausgabeport.
28-
29-
PROP_ILLEGAL_AUTH_PROP=CDIST0227E Ung\u00fcltige Authentifizierungseigenschaft: ''{0}''
30-
PROP_INVALID_VALUE=CDIST0228E Ung\u00fcltiges Wertfeld in Authentifizierungseigenschaft ''{0}'' : ''{1}}''
31-
PROP_REQUIRED_1=CDIST0229E Eigenschaft ''{0}'' ist erforderlich, es wurden aber keine Authentifizierungseigenschaften angegeben.
32-
PROP_REQUIRED_2=CDIST0245E Erforderliche Eigenschaft ''{0}'' nicht angegeben.
33-
34-
DATA_INVALID_CONTENT_TYPE=CDIST0246E Ung\u00fcltiger Inhaltstyp in Eingabetupel: ''{0}''
35-
#TRNOTE - DATA_INVALID_CONTENT_TYPE - Do not translate word: Content Type
36-
37-
CONNECTION_SUCCESS=CDIST0241I Verbindung erfolgreich
38-
#END
14+
15+
PARAM_ATTRIBUTE_TYPE_CHECK_1=CDIST3853E Nur der Typ ''{0}'' ist f\u00fcr Attribut ''{1}'' zul\u00e4ssig.
16+
17+
APP_CONFIG_PROP_REQURED=CDIST3854E Eigenschaft ''{0}'' ist in Anwendungskonfiguration ''{1}'' erforderlich.
18+
# TRNOTE - Do not translate the word: application configuration
19+
20+
PARAM_MUST_NOT_BE_EMPTY=CDIST3855E Parameter ''{0}'' darf nicht leer sein.
21+
22+
REQUIRED_KEY_ATTRIBUTE=CDIST3856E Das erforderliche Attribut ''{0}'' f\u00fcr {1} Port 0 wurde nicht gefunden. Oder geben Sie einen g\u00fcltigen Wert f\u00fcr Parameter ''{2}'' an.
23+
24+
ATTRIBUTE_TYPE_CHECK_1=CDIST3857E Nur der Typ ''{0}'' ist f\u00fcr Attribut ''{1}'' zul\u00e4ssig.
25+
26+
ATTRIBUTE_TYPE_CHECK_2=CDIST3858E Nur die Typen ''{0}'' und ''{1}'' sind f\u00fcr Attribut ''{2}'' zul\u00e4ssig.
27+
28+
WINDOW_PARTITION_REQUIRED=CDIST3859E Es ist kein Eingabeportfenster partitioniert, aber Parameter ''{0}'' hat einen nicht leeren Wert.
29+
30+
PARAMETER_CARDINALLITY_MISMATCH=CDIST3860E Die Kardinalit\u00e4t des Parameters partitionBy ({0}) muss der Anzahl der Eingabeports ({1}) entsprechen.
31+
32+
DUPLICATE_PARTITION=CDIST3861E Der Partitionsname ''{0}'' ist ein Duplikat f\u00fcr Eingabeport {1}.
33+
34+
INPUT_PORT_REQUIRES_ATTRIBUTE=CDIST3862E Der Eingabeport {0} weist kein Attribut mit dem Namen ''{1}'' auf.
35+
# TRNOTE - INPUT_PORT_REQUIRES_ATTRIBUTE - Do not translate the words input port
36+
37+
INPUT_PORT_PARTITION_REQUIRED=CDIST3863E Der Eingabeport {0} ist nicht partitioniert, weist aber eine nicht leere Partition mit dem Namen ''{1}'' auf.
38+
# TRNOTE - INPUT_PORT_PARTITION_REQUIRED - Do not translate the words input port
39+
40+
WINDOW_PARTITION_REQUIRED_2=CDIST3864E Das Fenster ist partitioniert, aber es sind keine Partitionsattributnamen angegeben.
41+
42+
WSS_PARAMETER_MESSAGE_ATTRIBUTE_NAME_REQUIRED=CDIST3865E Der Parameter messageAttributeName ist erforderlich, wenn der Ausgabeport mehr als ein Attribut aufweist.
43+
# TRNOTE - WSS_PARAMETER_MESSAGE_ATTRIBUTE_NAME_REQUIRED - Do not translate word messageAttributeName
44+
45+
ATTRIBUTE_TYPE_CHECK_3=CDIST3866E Das Portattribut {0} muss den Typ {1}, {2} oder {3} haben.
46+
47+
APP_CONFIG_REQURED=CDIST3867E Anwendungskonfiguration mit dem Namen ''{0}'' ist erforderlich.
48+
# TRNOTE - Do not translate the word: application configuration
Lines changed: 43 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,48 @@
11
# NLS_MESSAGEFORMAT_ALL
22
# NLS_ENCODING=UNICODE
3-
CONSISTENT_CHECK_2=CDIST0200E No se puede utilizar el operador {0} dentro de una regi\u00f3n coherente.
3+
4+
#Messages range for inetserver toolkit: CDIST3850-CDIST3899
5+
6+
CONSISTENT_CHECK_2=CDIST3850E No se puede utilizar el operador {0} dentro de una regi\u00f3n coherente.
47
# TRNOTE - CONSISTENT_CHECK_2 - Do not translate the word: consistent region
5-
CONSISTENT_CHECK_1=CDIST0205E No se puede colocar el operador {0} al inicio de una regi\u00f3n coherente.
8+
9+
CONSISTENT_CHECK_1=CDIST3851E No se puede colocar el operador {0} al inicio de una regi\u00f3n coherente.
610
# TRNOTE - CONSISTENT_CHECK_1 - Do not translate the word: consistent region
7-
INPUT_PORT_PARAM_CHECK_1=CDIST0206E El puerto de entrada ''{0}'' requiere un atributo xml.
11+
12+
INPUT_PORT_PARAM_CHECK_1=CDIST3852E El puerto de entrada ''{0}'' requiere un atributo XML.
813
# TRNOTE - INPUT_PORT_PARAM_CHECK_1 - Do not translate the words input port
9-
PARAM_METHOD_CHECK=CDIST0215E El operador {0} requiere el par\u00e1metro method o fixedMethod.
10-
#TRNOTE - PARAM_METHOD_CHECK - Do not translate the words: method, fixedMethod
11-
PARAM_URL_CHECK=CDIST0216E El operador {0} requiere el par\u00e1metro url o fixedUrl.
12-
#TRNOTE - PARAM_URL_CHECK - Do not translate the words: url, fixedUrl
13-
PARAM_TRUST_STORE_CHECK=CDIST0217E Operador {0}: par\u00e1metros de almac\u00e9n de confianza no v\u00e1lidos, proporcione un sslTrustStoreFile y un sslTrustStorePassword o no proporcione ninguno.
14-
#TRNOTE - PARAM_TRUST_STORE_CHECK - Do not translate the words: sslTrustStoreFile, sslTrustStorePassword
15-
PARAM_TRUST_STORE_CHECK2=CDIST0218E Operador {0}: par\u00e1metros de almac\u00e9n de claves no v\u00e1lidos, proporcione un keyStoreFile y un keyStorePassword o no proporcione ninguno.
16-
#TRNOTE - PARAM_TRUST_STORE_CHECK2 - Do not translate the words: keyStoreFile, keyStorePassword
17-
PARAM_HEADER_CHECK1=CDIST0219E Operador {0}: headerContextType no v\u00e1lido: ''{1}'' cuando se utiliza con el par\u00e1metro includeAttributes.
18-
#TRNOTE - PARAM_HEADER_CHECK1 - Do not translate the words: headerContextType, includeAttributes
19-
PARAM_CONTENT_TYPE_CHECK=CDIST0220E El argumento de fixedContentType ''{0}'' no es v\u00e1lido.
20-
#TRNOTE - PARAM_CONTENT_TYPE_CHECK - Do not translate word: fixedContentType
21-
PARAM_REQUEST_ATTRIBUTE_CHECK=CDIST0221E La secuencia de entrada no tiene todos los requestAttributes: ''{0}''.
22-
#TRNOTE - PARAM_REQUEST_ATTRIBUTE_CHECK - Do not translate word: requestAttributes
23-
PARAM_ATTRIBUTE_TYPE_CHECK_1=CDIST0222E Solo se permite el tipo ''{0}'' para el atributo ''{1}''.
24-
PARAM_ATTRIBUTE_TYPE_CHECK_2=CDIST0223E Solo se permiten los tipos ''{0}'' y ''{1}'' para el atributo ''{2}''.
25-
PARAM_ATTRIBUTE_ELEMENT_TYPE_CHECK_1=CDIST0224E Solo se permite el tipo de elemento ''{0}'' para el atributo ''{1}''.
26-
PARAM_MISSING_ATTRIBUTE=CDIST0225E No se ha encontrado ning\u00fan atributo con el nombre ''{0}'' en el esquema del puerto de salida 0.
27-
PARAM_NO_OUTPUT_PORT_CHECK=CDIST0226E El operador tiene el par\u00e1metro de nombre de atributo de salida pero no tiene ning\u00fan puerto de salida.
28-
29-
PROP_ILLEGAL_AUTH_PROP=CDIST0227E Propiedad de autenticaci\u00f3n no v\u00e1lida: ''{0}''
30-
PROP_INVALID_VALUE=CDIST0228E Campo de valor no v\u00e1lido en la propiedad de autenticaci\u00f3n ''{0}'' : ''{1}}''
31-
PROP_REQUIRED_1=CDIST0229E Propiedad obligatoria ''{0}'' pero no se han especificado propiedades de autenticaci\u00f3n.
32-
PROP_REQUIRED_2=CDIST0245E No se ha especificado la propiedad obligatoria ''{0}''.
33-
34-
DATA_INVALID_CONTENT_TYPE=CDIST0246E Content Type no v\u00e1lido en tupla de entrada: ''{0}''
35-
#TRNOTE - DATA_INVALID_CONTENT_TYPE - Do not translate word: Content Type
36-
37-
CONNECTION_SUCCESS=CDIST0241I Conexi\u00f3n satisfactoria
38-
#END
14+
15+
PARAM_ATTRIBUTE_TYPE_CHECK_1=CDIST3853E Solo se permite el tipo ''{0}'' para el atributo ''{1}''.
16+
17+
APP_CONFIG_PROP_REQURED=CDIST3854E La propiedad ''{0}'' es necesaria en la configuraci\u00f3n de la aplicaci\u00f3n ''{1}''.
18+
# TRNOTE - Do not translate the word: application configuration
19+
20+
PARAM_MUST_NOT_BE_EMPTY=CDIST3855E El par\u00e1metro ''{0}'' no puede estar vac\u00edo.
21+
22+
REQUIRED_KEY_ATTRIBUTE=CDIST3856E No se pudo detectar el atributo necesario ''{0}'' en el puerto 0 {1}. O especifique un valor v\u00e1lido para el par\u00e1metro ''{2}''.
23+
24+
ATTRIBUTE_TYPE_CHECK_1=CDIST3857E Solo se permite el tipo ''{0}'' para el atributo ''{1}''.
25+
26+
ATTRIBUTE_TYPE_CHECK_2=CDIST3858E Solo se permiten los tipos ''{0}'' y ''{1}'' para el atributo ''{2}''.
27+
28+
WINDOW_PARTITION_REQUIRED=CDIST3859E No hay ninguna ventana de puertos de entrada particionada, sin embargo, el par\u00e1metro ''{0}'' tiene un valor no vac\u00edo.
29+
30+
PARAMETER_CARDINALLITY_MISMATCH=CDIST3860E La cardinalidad del par\u00e1metro partitionBy ({0}) debe ser igual al n\u00famero de puertos de entrada ({1}).
31+
32+
DUPLICATE_PARTITION=CDIST3861E El nombre de partici\u00f3n: ''{0}'' est\u00e1 duplicado para el puerto de entrada {1}.
33+
34+
INPUT_PORT_REQUIRES_ATTRIBUTE=CDIST3862E El puerto de entrada {0} no tiene ning\u00fan atributo con el nombre ''{1}''.
35+
# TRNOTE - INPUT_PORT_REQUIRES_ATTRIBUTE - Do not translate the words input port
36+
37+
INPUT_PORT_PARTITION_REQUIRED=CDIST3863E El puerto de entrada {0} no est\u00e1 particionado, sin embargo, no tiene ninguna partici\u00f3n vac\u00eda con el nombre ''{1}''.
38+
# TRNOTE - INPUT_PORT_PARTITION_REQUIRED - Do not translate the words input port
39+
40+
WINDOW_PARTITION_REQUIRED_2=CDIST3864E La ventana est\u00e1 particionada, sin embargo, no se han especificado nombres de atributo de partici\u00f3n.
41+
42+
WSS_PARAMETER_MESSAGE_ATTRIBUTE_NAME_REQUIRED=CDIST3865E El par\u00e1metro messageAttributeName es necesario si el puerto de salida tiene m\u00e1s de un atributo.
43+
# TRNOTE - WSS_PARAMETER_MESSAGE_ATTRIBUTE_NAME_REQUIRED - Do not translate word messageAttributeName
44+
45+
ATTRIBUTE_TYPE_CHECK_3=CDIST3866E El atributo de puerto {0} debe ser de tipo {1}, {2} o {3}.
46+
47+
APP_CONFIG_REQURED=CDIST3867E Se necesita la configuraci\u00f3n de la aplicaci\u00f3n con el nombre ''{0}''.
48+
# TRNOTE - Do not translate the word: application configuration

0 commit comments

Comments
 (0)