Al
b7a2d1f164
Translate object/contracts section (7)
2022-07-23 13:07:14 +02:00
Al
4a60cef189
Transalte branching and loop section (6)
2022-07-23 10:14:11 +02:00
Al
107ff5cadf
Translate modifiers section (5.C)
2022-07-22 22:27:23 +02:00
Al
51bef47831
Translate event section (5.B)
2022-07-22 22:01:48 +02:00
Al
e108748836
Translate function section (5.A)
2022-07-22 19:45:20 +02:00
Al
a94c428ff9
Translate global variables of note (4)
2022-07-21 15:40:20 +02:00
Al
bbef62f314
Translate simple operators (3)
2022-07-20 21:00:05 +02:00
Al
632cd0cd96
Translate structs (2)
2022-07-20 20:52:57 +02:00
Al
b887c1a5f7
Edit translator name
2022-07-19 15:32:39 +02:00
Al
fa5e509d43
Translate solidity basics (1) section
2022-07-19 15:28:28 +02:00
Al
7b47a23663
Translate bank example
2022-07-19 12:16:02 +02:00
Al
a35979214c
Fix line length
2022-07-19 11:54:15 +02:00
Al
a7ace9ee1f
Fix typo
2022-07-19 11:53:03 +02:00
Al
c8a397d103
Fix wrong "working with remix and metamask" section
2022-07-19 11:52:04 +02:00
Al
eabe2cfbce
Translate "working on a testnet" intro
2022-07-18 16:29:15 +02:00
Al
72cc375abc
Translate "working with remix and metamask" section
2022-07-18 16:27:30 +02:00
Al
358c299987
Translate Solidity introduction into italian
2022-07-18 16:26:09 +02:00
Mathias Schmitt
1e44bf3aba
[rust/it] fix italian translation.
2022-07-06 23:03:36 +02:00
Ay355
9552f2a1fe
[rust/all] Remove .iter() on array example ( #4230 )
...
As of Rust 1.53.0, arrays implement the IntoIterator trait, making .iter() on an array unnecessary
2021-11-01 22:27:42 +01:00
Petru Madar
0086b92f09
[ruby/all] Replace tryruby.org with the proper link ( #4217 )
...
* Replace tryruby.org with the proper link
* Replace tryruby.org with the proper link
2021-08-21 23:08:42 +02:00
Борис Верховский
a502f8d723
Rename OS X to macOS ( #4166 )
2021-05-25 13:42:50 +02:00
Adam Bard
d8c8755e5b
Merge pull request #3709 from chris54721/patch-2
...
[sql/it] Add sql-it.html.markdown
2020-05-19 09:00:47 -07:00
Adam Bard
f84a61e5a0
Merge pull request #3708 from chris54721/patch-1
...
[zfs/it] Add zfs-it.html.markdown
2020-05-19 09:00:22 -07:00
Adam Bard
0a0a40dc2d
Merge pull request #3856 from sshine/make-python3-default
...
[Python] Make Python 3 default
2020-02-13 22:00:05 -08:00
Leigh Brenecki
5864aba42d
Purge my deadname
2020-02-13 10:38:29 +10:30
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
Andrea Borruso
1b01d8c03f
piccola correzione di testo
2020-01-29 08:43:27 +01:00
Divay Prakash
d568151804
Merge pull request #3678 from neslinesli93/feature/fix_elixir_it
...
[elixir/it-it] Add section about pipes, and fix docs here and there
2020-01-11 14:05:58 +05:30
Christian Grasso
ad35bbd477
[sql/it] Add sql-it.html.markdown
2019-10-20 12:43:10 +02:00
Christian Grasso
1ba3aa9d91
[zfs/it] Add zfs-it.html.markdown
2019-10-20 12:23:38 +02:00
Tommaso
b7a5d8f8e0
Add section about pipes, and fix docs here and there for elixir/it-it
2019-10-05 21:30:24 +02:00
Tommaso
bcefaaf7b7
Add explanation of =~
and alias
inside bash/it-it
2019-10-05 21:19:37 +02:00
carl
edcfd31759
Tweak markdown to properly render html
2019-09-20 14:12:41 +10:00
Divay Prakash
11885877e7
Merge pull request #3508 from vinniec/master
...
[javascript/it-it] Create javascript-it.html.markdown
2019-08-04 14:24:44 +05:30
Divay Prakash
84886fad29
Update javascript-it.html.markdown
...
Fix YAML frontmatter
2019-08-04 14:22:44 +05:30
Daniele Megna
8c7aff32cc
[rust-it] fix struct name according below usage
2019-05-31 16:02:41 +02:00
Daniele Megna
98534da524
Fix typo in rust-it
2019-05-29 16:47:31 +02:00
vinniec
22a4106a47
Create javascript-it.html.markdown
...
Translated from the version 2570367
of 21 Jan
2019-03-30 02:10:08 +01: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
Paulo Moura
c0d134c2d9
Improve section on compiling and loading source files
2019-02-03 17:23:31 +00:00
Divay Prakash
f5b3d1c97c
YAML fixes ( #3400 )
2018-11-17 23:55:42 +05:30
Divay Prakash
8f5a671907
Merge pull request #3324 from chris54721/master
...
[typescript/it] Add typescript-it.html.markdown
2018-10-24 09:49:19 +05:30
Chris54721
f7d86067f1
[pcre/it] Add pcre-it.html.markdown
2018-10-23 23:07:41 +02:00