From 2d288b0b0e20692720f87d1e526b3f65d63988a0 Mon Sep 17 00:00:00 2001 From: rehrar Date: Mon, 11 Dec 2017 17:05:28 -0700 Subject: [PATCH] Various multilingual testing - Added support for multilingual navigation - Put Spanish copy in some pages in get-started for testing purposes = Added multilingual support for the home page --- _data/navigation.yml | 111 ++++++++++++++ _i18n/en.yml | 4 + _i18n/en/get-started/using.md | 12 +- _i18n/en/index.md | 190 +++++++++++++++++++++++ _i18n/es.yml | 4 + _i18n/es/get-started/accepting.md | 48 +++--- _i18n/es/get-started/using.md | 26 ++-- _i18n/es/get-started/what-is-monero.md | 39 +++-- _i18n/es/index.md | 172 +++++++++++++++++++++ _includes/header.html | 204 +++++++++++++------------ css/custom.css | 70 +++++++-- index.html | 195 +---------------------- 12 files changed, 713 insertions(+), 362 deletions(-) create mode 100644 _data/navigation.yml create mode 100644 _i18n/en/index.md create mode 100644 _i18n/es/index.md diff --git a/_data/navigation.yml b/_data/navigation.yml new file mode 100644 index 00000000..62d4e500 --- /dev/null +++ b/_data/navigation.yml @@ -0,0 +1,111 @@ +en: +- title: Get Started + subfolderitems: + - page: What is Monero? + url: get-started/what-is-monero + - page: Using + url: get-started/using + - page: Accepting + url: get-started/accepting + - page: Contributing + url: get-started/contributing + - page: Mining + url: get-started/mining + - page: FAQ + url: get-started/faq +- title: Downloads + url: downloads +- title: Recent News + subfolderitems: + - page: All Posts + url: blog + - page: Missives + url: blog/tags/monero%20missives.html + - page: Meeting Logs + url: blog/tags/dev%20diaries.html + - page: Releases + url: blog/tags/releases.html +- title: Community + subfolderitems: + - page: Team + url: community/team + - page: Hangouts + url: community/hangouts + - page: Events + url: community/events + - page: Sponsorships + url: community/sponsorships + - page: Merchants + url: community/merchants +- title: Resources + subfolderitems: + - page: About + url: resources/about + - page: Roadmap + url: resources/roadmap + - page: Research Lab + url: resources/research-lab + - page: Moneropedia + url: resources/moneropedia + - page: User Guides + url: resources/user-guides + - page: Developer Guides + url: resources/developer-guides + - page: Technical Specs + url: technical-specs + +es: +- title: Inicio + subfolderitems: + - page: ¿Qué es Monero? + url: get-started/what-is-monero + - page: Usar Monero + url: get-started/using + - page: Aceptar Monero + url: get-started/accepting + - page: Contribuir a Monero + url: get-started/contributing + - page: Minar Monero + url: get-started/mining + - page: FAQ + url: get-started/faq +- title: Downloads + url: Descargas +- title: Noticias + subfolderitems: + - page: Todas publicaciones + url: blog + - page: Misivas + url: blog/tags/monero%20missives.html + - page: Transcripciones de reuniones + url: blog/tags/dev%20diaries.html + - page: Lanzamientos + url: blog/tags/releases.html +- title: Comunidad + subfolderitems: + - page: Equipo + url: community/team + - page: Canales de comunicación + url: community/hangouts + - page: Eventos + url: community/events + - page: Patrocinios + url: community/sponsorships + - page: Comerciantes + url: community/merchants +- title: Recursos + subfolderitems: + - page: Sobre Monero + url: resources/about + - page: Hoja de ruta + url: resources/roadmap + - page: Laboratorio de investigación + url: resources/research-lab + - page: Moneropedia + url: resources/moneropedia + - page: Guías de usuario + url: resources/user-guides + - page: Guías de desarrolladores + url: resources/developer-guides + - page: Especificaciones técnicas + url: resources/technical-specs \ No newline at end of file diff --git a/_i18n/en.yml b/_i18n/en.yml index a1c57736..3da6fcf1 100644 --- a/_i18n/en.yml +++ b/_i18n/en.yml @@ -1,3 +1,7 @@ +langs: + en: English + es: Español + global: date: '%Y/%m/%d' monero: Monero diff --git a/_i18n/en/get-started/using.md b/_i18n/en/get-started/using.md index 5a797672..cf99fab4 100644 --- a/_i18n/en/get-started/using.md +++ b/_i18n/en/get-started/using.md @@ -13,7 +13,7 @@
-

Monero is a secure, private, and untraceable cryptocurrency. The developers and community are committed to protecting these values. Learn more by reading the What is Monero page. The source code is also available for review and discussion.

+

Monero is a secure, private, and untraceable cryptocurrency. The developers and community are committed to protecting these values. Learn more by reading the What is Monero page. The source code is also available for review and discussion.

@@ -30,7 +30,7 @@
-

There is a large and supportive community that will assist if you experience any difficulty. See the Hangouts page for more information.

+

There is a large and supportive community that will assist if you experience any difficulty. See the Hangouts page for more information.

@@ -42,7 +42,7 @@
-

A Monero wallet is required to secure your own funds. See the Downloads page for a listing of available wallets.

+

A Monero wallet is required to secure your own funds. See the Downloads page for a listing of available wallets.

@@ -59,7 +59,7 @@
-

Monero may be purchased on an exchange with fiat or other cryptocurrencies. An alternate way of acquiring Monero is via mining, the computationally-complex process whereby transactions are immutably recorded on the blockchain.

+

Monero may be purchased on an exchange with fiat or other cryptocurrencies. An alternate way of acquiring Monero is via mining, the computationally-complex process whereby transactions are immutably recorded on the blockchain.

@@ -76,7 +76,7 @@
-

Learn how to send and receive Monero by viewing the guide.

+

Learn how to send and receive Monero by viewing the guide.

@@ -88,7 +88,7 @@
-

Monero may be used to purchase many goods and services. For a listing, see the Merchants page.

+

Monero may be used to purchase many goods and services. For a listing, see the Merchants page.

diff --git a/_i18n/en/index.md b/_i18n/en/index.md new file mode 100644 index 00000000..964b48f7 --- /dev/null +++ b/_i18n/en/index.md @@ -0,0 +1,190 @@ +
+
+
+
+
+
+ + +
+ +
+
+
+

Monero

+

Private Digital Currency

+

Monero is a secure, private, and untraceable cryptocurrency. It is open-source and accessible to all. With Monero, you are your own bank. Only you control and are responsible for your funds. Your accounts and transactions are kept private from prying eyes.

+

Get Started

+
+
+
+
+
+ + + +
+
+
+

Why Monero is different

+
+
+
+

Monero is secure

+

Monero is a decentralized cryptocurrency, meaning it is secure digital cash operated by a network of users. Transactions are confirmed by distributed consensus and then immutably recorded on the blockchain. Third-parties do not need to be trusted to keep your Monero safe.

+
+
+ Secure safe +
+
+
+
+ No surveillance +
+
+

Monero is private

+

Monero uses ring signatures, ring confidential transactions, and stealth addresses to obfuscate the origins, amounts, and destinations of all transactions. Monero provides all the benefits of a decentralized cryptocurrency, without any of the typical privacy concessions.

+
+ +
+
+
+

Monero is untraceable

+

Sending and receiving addresses as well as transacted amounts are obfuscated by default. Transactions on the Monero blockchain cannot be linked to a particular user or real-world identity.

+
+
+ Untraceable Monero paths +
+
+
+
+ Monero gold +
+
+

Monero is fungible

+

Monero is fungible because it is private by default. Units of Monero cannot be blacklisted by vendors or exchanges due to their association in previous transactions.

+
+
+
+
+ + + + + + + +
+
+ +
+
+
+

Downloads

+
+ + +
+

Need it for a different operating system? View all available downloads here.

+
+
+
+
+ + + + + +
+
+ + + + + +
+
+ + + + + + + + + + + +
+
+ + +
\ No newline at end of file diff --git a/_i18n/es.yml b/_i18n/es.yml index a1c57736..3da6fcf1 100644 --- a/_i18n/es.yml +++ b/_i18n/es.yml @@ -1,3 +1,7 @@ +langs: + en: English + es: Español + global: date: '%Y/%m/%d' monero: Monero diff --git a/_i18n/es/get-started/accepting.md b/_i18n/es/get-started/accepting.md index 4c9656ce..e607e8d3 100644 --- a/_i18n/es/get-started/accepting.md +++ b/_i18n/es/get-started/accepting.md @@ -5,25 +5,25 @@
-

Instructions for the Command-Line Interface

+

Instrucciones para la interfaz de línea de comandos (CLI)

-### The Basics +### Los fundamentos -Monero works a little differently to what you may have become accustomed to from other @cryptocurrencies. In the case of a digital currency like Bitcoin and its many derivatives merchant payment systems will usually create a new recipient @address for each payment or user. +Monero funciona de una manera un poco diferente de otras criptomonedas. En el caso de una moneda digital como Bitcoin y sus derivativos, los sistemas de pago de comerciantes usualmente crean una nueva dirección de destinatario para cada pago o para cada usuario. -However, because Monero has @stealth-addresses there is no need to have separate recipient addresses for each payment or user, and a single @account address can be published. Instead, when receiving payments a merchant will provide the person paying with a "payment ID". +Puesto que Monero usa direcciones ocultadas, no hay necesidad en tener direcciones de destinatario separadas para cada pago o usuario. La dirección de una sola cuenta puede ser publicada. Para recibir pagos, un comerciante proporcionará un cliente con una ID de pago. + +Una ID de pago es una cadena de 64 caracteres hexadecimales que se crea de manera aleatoria por un comerciante. Un ejemplo de ID de pago es: -A @payment-ID is a hexadecimal string that is 64 characters long, and is normally randomly created by the merchant. An example of a payment ID is: ``` 666c75666679706f6e7920697320746865206265737420706f6e792065766572 ``` -### Checking for a Payment in monero-wallet-cli - -If you want to check for a payment using monero-wallet-cli you can use the "payments" command followed by the payment ID or payment IDs you want to check. For example: +### Verificar un pago en monero-wallet-cli +Si quiere verificar un pago usando monero-wallet-cli, puede usar el comando de “payments” seguido por una o varas ID de pago que quiere verificar. Por ejemplo: ``` [wallet 49VNLa]: payments 666c75666679706f6e7920697320746865206265737420706f6e792065766572 @@ -32,23 +32,23 @@ If you want to check for a payment using monero-wallet-cli you can use the "paym [wallet 49VNLa]: █ ``` -If you need to check for payments programmatically, then details follow the next section. +Si quiere verificar pagos mediante programación, véase la siguiente sección. -### Receiving a Payment Step-by-Step +### Recibir pagos paso a paso -* Generate a random 64 character hexadecimal string for the payment -* Communicate the payment ID and Monero address to the individual who is making payment -* Check for the payment using the "payments" command in monero-wallet-cli +* Generar una cadena de 64 caracteres hexadecimales aleatorios para el pago +* Pasar la ID de pago y la dirección de Monero al individuo que realiza el pago +* Verificar el pago usando “payments” en monero-wallet-cli -### Checking for a Payment Programmatically +### Verificar el pago mediante programación -In order to check for a payment programmatically you can use the get_payments or get_bulk_payments JSON RPC API calls. +Para verificar un pago mediante programación, puede usar las llamadas de JSON RPC API get_payments o get_bulk_payments. -*get_payments*: this requires a payment_id parameter with a single payment ID. +*get_payments: esto requiere a un parámetro con una sola ID de pago. -*get_bulk_payments*: this is the preferred method, and requires two parameters, payment_ids - a JSON array of payment IDs - and an optional min_block_height - the block height to scan from. +*get_bulk_payments: esto es un método preferido. Requiere dos parámetros, payments_ids - un array de JSON de IDs de pagos - y un óptimo min_block_height - la altura de bloque a escanear. -An example of returned data is as follows: +Un ejemplo de los datos devueltos: ``` [ monero->~ ]$ curl -X POST http://127.0.0.1:18500/json_rpc -d '{"jsonrpc":"2.0","method":"get_bulk_payments","id":"test", "params":{"payment_ids": ["666c75666679706f6e7920697320746865206265737420706f6e792065766572"]}}' -H "Content-Type: application/json" @@ -67,15 +67,15 @@ An example of returned data is as follows: } ``` -It is important to note that the amounts returned are in base Monero units and not in the display units normally used in end-user applications. Also, since a transaction will typically have multiple outputs that add up to the total required for the payment, the amounts should be grouped by the tx_hash or the payment_id and added together. Additionally, as multiple outputs can have the same amount, it is imperative not to try and filter out the returned data from a single get_bulk_payments call. +Es importante notar que los importes devueltos se presentan usando las unidades básicas de Monero y no las unidades de display que normalmente se usan en aplicaciones de usuario final. Además, puesto que una transacción típicamente tendrá varias salidas que se añaden al total requerido de pago, los importes deben agruparse por el tx_hash o el payment_id y deben añadirse. Asimismo, puesto que salidas múltiples pueden tener el mismo importe, es imprescindible que no trate de filtrar los datos devueltos de una sola llamada get_bulk_payments. -Before scanning for payments it is useful to check against the daemon RPC API (the get_info RPC call) to see if additional blocks have been received. Typically you would want to then scan only from that received block on by specifying it as the min_block_height to get_bulk_payments. +Antes de buscar pagos, es necesario usar el demonio RPC API (la llamada RPC get_info) para verificar si se haya recibido bloques adicionales. -### Programatically Scanning for Payments +### Buscar pagos mediante programación -* Get the current block height from the daemon, only proceed if it has increased since our last scan -* Call the get_bulk_payments RPC API call with our last scanned height and the list of all payment IDs in our system -* Store the current block height as our last scanned height +* Obtener la altura actual de bloque del demonio y proceder sólo si ha aumentado desde su última búsqueda +* Ejecute la llamada de RPC API get_bulk_payments con la última altura de bloque escaneada y la lista de todas IDs de pagos en el sistema +* Guardar la altura actual de bloque como la última altura escaneada * Remove duplicates based on transaction hashes we have already received and processed
diff --git a/_i18n/es/get-started/using.md b/_i18n/es/get-started/using.md index 5a797672..29931282 100644 --- a/_i18n/es/get-started/using.md +++ b/_i18n/es/get-started/using.md @@ -1,5 +1,5 @@
-

Transacting with Monero can be made easy. This page is designed to guide users in that process.

+

Es fácil hacer transacciones con Monero. Esta página sirve para mostrar cómo realizarlo.

@@ -9,11 +9,11 @@
-

1. Learn

+

1. Aprender

-

Monero is a secure, private, and untraceable cryptocurrency. The developers and community are committed to protecting these values. Learn more by reading the What is Monero page. The source code is also available for review and discussion.

+

Monero es la criptomoneda segura, privada y no rastreable. Los desarrolladores y la comunidad están dedicados a proteger estos valores. Aprenda más sobre Monero en la página ¿Qué es Monero?. El código original también está disponible para revisión y discusión.

@@ -26,11 +26,11 @@
-

2. Request Support

+

2. Pedir ayuda

-

There is a large and supportive community that will assist if you experience any difficulty. See the Hangouts page for more information.

+

La comunidad grande y alentador le asistirá si tiene una dificultad o pregunta.Véase la página de Canales de comunicación para más información.

@@ -38,11 +38,11 @@
-

3. Generate a Wallet

+

3. Crear una billetera

-

A Monero wallet is required to secure your own funds. See the Downloads page for a listing of available wallets.

+

Se requiere crear una billetera para mantener sus fondos seguros. Vaya a la página de Descargas para ver las billeteras electrónicas disponibles.

@@ -55,11 +55,11 @@
-

4. Acquire Monero

+

4. Adquerir Monero

-

Monero may be purchased on an exchange with fiat or other cryptocurrencies. An alternate way of acquiring Monero is via mining, the computationally-complex process whereby transactions are immutably recorded on the blockchain.

+

Se compra Monero en una plataforma de intercambio with fiat or other cryptocurrencies. con monedas fiduciarias o otras criptomonedas. Un modo alternativo de adquirir Monero es minar, lo cual es el proceso computacional complejo de recordar las transacciones en la cadena de bloque inmutablemente..

@@ -72,11 +72,11 @@
-

5. Send and Receive Monero

+

5. Enviar y recibir Monero

-

Learn how to send and receive Monero by viewing the guide.

+

Aprenda cómo enviar y recibir Monero con esta guía.

@@ -84,11 +84,11 @@
-

6. Transact with Monero

+

6. Usar Monero

-

Monero may be used to purchase many goods and services. For a listing, see the Merchants page.

+

Se puede usar Monero para pagar por varios bienes y servicios. Véase la lista de comerciantes que aceptan Monero.

diff --git a/_i18n/es/get-started/what-is-monero.md b/_i18n/es/get-started/what-is-monero.md index 89588bbd..f254b47e 100644 --- a/_i18n/es/get-started/what-is-monero.md +++ b/_i18n/es/get-started/what-is-monero.md @@ -4,13 +4,13 @@
-

What you need to know

+

Qué hay que saber

-

Monero is the leading cryptocurrency with a focus on private and censorship-resistant transactions.

-

Most existing cryptocurrencies, including Bitcoin and Ethereum, have transparent blockchains, meaning that transactions are openly verifiable and traceable by anyone in the world. Furthermore, sending and receiving addresses for these transactions may potentially be linkable to a person's real-world identity.

-

Monero uses cryptography to shield sending and receiving addresses, as well as transacted amounts.

+

Monero es la criptomoneda líder que se enfoque en las transacciones privadas y resistentes a la censura.

+

La mayoría de criptomonedas, incluso Bitcoin y Ethereum, tiene las cadenas de bloques transparentes, lo cual significa que cualquier persona las puede verificar y rastrear. Asimismo, las direcciones enviadas y recibidos de estas transacciones pueden revelar la identidad real de una persona.

+

Monero usa criptografía para ocultar las direcciones y los importes de transacciones.

Encrypted lock @@ -21,19 +21,18 @@ Classified document
-

Monero transactions are confidential and untraceable.

-

Every Monero transaction, by default, obfuscates sending and receiving addresses as well as transacted amounts. This always-on privacy means that every Monero user's activity enhances the privacy of all other users, unlike selectively transparent cryptocurrencies (e.g. Z-Cash).

-

Monero is fungible. By virtue of obfuscation, Monero cannot become tainted through participation in previous transactions. This means Monero will always be accepted without the risk of censorship.

-

The Kovri Project, currently in development, will route and encrypt transactions via I2P Invisible Internet Project nodes. This will obfuscate a transactor's IP address and provide further protection against network monitoring.

+

Transacciones de Monero son confidenciales y no rastreables.

+

En cada transacción de Monero, por defecto se ofuscan el envío y la recepción de direcciones así como los importes tramitados. Esta tecnología de privacidad asegura que cada actividad del usuario de Monero mejore la privacidad de otros usuarios, a diferencia de criptomonedas que lo hacen de manera selectiva (por ejemplo, Z-Cash).

+

Monero es fungible. Por el beneficio de ofuscación, Monero no puede mancharse por la participación en transacciones previas. Es decir, Monero siempre será aceptado sin censura.

+

The Kovri Project, el cual está en el estado de desarrollo, enviará y encriptará las transacciones a través de los nodos del proyecto del Internet invisible I2P . Esta tecnología ofuscará la dirección IP del usuario y proporcionará la protección adicional contra la supervisión de la red.

-
-

Monero is a grassroots community attracting the world's best cryptocurrency researchers and engineering talent.

-

Over 240 developers have contributed to the Monero project, including 30 core developers. Forums and chat channels are welcoming and active.

-

Monero's Research Lab, Core Development Team and Community Developers are constantly pushing the frontier of what is possible with cryptocurrency privacy and security.

-

Monero is not a corporation. It is developed by cryptography and distributed systems experts from all over the world that donate their time or are funded by community donations. This means that Monero can't be shut down by any one country and is not constrained by any particular legal jurisdiction.

+

Monero es la comunidad viva que atrae a los mejores investigadores e ingenieros del mundo en el campo de criptomonedas.

+

Más de 240 desarrolladores incluso 30 desarrolladores claves, han contribuido al proyecto Monero. La gente en los foros y canales de chat es amable y activa.

+

El Laboratorio de investigación de Monero, el Equipo principal de desarrollo y los desarrolladores de comunidad siempre siguen probando los límites de la privacidad y seguridad en el área de criptomoneda.

+

Monero no es una corporación. Se maneja por los expertos en la criptografía y en los sistemas distribuidos de todas partes del mundo. Donan su tiempo a Monero o son financiados por la comunidad. Eso significa que el proyecto Monero no puede ser cerrado por ningún país y no se limita por ningún jurisdicción legal particular.

Academic growth @@ -44,8 +43,8 @@ Electronic cash
-

Monero is electronic cash that allows fast, inexpensive payments to and from anywhere in the world.

-

There are no multi-day holding periods and no risk of fraudulent chargebacks. It is safe from ‘capital controls’ - these are measures that restrict the flow of traditional currencies, sometimes to an extreme degree, in countries experiencing economic instability.

+

Monero es dinero electrónico que facilita los pagos rápidos con comisiones muy bajas por todo el mundo.

+

No hay períodos largos de tenencia ni riesgo de reembolso fraudulento. Es protegido de “los controles de capitales”, los que son las medidas para restringir el flujo de criptomonedas tradicionales, a veces a un punto extremo, en los países con la inestabilidad económica.

@@ -53,7 +52,7 @@
-

Monero Videos

+

Videos sobre Monero