Files
Dominik Liebler 68e469fb5f fix copyright year
2020-09-01 08:02:15 +02:00
..
2020-09-01 08:02:15 +02:00

# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2011-2020, 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"

#: ../../Behavioral/ChainOfResponsibilities/README.rst:2
msgid "`Chain Of Responsibilities`__"
msgstr ""

#: ../../Behavioral/ChainOfResponsibilities/README.rst:5
msgid "Purpose"
msgstr ""

#: ../../Behavioral/ChainOfResponsibilities/README.rst:7
msgid ""
"To build a chain of objects to handle a call in sequential order. If one "
"object cannot handle a call, it delegates the call to the next in the "
"chain and so forth."
msgstr ""

#: ../../Behavioral/ChainOfResponsibilities/README.rst:12
msgid "Examples"
msgstr ""

#: ../../Behavioral/ChainOfResponsibilities/README.rst:14
msgid ""
"logging framework, where each chain element decides autonomously what to "
"do with a log message"
msgstr ""

#: ../../Behavioral/ChainOfResponsibilities/README.rst:16
msgid "a Spam filter"
msgstr ""

#: ../../Behavioral/ChainOfResponsibilities/README.rst:17
msgid ""
"Caching: first object is an instance of e.g. a Memcached Interface, if "
"that \"misses\" it delegates the call to the database interface"
msgstr ""

#: ../../Behavioral/ChainOfResponsibilities/README.rst:21
msgid "UML Diagram"
msgstr ""

#: ../../Behavioral/ChainOfResponsibilities/README.rst:28
msgid "Code"
msgstr ""

#: ../../Behavioral/ChainOfResponsibilities/README.rst:30
msgid "You can also find this code on `GitHub`_"
msgstr ""

#: ../../Behavioral/ChainOfResponsibilities/README.rst:32
msgid "Handler.php"
msgstr ""

#: ../../Behavioral/ChainOfResponsibilities/README.rst:38
msgid "Responsible/FastStorage.php"
msgstr ""

#: ../../Behavioral/ChainOfResponsibilities/README.rst:44
msgid "Responsible/SlowStorage.php"
msgstr ""

#: ../../Behavioral/ChainOfResponsibilities/README.rst:51
msgid "Test"
msgstr ""

#: ../../Behavioral/ChainOfResponsibilities/README.rst:53
msgid "Tests/ChainTest.php"
msgstr ""