Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bc, figlet: add Spanish translation #6208

Merged
merged 2 commits into from
Jul 9, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 20 additions & 0 deletions pages.es/common/bc.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# bc

> Un lenguaje de calculadora de precisión arbitraria.
> Más información: <https://manned.org/bc>.

- Inicia `bc` en el modo interactivo utilizando la biblioteca matemática estándar:

`bc -l`

- Calcula el resultado de una expresión:

`bc <<< "(1 + 2) * 2 ^ 2"`

- Calcula el resultado de una expresión y fuerza a que el resultado tenga 10 cifras decimales:

`bc <<< "scale=10; 5 / 3"`

- Calcula el resultado de una expresión con el seno y coseno utilizando `mathlib`:

`bc -l <<< "s(1) + c(1)"`
20 changes: 20 additions & 0 deletions pages.es/common/figlet.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# figlet

> Genera encabezados usando caracteres ASCII desde la entrada del usuario.
> Más información: <http://www.figlet.org/figlet-man.html>.

- Genera el encabezado directamente introduciendo el texto:

`figlet {{texto_de_entrada}}`

- Usa un archivo de fuente personalizada:

`figlet {{texto_de_entrada}} -f {{ruta/al/archivo_de_fuente}}`

- Redirige la salida de un comando hacia figlet:

`{{comando}} | figlet`

- Muestra las fuentes disponibles para figlet:

`showfigfonts {{texto_opcional_a_mostrar}}`
Comment on lines +18 to +20
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know the en has it however should it be here? (and on the other one)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, appears in English file, that's why included here.
I think it's related in some way with figlet. And thanks to be included here it's how I found that this command exits! :)
I'm a newcomer here, but I find it useful...