Commit Graph

143 Commits

Author SHA1 Message Date
Boris Verkhovskiy
3ea2b0b29f Remove email addresses 2024-05-31 12:18:45 -06:00
Boris Verkhovskiy
12ecedd4f5 Correct highlighted lanugages 2024-05-27 12:15:14 -06:00
Boris Verkhovskiy
797b965edd Fix empty links 2024-05-19 03:27:05 -06:00
Boris Verkhovskiy
04b39f5f49 [jquery/tr] fix filename 2024-05-17 00:10:51 -06:00
Boris Verkhovskiy
4f18651cb2 Remove unnecessary filenames 2024-05-17 00:08:47 -06:00
Kaan Kacar
14538c6fdd
[javascript/tr-tr] Javascript Documentation Translated into Turkish (#4667) 2024-05-13 03:01:27 -06:00
Boris Verkhovskiy
1924d58159 [python/*] proofread en and ru and all links 2024-04-26 01:48:54 -07:00
Boris Verkhovskiy
12cb60f1b7 spaces in code and link spans 2024-04-20 22:53:01 -07:00
Boris Verkhovskiy
c9f7d9a92c trailing newlines 2024-04-20 22:11:54 -07:00
Boris Verkhovskiy
f56f80dd80 [typescript/*] Use ts for typescript syntax 2024-04-19 04:34:47 -07:00
Boris Verkhovskiy
baf63b1f08 [typescript/*] remove dead links and format 2024-04-18 22:24:06 -07:00
luminist7
d5a2d6e37c Move OpenCV, OpenGL, p5, PyQT, Qt Framework, raylib to 'Framework' section. 2024-04-14 17:14:22 -06:00
Boris Verkhovskiy
7ecafce66f [python/tr-tr] add missing quote 2024-04-07 16:26:11 -07:00
Boris Verkhovskiy
0aceb41100 [python/*] remove feedback email request 2024-04-07 03:54:02 -07:00
Boris Verkhovskiy
3e687f1a8c Remove leading and trailing empty lines in code blocks 2024-04-06 08:33:50 -07:00
Boris Verkhovskiy
100fb0a740 iBooks -> Apple Books 2024-04-06 04:01:29 -07:00
Boris Verkhovskiy
f8475ed139 Github -> GitHub 2024-04-04 04:06:33 -07:00
Boris Verkhovskiy
818b8eec46 Convert \r\n to \n 2024-04-04 00:27:01 -07:00
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