File: fr.po

package info (click to toggle)
lprng 3.8.B-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 4,260 kB
  • ctags: 2,422
  • sloc: ansic: 35,070; sh: 3,039; perl: 1,896; makefile: 379
file content (2019 lines) | stat: -rw-r--r-- 58,460 bytes parent folder | download | duplicates (6)
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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
# LPRng Internationalization (i18n)
# Template For Translation
# <papowell@astart.com>
#: src/common/lpc.c:270 src/common/lpc.c:435 src/common/lpq.c:547
msgid ""
msgstr ""
"Project-Id-Version: LPRng 3.8.28\n"
"Report-Msgid-Bugs-To: lprng-devel@lists.sf.net\n"
"POT-Creation-Date: 2011-02-03 19:40+0100\n"
"PO-Revision-Date: 2000-08-21 18:06-0700\n"
"Last-Translator: Patrick Powell <papowell@astart.com>\n"
"Language-Team: fr <fr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8-bit\n"

#: src/common/accounting.c:134
#, c-format
msgid "connection to accounting server '%s' failed '%s'"
msgstr "la connexion au serveur de comtabilit '%s' a chou '%s'"

#  la table controlword n'est pas traduite volontairement
#: src/common/controlword.c:16
msgid "ABORT"
msgstr "ABORT"

#: src/common/controlword.c:17
msgid "ACTIVE"
msgstr "ACTIVE"

#: src/common/controlword.c:18
msgid "CLASS"
msgstr "CLASS"

#: src/common/controlword.c:19
msgid "CLIENT"
msgstr "CLIENT"

#: src/common/controlword.c:20
msgid "DEBUG"
msgstr "DEBUG"

#: src/common/controlword.c:21
msgid "DEFAULTQ"
msgstr "DEFAULTQ"

#: src/common/controlword.c:22
msgid "DISABLE"
msgstr "DISABLE"

#: src/common/controlword.c:23
msgid "DOWN"
msgstr "DOWN"

#: src/common/controlword.c:24
msgid "ENABLE"
msgstr "ENABLE"

#: src/common/controlword.c:25
msgid "HOLD"
msgstr "HOLD"

#: src/common/controlword.c:26
msgid "HOLDALL"
msgstr "HOLDALL"

#: src/common/controlword.c:27
msgid "KILL"
msgstr "KILL"

#: src/common/controlword.c:28
msgid "LPD"
msgstr "LPD"

#: src/common/controlword.c:29
msgid "LPQ"
msgstr "LPQ"

#: src/common/controlword.c:30
msgid "LPRM"
msgstr "LPRM"

#: src/common/controlword.c:31
msgid "MOVE"
msgstr "MOVE"

#: src/common/controlword.c:32
msgid "MSG"
msgstr "MSG"

#: src/common/controlword.c:33
msgid "NOHOLDALL"
msgstr "NOHOLDALL"

#: src/common/controlword.c:34
msgid "PRINTCAP"
msgstr "PRINTCAP"

#: src/common/controlword.c:35
msgid "REDIRECT"
msgstr "REDIRECT"

#: src/common/controlword.c:36
msgid "REDO"
msgstr "REDO"

#: src/common/controlword.c:37
msgid "RELEASE"
msgstr "RELEASE"

#: src/common/controlword.c:38
msgid "REREAD"
msgstr "REREAD"

#: src/common/controlword.c:39
msgid "START"
msgstr "START"

#: src/common/controlword.c:40
msgid "STATUS"
msgstr "STATUS"

#: src/common/controlword.c:41
msgid "STOP"
msgstr "STOP"

#: src/common/controlword.c:42
msgid "TOPQ"
msgstr "TOPQ"

#: src/common/controlword.c:43
msgid "UP"
msgstr "UP"

#: src/common/controlword.c:44
msgid "SERVER"
msgstr "SERVER"

#: src/common/controlword.c:45
msgid "DEFAULTS"
msgstr "DEFAULTS"

#: src/common/controlword.c:46
msgid "FLUSH"
msgstr "FLUSH"

#: src/common/controlword.c:47
msgid "LANG"
msgstr "LANG"

#: src/common/controlword.c:48
#, fuzzy
msgid "PPD"
msgstr "LPD"

#: src/common/lpc.c:129 src/common/lpq.c:181 src/common/lpstat.c:147
#: src/common/lpr.c:91 src/common/lprm.c:146
msgid ""
"authentication requested (-A option) and AUTH environment variable not set"
msgstr ""
"authentification demande (option -A) et variable d'environnement AUTH non "
"positionne"

#: src/common/lpc.c:198
msgid "exit"
msgstr "exit"

#: src/common/lpc.c:242 src/common/lpq.c:237
#, c-format
msgid "Printer: %s - cannot get status from device '%s'\n"
msgstr ""

#: src/common/lpc.c:249 src/common/lpq.c:259 src/common/lprm.c:253
#, c-format
msgid "Printer: %s - direct connection to device '%s'\n"
msgstr ""

#: src/common/lpc.c:267
#, c-format
msgid "Locale information directory '%s'\n"
msgstr "Rpertoire information de localisation '%s'\n"

#: src/common/lpc.c:269 src/common/lpc.c:434 src/common/lpq.c:546
#, c-format
msgid "LANG environment variable '%s'\n"
msgstr "variable d'environnement LANG '%s'\n"

#: src/common/lpc.c:272 src/common/lpc.c:437 src/common/lpq.c:549
#, c-format
msgid "gettext translation information '%s'\n"
msgstr "information de traduction pour gettext '%s'\n"

#: src/common/lpc.c:274 src/common/lpc.c:439 src/common/lpq.c:551
msgid "No translation available\n"
msgstr "Pas de traduction disponible\n"

#: src/common/lpc.c:276
msgid "TRANSLATION TEST"
msgstr "FR TRANSLATION TEST"

#: src/common/lpc.c:306 src/common/lpc.c:317 src/common/lpc.c:335
msgid "all"
msgstr "all"

#: src/common/lpc.c:312 src/common/lpc.c:321
msgid "# Printcap Information\n"
msgstr "# Information pour Printcap\n"

#: src/common/lpc.c:350
#, c-format
msgid "execvp failed - '%s'"
msgstr "execvp a chou - '%s'"

#: src/common/lpc.c:353
#, c-format
msgid "fork failed - '%s'"
msgstr "fork a chou - '%s'"

#: src/common/lpc.c:361
#, c-format
msgid "doaction: waitpid(%ld) failed"
msgstr "doaction: waitpid(%ld) a chou"

#: src/common/lpc.c:452
#, c-format
msgid ""
"usage: %s [-a][-Ddebuglevel][-Pprinter][-Shost][-Uusername][-V] [command]\n"
" with no command, reads from STDIN\n"
"  -a           - alias for -Pall\n"
"  -Ddebuglevel - debug level\n"
"  -Pprinter    - printer\n"
"  -Pprinter@host - printer on lpd server on host\n"
"  -Shost       - connect to lpd server on host\n"
"  -Uuser       - identify command as coming from user\n"
"  -V           - increase information verbosity\n"
" commands:\n"
" active    (printer[@host])        - check for active server\n"
" abort     (printer[@host] | all)  - stop server\n"
" class     printer[@host] (class | off)      - show/set class printing\n"
" disable   (printer[@host] | all)  - disable queueing\n"
" debug     (printer[@host] | all) debugparms - set debug level for printer\n"
" down      (printer[@host] | all)  - disable printing and queueing\n"
" enable    (printer[@host] | all)  - enable queueing\n"
" flush     (printer[@host] | all)  - flush cached status\n"
" hold      (printer[@host] | all) (name[@host] | job | all)*   - hold job\n"
" holdall   (printer[@host] | all)  - hold all jobs on\n"
" kill      (printer[@host] | all)  - stop and restart server\n"
" lpd       (printer[@host])        - get LPD PID \n"
" lpq       (printer[@host] | all) (name[@host] | job | all)*   - invoke LPQ\n"
" lprm      (printer[@host] | all) (name[@host]|host|job| all)* - invoke "
"LPRM\n"
" msg       printer message text  - set status message\n"
" move      printer (user|jobid)* target - move jobs to new queue\n"
" noholdall (printer[@host] | all)  - hold all jobs off\n"
" printcap  (printer[@host] | all)  - report printcap values\n"
" quit                              - exit LPC\n"
" redirect  (printer[@host] | all) (printer@host | off )*       - redirect "
"jobs\n"
" redo      (printer[@host] | all) (name[@host] | job | all)*   - reprint "
"jobs\n"
" release   (printer[@host] | all) (name[@host] | job | all)*   - release "
"jobs\n"
" reread                            - LPD reread database information\n"
" start     (printer[@host] | all)  - start printing\n"
" status    (printer[@host] | all)  - status of printers\n"
" stop      (printer[@host] | all)  - stop  printing\n"
" topq      (printer[@host] | all) (name[@host] | job | all)*   - reorder "
"jobs\n"
" up        (printer[@host] | all) - enable printing and queueing\n"
"   diagnostic:\n"
"      defaultq               - show default queue for LPD server\n"
"      defaults               - show default configuration values\n"
"      lang                   - show current i18n (iNTERNATIONALIZATIONn) "
"support\n"
"      client (printer | all) - client config and printcap information\n"
"      server (printer | all) - server config and printcap\n"
msgstr ""
"usage: %s [-a][-Ddebuglevel][-Pprinter][-Shost][-Uusername][-V] [command]\n"
" sans commande, lecture depuis STDIN\n"
"  -a           - alias pour -Pall\n"
"  -Ddebuglevel - niveau de debug\n"
"  -Pprinter    - specifie l'imprimante\n"
" -P printer[@host] - imprimante sur le hte\n"
"  -Shost       - connexion au serveur lpd sur l'hte\n"
"  -Uuser       - identifie la commande comme venant de l'utilisateur\n"
"  -V           - accroissement du nombre de messages explicatifs\n"
" commandes:\n"
" active    (printer[@host])        - test pour un serveur actif\n"
" abort     (printer[@host] | all)  - arrt du serveur\n"
" class     printer[@host] (class | off)      - montrer/positionner la\n"
"                                               classe d'impression\n"
" disable   (printer[@host] | all) - interdire la mise en file d'attente\n"
" debug     (printer[@host] | all) debugparms - positionner le niveau de\n"
"                                               debug pour l'imprimante\n"
" down      (printer[@host] | all)  - interdire l'impression et la mise en "
"file d'attente\n"
"enable    (printer[@host] | all)  - autoriser la mise en file d'attente\n"
" flush     (printer[@host] | all)  - vider les status du cache\n"
" hold      (printer[@host] | all) (name[@host] | job | all)*   - retenir le "
"travail\n"
" holdall   (printer[@host] | all)  - retenir tous les travaux\n"
" kill      (printer[@host] | all)  - arreter et redmarrer le serveur\n"
" lpd       (printer[@host]) - obtenir le PID de LPD \n"
" lpq       (printer[@host] | all) (name[@host] | job | all)* - invoquer LPQ\n"
" lprm      (printer[@host] | all) (name[@host]|host|job| all)* - invoquer "
"LPRM\n"
" msg printer message text  - positionner le message de status\n"
" move printer (user|jobid)* target - dplacer les travaux vers une nouvelle "
"file d'attente\n"
" noholdall (printer[@host] | all)  - ne plus retenir les travaux\n"
" printcap  (printer[@host] | all)  - rapporter les valeur de printcap\n"
" quit                              - sortie de LPC\n"
" redirect  (printer[@host] | all) (printer@host | off )*       - rediriger "
"les travaux\n"
" redo      (printer[@host] | all) (name[@host] | job | all)*   - refaire le "
"travail\n"
" release   (printer[@host] | all) (name[@host] | job | all)*   - relacher le "
"travail\n"
" reread    (printer[@host])        - LPD relire la base de donnes "
"d'information\n"
" start     (printer[@host] | all)  - dmarrer l'impression\n"
" status    (printer[@host] | all)  - tat des imprimantes\n"
" stop      (printer[@host] | all)  - arrt de l'impression\n"
" topq      (printer[@host] | all) (name[@host] | job | all)*   - relancer le "
"travail\n"
" up        (printer[@host] | all) - autoriser l'impression et la mise en "
"file d'attente\n"
"      defaultq               - montrer la file d'attente par dfaut du "
"serveur LPD\n"
"      defaults               - montrer les valeurs par dfaut de la "
"configuration\n"
"      lang                   - montrer le support courant de i18n "
"(iNTERNATIONALISATIONn)\n"
"      client (printer | all) - information sur la configuration client et "
"printcap\n"
"      server (printer | all) - information sur la configuration du serveur "
"et printcap\n"

#: src/common/lpd.c:178
msgid "No LPD lockfile specified!"
msgstr "Pas de fichier de blocage LPD spcifi!"

#: src/common/lpd.c:189 src/common/lpd.c:202
#, fuzzy, c-format
msgid "Another print spooler active, possibly lpd process '%ld'"
msgstr ""
"Un autre spouleur d'impression utilise le port TCP imprimante, peut-tre le "
"process lpd '%ld'"

#: src/common/lpd.c:194
#, fuzzy, c-format
msgid "cannot open or lock lockfile - %s"
msgstr "ne peut mettre  jour le fichier retenu '%s'"

#: src/common/lpd.c:267
msgid "lpd: main() dofork failed"
msgstr "lpd: main() dofork a chou"

#: src/common/lpd.c:312 src/common/lpd.c:323
msgid "lpd: pipe call failed"
msgstr "lpd: pipe call a chou"

#: src/common/lpd.c:330
msgid "lpd: cannot start initial logger process"
msgstr ""

#: src/common/lpd.c:683
msgid "lpd: select error!"
msgstr "lpd: select erreur!"

#: src/common/lpd.c:710
msgid "lpd: Lpd_request pipe EOF! cannot happen"
msgstr "lpd: Lpd_request pipe EOF! ne doit pas arriver"

#: src/common/lpd.c:735 src/common/lpd.c:738
msgid "Setup_log: open /dev/null failed"
msgstr "Setup_log: open /dev/null a chou"

#: src/common/lpd.c:745 src/common/lpd.c:749
#, c-format
msgid "Setup_log: dup2(%d,%d) failed"
msgstr "Setup_log: dup2(%d,%d) a chou"

#: src/common/lpd.c:754
#, c-format
msgid "Setup_log: open %s failed"
msgstr "Setup_log: open %s a chou"

#: src/common/lpd.c:792
msgid "lpd: Cannot truncate lock file"
msgstr ""

#: src/common/lpd.c:810
#, fuzzy, c-format
msgid "lpd: Cannot open lock file '%s'"
msgstr "lpd: ne peut ouvrir '%s'"

#: src/common/lpd.c:912
#, fuzzy, c-format
msgid ""
"usage: %s [-FV][-D dbg][-L log][-P path][-p port][-R remote LPD TCP/IP "
"destination port]\n"
" Options\n"
" -D dbg      - set debug level and flags\n"
" -F          - run in foreground, log to STDERR\n"
" -L logfile  - append log information to logfile\n"
" -V          - show version info\n"
" -p port     - TCP/IP listen port, 'off' disables TCP/IP listening port "
"(lpd_listen_port)\n"
" -P path     - UNIX socket path, 'off' disables UNIX listening socket "
"(unix_socket_path)\n"
" -R port     - remote LPD server port (lpd_port)\n"
msgstr ""
"usage: %s [-FV][-D dbg][-L log][-P path][-p port][-R remote LPD TCP/IP  "
"Options\n"
" -D dbg      - positionner le niveau de debug et les drapeaux\n"
" -F          - excution en avant-plan, enregistrement sur STDERR\n"
" -L logfile  - ajouter l'enregistrement d'information dans logfile\n"
" -V          - montrer les informations de version\n"
" -p port     - TCP/IP listen port, 'off' disables TCP/IP listening port "
"(lpd_listen_port)\n"
" -P path     - UNIX socket path, 'off' disables UNIX listening socket "
"(unix_socket_path)\n"
" -R port     - remote LPD server port (lpd_port)\n"

#: src/common/lpd.c:1001
msgid "lpd: fork() failed"
msgstr "lpd: fork() a chou"

#: src/common/lpd.c:1012
#, fuzzy
msgid "lpd: accept on listening socket failed"
msgstr "Service_connection: accept sur un connecteur en coute a chou"

#: src/common/lpd.c:1031
msgid "Start_all: pipe failed!"
msgstr "Start_all: pipe a chou!"

#: src/common/lpd_control.c:87
#, c-format
msgid "bad control command '%s'"
msgstr "mauvaise commande de contrle '%s'"

#: src/common/lpd_control.c:102
#, c-format
msgid "printer '%s' has illegal char at '%s' in name"
msgstr "l'imprimante '%s' a un caractre illgal '%s' dans le nom"

#: src/common/lpd_control.c:114
#, c-format
msgid "%s: unknown control request '%s'"
msgstr "%s: demande de contrle inconnue '%s'"

#: src/common/lpd_control.c:195
#, fuzzy
msgid "Use: move printer (user|jobid)* target"
msgstr "Use: OP_MOVE printer (user|jobid)* target"

#: src/common/lpd_control.c:206
msgid "no permission to control server"
msgstr "pas d'autorisation pour contrler le serveur"

#: src/common/lpd_control.c:460
msgid "not implemented yet"
msgstr "pas encore implment"

#: src/common/lpd_control.c:486
#, fuzzy, c-format
msgid "server process PID %ld exited\n"
msgstr "tuer le serveur de PID %ld avec %s\n"

#: src/common/lpd_control.c:489
#, fuzzy, c-format
msgid "kill server process PID %ld with %s\n"
msgstr "tuer le serveur de PID %ld avec %s\n"

#: src/common/lpd_control.c:497
msgid "enabled and started"
msgstr "arm et dmarr"

#: src/common/lpd_control.c:498
msgid "disabled and stopped"
msgstr "dsarm et arrt"

#: src/common/lpd_control.c:499
msgid "stopped"
msgstr "arrt"

#: src/common/lpd_control.c:501
msgid "started"
msgstr "dmarr"

#: src/common/lpd_control.c:502
msgid "disabled"
msgstr "dsarm"

#: src/common/lpd_control.c:503
msgid "enabled"
msgstr "arm"

#: src/common/lpd_control.c:504
msgid "redirected"
msgstr "redirig"

#: src/common/lpd_control.c:505
msgid "holdall on"
msgstr "retenir tous oui"

#: src/common/lpd_control.c:506
msgid "holdall off"
msgstr "retenir tous non"

#: src/common/lpd_control.c:507
msgid "move done"
msgstr "dplac fait"

#: src/common/lpd_control.c:508
msgid "class updated"
msgstr "classe mise  jour"

#: src/common/lpd_control.c:509
msgid "killed job"
msgstr "travail tu"

#: src/common/lpd_control.c:510
msgid "aborted job"
msgstr "travail avort"

#: src/common/lpd_control.c:511
msgid "flushed status"
msgstr "tat vid"

#: src/common/lpd_control.c:531
#, c-format
msgid ""
"WARNING: the main load balance server may have exited before\n"
"it could be informed that there were new jobs.\n"
"Please use 'lpc start %s' to start the server\n"
msgstr ""

#: src/common/lpd_control.c:565
#, c-format
msgid "Do_queue_control: write to fd '%d' failed"
msgstr "Do_queue_control: criture sur '%d' a chou"

#: src/common/lpd_control.c:654
#, c-format
msgid "%s: no permission '%s'\n"
msgstr "%s: pas l'autorisation '%s'\n"

#: src/common/lpd_control.c:738
#, c-format
msgid "%s: selected '%s'\n"
msgstr "%s: selectionn '%s'\n"

#: src/common/lpd_control.c:748
#, c-format
msgid "%s: cannot set hold file '%s'\n"
msgstr "%s: ne peut positionner le fichier retenu '%s'\n"

#: src/common/lpd_control.c:855
msgid " holdall"
msgstr " retenir tous"

#: src/common/lpd_control.c:859
#, c-format
msgid " class=%s"
msgstr " classe=%s"

#: src/common/lpd_control.c:863
msgid " autohold"
msgstr " retenue automatique"

#: src/common/lpd_control.c:935 src/common/lpd_control.c:990
#: src/common/lpd_control.c:1045
#, c-format
msgid "wrong number arguments, %d"
msgstr "mauvais nombre d'arguments, %d"

#: src/common/lpd_control.c:941
#, c-format
msgid "forwarding to '%s'\n"
msgstr "renvoy  '%s'\n"

#: src/common/lpd_control.c:943
msgid "forwarding off\n"
msgstr "renvoi non\n"

#: src/common/lpd_control.c:997
#, c-format
msgid "classes printed '%s'\n"
msgstr "classes imprimes '%s'\n"

#: src/common/lpd_control.c:1000
msgid "all classes printed\n"
msgstr "toutes les classes imprimes\n"

#: src/common/lpd_control.c:1051
#, c-format
msgid "debugging override set to '%s'"
msgstr "niveau de debug surcharg positonn  '%s'"

#: src/common/lpd_control.c:1053
msgid "debugging override off"
msgstr "niveau de debug surcharg non"

#: src/common/lpd_jobs.c:435
#, c-format
msgid "Do_queue_jobs: cannot open lockfile '%s'"
msgstr "Do_queue_jobs: ne peut ouvrir fichier de blocage '%s'"

#: src/common/lpd_jobs.c:767 src/common/lpd_jobs.c:787
#: src/common/lpd_jobs.c:2360
#, fuzzy, c-format
msgid "cannot update job ticket file for '%s'"
msgstr "ne peut mettre  jour le fichier retenu pour '%s'"

#: src/common/lpd_jobs.c:770 src/common/lpd_jobs.c:790
#, fuzzy, c-format
msgid "Do_queue_jobs: cannot update job ticket file for '%s'"
msgstr "Do_queue_jobs: ne peut mettre  jour le fichier retenu pour '%s'"

#: src/common/lpd_jobs.c:774 src/common/lpd_jobs.c:794
#, c-format
msgid "removing job '%s' - no permissions"
msgstr "enlever le travail '%s' - pas d'autorisations"

#: src/common/lpd_jobs.c:1063
#, fuzzy, c-format
msgid "Do_queue_jobs: LOGIC ERROR - no identifer '%s'"
msgstr "Do_queue_jobs: ne peut ouvrir fichier de blocage '%s'"

#: src/common/lpd_jobs.c:1072
#, fuzzy, c-format
msgid "Do_queue_jobs: FORWARDING LOOP - '%s'"
msgstr "Do_queue_jobs: ne peut ouvrir fichier de blocage '%s'"

#: src/common/lpd_jobs.c:1096
#, fuzzy, c-format
msgid "cannot update job ticket file '%s'"
msgstr "ne peut mettre  jour le fichier retenu '%s'"

#: src/common/lpd_jobs.c:1098
#, fuzzy, c-format
msgid "Do_queue_jobs: cannot update job ticket file '%s'"
msgstr "Do_queue_jobs: ne peut mettre  jour le fichier retenu '%s'"

#: src/common/lpd_jobs.c:1147
#, fuzzy, c-format
msgid "Do_queue_jobs: LOGIC ERROR! new_dest and use_subserver == %d"
msgstr "Do_queue_jobs: ne peut ouvrir fichier de blocage '%d'"

#: src/common/lpd_jobs.c:1163 src/common/lpd_jobs.c:1227
msgid "sleeping, waiting for processes to exit"
msgstr "sleeping, attente de l'arrt des processus"

#: src/common/lpd_jobs.c:1204
#, fuzzy, c-format
msgid "Do_queue_jobs: write to fd '%d' failed"
msgstr "Do_queue_control: criture sur '%d' a chou"

#: src/common/lpd_jobs.c:1403
#, c-format
msgid "Remote_job: %d datafiles and only allowed %d"
msgstr "Remote_job: %d seuls les fichiers de donnes aont autoriss %d"

#: src/common/lpd_jobs.c:1447
#, c-format
msgid "link failure while sending job '%s'"
msgstr "chec du lien lors de l'envoi du travail'%s'"

#: src/common/lpd_jobs.c:1453
#, c-format
msgid "no permission to spool job '%s'"
msgstr "pas d'autorisation pour spoul le travail '%s'"

#: src/common/lpd_jobs.c:1459
#, c-format
msgid "failed to send job '%s'"
msgstr "chec de l'envoi du travail '%s'"

#: src/common/lpd_jobs.c:1627
msgid "Fork_subserver: fork failed"
msgstr "Fork_subserver: fork a chou"

#: src/common/lpd_jobs.c:1701
#, c-format
msgid "subserver pid %ld exit status '%s'"
msgstr "sous-serveur pid %ld tat de sortie '%s'"

#: src/common/lpd_jobs.c:1705
#, c-format
msgid "subserver pid %ld died with signal '%s'"
msgstr "sous-serveur pid %ld tu avec le signal '%s'"

#: src/common/lpd_jobs.c:1751
msgid "Wait_for_subserver: Mergesort failed"
msgstr "Wait_for_subserver: Mergesort a chou"

#: src/common/lpd_jobs.c:1762
#, fuzzy, c-format
msgid "Wait_for_subserver: LOGIC ERROR! waiting for pid %d failed"
msgstr "Wait_for_subserver: Mergesort a chou"

#: src/common/lpd_jobs.c:1787
msgid "succ"
msgstr "succ"

#: src/common/lpd_jobs.c:1788
msgid "jsucc"
msgstr "jsucc"

#: src/common/lpd_jobs.c:1789
msgid "success"
msgstr "success"

#: src/common/lpd_jobs.c:1790
msgid "jsuccess"
msgstr "jsuccess"

#: src/common/lpd_jobs.c:1791
msgid "abort"
msgstr "abort"

#: src/common/lpd_jobs.c:1792
msgid "jabort"
msgstr "jabort"

#: src/common/lpd_jobs.c:1793
msgid "hold"
msgstr "hold"

#: src/common/lpd_jobs.c:1794
msgid "jhold"
msgstr "jhold"

#: src/common/lpd_jobs.c:1795
msgid "remove"
msgstr "remove"

#: src/common/lpd_jobs.c:1796
msgid "jremove"
msgstr "jremove"

#: src/common/lpd_jobs.c:1975
#, c-format
msgid "Update_status: no identifier for '%s'"
msgstr ""

#: src/common/lpd_jobs.c:2008 src/common/lpd_jobs.c:2115
#: src/common/lpd_jobs.c:2157 src/common/lpd_jobs.c:2201
#, c-format
msgid "job '%s' saved"
msgstr "travail '%s' sauv"

#: src/common/lpd_jobs.c:2013 src/common/lpd_jobs.c:2121
#: src/common/lpd_jobs.c:2163 src/common/lpd_jobs.c:2207
#, c-format
msgid "could not remove job '%s'"
msgstr "ne peut enlever le travail '%s'"

#: src/common/lpd_jobs.c:2015 src/common/lpd_jobs.c:2123
#: src/common/lpd_jobs.c:2165 src/common/lpd_jobs.c:2209
#, c-format
msgid "job '%s' removed"
msgstr "travail '%s' enlev"

#: src/common/lpd_jobs.c:2045
#, c-format
msgid "job '%s', attempt %d, allowed %d"
msgstr "travail '%s', essai %d, autoris %d"

#: src/common/lpd_jobs.c:2049
msgid "treating as successful"
msgstr "trait comme un succs"

#: src/common/lpd_jobs.c:2050
msgid "retrying job"
msgstr "reessai du travail"

#: src/common/lpd_jobs.c:2051
msgid "no retry"
msgstr "pas de reessai"

#: src/common/lpd_jobs.c:2052
msgid "aborting server"
msgstr "serveur avort"

#: src/common/lpd_jobs.c:2053
msgid "removing job - status JREMOVE"
msgstr "travail enlev - tat JREMOVE"

#: src/common/lpd_jobs.c:2054
msgid "holding job"
msgstr "travail retenu"

#: src/common/lpd_jobs.c:2057
#, c-format
msgid "unexpected status 0x%x"
msgstr "tat inattendu 0x%x"

#: src/common/lpd_jobs.c:2062
#, c-format
msgid "job '%s', %s"
msgstr "travail '%s', %s"

#: src/common/lpd_jobs.c:2066
#, c-format
msgid "job '%s' attempt %d, trying %d times"
msgstr "travail '%s' tentative %d, essay %d fois"

#: src/common/lpd_jobs.c:2069
#, fuzzy, c-format
msgid "job '%s' attempt %d, trying indefinitely"
msgstr "travail '%s' tentative %d, essay indfiniment"

#: src/common/lpd_jobs.c:2088
msgid "failed, no retry"
msgstr "chec, pas de ressai"

#: src/common/lpd_jobs.c:2119
#, fuzzy, c-format
msgid "removing job '%s' - JFAILNORETRY"
msgstr "limination du travail '%s' - ABORT"

#: src/common/lpd_jobs.c:2131
msgid "aborting operations"
msgstr "avortement des oprations"

#: src/common/lpd_jobs.c:2161
#, fuzzy, c-format
msgid "removing job '%s' - JABORT"
msgstr "limination du travail '%s' - ABORT"

#: src/common/lpd_jobs.c:2170
msgid "stopping printing on filter JABORT exit code"
msgstr "arrt du filtre d'impression, code d'arrt JABORT"

#: src/common/lpd_jobs.c:2180
msgid "removing destination due to errors"
msgstr "limination de la destination due  des erreurs"

#: src/common/lpd_jobs.c:2191
msgid "too many errors"
msgstr ""

#: src/common/lpd_jobs.c:2205
#, c-format
msgid "removing job '%s' - JREMOVE"
msgstr "limination du travail '%s' - JREMOVE"

#: src/common/lpd_jobs.c:2334
#, c-format
msgid "Service_worker: cannot open lockfile '%s'"
msgstr "Service_worker: ne peut ouvrir le fichier de blocage '%s'"

#: src/common/lpd_jobs.c:2363
#, fuzzy, c-format
msgid "Service_worker: cannot update job ticket file for '%s'"
msgstr "Service_worker: ne peut mettre  jour le fichier reteniu pour '%s'"

#: src/common/lpd_jobs.c:2371
#, fuzzy, c-format
msgid "Service_worker: no identifier for '%s'"
msgstr "Service_worker: ne peut mettre  jour le fichier reteniu pour '%s'"

#: src/common/lpd_jobs.c:2757
#, fuzzy, c-format
msgid "job '%s' removed- status expired"
msgstr "travail '%s' enlev"

#: src/common/lpd_rcvjob.c:139 src/common/lpd_rcvjob.c:559
msgid "bad command line"
msgstr "mauvaise ligne de commande"

#: src/common/lpd_rcvjob.c:143 src/common/lpd_rcvjob.c:563
msgid "bad printer name"
msgstr "mauvais nom d'imprimante"

#: src/common/lpd_rcvjob.c:151
#, c-format
msgid "%s: cannot set up print queue"
msgstr "%s: ne peut initialiser la file d'impression"

#: src/common/lpd_rcvjob.c:187 src/common/lpd_rcvjob.c:602
#: src/common/lpd_secure.c:188
#, c-format
msgid "%s: spooling disabled"
msgstr "%s: spoulage dsarm"

#: src/common/lpd_rcvjob.c:198
#, c-format
msgid "%s: Receive_job: sending ACK 0 failed"
msgstr "%s: Receive_job: envoi de ACK 0 a chou"

#: src/common/lpd_rcvjob.c:210
#, fuzzy, c-format
msgid "Receive_job: cannot open lockfile '%s'"
msgstr "Do_queue_jobs: ne peut ouvrir fichier de blocage '%s'"

#: src/common/lpd_rcvjob.c:215
#, fuzzy, c-format
msgid "Receive_job: cannot lock lockfile '%s'"
msgstr "Do_queue_jobs: ne peut ouvrir fichier de blocage '%s'"

#: src/common/lpd_rcvjob.c:254
msgid "Recovering from incorrect job submission"
msgstr ""

#: src/common/lpd_rcvjob.c:268
#, c-format
msgid "%s: Receive_job - bad control line '%s', len %0.0f, name '%s'"
msgstr ""
"%s: Receive_job - mauvaise ligne de commande '%s', len %0.0f, name '%s'"

#: src/common/lpd_rcvjob.c:289 src/common/lpd_rcvjob.c:366
#: src/common/lpd_rcvjob.c:403 src/common/lpd_rcvjob.c:454
#: src/common/lpd_rcvjob.c:617 src/common/lpd_rcvjob.c:799
#: src/common/lpd_rcvjob.c:846 src/common/lpd_rcvjob.c:881
#: src/common/lpd_rcvjob.c:917
#, c-format
msgid "size %0.3fK exceeds %dK"
msgstr ""

#: src/common/lpd_rcvjob.c:296 src/common/lpd_rcvjob.c:624
#: src/common/lpd_secure.c:202
#, c-format
msgid "%s: insufficient file space"
msgstr "%s: espace de fichier insuffisant"

#: src/common/lpd_rcvjob.c:311 src/common/lpd_rcvjob.c:676
#, c-format
msgid "%s: sending ACK 0 for '%s' failed"
msgstr "%s: envoi de ACK 0 pour '%s' a chou"

#: src/common/lpd_rcvjob.c:345 src/common/lpd_rcvjob.c:649
#, c-format
msgid "%s: transfer of '%s' from '%s' failed"
msgstr "%s: transfert de '%s' depuis '%s' a chou"

#: src/common/lpd_rcvjob.c:375 src/common/lpd_rcvjob.c:412
#: src/common/lpd_rcvjob.c:463 src/common/lpd_rcvjob.c:854
#: src/common/lpd_rcvjob.c:890 src/common/lpd_rcvjob.c:926
#: src/common/lpd_rcvjob.c:1337 src/common/lpd_rcvjob.c:1413
#, c-format
msgid "Error setting up job ticket file - %s"
msgstr ""

#: src/common/lpd_rcvjob.c:505
#, fuzzy, c-format
msgid "Receive_jobs: write to fd '%d' failed"
msgstr "Do_queue_control: criture sur '%d' a chou"

#: src/common/lpd_rcvjob.c:570
#, c-format
msgid "%s: cannot set up printer"
msgstr "%s: ne peut initialiser l'imprimante"

#: src/common/lpd_rcvjob.c:638
#, c-format
msgid "%s: Receive_block_job: sending ACK 0 failed"
msgstr "%s: Receive_block_job: envoi ACK 0 a chou"

#: src/common/lpd_rcvjob.c:659
#, c-format
msgid "Receive_block_job: lseek failed '%s'"
msgstr "Receive_block_job: lseek a chou '%s'"

#: src/common/lpd_rcvjob.c:706
#, fuzzy, c-format
msgid "Receive_block_jobs: write to fd '%d' failed"
msgstr "Do_queue_control: criture sur '%d' a chou"

#: src/common/lpd_rcvjob.c:772 src/common/lpd_rcvjob.c:831
#, c-format
msgid "Scan_block_file: lseek failed '%s'"
msgstr "Scan_block_file: lseek a chou '%s'"

#: src/common/lpd_rcvjob.c:787
#, c-format
msgid "bad length information '%s'"
msgstr "mauvaise longueur d'information '%s'"

#: src/common/lpd_rcvjob.c:819
#, c-format
msgid "Scan_block_file: read failed '%s'"
msgstr "Scan_block_file: read a chou '%s'"

#: src/common/lpd_rcvjob.c:824
msgid "Scan_block_file: read unexecpted EOF"
msgstr "Scan_block_file: read EOF intempestif"

#: src/common/lpd_rcvjob.c:1017
#, c-format
msgid "%s: no permission to print"
msgstr "%s: pas d'autorisation pour imprimer"

#: src/common/lpd_rcvjob.c:1500 src/common/lpd_rcvjob.c:1525
#, fuzzy, c-format
msgid "Do_incoming_control_filter: lseek failed '%s'"
msgstr "Scan_block_file: lseek a chou '%s'"

#: src/common/lpd_rcvjob.c:1613
#, fuzzy, c-format
msgid "Get_route: lseek failed '%s'"
msgstr "Scan_block_file: lseek a chou '%s'"

#: src/common/lpd_remove.c:73
msgid "missing user or printer name"
msgstr "manque le nom d'utilisateur ou d'imprimante"

#: src/common/lpd_remove.c:81 src/common/lpd_status.c:175
#, c-format
msgid "printer '%s' has illegal character at '%s' in name"
msgstr "l'imprimante '%s' a un caractre illgal a '%s' dans le nom"

#: src/common/lpd_remove.c:110
#, c-format
msgid "Job_remove: error '%s'"
msgstr "Job_remove: erreur '%s'"

#: src/common/lpd_remove.c:203
#, c-format
msgid "Printer %s@%s:\n"
msgstr "Imprimante %s@%s:\n"

#: src/common/lpd_remove.c:232
#, c-format
msgid "  checking perms '%s'\n"
msgstr "  vrification des autorisations '%s'\n"

#: src/common/lpd_remove.c:249
#, c-format
msgid "  no permissions '%s'\n"
msgstr "  pas d'autorisations '%s'\n"

#: src/common/lpd_remove.c:263
#, fuzzy, c-format
msgid "  removing incoming job '%s'\n"
msgstr "limination du travail '%s' - ABORT"

#: src/common/lpd_remove.c:266
#, c-format
msgid "  dequeued '%s'\n"
msgstr "  enlev de la file d'attente '%s'\n"

#: src/common/lpd_remove.c:275
#, c-format
msgid "error: could not remove '%s'"
msgstr "erreur: ne peut enlever '%s'"

#: src/common/lpd_remove.c:384
msgid " ERROR: "
msgstr " ERREUR: "

#: src/common/lpd_secure.c:81
#, c-format
msgid "bad command line '%s'"
msgstr "mauvaise ligne de commande '%s'"

#: src/common/lpd_secure.c:113
#, c-format
msgid "bad printer name '%s'"
msgstr "mauvais nom d'imprimante '%s'"

#: src/common/lpd_secure.c:124
#, c-format
msgid "bad printer '%s'"
msgstr "mauvaise imprimante '%s'"

#: src/common/lpd_secure.c:166
#, c-format
msgid "unsupported authentication '%s'"
msgstr "authentification non supporte '%s'"

#: src/common/lpd_secure.c:173
#, c-format
msgid "no receive method supported for '%s'"
msgstr "pas de mthode de rception supporte pour '%s'"

#: src/common/lpd_secure.c:195
#, c-format
msgid "%s: job size %0.0f is larger than %d K"
msgstr "%s: taille du travail %0.0f plus grande que %d K"

#: src/common/lpd_status.c:357
#, c-format
msgid "%s: no permission to show status"
msgstr "%s: pas d'autorisation pour montrer l'tat"

#: src/common/lpd_status.c:476
#, fuzzy, c-format
msgid " (originally %s)"
msgstr "(originellment %s) "

#: src/common/lpd_status.c:486
msgid ""
"\n"
" Error: "
msgstr ""
"\n"
" Erreur: "

#: src/common/lpd_status.c:491
#, c-format
msgid " - %s"
msgstr " - %s"

#: src/common/lpd_status.c:494
#, c-format
msgid " - printer %s@%s not in printcap"
msgstr " - printer %s@%s pas dans printcap"

#: src/common/lpd_status.c:498
#, c-format
msgid " - printer %s@%s has bad printcap entry"
msgstr " - printer %s@%s a une entre incorrecte dans printcap"

#: src/common/lpd_status.c:724
#, c-format
msgid " <cpy %d/%d>"
msgstr " <cpy %d/%d>"

#: src/common/lpd_status.c:736
#, c-format
msgid " Job: %s"
msgstr " Travail: %s"

#: src/common/lpd_status.c:737
#, c-format
msgid "%s status= %s"
msgstr "%s tat= %s"

#: src/common/lpd_status.c:740
#, fuzzy, c-format
msgid "%s size= %0.0f"
msgstr "%s taille= %0.0f"

#: src/common/lpd_status.c:743
#, c-format
msgid "%s time= %s"
msgstr "%s heure= %s"

#: src/common/lpd_status.c:747
#, c-format
msgid "%s error= %s"
msgstr "%s erreur= %s"

#: src/common/lpd_status.c:752
#, c-format
msgid "%s CONTROL="
msgstr "%s CONTROL="

#: src/common/lpd_status.c:758
#, c-format
msgid "%s HOLDFILE="
msgstr "%s HOLDFILE="

#: src/common/lpd_status.c:778
#, fuzzy, c-format
msgid " %d job"
msgid_plural " %d jobs"
msgstr[0] " %d travail"
msgstr[1] " %d travail"

#: src/common/lpd_status.c:782
#, c-format
msgid " (%d held)"
msgstr ""

#: src/common/lpd_status.c:787
#, c-format
msgid " (%d move)"
msgstr ""

#: src/common/lpd_status.c:810
#, c-format
msgid " Comment: %s"
msgstr " Commentaire: %s"

#: src/common/lpd_status.c:821
#, c-format
msgid ""
"\n"
" Printing: %s\n"
" Aborted: %s\n"
" Spooling: %s"
msgstr ""
"\n"
" Impression: %s\n"
" Avortement: %s\n"
" Spoulage: %s"

#: src/common/lpd_status.c:867
#, c-format
msgid ""
"\n"
" %s: "
msgstr ""
"\n"
" %s: "

#: src/common/lpd_status.c:875
#, c-format
msgid " (%s"
msgstr " (%s"

#: src/common/lpd_status.c:890
#, c-format
msgid ""
"\n"
" Redirected_to: %s"
msgstr ""
"\n"
" Redirected_to: %s"

#: src/common/lpd_status.c:893
#, c-format
msgid " (redirect %s)"
msgstr " (redirig %s)"

#: src/common/lpd_status.c:903
#, c-format
msgid " (dest %s@%s)"
msgstr " (destination %s@%s)"

#: src/common/lpd_status.c:910
#, c-format
msgid ""
"\n"
" Serving: %s"
msgstr ""
"\n"
" Servant: %s"

#: src/common/lpd_status.c:913
#, c-format
msgid " (serving %s)"
msgstr " (servant %s)"

#: src/common/lpd_status.c:920
#, c-format
msgid ""
"\n"
" Classes: %s"
msgstr ""
"\n"
" Classes: %s"

#: src/common/lpd_status.c:923
#, c-format
msgid " (classes %s)"
msgstr " (classes %s)"

#: src/common/lpd_status.c:930
msgid ""
"\n"
" Hold_all: on"
msgstr ""
"\n"
" Hold_all: oui"

#: src/common/lpd_status.c:933
msgid " (holdall)"
msgstr " (tous retenus)"

#: src/common/lpd_status.c:940
msgid ""
"\n"
" Auto_hold: on"
msgstr ""
"\n"
" Auto_hold: oui"

#: src/common/lpd_status.c:943
msgid " (autohold)"
msgstr " (retenue automatique)"

#: src/common/lpd_status.c:951
#, c-format
msgid ""
"\n"
" Message: %s"
msgstr ""
"\n"
" Message: %s"

#: src/common/lpd_status.c:954
#, c-format
msgid " (message: %s)"
msgstr " (message: %s)"

#: src/common/lpd_status.c:983
msgid " Queue: no printable jobs in queue\n"
msgstr " Queue: pas de travail imprimable dans la file d'attente\n"

#: src/common/lpd_status.c:987
#, fuzzy, c-format
msgid " Queue: %d printable job\n"
msgid_plural " Queue: %d printable jobs\n"
msgstr[0] " Queue: %d travail imprimable\n"
msgstr[1] " Queue: %d travail imprimable\n"

#: src/common/lpd_status.c:994
#, c-format
msgid " Holding: %d held jobs in queue\n"
msgstr " Holding: %d travaux retenus dans la file d'attente\n"

#: src/common/lpd_status.c:1000
msgid " Server: no server active"
msgstr " Server: pas de serveur actif"

#: src/common/lpd_status.c:1003
#, c-format
msgid " Server: pid %d active"
msgstr " Server: pid %d actif"

#: src/common/lpd_status.c:1011
#, c-format
msgid " Unspooler: pid %d active"
msgstr " Unspooler: pid %d  actif"

#: src/common/lpd_status.c:1023
#, c-format
msgid "%s SPOOLCONTROL=\n"
msgstr "%s SPOOLCONTROL=\n"

#: src/common/lpd_status.c:1037
msgid " Status: "
msgstr " Status: "

#: src/common/lpd_status.c:1041
msgid " Filter_status: "
msgstr " Filter_status: "

#: src/common/lpd_dispatch.c:39
#, fuzzy, c-format
msgid "Dispatch_input: bad request line '%s' from %s"
msgstr "Dispatch_input: mauvaise ligne '%s' demande %s"

#: src/common/lpd_dispatch.c:177
msgid "Service_connection: getpeername failed"
msgstr "Service_connection: getpeername a chou"

#: src/common/lpd_dispatch.c:224
#, fuzzy
msgid "Service_connection: BAD LocalHost_IP value"
msgstr "Service_connection: ne peut demander  lire"

#: src/common/lpd_dispatch.c:230
#, c-format
msgid "Service_connection: bad protocol family '%d'"
msgstr "Service_connection: mauvaise famille '%d' de protocole"

#: src/common/lpd_dispatch.c:261
#, fuzzy
msgid "no connect permissions"
msgstr "pas d'autorisations de connexion"

#: src/common/lpd_dispatch.c:284
#, c-format
msgid "Service_connection: peek of length %d failed"
msgstr ""

#: src/common/lpd_dispatch.c:326
#, c-format
msgid "Service_connection: cannot read request from %s in %d seconds"
msgstr ""

#: src/common/lpd_dispatch.c:330
#, c-format
msgid "Service_connection: short request line '%s', from '%s'"
msgstr ""

#: src/common/lpq.c:119
#, fuzzy, c-format
msgid ""
"usage: %s [-aAclV] [-Ddebuglevel] [-Pprinter] [-tsleeptime]\n"
"  -A           - use authentication specified by AUTH environment variable\n"
"  -a           - all printers\n"
"  -c           - clear screen before update\n"
"  -l           - increase (lengthen) detailed status information\n"
"                 additional l flags add more detail.\n"
"  -L           - maximum detailed status information\n"
"  -n linecount - linecount lines of detailed status information\n"
"  -Ddebuglevel - debug level\n"
"  -Pprinter    - specify printer\n"
"  -s           - short (summary) format\n"
"  -tsleeptime  - sleeptime between updates\n"
"  -V           - print version information\n"
"  -v           - print in key: value format\n"
msgstr ""
"usage: %s [-aAclV] [-Ddebuglevel] [-Pprinter] [-tsleeptime]\n"
"  -A           - utiliser l'authentification spcifie par la variable\n"
"                 d'environnement AUTH\n"
"  -a           - toutes les imprimantes\n"
"  -c           - effacer l'cran avant mise  jour\n"
"  -l           - augmenter (plus long) le dtail des informations d'tat\n"
"                 drapeau(x) l additionnel(s) ajout de plus de dtail.\n"
"  -L           - maximum de dtail pour les informations d'tat\n"
"  -Ddebuglevel - debug level\n"
"  -n linecount - linecount lignes d'information dtailles d'tat\n"
"  -Pprinter    - specifie l'imprimante\n"
"  -s           - format court (sommaire)\n"
"  -tsleeptime  - temps de sommeil entre mises  jour\n"
"  -V           - imprimer des information de version\n"
"  -v           - print in key: value format\n"

#: src/common/lpq.c:245
#, c-format
msgid "Printer: %s is %s@%s\n"
msgstr "Printer: %s est %s@%s\n"

#: src/common/lpq.c:252
#, c-format
msgid "Printer: %s - cannot use printer, not in privileged group\n"
msgstr ""
"Printer: %s - ne peut utiliser l'imprimante, pas dans un groupe privilgi\n"

#: src/common/lpq.c:369 src/common/lpq.c:374 src/common/lpq.c:384
#: src/common/lpq.c:431 src/common/lpq.c:438
msgid "Printer:"
msgstr "Printer:"

#: src/common/lpq.c:477
msgid "fork() failed"
msgstr "fork() a chou"

#: src/common/lpq.c:484
#, c-format
msgid "Term_clear: waitpid(%d) failed"
msgstr "Term_clear: waitpid(%d) a chou"

#: src/common/lpq.c:510
msgid "lpq:  please use the LPRng lpstat program\n"
msgstr "lpq: veuillez utiliser le programme LPRng lpstat\n"

#: src/common/lpstat.c:195
msgid "scheduler is running\n"
msgstr ""

#: src/common/lpstat.c:199
msgid "no system default destination\n"
msgstr ""

#: src/common/lpstat.c:201
#, c-format
msgid "system default destination: %s\n"
msgstr ""

#: src/common/lpstat.c:208
#, c-format
msgid "system for %s: %s\n"
msgstr ""

#: src/common/lpstat.c:250
#, fuzzy, c-format
msgid "  Printer: %s - cannot use printer, not in privileged group\n"
msgstr ""
"Printer: %s - ne peut utiliser l'imprimante, pas dans un groupe privilgi\n"

#: src/common/lpstat.c:259
#, c-format
msgid " Printer: %s - direct connection to device '%s'\n"
msgstr ""

#: src/common/lpstat.c:387
#, c-format
msgid ""
"%s not accepting requests since %s -\n"
"\tunknown reason\n"
msgstr ""

#: src/common/lpstat.c:389
#, c-format
msgid "%s accepting requests since %s\n"
msgstr ""

#: src/common/lpstat.c:397
#, c-format
msgid "printer %s unknown state. disabled since %s. available\n"
msgstr ""

#: src/common/lpstat.c:398
#, c-format
msgid "printer %s unknown state. enabled since %s. available\n"
msgstr ""

#: src/common/lpstat.c:404
#, c-format
msgid "\tDescription: %s@%s\n"
msgstr ""

#: src/common/lpr.c:157
msgid "nothing to print"
msgstr "rien  imprimer"

#: src/common/lpr.c:162
msgid "cannot use printer - not in privileged group\n"
msgstr "ne peut utiliser l'imprimante - pas dans le groupe privilgi\n"

#: src/common/lpr.c:168
#, c-format
msgid "no remote support for %s@%s"
msgstr "pas de support distant pour %s@%s"

#: src/common/lpr.c:179
#, c-format
msgid "%d data files and maximum allowed %d"
msgstr "%d fichiers de donnes et maximum autoris %d"

#: src/common/lpr.c:221 src/common/lpr.c:1164
#, c-format
msgid "Cannot open file '%s', %s"
msgstr "Ne peut ouvrir le fichier '%s', %s"

#: src/common/lpr.c:232
msgid "(lpr_filter)"
msgstr "(lpr_filter)"

#: src/common/lpr.c:295 src/common/lpr.c:332
#, fuzzy, c-format
msgid "Status Information, attempt %d:\n"
msgstr ""
"Information d'Etat:\n"
" "

#: src/common/lpr.c:299 src/common/lpr.c:336
#, fuzzy, c-format
msgid " of %d:\n"
msgstr "Fait %d\n"

#: src/common/lpr.c:312
#, fuzzy, c-format
msgid "Waiting %d seconds before retry\n"
msgstr "mise en veille %d secondes avant re-essai, debut de veille"

#: src/common/lpr.c:351
#, c-format
msgid "request id is %s\n"
msgstr "id demand est %s\n"

#: src/common/lpr.c:354
#, c-format
msgid "request id is %d\n"
msgstr "id demand est %d\n"

#: src/common/lpr.c:366
#, c-format
msgid "Error unlinking '%s' - %s"
msgstr "Erreur en dliant '%s' - %s"

#: src/common/lpr.c:374
#, c-format
msgid "Done %d\n"
msgstr "Fait %d\n"

#: src/common/lpr.c:430 src/common/lpr.c:603
msgid "USER environment variable undefined"
msgstr "variable d'environnement USER non dfinie"

#: src/common/lpr.c:448
msgid "-ncopies -number of copies must be greater than 0\n"
msgstr "-ncopies - nombre de copies doit tre suprieur  0\n"

#: src/common/lpr.c:452
msgid "nobanner"
msgstr "pas de bannire"

#: src/common/lpr.c:455
msgid "width"
msgstr "largeur"

#: src/common/lpr.c:530
#, c-format
msgid "bad -F format string '%s'\n"
msgstr "mauvaise chne de format -F '%s'\n"

#: src/common/lpr.c:533
#, c-format
msgid "duplicate format specification -F%s\n"
msgstr "spcification de format duplique -F%s\n"

#: src/common/lpr.c:545
msgid "-Kcopies -number of copies must be greater than 0\n"
msgstr "-Kcopies - nombre de copies doit tre suprieur  0\n"

#: src/common/lpr.c:608
msgid "Missing mail name"
msgstr "Manque nom de bote  lettre"

#: src/common/lpr.c:622
#, c-format
msgid "duplicate format specification -%c\n"
msgstr "spcification de format duplique -%c\n"

#: src/common/lpr.c:666
#, fuzzy, c-format
msgid ""
"Usage: %s [-A] [-B] [-c] [-G] [-m] [-p] [-s] [-w] [-d printer@[host]]\n"
"  [-f form-name] [-H special-handling]\n"
"  [-n number] [-o options] [-P page-list]\n"
"  [-q priority-level] [-S character-set]\n"
"  [-S print-wheel] [-t title]\n"
"  [-T content-type [-r]] [-y mode-list]\n"
"  [-Ddebugopt ] [ filenames ...  ]\n"
" lp simulator using LPRng,  functionality may differ slightly\n"
" -A          - use authentication specified by AUTH environment variable\n"
" -B          - filter files and reduce job to single file before sending\n"
" -c          - (make copy before printing - ignored)\n"
" -d printer[@host]  - printer on host\n"
" -D debugflags  - debugging flags\n"
" -f formname - first letter used as job format\n"
" -G          - filter individual job files before sending\n"
" -H handling - (passed as -Z handling)\n"
" -m          - mail sent to $USER on completion\n"
" -n copies   - number of copies\n"
" -o option     nobanner, width recognized\n"
"               (others passed as -Z option)\n"
" -P pagelist - (print page list - ignored)\n"
" -p          - (notification on completion - ignored)\n"
" -q          - priority - 0 -> Z (highest), 25 -> A (lowest)\n"
" -s          - (suppress messages - ignored)\n"
" -S charset  - (passed as -Z charset)\n"
" -t title    - job title\n"
" -T content  - (passed as -Z content)\n"
" -w          - (write message on completion - ignored)\n"
" -X path     - user specified filter for job files\n"
" -Y          - connect and send to TCP/IP port (direct mode)\n"
" -y mode     - (passed as -Z mode)\n"
" --          - end of options, files follow\n"
" filename '-'  reads from STDIN\n"
" PRINTER, LPDEST, NGPRINTER, NPRINTER environment variables set default "
"printer.\n"
msgstr ""
"Usage: %s [-A] [-B] [-c] [-G] [-m] [-p] [-s] [-w] [-d printer@[host]]\n"
"  [-f form-name] [-H special-handling]\n"
"  [-n number] [-o option] [-P page-list]\n"
"  [-q priority-level] [-S character-set]\n"
"  [-S print-wheel] [-t title]\n"
"  [-T content-type [-r]] [-y mode-list]\n"
"  [-Ddebugopt ] [ filenames ...  ]\n"
" simulation de lp avec LPRng,  les fonctionalits peuvent diffrer "
"lgrement\n"
" -A          - utiliser l'authentification spcifie par la variable "
"d'environnement AUTH\n"
" -B          - filtrer le travail avant envoi\n"
" -c          - (faire une copie avant d'imprimer - ignor)\n"
" -d printer[@host]  - imprimante sur l'hte\n"
" -D debugflags  - drapeaux de mise au point\n"
" -f formname - premire lettre utilise comme format du travail\n"
" -G          - filter individual job files before sending\n"
" -H handling - (pass comme -Z handling)\n"
" -m          - envoi d'un mail  $USER lors de l'achvement\n"
" -n copies   - nombre de copies\n"
" -o option     nobanner, largeur reconnue\n"
"               (autres passs comme -Z option)\n"
" -P pagelist - (imprimer la liste de la page - ignor)\n"
" -p          - (notification  l'achvement - ignor)\n"
" -q          - priorit - 0 -> Z (la plus haute), 25 -> A (la plus basse)\n"
" -s          - (suppression des messages - ignor)\n"
" -S charset  - (pass comme -Z charset)\n"
" -t title    - jtitre du travail\n"
" -T content  - (pass comme -Z content)\n"
" -w          - (crire un message  l'achvement - ignor)\n"
" -X path     - filtre spcifi par l'utilisateur pour les fichiers des "
"travaux\n"
" -Y          - connect and send to TCP/IP port (direct mode)\n"
" -y mode     - (pass comme -Z mode)\n"
" sans commande, lecture depuis STDIN\n"
" les variables d'environnement PRINTER, LPDEST, NGPRINTER, NPRINTER "
"positionnent l'imprimante par dfaut.\n"

#: src/common/lpr.c:702
#, fuzzy, c-format
msgid ""
"Usage: %s [-Pprinter[@host]] [-A] [-B] [-Cclass] [-Fformat] [-G] [-Jinfo]\n"
"   [-(K|#)copies] [-Q] [-Raccountname]  [-Ttitle]  [-Uuser[@host]] [-V]\n"
"   [-Zoptions] [-b] [-m mailaddr] [-h] [-i indent] [-l] [-w width ] [-r]\n"
"   [-Ddebugopt ] [--] [ filenames ...  ]\n"
" -A          - use authentication specified by AUTH environment variable\n"
" -B          - filter files and reduce job to single file before sending\n"
" -C class    - job class\n"
" -D debugopt - debugging flags\n"
" -F format   - job format\n"
"   -b,-l        - binary or literal format\n"
"    c,d,f,g,l,m,p,t,v are also format options\n"
" -G          - filter individual job files before sending\n"
" -J info     - banner and job information\n"
" -K copies, -# copies   - number of copies\n"
" -P printer[@host] - printer on host\n"
" -Q          - put 'queuename' in control file\n"
" -Raccntname - accounting information\n"
" -T title    - title for 'pr' (-p) formatting\n"
" -U username - override user name (restricted)\n"
" -V          - Verbose information during spooling\n"
" -X path     - user specified filter for job files\n"
" -Y          - connect and send to TCP/IP port (direct mode)\n"
" -Z options  - options to pass to filter\n"
" -h          - no header or banner page\n"
" -i indent   - indentation\n"
" -k          - do not use tempfile when sending to server\n"
" -m mailaddr - mail final status to mailaddr\n"
" -r          - remove files after spooling\n"
" -w width    - width to use\n"
" --          - end of options, files follow\n"
" filename '-'  reads from STDIN\n"
" PRINTER, LPDEST, NPRINTER, NGPRINTER environment variables set default "
"printer.\n"
msgstr ""
"Usage: %s [-Pprinter[@host]] [-A] [-B] [-Cclass] [-Fformat] [-G] [-Jinfo]\n"
"   [-(K|#)copies] [-Q] [-Raccountname]  [-Ttitle]  [-Uuser[@host]] [-V]\n"
"   [-Zoptions] [-b] [-m mailaddr] [-h] [-i indent] [-l] [-w width ] [-r]\n"
"   [-Ddebugopt ] [--] [ filenames ...  ]\n"
" -A          - utiliser l'authentification spcifie par la variable "
"d'environnement AUTH\n"
" -B          - filtrer le travail avant envoi\n"
" -C class    - classe du travail\n"
" -D debugopt - drapeaux de mise au point\n"
" -F format   - format du travail\n"
"   -b,-l        - format binaire ou litral\n"
"    c,d,f,g,l,m,p,t,v sont aussi des options de format\n"
" -G          - filtrer le travail avant envoi\n"
" -J info     - information de bannire et de travail\n"
" -K copies, -# copies   - nombre de copies\n"
" -P printer[@host] - imprimante sur le hte\n"
" -Q          - mettre 'queuename' dans le fichier de contrle\n"
" -Raccntname - information de nom de compte\n"
" -T title    - titre pour mise au format 'pr' (-p)\n"
" -U username - surcharge du nom d'utilisateur (privilgi)\n"
" -V          - Information verbeuse durant le spoulage\n"
" -X path     - filtre spcifi par l'utilisateur pour les fichiers des "
"travaux\n"
" -Y          - connect and send to TCP/IP port (direct mode)\n"
" -Z options  - options  donner au filtre\n"
" -h          - pas d'en-tte ou de bannire de page\n"
" -i indent   - indentation\n"
" -k          - do not use tempfile when sending to server\n"
" -m mailaddr - envoyer par mail  mailaddr l'tat final\n"
" -r          - supprimer les fichiers aprs spoulage\n"
" -w width    - largeur  utiliser\n"
" --          - end of options, files follow\n"
" sans commande, lecture depuis STDIN\n"
" variables d'environnement PRINTER, LPDEST, NPRINTER, NGPRINTER qui "
"positionnent l'imprimante par dfaut.\n"

#: src/common/lpr.c:803
msgid "Priority (first letter of Class) not 'A' (lowest) to 'Z' (highest)"
msgstr ""
"Priorit (premire lettre de Class) pas 'A' (le plus bas)  'Z' (le plus "
"haut)"

#: src/common/lpr.c:827 src/common/lpr.c:832
msgid "(STDIN)"
msgstr "(STDIN)"

#: src/common/lpr.c:881
msgid "-U (username) can only be used by ROOT"
msgstr "-U (username) ne peut tre utilis que par ROOT"

#: src/common/lpr.c:897
#, c-format
msgid "Get_local_host: '%s' FQDN name not found!"
msgstr "Get_local_host: '%s' nom FQDN non trouv!"

#: src/common/lpr.c:924
#, c-format
msgid "Bad format specification '%c'"
msgstr "Mauvaise spcification de format '%c'"

#: src/common/lpr.c:931
#, c-format
msgid "Sorry, can only print %d files at a time, split job up"
msgstr ""
"Dsol, seulement %d fichiers peuvent tre imprims  la fois, revoir la "
"division du travail"

#: src/common/lpr.c:937
#, c-format
msgid "Maximum of %d copies allowed"
msgstr "%d copies maximum autorises"

#: src/common/lpr.c:1001
msgid "authentication conficts with -k option"
msgstr ""

#: src/common/lpr.c:1004
msgid "send_block_format configuration option conficts with -k option"
msgstr ""

#: src/common/lpr.c:1007
msgid "send_data_first configuration option conficts with -k option"
msgstr ""

#: src/common/lpr.c:1010
msgid "multiple copies conficts with -k option"
msgstr ""

#: src/common/lpr.c:1013
msgid "files on command line conflicts with -k option"
msgstr ""

#: src/common/lpr.c:1101
msgid "Make_temp_fd failed"
msgstr "Make_temp_fd a chou"

#: src/common/lpr.c:1103
msgid "You have closed STDIN! cannot pipe from a closed connection"
msgstr "Vous avez ferm STDIN! ne peut faire pipe depuis une connexion ferme"

#: src/common/lpr.c:1110
msgid "Copy_STDIN: write to temp file failed"
msgstr "Copy_STDIN: criture vers le fichier temporaire a chou"

#: src/common/lpr.c:1115
#, c-format
msgid "Copy_STDIN: stat of temp fd '%d' failed"
msgstr "Copy_STDIN: atteindre les donnes temporaire '%d' a chou"

#: src/common/lpr.c:1171
#, fuzzy, c-format
msgid "Check_files: stat of temp fd '%d' failed"
msgstr "Copy_STDIN: atteindre les donnes temporaire '%d' a chou"

#: src/common/lpr.c:1215
#, c-format
msgid "cannot print '%s': %s"
msgstr "ne peut imprimer '%s': %s"

#: src/common/lpr.c:1224
msgid "not a regular file"
msgstr "pas un fichier rgulier"

#: src/common/lpr.c:1229
msgid "cannot read it"
msgstr "ne peut le lire"

#: src/common/lpr.c:1244
msgid ""
"unprintable characters at start of file, check your LANG environment "
"variable as well as the input file"
msgstr ""
"cractres non-imprimables au dbut du fichier, vrifier votre variable LANG "
"ainsi que le fichier d'entre"

#: src/common/lpr.c:1251
#, c-format
msgid "option '%c' missing argument"
msgstr "option '%c' manque un argument"

#: src/common/lpr.c:1270
#, c-format
msgid "option %c parameter `%s` is not positive integer value"
msgstr "option %c paramtre `%s` n'est pas un entier positif"

#: src/common/lpr.c:1274
#, c-format
msgid "option %c parameter `%s` is not integer value from 0 - %d"
msgstr "option %c paramtre `%s` n'est pas une valeur entire dans 0 - %d"

#: src/common/lprm.c:234
#, c-format
msgid "Printer: %s - cannot remove jobs from device '%s'\n"
msgstr ""

#: src/common/lprm.c:246
#, fuzzy, c-format
msgid "Printer: %s - not in privileged group\n"
msgstr "ne peut utiliser l'imprimante - pas dans le groupe privilgi\n"

#: src/common/lprm.c:354
#, c-format
msgid ""
" usage: %s [-A] [-a | -Pprinter] [-Ddebuglevel] (jobid|user|'all')*\n"
"  -a           - all printers\n"
"  -A           - use authentication\n"
"  -Pprinter    - printer (default PRINTER environment variable)\n"
"  -Uuser       - impersonate this user (root or privileged user only)\n"
"  -Ddebuglevel - debug level\n"
"  -V           - show version information\n"
"  user           removes user jobs\n"
"  all            removes all jobs\n"
"  jobid          removes job number jobid\n"
" Example:\n"
"    'lprm -Plp 30' removes job 30 on printer lp\n"
"    'lprm -a'      removes all your jobs on all printers\n"
"    'lprm -a all'  removes all jobs on all printers\n"
"  Note: lprm removes only jobs for which you have removal permission\n"
msgstr ""
" usage: %s [-A] [-a | -Pprinter] [-Ddebuglevel] (jobid|user|'all')*\n"
"  -a           - toutes les imprimantes\n"
"  -A           - utiliser l'authentification\n"
"  -Pprinter    - printer (valeur par dfaut variable PRINTER)\n"
"  -Uuser       - prendre la personnalit de ce user (seulement root ou "
"utilisateur privilgi)\n"
"  -Ddebuglevel - debug level\n"
"  -V           - montrer les informations de version\n"
"  user           enlve les travaux utilisateur\n"
"  all            enlve tous les travaux\n"
"  jobid          enlve le travail numro jobid\n"
" Example:\n"
" Exemple:\n"
"    'lprm -Plp 30' enlever le trvail 30 de l'imprimante lp\n"
"    'lprm -a'      enlever tous vos travaux de toutes les imprimantes\n"
"    'lprm -a all'  enlever tous les travaux de toutes les imprimantes\n"
"  Remarque: lprm n'enlve que les travaux pour lesquels vous avez "
"l'autorisation d'enlvement\n"

#: src/common/lprm.c:372
#, c-format
msgid ""
" usage: %s [-A] [-Ddebuglevel] (jobid|user|'all')* [printer]\n"
"  -A           - use authentication\n"
"  -Ddebuglevel - debug level\n"
"  user           removes user jobs\n"
"  all            removes all jobs\n"
"  jobid          removes job number jobid\n"
" Example:\n"
"    'clean 30 lp' removes job 30 on printer lp\n"
"    'clean'       removes first job on default printer\n"
"    'clean all'      removes all your jobs on default printer\n"
"    'clean all all'  removes all your jobs on all printers\n"
"  Note: clean removes only jobs for which you have removal permission\n"
msgstr ""
" usage: %s [-A] [-Ddebuglevel] (jobid|user|'all')* [printer]\n"
"  -A           - utiliser l'authentification\n"
"  -Ddebuglevel - debug level\n"
"  user           enlve les travaux utilisateur\n"
"  all            enlve tous les travaux\n"
"  jobid          enlve le travail numro jobid\n"
" Exemple:\n"
"    'clean 30 lp' enlve le travail 30 de l'imprimante lp\n"
"    'clean'       enlve le premier travail de l'imprimante par dfaut\n"
"    'clean all'      enlve tous les travaux de l'imprimante par dfaut\n"
"    'clean all all'  enlve tous les travaux de toutes les imprimantes\n"
"  Remarque: lprm n'enlve que les travaux pour lesquels vous avez "
"l'autorisation d'enlvement\n"

#: src/common/sendjob.c:169
#, c-format
msgid "sleeping %d secs before retry, starting sleep"
msgstr "mise en veille %d secondes avant re-essai, debut de veille"

#: src/common/sendmail.c:87
#, c-format
msgid "printer %s job %s"
msgstr "imprimante %s travail %s"

#: src/common/sendmail.c:93
msgid " was successful.\n"
msgstr " est russi.\n"

#: src/common/sendmail.c:98
msgid " failed, and retry count was exceeded.\n"
msgstr " a chou, et le nombre de re-essais est dpass.\n"

#: src/common/sendmail.c:103
msgid " failed and could not be retried.\n"
msgstr " a chou et ne peut tre re-essay.\n"

#: src/common/sendmail.c:108
msgid " died a horrible death.\n"
msgstr " mort d'une mort horrible.\n"

#: src/common/sendreq.c:114
#, fuzzy, c-format
msgid "no network support for '%s' operation"
msgstr "pas de support rseau pour la demande"

#: src/common/getopt.c:82
msgid "--X option form illegal\n"
msgstr ""

#: src/common/getopt.c:93
#, c-format
msgid "%s: Illegal option '%c'\n"
msgstr ""

#: src/common/getopt.c:115
#, fuzzy, c-format
msgid "%s: missing argument for '%c'\n"
msgstr "%s: option '%c' manque un argument\n"

#~ msgid "                 Example: -D10,remote=5\n"
#~ msgstr "                 Exemple: -D10,remote=5\n"

#~ msgid "                 set debug level to 10, remote flag = 5\n"
#~ msgstr ""
#~ "                 positionner le niveau de debug  10, remote flag = 5\n"

#~ msgid "               Example: -D10,remote=5\n"
#~ msgstr "                 Exemple: -D10,remote=5\n"

#~ msgid "kill load balance server PID %d with %s\n"
#~ msgstr "serveur d'quilibrage de charge PID %d tu avec %s\n"

#~ msgid "removing job '%s' - failed, no retry"
#~ msgstr " 'limination du travail %s' - chec, pas de ressai"

#~ msgid "removing job due to errors"
#~ msgstr "limination du travail due  des erreurs"

#~ msgid "job failed - %s\n"
#~ msgstr "travail a chou - %s\n"

#~ msgid "missing printer name in -P option\n"
#~ msgstr "il manque le nom d'imprimante dans l'option -P\n"

#~ msgid "(bounce queue)"
#~ msgstr "(file de rebond)"

#~ msgid "Cannot stat file '%s', %s"
#~ msgstr "Ne peut atteidre le fichier '%s', %s"

#~ msgid "Filter '%s' failed"
#~ msgstr "Le filtre '%s' a chou"

#~ msgid "no network support for verbose status"
#~ msgstr "pas de support rseau pour un tat verbeux"