-
Notifications
You must be signed in to change notification settings - Fork 92
Expand file tree
/
Copy pathbagit-python.pot
More file actions
388 lines (308 loc) · 8.56 KB
/
bagit-python.pot
File metadata and controls
388 lines (308 loc) · 8.56 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
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-12-03 12:06+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"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#, python-format
msgid ""
"\n"
"BagIt is a directory, filename convention for bundling an arbitrary set of\n"
"files with a manifest, checksums, and additional metadata. More about BagIt\n"
"can be found at:\n"
"\n"
" http://purl.org/net/bagit\n"
"\n"
"bagit.py is a pure python drop in library and command line tool for "
"creating,\n"
"and working with BagIt directories.\n"
"\n"
"\n"
"Command-Line Usage:\n"
"\n"
"Basic usage is to give bagit.py a directory to bag up:\n"
"\n"
" $ bagit.py my_directory\n"
"\n"
"This does a bag-in-place operation where the current contents will be moved\n"
"into the appropriate BagIt structure and the metadata files will be "
"created.\n"
"\n"
"You can bag multiple directories if you wish:\n"
"\n"
" $ bagit.py directory1 directory2\n"
"\n"
"Optionally you can provide metadata which will be stored in bag-info.txt:\n"
"\n"
" $ bagit.py --source-organization \"Library of Congress\" directory\n"
"\n"
"You can also select which manifest algorithms will be used:\n"
"\n"
" $ bagit.py --sha1 --md5 --sha256 --sha512 directory\n"
"\n"
"\n"
"Using BagIt from your Python code:\n"
"\n"
" import bagit\n"
" bag = bagit.make_bag('example-directory', {'Contact-Name': 'Ed "
"Summers'})\n"
" print(bag.entries)\n"
"\n"
"For more information or to contribute to bagit-python's development, please\n"
"visit %(PROJECT_URL)s\n"
msgstr ""
msgid ""
"The `checksum` argument for `make_bag` should be replaced with `checksums`"
msgstr ""
msgid "Bagging a parent of the current directory is not supported"
msgstr ""
#, python-format
msgid "Creating bag for directory %s"
msgstr ""
#, python-format
msgid "Bag directory %s does not exist"
msgstr ""
#, python-format
msgid ""
"Unable to write to the following directories and files:\n"
"%s"
msgstr ""
msgid "Missing permissions to move all files and directories"
msgstr ""
#, python-format
msgid ""
"The following directories do not have read permissions:\n"
"%s"
msgstr ""
#, python-format
msgid ""
"The following files do not have read permissions:\n"
"%s"
msgstr ""
msgid "Read permissions are required to calculate file fixities"
msgstr ""
msgid "Creating data directory"
msgstr ""
#, python-format
msgid "Moving %(source)s to %(destination)s"
msgstr ""
msgid "Creating bagit.txt"
msgstr ""
msgid "Creating bag-info.txt"
msgstr ""
#, python-format
msgid "An error occurred creating a bag in %s"
msgstr ""
msgid "Use Bag.algorithms instead of Bag.algs"
msgstr ""
msgid "Use the Bag.version_info tuple instead of Bag.version"
msgstr ""
#, python-format
msgid "Expected bagit.txt does not exist: %s"
msgstr ""
#, python-format
msgid "Missing required tag in bagit.txt: %s"
msgstr ""
#, python-format
msgid "Bag version numbers must be MAJOR.MINOR numbers, not %s"
msgstr ""
#, python-format
msgid "Unsupported bag version: %s"
msgstr ""
#, python-format
msgid "Unsupported encoding: %s"
msgstr ""
msgid "Bag.save() called before setting the path!"
msgstr ""
#, python-format
msgid "Cannot save bag to non-existent or inaccessible directory %s"
msgstr ""
#, python-format
msgid ""
"Missing write permissions for the following directories and files:\n"
"%s"
msgstr ""
#, python-format
msgid "Updating Payload-Oxum in %s"
msgstr ""
#, python-format
msgid "Path \"%(payload_file)s\" in \"%(source_file)s\" is unsafe"
msgstr ""
#, python-format
msgid "Malformed URL in fetch.txt: %s, matches none of the whitelisted URL patterns %s"
msgstr ""
#, python-format
msgid "File already fetched: %s"
msgstr ""
#, python-format
msgid "Server sent no content-length for <%s>"
msgstr ""
#, python-format
msgid "Inconsistent size of %s: Expected %s but Content-Length is %s"
msgstr ""
#, python-format
msgid "Inconsistent size of %s: Expected %s but received %s"
msgstr ""
#, python-format
msgid "Fetched %s from %s"
msgstr ""
#, python-format
msgid ""
"%s is encoded using UTF-8 but contains an unnecessary byte-order mark, which "
"is not in compliance with the BagIt RFC"
msgstr ""
#, python-format
msgid "%(bag)s: Invalid %(algorithm)s manifest entry: %(line)s"
msgstr ""
#, python-format
msgid "Path \"%(payload_file)s\" in manifest \"%(manifest_file)s\" is unsafe"
msgstr ""
#, python-format
msgid ""
"%(bag)s: %(algorithm)s manifest lists %(filename)s multiple times with the "
"same value"
msgstr ""
#, python-format
msgid ""
"%(bag)s: %(algorithm)s manifest lists %(filename)s multiple times with "
"conflicting values"
msgstr ""
#, python-format
msgid "Expected data directory %s does not exist"
msgstr ""
msgid "No manifest files found"
msgstr ""
#, python-format
msgid "Expected %s to contain \"bagit.txt\""
msgstr ""
msgid "Fast validation requires bag-info.txt to include Payload-Oxum"
msgstr ""
msgid "bag-info.txt defines multiple Payload-Oxum values!"
msgstr ""
#, python-format
msgid "Malformed Payload-Oxum value: %s"
msgstr ""
#, python-format
msgid ""
"Payload-Oxum validation failed. Expected %(oxum_file_count)d files and "
"%(oxum_byte_count)d bytes but found %(found_file_count)d files and "
"%(found_byte_count)d bytes"
msgstr ""
msgid "Bag validation failed"
msgstr ""
#, python-format
msgid "Unable to calculate file hashes for %s"
msgstr ""
msgid "bagit.txt must not contain a byte-order mark"
msgstr ""
#, python-format
msgid ""
"%(path)s %(algorithm)s validation failed: expected=\"%(expected)s\" found="
"\"%(found)s\""
msgstr ""
#, python-format
msgid "%s exists in manifest but was not found on filesystem"
msgstr ""
#, python-format
msgid "%s exists on filesystem but is not in the manifest"
msgstr ""
#, python-format
msgid ""
"Unicode normalization conflict for file \"%(file_a)s\" and \"%(file_b)s\""
msgstr ""
#, python-format
msgid "Disabling requested hash algorithm %s: hashlib does not support it"
msgstr ""
msgid ""
"Unable to continue: hashlib does not support any of the requested algorithms!"
msgstr ""
#, python-format
msgid "Verifying checksum for file %s"
msgstr ""
#, python-format
msgid "Could not read %(filename)s: %(error)s"
msgstr ""
#, python-format
msgid "%(filename)s contains invalid tag: %(line)s"
msgstr ""
#, python-format
msgid "Using %(process_count)d processes to generate manifests: %(algorithms)s"
msgstr ""
msgid "Expected the same number of files for each checksum"
msgstr ""
msgid "Expected the same number of bytes for each checksums"
msgstr ""
#, python-format
msgid "Creating %s"
msgstr ""
#, python-format
msgid "Generating manifest lines for file %s"
msgstr ""
#, python-format
msgid ""
"Use multiple processes to calculate checksums faster (default: %(default)s)"
msgstr ""
msgid "The name of the log file (default: stdout)"
msgstr ""
msgid "Suppress all progress information other than errors"
msgstr ""
msgid ""
"Validate existing bags in the provided directories instead of creating new "
"ones"
msgstr ""
msgid ""
"Modify --validate behaviour to only test whether the bag directory has the "
"number of files and total size specified in Payload-Oxum without performing "
"checksum validation to detect corruption."
msgstr ""
msgid ""
"Modify --validate behaviour to test whether the bag directory has the "
"expected payload specified in the checksum manifests without performing "
"checksum validation to detect corruption."
msgstr ""
msgid "Checksum Algorithms"
msgstr ""
#, python-format
msgid ""
"Select the manifest algorithms to be used when creating bags (default=%s)"
msgstr ""
#, python-format
msgid "Generate %s manifest when creating a bag"
msgstr ""
msgid "Optional Bag Metadata"
msgstr ""
msgid ""
"Directory which will be converted into a bag in place by moving any existing "
"files into the BagIt structure and creating the manifests and other metadata."
msgstr ""
#, python-format
msgid "bagit-python version %s"
msgstr ""
msgid "The number of processes must be 0 or greater"
msgstr ""
msgid "--fast is only allowed as an option for --validate!"
msgstr ""
#, python-format
msgid "%s valid according to Payload-Oxum"
msgstr ""
#, python-format
msgid "%s is valid"
msgstr ""
#, python-format
msgid "%(bag)s is invalid: %(error)s"
msgstr ""
#, python-format
msgid "Failed to create bag in %(bag_directory)s: %(error)s"
msgstr ""