-
-
Notifications
You must be signed in to change notification settings - Fork 260
Expand file tree
/
Copy pathdumbdbm.po
More file actions
145 lines (120 loc) · 4.19 KB
/
dumbdbm.po
File metadata and controls
145 lines (120 loc) · 4.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 1990-2016, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 2.7\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-10-30 10:44+0100\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"
#: ../Doc/library/dumbdbm.rst:2
msgid ":mod:`dumbdbm` --- Portable DBM implementation"
msgstr ""
#: ../Doc/library/dumbdbm.rst:8
msgid ""
"The :mod:`dumbdbm` module has been renamed to :mod:`dbm.dumb` in Python 3. "
"The :term:`2to3` tool will automatically adapt imports when converting your "
"sources to Python 3."
msgstr ""
#: ../Doc/library/dumbdbm.rst:16
msgid ""
"The :mod:`dumbdbm` module is intended as a last resort fallback for the :mod:"
"`anydbm` module when no more robust module is available. The :mod:`dumbdbm` "
"module is not written for speed and is not nearly as heavily used as the "
"other database modules."
msgstr ""
#: ../Doc/library/dumbdbm.rst:21
msgid ""
"The :mod:`dumbdbm` module provides a persistent dictionary-like interface "
"which is written entirely in Python. Unlike other modules such as :mod:"
"`gdbm` and :mod:`bsddb`, no external library is required. As with other "
"persistent mappings, the keys and values must always be strings."
msgstr ""
#: ../Doc/library/dumbdbm.rst:26
msgid "The module defines the following:"
msgstr "Le module définit :"
#: ../Doc/library/dumbdbm.rst:31
msgid ""
"Raised on dumbdbm-specific errors, such as I/O errors. :exc:`KeyError` is "
"raised for general mapping errors like specifying an incorrect key."
msgstr ""
#: ../Doc/library/dumbdbm.rst:37
msgid ""
"Open a dumbdbm database and return a dumbdbm object. The *filename* "
"argument is the basename of the database file (without any specific "
"extensions). When a dumbdbm database is created, files with :file:`.dat` "
"and :file:`.dir` extensions are created."
msgstr ""
#: ../Doc/library/dumbdbm.rst:42
msgid ""
"The optional *flag* argument is currently ignored; the database is always "
"opened for update, and will be created if it does not exist."
msgstr ""
#: ../Doc/library/dumbdbm.rst:45
msgid ""
"The optional *mode* argument is the Unix mode of the file, used only when "
"the database has to be created. It defaults to octal ``0666`` (and will be "
"modified by the prevailing umask)."
msgstr ""
#: ../Doc/library/dumbdbm.rst:49
msgid "The *mode* argument was ignored in earlier versions."
msgstr ""
#: ../Doc/library/dumbdbm.rst:52
msgid ""
"In addition to the dictionary-like methods, ``dumbdm`` objects provide the "
"following method:"
msgstr ""
#: ../Doc/library/dumbdbm.rst:58
msgid "Close the ``dumbdm`` database."
msgstr ""
#: ../Doc/library/dumbdbm.rst:64
msgid "Module :mod:`anydbm`"
msgstr ""
#: ../Doc/library/dumbdbm.rst:64
msgid "Generic interface to ``dbm``\\ -style databases."
msgstr ""
#: ../Doc/library/dumbdbm.rst:67
msgid "Module :mod:`dbm`"
msgstr "Module :mod:`dbm`"
#: ../Doc/library/dumbdbm.rst:67
msgid "Similar interface to the DBM/NDBM library."
msgstr ""
#: ../Doc/library/dumbdbm.rst:70
msgid "Module :mod:`gdbm`"
msgstr ""
#: ../Doc/library/dumbdbm.rst:70
msgid "Similar interface to the GNU GDBM library."
msgstr ""
#: ../Doc/library/dumbdbm.rst:73
msgid "Module :mod:`shelve`"
msgstr ""
#: ../Doc/library/dumbdbm.rst:73
msgid "Persistence module which stores non-string data."
msgstr ""
#: ../Doc/library/dumbdbm.rst:75
msgid "Module :mod:`whichdb`"
msgstr ""
#: ../Doc/library/dumbdbm.rst:76
msgid "Utility module used to determine the type of an existing database."
msgstr ""
#: ../Doc/library/dumbdbm.rst:82
msgid "Dumbdbm Objects"
msgstr ""
#: ../Doc/library/dumbdbm.rst:84
msgid ""
"In addition to the methods provided by the :class:`UserDict.DictMixin` "
"class, :class:`dumbdbm` objects provide the following methods."
msgstr ""
#: ../Doc/library/dumbdbm.rst:90
msgid ""
"Synchronize the on-disk directory and data files. This method is called by "
"the :meth:`sync` method of :class:`Shelve` objects."
msgstr ""