diff --git a/es/building-sites/tag-syntax/output-filters/index.md b/es/building-sites/tag-syntax/output-filters/index.md index eee09147c..ad1a12961 100644 --- a/es/building-sites/tag-syntax/output-filters/index.md +++ b/es/building-sites/tag-syntax/output-filters/index.md @@ -94,18 +94,18 @@ La siguiente tabla enumera algunos de los modificadores existentes y muestra eje | limit | Limita una cadena a un cierto número de caracteres. El valor predeterminado es 100. | ```[[+description:limit=`50`]]``` | | ellipsis | Agrega puntos suspensivos y trunca una cadena si tiene más de un cierto número de caracteres. Solo usa espacios como puntos de interrupción. El valor predeterminado es 100. | ```[[+description:ellipsis=`50`]]``` | | tag | Muestra el elemento sin formato sin la etiqueta. Útil para documentación. | `[[+showThis:tag]]` | -| tvLabel | Muestra la Etiqueta de una VdP (*variable de plantilla*). Útil cuando se usan selectores o casillas de verificación, etc. donde se usa `Etiqueta==1||Otra etiqueta==2||Más opciones==3`, con lo que si el valor fuese 2, esto devolvería Otra etiqueta. | `[[+mySelectboxTv:tvLabel]]` | -| math | Returns the result of an advanced calculation (expensive on processor. not recommended) Removed in Revolution 2.2.6. | ```[[+blackjack:add=`21`]]``` | -| add,increment,incr | Returns input incremented by option (default: +1) | `[[+downloads:incr]]` | -| subtract,decrement,decr | Returns input decremented by option (default: -1) | `[[+countdown:decr]]` ```[[+moneys:subtract=`100`]]``` | -| multiply,mpy | Returns input multiplied by option (default: \*2) | ```[[+trifecta:mpy=`3`]``` | -| divide,div | Returns input divided by option (default: /2) Does not accept 0. | ```[[+rating:div=`4`]]``` | -| modulus,mod | Returns the option modulus on input (default: %2, returns 0 or 1) | `[[+number:mod]]` or ```[[+number:mod=`3`]]``` | -| ifempty,default,empty, isempty | Returns the input value if empty | ```[[+name:default=`anonymous`]]``` | -| notempty, !empty, ifnotempty, isnotempty | Returns the input value if not empty | ```[[[[+name:notempty=`Hello `[[+name]]`!`]]``` | -| nl2br | Converts a new line character (\\n) to an html element. Use this if you're taking in input, you think that there should be new lines in it, and there aren't. Similar to PHP's [nl2br](http://www.php.net/manual/en/function.nl2br.php). | `[[+textfile:nl2br]]` | -| date | Formats a unix timestamp into a different format. Similar to PHP's [strftime](http://www.php.net/manual/en/function.strftime.php). Value is format. See [Date Formats](building-sites/tag-syntax/date-formats "Date Formats"). | ```[[+birthyear:date=`%Y`]]``` | -| strtotime | Converts a date string into a unix timestamp. Useful to combine this with the date output filter. Similar to PHP's [strtotime](http://www.php.net/strtotime). Takes in a date. See [Date Formats](building-sites/tag-syntax/date-formats "Date Formats"). | `[[+thetime:strtotime]]` | +| tvLabel | Muestra la Etiqueta de una VdP (*variable de plantilla*). Útil cuando se usan selectores o casillas de verificación, etc. donde se usa `Etiqueta==1llOtra etiqueta==2llMás opciones==3`, con lo que si el valor fuese 2, esto devolvería Otra etiqueta. | `[[+mySelectboxTv:tvLabel]]` | +| math | Devuelve el resultado de un cálculo avanzado (Costoso para el procesador. No recomendado) Eliminado en Revolution 2.2.6. | ```[[+blackjack:add=`21`]]``` | +| add,increment,incr | Devuelve la entrada incrementada por la opción (predeterminado: +1) | `[[+downloads:incr]]` | +| subtract,decrement,decr | Devuelve la entrada decrementada por la opción (predeterminado: -1) | `[[+countdown:decr]]` ```[[+moneys:subtract=`100`]]``` | +| multiply,mpy | Devuelve la entrada multiplicada por la opción (predeterminado: \*2) | ```[[+trifecta:mpy=`3`]``` | +| divide,div | Devuelve la entrada dividida por la opción (predeterminado: /2). No acepta 0. | ```[[+rating:div=`4`]]``` | +| modulus,mod | Devuelve el módulo de la opción sobre la entrada (predeterminado:%2, devuelve 0 o 1) | `[[+numero:mod]]` o ```[[+numero:mod=`3`]]``` | +| ifempty,default,empty, isempty | Devuelve el valor si la entrada está vacía | ```[[+nombre:default=`anonymous`]]``` | +| notempty, !empty, ifnotempty, isnotempty | Devuelve el valor si la entrada no está vacía | ```[[[[+nombre:notempty=`¡Hola `[[+nombre]]`!`]]``` | +| nl2br | Convierte un carácter de nueva línea (\\ n) en un elemento html. Usa esto si estás recibiendo entradas y crées que debería haber nuevas líneas y no las hay. Similar a la función de PHP [nl2br](http://www.php.net/manual/es/function.nl2br.php). | `[[+textfile:nl2br]]` | +| date | Formatea una marca de tiempo Unix en un formato diferente. Similar a [strftime](http://www.php.net/manual/es/function.strftime.php). El valor es el formato. Consulta [Formatos de fecha](building-sites/tag-syntax/date-formats "Formatos de fecha"). | ```[[+birthyear:date=`%Y`]]``` | +| strtotime | Convierte una cadena de fecha en una marca de tiempo Unix. Útil para combinar esto con el filtro de salida de fecha. Similar a [strtotime](http://www.php.net/strtotime). Toma una fecha. Consulta [Formatos de fecha](building-sites/tag-syntax/date-formats "Formatos de fecha"). | `[[+thetime:strtotime]]` | | fuzzydate | Returns a pretty date format with yesterday and today being filtered. Takes in a date. | `[[+createdon:fuzzydate]]` | | ago | Returns a pretty date format in seconds, minutes, weeks or months ago. Takes in a date (strtotime). | ```[[+createdon:date=`%d-%m-%Y`:ago]]``` | | md5 | Creates an MD5 hash of the input string. Similar to PHP's [md5](http://www.php.net/manual/en/function.md5.php). | `[[+password:md5]]` |