Commit Graph

235 Commits

Author SHA1 Message Date
Al
39e0b12b15 Improve translation and readability 2022-07-24 12:24:04 +02:00
Al
ae73cdf65d Fix typos 2022-07-24 12:19:50 +02:00
Al
ff641c107d Translate links section (last one) 2022-07-24 00:24:45 +02:00
Al
43f49745a9 Translate natspec comments section (14) 2022-07-24 00:04:27 +02:00
Al
d6a94448f3 Translate style notes section (13) 2022-07-23 23:58:34 +02:00
Al
16a8f0a12b Translate low level functions section (12) 2022-07-23 23:50:24 +02:00
Al
af2ee86bce Translate security section (11) 2022-07-23 23:41:07 +02:00
Al
75f4c4c143 Translate other native functions (10) 2022-07-23 23:32:48 +02:00
Al
d0c0040f81 Translate state machines section (9.G) 2022-07-23 23:11:26 +02:00
Al
dde96818dc Translate pattern observer (9.F) 2022-07-23 20:30:30 +02:00
Al
118bda3ead Translate cron job section (9.E) 2022-07-23 19:59:50 +02:00
Al
bd0a424a86 Translate oracles and external data section (9.D) 2022-07-23 19:51:17 +02:00
Al
a61887efd6 Translate data access in blockchain section (9.C) 2022-07-23 18:52:35 +02:00
Al
4a96407ff6 Translate storage design notes section (9.B) 2022-07-23 13:54:02 +02:00
Al
0d2ba7e26f Translate obfruscation section (9.A) 2022-07-23 13:34:07 +02:00
Al
2a459d3a66 Translate other keyword section (8) 2022-07-23 13:09:49 +02:00
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
Chris54721
a516d9a375 [typescript/it] Add language spec line 2018-10-23 22:35:48 +02:00
Chris54721
f7fb113ba5 [it/it] Add typescript-it.html.markdown 2018-10-22 23:51:31 +02:00
abonte
99cd64ed04 fix typos and accent marks 2018-10-18 19:34:03 +02:00
bonte
7a88501d52 small change 2018-10-14 12:04:44 +02:00
bonte
61dc8ca784 add translator 2018-10-14 12:00:21 +02:00
bonte
60377c4ee1 cut lines over 80 chars 2018-10-14 11:48:16 +02:00
bonte
e3ae8a048f add translation [ruby/it] 2018-10-14 11:31:47 +02:00
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
494eb90fca Fix links 2018-10-14 06:05:25 +05:30
Divay Prakash
99618d394e Add new link from 2242ad7 2018-10-14 05:51:14 +05:30
Divay Prakash
4de5670652 Fix links and list styling 2018-10-14 05:34:24 +05:30
Chris54721
3388a561e5 [toml/it] Add it-IT translation for TOML 2018-10-13 18:23:31 +02:00
Divay Prakash
398054ceb0
Merge pull request #3287 from Ale46/dynamic-programming-it
[dynamic-programming/it-IT] Add italian language for dynamic-programming
2018-10-13 19:50:08 +05:30
Divay Prakash
3f4f11981b
Merge pull request #3288 from Ale46/qt-it
[qt/it-IT] Add italian language for qt
2018-10-13 19:48:43 +05:30
Divay Prakash
44976d384e
Merge pull request #3289 from Ale46/asciidoc-it
[asciidoc/it-IT] Add italian language for asciidoc
2018-10-13 19:42:46 +05:30
Divay Prakash
ca51912b9d
Merge pull request #3290 from Ale46/pyqt-it
[pyqt/it-IT] Add italian language for pyqt
2018-10-13 19:39:06 +05:30
Ale46
b3586510e2
[pyqt/it-IT] Add italian language for pyqt 2018-10-13 15:05:32 +02:00
Ale46
e2c7caff58
[asciidoc/it-IT] Add italian language for asciidoc 2018-10-13 15:04:56 +02:00
Ale46
78f6def56f
[jquery/it-IT] Add italian language for jquery 2018-10-13 15:04:20 +02:00
Ale46
50ebfcc340
[dynamic-programming/it-IT] Add italian language for dynamic-programming 2018-10-13 15:03:42 +02:00
Ale46
2c5f56394a
[qt/it-IT] Add italian language for qt 2018-10-13 15:03:07 +02:00
Divay Prakash
1c8781a88d
Merge pull request #3280 from neslinesli93/update-html-italian
[html/it-it] Add info about html MIME type and fix #3074
2018-10-11 14:55:12 +05:30
Tommaso
576c9a33b6 [html/it-it] Add info about html MIME type and fix #3074 2018-10-10 22:29:03 +02:00
Tommaso
1ba29fe5bd [go/it-it] Fix defer wording, as shown in ff06f9cf99 2018-10-10 22:22:33 +02:00
0u0
130cacf7bf it-it fix #3054 2018-08-30 19:01:57 +08:00
Adam Bard
573b2f673c md 2018-08-24 19:44:16 -07:00
Divay Prakash
5ad44337ab Fix build error in 'build/docs/it-it/markdown/index.html' 2018-08-15 17:37:50 +05:30
bonte
9cf7115d71 fix translation 2018-08-03 23:40:21 +02:00
Draio
11dbfc2e96 [python3/it] Added italian translation Python3 (#3094)
* Create python3-it.html.markdown

* Update python3-it.html.markdown

* Minor corrections on code and text
2018-06-04 21:42:06 +05:45
Andre Polykanine A.K.A. Menelion Elensúlë
65e4c2efb6
Merge pull request #2977 from chris54721/patch-1
[go/it] Wording and missing translation
2017-10-28 18:02:16 +03:00
Chris54721
f21a5f061b
[rst/it] Improve wording 2017-10-27 20:53:15 +02:00
Chris54721
9ac6b5775b
[go/it-it] Wording and missing translation 2017-10-27 20:44:07 +02:00
Andre Polykanine A.K.A. Menelion Elensúlë
65d4f596cd Merge pull request #2928 from Ale46/rst/it-it
[rst/it-it] Italian translation for rst
2017-10-21 21:09:37 +03:00
Ale46
2cc38552e9 [rst/it-it] Italian translation for rst 2017-10-21 17:28:41 +02:00