-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathfilecmp.po
203 lines (163 loc) · 5.86 KB
/
filecmp.po
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2023, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Transifex Bot <>, 2023
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.11\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-05-19 14:13+0000\n"
"PO-Revision-Date: 2021-06-28 01:06+0000\n"
"Last-Translator: Transifex Bot <>, 2023\n"
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
msgid ":mod:`filecmp` --- File and Directory Comparisons"
msgstr ""
msgid "**Source code:** :source:`Lib/filecmp.py`"
msgstr ""
msgid ""
"The :mod:`filecmp` module defines functions to compare files and "
"directories, with various optional time/correctness trade-offs. For "
"comparing files, see also the :mod:`difflib` module."
msgstr ""
msgid "The :mod:`filecmp` module defines the following functions:"
msgstr ""
msgid ""
"Compare the files named *f1* and *f2*, returning ``True`` if they seem "
"equal, ``False`` otherwise."
msgstr ""
msgid ""
"If *shallow* is true and the :func:`os.stat` signatures (file type, size, "
"and modification time) of both files are identical, the files are taken to "
"be equal."
msgstr ""
msgid ""
"Otherwise, the files are treated as different if their sizes or contents "
"differ."
msgstr ""
msgid ""
"Note that no external programs are called from this function, giving it "
"portability and efficiency."
msgstr ""
msgid ""
"This function uses a cache for past comparisons and the results, with cache "
"entries invalidated if the :func:`os.stat` information for the file "
"changes. The entire cache may be cleared using :func:`clear_cache`."
msgstr ""
msgid ""
"Compare the files in the two directories *dir1* and *dir2* whose names are "
"given by *common*."
msgstr ""
msgid ""
"Returns three lists of file names: *match*, *mismatch*, *errors*. *match* "
"contains the list of files that match, *mismatch* contains the names of "
"those that don't, and *errors* lists the names of files which could not be "
"compared. Files are listed in *errors* if they don't exist in one of the "
"directories, the user lacks permission to read them or if the comparison "
"could not be done for some other reason."
msgstr ""
msgid ""
"The *shallow* parameter has the same meaning and default value as for :func:"
"`filecmp.cmp`."
msgstr ""
msgid ""
"For example, ``cmpfiles('a', 'b', ['c', 'd/e'])`` will compare ``a/c`` with "
"``b/c`` and ``a/d/e`` with ``b/d/e``. ``'c'`` and ``'d/e'`` will each be in "
"one of the three returned lists."
msgstr ""
msgid ""
"Clear the filecmp cache. This may be useful if a file is compared so quickly "
"after it is modified that it is within the mtime resolution of the "
"underlying filesystem."
msgstr ""
msgid "The :class:`dircmp` class"
msgstr ""
msgid ""
"Construct a new directory comparison object, to compare the directories *a* "
"and *b*. *ignore* is a list of names to ignore, and defaults to :attr:"
"`filecmp.DEFAULT_IGNORES`. *hide* is a list of names to hide, and defaults "
"to ``[os.curdir, os.pardir]``."
msgstr ""
msgid ""
"The :class:`dircmp` class compares files by doing *shallow* comparisons as "
"described for :func:`filecmp.cmp`."
msgstr ""
msgid "The :class:`dircmp` class provides the following methods:"
msgstr ""
msgid "Print (to :data:`sys.stdout`) a comparison between *a* and *b*."
msgstr ""
msgid ""
"Print a comparison between *a* and *b* and common immediate subdirectories."
msgstr ""
msgid ""
"Print a comparison between *a* and *b* and common subdirectories "
"(recursively)."
msgstr ""
msgid ""
"The :class:`dircmp` class offers a number of interesting attributes that may "
"be used to get various bits of information about the directory trees being "
"compared."
msgstr ""
msgid ""
"Note that via :meth:`__getattr__` hooks, all attributes are computed lazily, "
"so there is no speed penalty if only those attributes which are lightweight "
"to compute are used."
msgstr ""
msgid "The directory *a*."
msgstr ""
msgid "The directory *b*."
msgstr ""
msgid "Files and subdirectories in *a*, filtered by *hide* and *ignore*."
msgstr ""
msgid "Files and subdirectories in *b*, filtered by *hide* and *ignore*."
msgstr ""
msgid "Files and subdirectories in both *a* and *b*."
msgstr ""
msgid "Files and subdirectories only in *a*."
msgstr ""
msgid "Files and subdirectories only in *b*."
msgstr ""
msgid "Subdirectories in both *a* and *b*."
msgstr ""
msgid "Files in both *a* and *b*."
msgstr ""
msgid ""
"Names in both *a* and *b*, such that the type differs between the "
"directories, or names for which :func:`os.stat` reports an error."
msgstr ""
msgid ""
"Files which are identical in both *a* and *b*, using the class's file "
"comparison operator."
msgstr ""
msgid ""
"Files which are in both *a* and *b*, whose contents differ according to the "
"class's file comparison operator."
msgstr ""
msgid "Files which are in both *a* and *b*, but could not be compared."
msgstr ""
msgid ""
"A dictionary mapping names in :attr:`common_dirs` to :class:`dircmp` "
"instances (or MyDirCmp instances if this instance is of type MyDirCmp, a "
"subclass of :class:`dircmp`)."
msgstr ""
msgid ""
"Previously entries were always :class:`dircmp` instances. Now entries are "
"the same type as *self*, if *self* is a subclass of :class:`dircmp`."
msgstr ""
msgid "List of directories ignored by :class:`dircmp` by default."
msgstr ""
msgid ""
"Here is a simplified example of using the ``subdirs`` attribute to search "
"recursively through two directories to show common different files::"
msgstr ""