summaryrefslogtreecommitdiffhomepage
path: root/it-it
Commit message (Collapse)AuthorAgeLines
* Update c++ to upercase C++Marcel Ribeiro-Dantas2022-08-01-2/+2
|
* Update filenameAl2022-07-24-1/+1
| | | Co-authored-by: Marcel Ribeiro Dantas, Ph.D. <ribeirodantasdm@gmail.com>
* Improve translation and readabilityAl2022-07-24-13/+13
|
* Fix typosAl2022-07-24-6/+6
|
* Translate links section (last one)Al2022-07-24-0/+48
|
* Translate natspec comments section (14)Al2022-07-24-0/+13
|
* Translate style notes section (13)Al2022-07-23-0/+13
|
* Translate low level functions section (12)Al2022-07-23-0/+11
|
* Translate security section (11)Al2022-07-23-0/+8
|
* Translate other native functions (10)Al2022-07-23-0/+32
|
* Translate state machines section (9.G)Al2022-07-23-0/+147
|
* Translate pattern observer (9.F)Al2022-07-23-0/+38
|
* Translate cron job section (9.E)Al2022-07-23-0/+6
|
* Translate oracles and external data section (9.D)Al2022-07-23-0/+27
|
* Translate data access in blockchain section (9.C)Al2022-07-23-0/+11
|
* Translate storage design notes section (9.B)Al2022-07-23-0/+10
|
* Translate obfruscation section (9.A)Al2022-07-23-0/+14
|
* Translate other keyword section (8)Al2022-07-23-0/+24
|
* Translate object/contracts section (7)Al2022-07-23-0/+56
|
* Transalte branching and loop section (6)Al2022-07-23-0/+28
|
* Translate modifiers section (5.C)Al2022-07-22-0/+33
|
* Translate event section (5.B)Al2022-07-22-0/+36
|
* Translate function section (5.A)Al2022-07-22-0/+66
|
* Translate global variables of note (4)Al2022-07-21-0/+34
|
* Translate simple operators (3)Al2022-07-20-0/+7
|
* Translate structs (2)Al2022-07-20-0/+71
|
* Edit translator nameAl2022-07-19-1/+1
|
* Translate solidity basics (1) sectionAl2022-07-19-0/+118
|
* Translate bank exampleAl2022-07-19-1/+101
|
* Fix line lengthAl2022-07-19-1/+2
|
* Fix typoAl2022-07-19-1/+1
|
* Fix wrong "working with remix and metamask" sectionAl2022-07-19-22/+29
|
* Translate "working on a testnet" introAl2022-07-18-0/+33
|
* Translate "working with remix and metamask" sectionAl2022-07-18-1/+34
|
* Translate Solidity introduction into italianAl2022-07-18-0/+44
|
* [rust/it] fix italian translation.Mathias Schmitt2022-07-06-1/+1
|
* [rust/all] Remove .iter() on array example (#4230)Ay3552021-11-01-1/+1
| | | As of Rust 1.53.0, arrays implement the IntoIterator trait, making .iter() on an array unnecessary
* [ruby/all] Replace tryruby.org with the proper link (#4217)Petru Madar2021-08-21-1/+1
| | | | | * Replace tryruby.org with the proper link * Replace tryruby.org with the proper link
* Rename OS X to macOS (#4166)Борис Верховский2021-05-25-1/+1
|
* Merge pull request #3709 from chris54721/patch-2Adam Bard2020-05-19-0/+112
|\ | | | | [sql/it] Add sql-it.html.markdown
| * [sql/it] Add sql-it.html.markdownChristian Grasso2019-10-20-0/+112
| |
* | Merge pull request #3708 from chris54721/patch-1Adam Bard2020-05-19-0/+361
|\ \ | | | | | | [zfs/it] Add zfs-it.html.markdown
| * | [zfs/it] Add zfs-it.html.markdownChristian Grasso2019-10-20-0/+361
| |/
* | Merge pull request #3856 from sshine/make-python3-defaultAdam Bard2020-02-13-1373/+1373
|\ \ | | | | | | [Python] Make Python 3 default
| * | Python 3: Use 'filename: learnpython*.py' (no '3')Simon Shine2020-02-12-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/' {} \; ```
| * | Change 'filename:' for Python 2 (legacy)Simon Shine2020-02-12-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/' {} \; ```
| * | Python 3: 'language: Python'Simon Shine2020-02-12-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/' {} \; ```
| * | Python 2 'language': Python 2 (legacy)Simon Shine2020-02-12-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)/' {} \; ```
| * | Switch links: 'python3 <-> python' and 'python <-> pythonlegacy'Simon Shine2020-02-12-1/+1
| | | | | | | | | | | | The list of references is exhausted by running 'ack docs/python'.
| * | Rename Python 3 markdown files into 'python'Simon Shine2020-02-12-0/+0
| | | | | | | | | | | | | | | | | | | | | | | | ``` for f in $(find . -iname "*python3*" | grep -vE 'git'); do fnew=$(echo "$f" | sed 's/python3/python/') git mv "$f" "$fnew" done