Skip to content

Commit 02bf9fc

Browse files
committed
Replace the spellings of github/Github with GitHub
1 parent f939c7e commit 02bf9fc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+3675
-3675
lines changed

de/01.2.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,13 @@ Um die Anwendung zu kompilieren, müssen wir zurück in das Verzeichnis, in welc
9292

9393
## Installation von Paketen Dritter (Remote Packages)
9494

95-
Go umfasst ein Werkzeug zum Installieren von Remote Packages, also Paketen die von anderen Programmierern erstellt wurden. Mit dem Befehl `go get` kannst Du diese für die eigene Nutzung installieren. Es unterstützt die meisten Open Source Communities wie Github, Google Code, Bitbucket und Launchpad.
95+
Go umfasst ein Werkzeug zum Installieren von Remote Packages, also Paketen die von anderen Programmierern erstellt wurden. Mit dem Befehl `go get` kannst Du diese für die eigene Nutzung installieren. Es unterstützt die meisten Open Source Communities wie GitHub, Google Code, Bitbucket und Launchpad.
9696

9797
go get github.com/astaxie/beedb
9898

9999
Du kannst `go get -u …` nutzen, um ein Remote Package zu aktualisieren. Zugleich werden auch alle benötigten Abhängigkeiten mit installiert.
100100

101-
Dieser Befehl nutzt verschiedene Versionskontrollsysteme für die verschiedenen Open Source Plattformen. So wird beispielsweise `git` für Github und `hg` für Google Code verwendet. Daher musst Du zuerst die entsprechenden Versionskontrollsysteme installieren, ehe Du `go get` nutzen kannst.
101+
Dieser Befehl nutzt verschiedene Versionskontrollsysteme für die verschiedenen Open Source Plattformen. So wird beispielsweise `git` für GitHub und `hg` für Google Code verwendet. Daher musst Du zuerst die entsprechenden Versionskontrollsysteme installieren, ehe Du `go get` nutzen kannst.
102102

103103
Nach dem Ausführen der oben gezeigten Befehle, sollte die Orderstruktur etwa so aussehen.
104104

de/01.3.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Dieser Befehl löscht alle Dateien, die vom Kompiler generiert wurden, einschlie
4343
DIR.test(.exe) // Generiert von go test -c
4444
MAINFILE(.exe) // Generiert von go build MAINFILE.go
4545

46-
Überlicherweise nutze ich diese Befehle zum Säubern von Projekten, bevor ich diese auf Github hochlade. Sie sind nützlich für lokale Tests, aber nutzlos zur Versionskontrolle.
46+
Überlicherweise nutze ich diese Befehle zum Säubern von Projekten, bevor ich diese auf GitHub hochlade. Sie sind nützlich für lokale Tests, aber nutzlos zur Versionskontrolle.
4747

4848
## go fmt und gofmt
4949

@@ -56,10 +56,10 @@ Wir nutzen üblicherweise `gofmt -w` statt `go fmt`. Somit wird Deine Quellcoded
5656

5757
## go get
5858

59-
Dieser Befehl ermöglicht es, Remote Packages herunterzuladen. Bisher untersützt es Bitbucket, Github, Google Code und Launchpad. Es geschehen zwei Dinge, nachdem wir den Befehl ausgeführt haben. Als erstes lädt Go den Quellcode herunter und führt danach `go install` aus. Bevor Du `go get` nutzt, solltest Du vorher die benötigten Versionskontrollsysteme herunterladen.
59+
Dieser Befehl ermöglicht es, Remote Packages herunterzuladen. Bisher untersützt es Bitbucket, GitHub, Google Code und Launchpad. Es geschehen zwei Dinge, nachdem wir den Befehl ausgeführt haben. Als erstes lädt Go den Quellcode herunter und führt danach `go install` aus. Bevor Du `go get` nutzt, solltest Du vorher die benötigten Versionskontrollsysteme herunterladen.
6060

6161
BitBucket (Mercurial und Git)
62-
Github (Git)
62+
GitHub (Git)
6363
Google Code (Git, Mercurial, Subversion)
6464
Launchpad (Bazaar)
6565

de/12.3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ When our web application is finally production ready, what are the steps necessa
44

55
## Daemons
66

7-
Currently, Go programs cannot cannot be run as daemon processes (for additional information, see the open issue on github [here](https://github.com/golang/go/issues/227)). It's difficult to fork existing threads in Go because there is no way of ensuring a consistent state in all threads that have been used.
7+
Currently, Go programs cannot cannot be run as daemon processes (for additional information, see the open issue on GitHub [here](https://github.com/golang/go/issues/227)). It's difficult to fork existing threads in Go because there is no way of ensuring a consistent state in all threads that have been used.
88

99
We can, however, see many attempts at implementing daemons online, such as in the two following ways;
1010

de/14.4.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ OAuth and OAuth 2 are currently two of the most popular authentication methods.
5656

5757
github.com/bradrydzewski/go.auth
5858

59-
The code below demonstrates how to use this library to implement OAuth authentication in Beego using our Github credentials:
59+
The code below demonstrates how to use this library to implement OAuth authentication in Beego using our GitHub credentials:
6060

6161
1. Let's add some routes
6262

@@ -147,7 +147,7 @@ After clicking "Authorize app", the following screen appears:
147147

148148
![](images/14.4.github3.png?raw=true)
149149

150-
Figure 14.6 authorized Github information gets displayed after the login page
150+
Figure 14.6 authorized GitHub information gets displayed after the login page
151151

152152
## Custom authentication
153153

en/01.2.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ To compile this application, you need to switch to the application directory, wh
9595

9696
## Install remote packages
9797

98-
Go has a tool for installing remote packages, which is a command called `go get`. It supports most open source communities, including Github, Google Code, BitBucket, and Launchpad.
98+
Go has a tool for installing remote packages, which is a command called `go get`. It supports most open source communities, including GitHub, Google Code, BitBucket, and Launchpad.
9999

100100
go get github.com/astaxie/beedb
101101

102102
You can use `go get -u …` to update your remote packages and it will automatically install all the dependent packages as well.
103103

104-
This tool will use different version control tools for different open source platforms. For example, `git` for Github and `hg` for Google Code. Therefore, you have to install these version control tools before you use `go get`.
104+
This tool will use different version control tools for different open source platforms. For example, `git` for GitHub and `hg` for Google Code. Therefore, you have to install these version control tools before you use `go get`.
105105

106106
After executing the above commands, the directory structure should look like following.
107107

en/01.3.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ We usually use `gofmt -w` instead of `go fmt`. The latter will not rewrite your
5555

5656
## go get
5757

58-
This command is for getting remote packages. So far, it supports BitBucket, Github, Google Code and Launchpad. There are actually two things that happen after we execute this command. The first thing is that Go downloads the source code, then executes `go install`. Before you use this command, make sure you have installed all of the related tools.
58+
This command is for getting remote packages. So far, it supports BitBucket, GitHub, Google Code and Launchpad. There are actually two things that happen after we execute this command. The first thing is that Go downloads the source code, then executes `go install`. Before you use this command, make sure you have installed all of the related tools.
5959

6060
BitBucket (Mercurial Git)
61-
Github (git)
61+
GitHub (git)
6262
Google Code (Git, Mercurial, Subversion)
6363
Launchpad (Bazaar)
6464

en/02.1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ To mitigate all the problems that Google faced with current tools, they wrote a
2323

2424
Go was designed with concurrency in mind, please note that parallelism != concurrency, there is an [amazing post](https://blog.golang.org/concurrency-is-not-parallelism) by Rob Pike on the [golang blog](https://blog.golang.org/), you will find it there, it is worth a read.
2525

26-
Another very important change that is the concept of `GOPATH`. Gone are the days when you had to create a folder called `code` and then create workspaces for eclipse and what not. Now you have to keep one folder tree for go code which will be updated by the package manager automatically. It is also recommended to create folders with either a custom domain or the github domain, for example I created a task manager using golang so I created a set of folders
26+
Another very important change that is the concept of `GOPATH`. Gone are the days when you had to create a folder called `code` and then create workspaces for eclipse and what not. Now you have to keep one folder tree for go code which will be updated by the package manager automatically. It is also recommended to create folders with either a custom domain or the GitHub domain, for example I created a task manager using golang so I created a set of folders
2727
`~/go/src/github.com/thewhitetulip/Tasks`
2828

2929
**Note:** In *nix systems `~` stands for home directory, which is the windows equivalent of `C:\\Users\\username`.

en/12.3.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ When our web application is finally production ready, what are the steps necessa
44

55
## Daemons
66

7-
Currently, Go programs cannot be run as daemon processes (for additional information, see the open issue on github [here](https://github.com/golang/go/issues/227)). It's difficult to fork existing threads in Go because there is no way of ensuring a consistent state in all threads that have been used.
7+
Currently, Go programs cannot be run as daemon processes (for additional information, see the open issue on GitHub [here](https://github.com/golang/go/issues/227)). It's difficult to fork existing threads in Go because there is no way of ensuring a consistent state in all threads that have been used.
88

99
We can, however, see many attempts at implementing daemons online, such as in the two following ways;
1010

en/14.4.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ OAuth and OAuth 2 are currently two of the most popular authentication methods.
5656

5757
github.com/bradrydzewski/go.auth
5858

59-
The code below demonstrates how to use this library to implement OAuth authentication in Beego using our Github credentials:
59+
The code below demonstrates how to use this library to implement OAuth authentication in Beego using our GitHub credentials:
6060

6161
1. Let's add some routes
6262

@@ -147,7 +147,7 @@ After clicking "Authorize app", the following screen appears:
147147

148148
![](images/14.4.github3.png?raw=true)
149149

150-
Figure 14.6 authorized Github information gets displayed after the login page
150+
Figure 14.6 authorized GitHub information gets displayed after the login page
151151

152152
## Custom authentication
153153

es/01.2.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,13 @@ Para compilar esta aplicación necesitas cambiar al directorio de la aplicación
9090
```
9191
## Instala paquete remotos
9292

93-
Go tiene una herramienta para instalar paquetes remotos, es el comando llamado `go get`. Soporta la mayoría de comunidades de código libre, incluyendo Github, Google Code, BitBucket y Launchpad.
93+
Go tiene una herramienta para instalar paquetes remotos, es el comando llamado `go get`. Soporta la mayoría de comunidades de código libre, incluyendo GitHub, Google Code, BitBucket y Launchpad.
9494
```
9595
go get github.com/astaxie/beedb
9696
```
9797
Puedes usar `go get -u …` para actualizar tus paquetes remotos e incluso instalará todas sus dependencias.
9898

99-
Esta herramienta usará diferente herramientas de control de versiones para las diferentes plataformas de código libre. Por ejemplo, `git` para Github y `hg` para Google Code. Debido a esto, debes instalar estas herramientas de control de versiones antes de usar `go get`.
99+
Esta herramienta usará diferente herramientas de control de versiones para las diferentes plataformas de código libre. Por ejemplo, `git` para GitHub y `hg` para Google Code. Debido a esto, debes instalar estas herramientas de control de versiones antes de usar `go get`.
100100

101101
Después de ejecutar los comandos anteriormente descritos, la estructura de directorios debería verse de la siguiente forma:
102102
```

es/01.3.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ Usualmente usamos `gofmt -w` en vez de `go fmt`. El último, no rescribirá tus
5353

5454
## go get
5555

56-
Este comando es para obtener paquetes remotos. Hasta el momento soporta BitBucket, Github, Google Code y Launchpad. Actualmente existen dos cosas que suceden después de ejecutar este comando. La primera es que Go descarga el código fuente, luego ejecuta `go install`. Antes de que utilices este comando, asegúrate que tienes instaladas todas las herramientas relacionadas.
56+
Este comando es para obtener paquetes remotos. Hasta el momento soporta BitBucket, GitHub, Google Code y Launchpad. Actualmente existen dos cosas que suceden después de ejecutar este comando. La primera es que Go descarga el código fuente, luego ejecuta `go install`. Antes de que utilices este comando, asegúrate que tienes instaladas todas las herramientas relacionadas.
5757
```
5858
BitBucket (Mercurial Git)
59-
Github (git)
59+
GitHub (git)
6060
Google Code (Git, Mercurial, Subversion)
6161
Launchpad (Bazaar)
6262
```

es/02.1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Entonces para mitigar todos los problemas que Google enfrentó con las herramien
2323

2424
Go fue diseñado con la concurrencia en mente, por favor note que paralelismo != concurrencia. Hay un post maravilloso escrito por Bob Pike en el blog de Go, blog.golang.org, que usted encontraréa ahí y vale la pena leerlo.
2525

26-
Otro cambio muy importante que Go trajo a la programación y que yo personalmente amo, es le concepto de `GOPATH`, los tiempos donde tenías que crear una carpeta llamada code y entonces crear espacios de trabajo para eclipse y otros. Ahora usted puede tener un árbol de carpetas para el código en Go y se mantendrá actualizado automáticamente por el administrador de paquetes. También bajo el código que estamos recomendando crear carpetas con cada dominio específico o el dominio de github, por ejemplo yo creé un manejador de tareas usando Go, entonces creé un conjunto de carpetas
26+
Otro cambio muy importante que Go trajo a la programación y que yo personalmente amo, es le concepto de `GOPATH`, los tiempos donde tenías que crear una carpeta llamada code y entonces crear espacios de trabajo para eclipse y otros. Ahora usted puede tener un árbol de carpetas para el código en Go y se mantendrá actualizado automáticamente por el administrador de paquetes. También bajo el código que estamos recomendando crear carpetas con cada dominio específico o el dominio de GitHub, por ejemplo yo creé un manejador de tareas usando Go, entonces creé un conjunto de carpetas
2727
`~/go/src/github.com/thewhitetulip/Tasks` Nota: En sistemas * nix `~` se refiere al directorio del usuario, que en windows es equivalente a `C:\\Users\\username`
2828
Ahora el `~/go/` es el universo de código Go en su máquina, este es solo una significante mejora en comparación con otros lenguajes, entonces podemos almacenar código eficientemente sin molestias, esto puede parecer raro al comienzo pero tiene un montón de sentido a comparación de los nombres de paquete en otros lenguajes que usan sistemas como el del dominio inverso.
2929

fa/working/01.2.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ func main() {
9595

9696
## نصب بسته‌های ریموت
9797

98-
Go has a tool for installing remote packages, which is a command called `go get`. It supports most open source communities, including Github, Google Code, BitBucket, and Launchpad.
98+
Go has a tool for installing remote packages, which is a command called `go get`. It supports most open source communities, including GitHub, Google Code, BitBucket, and Launchpad.
9999

100100
go get github.com/astaxie/beedb
101101

102102
You can use `go get -u …` to update your remote packages and it will automatically install all the dependent packages as well.
103103

104-
This tool will use different version control tools for different open source platforms. For example, `git` for Github and `hg` for Google Code. Therefore, you have to install these version control tools before you use `go get`.
104+
This tool will use different version control tools for different open source platforms. For example, `git` for GitHub and `hg` for Google Code. Therefore, you have to install these version control tools before you use `go get`.
105105

106106
After executing the above commands, the directory structure should look like following.
107107

fa/working/01.3.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,10 @@ We usually use `gofmt -w` instead of `go fmt`. The latter will not rewrite your
5555

5656
## go get
5757

58-
This command is for getting remote packages. So far, it supports BitBucket, Github, Google Code and Launchpad. There are actually two things that happen after we execute this command. The first thing is that Go downloads the source code, then executes `go install`. Before you use this command, make sure you have installed all of the related tools.
58+
This command is for getting remote packages. So far, it supports BitBucket, GitHub, Google Code and Launchpad. There are actually two things that happen after we execute this command. The first thing is that Go downloads the source code, then executes `go install`. Before you use this command, make sure you have installed all of the related tools.
5959

6060
BitBucket (Mercurial Git)
61-
Github (git)
61+
GitHub (git)
6262
Google Code (Git, Mercurial, Subversion)
6363
Launchpad (Bazaar)
6464

fr/01.2.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -115,14 +115,14 @@ Vous devriez voir le contenu suivant dans votre temrinal:
115115
## Installer des paquets distants
116116

117117
Go a un outil pour installer des paquets distants, qui est l'outil `go get`.Il supporte la majorité des communautés libres, comme
118-
Github, Google Code, BitBucket, et Launchpad.
118+
GitHub, Google Code, BitBucket, et Launchpad.
119119

120120
go get github.com/astaxie/beedb
121121

122122
>Vous pouvez utiliser `go get -u` pour mettre à jour vos paquets distants, cela mettra aussi à jour les dépendances.
123123
124124
Vous obtiendrez le code source des paquets désirés grâce à cette commande, depuis différentes plate-formes, utilisant chacune leur système de gestion de version.
125-
Par exemple, `git` pour Github et `hg` pour Google Code. Ainsi vous devrez au préalable installer le client du système de gestion de version approprié
125+
Par exemple, `git` pour GitHub et `hg` pour Google Code. Ainsi vous devrez au préalable installer le client du système de gestion de version approprié
126126
avant d'utiliser`go get`.
127127

128128
Après avoir utilisé les commandes précédentes, votre structure de dossier devrait ressembler à celle-ci:

fr/01.3.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,13 @@ Ce dernier ne modifie pas vos fichiers source après formattage. `gofmt -w src`
6969

7070
## go get
7171

72-
Cette commande récupère des paquets distants. Sont supportés BitBucket, Github, Google Code et Launchpad.
72+
Cette commande récupère des paquets distants. Sont supportés BitBucket, GitHub, Google Code et Launchpad.
7373
Il se passe en fait deux choses à l'exécution de cette commande.
7474
En premier lieu, Go télécharge le code source, puis il exécute `go install`.
7575
Avant d'utiliser cette commande, assurez-vous d'installer les outils nécessaires.
7676

7777
BitBucket (Mercurial Git)
78-
Github (git)
78+
GitHub (git)
7979
Google Code (Git, Mercurial, Subversion)
8080
Launchpad (Bazaar)
8181

0 commit comments

Comments
 (0)