@@ -4,38 +4,41 @@ msgstr ""
4
4
"Project-Id-Version : DesignPatternsPHP 1.0\n "
5
5
"Report-Msgid-Bugs-To : \n "
6
6
"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-11 12:30-0300\n "
8
+ "Last-Translator : Pablo Juan Garcia <contato@pablogarcia.com.br>\n "
10
9
"MIME-Version : 1.0\n "
11
10
"Content-Type : text/plain; charset=UTF-8\n "
12
11
"Content-Transfer-Encoding : 8bit\n "
12
+ "Language : pt_BR\n "
13
13
14
14
#: ../../Behavioral/NullObject/README.rst:2
15
15
msgid "`Null Object`__"
16
- msgstr ""
16
+ msgstr "`Objeto Nulo (Null Object)`__ "
17
17
18
18
#: ../../Behavioral/NullObject/README.rst:5
19
19
msgid "Purpose"
20
- msgstr ""
20
+ msgstr "Objetivo "
21
21
22
22
#: ../../Behavioral/NullObject/README.rst:7
23
23
msgid ""
24
24
"NullObject is not a GoF design pattern but a schema which appears frequently"
25
25
" enough to be considered a pattern. It has the following benefits:"
26
26
msgstr ""
27
+ "Objeto Nulo (Null Object) não é um padrão de projeto GoF, mas um esquema o "
28
+ "qual aparece com frequencia suficiente para ser considerado um padrão. Ele tem "
29
+ "os seguintes benefícios:"
27
30
28
31
#: ../../Behavioral/NullObject/README.rst:11
29
32
msgid "Client code is simplified"
30
- msgstr ""
33
+ msgstr "Código do cliente é simplificado "
31
34
32
35
#: ../../Behavioral/NullObject/README.rst:12
33
36
msgid "Reduces the chance of null pointer exceptions"
34
- msgstr ""
37
+ msgstr "Reduz a chance de exceções de ponto nulo (null pointer exceptions) "
35
38
36
39
#: ../../Behavioral/NullObject/README.rst:13
37
40
msgid "Fewer conditionals require less test cases"
38
- msgstr ""
41
+ msgstr "Menores condicionais requerem menos casos de teste "
39
42
40
43
#: ../../Behavioral/NullObject/README.rst:15
41
44
msgid ""
@@ -45,39 +48,44 @@ msgid ""
45
48
"``$obj->callSomething();`` by eliminating the conditional check in client "
46
49
"code."
47
50
msgstr ""
51
+ "Métodos que retornam um objeto ou nulo devem ao invés disso, retornar um "
52
+ "objeto ou ``NullObject``. ``NullObject``\\ é simplesmente código boilerplate como ``if "
53
+ "(!is_null($obj)) { $obj->callSomething(); }`` para apenas "
54
+ "``$obj->callSomething();`` eliminando então a checagem condicional no código "
55
+ "cliente."
48
56
49
57
#: ../../Behavioral/NullObject/README.rst:22
50
58
msgid "Examples"
51
- msgstr ""
59
+ msgstr "Exemplos "
52
60
53
61
#: ../../Behavioral/NullObject/README.rst:24
54
62
msgid "Symfony2: null logger of profiler"
55
- msgstr ""
63
+ msgstr "Symfony2: logger nulo do profiler "
56
64
57
65
#: ../../Behavioral/NullObject/README.rst:25
58
66
msgid "Symfony2: null output in Symfony/Console"
59
- msgstr ""
67
+ msgstr "Symfony2: saída nula em Symfony/Console "
60
68
61
69
#: ../../Behavioral/NullObject/README.rst:26
62
70
msgid "null handler in a Chain of Responsibilities pattern"
63
- msgstr ""
71
+ msgstr "manipulador nulo em um padrão de Cadeia de Responsabilidades (Chain of Responsibilities) "
64
72
65
73
#: ../../Behavioral/NullObject/README.rst:27
66
74
msgid "null command in a Command pattern"
67
- msgstr ""
75
+ msgstr "commando nulo em um padrão Comando (Command) "
68
76
69
77
#: ../../Behavioral/NullObject/README.rst:30
70
78
msgid "UML Diagram"
71
- msgstr ""
79
+ msgstr "Diagrama UML "
72
80
73
81
#: ../../Behavioral/NullObject/README.rst:37
74
82
msgid "Code"
75
- msgstr ""
83
+ msgstr "Código "
76
84
77
85
#: ../../Behavioral/NullObject/README.rst:39
78
86
msgid "You can also find this code on `GitHub`_"
79
- msgstr ""
87
+ msgstr "Você também pode encontrar este código no `GitHub`_ "
80
88
81
89
#: ../../Behavioral/NullObject/README.rst:66
82
90
msgid "Test"
83
- msgstr ""
91
+ msgstr "Teste "
0 commit comments