Commit Graph

52 Commits

Author SHA1 Message Date
Marko M
b5f8ea76bc
[java/*] Update obsolete link to "Thinking in Java" (#4365) 2024-05-13 01:38:52 -06:00
Boris Verkhovskiy
33e7713577 [vim/*] highlight vimrc 2024-04-20 00:57:37 -07:00
Boris Verkhovskiy
0aceb41100 [python/*] remove feedback email request 2024-04-07 03:54:02 -07:00
Boris Verkhovskiy
3e687f1a8c Remove leading and trailing empty lines in code blocks 2024-04-06 08:33:50 -07:00
sumanstats
0ecb826429 Perl6 to Raku and many more
+ As the Perl 6 is renamed to raku, it is good to reflect that https://github.com/Raku/problem-solving/blob/master/solutions/language/Path-to-Raku.md

+ perl6.org is now raku.org
+ change references of perl 6 to raku
+ rename file perl6-pod.html.markdown to raku-pod.html.markdown
+ Perl refers to Perl 5, there is no ambiguity after rename of Perl6 to
  Raku, use Perl only to refer to Perl 5
+ fix links inside raku.html.markdown
2020-06-10 16:33:01 +05:45
Adam Bard
1a06a3512b fix pl pythonlegacy 2020-02-13 22:09:07 -08: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
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
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
Mateusz Burniak
2afee25faf
[bf/pl-pl] Fix typo in url 2019-10-03 22:45:27 +02:00
Mateusz Burniak
4dc019f923
Fix translation 2019-10-03 19:15:23 +02:00
Mateusz Burniak
1b7ef9c3df
Fix typos 2019-10-03 19:03:47 +02:00
jacekwachowiak
67220bdbcc Adding the file option 2019-03-16 07:35:09 +01:00
jacekwachowiak
b340c706ee Proofreading 2019-03-16 06:58:21 +01:00
jacekwachowiak
8e54561b47 Java translation to Polish v1 2019-03-16 06:10:06 +01: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
Pratik Karki
153083a201 Add language code suffix(#2832) 2017-08-25 13:55:25 +05:45
Pratik Karki
c0cde322a9 Add filename(#2832) 2017-08-25 13:54:01 +05:45
Pratik Karki
9df9387dbe Add filename(#2832) 2017-08-25 13:53:25 +05:45
Andre Polykanine A.K.A. Menelion Elensúlë
3a0d915f80 Attempted to fix the messed-up frontmatter for Polish. See #2829. 2017-08-23 00:11:10 +03:00
Yan Zhang
a2ee84b201 fix broken URL for vim (#2744) 2017-06-01 11:31:14 +02:00
Andy
63a6eb1182 [haskell] Updating second headline (#2695)
* Haskell: Updating second headline

* Haskell: Updating second headline (es)

* Haskell: Updating second headline (fr)

* Haskell: Updating second headline (pl)

* Haskell: Updating second headline (pt)

* Haskell: Updating second headline (ro)

* Haskell: Updating second headline (ru)

* Haskell: Updating second headline (cn)
2017-04-01 22:19:58 +02:00
Remigiusz Suwalski
5ef6b10749 Add a missing letter 2017-01-13 18:05:03 +01:00
Remigiusz Suwalski
5a1df9e1da Translate functions 2017-01-13 10:47:08 +01:00
Remigiusz Suwalski
ca0d124a8e Translate more functions 2017-01-13 10:31:24 +01:00
Remigiusz Suwalski
ac680b6a7f Translate Haskell IO 2017-01-13 10:10:10 +01:00
Remigiusz Suwalski
b80c70b4a3 Translate REPL 2017-01-11 10:21:38 +01:00
Remigiusz Suwalski
6fa14954a5 Translate Flow control 2017-01-10 18:29:33 +01:00
Remigiusz Suwalski
fd89a69283 Translate type signatures 2017-01-10 10:10:04 +01:00
Remigiusz Suwalski
cc0bd98aee Translate data types 2017-01-10 10:06:27 +01:00
Remigiusz Suwalski
7e3b7a5326 Translate functions 2017-01-10 10:04:14 +01:00
Remigiusz Suwalski
fb5dac4b3c Lists and tuples 2017-01-10 09:58:12 +01:00
Remigiusz Suwalski
c3fb66cd6d Initial commit 2017-01-10 09:45:11 +01:00
Hatsuney
e5416f2a34 [vim/pl] fixed a typo (#2551) 2016-11-01 02:24:51 +01:00
Adam Bobowski
844efb460f [vim/pl] Tutorial translation to Polish language (#2544)
* Added vim tutorial translation to Polish language

* Fixed spelling errors
2016-11-01 02:18:11 +01:00
ven
7aef44996c fix #2382 2016-09-22 16:25:13 +02:00
Voltinus
5068509640 [json/pl] Translated JSON tutorial (#2079)
* Create json-pl.html.markdown

* Update json-pl.html.markdown

* Added -pl to file name
2016-06-26 15:24:58 +02:00
Adam
5aa692f5f3 brainfuck->bf 2016-02-12 11:42:25 -08:00
ven
928edf1209 Merge pull request #1266 from janisz/Polish_translations_for_XML
Add Polish translations for XML
2016-01-25 11:39:33 +01:00
Chris Warrick
ecf5050e07 Remove incorrect list indentation in perl-pl 2015-12-17 16:54:53 +01:00
Spurlow
a02073900c Merge pull request #2019 from mklocek/ruby-pl
[Ruby/pl-pl] Translation for Ruby from en-en to pl-pl
2015-11-27 11:44:08 +07:00
Mikołaj Rozwadowski
913830a6b3 Fix typos, improve the language 2015-11-16 23:09:22 +01:00
Marcin Klocek
7837603c56 Adjust Polish translations for Ruby 2015-11-12 20:26:01 +01:00
Marcin Klocek
cf53a882c6 Create Polish translations for Ruby 2015-11-12 20:17:55 +01:00
Filip Frącz
1fbb842e46 Slight language improvements and fixed typos 2015-10-16 23:28:36 -05:00
Tomasz Janiszewski
4b0f53d964 Add Polish translations for XML 2015-10-01 09:57:34 +02:00
Jakub Mlokosiewicz
3fa7a3f7d3 [brainfuck/pl] translated from en 2015-09-02 14:41:50 +02:00
dokato
bb5fcc32d7 email added
there is polish and english version now
2015-03-10 17:52:24 +01:00
dokato
48657c4af5 three bugs fixed 2015-03-09 20:43:57 +01:00
dokato
3486640887 Small changes 2015-03-09 20:39:16 +01:00