summaryrefslogtreecommitdiffhomepage
path: root/it-it
Commit message (Collapse)AuthorAgeLines
* [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
| * | Rename Python 2 markdown files into 'pythonlegacy'Simon Shine2020-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 deadnameLeigh Brenecki2020-02-13-1/+1
|/ /
* | piccola correzione di testoAndrea Borruso2020-01-29-1/+1
| |
* | Merge pull request #3678 from neslinesli93/feature/fix_elixir_itDivay Prakash2020-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-itTommaso2019-10-05-19/+33
| |/
* / Add explanation of `=~` and `alias` inside bash/it-itTommaso2019-10-05-0/+19
|/
* Tweak markdown to properly render htmlcarl2019-09-20-4/+9
|
* Merge pull request #3508 from vinniec/masterDivay Prakash2019-08-04-0/+617
|\ | | | | [javascript/it-it] Create javascript-it.html.markdown
| * Update javascript-it.html.markdownDivay Prakash2019-08-04-1/+4
| | | | | | Fix YAML frontmatter
| * Create javascript-it.html.markdownvinniec2019-03-30-0/+614
| | | | | | Translated from the version 2570367 of 21 Jan
* | [rust-it] fix struct name according below usageDaniele Megna2019-05-31-1/+1
| |
* | Fix typo in rust-itDaniele Megna2019-05-29-1/+1
|/
* Merge pull request #3458 from sanindya-iiitd/patch-1Andre Polykanine2019-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 Srivastava2019-02-06-1/+1
| | | | | | | | languages
* | Improve section on compiling and loading source filesPaulo Moura2019-02-03-1/+4
|/
* YAML fixes (#3400)Divay Prakash2018-11-17-2/+2
|
* Merge pull request #3324 from chris54721/masterDivay Prakash2018-10-24-0/+227
|\ | | | | [typescript/it] Add typescript-it.html.markdown
| * [typescript/it] Add language spec lineChris547212018-10-23-0/+1
| |
| * [it/it] Add typescript-it.html.markdownChris547212018-10-22-0/+226
| |
* | [pcre/it] Add pcre-it.html.markdownChris547212018-10-23-0/+80
|/
* fix typos and accent marksabonte2018-10-18-35/+35
|
* small changebonte2018-10-14-1/+1
|
* add translatorbonte2018-10-14-0/+2
|
* cut lines over 80 charsbonte2018-10-14-20/+29
|
* add translation [ruby/it]bonte2018-10-14-0/+642
|
* Merge pull request #3296 from divayprakash/fix-linksDivay Prakash2018-10-14-3/+4
|\ | | | | [dynamic-programming] Fix links
| * Fix linksDivay Prakash2018-10-14-3/+4
| |
* | Add new link from 2242ad7Divay Prakash2018-10-14-0/+1
| |
* | Fix links and list stylingDivay Prakash2018-10-14-4/+2
|/
* [toml/it] Add it-IT translation for TOMLChris547212018-10-13-0/+276
|
* Merge pull request #3287 from Ale46/dynamic-programming-itDivay Prakash2018-10-13-0/+54
|\ | | | | [dynamic-programming/it-IT] Add italian language for dynamic-programming
| * [dynamic-programming/it-IT] Add italian language for dynamic-programmingAle462018-10-13-0/+54
| |
* | Merge pull request #3288 from Ale46/qt-itDivay Prakash2018-10-13-0/+161
|\ \ | | | | | | [qt/it-IT] Add italian language for qt
| * | [qt/it-IT] Add italian language for qtAle462018-10-13-0/+161
| |/
* | Merge pull request #3289 from Ale46/asciidoc-itDivay Prakash2018-10-13-0/+135
|\ \ | | | | | | [asciidoc/it-IT] Add italian language for asciidoc
| * | [asciidoc/it-IT] Add italian language for asciidocAle462018-10-13-0/+135
| |/