[spanish translation] - wip - creational patterns

This commit is contained in:
Daniel González Cerviño 2015-09-15 18:03:36 +02:00
parent 3dc7716869
commit ac7cca74cd
4 changed files with 60 additions and 50 deletions

View File

@ -48,48 +48,48 @@ msgstr "Puedes encontrar el código en `GitHub`_"
#: ../../Creational/AbstractFactory/README.rst:24
msgid "AbstractFactory.php"
msgstr ""
msgstr "AbstractFactory.php"
#: ../../Creational/AbstractFactory/README.rst:30
msgid "JsonFactory.php"
msgstr ""
msgstr "JsonFactory.php"
#: ../../Creational/AbstractFactory/README.rst:36
msgid "HtmlFactory.php"
msgstr ""
msgstr "HtmlFactory.php"
#: ../../Creational/AbstractFactory/README.rst:42
msgid "MediaInterface.php"
msgstr ""
msgstr "MediaInterface.php"
#: ../../Creational/AbstractFactory/README.rst:48
msgid "Picture.php"
msgstr ""
msgstr "Picture.php"
#: ../../Creational/AbstractFactory/README.rst:54
msgid "Text.php"
msgstr ""
msgstr "Text.php"
#: ../../Creational/AbstractFactory/README.rst:60
msgid "Json/Picture.php"
msgstr ""
msgstr "Json/Picture.php"
#: ../../Creational/AbstractFactory/README.rst:66
msgid "Json/Text.php"
msgstr ""
msgstr "Json/Text.php"
#: ../../Creational/AbstractFactory/README.rst:72
msgid "Html/Picture.php"
msgstr ""
msgstr "Html/Picture.php"
#: ../../Creational/AbstractFactory/README.rst:78
msgid "Html/Text.php"
msgstr ""
msgstr "Html/Text.php"
#: ../../Creational/AbstractFactory/README.rst:85
msgid "Test"
msgstr ""
msgstr "Test"
#: ../../Creational/AbstractFactory/README.rst:87
msgid "Tests/AbstractFactoryTest.php"
msgstr ""
msgstr "Tests/AbstractFactoryTest.php"

View File

@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: DesignPatternsPHP 1.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-29 12:18+0200\n"
"PO-Revision-Date: 2015-09-10 10:12+0100\n"
"PO-Revision-Date: 2015-09-11 11:42+0100\n"
"Last-Translator: Daniel González <daniel@desarrolla2.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -20,7 +20,7 @@ msgstr "`Constructor`__"
#: ../../Creational/Builder/README.rst:5
msgid "Purpose"
msgstr "Proposito"
msgstr "Propósito"
#: ../../Creational/Builder/README.rst:7
msgid "Builder is an interface that build parts of a complex object."
@ -58,7 +58,7 @@ msgstr "Ejemplos"
#: ../../Creational/Builder/README.rst:21
msgid "PHPUnit: Mock Builder"
msgstr ""
msgstr "PHPUnit: Mock Builder"
#: ../../Creational/Builder/README.rst:24
msgid "UML Diagram"
@ -74,48 +74,48 @@ msgstr "Puedes encontrar el código en `GitHub`_"
#: ../../Creational/Builder/README.rst:35
msgid "Director.php"
msgstr ""
msgstr "Director.php"
#: ../../Creational/Builder/README.rst:41
msgid "BuilderInterface.php"
msgstr ""
msgstr "BuilderInterface.php"
#: ../../Creational/Builder/README.rst:47
msgid "BikeBuilder.php"
msgstr ""
msgstr "BikeBuilder.php"
#: ../../Creational/Builder/README.rst:53
msgid "CarBuilder.php"
msgstr ""
msgstr "CarBuilder.php"
#: ../../Creational/Builder/README.rst:59
msgid "Parts/Vehicle.php"
msgstr ""
msgstr "Parts/Vehicle.php"
#: ../../Creational/Builder/README.rst:65
msgid "Parts/Bike.php"
msgstr ""
msgstr "Parts/Bike.php"
#: ../../Creational/Builder/README.rst:71
msgid "Parts/Car.php"
msgstr ""
msgstr "Parts/Car.php"
#: ../../Creational/Builder/README.rst:77
msgid "Parts/Engine.php"
msgstr ""
msgstr "Parts/Engine.php"
#: ../../Creational/Builder/README.rst:83
msgid "Parts/Wheel.php"
msgstr ""
msgstr "Parts/Wheel.php"
#: ../../Creational/Builder/README.rst:89
msgid "Parts/Door.php"
msgstr ""
msgstr "Parts/Door.php"
#: ../../Creational/Builder/README.rst:96
msgid "Test"
msgstr ""
msgstr "Test"
#: ../../Creational/Builder/README.rst:98
msgid "Tests/DirectorTest.php"
msgstr ""
msgstr "Tests/DirectorTest.php"

View File

@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: DesignPatternsPHP 1.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-29 12:18+0200\n"
"PO-Revision-Date: 2015-09-10 10:02+0100\n"
"PO-Revision-Date: 2015-09-15 17:15+0100\n"
"Last-Translator: Daniel González <daniel@desarrolla2.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -15,17 +15,19 @@ msgstr ""
#: ../../Creational/FactoryMethod/README.rst:2
msgid "`Factory Method`__"
msgstr ""
msgstr "`Factory Method`__"
#: ../../Creational/FactoryMethod/README.rst:5
msgid "Purpose"
msgstr ""
msgstr "Proposito"
#: ../../Creational/FactoryMethod/README.rst:7
msgid ""
"The good point over the SimpleFactory is you can subclass it to implement "
"different ways to create objects"
msgstr ""
"La principal ventaja de SimpleFactory es que puedes extender la clase para "
"implementar diferentes formas"
#: ../../Creational/FactoryMethod/README.rst:10
msgid "For simple case, this abstract class could be just an interface"
@ -42,14 +44,17 @@ msgid ""
"It means the FactoryMethod class depends on abstractions, not concrete "
"classes. This is the real trick compared to SimpleFactory or StaticFactory."
msgstr ""
"Esto significa que la clase FactoryMethod depende de abstraciones, no de "
"clases concretas. Esto es el truco con respecto a SimpleFactory o "
"StaticFactory"
#: ../../Creational/FactoryMethod/README.rst:20
msgid "UML Diagram"
msgstr ""
msgstr "Diagrama UML"
#: ../../Creational/FactoryMethod/README.rst:27
msgid "Code"
msgstr ""
msgstr "Código"
#: ../../Creational/FactoryMethod/README.rst:29
msgid "You can also find these code on `GitHub`_"
@ -57,36 +62,36 @@ msgstr "Puedes encontrar el código en `GitHub`_"
#: ../../Creational/FactoryMethod/README.rst:31
msgid "FactoryMethod.php"
msgstr ""
msgstr "FactoryMethod.php"
#: ../../Creational/FactoryMethod/README.rst:37
msgid "ItalianFactory.php"
msgstr ""
msgstr "ItalianFactory.php"
#: ../../Creational/FactoryMethod/README.rst:43
msgid "GermanFactory.php"
msgstr ""
msgstr "GermanFactory.php"
#: ../../Creational/FactoryMethod/README.rst:49
msgid "VehicleInterface.php"
msgstr ""
msgstr "VehicleInterface.php"
#: ../../Creational/FactoryMethod/README.rst:55
msgid "Porsche.php"
msgstr ""
msgstr "Porsche.php"
#: ../../Creational/FactoryMethod/README.rst:61
msgid "Bicycle.php"
msgstr ""
msgstr "Bicycle.php"
#: ../../Creational/FactoryMethod/README.rst:67
msgid "Ferrari.php"
msgstr ""
msgstr "Ferrari.php"
#: ../../Creational/FactoryMethod/README.rst:74
msgid "Test"
msgstr ""
msgstr "Test"
#: ../../Creational/FactoryMethod/README.rst:76
msgid "Tests/FactoryMethodTest.php"
msgstr ""
msgstr "Tests/FactoryMethodTest.php"

View File

@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: DesignPatternsPHP 1.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-05-29 12:18+0200\n"
"PO-Revision-Date: 2015-09-10 10:02+0100\n"
"PO-Revision-Date: 2015-09-11 11:31+0100\n"
"Last-Translator: Daniel González <daniel@desarrolla2.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -15,43 +15,48 @@ msgstr ""
#: ../../Creational/Multiton/README.rst:2
msgid "Multiton"
msgstr ""
msgstr "Multiton"
#: ../../Creational/Multiton/README.rst:4
msgid ""
"**THIS IS CONSIDERED TO BE AN ANTI-PATTERN! FOR BETTER TESTABILITY AND "
"MAINTAINABILITY USE DEPENDENCY INJECTION!**"
msgstr ""
"**ESTO ES CONSIDERADO UN ANTI-PATRÓN. PARA MEJOR TESTEABILIDAD Y "
"MANTENIBILIDAD USA INYECCIÓN DE DEPENDENCIAS**"
#: ../../Creational/Multiton/README.rst:8
msgid "Purpose"
msgstr ""
msgstr "Propósito"
#: ../../Creational/Multiton/README.rst:10
msgid ""
"To have only a list of named instances that are used, like a singleton but "
"with n instances."
msgstr ""
"Tener una única lista de los nombres de las instancias que has usando, como "
"en el singleton pero con varias instancias."
#: ../../Creational/Multiton/README.rst:14
msgid "Examples"
msgstr ""
msgstr "Ejemplos"
#: ../../Creational/Multiton/README.rst:16
msgid "2 DB Connectors, e.g. one for MySQL, the other for SQLite"
msgstr ""
msgstr "2 Conectores de base de datos, Ej. uno para MySQL el otro para SQLite."
#: ../../Creational/Multiton/README.rst:17
msgid "multiple Loggers (one for debug messages, one for errors)"
msgstr ""
"Múltiples sistemas de log ( no para mensajes de debug, uno para errores )."
#: ../../Creational/Multiton/README.rst:20
msgid "UML Diagram"
msgstr ""
msgstr "Diagrama UML"
#: ../../Creational/Multiton/README.rst:27
msgid "Code"
msgstr ""
msgstr "Código"
#: ../../Creational/Multiton/README.rst:29
msgid "You can also find these code on `GitHub`_"
@ -59,8 +64,8 @@ msgstr "Puedes encontrar el código en `GitHub`_"
#: ../../Creational/Multiton/README.rst:31
msgid "Multiton.php"
msgstr ""
msgstr "Multiton.php"
#: ../../Creational/Multiton/README.rst:38
msgid "Test"
msgstr ""
msgstr "Test"