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/Adapter/README.rst:2
msgid "`Adapter / Wrapper`__"
msgstr ""

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

#: ../../Structural/Adapter/README.rst:7
msgid ""
"To translate one interface for a class into a compatible interface. An "
"adapter allows classes to work together that normally could not because "
"of incompatible interfaces by providing its interface to clients while "
"using the original interface."
msgstr ""

#: ../../Structural/Adapter/README.rst:13
msgid "Examples"
msgstr ""

#: ../../Structural/Adapter/README.rst:15
msgid "DB Client libraries adapter"
msgstr ""

#: ../../Structural/Adapter/README.rst:16
msgid ""
"using multiple different webservices and adapters normalize data so that "
"the outcome is the same for all"
msgstr ""

#: ../../Structural/Adapter/README.rst:20
msgid "UML Diagram"
msgstr ""

#: ../../Structural/Adapter/README.rst:27
msgid "Code"
msgstr ""

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

#: ../../Structural/Adapter/README.rst:31
msgid "Book.php"
msgstr ""

#: ../../Structural/Adapter/README.rst:37
msgid "PaperBook.php"
msgstr ""

#: ../../Structural/Adapter/README.rst:43
msgid "EBook.php"
msgstr ""

#: ../../Structural/Adapter/README.rst:49
msgid "EBookAdapter.php"
msgstr ""

#: ../../Structural/Adapter/README.rst:55
msgid "Kindle.php"
msgstr ""

#: ../../Structural/Adapter/README.rst:62
msgid "Test"
msgstr ""

#: ../../Structural/Adapter/README.rst:64
msgid "Tests/AdapterTest.php"
msgstr ""