~fourmond/pmount/pmount-new

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
# Yiddish translation for pmount
# Copyright (c) (c) 2005 Canonical Ltd, and Rosetta Contributors 2005
# This file is distributed under the same license as the pmount package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2005.
#
msgid ""
msgstr ""
"Project-Id-Version: pmount\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2006-08-15 23:38+0200\n"
"PO-Revision-Date: 2005-06-15 02:17+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Yiddish <yi@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2007-12-14 18:32+0000\n"
"X-Generator: Launchpad (build Unknown)\n"
"X-Rosetta-Version: 0.1\n"

#: ../src/pmount.c:51
#, c-format
msgid ""
"Usage:\n"
"\n"
"%s [options] <device> [<label>]\n"
"\n"
"  Mount <device> to a directory below %s if policy requirements\n"
"  are met (see pmount(1) for details). If <label> is given, the mount point\n"
"  will be %s/<label>, otherwise it will be %s<device>.\n"
"  If the mount point does not exist, it will be created.\n"
"\n"
msgstr ""

#: ../src/pmount.c:58
#, c-format
msgid ""
"%s --lock <device> <pid>\n"
"  Prevent further pmounts of <device> until it is unlocked again. <pid>\n"
"  specifies the process id the lock holds for. This allows to lock a device\n"
"  by several independent processes and avoids indefinite locks of crashed\n"
"  processes (nonexistant pids are cleaned before attempting a mount).\n"
"\n"
msgstr ""

#: ../src/pmount.c:65
#, c-format
msgid ""
"%s --unlock <device> <pid>\n"
"  Remove the lock on <device> for process <pid> again.\n"
"\n"
msgstr ""

#: ../src/pmount.c:68
msgid ""
"Options:\n"
"  -r          : force <device> to be mounted read-only\n"
"  -w          : force <device> to be mounted read-write\n"
"  -s, --sync  : mount <device> with the 'sync' option (default: 'async')\n"
"  --noatime   : mount <device> with the 'noatime' option (default: 'atime')\n"
"  -e, --exec  : mount <device> with the 'exec' option (default: 'noexec')\n"
"  -t <fs>     : mount as file system type <fs> (default: autodetected)\n"
"  -c <charset>: use given I/O character set (default: 'utf8' if called\n"
"                in an UTF-8 locale, otherwise mount default)\n"
"  -u <umask>  : use specified umask instead of the default (only for\n"
"                file sytems which actually support umask setting)\n"
" --passphrase <file>\n"
"                read passphrase from file instead of the terminal\n"
"                (only for LUKS encrypted devices)\n"
"  -d, --debug : enable debug output (very verbose)\n"
"  -h, --help  : print help message and exit successfuly\n"
"  --version   : print version number and exit successfully"
msgstr ""

#: ../src/pmount.c:134
#, c-format
msgid "Error: label must not be empty\n"
msgstr ""

#: ../src/pmount.c:138
#, c-format
msgid "Error: label too long\n"
msgstr ""

#: ../src/pmount.c:143
#, c-format
msgid "Error: '/' must not occur in label name\n"
msgstr ""

#: ../src/pmount.c:150
#, c-format
msgid "Error: device name too long\n"
msgstr ""

#: ../src/pmount.c:181 ../src/pumount.c:100
msgid "Error: could not drop all uid privileges"
msgstr ""

#: ../src/pmount.c:186
msgid "Error: could not execute mount"
msgstr ""

#: ../src/pmount.c:225
#, c-format
msgid "Internal error: mount_attempt: given file system name is NULL\n"
msgstr ""

#: ../src/pmount.c:231
#, c-format
msgid "Error: invalid file system name '%s'\n"
msgstr ""

#: ../src/pmount.c:237
#, c-format
msgid "Error: invalid umask %s\n"
msgstr ""

#: ../src/pmount.c:285
#, c-format
msgid "Error: invalid charset name '%s'\n"
msgstr ""

#: ../src/pmount.c:366
#, c-format
msgid "Error: cannot lock for pid %u, this process does not exist\n"
msgstr ""

#: ../src/pmount.c:380
#, c-format
msgid "Error: could not create pid lock file %s: %s\n"
msgstr ""

#: ../src/pmount.c:420
#, c-format
msgid "Error: could not remove pid lock file %s: %s\n"
msgstr ""

#: ../src/pmount.c:436
msgid "Error: do_unlock: could not remove lock directory"
msgstr ""

#: ../src/pmount.c:537 ../src/pumount.c:165
msgid "Error: this program needs to be installed suid root\n"
msgstr ""

#: ../src/pmount.c:580 ../src/pumount.c:187
#, c-format
msgid "Internal error: getopt_long() returned unknown value\n"
msgstr ""

#: ../src/pmount.c:618
#, c-format
msgid ""
"Warning: device %s is already handled by /etc/fstab, supplied label is "
"ignored\n"
msgstr ""

#: ../src/pmount.c:632 ../src/pumount.c:232
msgid "Error: could not determine real path of the device"
msgstr ""

#: ../src/pmount.c:641 ../src/pumount.c:238
#, c-format
msgid "Error: invalid device %s (must be in /dev/)\n"
msgstr ""

#: ../src/pmount.c:679
#, c-format
msgid "Error: could not decrypt device (wrong passphrase?)\n"
msgstr ""

#: ../src/pmount.c:682
#, c-format
msgid "Error: mapped device already exists\n"
msgstr ""

#: ../src/pmount.c:696
#, c-format
msgid ""
"Error: could not lock the mount directory. Another pmount is probably "
"running for this mount point.\n"
msgstr ""

#: ../src/pmount.c:720
msgid "Error: could not delete mount point"
msgstr ""

#: ../src/pmount.c:741
#, c-format
msgid "Internal error: mode %i not handled.\n"
msgstr ""

#: ../src/pmount-hal.c:31
msgid ""
"pmount-hal - execute pmount with additional information from hal\n"
"\n"
"Usage: pmount-hal <device> [pmount options]\n"
"\n"
"This command mounts the device described by the given device or UDI using\n"
"pmount. The file system type, the volume storage policy and the desired "
"label\n"
"will be read out from hal and passed to pmount."
msgstr ""

#: ../src/pmount-hal.c:167
msgid "Error: could not execute pmount\n"
msgstr ""

#: ../src/pmount-hal.c:210
#, c-format
msgid "Error: could not connect to dbus: %s: %s\n"
msgstr ""

#: ../src/pmount-hal.c:244
#, c-format
msgid "Error: given UDI is not a mountable volume\n"
msgstr ""

#: ../src/policy.c:92
msgid "Error: could not get status of device"
msgstr ""

#: ../src/policy.c:103
msgid "Error: could not get sysfs directory\n"
msgstr ""

#: ../src/policy.c:110
msgid "Error: could not open <sysfs dir>/block/"
msgstr ""

#: ../src/policy.c:141
msgid "Error: could not open <sysfs dir>/block/<device>/"
msgstr ""

#: ../src/policy.c:241
#, c-format
msgid "Error: device %s does not exist\n"
msgstr ""

#: ../src/policy.c:246
#, c-format
msgid "Error: %s is not a block device\n"
msgstr ""

#: ../src/policy.c:264 ../src/policy.c:320
msgid "Error: could not open fstab-type file"
msgstr ""

#: ../src/policy.c:351
#, c-format
msgid "Error: device %s is already mounted to %s\n"
msgstr ""

#: ../src/policy.c:353
#, c-format
msgid "Error: device %s is not mounted\n"
msgstr ""

#: ../src/policy.c:355
#, c-format
msgid "Error: device %s was not mounted by you\n"
msgstr ""

#: ../src/policy.c:391
#, c-format
msgid "Error: device %s is not removable\n"
msgstr ""

#: ../src/policy.c:454
#, c-format
msgid "Error: device %s is locked\n"
msgstr ""

#: ../src/policy.c:463
#, c-format
msgid "Error: mount point %s is already in /etc/fstab\n"
msgstr ""

#: ../src/policy.c:476
#, c-format
msgid "Error: directory %s already contains a mounted file system\n"
msgstr ""

#: ../src/policy.c:478
#, c-format
msgid "Error: directory %s does not contain a mounted file system\n"
msgstr ""

#: ../src/pumount.c:43
#, c-format
msgid ""
"Usage:\n"
"\n"
"%s [options] <device>\n"
"  Umount <device> from a directory below %s if policy requirements\n"
"  are met (see pumount(1) for details). The mount point directory is "
"removed\n"
"  afterwards.\n"
"\n"
"Options:\n"
"  -l, --lazy  : umount lazily, see umount(8)\n"
"  -d, --debug : enable debug output (very verbose)\n"
"  -h, --help  : print help message and exit successfuly\n"
"  --version   : print version number and exit successfully\n"
msgstr ""

#: ../src/pumount.c:74
msgid "Internal error: could not determine mount point\n"
msgstr ""

#: ../src/pumount.c:80
#, c-format
msgid "Error: mount point %s is not below %s\n"
msgstr ""

#: ../src/pumount.c:110
msgid "Error: could not execute umount"
msgstr ""

#: ../src/pumount.c:131
#, c-format
msgid "Error: umount failed\n"
msgstr ""

#: ../src/utils.c:52
#, c-format
msgid "Error: out of memory\n"
msgstr ""

#: ../src/utils.c:108
msgid "Error: could not create directory"
msgstr ""

#: ../src/utils.c:124
msgid "Error: could not create stamp file in directory"
msgstr ""

#: ../src/utils.c:132
#, c-format
msgid "Error: %s is not a directory\n"
msgstr ""

#: ../src/utils.c:152
msgid "Error: could not open directory"
msgstr ""

#: ../src/utils.c:161
#, c-format
msgid "Error: directory %s is not empty\n"
msgstr ""

#: ../src/utils.c:213
#, c-format
msgid "Error: '%s' is not a valid number\n"
msgstr ""

#: ../src/utils.c:255
msgid "Internal error: could not change to effective uid root"
msgstr ""

#: ../src/utils.c:264
msgid "Internal error: could not change effective user uid to real user id"
msgstr ""

#: ../src/utils.c:273
msgid "Internal error: could not change to effective gid root"
msgstr ""

#: ../src/utils.c:282
msgid "Internal error: could not change effective group id to real group id"
msgstr ""