Skip to content

Commit 45ac372

Browse files
Documentation translated into Spanish (#53)
1 parent d28fa8d commit 45ac372

21 files changed

+1111
-1110
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ asciidoctor {
7979
}
8080
}
8181

82-
tasks.register('asciidoc_pl', AsciidoctorTask) {
82+
tasks.register('asciidoc_es', AsciidoctorTask) {
8383
group = 'documentation'
84-
description = 'Generates documentation for the "pl" directory.'
84+
description = 'Generates documentation for the "es" directory.'
8585

86-
sourceDir = file('src/docs/asciidoc/pl')
87-
outputDir = file("$buildDir/docs/asciidoc/pl")
86+
sourceDir = file('src/docs/asciidoc/es')
87+
outputDir = file("$buildDir/docs/asciidoc/es")
8888

8989
options backend: 'html5'
9090

@@ -114,7 +114,7 @@ tasks.register('copyCNAME', Copy) {
114114
into file(asciidoctor.outputDir.path)
115115
}
116116

117-
asciidoctor.dependsOn asciidoc_pl
117+
asciidoctor.dependsOn asciidoc_es
118118
copyCNAME.dependsOn asciidoctor
119119
publishGhPages.dependsOn copyCNAME
120120

src/docs/asciidoc/pl/getting_started.adoc renamed to src/docs/asciidoc/es/getting_started.adoc

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
== Getting started
1+
== Comenzando
22

3-
Projects that include Vavr need to target Java 1.8 at minimum.
3+
Los proyectos que incluyan Vavr deben apuntar como mínimo a Java 1.8.
44

5-
The .jar is available at http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.vavr%22%20a%3A%22vavr%22[Maven Central].
5+
El archivo `.jar` está disponible en http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22io.vavr%22%20a%3A%22vavr%22[Maven Central].
66

77
=== Gradle
88

@@ -32,22 +32,22 @@ dependencies {
3232
<dependency>
3333
<groupId>io.vavr</groupId>
3434
<artifactId>vavr</artifactId>
35-
<version>0.10.5</version>
35+
<version>0.10.4</version>
3636
</dependency>
3737
</dependencies>
3838
----
3939

40-
=== Standalone
40+
=== Independiente
4141

42-
Because Vavr does __not__ depend on any libraries (other than the JVM) you can easily add it as standalone .jar to your classpath.
42+
Debido a que Vavr __no__ depende de ninguna biblioteca (aparte de la JVM), puedes agregarlo fácilmente como un archivo `.jar` independiente a tu __classpath__.
4343

4444
=== Snapshots
4545

46-
Developer versions can be found https://oss.sonatype.org/content/repositories/snapshots/io/vavr/vavr[here].
46+
Las versiones en desarrollo se pueden encontrar https://oss.sonatype.org/content/repositories/snapshots/io/vavr/vavr[aquí].
4747

4848
==== Gradle
4949

50-
Add the additional snapshot repository to your `build.gradle`:
50+
Agrega el repositorio adicional de snapshots en tu archivo `build.gradle`:
5151

5252
[source,groovy]
5353
----
@@ -59,7 +59,7 @@ repositories {
5959

6060
==== Maven
6161

62-
Ensure that your ``~/.m2/settings.xml`` contains the following:
62+
Asegúrate de que tu archivo ``~/.m2/settings.xml`` contenga lo siguiente:
6363

6464
[source,xml]
6565
----

0 commit comments

Comments
 (0)