Skip to content

Commit 284cb13

Browse files
committed
translated
1 parent 9324cb7 commit 284cb13

File tree

1 file changed

+36
-31
lines changed
  • locale/zh/LC_MESSAGES/reference

1 file changed

+36
-31
lines changed
Lines changed: 36 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,42 @@
1-
#
1+
#
22
msgid ""
33
msgstr ""
44
"Project-Id-Version: mongodb-manual 2.6\n"
55
"Report-Msgid-Bugs-To: \n"
66
"POT-Creation-Date: 2014-09-03 15:39-0400\n"
7-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
7+
"PO-Revision-Date: 2015-01-17 23:01+0800\n"
88
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
99
"Language-Team: LANGUAGE <[email protected]>\n"
1010
"MIME-Version: 1.0\n"
1111
"Content-Type: text/plain; charset=UTF-8\n"
1212
"Content-Transfer-Encoding: 8bit\n"
13+
"X-Generator: Poedit 1.7.3\n"
1314

1415
#: ../source/reference/crud.txt:3
1516
msgid "MongoDB CRUD Reference"
16-
msgstr ""
17+
msgstr "MongoDB CRUD 参考"
1718

1819
#: ../source/reference/crud.txt:8
1920
msgid "Query Cursor Methods"
20-
msgstr ""
21+
msgstr "查询游标的相关方法"
2122

2223
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:2
2324
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:2
2425
msgid "Name"
25-
msgstr ""
26+
msgstr "方法名"
2627

2728
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:2
2829
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:2
2930
msgid "Description"
30-
msgstr ""
31+
msgstr "说明"
3132

3233
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:4
3334
msgid ":method:`cursor.count()`"
3435
msgstr ""
3536

3637
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:4
3738
msgid "Returns a count of the documents in a cursor."
38-
msgstr ""
39+
msgstr "返回游标中的文档数目。"
3940

4041
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:6
4142
msgid ":method:`cursor.explain()`"
@@ -44,31 +45,31 @@ msgstr ""
4445
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:6
4546
msgid ""
4647
"Reports on the query execution plan, including index use, for a cursor."
47-
msgstr ""
48+
msgstr "报告游标查询的执行计划,包括索引的使用情况。"
4849

4950
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:8
5051
msgid ":method:`cursor.hint()`"
5152
msgstr ""
5253

5354
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:8
5455
msgid "Forces MongoDB to use a specific index for a query."
55-
msgstr ""
56+
msgstr "强制MongoDB对查询使用指定的索引。"
5657

5758
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:10
5859
msgid ":method:`cursor.limit()`"
5960
msgstr ""
6061

6162
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:10
6263
msgid "Constrains the size of a cursor's result set."
63-
msgstr ""
64+
msgstr "限制游标结果集的大小。"
6465

6566
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:12
6667
msgid ":method:`cursor.next()`"
6768
msgstr ""
6869

6970
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:12
7071
msgid "Returns the next document in a cursor."
71-
msgstr ""
72+
msgstr "返回游标中的下一个文档。"
7273

7374
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:14
7475
msgid ":method:`cursor.skip()`"
@@ -78,27 +79,27 @@ msgstr ""
7879
msgid ""
7980
"Returns a cursor that begins returning results only after passing or "
8081
"skipping a number of documents."
81-
msgstr ""
82+
msgstr "返回一个游标,该游标仅仅在跳过指定数目的文档后才开始返回结果。"
8283

8384
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:16
8485
msgid ":method:`cursor.sort()`"
8586
msgstr ""
8687

8788
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:16
8889
msgid "Returns results ordered according to a sort specification."
89-
msgstr ""
90+
msgstr "返回按指定排序排好序的结果。"
9091

9192
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:18
9293
msgid ":method:`cursor.toArray()`"
9394
msgstr ""
9495

9596
#: ../source/includes/toc/table-spec-crud-cursor-methods.rst:18
9697
msgid "Returns an array that contains all documents returned by the cursor."
97-
msgstr ""
98+
msgstr "返回一个数组,该数组包含了所有被游标返回的结果。"
9899

99100
#: ../source/reference/crud.txt:13
100101
msgid "Query and Data Manipulation Collection Methods"
101-
msgstr ""
102+
msgstr "查询和数据操作相关的集合方法"
102103

103104
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:4
104105
msgid ":method:`db.collection.count()`"
@@ -108,7 +109,7 @@ msgstr ""
108109
msgid ""
109110
"Wraps :dbcommand:`count` to return a count of the number of documents in a "
110111
"collection or matching a query."
111-
msgstr ""
112+
msgstr "包装 :dbcommand:`count` ,返回集合中所有或匹配查询的文档的数目。"
112113

113114
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:6
114115
msgid ":method:`db.collection.distinct()`"
@@ -118,61 +119,63 @@ msgstr ""
118119
msgid ""
119120
"Returns an array of documents that have distinct values for the specified "
120121
"field."
121-
msgstr ""
122+
msgstr "返回一个文档数组,该数组中的文档的指定字段具有不同的值。"
122123

123124
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:8
124125
msgid ":method:`db.collection.find()`"
125126
msgstr ""
126127

127128
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:8
128129
msgid "Performs a query on a collection and returns a cursor object."
129-
msgstr ""
130+
msgstr "在指定集合上执行查询并返回一个游标对象。"
130131

131132
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:10
132133
msgid ":method:`db.collection.findOne()`"
133134
msgstr ""
134135

135136
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:10
136137
msgid "Performs a query and returns a single document."
137-
msgstr ""
138+
msgstr "在指定集合上执行查询并返回一个文档。"
138139

139140
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:12
140141
msgid ":method:`db.collection.insert()`"
141142
msgstr ""
142143

143144
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:12
144145
msgid "Creates a new document in a collection."
145-
msgstr ""
146+
msgstr "在集合中创建一个新的文档。"
146147

147148
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:14
148149
msgid ":method:`db.collection.remove()`"
149150
msgstr ""
150151

151152
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:14
152153
msgid "Deletes documents from a collection."
153-
msgstr ""
154+
msgstr "从集合中删除文档。"
154155

155156
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:16
156157
msgid ":method:`db.collection.save()`"
157158
msgstr ""
158159

159160
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:16
160161
msgid ""
161-
"Provides a wrapper around an :method:`~db.collection.insert()` and "
162-
":method:`~db.collection.update()` to insert new documents."
162+
"Provides a wrapper around an :method:`~db.collection.insert()` and :method:"
163+
"`~db.collection.update()` to insert new documents."
163164
msgstr ""
165+
"提供 method:`~db.collection.insert()` 和 :method:`~db.collection.update()` "
166+
"的包装方法来插入一个新文档(意即文档不存在时插入,存在时更新)。"
164167

165168
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:18
166169
msgid ":method:`db.collection.update()`"
167170
msgstr ""
168171

169172
#: ../source/includes/toc/table-spec-crud-collection-methods.rst:18
170173
msgid "Modifies a document in a collection."
171-
msgstr ""
174+
msgstr "修改集合中的文档。"
172175

173176
#: ../source/reference/crud.txt:18
174177
msgid "MongoDB CRUD Reference Documentation"
175-
msgstr ""
178+
msgstr "MongoDB CRUD 参考文档"
176179

177180
#: ../source/includes/toc/dfn-list-crud-reference.rst:6
178181
msgid ":doc:`/reference/write-concern`"
@@ -182,7 +185,7 @@ msgstr ""
182185
msgid ""
183186
"Configuration options associated with the guarantee MongoDB provides when "
184187
"reporting on the success of a write operation."
185-
msgstr ""
188+
msgstr "与MongoDB报告写操作成功时提供的保障相关的配置选项。"
186189

187190
#: ../source/includes/toc/dfn-list-crud-reference.rst:11
188191
msgid ":doc:`/reference/sql-comparison`"
@@ -192,16 +195,18 @@ msgstr ""
192195
msgid ""
193196
"An overview of common database operations showing both the MongoDB "
194197
"operations and SQL statements."
195-
msgstr ""
198+
msgstr "常见数据库操作概述-以MongoDB操作和SQL语句展示。"
196199

197200
#: ../source/includes/toc/dfn-list-crud-reference.rst:16
198201
msgid ":doc:`/reference/bios-example-collection`"
199202
msgstr ""
200203

201204
#: ../source/includes/toc/dfn-list-crud-reference.rst:14
202205
msgid ""
203-
"Sample data for experimenting with MongoDB. "
204-
":method:`~db.collection.insert()`, :method:`~db.collection.update()` and "
205-
":method:`~db.collection.find()` pages use the data for some of their "
206-
"examples."
206+
"Sample data for experimenting with MongoDB. :method:`~db.collection."
207+
"insert()`, :method:`~db.collection.update()` and :method:`~db.collection."
208+
"find()` pages use the data for some of their examples."
207209
msgstr ""
210+
"实践MongoDB所用样本数据。 :method:`~db.collection.insert()`, :method:`~db."
211+
"collection.update()` 和 :method:`~db.collection.find()`页面中的某些例子使用"
212+
"了这些数据。"

0 commit comments

Comments
 (0)