From 72b6b82e602337fe134f1cdd62c7c4b67b8cacb9 Mon Sep 17 00:00:00 2001 From: Nikolaos Dimopoulos Date: Sat, 3 Mar 2018 10:54:46 -0500 Subject: [PATCH] New translations filter.md (Spanish) --- es/filter.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/es/filter.md b/es/filter.md index 62860fb2bf20..95ce6257ae6b 100644 --- a/es/filter.md +++ b/es/filter.md @@ -56,7 +56,7 @@ Los siguientes filtros están incorporados en este componente: | Nombre | Descripción | | ------------- | ----------------------------------------------------------------------------------------------------------------------- | | string | Elimina etiquetas y codifica entidades HTML, incluyendo comillas simples y dobles | -| email | Quita todos los caracteres excepto letras, números y `` !#$%&*+-/=?^_{\|}~@.[]` `` | +| email | Remove all characters except letters, digits and ``!#$%&*+-/=?^_`{\|}~@.[]`` | | int | Quita todos los caracteres excepto dígitos y los signos más y menos | | int! | Convertir el valor en un valor entero utilizando la función [intval](http://php.net/manual/en/function.intval.php) | | absint | Obtiene el valor absoluto de un valor que fue convertido a entero | @@ -64,10 +64,10 @@ Los siguientes filtros están incorporados en este componente: | float! | Convertir el valor en un valor `float` utilizando la función [floatval](http://php.net/manual/en/function.floatval.php) | | alphanum | Quita todos los caracteres excepto [a-zA-Z0-9] | | striptags | Se aplica la función [strip_tags](http://www.php.net/manual/en/function.strip-tags.php) | -| special_chars | Escapar los caracteres `'"<>&` y caracteres con valor ASCII menor a 32 | +| special_chars | Escape `'"<>&` and characters with ASCII value less than 32 | | trim | Se aplica la función [trim](http://www.php.net/manual/en/function.trim.php) | | lower | Se aplica la función [strtolower](http://www.php.net/manual/en/function.strtolower.php) | -| url | Quita todos los caracteres letras, dígitos y `` `|$-_.+!*'(),{}[]<>#%";/?:@&=.^~\\ `` | +| url | Remove all characters except letters, digits and ``|$`-_.+!*'(),{}[]<>#%";/?:@&=.^\\~`` | | upper | Se aplica la función [strtoupper](http://www.php.net/manual/en/function.strtoupper.php) |