From 7e79d1ca04cfc65545b2ccf513d7cd9675786504 Mon Sep 17 00:00:00 2001 From: David Brito <39559632+davbrito@users.noreply.github.com> Date: Wed, 2 Mar 2022 14:41:31 -0400 Subject: translate URIError to spanish (#4323) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * translate URIError to spanish * Apply suggestions from code review Co-authored-by: Juan Vásquez Co-authored-by: Juan Vásquez --- .../reference/global_objects/urierror/index.html | 137 --------------------- .../reference/global_objects/urierror/index.md | 83 +++++++++++++ 2 files changed, 83 insertions(+), 137 deletions(-) delete mode 100644 files/es/web/javascript/reference/global_objects/urierror/index.html create mode 100644 files/es/web/javascript/reference/global_objects/urierror/index.md (limited to 'files/es') diff --git a/files/es/web/javascript/reference/global_objects/urierror/index.html b/files/es/web/javascript/reference/global_objects/urierror/index.html deleted file mode 100644 index 20c87c1ca7..0000000000 --- a/files/es/web/javascript/reference/global_objects/urierror/index.html +++ /dev/null @@ -1,137 +0,0 @@ ---- -title: URIError -slug: Web/JavaScript/Reference/Global_Objects/URIError -tags: - - Error - - JavaScript - - Reference - - URIError -translation_of: Web/JavaScript/Reference/Global_Objects/URIError -original_slug: Web/JavaScript/Referencia/Objetos_globales/URIError ---- -
{{JSRef}}
- -

El objeto URIError  representa un error cuando una función de uso URI global se usó de manera incorrecta.

- -

Syntax

- -
new URIError([message[, fileName[, lineNumber]]])
- -

Parámetros

- -
-
message
-
Opcional. Descripción del error legible para una persona.
-
fileName {{non-standard_inline}}
-
Opcional. El nombre del archivo que contien el código causante de la excepción.
-
lineNumber {{non-standard_inline}}
-
Opcional. El número de línea del código que ha causado la excepción.
-
- -

Description

- -

Se envía URIError  cuando las fuciones de uso del URI global pasan pro un URI con formato incorrecto.

- -

Properties

- -
-
{{jsxref("URIError.prototype")}}
-
Permite agregar propiedades a un objeto URIError
-
- -

Methods

- -

El URIError global no contiene métodos propios, sin embargo, sí hereda algunos métodos a través de la cadena de prototipos.

- -

URIError instancias

- -

Propiedades

- -
{{page('/en-US/docs/Web/JavaScript/Reference/Global_Objects/URIError/prototype', 'Properties')}}
- -

Métodos

- -
{{page('/en-US/docs/Web/JavaScript/Reference/Global_Objects/URIError/prototype', 'Methods')}}
- -

Ejemplos

- -

Recoger un URIError

- -
try {
-  decodeURIComponent('%');
-} catch (e) {
-  console.log(e instanceof URIError); // true
-  console.log(e.message);             // "malformed URI sequence"
-  console.log(e.name);                // "URIError"
-  console.log(e.fileName);            // "Scratchpad/1"
-  console.log(e.lineNumber);          // 2
-  console.log(e.columnNumber);        // 2
-  console.log(e.stack);               // "@Scratchpad/2:2:3\n"
-}
-
- -

Creando un URIError

- -
try {
-  throw new URIError('Hello', 'someFile.js', 10);
-} catch (e) {
-  console.log(e instanceof URIError); // true
-  console.log(e.message);             // "Hello"
-  console.log(e.name);                // "URIError"
-  console.log(e.fileName);            // "someFile.js"
-  console.log(e.lineNumber);          // 10
-  console.log(e.columnNumber);        // 0
-  console.log(e.stack);               // "@Scratchpad/2:2:9\n"
-}
-
- -

Especificaciones

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SpecificationStatusComment
{{SpecName('ES3', '#sec-15.11.6.6', 'URIError')}}{{Spec2('ES3')}}Initial definition
{{SpecName('ES5.1', '#sec-15.11.6.6', 'URIError')}}{{Spec2('ES5.1')}} 
{{SpecName('ES6', '#sec-native-error-types-used-in-this-standard-urierror', 'URIError')}}{{Spec2('ES6')}} 
{{SpecName('ESDraft', '#sec-native-error-types-used-in-this-standard-urierror', 'URIError')}}{{Spec2('ESDraft')}} 
- -

Browser compatibility

- -
- - -

{{Compat("javascript.builtins.URIError")}}

-
- -

See also

- - diff --git a/files/es/web/javascript/reference/global_objects/urierror/index.md b/files/es/web/javascript/reference/global_objects/urierror/index.md new file mode 100644 index 0000000000..a2d308f651 --- /dev/null +++ b/files/es/web/javascript/reference/global_objects/urierror/index.md @@ -0,0 +1,83 @@ +--- +title: URIError +slug: Web/JavaScript/Reference/Global_Objects/URIError +translation_of: Web/JavaScript/Reference/Global_Objects/URIError +browser-compat: javascript.builtins.URIError +--- +{{JSRef}} + +El objeto **`URIError`** representa un error cuando una función de manejo de URI +global se usó de manera incorrecta. + +## Constructor + +- {{jsxref("Global_Objects/URIError/URIError", "URIError()")}} + - : Crea un nuevo objeto `URIError`. + +## Propiedades de instancia + +- {{jsxref("Error.prototype.message", "URIError.prototype.message")}} + - : Mensaje de error. +- {{jsxref("Error.prototype.name", "URIError.prototype.name")}} + - : Nombre de error. Heredado de {{jsxref("Error")}}. +- {{jsxref("Error.prototype.fileName", "URIError.prototype.fileName")}} + - : Ruta al archivo que provocó este error. Heredado de {{jsxref("Error")}}. +- {{jsxref("Error.prototype.lineNumber", "URIError.prototype.lineNumber")}} + - : Número de línea en el archivo que provocó este error. Heredado de + {{jsxref("Error")}}. +- {{jsxref("Error.prototype.columnNumber", "URIError.prototype.columnNumber")}} + - : Número de columna en la línea que provocó este error. Heredado de + {{jsxref("Error")}}. +- {{jsxref("Error.prototype.stack", "URIError.prototype.stack")}} + - : Rastro de pila. Heredado de {{jsxref("Error")}}. + +## Ejemplos + +### Atrapando un URIError + +```js +try { + decodeURIComponent('%'); +} catch (e) { + console.log(e instanceof URIError); // true + console.log(e.message); // "malformed URI sequence" + console.log(e.name); // "URIError" + console.log(e.fileName); // "Scratchpad/1" + console.log(e.lineNumber); // 2 + console.log(e.columnNumber); // 2 + console.log(e.stack); // "@Scratchpad/2:2:3\n" +} +``` + +### Creando un URIError + +```js +try { + throw new URIError('Hello', 'someFile.js', 10); +} catch (e) { + console.log(e instanceof URIError); // true + console.log(e.message); // "Hello" + console.log(e.name); // "URIError" + console.log(e.fileName); // "someFile.js" + console.log(e.lineNumber); // 10 + console.log(e.columnNumber); // 0 + console.log(e.stack); // "@Scratchpad/2:2:9\n" +} +``` + +## Especificaciones + +{{Specifications}} + +## Compatibilidad con navegadores + +{{Compat}} + +## Véase también + +- {{jsxref("Error")}} +- {{jsxref("Global_Objects/decodeURI", "decodeURI()")}} +- {{jsxref("Global_Objects/decodeURIComponent", "decodeURIComponent()")}} +- {{jsxref("Global_Objects/encodeURI", "encodeURI()")}} +- {{jsxref("Global_Objects/encodeURIComponent", "encodeURIComponent()")}} + -- cgit v1.2.3-54-g00ecf