Commit message (Collapse) | Author | Age | Lines | ||
---|---|---|---|---|---|
... | |||||
* | Transalte branching and loop section (6) | Al | 2022-07-23 | -0/+28 | |
| | |||||
* | Translate modifiers section (5.C) | Al | 2022-07-22 | -0/+33 | |
| | |||||
* | Translate event section (5.B) | Al | 2022-07-22 | -0/+36 | |
| | |||||
* | Translate function section (5.A) | Al | 2022-07-22 | -0/+66 | |
| | |||||
* | Translate global variables of note (4) | Al | 2022-07-21 | -0/+34 | |
| | |||||
* | Translate simple operators (3) | Al | 2022-07-20 | -0/+7 | |
| | |||||
* | Translate structs (2) | Al | 2022-07-20 | -0/+71 | |
| | |||||
* | Edit translator name | Al | 2022-07-19 | -1/+1 | |
| | |||||
* | Translate solidity basics (1) section | Al | 2022-07-19 | -0/+118 | |
| | |||||
* | Translate bank example | Al | 2022-07-19 | -1/+101 | |
| | |||||
* | Fix line length | Al | 2022-07-19 | -1/+2 | |
| | |||||
* | Fix typo | Al | 2022-07-19 | -1/+1 | |
| | |||||
* | Fix wrong "working with remix and metamask" section | Al | 2022-07-19 | -22/+29 | |
| | |||||
* | Translate "working on a testnet" intro | Al | 2022-07-18 | -0/+33 | |
| | |||||
* | Translate "working with remix and metamask" section | Al | 2022-07-18 | -1/+34 | |
| | |||||
* | Translate Solidity introduction into italian | Al | 2022-07-18 | -0/+44 | |
| | |||||
* | [rust/it] fix italian translation. | Mathias Schmitt | 2022-07-06 | -1/+1 | |
| | |||||
* | [rust/all] Remove .iter() on array example (#4230) | Ay355 | 2021-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 Madar | 2021-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-2 | Adam Bard | 2020-05-19 | -0/+112 | |
|\ | | | | | [sql/it] Add sql-it.html.markdown | ||||
| * | [sql/it] Add sql-it.html.markdown | Christian Grasso | 2019-10-20 | -0/+112 | |
| | | |||||
* | | Merge pull request #3708 from chris54721/patch-1 | Adam Bard | 2020-05-19 | -0/+361 | |
|\ \ | | | | | | | [zfs/it] Add zfs-it.html.markdown | ||||
| * | | [zfs/it] Add zfs-it.html.markdown | Christian Grasso | 2019-10-20 | -0/+361 | |
| |/ | |||||
* | | Merge pull request #3856 from sshine/make-python3-default | Adam Bard | 2020-02-13 | -1373/+1373 | |
|\ \ | | | | | | | [Python] Make Python 3 default | ||||
| * | | Python 3: Use 'filename: learnpython*.py' (no '3') | Simon Shine | 2020-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 Shine | 2020-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 Shine | 2020-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 Shine | 2020-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 Shine | 2020-02-12 | -1/+1 | |
| | | | | | | | | | | | | The list of references is exhausted by running 'ack docs/python'. | ||||
| * | | Rename Python 3 markdown files into 'python' | Simon Shine | 2020-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 | ||||
| * | | Rename Python 2 markdown files into 'pythonlegacy' | Simon Shine | 2020-02-12 | -0/+0 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | ``` for f in $(find . -iname "*python*" | grep -vE 'python3|git|statcomp'); do flegacy=$(echo "$f" | sed 's/python/pythonlegacy/') git mv "$f" "$flegacy" done ``` | ||||
* | | | Purge my deadname | Leigh Brenecki | 2020-02-13 | -1/+1 | |
|/ / | |||||
* | | piccola correzione di testo | Andrea Borruso | 2020-01-29 | -1/+1 | |
| | | |||||
* | | Merge pull request #3678 from neslinesli93/feature/fix_elixir_it | Divay Prakash | 2020-01-11 | -19/+33 | |
|\ \ | | | | | | | [elixir/it-it] Add section about pipes, and fix docs here and there | ||||
| * | | Add section about pipes, and fix docs here and there for elixir/it-it | Tommaso | 2019-10-05 | -19/+33 | |
| |/ | |||||
* / | Add explanation of `=~` and `alias` inside bash/it-it | Tommaso | 2019-10-05 | -0/+19 | |
|/ | |||||
* | Tweak markdown to properly render html | carl | 2019-09-20 | -4/+9 | |
| | |||||
* | Merge pull request #3508 from vinniec/master | Divay Prakash | 2019-08-04 | -0/+617 | |
|\ | | | | | [javascript/it-it] Create javascript-it.html.markdown | ||||
| * | Update javascript-it.html.markdown | Divay Prakash | 2019-08-04 | -1/+4 | |
| | | | | | | Fix YAML frontmatter | ||||
| * | Create javascript-it.html.markdown | vinniec | 2019-03-30 | -0/+614 | |
| | | | | | | Translated from the version 2570367 of 21 Jan | ||||
* | | [rust-it] fix struct name according below usage | Daniele Megna | 2019-05-31 | -1/+1 | |
| | | |||||
* | | Fix typo in rust-it | Daniele Megna | 2019-05-29 | -1/+1 | |
|/ | |||||
* | Merge pull request #3458 from sanindya-iiitd/patch-1 | Andre Polykanine | 2019-02-09 | -1/+1 | |
|\ | | | | | [python/all] Type correction for the output of math.sqrt() | ||||
| * | Type correction for the output of math.sqrt() propagated across versions and ↵ | Anindya Srivastava | 2019-02-06 | -1/+1 | |
| | | | | | | | | languages | ||||
* | | Improve section on compiling and loading source files | Paulo Moura | 2019-02-03 | -1/+4 | |
|/ | |||||
* | YAML fixes (#3400) | Divay Prakash | 2018-11-17 | -2/+2 | |
| | |||||
* | Merge pull request #3324 from chris54721/master | Divay Prakash | 2018-10-24 | -0/+227 | |
|\ | | | | | [typescript/it] Add typescript-it.html.markdown | ||||
| * | [typescript/it] Add language spec line | Chris54721 | 2018-10-23 | -0/+1 | |
| | | |||||
| * | [it/it] Add typescript-it.html.markdown | Chris54721 | 2018-10-22 | -0/+226 | |
| | |