From 9c8ab9f01fcfd980aeb13f4b52e3a9baaa7c2415 Mon Sep 17 00:00:00 2001 From: Piotr Grabski-Gradzinski Date: Thu, 29 Jun 2017 12:33:14 +0200 Subject: [PATCH] [pl translation] Structural/Composite. --- .../Structural/Composite/README.po | 86 +++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 locale/pl/LC_MESSAGES/Structural/Composite/README.po diff --git a/locale/pl/LC_MESSAGES/Structural/Composite/README.po b/locale/pl/LC_MESSAGES/Structural/Composite/README.po new file mode 100644 index 0000000..81eeea4 --- /dev/null +++ b/locale/pl/LC_MESSAGES/Structural/Composite/README.po @@ -0,0 +1,86 @@ +# +msgid "" +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-06-02 00:33+0300\n" +"Last-Translator: Piotr Grabski-Gradzinski \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl\n" + +#: ../../Structural/Composite/README.rst:2 +msgid "`Composite`__" +msgstr "" +"`Kompozyt `_ (`Composite`__)" + +#: ../../Structural/Composite/README.rst:5 +msgid "Purpose" +msgstr "Przeznaczenie" + +#: ../../Structural/Composite/README.rst:7 +msgid "" +"To treat a group of objects the same way as a single instance of the object." +msgstr "" +"Pozwala traktować grupę obiektów jako pojendczy obiekt. Dzięki temu operacje na grupie " +"obiektów wykonujemy w takim sam sposób jakbyśmy wykonywali je na pojedynczym obiekcie." + +#: ../../Structural/Composite/README.rst:11 +msgid "Examples" +msgstr "Przykłady" + +#: ../../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 "" +"Экземпляр класса Form обрабатывает все свои элементы формы, как будто это " +"один экземпляр. И когда вызывается метод ``render()``, он перебирает все " +"дочерние элементы и вызывает их собственный ``render()``." + +#: ../../Structural/Composite/README.rst:16 +msgid "" +"``Zend_Config``: a tree of configuration options, each one is a " +"``Zend_Config`` object itself" +msgstr "" +"``Zend_Config``: drzewo opcji konfiguracyjnych - każdy z elementów tego drzewa jest " +"również obiektem klasy ``Zend_Config``" + +#: ../../Structural/Composite/README.rst:20 +msgid "UML Diagram" +msgstr "Diagram UML" + +#: ../../Structural/Composite/README.rst:27 +msgid "Code" +msgstr "Kod" + +#: ../../Structural/Composite/README.rst:29 +msgid "You can also find this code on `GitHub`_" +msgstr "Ten kod znajdziesz również na `GitHub`_." + +#: ../../Structural/Composite/README.rst:31 +msgid "FormElement.php" +msgstr "FormElement.php" + +#: ../../Structural/Composite/README.rst:37 +msgid "Form.php" +msgstr "Form.php" + +#: ../../Structural/Composite/README.rst:43 +msgid "InputElement.php" +msgstr "InputElement.php" + +#: ../../Structural/Composite/README.rst:49 +msgid "TextElement.php" +msgstr "TextElement.php" + +#: ../../Structural/Composite/README.rst:56 +msgid "Test" +msgstr "Testy" + +#: ../../Structural/Composite/README.rst:58 +msgid "Tests/CompositeTest.php" +msgstr "Tests/CompositeTest.php"