Commit Graph

217 Commits

Author SHA1 Message Date
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
ditam
90e3848198 add missing lang declaration to html-it
The missing declaration caused the italian version show up as a
duplicate HTML article, becoming the parent of every further translation.
2017-10-15 22:16:34 +02:00
Andre Polykanine A.K.A. Menelion Elensúlë
3c37015d2a Merge pull request #2897 from Ale46/markdown/it-it
[markdown/it-it] Update structure and typo fix
2017-10-09 23:53:18 +03:00
Ale46
b82270578b [markdown/it-it] Fix comment line too long 2017-10-08 12:18:09 +02:00
Ale46
b90490ae63 [markdown/it-it] Fix some escape 2017-10-08 12:14:02 +02:00
Ale46
44c0ba4f1c [markdown/it-it] Update structure and typo fix
Some typo where fixed and the structure now reflect the english version of the markdown file
2017-10-08 12:08:30 +02:00
Andre Polykanine A.K.A. Menelion Elensúlë
f19b74ff47 Merge pull request #2881 from Ale46/html/it-it
[html/it-it] adds Italian translation for html
2017-10-04 22:14:20 +03:00
Ale46
7dca53df57 [matlab/it-it] removed text left from the original translation 2017-10-02 02:22:00 +02:00
Ale46
f70e1e3518 [html/it-it] adds Italian translation for html 2017-10-02 02:10:53 +02:00
Pratik Karki
0cd9364ac0 Add language code suffix(#2832) 2017-08-25 13:49:08 +05:45
Pratik Karki
f390f02a78 Add filename(#2832) 2017-08-25 13:48:16 +05:45
Pratik Karki
1664d346bd Add filename(#2832) 2017-08-25 13:47:24 +05:45
Paulo Moura
4ec61bfa79 [logtalk/it-it] fix typo in example code (#2670) 2017-02-21 15:54:22 +01:00
Paulo Moura
6c7c2df7fe [logtalk/it-it] Enable syntax coloring for code blocks (#2656) 2017-02-13 09:57:20 +01:00
Paulo Moura
f30a5376b4 [logtalk/it-it] Add Italian translation of the Logtalk tutorial] (#2652)
* [logtalk/it-it] Add Italian translation of the Logtalk tutorial]

* Add `en` tag to link to the official website in the Italian translation for the Logtalk tutorial
2017-02-12 00:40:15 +01:00
omgee
ae16d45078 [c++/en,es,it,br,ru,ch] Fix forgotten namespace std:: (#2619) 2017-01-03 08:41:35 +01:00
Tommaso
304439b65c Bring this version up to date with the english one (#2508)
* Bring this version up to date with the english one

The following commits were taken into consideration and translated into italian:
777423dcc5
9ee3a68720
ba06e9af37
c05400477b
e1d2f8c718
375f0c18ae
a9bcaffd36
85adff2c39
451ccaec5b
c60ddc6ef5
a6eb459b61
b238a58c97
e60a7d73e8
db903ac5b6
cdd64ecee3
14c85ba0ff
5bda926dcc
ab1acb1bb2
0049a475ed
a4a7b2dd83
299d064ecf
2c94436824
5f89f277b9
b3b5ece63c
912d546dc7
0387bd30fc
e053806775

* Add myself as a translator
2016-10-25 23:07:19 +02:00
Tommaso
f78b5834a1 Bring this version up to date with the english one (#2507)
The following commits were taken into consideration and translated into italian:
777423dcc5
9ee3a68720
ba06e9af37
c05400477b
e1d2f8c718
375f0c18ae
a9bcaffd36
85adff2c39
451ccaec5b
c60ddc6ef5
a6eb459b61
b238a58c97
e60a7d73e8
db903ac5b6
cdd64ecee3
14c85ba0ff
5bda926dcc
ab1acb1bb2
0049a475ed
a4a7b2dd83
299d064ecf
2c94436824
5f89f277b9
b3b5ece63c
912d546dc7
0387bd30fc
e053806775
2016-10-25 23:04:35 +02:00
Tommaso
dec92b05fb Bring this version up to date with the english one (#2503)
* Bring this version up to date with the english one

The following commits were taken into consideration and translated into italian:
c3e769e4ac
fd26c8ddfb
19ead59c1f
e6866f5a26
32f18cd992
c805148618
4a1a6857ce
fa2b171008
e1016455d5
1bb2535efd
1d562740f3
281ba5b37a
c50ff92996
47679dfcbe
042ed50381

* Bring this version up to date with the english one

The following commits were taken into consideration and translated into italian:
c3e769e4ac
fd26c8ddfb
19ead59c1f
e6866f5a26
32f18cd992
c805148618
4a1a6857ce
fa2b171008
e1016455d5
1bb2535efd
1d562740f3
281ba5b37a
c50ff92996
47679dfcbe
042ed50381
2016-10-24 14:54:58 +02:00