Files
2020-05-04 10:26:29 +09:00
..
2020-05-04 10:26:29 +09:00

# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2011-2019, Dominik Liebler and contributors
# This file is distributed under the same license as the DesignPatternsPHP
# package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: DesignPatternsPHP 1.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-04 00:50+0900\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.8.0\n"

#: ../../Structural/Composite/README.rst:2
msgid "`Composite`__"
msgstr ""

#: ../../Structural/Composite/README.rst:5
msgid "Purpose"
msgstr ""

#: ../../Structural/Composite/README.rst:7
msgid ""
"To treat a group of objects the same way as a single instance of the "
"object."
msgstr ""

#: ../../Structural/Composite/README.rst:11
msgid "Examples"
msgstr ""

#: ../../Structural/Composite/README.rst:13
msgid ""
"a form class instance handles all its form elements like a single "
"instance of the form, when ``render()`` is called, it subsequently runs "
"through all its child elements and calls ``render()`` on them"
msgstr ""

#: ../../Structural/Composite/README.rst:18
msgid "UML Diagram"
msgstr ""

#: ../../Structural/Composite/README.rst:25
msgid "Code"
msgstr ""

#: ../../Structural/Composite/README.rst:27
msgid "You can also find this code on `GitHub`_"
msgstr ""

#: ../../Structural/Composite/README.rst:29
msgid "Renderable.php"
msgstr ""

#: ../../Structural/Composite/README.rst:35
msgid "Form.php"
msgstr ""

#: ../../Structural/Composite/README.rst:41
msgid "InputElement.php"
msgstr ""

#: ../../Structural/Composite/README.rst:47
msgid "TextElement.php"
msgstr ""

#: ../../Structural/Composite/README.rst:54
msgid "Test"
msgstr ""

#: ../../Structural/Composite/README.rst:56
msgid "Tests/CompositeTest.php"
msgstr ""