@@ -13,51 +13,57 @@ msgstr ""
13
13
14
14
#: ../../Behavioral/ChainOfResponsibilities/README.rst:2
15
15
msgid "`Chain Of Responsibilities`__"
16
- msgstr ""
16
+ msgstr "`责任链模式`__ "
17
17
18
18
#: ../../Behavioral/ChainOfResponsibilities/README.rst:5
19
- msgid "Purpose: "
20
- msgstr ""
19
+ msgid "Purpose"
20
+ msgstr "目的 "
21
21
22
22
#: ../../Behavioral/ChainOfResponsibilities/README.rst:7
23
23
msgid ""
24
24
"To build a chain of objects to handle a call in sequential order. If one "
25
25
"object cannot handle a call, it delegates the call to the next in the chain "
26
26
"and so forth."
27
27
msgstr ""
28
+ "创建一个按顺序处理调用的对象链。"
29
+ "如果一个对象不能处理调用,"
30
+ "它将把调用委托给链中的下一个对象,以此类推。"
28
31
29
32
#: ../../Behavioral/ChainOfResponsibilities/README.rst:12
30
- msgid "Examples: "
31
- msgstr ""
33
+ msgid "Examples"
34
+ msgstr "例子 "
32
35
33
36
#: ../../Behavioral/ChainOfResponsibilities/README.rst:14
34
37
msgid ""
35
38
"logging framework, where each chain element decides autonomously what to do "
36
39
"with a log message"
37
40
msgstr ""
41
+ "日志框架,其中每个链元素自主决定如何处理日志信息"
38
42
39
43
#: ../../Behavioral/ChainOfResponsibilities/README.rst:16
40
44
msgid "a Spam filter"
41
45
msgstr ""
46
+ "垃圾邮件过滤器"
42
47
43
48
#: ../../Behavioral/ChainOfResponsibilities/README.rst:17
44
49
msgid ""
45
50
"Caching: first object is an instance of e.g. a Memcached Interface, if that "
46
51
"\" misses\" it delegates the call to the database interface"
47
52
msgstr ""
53
+ "缓存:第一个对象是一个例如Memcached的接口,如果“没有命中”它则委托调用数据库的接口"
48
54
49
55
#: ../../Behavioral/ChainOfResponsibilities/README.rst:25
50
56
msgid "UML Diagram"
51
- msgstr ""
57
+ msgstr "UML 图 "
52
58
53
59
#: ../../Behavioral/ChainOfResponsibilities/README.rst:32
54
60
msgid "Code"
55
- msgstr ""
61
+ msgstr "代码 "
56
62
57
63
#: ../../Behavioral/ChainOfResponsibilities/README.rst:34
58
64
msgid "You can also find this code on `GitHub`_"
59
- msgstr ""
65
+ msgstr "在 `GitHub`_ 上查看代码 "
60
66
61
67
#: ../../Behavioral/ChainOfResponsibilities/README.rst:61
62
68
msgid "Test"
63
- msgstr ""
69
+ msgstr "测试 "
0 commit comments