[translate] Builder

This commit is contained in:
tanden
2020-05-04 13:42:22 +09:00
parent 00f507b35b
commit bb190e5627

View File

@@ -2,7 +2,7 @@
# Copyright (C) 2011-2019, Dominik Liebler and contributors # Copyright (C) 2011-2019, Dominik Liebler and contributors
# This file is distributed under the same license as the DesignPatternsPHP # This file is distributed under the same license as the DesignPatternsPHP
# package. # package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2020. # Sumita Takaki <sumita.takaki@gmail.com>, 2020.
# #
#, fuzzy #, fuzzy
msgid "" msgid ""
@@ -11,7 +11,7 @@ msgstr ""
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-04 00:50+0900\n" "POT-Creation-Date: 2020-05-04 00:50+0900\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: Sumita Takaki <sumita.takaki@gmail.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n" "Content-Type: text/plain; charset=utf-8\n"
@@ -20,53 +20,58 @@ msgstr ""
#: ../../Creational/Builder/README.rst:2 #: ../../Creational/Builder/README.rst:2
msgid "`Builder`__" msgid "`Builder`__"
msgstr "" msgstr "`Builderパターン`__"
#: ../../Creational/Builder/README.rst:5 #: ../../Creational/Builder/README.rst:5
msgid "Purpose" msgid "Purpose"
msgstr "" msgstr "目的"
#: ../../Creational/Builder/README.rst:7 #: ../../Creational/Builder/README.rst:7
msgid "Builder is an interface that build parts of a complex object." msgid "Builder is an interface that build parts of a complex object."
msgstr "" msgstr "オブジェクトを組み合わせて、複雑なオブジェクトを構築するインターフェースをBuilderクラスと呼びます。"
#: ../../Creational/Builder/README.rst:9 #: ../../Creational/Builder/README.rst:9
msgid "" msgid ""
"Sometimes, if the builder has a better knowledge of what it builds, this " "Sometimes, if the builder has a better knowledge of what it builds, this "
"interface could be an abstract class with default methods (aka adapter)." "interface could be an abstract class with default methods (aka adapter)."
msgstr "" msgstr ""
"ときに、Builderクラス自身が何を構築するのか知っている場合、このインターフェースはデフォルトメソッド"
"を持つ抽象クラスとなりますAdapterパターン。"
#: ../../Creational/Builder/README.rst:12 #: ../../Creational/Builder/README.rst:12
msgid "" msgid ""
"If you have a complex inheritance tree for objects, it is logical to have" "If you have a complex inheritance tree for objects, it is logical to have"
" a complex inheritance tree for builders too." " a complex inheritance tree for builders too."
msgstr "" msgstr ""
"オブジェクトの複雑な継承ツリーがある場合、Builderクラスにも複雑な継承ツリーがあっておかしくありません。"
#: ../../Creational/Builder/README.rst:15 #: ../../Creational/Builder/README.rst:15
msgid "" msgid ""
"Note: Builders have often a fluent interface, see the mock builder of " "Note: Builders have often a fluent interface, see the mock builder of "
"PHPUnit for example." "PHPUnit for example."
msgstr "" msgstr ""
"注: Builderクラスの多くは、流れるようなインターフェースfluent interfaceを持っています。"
"例としてPHPUnitのモックビルダーをご覧ください。"
#: ../../Creational/Builder/README.rst:19 #: ../../Creational/Builder/README.rst:19
msgid "Examples" msgid "Examples"
msgstr "" msgstr ""
#: ../../Creational/Builder/README.rst:21 #: ../../Creational/Builder/README.rst:21
msgid "PHPUnit: Mock Builder" msgid "PHPUnit: Mock Builder"
msgstr "" msgstr "PHPUnit: モックビルダー"
#: ../../Creational/Builder/README.rst:24 #: ../../Creational/Builder/README.rst:24
msgid "UML Diagram" msgid "UML Diagram"
msgstr "" msgstr "クラス図"
#: ../../Creational/Builder/README.rst:31 #: ../../Creational/Builder/README.rst:31
msgid "Code" msgid "Code"
msgstr "" msgstr "サンプルコード"
#: ../../Creational/Builder/README.rst:33 #: ../../Creational/Builder/README.rst:33
msgid "You can also find this code on `GitHub`_" msgid "You can also find this code on `GitHub`_"
msgstr "" msgstr "サンプルコードは `GitHub`_ でも確認することができます。"
#: ../../Creational/Builder/README.rst:35 #: ../../Creational/Builder/README.rst:35
msgid "Director.php" msgid "Director.php"
@@ -110,7 +115,7 @@ msgstr ""
#: ../../Creational/Builder/README.rst:96 #: ../../Creational/Builder/README.rst:96
msgid "Test" msgid "Test"
msgstr "" msgstr "テスト"
#: ../../Creational/Builder/README.rst:98 #: ../../Creational/Builder/README.rst:98
msgid "Tests/DirectorTest.php" msgid "Tests/DirectorTest.php"