Skip to content

Commit c49624e

Browse files
authored
Merge pull request #1 from DjangoGirls/master
Sync
2 parents 018d4bc + a26bcda commit c49624e

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

en/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
## Introduction
88

9-
Have you ever felt that the world is more and more about technology and you are somehow left behind? Have you ever wondered how to create a website but have never had enough motivation to start? Have you ever thought that the software world is too complicated for you to even try doing something on your own?
9+
Have you ever felt that the world is more and more about technology to which you cannot (yet) relate? Have you ever wondered how to create a website but have never had enough motivation to start? Have you ever thought that the software world is too complicated for you to even try doing something on your own?
1010

1111
Well, we have good news for you! Programming is not as hard as it seems and we want to show you how fun it can be.
1212

es/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This tutorial has been translated from English into Spanish by a wonderful group
1313

1414
Bueno, ¡tenemos buenas noticias para ti! Programar no es tan difícil como aparenta y queremos mostrarte cuán divertido puede llegar a ser.
1515

16-
Este tutorial no te convertirá en programador mágicamente. Si quieres ser buena en esto, necesitarás meses o inclusos años de aprendizaje y práctica. Pero queremos mostrarte que programar o crear sitios web no es tan complicado como parece. Intentaremos explicar pequeñas partes lo mejor que podamos, de forma que no te sientas intimidada por la tecnología.
16+
Este tutorial no te convertirá en programador mágicamente. Si quieres ser buena en esto, necesitarás meses o incluso años de aprendizaje y práctica. Pero queremos mostrarte que programar o crear sitios web no es tan complicado como parece. Intentaremos explicar pequeñas partes lo mejor que podamos, de forma que no te sientas intimidada por la tecnología.
1717

1818
¡Esperamos poder hacerte amar la tecnología tanto como nosotras lo hacemos!
1919

tr/django_orm/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,9 @@ Ya da belki `baslik` alanında içinde 'Nefis' kelimesini içeren tüm gönderil
120120
Ayrıca yayınlanmış tüm gönderilerin bir listesini alabiliriz. Bunu geçmişte `yayinlanma_tarihi` alanı belirtilmiş tüm gönderileri filtreleyerek yapıyoruz:
121121

122122
```
123-
>>> from django.utils import timezone Post.objects.filter(yayinlanma_tarihi__lte=timezone.now()) []
123+
>>> from django.utils import timezone
124+
>>> Post.objects.filter(yayinlanma_tarihi__lte=timezone.now())
125+
>>> <QuerySet []>
124126
```
125127

126128
Maalesef, Python konsolundan eklediğimiz gönderi henüz yayınlanmadı. Bunu değiştirebiliriz! İlk olarak yayınlamak istediğimiz gönderinin bir örneğini alalım:

0 commit comments

Comments
 (0)