Commit Graph

125 Commits

Author SHA1 Message Date
wang sy
5f941a4dee Fix broken 4clojure links 2023-01-14 13:42:05 +08:00
Marcel Ribeiro-Dantas
fad63f0f6a
Update c to upercase C 2022-08-01 22:41:54 +02:00
Marcel Ribeiro-Dantas
3e0a35ad37
Update c# to upercase C# 2022-08-01 22:40:55 +02:00
Marcel Ribeiro-Dantas
7f60e471fc
Update c++ to upercase C++ 2022-08-01 22:39:47 +02:00
Marcel Ribeiro Dantas, Ph.D
c1ec57ff83
Fix language name 2022-08-01 09:46:36 +02:00
Marcel Ribeiro Dantas, Ph.D
af834ad497
Fix filename extension for brainfuck file 2022-07-11 20:39:07 +02:00
Marcel Ribeiro-Dantas
a43b26041d
Remove GitGuy dead link from git material (close #4314) 2022-07-08 15:11:23 +02:00
Adam Bard
11520e91a1
Merge pull request #4007 from LeaveNhA/ruby/tr-tr
[ruby/tr-tr] Ruby Original Document in Turkish!
2020-09-05 18:15:20 -07:00
Adam Bard
4c4de64fa8
Update jquery-tr.html.markdown
Fix category/language
2020-09-05 18:12:32 -07:00
LeaveNhA
57396d0b8d Completed Ruby original Turkish document! 2020-09-04 00:23:03 +03:00
LeaveNhA
8001619999 jQuery Turkish document added. 2020-04-12 21:21:45 +03:00
Simon Shine
ae848c481f Python 3: Use 'filename: learnpython*.py' (no '3')
Before renaming, Python 3 filenames were 'learnpython3*.py'.

This commit removes the '3' part from the filename.

To verify that the filenames were named consistently across
translations prior to this commit, and to change this:

```
ack -H 'filename:' python.html.markdown
find . -name "python-*.markdown" -exec ack -H 'filename:' {} \;

sed -i 's/^filename: learnpython3/filename: learnpython/' \
  python.html.markdown

find . -name "python-*.markdown" -exec \
  sed -i 's/^filename: learnpython3/filename: learnpython/' {} \;
```
2020-02-12 07:04:42 +01:00
Simon Shine
887cbee8af Change 'filename:' for Python 2 (legacy)
Before renaming, all Python 2 filenames were 'learnpython-*.py'.

This commit renames them to 'learnpythonlegacy-*.py'.

To verify that the filenames were named consistently across
translations prior to this commit, and to change this:

```
find . -name "pythonlegacy*.markdown" -exec ack filename: {} \;

find . -name "pythonlegacy*.markdown" -exec \
  sed -i 's/^filename: learnpython/filename: learnpythonlegacy/' {} \;
```
2020-02-12 07:04:42 +01:00
Simon Shine
8f5fac9895 Python 3: 'language: Python'
Instead of listing 'language: python3' for Python 3, use

    language: Python

as #3450 does.

```
find . -iname "python-*.markdown" -exec \
  sed -i 's/language: python3/language: Python/' {} \;
```
2020-02-12 07:04:42 +01:00
Simon Shine
95c8b24ebf Python 2 'language': Python 2 (legacy)
Instead of listing 'language: python' for Python 2, use

    language: Python 2 (legacy)

```
find . -iname "*pythonlegacy*" -exec \
  sed -i 's/^language: .*/language: Python 2 (legacy)/' {} \;
```
2020-02-12 05:09:13 +01:00
Simon Shine
efe00fd06e Switch links: 'python3 <-> python' and 'python <-> pythonlegacy'
The list of references is exhausted by running 'ack docs/python'.
2020-02-12 05:03:08 +01:00
Simon Shine
a3b0585374 Rename Python 3 markdown files into 'python'
```
for f in $(find . -iname "*python3*" | grep -vE 'git'); do
  fnew=$(echo "$f" | sed 's/python3/python/')
  git mv "$f" "$fnew"
done
2020-02-12 04:54:36 +01:00
Simon Shine
1adab9bc3f Rename Python 2 markdown files into 'pythonlegacy'
```
for f in $(find . -iname "*python*" | grep -vE 'python3|git|statcomp'); do
  flegacy=$(echo "$f" | sed 's/python/pythonlegacy/')
  git mv "$f" "$flegacy"
done
```
2020-02-12 04:53:08 +01:00
Heitor Pascoal de Bittencourt
b06385dd12
[c/tr] Fix book link 2019-10-08 21:28:45 -03:00
Divay Prakash
c9d430ee09
Merge pull request #3609 from mtnylnky/master
Sql file added for Turkish
2019-08-21 12:14:46 +05:30
Seçkin Kükrer
c257831c3a [Edn/tr-tr] (#3607)
* Added EDN documentation in Turkish

* Contribution field added. Translation field added. Fixed file name.

* Contributor field fixed, again. Added lang meta information.
2019-08-21 12:04:19 +05:30
Seçkin Kükrer
8f32618224 [Clojure/tr-tr] Fix on Contributors field. (#3608)
* Added myself as a Contributor because this documentation is not just
translation. Thank you for notice!

* Same old pit-fall. 🤦
2019-08-20 12:15:22 +05:30
Metin Yalçınkaya
75d207ce17
Sql file added for Turkish
Sql file created and added for Turkish language
2019-08-17 16:06:03 +03:00
Adam Bard
8da73ee40b
Update clojure-tr.html.markdown 2019-02-10 15:56:03 -08:00
Andre Polykanine
895a0ed413
Merge pull request #3458 from sanindya-iiitd/patch-1
[python/all] Type correction for the output of math.sqrt()
2019-02-09 01:41:44 +02:00
Anindya Srivastava
9b5b5f6d31 Type correction for the output of math.sqrt() propagated across versions and languages 2019-02-06 07:31:34 +05:30
Divay Prakash
5a587d9f6c Fix typo in fix for #3461 2019-02-05 09:28:48 +05:30
Divay Prakash
efea8f8598 Fix #3461 2019-02-05 09:20:44 +05:30
Andre Polykanine
6d415fbece
[clojure/tr] Fix typo 2019-02-03 03:34:27 +02:00
LeaveNhA
4ca94611fb Fixes: removed forgotten lines, fix contributors area. 2019-02-01 10:33:52 +03:00
LeaveNhA
69c9cf3a66 Insert more examples, for different, simple perspective. 2019-01-21 17:40:29 +03:00
Nuri Akman
29f2f5a531 Dosya adı değiştirildi 2019-01-15 17:04:31 +03:00
Nuri Akman
9e22bbdf1a Düzeltmeler yapıldı 2019-01-15 16:35:38 +03:00
Kemal MUTLU
5aec515521 Turkish HTML file added. 2019-01-15 15:16:19 +03:00
Divay Prakash
15baa3ea4c
Merge pull request #3125 from BTaskaya/master
[tr/py3] Broken OOP Example Fixed
2018-10-24 11:40:21 +05:30
Divay Prakash
b4647a6eb3 Fix formatting errors 2018-10-14 06:23:58 +05:30
Divay Prakash
69dd941c17
Merge pull request #3296 from divayprakash/fix-links
[dynamic-programming] Fix links
2018-10-14 06:11:15 +05:30
Divay Prakash
8f2d9dcf83 Fix links 2018-10-14 06:09:03 +05:30
Divay Prakash
99618d394e Add new link from 2242ad7 2018-10-14 05:51:14 +05:30
Divay Prakash
0c1260369e Fix links and list styling 2018-10-14 05:37:43 +05:30
Divay Prakash
63924d02cc Add language code suffix (#3206) 2018-09-04 18:29:36 +05:30
Divay Prakash
4d9aff1d02 Add language code suffix (#3206) 2018-09-04 18:29:22 +05:30
root
afd18bd4ed Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs 2018-08-25 02:38:11 +00:00
Divay Prakash
330e30eda6 Fix build error in 'build/docs/tr-tr/markdown-tr/index.html' 2018-08-15 17:42:49 +05:30
root
6f2003a31f Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs 2018-08-02 04:08:30 +00:00
Adem Budak
1697484447
Fixed: Several typos 2018-06-20 02:54:22 +03:00
root
d2fb2730e6 Add lang to tr-tr 2018-06-15 06:17:34 +00:00
Adem Budak
4e48207b60 Merge branch 'master' of https://github.com/p1v0t/learnxinyminutes-docs 2018-06-04 01:44:59 +03:00
Adem Budak
41b64ee7de C++/tr
Turkish translation for C++ educational stuff
2018-06-04 01:43:09 +03:00
Adem Budak
5e0781e305
Update: credit added. 2018-06-03 18:25:50 +03:00