Skip to content

Commit a3431b7

Browse files
committed
Merge pull request DesignPatternsPHP#174 from desarrolla2/master
Spanish translation part 1
2 parents be67a68 + ac7cca7 commit a3431b7

File tree

11 files changed

+278
-172
lines changed

11 files changed

+278
-172
lines changed
Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1-
#
1+
#
22
msgid ""
33
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 <[email protected]>\n"
107
"MIME-Version: 1.0\n"
118
"Content-Type: text/plain; charset=UTF-8\n"
129
"Content-Transfer-Encoding: 8bit\n"
10+
"Language: es\n"
11+
"PO-Revision-Date: \n"
12+
"Last-Translator: Daniel González <[email protected]>\n"
13+
"Language-Team: \n"
14+
"X-Generator: Poedit 1.5.4\n"
1315

1416
#: ../../Creational/AbstractFactory/README.rst:2
1517
msgid "`Abstract Factory`__"
16-
msgstr ""
18+
msgstr "`Factoria Abstracta`__"
1719

1820
#: ../../Creational/AbstractFactory/README.rst:5
1921
msgid "Purpose"
20-
msgstr ""
22+
msgstr "Proposito"
2123

2224
#: ../../Creational/AbstractFactory/README.rst:7
2325
msgid ""
@@ -26,63 +28,68 @@ msgid ""
2628
"interface. The client of the abstract factory does not care about how these "
2729
"objects are created, he just knows how they go together."
2830
msgstr ""
31+
"Para crear una serie de objetos relacionados o dependientes sin especificar "
32+
"a que clase concreta pertenecen. Normalmente las clases creadas implementan "
33+
"las mismas interfaces. El cliente de la factoría abstracta no necesita "
34+
"preocupase por como estos objetos son creados, el solo sabe que tiene que "
35+
"hacer con ellos."
2936

3037
#: ../../Creational/AbstractFactory/README.rst:13
3138
msgid "UML Diagram"
32-
msgstr ""
39+
msgstr "Diagrama UML"
3340

3441
#: ../../Creational/AbstractFactory/README.rst:20
3542
msgid "Code"
36-
msgstr ""
43+
msgstr "Código"
3744

3845
#: ../../Creational/AbstractFactory/README.rst:22
3946
msgid "You can also find these code on `GitHub`_"
40-
msgstr ""
47+
msgstr "Puedes encontrar el código en `GitHub`_"
4148

4249
#: ../../Creational/AbstractFactory/README.rst:24
4350
msgid "AbstractFactory.php"
44-
msgstr ""
51+
msgstr "AbstractFactory.php"
4552

4653
#: ../../Creational/AbstractFactory/README.rst:30
4754
msgid "JsonFactory.php"
48-
msgstr ""
55+
msgstr "JsonFactory.php"
4956

5057
#: ../../Creational/AbstractFactory/README.rst:36
5158
msgid "HtmlFactory.php"
52-
msgstr ""
59+
msgstr "HtmlFactory.php"
5360

5461
#: ../../Creational/AbstractFactory/README.rst:42
5562
msgid "MediaInterface.php"
56-
msgstr ""
63+
msgstr "MediaInterface.php"
5764

5865
#: ../../Creational/AbstractFactory/README.rst:48
5966
msgid "Picture.php"
60-
msgstr ""
67+
msgstr "Picture.php"
6168

6269
#: ../../Creational/AbstractFactory/README.rst:54
6370
msgid "Text.php"
64-
msgstr ""
71+
msgstr "Text.php"
6572

6673
#: ../../Creational/AbstractFactory/README.rst:60
6774
msgid "Json/Picture.php"
68-
msgstr ""
75+
msgstr "Json/Picture.php"
6976

7077
#: ../../Creational/AbstractFactory/README.rst:66
7178
msgid "Json/Text.php"
72-
msgstr ""
79+
msgstr "Json/Text.php"
7380

7481
#: ../../Creational/AbstractFactory/README.rst:72
7582
msgid "Html/Picture.php"
76-
msgstr ""
83+
msgstr "Html/Picture.php"
7784

7885
#: ../../Creational/AbstractFactory/README.rst:78
7986
msgid "Html/Text.php"
80-
msgstr ""
87+
msgstr "Html/Text.php"
8188

8289
#: ../../Creational/AbstractFactory/README.rst:85
8390
msgid "Test"
84-
msgstr ""
91+
msgstr "Test"
8592

8693
#: ../../Creational/AbstractFactory/README.rst:87
8794
msgid "Tests/AbstractFactoryTest.php"
88-
msgstr ""
95+
msgstr "Tests/AbstractFactoryTest.php"
Lines changed: 34 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,110 +1,121 @@
1-
#
1+
#
22
msgid ""
33
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 <[email protected]>\n"
7+
"PO-Revision-Date: 2015-09-11 11:42+0100\n"
8+
"Last-Translator: Daniel González <[email protected]>\n"
109
"MIME-Version: 1.0\n"
1110
"Content-Type: text/plain; charset=UTF-8\n"
1211
"Content-Transfer-Encoding: 8bit\n"
12+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13+
"Language: es\n"
14+
"Language-Team: \n"
15+
"X-Generator: Poedit 1.5.4\n"
1316

1417
#: ../../Creational/Builder/README.rst:2
1518
msgid "`Builder`__"
16-
msgstr ""
19+
msgstr "`Constructor`__"
1720

1821
#: ../../Creational/Builder/README.rst:5
1922
msgid "Purpose"
20-
msgstr ""
23+
msgstr "Propósito"
2124

2225
#: ../../Creational/Builder/README.rst:7
2326
msgid "Builder is an interface that build parts of a complex object."
2427
msgstr ""
28+
"El constructor es una interfaz que construye parte de un objeto complejo."
2529

2630
#: ../../Creational/Builder/README.rst:9
2731
msgid ""
2832
"Sometimes, if the builder has a better knowledge of what it builds, this "
2933
"interface could be an abstract class with default methods (aka adapter)."
3034
msgstr ""
35+
"A veces, si el constructor conoce bien lo que está construyendo, esta "
36+
"interfaz podría ser una clase abstracta con métodos por defecto ( también "
37+
"conocido como Adaptador )"
3138

3239
#: ../../Creational/Builder/README.rst:12
3340
msgid ""
3441
"If you have a complex inheritance tree for objects, it is logical to have a "
3542
"complex inheritance tree for builders too."
3643
msgstr ""
44+
"Si tienes una herencia compleja de tu árbol de objetos, es lógico tener "
45+
"también una herencia compleja en el árbol de constructores."
3746

3847
#: ../../Creational/Builder/README.rst:15
3948
msgid ""
4049
"Note: Builders have often a fluent interface, see the mock builder of "
4150
"PHPUnit for example."
4251
msgstr ""
52+
"Nota: Los constructores suelen tener una interfaz fluida, fíjate en el mock "
53+
"builder de PHPUnit por ejemplo."
4354

4455
#: ../../Creational/Builder/README.rst:19
4556
msgid "Examples"
46-
msgstr ""
57+
msgstr "Ejemplos"
4758

4859
#: ../../Creational/Builder/README.rst:21
4960
msgid "PHPUnit: Mock Builder"
50-
msgstr ""
61+
msgstr "PHPUnit: Mock Builder"
5162

5263
#: ../../Creational/Builder/README.rst:24
5364
msgid "UML Diagram"
54-
msgstr ""
65+
msgstr "Diagrama UML"
5566

5667
#: ../../Creational/Builder/README.rst:31
5768
msgid "Code"
58-
msgstr ""
69+
msgstr "Código"
5970

6071
#: ../../Creational/Builder/README.rst:33
6172
msgid "You can also find these code on `GitHub`_"
62-
msgstr ""
73+
msgstr "Puedes encontrar el código en `GitHub`_"
6374

6475
#: ../../Creational/Builder/README.rst:35
6576
msgid "Director.php"
66-
msgstr ""
77+
msgstr "Director.php"
6778

6879
#: ../../Creational/Builder/README.rst:41
6980
msgid "BuilderInterface.php"
70-
msgstr ""
81+
msgstr "BuilderInterface.php"
7182

7283
#: ../../Creational/Builder/README.rst:47
7384
msgid "BikeBuilder.php"
74-
msgstr ""
85+
msgstr "BikeBuilder.php"
7586

7687
#: ../../Creational/Builder/README.rst:53
7788
msgid "CarBuilder.php"
78-
msgstr ""
89+
msgstr "CarBuilder.php"
7990

8091
#: ../../Creational/Builder/README.rst:59
8192
msgid "Parts/Vehicle.php"
82-
msgstr ""
93+
msgstr "Parts/Vehicle.php"
8394

8495
#: ../../Creational/Builder/README.rst:65
8596
msgid "Parts/Bike.php"
86-
msgstr ""
97+
msgstr "Parts/Bike.php"
8798

8899
#: ../../Creational/Builder/README.rst:71
89100
msgid "Parts/Car.php"
90-
msgstr ""
101+
msgstr "Parts/Car.php"
91102

92103
#: ../../Creational/Builder/README.rst:77
93104
msgid "Parts/Engine.php"
94-
msgstr ""
105+
msgstr "Parts/Engine.php"
95106

96107
#: ../../Creational/Builder/README.rst:83
97108
msgid "Parts/Wheel.php"
98-
msgstr ""
109+
msgstr "Parts/Wheel.php"
99110

100111
#: ../../Creational/Builder/README.rst:89
101112
msgid "Parts/Door.php"
102-
msgstr ""
113+
msgstr "Parts/Door.php"
103114

104115
#: ../../Creational/Builder/README.rst:96
105116
msgid "Test"
106-
msgstr ""
117+
msgstr "Test"
107118

108119
#: ../../Creational/Builder/README.rst:98
109120
msgid "Tests/DirectorTest.php"
110-
msgstr ""
121+
msgstr "Tests/DirectorTest.php"
Lines changed: 25 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,33 @@
1-
#
1+
#
22
msgid ""
33
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 <[email protected]>\n"
7+
"PO-Revision-Date: 2015-09-15 17:15+0100\n"
8+
"Last-Translator: Daniel González <[email protected]>\n"
109
"MIME-Version: 1.0\n"
1110
"Content-Type: text/plain; charset=UTF-8\n"
1211
"Content-Transfer-Encoding: 8bit\n"
12+
"Language: es\n"
13+
"Language-Team: \n"
14+
"X-Generator: Poedit 1.5.4\n"
1315

1416
#: ../../Creational/FactoryMethod/README.rst:2
1517
msgid "`Factory Method`__"
16-
msgstr ""
18+
msgstr "`Factory Method`__"
1719

1820
#: ../../Creational/FactoryMethod/README.rst:5
1921
msgid "Purpose"
20-
msgstr ""
22+
msgstr "Proposito"
2123

2224
#: ../../Creational/FactoryMethod/README.rst:7
2325
msgid ""
2426
"The good point over the SimpleFactory is you can subclass it to implement "
2527
"different ways to create objects"
2628
msgstr ""
29+
"La principal ventaja de SimpleFactory es que puedes extender la clase para "
30+
"implementar diferentes formas"
2731

2832
#: ../../Creational/FactoryMethod/README.rst:10
2933
msgid "For simple case, this abstract class could be just an interface"
@@ -40,51 +44,54 @@ msgid ""
4044
"It means the FactoryMethod class depends on abstractions, not concrete "
4145
"classes. This is the real trick compared to SimpleFactory or StaticFactory."
4246
msgstr ""
47+
"Esto significa que la clase FactoryMethod depende de abstraciones, no de "
48+
"clases concretas. Esto es el truco con respecto a SimpleFactory o "
49+
"StaticFactory"
4350

4451
#: ../../Creational/FactoryMethod/README.rst:20
4552
msgid "UML Diagram"
46-
msgstr ""
53+
msgstr "Diagrama UML"
4754

4855
#: ../../Creational/FactoryMethod/README.rst:27
4956
msgid "Code"
50-
msgstr ""
57+
msgstr "Código"
5158

5259
#: ../../Creational/FactoryMethod/README.rst:29
5360
msgid "You can also find these code on `GitHub`_"
54-
msgstr ""
61+
msgstr "Puedes encontrar el código en `GitHub`_"
5562

5663
#: ../../Creational/FactoryMethod/README.rst:31
5764
msgid "FactoryMethod.php"
58-
msgstr ""
65+
msgstr "FactoryMethod.php"
5966

6067
#: ../../Creational/FactoryMethod/README.rst:37
6168
msgid "ItalianFactory.php"
62-
msgstr ""
69+
msgstr "ItalianFactory.php"
6370

6471
#: ../../Creational/FactoryMethod/README.rst:43
6572
msgid "GermanFactory.php"
66-
msgstr ""
73+
msgstr "GermanFactory.php"
6774

6875
#: ../../Creational/FactoryMethod/README.rst:49
6976
msgid "VehicleInterface.php"
70-
msgstr ""
77+
msgstr "VehicleInterface.php"
7178

7279
#: ../../Creational/FactoryMethod/README.rst:55
7380
msgid "Porsche.php"
74-
msgstr ""
81+
msgstr "Porsche.php"
7582

7683
#: ../../Creational/FactoryMethod/README.rst:61
7784
msgid "Bicycle.php"
78-
msgstr ""
85+
msgstr "Bicycle.php"
7986

8087
#: ../../Creational/FactoryMethod/README.rst:67
8188
msgid "Ferrari.php"
82-
msgstr ""
89+
msgstr "Ferrari.php"
8390

8491
#: ../../Creational/FactoryMethod/README.rst:74
8592
msgid "Test"
86-
msgstr ""
93+
msgstr "Test"
8794

8895
#: ../../Creational/FactoryMethod/README.rst:76
8996
msgid "Tests/FactoryMethodTest.php"
90-
msgstr ""
97+
msgstr "Tests/FactoryMethodTest.php"

0 commit comments

Comments
 (0)