From a4e2797d8a3edf706262f36abcccdfbe7d8a161f Mon Sep 17 00:00:00 2001
From: Felipe de Morais
Date: Sat, 23 Jan 2016 17:09:11 -0200
Subject: [PATCH 1/5] Text improvements
---
pt/python_introduction/README.md | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
diff --git a/pt/python_introduction/README.md b/pt/python_introduction/README.md
index 06e176109b6..a059e544cbd 100755
--- a/pt/python_introduction/README.md
+++ b/pt/python_introduction/README.md
@@ -442,9 +442,9 @@ Para sair do interpretador Python que estamos usando, simplesmente digite o ~~~
$
-Isso vai colocá-lo no prompt de comando.
+Isso vai colocá-la no prompt de comando.
-Anteriormente, nós escolhemos um editor de código da seção do [editor de código][4]. Nós precisamos abrir o editor agora e escrever algum código em um novo arquivo:
+Anteriormente, nós escolhemos um editor de código da seção do [editor de código][4]. Nós precisamos abrir o editor agora e escrever algum código em um novo arquivo:
```python
print('Hello, Django girls!')
```
@@ -480,7 +480,7 @@ e, em seguida, usar o Python para executar o código no arquivo assim:
Hello, Django girls!
-Tudo bem! Você acabou de seu primeiro programa em python que foi salvo em um arquivo. Me sinto ótimo?
+Tudo bem! Você acabou de seu primeiro programa em python que foi salvo em um arquivo. Se sente ótima?
Você pode agora passar para uma ferramenta essencial na programação:
@@ -509,7 +509,7 @@ if 3 > 2:
print('It works!')
```
-Observe como podemos ter recuado a próxima linha de código por 4 espaços? Precisamos fazer isso para que Python sabe que código a ser executado se o código resulta em true. Você pode fazer um espaço, mas quase todos os programadores Python fazem com 4 para tornar as coisas um olhar puro. Um único tab também vai contar como 4 espaços.
+Observe como podemos ter recuado a próxima linha de código por 4 espaços? Precisamos fazer isso para que Python sabe que código a ser executado se o código resulta em True. Você pode fazer um espaço, mas quase todos os programadores Python fazem com 4 para tornar as coisas um olhar puro. Um único tab também vai contar como 4 espaços.
Salvá-lo e execute novamente:
@@ -523,15 +523,15 @@ Nos exemplos anteriores, o código foi executado somente quando as condições e
```python
if 5 > 2:
- print('5 is indeed greater than 2')
+ print('5 é realmente maior que 2')
else:
- print('5 is not greater than 2')
+ print('5 não é maior que 2')
```
Quando for executado irá imprimir:
$ python3 python_intro.py
- 5 e maior que 2
+ 5 é maior que 2
Se 2 for um número maior do que 5, então o segundo comando será executado. Fácil, né? Vamos ver como funciona o `elif`:
@@ -561,7 +561,7 @@ Nos últimos três exercícios você aprendeu:
* **comparar as coisas** - em Python, você pode comparar as coisas usando os operadores `>`, `>=`, `==`, `<=`, `<` e o `and`, `or`
* **Booleano** - um tipo de objeto que só tem um dos dois valores: `True` ou `False`
* **Salvando arquivos** - armazenamento de código em arquivos assim você pode executar programas maiores.
-* **if... elif... else**-instruções que permitem que você execute o código somente se determinadas condições forem atendidas.
+* **if... elif... else** - instruções que permitem que você execute o código somente se determinadas condições forem atendidas.
É hora da última parte deste capítulo!
@@ -581,7 +581,7 @@ hi()
Ok, nossa primeira função está pronta!
-Você pode se perguntar por que escrevemos o nome da função na parte inferior do arquivo. Isto é porque Python lê o arquivo e executa-lo de cima para baixo. Então, para usar a nossa função, temos re-escrevê-lo na parte inferior.
+Você pode se perguntar por que escrevemos o nome da função na parte inferior do arquivo. Isto é porque Python lê o arquivo e executa de cima para baixo. Então, para usar a nossa função, temos re-escrevê-lo na parte inferior.
Vamos executa-lo agora e ver o que acontece:
@@ -643,12 +643,12 @@ e executá-lo:
Hi Sonja!
-Agora, o que acha que vai acontecer se você escrever outro nome lá? (Não Ola ou Sonja) Experimentá-lo e ver se você está certo. Ele deve imprimir isto:
+Agora, o que acha que vai acontecer se você escrever outro nome lá? (Sem ser Ola ou Sonja) Experimentá-lo e ver se você está certo. Ele deve imprimir isto:
Hi anonymous!
-Isto é incrível, não? Dessa maneira você não precisa se repetir (DRY - don't repeat yourself) cada vez que for mudar o nome da pessoa que a função pretende cumprimentar. E é exatamente por isso que precisamos de funções - você nunca quer repetir seu código!
+Isto é incrível, não? Dessa maneira você não precisa se repetir (DRY - don't repeat yourself, ou em português, não se repita) cada vez que for mudar o nome da pessoa que a função pretende cumprimentar. E é exatamente por isso que precisamos de funções - você nunca quer repetir seu código!
Vamos fazer algo mais inteligente..--existem mais que dois nomes, e escrever uma condição para cada um seria difícil, certo?
@@ -738,7 +738,7 @@ Note que o segundo desses dois números não está incluído na lista que o Pyth
## Sumário
-É isso. **Você é totalmente demais!** Não é tão fácil, então você deve se sentir orgulhoso de si mesmo. Estamos definitivamente orgulhosos de você por ter chegado até aqui!
+É isso. **Você é totalmente demais!** Não é tão fácil, então você deve se sentir orgulhosa de si mesmo. Estamos definitivamente orgulhosas de você por ter chegado até aqui!
Talvez você queira brevemente fazer algo mais - espreguiçar, andar um pouco, descansar os olhos - antes de ir para o próximo capítulo. :)
From ded9a4d5389aacda1a865160cbf8dc845359fd1f Mon Sep 17 00:00:00 2001
From: malon
Date: Fri, 19 Feb 2016 12:05:05 -0300
Subject: [PATCH 2/5] Solved typo.
---
es/django_installation/README.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/es/django_installation/README.md b/es/django_installation/README.md
index 8a8d106c763..03d504b57e5 100755
--- a/es/django_installation/README.md
+++ b/es/django_installation/README.md
@@ -70,7 +70,7 @@ en OS X y Linux.
¡Recuerda reemplazar `myvenv` con tu nombre de `virtualenv` que hayas elegido!
-> **Nota:** a veces la `fuente` podría no estar disponible. En esos casos trata de hacerlo esto:
+> **Nota:** a veces la `fuente` podría no estar disponible. En esos casos trata de hacer esto:
>
> ~/djangogirls$ . myvenv/bin/activate
>
@@ -110,4 +110,4 @@ en Linux
> Si obtienes un error al correr pip en Ubuntu 12.04 ejecuta `python -m pip install- U - force-resintall pip` para arreglar la instalación de pip en el virtualenv.
-Eso es todo! Ahora estás listo (por fin) para crear una aplicación Django!
\ No newline at end of file
+Eso es todo! Ahora estás listo (por fin) para crear una aplicación Django!
From ef5dacedfe69dc45d68d9be902cde00cbd724744 Mon Sep 17 00:00:00 2001
From: Felipe de Morais
Date: Sat, 20 Feb 2016 23:25:34 -0200
Subject: [PATCH 3/5] Fix the changes based on @annanda suggestions.
---
pt/python_introduction/README.md | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/pt/python_introduction/README.md b/pt/python_introduction/README.md
index a059e544cbd..e6eb5ff49da 100755
--- a/pt/python_introduction/README.md
+++ b/pt/python_introduction/README.md
@@ -508,8 +508,7 @@ Python espera que fornecemos mais instruções que serão supostamente executada
if 3 > 2:
print('It works!')
```
-
-Observe como podemos ter recuado a próxima linha de código por 4 espaços? Precisamos fazer isso para que Python sabe que código a ser executado se o código resulta em True. Você pode fazer um espaço, mas quase todos os programadores Python fazem com 4 para tornar as coisas um olhar puro. Um único tab também vai contar como 4 espaços.
+Você percebeu que identamos a próxima linha com 4 espaços? Precisamos fazer isso para que o Python saiba qual código será executado se o resultado for True. Você pode fazer com 1 espaço, mas quase todos os programadores Python fazem com 4 para deixar as coisas arrumadas. Um único tab também vai contar como 4 espaços.
Salvá-lo e execute novamente:
@@ -531,7 +530,7 @@ else:
Quando for executado irá imprimir:
$ python3 python_intro.py
- 5 é maior que 2
+ 5 é realmente maior que 2
Se 2 for um número maior do que 5, então o segundo comando será executado. Fácil, né? Vamos ver como funciona o `elif`:
@@ -738,7 +737,7 @@ Note que o segundo desses dois números não está incluído na lista que o Pyth
## Sumário
-É isso. **Você é totalmente demais!** Não é tão fácil, então você deve se sentir orgulhosa de si mesmo. Estamos definitivamente orgulhosas de você por ter chegado até aqui!
+É isso. **Você é totalmente demais!** Não é tão fácil, então você deve se sentir orgulhosa de si mesma. Estamos definitivamente orgulhosas de você por ter chegado até aqui!
Talvez você queira brevemente fazer algo mais - espreguiçar, andar um pouco, descansar os olhos - antes de ir para o próximo capítulo. :)
From d58769a00ac0395ff5949eb4368a61b42fbcfd26 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ehrlich?=
Date: Thu, 25 Feb 2016 08:44:13 +0100
Subject: [PATCH 4/5] Change lang code of Czech language according to iso.
---
LANGS.md | 2 +-
{cz => cs}/GLOSSARY.md | 0
{cz => cs}/README.md | 0
{cz => cs}/SUMMARY.md | 0
{cz => cs}/code_editor/README.md | 0
{cz => cs}/code_editor/instructions.md | 0
{cz => cs}/css/README.md | 0
{cz => cs}/css/images/bootstrap1.png | Bin
{cz => cs}/css/images/color2.png | Bin
{cz => cs}/css/images/final.png | Bin
{cz => cs}/css/images/font.png | Bin
{cz => cs}/css/images/margin2.png | Bin
{cz => cs}/deploy/README.md | 0
.../images/github_get_repo_url_screenshot.png | Bin
{cz => cs}/deploy/images/new_github_repo.png | Bin
.../images/pythonanywhere_web_tab_virtualenv.png | Bin
{cz => cs}/deploy/install_git.md | 0
{cz => cs}/deploy/signup_pythonanywhere.md | 0
{cz => cs}/django/README.md | 0
{cz => cs}/django_admin/README.md | 0
{cz => cs}/django_admin/images/django_admin3.png | Bin
{cz => cs}/django_admin/images/edit_post3.png | Bin
{cz => cs}/django_admin/images/login_page2.png | Bin
{cz => cs}/django_forms/README.md | 0
{cz => cs}/django_forms/images/csrf2.png | Bin
{cz => cs}/django_forms/images/drafts.png | Bin
{cz => cs}/django_forms/images/edit_button2.png | Bin
{cz => cs}/django_forms/images/edit_form2.png | Bin
{cz => cs}/django_forms/images/form_validation2.png | Bin
{cz => cs}/django_forms/images/new_form2.png | Bin
.../django_forms/images/post_create_error.png | Bin
{cz => cs}/django_installation/README.md | 0
{cz => cs}/django_installation/instructions.md | 0
{cz => cs}/django_models/README.md | 0
{cz => cs}/django_orm/README.md | 0
{cz => cs}/django_start_project/README.md | 0
.../django_start_project/images/it_worked2.png | Bin
{cz => cs}/django_templates/README.md | 0
{cz => cs}/django_templates/images/donut.png | Bin
{cz => cs}/django_templates/images/step1.png | Bin
{cz => cs}/django_templates/images/step2.png | Bin
{cz => cs}/django_templates/images/step3.png | Bin
{cz => cs}/django_urls/README.md | 0
{cz => cs}/django_urls/images/error1.png | Bin
{cz => cs}/django_urls/images/url.png | Bin
{cz => cs}/django_views/README.md | 0
{cz => cs}/django_views/images/error.png | Bin
{cz => cs}/domain/README.md | 0
{cz => cs}/dynamic_data_in_templates/README.md | 0
{cz => cs}/extend_your_application/README.md | 0
{cz => cs}/extend_your_application/images/404_2.png | Bin
.../images/attribute_error2.png | Bin
.../images/does_not_exist2.png | Bin
.../images/no_reverse_match2.png | Bin
.../extend_your_application/images/post_detail2.png | Bin
.../extend_your_application/images/post_list2.png | Bin
.../images/template_does_not_exist2.png | Bin
{cz => cs}/how_the_internet_works/README.md | 0
.../how_the_internet_works/images/internet_1.png | Bin
.../how_the_internet_works/images/internet_2.png | Bin
.../how_the_internet_works/images/internet_3.png | Bin
.../how_the_internet_works/images/internet_4.png | Bin
{cz => cs}/html/README.md | 0
{cz => cs}/html/images/step1.png | Bin
{cz => cs}/html/images/step3.png | Bin
{cz => cs}/html/images/step4.png | Bin
{cz => cs}/html/images/step6.png | Bin
{cz => cs}/images/application.png | Bin
{cz => cs}/installation/README.md | 0
{cz => cs}/intro_to_command_line/README.md | 0
{cz => cs}/python_installation/README.md | 0
.../images/add_python_to_windows_path.png | Bin
{cz => cs}/python_installation/instructions.md | 0
{cz => cs}/python_introduction/README.md | 0
{cz => cs}/python_introduction/images/cupcake.png | Bin
{cz => cs}/template_extending/README.md | 0
{cz => cs}/whats_next/README.md | 0
77 files changed, 1 insertion(+), 1 deletion(-)
rename {cz => cs}/GLOSSARY.md (100%)
rename {cz => cs}/README.md (100%)
rename {cz => cs}/SUMMARY.md (100%)
rename {cz => cs}/code_editor/README.md (100%)
rename {cz => cs}/code_editor/instructions.md (100%)
rename {cz => cs}/css/README.md (100%)
rename {cz => cs}/css/images/bootstrap1.png (100%)
rename {cz => cs}/css/images/color2.png (100%)
rename {cz => cs}/css/images/final.png (100%)
rename {cz => cs}/css/images/font.png (100%)
rename {cz => cs}/css/images/margin2.png (100%)
rename {cz => cs}/deploy/README.md (100%)
rename {cz => cs}/deploy/images/github_get_repo_url_screenshot.png (100%)
rename {cz => cs}/deploy/images/new_github_repo.png (100%)
rename {cz => cs}/deploy/images/pythonanywhere_web_tab_virtualenv.png (100%)
rename {cz => cs}/deploy/install_git.md (100%)
rename {cz => cs}/deploy/signup_pythonanywhere.md (100%)
rename {cz => cs}/django/README.md (100%)
rename {cz => cs}/django_admin/README.md (100%)
rename {cz => cs}/django_admin/images/django_admin3.png (100%)
rename {cz => cs}/django_admin/images/edit_post3.png (100%)
rename {cz => cs}/django_admin/images/login_page2.png (100%)
rename {cz => cs}/django_forms/README.md (100%)
rename {cz => cs}/django_forms/images/csrf2.png (100%)
rename {cz => cs}/django_forms/images/drafts.png (100%)
rename {cz => cs}/django_forms/images/edit_button2.png (100%)
rename {cz => cs}/django_forms/images/edit_form2.png (100%)
rename {cz => cs}/django_forms/images/form_validation2.png (100%)
rename {cz => cs}/django_forms/images/new_form2.png (100%)
rename {cz => cs}/django_forms/images/post_create_error.png (100%)
rename {cz => cs}/django_installation/README.md (100%)
rename {cz => cs}/django_installation/instructions.md (100%)
rename {cz => cs}/django_models/README.md (100%)
rename {cz => cs}/django_orm/README.md (100%)
rename {cz => cs}/django_start_project/README.md (100%)
rename {cz => cs}/django_start_project/images/it_worked2.png (100%)
rename {cz => cs}/django_templates/README.md (100%)
rename {cz => cs}/django_templates/images/donut.png (100%)
rename {cz => cs}/django_templates/images/step1.png (100%)
rename {cz => cs}/django_templates/images/step2.png (100%)
rename {cz => cs}/django_templates/images/step3.png (100%)
rename {cz => cs}/django_urls/README.md (100%)
rename {cz => cs}/django_urls/images/error1.png (100%)
rename {cz => cs}/django_urls/images/url.png (100%)
rename {cz => cs}/django_views/README.md (100%)
rename {cz => cs}/django_views/images/error.png (100%)
rename {cz => cs}/domain/README.md (100%)
rename {cz => cs}/dynamic_data_in_templates/README.md (100%)
rename {cz => cs}/extend_your_application/README.md (100%)
rename {cz => cs}/extend_your_application/images/404_2.png (100%)
rename {cz => cs}/extend_your_application/images/attribute_error2.png (100%)
rename {cz => cs}/extend_your_application/images/does_not_exist2.png (100%)
rename {cz => cs}/extend_your_application/images/no_reverse_match2.png (100%)
rename {cz => cs}/extend_your_application/images/post_detail2.png (100%)
rename {cz => cs}/extend_your_application/images/post_list2.png (100%)
rename {cz => cs}/extend_your_application/images/template_does_not_exist2.png (100%)
rename {cz => cs}/how_the_internet_works/README.md (100%)
rename {cz => cs}/how_the_internet_works/images/internet_1.png (100%)
rename {cz => cs}/how_the_internet_works/images/internet_2.png (100%)
rename {cz => cs}/how_the_internet_works/images/internet_3.png (100%)
rename {cz => cs}/how_the_internet_works/images/internet_4.png (100%)
rename {cz => cs}/html/README.md (100%)
rename {cz => cs}/html/images/step1.png (100%)
rename {cz => cs}/html/images/step3.png (100%)
rename {cz => cs}/html/images/step4.png (100%)
rename {cz => cs}/html/images/step6.png (100%)
rename {cz => cs}/images/application.png (100%)
rename {cz => cs}/installation/README.md (100%)
rename {cz => cs}/intro_to_command_line/README.md (100%)
rename {cz => cs}/python_installation/README.md (100%)
rename {cz => cs}/python_installation/images/add_python_to_windows_path.png (100%)
rename {cz => cs}/python_installation/instructions.md (100%)
rename {cz => cs}/python_introduction/README.md (100%)
rename {cz => cs}/python_introduction/images/cupcake.png (100%)
rename {cz => cs}/template_extending/README.md (100%)
rename {cz => cs}/whats_next/README.md (100%)
diff --git a/LANGS.md b/LANGS.md
index 8049dd704e0..4ced7424859 100644
--- a/LANGS.md
+++ b/LANGS.md
@@ -10,4 +10,4 @@
* [Italian (beta)](it)
* [Magyar (beta)](hu)
* [Türkçe (beta)](tr)
-* [Czech (beta)](cz)
+* [Czech (beta)](cs)
diff --git a/cz/GLOSSARY.md b/cs/GLOSSARY.md
similarity index 100%
rename from cz/GLOSSARY.md
rename to cs/GLOSSARY.md
diff --git a/cz/README.md b/cs/README.md
similarity index 100%
rename from cz/README.md
rename to cs/README.md
diff --git a/cz/SUMMARY.md b/cs/SUMMARY.md
similarity index 100%
rename from cz/SUMMARY.md
rename to cs/SUMMARY.md
diff --git a/cz/code_editor/README.md b/cs/code_editor/README.md
similarity index 100%
rename from cz/code_editor/README.md
rename to cs/code_editor/README.md
diff --git a/cz/code_editor/instructions.md b/cs/code_editor/instructions.md
similarity index 100%
rename from cz/code_editor/instructions.md
rename to cs/code_editor/instructions.md
diff --git a/cz/css/README.md b/cs/css/README.md
similarity index 100%
rename from cz/css/README.md
rename to cs/css/README.md
diff --git a/cz/css/images/bootstrap1.png b/cs/css/images/bootstrap1.png
similarity index 100%
rename from cz/css/images/bootstrap1.png
rename to cs/css/images/bootstrap1.png
diff --git a/cz/css/images/color2.png b/cs/css/images/color2.png
similarity index 100%
rename from cz/css/images/color2.png
rename to cs/css/images/color2.png
diff --git a/cz/css/images/final.png b/cs/css/images/final.png
similarity index 100%
rename from cz/css/images/final.png
rename to cs/css/images/final.png
diff --git a/cz/css/images/font.png b/cs/css/images/font.png
similarity index 100%
rename from cz/css/images/font.png
rename to cs/css/images/font.png
diff --git a/cz/css/images/margin2.png b/cs/css/images/margin2.png
similarity index 100%
rename from cz/css/images/margin2.png
rename to cs/css/images/margin2.png
diff --git a/cz/deploy/README.md b/cs/deploy/README.md
similarity index 100%
rename from cz/deploy/README.md
rename to cs/deploy/README.md
diff --git a/cz/deploy/images/github_get_repo_url_screenshot.png b/cs/deploy/images/github_get_repo_url_screenshot.png
similarity index 100%
rename from cz/deploy/images/github_get_repo_url_screenshot.png
rename to cs/deploy/images/github_get_repo_url_screenshot.png
diff --git a/cz/deploy/images/new_github_repo.png b/cs/deploy/images/new_github_repo.png
similarity index 100%
rename from cz/deploy/images/new_github_repo.png
rename to cs/deploy/images/new_github_repo.png
diff --git a/cz/deploy/images/pythonanywhere_web_tab_virtualenv.png b/cs/deploy/images/pythonanywhere_web_tab_virtualenv.png
similarity index 100%
rename from cz/deploy/images/pythonanywhere_web_tab_virtualenv.png
rename to cs/deploy/images/pythonanywhere_web_tab_virtualenv.png
diff --git a/cz/deploy/install_git.md b/cs/deploy/install_git.md
similarity index 100%
rename from cz/deploy/install_git.md
rename to cs/deploy/install_git.md
diff --git a/cz/deploy/signup_pythonanywhere.md b/cs/deploy/signup_pythonanywhere.md
similarity index 100%
rename from cz/deploy/signup_pythonanywhere.md
rename to cs/deploy/signup_pythonanywhere.md
diff --git a/cz/django/README.md b/cs/django/README.md
similarity index 100%
rename from cz/django/README.md
rename to cs/django/README.md
diff --git a/cz/django_admin/README.md b/cs/django_admin/README.md
similarity index 100%
rename from cz/django_admin/README.md
rename to cs/django_admin/README.md
diff --git a/cz/django_admin/images/django_admin3.png b/cs/django_admin/images/django_admin3.png
similarity index 100%
rename from cz/django_admin/images/django_admin3.png
rename to cs/django_admin/images/django_admin3.png
diff --git a/cz/django_admin/images/edit_post3.png b/cs/django_admin/images/edit_post3.png
similarity index 100%
rename from cz/django_admin/images/edit_post3.png
rename to cs/django_admin/images/edit_post3.png
diff --git a/cz/django_admin/images/login_page2.png b/cs/django_admin/images/login_page2.png
similarity index 100%
rename from cz/django_admin/images/login_page2.png
rename to cs/django_admin/images/login_page2.png
diff --git a/cz/django_forms/README.md b/cs/django_forms/README.md
similarity index 100%
rename from cz/django_forms/README.md
rename to cs/django_forms/README.md
diff --git a/cz/django_forms/images/csrf2.png b/cs/django_forms/images/csrf2.png
similarity index 100%
rename from cz/django_forms/images/csrf2.png
rename to cs/django_forms/images/csrf2.png
diff --git a/cz/django_forms/images/drafts.png b/cs/django_forms/images/drafts.png
similarity index 100%
rename from cz/django_forms/images/drafts.png
rename to cs/django_forms/images/drafts.png
diff --git a/cz/django_forms/images/edit_button2.png b/cs/django_forms/images/edit_button2.png
similarity index 100%
rename from cz/django_forms/images/edit_button2.png
rename to cs/django_forms/images/edit_button2.png
diff --git a/cz/django_forms/images/edit_form2.png b/cs/django_forms/images/edit_form2.png
similarity index 100%
rename from cz/django_forms/images/edit_form2.png
rename to cs/django_forms/images/edit_form2.png
diff --git a/cz/django_forms/images/form_validation2.png b/cs/django_forms/images/form_validation2.png
similarity index 100%
rename from cz/django_forms/images/form_validation2.png
rename to cs/django_forms/images/form_validation2.png
diff --git a/cz/django_forms/images/new_form2.png b/cs/django_forms/images/new_form2.png
similarity index 100%
rename from cz/django_forms/images/new_form2.png
rename to cs/django_forms/images/new_form2.png
diff --git a/cz/django_forms/images/post_create_error.png b/cs/django_forms/images/post_create_error.png
similarity index 100%
rename from cz/django_forms/images/post_create_error.png
rename to cs/django_forms/images/post_create_error.png
diff --git a/cz/django_installation/README.md b/cs/django_installation/README.md
similarity index 100%
rename from cz/django_installation/README.md
rename to cs/django_installation/README.md
diff --git a/cz/django_installation/instructions.md b/cs/django_installation/instructions.md
similarity index 100%
rename from cz/django_installation/instructions.md
rename to cs/django_installation/instructions.md
diff --git a/cz/django_models/README.md b/cs/django_models/README.md
similarity index 100%
rename from cz/django_models/README.md
rename to cs/django_models/README.md
diff --git a/cz/django_orm/README.md b/cs/django_orm/README.md
similarity index 100%
rename from cz/django_orm/README.md
rename to cs/django_orm/README.md
diff --git a/cz/django_start_project/README.md b/cs/django_start_project/README.md
similarity index 100%
rename from cz/django_start_project/README.md
rename to cs/django_start_project/README.md
diff --git a/cz/django_start_project/images/it_worked2.png b/cs/django_start_project/images/it_worked2.png
similarity index 100%
rename from cz/django_start_project/images/it_worked2.png
rename to cs/django_start_project/images/it_worked2.png
diff --git a/cz/django_templates/README.md b/cs/django_templates/README.md
similarity index 100%
rename from cz/django_templates/README.md
rename to cs/django_templates/README.md
diff --git a/cz/django_templates/images/donut.png b/cs/django_templates/images/donut.png
similarity index 100%
rename from cz/django_templates/images/donut.png
rename to cs/django_templates/images/donut.png
diff --git a/cz/django_templates/images/step1.png b/cs/django_templates/images/step1.png
similarity index 100%
rename from cz/django_templates/images/step1.png
rename to cs/django_templates/images/step1.png
diff --git a/cz/django_templates/images/step2.png b/cs/django_templates/images/step2.png
similarity index 100%
rename from cz/django_templates/images/step2.png
rename to cs/django_templates/images/step2.png
diff --git a/cz/django_templates/images/step3.png b/cs/django_templates/images/step3.png
similarity index 100%
rename from cz/django_templates/images/step3.png
rename to cs/django_templates/images/step3.png
diff --git a/cz/django_urls/README.md b/cs/django_urls/README.md
similarity index 100%
rename from cz/django_urls/README.md
rename to cs/django_urls/README.md
diff --git a/cz/django_urls/images/error1.png b/cs/django_urls/images/error1.png
similarity index 100%
rename from cz/django_urls/images/error1.png
rename to cs/django_urls/images/error1.png
diff --git a/cz/django_urls/images/url.png b/cs/django_urls/images/url.png
similarity index 100%
rename from cz/django_urls/images/url.png
rename to cs/django_urls/images/url.png
diff --git a/cz/django_views/README.md b/cs/django_views/README.md
similarity index 100%
rename from cz/django_views/README.md
rename to cs/django_views/README.md
diff --git a/cz/django_views/images/error.png b/cs/django_views/images/error.png
similarity index 100%
rename from cz/django_views/images/error.png
rename to cs/django_views/images/error.png
diff --git a/cz/domain/README.md b/cs/domain/README.md
similarity index 100%
rename from cz/domain/README.md
rename to cs/domain/README.md
diff --git a/cz/dynamic_data_in_templates/README.md b/cs/dynamic_data_in_templates/README.md
similarity index 100%
rename from cz/dynamic_data_in_templates/README.md
rename to cs/dynamic_data_in_templates/README.md
diff --git a/cz/extend_your_application/README.md b/cs/extend_your_application/README.md
similarity index 100%
rename from cz/extend_your_application/README.md
rename to cs/extend_your_application/README.md
diff --git a/cz/extend_your_application/images/404_2.png b/cs/extend_your_application/images/404_2.png
similarity index 100%
rename from cz/extend_your_application/images/404_2.png
rename to cs/extend_your_application/images/404_2.png
diff --git a/cz/extend_your_application/images/attribute_error2.png b/cs/extend_your_application/images/attribute_error2.png
similarity index 100%
rename from cz/extend_your_application/images/attribute_error2.png
rename to cs/extend_your_application/images/attribute_error2.png
diff --git a/cz/extend_your_application/images/does_not_exist2.png b/cs/extend_your_application/images/does_not_exist2.png
similarity index 100%
rename from cz/extend_your_application/images/does_not_exist2.png
rename to cs/extend_your_application/images/does_not_exist2.png
diff --git a/cz/extend_your_application/images/no_reverse_match2.png b/cs/extend_your_application/images/no_reverse_match2.png
similarity index 100%
rename from cz/extend_your_application/images/no_reverse_match2.png
rename to cs/extend_your_application/images/no_reverse_match2.png
diff --git a/cz/extend_your_application/images/post_detail2.png b/cs/extend_your_application/images/post_detail2.png
similarity index 100%
rename from cz/extend_your_application/images/post_detail2.png
rename to cs/extend_your_application/images/post_detail2.png
diff --git a/cz/extend_your_application/images/post_list2.png b/cs/extend_your_application/images/post_list2.png
similarity index 100%
rename from cz/extend_your_application/images/post_list2.png
rename to cs/extend_your_application/images/post_list2.png
diff --git a/cz/extend_your_application/images/template_does_not_exist2.png b/cs/extend_your_application/images/template_does_not_exist2.png
similarity index 100%
rename from cz/extend_your_application/images/template_does_not_exist2.png
rename to cs/extend_your_application/images/template_does_not_exist2.png
diff --git a/cz/how_the_internet_works/README.md b/cs/how_the_internet_works/README.md
similarity index 100%
rename from cz/how_the_internet_works/README.md
rename to cs/how_the_internet_works/README.md
diff --git a/cz/how_the_internet_works/images/internet_1.png b/cs/how_the_internet_works/images/internet_1.png
similarity index 100%
rename from cz/how_the_internet_works/images/internet_1.png
rename to cs/how_the_internet_works/images/internet_1.png
diff --git a/cz/how_the_internet_works/images/internet_2.png b/cs/how_the_internet_works/images/internet_2.png
similarity index 100%
rename from cz/how_the_internet_works/images/internet_2.png
rename to cs/how_the_internet_works/images/internet_2.png
diff --git a/cz/how_the_internet_works/images/internet_3.png b/cs/how_the_internet_works/images/internet_3.png
similarity index 100%
rename from cz/how_the_internet_works/images/internet_3.png
rename to cs/how_the_internet_works/images/internet_3.png
diff --git a/cz/how_the_internet_works/images/internet_4.png b/cs/how_the_internet_works/images/internet_4.png
similarity index 100%
rename from cz/how_the_internet_works/images/internet_4.png
rename to cs/how_the_internet_works/images/internet_4.png
diff --git a/cz/html/README.md b/cs/html/README.md
similarity index 100%
rename from cz/html/README.md
rename to cs/html/README.md
diff --git a/cz/html/images/step1.png b/cs/html/images/step1.png
similarity index 100%
rename from cz/html/images/step1.png
rename to cs/html/images/step1.png
diff --git a/cz/html/images/step3.png b/cs/html/images/step3.png
similarity index 100%
rename from cz/html/images/step3.png
rename to cs/html/images/step3.png
diff --git a/cz/html/images/step4.png b/cs/html/images/step4.png
similarity index 100%
rename from cz/html/images/step4.png
rename to cs/html/images/step4.png
diff --git a/cz/html/images/step6.png b/cs/html/images/step6.png
similarity index 100%
rename from cz/html/images/step6.png
rename to cs/html/images/step6.png
diff --git a/cz/images/application.png b/cs/images/application.png
similarity index 100%
rename from cz/images/application.png
rename to cs/images/application.png
diff --git a/cz/installation/README.md b/cs/installation/README.md
similarity index 100%
rename from cz/installation/README.md
rename to cs/installation/README.md
diff --git a/cz/intro_to_command_line/README.md b/cs/intro_to_command_line/README.md
similarity index 100%
rename from cz/intro_to_command_line/README.md
rename to cs/intro_to_command_line/README.md
diff --git a/cz/python_installation/README.md b/cs/python_installation/README.md
similarity index 100%
rename from cz/python_installation/README.md
rename to cs/python_installation/README.md
diff --git a/cz/python_installation/images/add_python_to_windows_path.png b/cs/python_installation/images/add_python_to_windows_path.png
similarity index 100%
rename from cz/python_installation/images/add_python_to_windows_path.png
rename to cs/python_installation/images/add_python_to_windows_path.png
diff --git a/cz/python_installation/instructions.md b/cs/python_installation/instructions.md
similarity index 100%
rename from cz/python_installation/instructions.md
rename to cs/python_installation/instructions.md
diff --git a/cz/python_introduction/README.md b/cs/python_introduction/README.md
similarity index 100%
rename from cz/python_introduction/README.md
rename to cs/python_introduction/README.md
diff --git a/cz/python_introduction/images/cupcake.png b/cs/python_introduction/images/cupcake.png
similarity index 100%
rename from cz/python_introduction/images/cupcake.png
rename to cs/python_introduction/images/cupcake.png
diff --git a/cz/template_extending/README.md b/cs/template_extending/README.md
similarity index 100%
rename from cz/template_extending/README.md
rename to cs/template_extending/README.md
diff --git a/cz/whats_next/README.md b/cs/whats_next/README.md
similarity index 100%
rename from cz/whats_next/README.md
rename to cs/whats_next/README.md
From 4dffe1e122442b005d00050a2c22f2b42cef297a Mon Sep 17 00:00:00 2001
From: Anna Warzecha
Date: Fri, 26 Feb 2016 00:10:04 +0100
Subject: [PATCH 5/5] Added language chooser to dinamically change language of
a subpage you're on
---
book.json | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff --git a/book.json b/book.json
index b2a0d0adf12..b28f9719fbc 100644
--- a/book.json
+++ b/book.json
@@ -1,12 +1,13 @@
{
+ "gitbook": "2.x.x",
"links": {
"sidebar": {
"Need help? Talk to us!": "https://gitter.im/DjangoGirls/tutorial"
}
},
-
"plugins": [
- "heading-anchors@1.0.3", "ga@1.0.1", "richquotes@0.0.7", "github@2.0.0"
+ "heading-anchors@1.0.3", "ga@1.0.1", "richquotes@0.0.7",
+ "github@2.0.0", "language-picker"
],
"pluginsConfig": {
"ga": {
@@ -17,8 +18,9 @@
},
"github": {
"url": "https://github.com/DjangoGirls/tutorial"
+ },
+ "language-picker": {
+ "grid-columns": 3
}
- },
-
- "gitbook": "2.6.7"
+ }
}