2
2
# Copyright (C) 2011-2019, Dominik Liebler and contributors
3
3
# This file is distributed under the same license as the DesignPatternsPHP
4
4
# package.
5
- # FIRST AUTHOR <EMAIL@ADDRESS >, 2020.
5
+ # Sumita Takaki <sumita.takaki@gmail.com >, 2020.
6
6
#
7
7
#, fuzzy
8
8
msgid ""
@@ -11,7 +11,7 @@ msgstr ""
11
11
"Report-Msgid-Bugs-To : \n "
12
12
"POT-Creation-Date : 2020-05-04 00:50+0900\n "
13
13
"PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
14
- "Last-Translator : FULL NAME <EMAIL@ADDRESS >\n "
14
+ "Last-Translator : Sumita Takaki <sumita.takaki@gmail.com >\n "
15
15
"Language-Team : LANGUAGE <LL@li.org>\n "
16
16
"MIME-Version : 1.0\n "
17
17
"Content-Type : text/plain; charset=utf-8\n "
@@ -20,59 +20,62 @@ msgstr ""
20
20
21
21
#: ../../Creational/Singleton/README.rst:2
22
22
msgid "`Singleton`__"
23
- msgstr ""
23
+ msgstr "`シングルトン パターン`__ "
24
24
25
25
#: ../../Creational/Singleton/README.rst:4
26
26
msgid ""
27
27
"**THIS IS CONSIDERED TO BE AN ANTI-PATTERN! FOR BETTER TESTABILITY AND "
28
28
"MAINTAINABILITY USE DEPENDENCY INJECTION!**"
29
29
msgstr ""
30
+ "**これはアンチパターンと捉えるべきです!"
31
+ "よりよいテスト性と保守性のために、「依存性の注入」(Dependency injection)を使用してください!**"
30
32
31
33
#: ../../Creational/Singleton/README.rst:8
32
34
msgid "Purpose"
33
- msgstr ""
35
+ msgstr "目的 "
34
36
35
37
#: ../../Creational/Singleton/README.rst:10
36
38
msgid ""
37
39
"To have only one instance of this object in the application that will "
38
40
"handle all calls."
39
41
msgstr ""
42
+ "オブジェクトへの呼び出しを行うアプリケーション内で、そのオブジェクトのインスタンスが1つだけしか存在しないことを保証するために使用されます。"
40
43
41
44
#: ../../Creational/Singleton/README.rst:14
42
45
msgid "Examples"
43
- msgstr ""
46
+ msgstr "例 "
44
47
45
48
#: ../../Creational/Singleton/README.rst:16
46
49
msgid "DB Connector"
47
- msgstr ""
50
+ msgstr "DBコネクター "
48
51
49
52
#: ../../Creational/Singleton/README.rst:17
50
53
msgid "Logger"
51
- msgstr ""
54
+ msgstr "ロガー "
52
55
53
56
#: ../../Creational/Singleton/README.rst:18
54
57
msgid "Lock file for the application (there is only one in the filesystem ...)"
55
- msgstr ""
58
+ msgstr "アプリケーションのロックファイル(ファイルシステムには一つしかありません...) "
56
59
57
60
#: ../../Creational/Singleton/README.rst:22
58
61
msgid "UML Diagram"
59
- msgstr ""
62
+ msgstr "クラス図 "
60
63
61
64
#: ../../Creational/Singleton/README.rst:29
62
65
msgid "Code"
63
- msgstr ""
66
+ msgstr "サンプルコード "
64
67
65
68
#: ../../Creational/Singleton/README.rst:31
66
69
msgid "You can also find this code on `GitHub`_"
67
- msgstr ""
70
+ msgstr "サンプルコードは `GitHub`_ でも確認することができます。 "
68
71
69
72
#: ../../Creational/Singleton/README.rst:33
70
73
msgid "Singleton.php"
71
74
msgstr ""
72
75
73
76
#: ../../Creational/Singleton/README.rst:40
74
77
msgid "Test"
75
- msgstr ""
78
+ msgstr "テスト "
76
79
77
80
#: ../../Creational/Singleton/README.rst:42
78
81
msgid "Tests/SingletonTest.php"
0 commit comments