summaryrefslogtreecommitdiff
path: root/doc/translations/es.po
diff options
context:
space:
mode:
Diffstat (limited to 'doc/translations/es.po')
-rw-r--r--doc/translations/es.po233
1 files changed, 172 insertions, 61 deletions
diff --git a/doc/translations/es.po b/doc/translations/es.po
index fd28b2c9cc..1fa0223e9b 100644
--- a/doc/translations/es.po
+++ b/doc/translations/es.po
@@ -23483,13 +23483,13 @@ msgid "A cryptographic key (RSA)."
msgstr "Una clave criptográfica (RSA)."
#: doc/classes/CryptoKey.xml
+#, fuzzy
msgid ""
"The CryptoKey class represents a cryptographic key. Keys can be loaded and "
"saved like any other [Resource].\n"
"They can be used to generate a self-signed [X509Certificate] via [method "
"Crypto.generate_self_signed_certificate] and as private key in [method "
-"StreamPeerSSL.accept_stream] along with the appropriate certificate.\n"
-"[b]Note:[/b] Not available in HTML5 exports."
+"StreamPeerSSL.accept_stream] along with the appropriate certificate."
msgstr ""
"La clase CryptoKey representa una clave criptográfica. Las claves pueden ser "
"cargadas y guardadas como cualquier otro [Resource].\n"
@@ -25184,6 +25184,7 @@ msgid "Dictionary type."
msgstr "Tipo diccionario."
#: doc/classes/Dictionary.xml
+#, fuzzy
msgid ""
"Dictionary type. Associative container which contains values referenced by "
"unique keys. Dictionaries are composed of pairs of keys (which must be "
@@ -25227,7 +25228,7 @@ msgid ""
"accessing the dictionary with isn't a fixed string (such as a number or "
"variable).\n"
"[codeblock]\n"
-"export(string, \"White\", \"Yellow\", \"Orange\") var my_color\n"
+"export(String, \"White\", \"Yellow\", \"Orange\") var my_color\n"
"var points_dict = {\"White\": 50, \"Yellow\": 75, \"Orange\": 100}\n"
"func _ready():\n"
" # We can't use dot syntax here as `my_color` is a variable.\n"
@@ -33463,11 +33464,12 @@ msgstr ""
"[code]false[/code]."
#: doc/classes/Geometry.xml
+#, fuzzy
msgid ""
"Checks if the two lines ([code]from_a[/code], [code]dir_a[/code]) and "
"([code]from_b[/code], [code]dir_b[/code]) intersect. If yes, return the "
"point of intersection as [Vector2]. If no intersection takes place, returns "
-"an empty [Variant].\n"
+"[code]null[/code].\n"
"[b]Note:[/b] The lines are specified using direction vectors, not end points."
msgstr ""
"Comprueba si las dos líneas ([code]from_a[/code], [code]dir_a[/code]) y "
@@ -33647,11 +33649,12 @@ msgstr ""
"de intersección y la normalidad del cilindro en el punto de intersección."
#: doc/classes/Geometry.xml
+#, fuzzy
msgid ""
"Checks if the two segments ([code]from_a[/code], [code]to_a[/code]) and "
"([code]from_b[/code], [code]to_b[/code]) intersect. If yes, return the point "
-"of intersection as [Vector2]. If no intersection takes place, returns an "
-"empty [Variant]."
+"of intersection as [Vector2]. If no intersection takes place, returns "
+"[code]null[/code]."
msgstr ""
"Comprueba si los dos segmentos ([code]from_a[/code], [code]to_a[/code]) y "
"([code]from_b[/code], [code]to_b[/code]) se cruzan. Si es así, devuelve el "
@@ -35702,6 +35705,7 @@ msgstr ""
"Contexto para calcular los hashes criptográficos en múltiples iteraciones."
#: doc/classes/HashingContext.xml
+#, fuzzy
msgid ""
"The HashingContext class provides an interface for computing cryptographic "
"hashes over multiple iterations. This is useful for example when computing "
@@ -35728,8 +35732,7 @@ msgid ""
" var res = ctx.finish()\n"
" # Print the result as hex string and array.\n"
" printt(res.hex_encode(), Array(res))\n"
-"[/codeblock]\n"
-"[b]Note:[/b] Not available in HTML5 exports."
+"[/codeblock]"
msgstr ""
"La clase HashingContext proporciona una interfaz para computar hashes "
"criptográficos en múltiples iteraciones. Esto es útil, por ejemplo, cuando "
@@ -49969,6 +49972,7 @@ msgid ""
msgstr ""
#: doc/classes/Node.xml
+#, fuzzy
msgid ""
"Sends a remote procedure call request for the given [code]method[/code] to "
"peers on the network (and locally), optionally sending all additional "
@@ -49976,8 +49980,8 @@ msgid ""
"will only be received by nodes with the same [NodePath], including the exact "
"same node name. Behaviour depends on the RPC configuration for the given "
"method, see [method rpc_config]. Methods are not exposed to RPCs by default. "
-"See also [method rset] and [method rset_config] for properties. Returns an "
-"empty [Variant].\n"
+"See also [method rset] and [method rset_config] for properties. Returns "
+"[code]null[/code].\n"
"[b]Note:[/b] You can only safely use RPCs on clients after you received the "
"[code]connected_to_server[/code] signal from the [SceneTree]. You also need "
"to keep track of the connection state, either by the [SceneTree] signals "
@@ -50019,28 +50023,30 @@ msgstr ""
"[method rset_config] para las propiedades."
#: doc/classes/Node.xml
+#, fuzzy
msgid ""
"Sends a [method rpc] to a specific peer identified by [code]peer_id[/code] "
-"(see [method NetworkedMultiplayerPeer.set_target_peer]). Returns an empty "
-"[Variant]."
+"(see [method NetworkedMultiplayerPeer.set_target_peer]). Returns [code]null[/"
+"code]."
msgstr ""
"Envía un [method rpc] a un par específico identificado por [code]peer_id[/"
"code] (véase [method NetworkedMultiplayerPeer.set_target_peer]). Devuelve "
"una [Variant] vacía."
#: doc/classes/Node.xml
+#, fuzzy
msgid ""
-"Sends a [method rpc] using an unreliable protocol. Returns an empty "
-"[Variant]."
+"Sends a [method rpc] using an unreliable protocol. Returns [code]null[/code]."
msgstr ""
"Envía un [method rpc] usando un protocolo poco fiable. Devuelve una "
"[Variant] vacía."
#: doc/classes/Node.xml
+#, fuzzy
msgid ""
"Sends a [method rpc] to a specific peer identified by [code]peer_id[/code] "
"using an unreliable protocol (see [method NetworkedMultiplayerPeer."
-"set_target_peer]). Returns an empty [Variant]."
+"set_target_peer]). Returns [code]null[/code]."
msgstr ""
"Envía un [method rpc] a un par específico identificado por [code]peer_id[/"
"code] utilizando un protocolo poco fiable (véase [method "
@@ -59340,16 +59346,28 @@ msgid "A pooled array of bytes."
msgstr "Un paquete [Array] de bytes."
#: doc/classes/PoolByteArray.xml
-#, fuzzy
msgid ""
"An array specifically designed to hold bytes. Optimized for memory usage, "
"does not fragment the memory.\n"
-"[b]Note:[/b] This type is passed by value and not by reference."
+"[b]Note:[/b] This type is passed by value and not by reference. This means "
+"that when [i]mutating[/i] a class property of type [PoolByteArray] or "
+"mutating a [PoolByteArray] within an [Array] or [Dictionary], changes will "
+"be lost:\n"
+"[codeblock]\n"
+"var array = [PoolByteArray()]\n"
+"array[0].push_back(123)\n"
+"print(array) # [[]] (empty PoolByteArray within an empty Array)\n"
+"[/codeblock]\n"
+"Instead, the entire [PoolByteArray] property must be [i]reassigned[/i] with "
+"[code]=[/code] for it to be changed:\n"
+"[codeblock]\n"
+"var array = [PoolByteArray()]\n"
+"var pool_array = array[0]\n"
+"pool_array.push_back(123)\n"
+"array[0] = pool_array\n"
+"print(array) # [[123]] (PoolByteArray with 1 element inside an Array)\n"
+"[/codeblock]"
msgstr ""
-"Un [Array] diseñado específicamente para contener bytes. Empaqueta los datos "
-"de forma ajustada, por lo que ahorra memoria para los tamaños de arrays "
-"grandes.\n"
-"[b]Nota:[/b] Este tipo se pasa por valor y no por referencia."
#: doc/classes/PoolByteArray.xml
#, fuzzy
@@ -59518,20 +59536,33 @@ msgstr ""
#: doc/classes/PoolColorArray.xml
#, fuzzy
-msgid "A pooled array of [Color]."
+msgid "A pooled array of [Color]s."
msgstr "Un paquete de [Array] de [Color]s."
#: doc/classes/PoolColorArray.xml
-#, fuzzy
msgid ""
"An array specifically designed to hold [Color]. Optimized for memory usage, "
"does not fragment the memory.\n"
-"[b]Note:[/b] This type is passed by value and not by reference."
+"[b]Note:[/b] This type is passed by value and not by reference. This means "
+"that when [i]mutating[/i] a class property of type [PoolColorArray] or "
+"mutating a [PoolColorArray] within an [Array] or [Dictionary], changes will "
+"be lost:\n"
+"[codeblock]\n"
+"var array = [PoolColorArray()]\n"
+"array[0].push_back(Color(0.1, 0.2, 0.3, 0.4))\n"
+"print(array) # [[]] (empty PoolColorArray within an empty Array)\n"
+"[/codeblock]\n"
+"Instead, the entire [PoolColorArray] property must be [i]reassigned[/i] with "
+"[code]=[/code] for it to be changed:\n"
+"[codeblock]\n"
+"var array = [PoolColorArray()]\n"
+"var pool_array = array[0]\n"
+"pool_array.push_back(Color(0.1, 0.2, 0.3, 0.4))\n"
+"array[0] = pool_array\n"
+"print(array) # [[(0.1, 0.2, 0.3, 0.4)]] (PoolColorArray with 1 element "
+"inside an Array)\n"
+"[/codeblock]"
msgstr ""
-"Un [Array] diseñado específicamente para mantener el [Color]. Envuelve los "
-"datos de forma ajustada, por lo que ahorra memoria para los arrays de gran "
-"tamaño.\n"
-"[b]Nota:[/b] Este tipo se pasa por valor y no por referencia."
#: doc/classes/PoolColorArray.xml
#, fuzzy
@@ -59575,7 +59606,24 @@ msgstr "Un paquete [Array] de 32 bits de tipo entero."
msgid ""
"An array specifically designed to hold integer values ([int]). Optimized for "
"memory usage, does not fragment the memory.\n"
-"[b]Note:[/b] This type is passed by value and not by reference.\n"
+"[b]Note:[/b] This type is passed by value and not by reference. This means "
+"that when [i]mutating[/i] a class property of type [PoolIntArray] or "
+"mutating a [PoolIntArray] within an [Array] or [Dictionary], changes will be "
+"lost:\n"
+"[codeblock]\n"
+"var array = [PoolIntArray()]\n"
+"array[0].push_back(1234)\n"
+"print(array) # [[]] (empty PoolIntArray within an empty Array)\n"
+"[/codeblock]\n"
+"Instead, the entire [PoolIntArray] property must be [i]reassigned[/i] with "
+"[code]=[/code] for it to be changed:\n"
+"[codeblock]\n"
+"var array = [PoolIntArray()]\n"
+"var pool_array = array[0]\n"
+"pool_array.push_back(1234)\n"
+"array[0] = pool_array\n"
+"print(array) # [[1234]] (PoolIntArray with 1 element inside an Array)\n"
+"[/codeblock]\n"
"[b]Note:[/b] This type is limited to signed 32-bit integers, which means it "
"can only take values in the interval [code][-2^31, 2^31 - 1][/code], i.e. "
"[code][-2147483648, 2147483647][/code]. Exceeding those bounds will wrap "
@@ -59625,14 +59673,31 @@ msgstr "Cambia el entero en el índice dado."
#: doc/classes/PoolRealArray.xml
#, fuzzy
-msgid "A pooled array of reals ([float])."
+msgid "A pooled array of real numbers ([float])."
msgstr "Un paquete de [Array] de [Color]s."
#: doc/classes/PoolRealArray.xml
msgid ""
"An array specifically designed to hold floating-point values. Optimized for "
"memory usage, does not fragment the memory.\n"
-"[b]Note:[/b] This type is passed by value and not by reference.\n"
+"[b]Note:[/b] This type is passed by value and not by reference. This means "
+"that when [i]mutating[/i] a class property of type [PoolRealArray] or "
+"mutating a [PoolRealArray] within an [Array] or [Dictionary], changes will "
+"be lost:\n"
+"[codeblock]\n"
+"var array = [PoolRealArray()]\n"
+"array[0].push_back(12.34)\n"
+"print(array) # [[]] (empty PoolRealArray within an empty Array)\n"
+"[/codeblock]\n"
+"Instead, the entire [PoolRealArray] property must be [i]reassigned[/i] with "
+"[code]=[/code] for it to be changed:\n"
+"[codeblock]\n"
+"var array = [PoolRealArray()]\n"
+"var pool_array = array[0]\n"
+"pool_array.push_back(12.34)\n"
+"array[0] = pool_array\n"
+"print(array) # [[12.34]] (PoolRealArray with 1 element inside an Array)\n"
+"[/codeblock]\n"
"[b]Note:[/b] Unlike primitive [float]s which are 64-bit, numbers stored in "
"[PoolRealArray] are 32-bit floats. This means values stored in "
"[PoolRealArray] have lower precision compared to primitive [float]s. If you "
@@ -59662,20 +59727,32 @@ msgstr "Cambia el real en el índice dado."
#: doc/classes/PoolStringArray.xml
#, fuzzy
-msgid "A pooled array of [String]."
+msgid "A pooled array of [String]s."
msgstr "Un paquete de [Array] de [String]s."
#: doc/classes/PoolStringArray.xml
-#, fuzzy
msgid ""
"An array specifically designed to hold [String]s. Optimized for memory "
"usage, does not fragment the memory.\n"
-"[b]Note:[/b] This type is passed by value and not by reference."
+"[b]Note:[/b] This type is passed by value and not by reference. This means "
+"that when [i]mutating[/i] a class property of type [PoolStringArray] or "
+"mutating a [PoolStringArray] within an [Array] or [Dictionary], changes will "
+"be lost:\n"
+"[codeblock]\n"
+"var array = [PoolStringArray()]\n"
+"array[0].push_back(\"hello\")\n"
+"print(array) # [[]] (empty PoolStringArray within an empty Array)\n"
+"[/codeblock]\n"
+"Instead, the entire [PoolStringArray] property must be [i]reassigned[/i] "
+"with [code]=[/code] for it to be changed:\n"
+"[codeblock]\n"
+"var array = [PoolStringArray()]\n"
+"var pool_array = array[0]\n"
+"pool_array.push_back(\"hello\")\n"
+"array[0] = pool_array\n"
+"print(array) # [[hello]] (PoolStringArray with 1 element inside an Array)\n"
+"[/codeblock]"
msgstr ""
-"Una [Array] diseñada específicamente para sostener [String]s. Empaqueta los "
-"datos de forma apretada, así que ahorra memoria para los tamaños de arrays "
-"grandes.\n"
-"[b]Nota:[/b] Este tipo se pasa por valor y no por referencia."
#: doc/classes/PoolStringArray.xml
#, fuzzy
@@ -59708,20 +59785,33 @@ msgstr "Cambia la [String] en el índice dado."
#: doc/classes/PoolVector2Array.xml
#, fuzzy
-msgid "A pooled array of [Vector2]."
+msgid "A pooled array of [Vector2]s."
msgstr "Un empaquetado de [Array] de [Vector2]s."
#: doc/classes/PoolVector2Array.xml
-#, fuzzy
msgid ""
"An array specifically designed to hold [Vector2]. Optimized for memory "
"usage, does not fragment the memory.\n"
-"[b]Note:[/b] This type is passed by value and not by reference."
+"[b]Note:[/b] This type is passed by value and not by reference. This means "
+"that when [i]mutating[/i] a class property of type [PoolVector2Array] or "
+"mutating a [PoolVector2Array] within an [Array] or [Dictionary], changes "
+"will be lost:\n"
+"[codeblock]\n"
+"var array = [PoolVector2Array()]\n"
+"array[0].push_back(Vector2(12, 34))\n"
+"print(array) # [[]] (empty PoolVector2Array within an empty Array)\n"
+"[/codeblock]\n"
+"Instead, the entire [PoolVector2Array] property must be [i]reassigned[/i] "
+"with [code]=[/code] for it to be changed:\n"
+"[codeblock]\n"
+"var array = [PoolVector2Array()]\n"
+"var pool_array = array[0]\n"
+"pool_array.push_back(Vector2(12, 34))\n"
+"array[0] = pool_array\n"
+"print(array) # [[(12, 34)]] (PoolVector2Array with 1 element inside an "
+"Array)\n"
+"[/codeblock]"
msgstr ""
-"Un [Array] diseñada específicamente para contener el [Vector2]. Empaqueta "
-"los datos de forma apretada, así que ahorra memoria para los tamaños de "
-"array grandes.\n"
-"[b]Nota:[/b] Este tipo se pasa por valor y no por referencia."
#: doc/classes/PoolVector2Array.xml doc/classes/TileMap.xml
#: doc/classes/TileSet.xml
@@ -59756,16 +59846,29 @@ msgid "A pooled array of [Vector3]."
msgstr "Un empaquetado [Array] de [Vector3]s."
#: doc/classes/PoolVector3Array.xml
-#, fuzzy
msgid ""
"An array specifically designed to hold [Vector3]. Optimized for memory "
"usage, does not fragment the memory.\n"
-"[b]Note:[/b] This type is passed by value and not by reference."
+"[b]Note:[/b] This type is passed by value and not by reference. This means "
+"that when [i]mutating[/i] a class property of type [PoolVector3Array] or "
+"mutating a [PoolVector3Array] within an [Array] or [Dictionary], changes "
+"will be lost:\n"
+"[codeblock]\n"
+"var array = [PoolVector3Array()]\n"
+"array[0].push_back(Vector3(12, 34, 56))\n"
+"print(array) # [[]] (empty PoolVector3Array within an empty Array)\n"
+"[/codeblock]\n"
+"Instead, the entire [PoolVector3Array] property must be [i]reassigned[/i] "
+"with [code]=[/code] for it to be changed:\n"
+"[codeblock]\n"
+"var array = [PoolVector3Array()]\n"
+"var pool_array = array[0]\n"
+"pool_array.push_back(Vector3(12, 34, 56))\n"
+"array[0] = pool_array\n"
+"print(array) # [[(12, 34, 56)]] (PoolVector3Array with 1 element inside an "
+"Array)\n"
+"[/codeblock]"
msgstr ""
-"Un [Array] diseñada específicamente para contener el [Vector3]. Empaca los "
-"datos de forma apretada, así que ahorra memoria para los tamaños de array "
-"grandes.\n"
-"[b]Nota:[/b] Este tipo se pasa por valor y no por referencia."
#: doc/classes/PoolVector3Array.xml
#, fuzzy
@@ -68092,11 +68195,16 @@ msgid "Locks the specified linear or rotational axis."
msgstr "Bloquea el eje lineal o rotacional especificado."
#: doc/classes/RigidBody.xml
+#, fuzzy
msgid ""
-"Damps RigidBody's rotational forces.\n"
+"Damps RigidBody's rotational forces. If this value is different from -1.0 it "
+"will be added to any linear damp derived from the world or areas.\n"
"See [member ProjectSettings.physics/3d/default_angular_damp] for more "
"details about damping."
msgstr ""
+"La amortiguación lineal del cuerpo. No puede ser menor de -1.0. Si este "
+"valor es diferente de -1,0, cualquier humedad lineal derivada del mundo o de "
+"las áreas será anulada."
#: doc/classes/RigidBody.xml
msgid "Lock the body's rotation in the X axis."
@@ -68222,8 +68330,8 @@ msgstr ""
#, fuzzy
msgid ""
"The body's linear damp. Cannot be less than -1.0. If this value is different "
-"from -1.0, any linear damp derived from the world or areas will be "
-"overridden.\n"
+"from -1.0 it will be added to any linear damp derived from the world or "
+"areas.\n"
"See [member ProjectSettings.physics/3d/default_linear_damp] for more details "
"about damping."
msgstr ""
@@ -68531,7 +68639,8 @@ msgstr ""
msgid ""
"Damps the body's [member angular_velocity]. If [code]-1[/code], the body "
"will use the [b]Default Angular Damp[/b] defined in [b]Project > Project "
-"Settings > Physics > 2d[/b].\n"
+"Settings > Physics > 2d[/b]. If greater than [code]-1[/code] it will be "
+"added to the default project value.\n"
"See [member ProjectSettings.physics/2d/default_angular_damp] for more "
"details about damping."
msgstr ""
@@ -68648,7 +68757,8 @@ msgstr ""
msgid ""
"Damps the body's [member linear_velocity]. If [code]-1[/code], the body will "
"use the [b]Default Linear Damp[/b] in [b]Project > Project Settings > "
-"Physics > 2d[/b].\n"
+"Physics > 2d[/b]. If greater than [code]-1[/code] it will be added to the "
+"default project value.\n"
"See [member ProjectSettings.physics/2d/default_linear_damp] for more details "
"about damping."
msgstr ""
@@ -82998,10 +83108,11 @@ msgid "Stops animation and removes all tweens."
msgstr "Detiene la animación y elimina a todos los tweens."
#: doc/classes/Tween.xml
+#, fuzzy
msgid ""
"Resets a tween to its initial value (the one given, not the one before the "
"tween), given its object and property/method pair. By default, all tweens "
-"are removed, unless [code]key[/code] is specified."
+"are reset, unless [code]key[/code] is specified."
msgstr ""
"Restablece un tween a su valor inicial (el dado, no el anterior al tween), "
"dada su objeto y su par propiedad/método. Por defecto, se eliminan todos los "
@@ -90470,8 +90581,8 @@ msgstr "Devuelve el valor del parámetro de un determinado material."
#: doc/classes/VisualServer.xml
#, fuzzy
msgid ""
-"Returns the default value for the param if available. Otherwise returns an "
-"empty [Variant]."
+"Returns the default value for the param if available. Returns [code]null[/"
+"code] otherwise."
msgstr "Devuelve el valor por defecto del especificado [enum Margin]."
#: doc/classes/VisualServer.xml
@@ -96845,14 +96956,14 @@ msgid "An X509 certificate (e.g. for SSL)."
msgstr "Un certificado X509 (por ejemplo para SSL)."
#: doc/classes/X509Certificate.xml
+#, fuzzy
msgid ""
"The X509Certificate class represents an X509 certificate. Certificates can "
"be loaded and saved like any other [Resource].\n"
"They can be used as the server certificate in [method StreamPeerSSL."
"accept_stream] (along with the proper [CryptoKey]), and to specify the only "
"certificate that should be accepted when connecting to an SSL server via "
-"[method StreamPeerSSL.connect_to_stream].\n"
-"[b]Note:[/b] Not available in HTML5 exports."
+"[method StreamPeerSSL.connect_to_stream]."
msgstr ""
"La clase de certificado X509 representa un certificado X509. Los "
"certificados pueden ser cargados y guardados como cualquier otro "