Skip to content

Commit 5ed4511

Browse files
Translated Visitor Pattern
Translated Visitor Pattern in Behavioral section.
1 parent 8a896e5 commit 5ed4511

File tree

1 file changed

+16
-9
lines changed
  • locale/pt_BR/LC_MESSAGES/Behavioral/Visitor

1 file changed

+16
-9
lines changed

locale/pt_BR/LC_MESSAGES/Behavioral/Visitor/README.po

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,20 +4,20 @@ msgstr ""
44
"Project-Id-Version: DesignPatternsPHP 1.0\n"
55
"Report-Msgid-Bugs-To: \n"
66
"POT-Creation-Date: 2015-05-29 12:18+0200\n"
7-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9-
"Language-Team: LANGUAGE <LL@li.org>\n"
7+
"PO-Revision-Date: 2019-04-15 14:00-0300\n"
8+
"Last-Translator: Pablo Juan Garcia <contato@pablogarcia.com.br>\n"
109
"MIME-Version: 1.0\n"
1110
"Content-Type: text/plain; charset=UTF-8\n"
1211
"Content-Transfer-Encoding: 8bit\n"
12+
"Language: pt_BR\n"
1313

1414
#: ../../Behavioral/Visitor/README.rst:2
1515
msgid "`Visitor`__"
16-
msgstr ""
16+
msgstr "`Visitante (Visitor)`__"
1717

1818
#: ../../Behavioral/Visitor/README.rst:5
1919
msgid "Purpose"
20-
msgstr ""
20+
msgstr "Objetivo"
2121

2222
#: ../../Behavioral/Visitor/README.rst:7
2323
msgid ""
@@ -26,26 +26,33 @@ msgid ""
2626
" classes have to define a contract to allow visitors (the ``Role::accept`` "
2727
"method in the example)."
2828
msgstr ""
29+
"O Padrão Visitante deixa as suas operações terceirizadas em objetos para "
30+
"outros objetos. A principal razão para fazer isto é manter a separação de "
31+
"preocupações. Porém, classes precisam definir um contrato para permitir "
32+
"visitantes (o método ``Role::accept`` no exemplo)."
2933

3034
#: ../../Behavioral/Visitor/README.rst:12
3135
msgid ""
3236
"The contract is an abstract class but you can have also a clean interface. "
3337
"In that case, each Visitor has to choose itself which method to invoke on "
3438
"the visitor."
3539
msgstr ""
40+
"O contrato é uma classe abstrata, mas você pode ter também uma interface limpa. "
41+
"Neste caso, cada visitante tem que escolher a si mesmo qual método invocar no "
42+
"visitante."
3643

3744
#: ../../Behavioral/Visitor/README.rst:17
3845
msgid "UML Diagram"
39-
msgstr ""
46+
msgstr "Diagrama UML"
4047

4148
#: ../../Behavioral/Visitor/README.rst:24
4249
msgid "Code"
43-
msgstr ""
50+
msgstr "Código"
4451

4552
#: ../../Behavioral/Visitor/README.rst:26
4653
msgid "You can also find this code on `GitHub`_"
47-
msgstr ""
54+
msgstr "Você também pode encontrar este código no `GitHub`_"
4855

4956
#: ../../Behavioral/Visitor/README.rst:59
5057
msgid "Test"
51-
msgstr ""
58+
msgstr "Teste"

0 commit comments

Comments
 (0)