Commit Graph

647 Commits

Author SHA1 Message Date
Adam Bard
63158e1319
Merge pull request #4021 from victorwpbastos/patch-15
[kotlin/pt-br] Small corrections
2020-10-01 07:58:35 -07:00
Adam Bard
21674f30f6
Merge pull request #4023 from rmuliterno/patch-3
[language/lang-code] Typo fix and adding translation on needed lines
2020-10-01 07:58:18 -07:00
Adam Bard
89a4bd76ef
Merge pull request #4024 from rmuliterno/patch-4
[language/lang-code] Accentuation fix
2020-10-01 07:58:00 -07:00
Adam Bard
b62f74a3de
Merge pull request #4025 from Mariede/patch-1
[julia/pt-br] Small corrections
2020-10-01 07:57:42 -07:00
Adam Bard
d2cb4f2123
Merge pull request #4027 from Mariede/patch-3
[self/pt-br] Small corrections
2020-10-01 07:57:22 -07:00
Adam Bard
68d211d9ab
Merge pull request #4026 from Mariede/patch-2
[kotlin/pt-br] Small corrections
2020-10-01 07:56:51 -07:00
Adam Bard
18d51e5a7e
Merge pull request #4028 from Mariede/patch-4
[matlab/pt-br] Small corrections
2020-10-01 07:56:31 -07:00
Adam Bard
34ad35ef3d
Merge pull request #4029 from Mariede/patch-5
[awk/pt-br] Small corrections
2020-10-01 07:56:16 -07:00
Adam Bard
a5016783f3
Merge pull request #4012 from adelarsq/master
[F#/pt-br] Add translation for F# to Brazilian Portuguese
2020-10-01 07:42:02 -07:00
Michel
6b5532f488
[awk/pt-br] Small corrections 2020-09-30 17:27:57 -03:00
Michel
6c9d43068a
[matlab/pt-br] Small corrections 2020-09-30 17:18:07 -03:00
Michel
62db5e5073
[self/pt-br] Small corrections 2020-09-30 17:13:30 -03:00
Michel
0442bb51f5
[kotlin/pt-br] Small corrections 2020-09-30 17:02:40 -03:00
Michel
7b42ba4ad9
[julia/pt-br] Small corrections 2020-09-30 16:55:22 -03:00
Renan Muliterno Ferreira
e992ec0584
[language/lang-code] Accentuation fix 2020-09-30 14:25:40 -03:00
Renan Muliterno Ferreira
ef2cd618d4
Typo fix and adding translation on needed lines
A couple of typo fixes, and I saw some lines that were not translated so I went ahead and fixed that on this commit.
2020-09-30 14:15:43 -03:00
Victor Bastos
7b6a6c96b7
[kotlin/pt-br] Small corrections 2020-09-30 12:40:21 -03:00
Victor Bastos
c0386806c5
[groovy/pt-br] Small corrections 2020-09-30 12:32:11 -03:00
Victor Bastos
44f12c934c
[css/pt-br] Small corrections 2020-09-30 12:18:45 -03:00
Victor Bastos
61cc8acc96
[typescript/pt-br] Small corrections 2020-09-30 12:11:56 -03:00
Iaan Mesquita
c1bf13488c
fix header
omg
2020-09-26 13:50:18 -03:00
Iaan Mesquita
062497b84f
fixed header xd 2020-09-26 13:37:59 -03:00
Iaan Mesquita
6902c8cd5d
Update lua-pt.html.markdown 2020-09-26 13:28:57 -03:00
Iaan Mesquita
22a259ca34
Create lua-pt.html.markdown
Translation to pt-br.
2020-09-26 13:12:18 -03:00
Adelar da Silva Queiróz
68d5c0a070
Update missing translations 2020-09-24 23:07:33 -03:00
Valdir Júnior
44cbab28aa
fix: typo pt-br elixir 2020-09-24 13:06:23 -03:00
Adelar da Silva Queiróz
05439f454d
Create fsharp-pt.html.markdown 2020-09-17 12:17:19 -03:00
knopftee
1aa649ecf3
Update sass-pt.html.markdown
Update in sass-pt markdown file with orthography corrections.
2020-07-22 20:36:39 -03: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
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
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
Gabriele Luz
21a5423b2b
[markdown/pt-br] formatting adjustments (#3738) 2020-02-02 15:16:35 +05:30
Divay Prakash
6db3c76edd
Merge pull request #3743 from almeidaraul/patch-2
[pascal/pt-br] Update contributors in pascal-pt
2020-01-24 20:09:51 +05:30
Divay Prakash
e02b5aa001
Merge pull request #3740 from almeidaraul/patch-1
[pt-br/vim] Add command tips and examples, fix wild text
2020-01-24 20:08:08 +05:30
Divay Prakash
4632eb7482
Merge pull request #3725 from andredesanta/patch-1
[clojure-macros/pt-br] Fix language typos
2020-01-24 19:53:37 +05:30
Divay Prakash
5c16cd103d
Merge pull request #3701 from ysads/clojure/pt-br/rewrite-text
[clojure/pt-br] Rewrite text to be more natural in portuguese
2020-01-24 19:46:39 +05:30
Divay Prakash
b0078b2deb
Merge pull request #3689 from lbertolazzi/patch-10
[haskell/pt] Correção ortográfica
2020-01-11 14:18:14 +05:30
Divay Prakash
6e1b56b2bf
Merge pull request #3688 from lbertolazzi/patch-9
[whip/pt] Correção ortográfica
2020-01-11 14:18:04 +05:30
Divay Prakash
21de21457b
Merge pull request #3687 from lbertolazzi/patch-7
Update pascal-pt.html.markdown
2020-01-11 14:17:07 +05:30
Divay Prakash
1d4331fd9d
Merge pull request #3686 from lbertolazzi/patch-6
[elisp/pt] Correção ortográfica
2020-01-11 14:16:51 +05:30
Divay Prakash
1d00814fb7
Merge pull request #3683 from heitorPB/c-update-book-link
[C/en,es,tr,pt-br,zh-cn,ru-ru] update book link
2020-01-11 14:06:52 +05:30
Divay Prakash
ff5bab0e9f
Merge pull request #3665 from victorwpbastos/patch-11
[haskell/pt-br] Small typo
2020-01-11 14:02:53 +05:30
Divay Prakash
16dc074e39
Merge branch 'master' into master 2019-12-23 23:14:50 +05:30
Divay Prakash
ede3cc5484
Merge branch 'master' into patch-4 2019-11-24 12:38:47 +05:30
Divay Prakash
f0ce8b2ba2
Merge pull request #3656 from Anabaac/patch-2
[yaml/pt-br] Small typo
2019-11-24 12:36:11 +05:30
Divay Prakash
76020c65e0
Merge pull request #3658 from rmuliterno/patch-2
[language/lang-code] Small Typos Fix
2019-11-24 12:35:58 +05:30
Divay Prakash
19f0a57b2b
Merge pull request #3657 from Anabaac/patch-3
[stylus/pt-br] Typos
2019-11-24 12:35:22 +05:30
Divay Prakash
71e0fff024
Merge branch 'master' into patch-2 2019-11-24 12:33:32 +05:30
Divay Prakash
035e4af7d4
Merge branch 'master' into patch-1 2019-11-24 12:19:34 +05:30
Divay Prakash
b23a2cc28f
Merge branch 'master' into patch-11 2019-11-24 12:11:48 +05:30
Divay Prakash
7045e651d2
Merge pull request #3651 from daniloyamauti/patch-12
[csharp/pt-br] Missing translation
2019-11-24 12:07:32 +05:30
Divay Prakash
89257e9c0f
Merge pull request #3653 from daniloyamauti/patch-14
[csharp/pt-br] Missing translation
2019-11-24 12:07:17 +05:30
Divay Prakash
39c7efbb81
Merge pull request #3652 from daniloyamauti/patch-13
[csharp/pt-br] Missing translation
2019-11-24 12:07:10 +05:30
Divay Prakash
547a663c0c
Merge pull request #3648 from arfurlaneto/patch-13
[typescript/pt-br] Better translation
2019-11-24 12:05:38 +05:30
Divay Prakash
86f0b57dbb
Merge pull request #3647 from daniloyamauti/patch-10
[csharp/pt-br] Missing translation
2019-11-24 12:04:17 +05:30
Divay Prakash
a7668c791b
Merge pull request #3645 from arfurlaneto/patch-12
[latex/pt-br] Grammar error
2019-11-24 12:03:38 +05:30
Divay Prakash
6d56565b1c
Merge pull request #3644 from arfurlaneto/patch-11
[julia/pt-br] Better translation
2019-11-24 12:02:52 +05:30
Divay Prakash
e0cdbabb44
Merge pull request #3640 from arfurlaneto/patch-10
[csharp/pt-br] Missing translation
2019-11-24 11:54:38 +05:30
Divay Prakash
7773a8b1b2
Merge pull request #3649 from ferfedel/patch-12
[yaml/pt-br] Translation adjustments
2019-11-24 11:53:35 +05:30
Divay Prakash
5c58ffd48d
Merge pull request #3646 from ferfedel/patch-11
[bash/pt-br] Translation adjustments
2019-11-24 11:53:04 +05:30
Divay Prakash
3ebbd176e1
Merge pull request #3643 from ferfedel/patch-10
[css/pt-br] Translation adjustments
2019-11-24 11:52:34 +05:30
Divay Prakash
320327fd5a
Merge pull request #3641 from victorwpbastos/patch-10
[typescript/pt-br] Small typo
2019-11-24 11:49:33 +05:30
Divay Prakash
c6f65e89e7
Merge pull request #3638 from victorwpbastos/patch-8
[cypher/pt-br] Small typo
2019-11-24 11:48:11 +05:30
Divay Prakash
c6ce29b6aa
Merge pull request #3637 from victorwpbastos/patch-7
[php/pt-br] Small typo
2019-11-24 11:47:48 +05:30
Adam Bard
deb1819a2d
Merge pull request #3733 from fnscoder/master
[Python/pt-br] Improve translation
2019-10-30 12:40:11 -07:00
Adam Bard
767329cf74
Merge pull request #3744 from bfmonique/patch-1
[markdown/pt-br] Fix markdown-pt portuguese mistakes
2019-10-30 12:38:39 -07:00
Adam Bard
4e80a10d04
Merge pull request #3727 from andredesanta/patch-3
[clojure/pt-br] Add "Clojure for the Brave and True" resource
2019-10-30 12:37:00 -07:00
bfmonique
53488ee571
Fix python3-pt portuguese mistakes 2019-10-29 20:09:46 -03:00
bfmonique
cb5ef7349d
Fix markdown-pt portuguese mistakes 2019-10-29 20:02:08 -03:00
Raul Almeida
87b2be6102
Update contributors in pascal-pt
I translated this a while back and decided to add myself as a contributor besides a translator because I changed much of the original text to what I feel is a more legible, better explanation of the Pascal language.
2019-10-29 19:53:29 -03:00
Raul Almeida
daa3502767
Add command tips and examples, fix wild text
Added information under "Alguns atalhos e dicas" and "Macros"; removed some wild text in the header (essentially, one of the contributors was one of vim's modes)
2019-10-29 15:26:15 -03:00
Felipe N Souza
f47496b083 [Python/pt-br] Improve translation 2019-10-26 21:39:37 -03:00
André de Santa
68083173ec
Add "Clojure for the Brave and True" resource 2019-10-24 13:22:35 -03:00
André de Santa
05018243ab
Fix language typos in clojure-macros-pt.html.markdown 2019-10-24 12:20:33 -03:00
Ygor Sad
17360e644f [clojure/pt-br] Rewrite text to be more natural 2019-10-13 19:37:34 -03:00
lbertolazzi
9fb99aa5bd
[haskell/pt] Correção ortográfica 2019-10-11 10:51:55 -03:00
lbertolazzi
3496f8228f
[whip/pt] Correção ortográfica 2019-10-11 10:41:24 -03:00
lbertolazzi
2c13b562f8
Update pascal-pt.html.markdown 2019-10-11 10:19:39 -03:00
lbertolazzi
ccde50813f
[elisp/pt] Correção ortográfica 2019-10-11 10:10:44 -03:00
Heitor Pascoal de Bittencourt
c643189c0f
[c/pt-br] Fix book link 2019-10-08 21:30:02 -03:00
Victor Bastos
809c01a0a0
[haskell/pt-br] Small typo 2019-10-01 17:57:51 -03:00
Ana Beatriz Cavalcanti
3d75c100b4
[css/pt-br] Better translation 2019-10-01 13:53:40 -03:00
Renan Muliterno Ferreira
2ddc949b79
Small Typos Fix 2019-10-01 13:49:20 -03:00
Ana Beatriz Cavalcanti
53d697b66c
[stylus/pt-br] Typos 2019-10-01 13:40:16 -03:00
Ana Beatriz Cavalcanti
2ba63ef729
[yaml/pt-br] Small typo 2019-10-01 13:30:53 -03:00
Renan Muliterno Ferreira
80b785ab22
Adding more translations 2019-10-01 13:27:42 -03:00
Ana Beatriz Cavalcanti
edccffb0c1
[groovy/pt-br] Small typo 2019-10-01 13:25:07 -03:00
daniloyamauti
caf2531ad0
[csharp/pt-br] Missing translation 2019-10-01 13:02:26 -03:00
daniloyamauti
03b67fff48
[csharp/pt-br] Missing translation 2019-10-01 12:50:33 -03:00
daniloyamauti
35472772e3
[csharp/pt-br] Missing translation 2019-10-01 12:46:03 -03:00
daniloyamauti
c618eeb603
[csharp/pt-br] Missing translation 2019-10-01 12:37:42 -03:00
Fer
32f1db9ac3
[yaml/pt-br] Translation adjustments 2019-10-01 12:36:01 -03:00
Antonio Roberto Furlaneto
aeb1fb64a1
Update typescript-pt.html.markdown 2019-10-01 12:35:12 -03:00
daniloyamauti
3984232385
[csharp/pt-br] Missing translation 2019-10-01 12:29:38 -03:00
Fer
c8365375f1
[bash/pt-br] Translation adjustments 2019-10-01 12:28:54 -03:00
Antonio Roberto Furlaneto
989809bb8f
[latex/pt-br] Grammar error 2019-10-01 12:27:25 -03:00
Antonio Roberto Furlaneto
f933d7f66f
[julia/pt-br] Better translation 2019-10-01 12:25:00 -03:00
Fer
0e5203510b
[css/pt-br] Translation adjustments 2019-10-01 12:16:59 -03:00
Victor Bastos
1ccbe647ed
[typescript/pt-br] Small typo 2019-10-01 12:10:38 -03:00
Antonio Roberto Furlaneto
1e17f8e3c7
[csharp/pt-br] Missing translation 2019-10-01 12:07:14 -03:00
Fer
ffd1fed725
Update markdown-pt.html.markdown
Translation adjustments
2019-10-01 12:06:10 -03:00
Victor Bastos
4df895568d
[cypher/pt-br] Small typo 2019-10-01 11:58:32 -03:00
Victor Bastos
3e1fe4dc00
[php/pt-br] Small typo 2019-10-01 11:55:55 -03:00
Raphael
9f7893995c fix some typos 2019-06-01 10:32:20 -03:00
Claudio Busatto
fc7e086396 User data has to follow the grammar
of the target language
2019-03-27 20:00:34 +01:00
Claudio Busatto
56e7570b12 Include me as a contributor 2019-03-27 19:48:50 +01:00
Claudio Busatto
52c74e4f17 Fix layout and typos 2019-03-27 19:46:41 +01:00
Pierre-François Clement
0a3207587d
Move "make" articles to the "tool" category 2019-03-08 17:21:53 +01:00
Pierre-François Clement
6ca3b99774
Move "cmake" articles to the "tool" category 2019-03-08 17:20:20 +01:00
Pierre-François Clement
ed100434e3
Move "awk" articles to the "tool" category 2019-03-08 17:19:27 +01:00
Andre Polykanine
14357102aa
Fixed frontmatter 2019-02-13 02:14:08 +02:00
Raul Gomes Pimentel de Almeida
a689a8c7db Minor changes on line breaking for Pascal in pt-br 2019-02-11 19:58:20 -02:00
Raul Gomes Pimentel de Almeida
d5529d632f Finished the Pascal text for Brazilian Portuguese.
Added some extra details about loops and if/else blocks

(modified pascal-pt.html.markdown)
2019-02-11 19:32:24 -02:00
Raul Gomes Pimentel de Almeida
722dc2d63f Translated the Pascal text to Brazilian Portuguese
(created pascal-pt.html.markdown)

TO DO/Observations:
-Change capitalization of native words
-Change some variable names (to more portuguese-appropriate
alternatives)
-Introduction is still in English
2019-02-11 14:31:33 -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
Adam Bard
41ef626a18
Try scss highlighting 2019-01-08 16:13:15 -08:00
Leonardo Santos
a33a90899f
[asymptotic-notation/pt-br] fix several typos 2019-01-02 08:22:46 -02:00
Divay Prakash
c60678cb1c
Merge pull request #3434 from salomaosnff/learn_stylus
[Stylus/pt-br]
2018-12-29 01:09:11 +05:30
Salomão Neto
5b5fbc4e48 Learn Stylus in pt-BR! 2018-12-26 16:10:45 -03:00
Divay Prakash
f5b3d1c97c
YAML fixes (#3400) 2018-11-17 23:55:42 +05:30
Divay Prakash
f9f87644b9
Merge pull request #3364 from daniloyamauti/patch-5
[csharp/pt-br] Update csharp-pt.html.markdown
2018-11-02 04:44:54 +05:30
Divay Prakash
833714f75e
Update csharp-pt.html.markdown
Remove unnecessary newline
2018-11-02 04:43:08 +05:30
Divay Prakash
786b98333b
Merge pull request #3357 from davelima/haxe-ptbr-translation
[haxe/pt-br] Translate Haxe documentation to pt-br
2018-11-01 12:55:56 +05:30
Divay Prakash
6e49da308e
Merge pull request #3379 from fnscoder/master
[python3/pr-br] Fixed typo
2018-11-01 12:39:59 +05:30
David Lima
e9622c01f4 Translate Haxe documentation to pt-br 2018-10-31 16:27:37 -03:00
fnscoder
ec8231e6c2 [python3/pr-br] Fixed typo 2018-10-31 15:11:33 -03:00
Divay Prakash
146b45082c
Merge pull request #3371 from ferfedel/patch-7
[yaml/pt-br] Fixing translation
2018-10-31 19:20:46 +05:30
Fer
e2637963b9
[yaml/pt-br] Remove lines 2018-10-31 10:38:22 -03:00
Divay Prakash
549fbdf0fb
Merge pull request #3374 from thiagofribeiro/patch-3
[csharp/pt-br] Missing translation
2018-10-31 19:03:11 +05:30
Divay Prakash
3e1787397b
Merge pull request #3375 from thiagofribeiro/patch-5
[paren/pt-br] Small typos
2018-10-31 19:02:22 +05:30
Divay Prakash
8f3ec39ccb
Merge pull request #3373 from ferfedel/patch-9
[whip/pt-br] Better translation
2018-10-31 19:01:22 +05:30
Divay Prakash
a28619508d
Merge pull request #3372 from ferfedel/patch-8
[xml/pt-bt] Better translation
2018-10-31 19:00:22 +05:30
Divay Prakash
45755bdd43
Merge pull request #3366 from daniloyamauti/patch-6
[ruby/pt-br] Update ruby-pt.html.markdown
2018-10-31 18:38:14 +05:30
Divay Prakash
15dde3fa4b
Merge pull request #3365 from ferfedel/patch-5
[typescript/pt-br] Removed duplicate text
2018-10-31 18:37:42 +05:30
Divay Prakash
cc59e486a4
Merge pull request #3370 from daniloyamauti/patch-9
[csharp/pt-br] Update csharp-pt.html.markdown
2018-10-31 18:35:34 +05:30
Divay Prakash
17062520dd
Merge pull request #3369 from daniloyamauti/patch-8
[csharp/pt-br] Update csharp-pt.html.markdown
2018-10-31 18:34:56 +05:30
Divay Prakash
af0015f4ba
Merge pull request #3368 from daniloyamauti/patch-7
[csharp/pt-br] Update csharp-pt.html.markdown
2018-10-31 18:33:53 +05:30
Thiago Ribeiro
a9c9379d4f
[paren/pt-br] Small typos 2018-10-31 09:54:59 -03:00
Thiago Ribeiro
ac42b7b824
[csharp/pt-br] Missing translation 2018-10-31 09:33:00 -03:00
Fer
34621899d3
[whip/pt-br] Better translation 2018-10-31 09:01:02 -03:00
Fer
1255d71668
[xml/pt-bt] Better translation 2018-10-31 08:54:09 -03:00
Fer
049838460e
[yaml/pt-br] Fixing translation 2018-10-31 08:51:04 -03:00
daniloyamauti
b0d213ca09
[csharp/pt-br] Update csharp-pt.html.markdown
Translation of comments.
2018-10-31 08:50:50 -03:00
daniloyamauti
fd5ee982bc
[csharp/pt-br] Update csharp-pt.html.markdown
Translation of comments.
2018-10-31 08:45:05 -03:00
daniloyamauti
8bad4d109c
[csharp/pt-br] Update csharp-pt.html.markdown
Translation of comments.
2018-10-31 08:41:41 -03:00
Fer
f08c02338a
[csharp/pt-br] Missing translation 2018-10-31 08:40:34 -03:00
daniloyamauti
cb9b22fa54
[ruby/pt-br] Update ruby-pt.html.markdown
Translation of comment.
2018-10-31 08:37:56 -03:00
Fer
6d23388f63
[typescript/pt-br] Removed duplicate text 2018-10-31 08:33:18 -03:00
daniloyamauti
1b1acc6f3e
Update csharp-pt.html.markdown
Translation of comments (line 98 and 99)  and correction of comments (line 62)
2018-10-31 08:23:24 -03:00
LukaxFeh
360349bf35 [Dynamic programming-PT/BR] Fixed links 2018-10-30 22:15:10 -03:00
Adam Bard
868b22058f Factor highlight is here 2018-10-23 20:36:28 -07:00
Adam Bard
67a716af49
Merge pull request #3322 from rogerlista/factor-trans
[factor/pt-br] Add portuguese language for factor
2018-10-23 20:28:06 -07:00
Divay Prakash
88e24ff1a4
Merge pull request #3320 from rogerlista/cypher-trans
[cypher/pt-br] Add portuguese language for cypher
2018-10-22 20:01:30 +05:30
Rogério
cb1ef05aa6 [factor/pt-br] Add portuguese language for factor 2018-10-21 20:35:57 -03:00
Rogério
c73fbc2763 [cypher/pt-br] Add portuguese language for cypher 2018-10-21 16:45:44 -03:00
Divay Prakash
05f0f44d8a
Merge pull request #3319 from rogerlista/make-trans
[make/pt-br] Add portuguese language for make
2018-10-21 20:30:40 +05:30
Rogério
678e42b2a3 [make/pt-br] Add portuguese language for make 2018-10-21 00:27:00 -03:00
Rogério
e3123b9283 Remove make translate 2018-10-20 23:47:54 -03:00
Rogério
097fbf7076 [make/pt-br] Add portuguese language for make 2018-10-20 23:10:56 -03:00
Rogério
cb88631777 [less/pt-br] Add portuguese language for less 2018-10-19 21:27:51 -03: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
b3da5ca955 Fix links 2018-10-14 06:07:03 +05:30
Divay Prakash
99618d394e Add new link from 2242ad7 2018-10-14 05:51:14 +05:30
Divay Prakash
44663fba02 Fix links and list styling 2018-10-14 05:35:29 +05:30
Lucas Pugliesi
1c932a33f9 [cmake/pt-br] Add portuguese language for cmake 2018-10-12 22:49:15 -03:00
Lucas Pugliesi
fb58e95343 [html/pt-br] Add Portuguese language for html 2018-10-11 15:46:00 -03:00
Gabriele Luz
4f89d81856
Translates media queries section to pt-br 2018-10-01 22:00:47 -03:00
Divay Prakash
0e83b10203
Merge pull request #3243 from arfurlaneto/patch-9
[csharp/pt-br] Missing translation
2018-10-02 05:06:41 +05:30
Divay Prakash
e529aa6f5a
Merge pull request #3242 from arfurlaneto/patch-8
[c/pt-br] Small typo
2018-10-02 05:05:28 +05:30
Divay Prakash
b12621f1a0
Merge pull request #3241 from arfurlaneto/patch-7
[c++/pt-br] Better translation
2018-10-02 05:04:22 +05:30
Divay Prakash
fc2c529ec8
Merge pull request #3240 from arfurlaneto/patch-6
[bash/pt-br] Small typo
2018-10-02 05:02:38 +05:30
Antonio Roberto Furlaneto
e58b0d88ad
[csharp/pt-br] Missing translation 2018-10-01 20:15:55 -03:00
Antonio Roberto Furlaneto
3f3d5763dd
[c/pt-br] Small typo 2018-10-01 20:10:17 -03:00
Antonio Roberto Furlaneto
260e40ceca
[c++/pt-br] Better translation 2018-10-01 20:05:13 -03:00
Antonio Roberto Furlaneto
b3796a94a9
[bash/pt-br] Small typo 2018-10-01 19:56:14 -03:00
Antonio Roberto Furlaneto
e5190aefb1
[asymptotic-notation/pt-br] Small typo 2018-10-01 19:48:57 -03:00
Divay Prakash
82fd640dba
Merge pull request #3238 from victorwpbastos/patch-6
[go/pt-br] Small typos
2018-10-02 02:01:41 +05:30
Divay Prakash
0b3a193bcf
Merge pull request #3237 from victorwpbastos/patch-5
[vim/pt-br] Small typos
2018-10-02 02:00:17 +05:30
Divay Prakash
37d81158bd
Merge pull request #3236 from victorwpbastos/patch-4
[rust/pt-br] Small typos
2018-10-02 01:58:12 +05:30
Divay Prakash
db7dfdbf79
Merge pull request #3235 from victorwpbastos/patch-3
[pyqt/pt-br] Small typos
2018-10-02 01:54:34 +05:30
Victor Bastos
c6691f3100
Small typos 2018-10-01 17:16:56 -03:00
Victor Bastos
26c1a0326f
Small typos 2018-10-01 17:10:41 -03:00
Victor Bastos
1ab053de7d
Small typos 2018-10-01 17:07:53 -03:00
Victor Bastos
73ec94dc7b
Small typos 2018-10-01 17:03:32 -03:00
Victor Bastos
fbbd054301
Small typos 2018-10-01 17:00:02 -03:00
Divay Prakash
fb392645d8
Merge pull request #3199 from inkydragon/matlab-all-version-fix
[Matlab/en, it-it, pt-br] Matlab all version fix
2018-09-11 01:38:53 +05:30
Divay Prakash
7debaf3bfb Add language code suffix (#3206) 2018-09-04 18:31:52 +05:30
0u0
4d2626d98b pt-br fix #3054 2018-08-30 19:02:36 +08:00
Divay Prakash
e4f328aa47 Fix build error in 'build/docs/pt-br/visualbasic-pt/index.html' 2018-08-15 17:24:15 +05:30
Divay Prakash
b06452efca Fix build error in 'error build/docs/pt-br/common-lisp-pt/index.html' 2018-08-15 17:21:47 +05:30
Divay Prakash
e4894a56ff Fix build error in 'build/docs/pt-br/markdown-pt/index.html' 2018-08-15 17:11:27 +05:30
Aleksandr Mazurik
d375092374 [awk/en] Fix atan2 args order 2018-07-28 21:48:25 +03:00
Pratik Karki
d3ab7a1e85
Merge pull request #3080 from meleu/patch-1
[c/pt-br] small typo and better translated words
2018-05-31 23:48:18 +05:45
Pratik Karki
f5bdb745a5
Update bf-pt.html.markdown 2018-03-14 08:44:44 +05:45