File: fr.po

package info (click to toggle)
pybliographer 1.2.9-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,528 kB
  • ctags: 1,399
  • sloc: python: 9,788; xml: 2,573; makefile: 609; sh: 597
file content (2420 lines) | stat: -rw-r--r-- 75,389 bytes parent folder | download | duplicates (2)
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
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
# French translation of pybliographer.
# Copyright (C) 2003 pybliographer's COPYRIGHT HOLDER
# This file is distributed under the same license as the pybliographer package.
# Frederic Gobry <gobry@pybliographer.org>
#
msgid ""
msgstr ""
"Project-Id-Version: pybliographer-1.1.93\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2003-11-18 12:03+0100\n"
"PO-Revision-Date: 2003-11-18 13:20+0100\n"
"Last-Translator: Frédéric Gobry <gobry@pybligrapher.org>\n"
"Language-Team: fr <fr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. ok, load the module
#: Pyblio/Autoload.py:76
#, python-format
msgid "warning: can't import %s: %s"
msgstr "attention: impossible d'importer %s : %s"

#. get info from the given group
#. are we preregistering an existing key ?
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. Prendre ses propres entrees
#. et ajouter celles qu'on n'a pas
#. call a key generator
#. create a temporary file for the new version
#. if we succeeded, backup file
#. ...and bring new version online
#. --------------------------------------------------
#. Available fields
#. --------------------------------------------------
#. create the hash table
#. Special fields
#. Entry types
#. ==================================================
#. ==================================================
#. --------------------------------------------------
#. --------------------------------------------------
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. type definition
#. callback definition
#: Pyblio/Config.py:53
#, python-format
msgid "value of `%s' should be of type %s"
msgstr "La valeur de `%s' devrait être de type %s"

#. eventually call the hook
#. get all domains from the keys
#. simplify the list
#. simplify the list
#. print 'SET AND SAVE:', key, value
#: Pyblio/Config.py:207
msgid "String"
msgstr "Chaîne"

#: Pyblio/Config.py:216
msgid "Boolean"
msgstr "Booléen"

#: Pyblio/Config.py:235
msgid "Integer"
msgstr "Entier"

#: Pyblio/Config.py:237
#, python-format
msgid "Integer under %d"
msgstr "Entier plus petit que %d"

#: Pyblio/Config.py:239
#, python-format
msgid "Integer over %d"
msgstr "Entier plus grand que %d"

#: Pyblio/Config.py:241
#, python-format
msgid "Integer between %d and %d"
msgstr "Entier entre %d et %d"

#: Pyblio/Config.py:253
#, python-format
msgid "Element in `%s'"
msgstr "Élément dans `%s'"

#: Pyblio/Config.py:273
#, python-format
msgid "Tuple (%s)"
msgstr "Séquence (%s)"

#: Pyblio/Config.py:294
#, python-format
msgid "List (%s)"
msgstr "Liste (%s)"

#: Pyblio/Config.py:319
#, python-format
msgid "Dictionary (%s, %s)"
msgstr "Dictionnaire (%s, %s)"

#. load the saved items
#. read what has to be saved again
#. TERMINATION ROUTINE
#. This file has been borrowed from :
#.
#. Sketch - A Python-based interactive drawing program
#. Copyright (C) 1997, 1998 by Bernhard Herzog
#.
#. This library is free software; you can redistribute it and/or
#. modify it under the terms of the GNU Library General Public
#. License as published by the Free Software Foundation; either
#. version 2 of the License, or (at your option) any later version.
#.
#. This library is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	See the GNU
#. Library General Public License for more details.
#.
#. You should have received a copy of the GNU Library General Public
#. License along with this library; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307	USA
#.
#. The Connector
#.
#. the list of receivers is empty now, remove the channel
#. the object has no more channels
#. print object, channel, args
#. don't use try: del ... ; except KeyError here. That would create a
#. new reference of object in a traceback object and this method should
#. be callable from a __del__ method (at least for versions prior
#. Python 1.5)
#. for debugging
#. the new finalization code in 1.5.1 might bind RemovePublisher
#. to None before all objects derived from Publisher are deleted...
#. Put message in the queue. If it is already queued put it at
#. the end. This is done to make certain that no channel gets
#. called twice between two calls to flush_message_queue. If the
#. order of channel invocation is important two or more queues
#. should be used.
#. Issue all queued messages and make the queue empty
#.
#. Issueing messages might result in new messages being queued.
#. This does not happen in sketch yet (Jul 1997) but let's hope
#. that we don't get infinite loops here...
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. manually split the author into subfields.
#. strict parsing, the whole block is the last name
#. lazy parsing, last name is after lowercase or is last word
#. cleanup
#: Pyblio/Fields.py:265
msgid "Illegal year value"
msgstr "Mauvaise valeur d'année"

#: Pyblio/Fields.py:269
msgid "Illegal month value"
msgstr "Mauvaise valeur de mois"

#: Pyblio/Fields.py:273
msgid "Illegal day value"
msgstr "Mauvaise valeur de jour"

#. Consider we handle a local file
#. get the list of databases
#: Pyblio/Fields.py:443
#, python-format
msgid "in %s"
msgstr "dans %s"

#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. Extension module for BibTeX files
#. this database is shared between all the unpickled entries
#. Check for date fields
#. check if this entry provides a date field
#. First, eventually remove from cache
#. First, set the cache for free
#. then, convert as bibtex.
#. copy the native fields
#. add the cached fields
#. transform the entry in a non-bibtex entry (as we don't keep
#. the specific information anyway, like @String,...)
#. look in the cache first
#. search its declared type
#. Author
#. Date
#. Any other text
#. a reference on the same database
#. specific fields, like URL
#. Ouvrir le fichier associe
#. Incorporer les definitions de l'utilisateur
#: Pyblio/Format/BibTeX.py:346 Pyblio/Format/BibTeX.py:404
#, python-format
msgid "key `%s' is malformed"
msgstr "la clé `%s' est mal formée"

#. Creer la base de cles
#: Pyblio/Format/BibTeX.py:367 Pyblio/Format/BibTeX.py:388
#, python-format
msgid "%s:%d: key `%s' already defined"
msgstr "%s:%d: La clé `%s' existe déjà"

#. set the entry parser to the current one, so
#. that we keep the current string definitions
#. ==================================================
#. write the type and key
#. create a hash containing all the keys, to keep track
#. of those who have been already written
#. we have to handle the special case of the dates
#. create the list of months
#. loop over all the fields
#. we are processing a date...
#. we are processing a normal entry
#. convert the field in a bibtex form
#. we are processing a date...
#. we are processing a normal entry
#. eventually convert the crossref
#. write according to the type order
#. dico contains all the available fields
#. write header
#. locate the entries that belong to a BibTeX database
#. and those who contain crossreferences
#. write the string definitions corresponding to these entries
#. write the list of strings
#. write the crossreferenced ones
#. write the entries with no cross references
#. Ouvrir le fichier associe
#. create a database to generate correct keys
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. Extension module for Medline files
#. rewind the file
#. Skip whitespace
#. don't forget the last item
#. create the entry with the actual fields
#. analyze the author by ourself.
#. in upper-case, this is a first name
#. if there is no last name, there can't be a first name
#. there was a first name, this must be a lineage
#. The simple fields...
#. UI identifiant unique
#. AU auteurs *
#. TI titre
#. LA langue *
#. MH mots clés *
#. PT *  type : JOURNAL ARTICLE, REVIEW, REVIEW, TUTORIAL,CLINICAL TRIAL,
#. RANDOMIZED CONTROLLED TRIAL, LETTER, EDITORIAL, MULTICENTER STUDY,
#. NEWS, HISTORICAL ARTICLE
#. DA date de ?? en yyyymmdd
#. DP date de ?? en yyyy mois +/-j
#. IS
#. TA titre de la revue
#. PG
#. SB
#. CY pays d'édition ?
#. IP
#. VI
#. JC
#. AA semble être toujours Author ou AUTHOR
#. EM date de?? en yyyymm
#. AB
#. AD
#. PMID
#. SO  référence complète
#. RN semble indexer des substances chimiques
#. TT titre dans la langue d'origine
#. 4099 URL vers l'article
#. 4100 URL vers abstract de l'article ??
#. write the remaining know fields
#. write the unknown fields
#. This file is part of pybliographer
#.
#. Original author of Ovid reader: Travis Oliphant <Oliphant.Travis@mayo.edu>
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. This file is part of pybliographer
#.
#. Original author of Ovid reader: Travis Oliphant <Oliphant.Travis@mayo.edu>
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. create list from month dict
#. rewind the file
#. skip blank and <\d+> line
#. read entry till next blank line
#. starting with a blank ?
#. ...then we continue the current text
#. new entry ?
#. else, this is a new field
#. save the previous one if needed
#. store the name of this new field
#. don't waste the last field content
#. did we parse a field ?
#. create the entry content
#. parse a simple text field
#. parse an author field
#. authors may be separated by just a single space if more
#. than one line of authors appears in ovid file
#. parse a source field
#. separate fields by ,
#. extract volume, number, pages, ...
#. the date field precedes pages
#. we have to work from the end since there may be
#. characters unrelated to the date at the start of the
#. field
#. additional information we do not want to loose
#. the journal name and additional information
#. do we have one of those fields ?
#. put the title
#. final dot.
#. correct the number of dots...
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. Extension module for Refer files
#. Martin Wilck <martin@tropos.de> added support for citation label field.
#. rewind the file
#. store the current field
#. determine the real type
#. we matched a new field start
#. store the current field
#. in the general case, append the new text
#. some fields are not to be used in output, as we
#. lost their content
#. one field per author
#. general case
#. This file is part of Pybliographer
#.
#. Copyright (C) 1998-2003 Peter Schulte-Stracke
#. Email : Peter.Schulte-Stracke@t-online.de
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. set by
#. A text is either a string or a list:
#. what does that mean ??
#. error situation
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. completer le texte
#. completer les champs
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. TO DO:
#. Parent for dialogue
#. List view troubles
#. self.dialog.set_parent (parent) ####
#: Pyblio/GnomeUI/Config.py:61
msgid "Choose your preferences"
msgstr "Choisissez vos préférences"

#. Create the edition widget...
#. #                     tooltips.set_tip (button, desc)
#. items should not be spread vertically, however
#: Pyblio/GnomeUI/Config.py:142 Pyblio/GnomeUI/Fields.py:412
msgid ""
"Some changes require to restart Pybliographic\n"
"to be correctly taken into account"
msgstr ""
"Certains changements nécessite de redémarrer Pybliographic\n"
"pour être correctement pris en compte"

#. print 'CHANGED:', self.key
#. print 'UPDATE:', self.key, self.get(), force
#. default?
#. Python 2.2 considers True as an Int, and 2.3 as a
#. Boolean... So we cast it to an int for compatibility
#. print 'SET TUPLE:', value, item
#. col.set_sizing(gtk.TREE_VIEW_COLUMN_AUTOSIZE)
#: Pyblio/GnomeUI/Config.py:424
msgid "Add"
msgstr "Ajouter"

#: Pyblio/GnomeUI/Config.py:427
msgid "Update"
msgstr "Mettre à jour"

#: Pyblio/GnomeUI/Config.py:430 Pyblio/GnomeUI/Config.py:534
msgid "Remove"
msgstr "Supprimer"

#. Bottom
#. m.row.changed(row)
#. col.set_sizing(gtk.TREE_VIEW_COLUMN_AUTOSIZE)
#: Pyblio/GnomeUI/Config.py:531
msgid "Set"
msgstr "Appliquer"

#. Bottom
#: Pyblio/GnomeUI/Config.py:546
msgid "Key:"
msgstr "Clé :"

#: Pyblio/GnomeUI/Config.py:548
msgid "Value:"
msgstr "Valeur :"

#. print 'REMOVE:', m, iter, dict
#. print 'UPDATE:', self.valuew.get()
#. m.row_inserted (i.path, i.iter)
#. print 'SELECT:', m, row
#. Local Variables:
#. py-master-file: "tConfig.py"
#. End:
#. -*- coding: utf-8 -*-
#.
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. The Index list
#. The text area
#. Status bar
#. set window size
#. set paned size
#. application variables
#. set the default sort method
#. remove !
#. This list contains the info needed to create the "Previous Documents" menu.
#. This list contains the names of the menu entries that can be
#. fetched back by factory.get_widget calls. The two lists
#. differ as the factory.create_items () function interprets
#. underscores to mark shortcuts, whereas the get_widget call
#. does not escape the underscores...
#. Display name in the menu
#. Bind the actual file info to each menu entry
#: Pyblio/GnomeUI/Document.py:203
#, python-format
msgid ""
"can't open file `%s' for writing:\n"
"%s"
msgstr ""
"Impossible d'ouvrir `%s' en écriture :\n"
"%s"

#: Pyblio/GnomeUI/Document.py:224
#, python-format
msgid ""
"Error while parsing `%s':\n"
"%s"
msgstr ""
"Erreur pendant la lecture de `%s':\n"
"%s"

#: Pyblio/GnomeUI/Document.py:240
msgid "New database"
msgstr "Nouvelle base de données"

#: Pyblio/GnomeUI/Document.py:248 Pyblio/GnomeUI/Document.py:252
msgid "[no entry]"
msgstr "[pas d'entrée]"

#: Pyblio/GnomeUI/Document.py:249
msgid "[1 entry]"
msgstr "[1 entrée]"

#: Pyblio/GnomeUI/Document.py:250
#, python-format
msgid "[%d entries]"
msgstr "[%d entrées]"

#: Pyblio/GnomeUI/Document.py:253
#, python-format
msgid "[%d/1 entry]"
msgstr "[%d/1 entrée]"

#: Pyblio/GnomeUI/Document.py:254
#, python-format
msgid "[%d/%d entries]"
msgstr "[%d/%d entrées]"

#: Pyblio/GnomeUI/Document.py:259
msgid "[modified]"
msgstr "[modifiée]"

#: Pyblio/GnomeUI/Document.py:269
msgid ""
"The database has been modified.\n"
"Discard changes ?"
msgstr ""
"Cette base de données a été changée.\n"
"Abandonner les changements ?"

#. no result.
#: Pyblio/GnomeUI/Document.py:294
msgid "Your query returned no result"
msgstr "Votre recherche n'a pas de réponse"

#. get a new file name
#: Pyblio/GnomeUI/Document.py:304
msgid "Merge file"
msgstr "Fusionner le fichier"

#: Pyblio/GnomeUI/Document.py:316 Pyblio/GnomeUI/Document.py:370
msgid "Open error"
msgstr "Erreur à l'ouverture"

#. loop over the entries
#: Pyblio/GnomeUI/Document.py:340
msgid "Merge status"
msgstr "Résultat de la fusion"

#. get a new file name
#: Pyblio/GnomeUI/Document.py:351
msgid "Open file"
msgstr "Ouvrir fichier"

#. eventually warn interested objects
#: Pyblio/GnomeUI/Document.py:397
msgid ""
"The database has been externally modified.\n"
"Overwrite changes ?"
msgstr ""
"Cette base de données a été changée en dehors du programme.\n"
"Écraser les changements ?"

#: Pyblio/GnomeUI/Document.py:407
#, python-format
msgid ""
"Unable to save `%s':\n"
"%s"
msgstr ""
"Impossible de sauver `%s' :\n"
"%s"

#: Pyblio/GnomeUI/Document.py:415
msgid ""
"An internal error occured during saving\n"
"Try to Save As..."
msgstr ""
"Une erreur interne s'est produite\n"
"Essayez d'Enregistrer Sous..."

#. get the current modification date
#. get a new file name
#: Pyblio/GnomeUI/Document.py:429
msgid "Save As..."
msgstr "Enregistrer Sous..."

#: Pyblio/GnomeUI/Document.py:435
#, python-format
msgid ""
"The file `%s' already exists.\n"
"Overwrite it ?"
msgstr ""
"Le fichier `%s' existe.\n"
"Faut-il l'écraser ?"

#: Pyblio/GnomeUI/Document.py:442
#, python-format
msgid ""
"During opening:\n"
"%s"
msgstr ""
"Lors de l'ouverture :\n"
"%s"

#: Pyblio/GnomeUI/Document.py:460
msgid "Reopen error"
msgstr "Erreur à la réouverture"

#: Pyblio/GnomeUI/Document.py:501
#, python-format
msgid ""
"An entry called `%s' already exists.\n"
"Rename and add it anyway ?"
msgstr ""
"Une entrée appelée `%s' existe déjà.\n"
"Renommer et ajouter quand même ?"

#: Pyblio/GnomeUI/Document.py:538
msgid "Really remove all the entries ?"
msgstr "Voulez-vous supprimer toutes les entrées ?"

#: Pyblio/GnomeUI/Document.py:558
msgid "Create new entry"
msgstr "Créer une nouvelle entrée"

#: Pyblio/GnomeUI/Document.py:572
#, python-format
msgid "Really edit %d entries ?"
msgstr "Voulez-vous éditer %d entrées ?"

#: Pyblio/GnomeUI/Document.py:610
#, python-format
msgid "Remove all the %d entries ?"
msgstr "Supprimer toutes les %d entrées ?"

#: Pyblio/GnomeUI/Document.py:612
#, python-format
msgid "Remove entry `%s' ?"
msgstr "Voulez-vous supprimer l'entrée `%s' ?"

#: Pyblio/GnomeUI/Document.py:676 Pyblio/GnomeUI/Document.py:683
#, python-format
msgid ""
"Can't connect to LyX:\n"
"%s"
msgstr ""
"Impossible de se connecter à LyX :\n"
"%s"

#. filter out special keys
#. the user searches the first entry in its ordering that starts with this letter
#. two keys in a same shot: we search for the composition of the words
#. search first occurence
#. Save the graphical aspect of the interface
#. 1.- Window size
#. 2.- Proportion betzeen list and text
#. updates the index's config
#: Pyblio/GnomeUI/Document.py:753
msgid "This program is copyrighted under the GNU GPL"
msgstr "Ce programme est placé sous la licence GNU GPL"

#: Pyblio/GnomeUI/Document.py:754
msgid "Gnome interface to the Pybliographer system."
msgstr "Une interface graphique pour Pybliographer"

#: Pyblio/GnomeUI/Document.py:763
msgid "Gnome Translation Team"
msgstr "Équipe de Traduction de Gnome"

#: Pyblio/GnomeUI/Document.py:768
msgid "Pybliographer Home Page"
msgstr "Page principale de Pybliographer"

#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. TO FIX
#. entry editor for more than 50 chars
#: Pyblio/GnomeUI/Editor.py:38
msgid "Last Name, First Name"
msgstr "Nom de famille, Prénom"

#: Pyblio/GnomeUI/Editor.py:39 Pyblio/GnomeUI/Fields.py:41
#: glade/config1.glade.h:14 glade/fields1.glade.h:19
msgid "Text"
msgstr "Texte"

#: Pyblio/GnomeUI/Editor.py:322
msgid "Day"
msgstr "Jour"

#: Pyblio/GnomeUI/Editor.py:331
msgid "Month"
msgstr "Mois"

#: Pyblio/GnomeUI/Editor.py:340
msgid "Year"
msgstr "Année"

#: Pyblio/GnomeUI/Editor.py:365
msgid "Invalid day field in date"
msgstr "Le champ du jour est incorrect"

#: Pyblio/GnomeUI/Editor.py:373
msgid "Invalid month field in date"
msgstr "Le champ du mois est incorrect"

#: Pyblio/GnomeUI/Editor.py:381
msgid "Invalid year field in date"
msgstr "Le champ de l'année est incorrect"

#. self.edit.set_editable (True)
#. A delete button
#: Pyblio/GnomeUI/Editor.py:431 Pyblio/GnomeUI/Search.py:86
msgid "Delete"
msgstr "Effacer"

#: Pyblio/GnomeUI/Editor.py:442 Pyblio/GnomeUI/Editor.py:454
#: Pyblio/GnomeUI/Editor.py:457
msgid "[ Drop an Entry here ]"
msgstr "[ Déposer une Entrée ici ]"

#. Config save?
#. print 'SELF:FM[P][2]:', self.fm[p] [2]
#. print 'TYP!', args, x, sel, m, iter
#. ------------------------------------------------------------
#. Page 2
#. PAGE 2
#: Pyblio/GnomeUI/Editor.py:527 Pyblio/GnomeUI/Fields.py:231
#: glade/config1.glade.h:8 glade/fields1.glade.h:6
msgid "Entry type"
msgstr "Type d'entrée"

#: Pyblio/GnomeUI/Editor.py:529
msgid "Key"
msgstr "Clé"

#: Pyblio/GnomeUI/Editor.py:570
msgid "Create Field"
msgstr "Créer le champ"

#. Notebook
#. scroll = gtk.ScrolledWindow ()
#. scroll.set_policy (GTK.POLICY_AUTOMATIC, GTK.POLICY_AUTOMATIC)
#. scroll.add_with_viewport (self.notebook)
#. update the current entry
#: Pyblio/GnomeUI/Editor.py:625 Pyblio/GnomeUI/Fields.py:446
msgid "Mandatory"
msgstr "Obligatoire"

#: Pyblio/GnomeUI/Editor.py:625 Pyblio/GnomeUI/Fields.py:447
msgid "Optional"
msgstr "Facultatif"

#: Pyblio/GnomeUI/Editor.py:625
msgid "Extra"
msgstr "Supplément"

#. update the current entry
#: Pyblio/GnomeUI/Editor.py:694
msgid "Invalid key format"
msgstr "Format de clé incorrecte"

#: Pyblio/GnomeUI/Editor.py:702
#, python-format
msgid "Key `%s' already exists"
msgstr "La clé `%s' existe déjà"

#: Pyblio/GnomeUI/Editor.py:763
msgid "Error in native string parsing"
msgstr "Erreur lors de l'analyse du texte natif"

#: Pyblio/GnomeUI/Editor.py:776
msgid "Edit entry"
msgstr "Édition d'une entrée"

#. check if the database supports native editing
#: Pyblio/GnomeUI/Editor.py:790 Pyblio/GnomeUI/Editor.py:846
msgid "Native Editing"
msgstr "Édition native"

#. Reject the switch if the data is invalid
#. native edition
#: Pyblio/GnomeUI/Editor.py:868
msgid "Standard Editing"
msgstr "Édition standard"

#. set window size
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. currently, nothing to display
#. Display this entry
#. Add a button to open the URL
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. TO DO:
#. adapt menu item for this dialog
#. cleaning up
#: Pyblio/GnomeUI/Fields.py:40
msgid "Authors"
msgstr "Auteurs"

#: Pyblio/GnomeUI/Fields.py:42 glade/config1.glade.h:16
#: glade/fields1.glade.h:21
msgid "URL"
msgstr "URL"

#: Pyblio/GnomeUI/Fields.py:43
msgid "Reference"
msgstr "Références..."

#: Pyblio/GnomeUI/Fields.py:44
msgid "Date"
msgstr "Date"

#. ------------------------------------------------------------
#. Page 1
#: Pyblio/GnomeUI/Fields.py:119 glade/config1.glade.h:11
#: glade/fields1.glade.h:10
msgid "Name"
msgstr "Nom"

#: Pyblio/GnomeUI/Fields.py:122 glade/config1.glade.h:15
#: glade/fields1.glade.h:20
msgid "Type"
msgstr "Type"

#. print self.entries.keys()
#. ------------------------------------------------------------
#. Page 3
#: Pyblio/GnomeUI/Fields.py:295
msgid "Available"
msgstr "Disponible"

#: Pyblio/GnomeUI/Fields.py:305
msgid "Associated"
msgstr "Associé"

#: Pyblio/GnomeUI/Fields.py:316
msgid "Please, select an entry type from previous page."
msgstr "Veuillez choisir un type d'entrée dans l'onglet précédent"

#: Pyblio/GnomeUI/Fields.py:327
#, python-format
msgid "Fields associated with <b>%s</b> entry type"
msgstr "Champs associés à l'entrée de type <b>%s</b>"

#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#: Pyblio/GnomeUI/FileSelector.py:44
msgid "File"
msgstr "Fichier"

#. url handler
#. type selector
#: Pyblio/GnomeUI/FileSelector.py:79
msgid "Bibliography type:"
msgstr "Type de bibliographie :"

#. menu content
#. If we select a directory, this means the user did not select
#. a file, so we consider the URL. Otherwise, consider the user
#. input as a plain file.
#. If it is an URL, we still need to track the last directory selected.
#. construct a nice URL
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. Fill the output format drop-down menu
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. TO FIX
#.
#. - DnD with the world
#. - Copy/Paste with the world
#. contextual popup menu
#: Pyblio/GnomeUI/Index.py:95
msgid "Add..."
msgstr "Ajouter..."

#: Pyblio/GnomeUI/Index.py:97
msgid "Edit..."
msgstr "Éditer..."

#: Pyblio/GnomeUI/Index.py:99
msgid "Delete..."
msgstr "Effacer..."

#. some events we want to react to...
#. DnD configuration
#. Copy/Paste configuration
#. We handle three selections: one specific to the application,
#. the clipboard, and the primary. Therefore, we should be able
#. to paste into every kind of editor/application.
#. if we want the keys, return the keys !
#. else, return the full entries
#. Advertise the fact that we hold the selection
#. Request the selection as a full entry
#. if we want the keys, return the keys !
#. else, return the full entries
#. must return a set of keys
#. --------------------------------------------------
#. clear the access table
#. matching !
#. we must be after the entry...
#. well, show the user its entry must be after the bounds
#. what menu items are accessible ?
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. Fill in the combo boxes
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. Manipulate data as strings
#. Manipulate pickled keys
#. Manipulate pickled entries
#. Related string definitions
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. register several callbacks
#. FIXME.
#. history.recently_used (file, 'application/x-bibtex',
#. 'pybliographic', 'Bibliography')
#. warn all the documents
#. get the modification date...
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. the tree model contains a string that explains the query,
#. and a python object representing the actual query.
#. the view does not display the python column, of course.
#. The root of the search tree is the full database
#: Pyblio/GnomeUI/Search.py:71
msgid "Full database"
msgstr "Base de donnée complète"

#. We are set up.
#. Expert search
#: Pyblio/GnomeUI/Search.py:141
msgid "internal error during evaluation"
msgstr "Erreur interne durant l'évaluation"

#. Simple Search
#. get the type description
#: Pyblio/GnomeUI/Search.py:195
#, python-format
msgid ""
"while compiling %s\n"
"error: %s"
msgstr ""
"Pendant la compilation de `%s'\n"
"erreur : %s"

#. No search
#. Get the path to the query being refined
#. If we are refining a previous query, build the new query as
#. a logical and of the previous and new query.
#. Add the new query in the tree and ensure it is visible and selected.
#. Only allow removal when a valid query is selected
#. Do not allow removal of the root.
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. This dialog is described as a glade XML file
#. Only the first two rows are visibles, the others are for
#. internal bookkeeping.
#. Gather the current sort info for all the available
#. fields. We create a tuple containing:
#. (display name, sort criterion instance, sort direction)
#.
#. The sort direction can be:
#. 0: not sorting according to this
#. 1: ascending sort
#. -1: descending sort
#. These are additional search fields
#: Pyblio/GnomeUI/Sort.py:97
msgid "[Entry Type]"
msgstr "[Type d'entrée]"

#: Pyblio/GnomeUI/Sort.py:98
msgid "[Key Value]"
msgstr "[Valeur de la Clé]"

#. Update the list with the current user settings
#. In the list, display the fields that are used in the current
#. sort procedure first.
#. Only consider fields on which we sort
#. Store the direction of sorting in each item
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. This is a class variable that contains the file name to load for
#. each instance of a subclass.
#. Set the parent window. The root widget is not necessarily
#. exported as an instance attribute.
#: Pyblio/GnomeUI/Utils.py:196
msgid "The following errors occured:\n"
msgstr ""
"Les erreurs suivantes se sont produites :\n"
"\n"

#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. Perform the first initialisation of Gnome, so that the options passed to the script
#. are not passed to Gnome
#. correctly identify the program
#. clean up our garbage
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. --------------------------------------------------
#. --------------------------------------------------
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#: Pyblio/LyX.py:39
#, python-format
msgid "no input pipe `%s'"
msgstr "pas de pipe d'entrée `%s'"

#: Pyblio/LyX.py:45
#, python-format
msgid "no output pipe `%s'"
msgstr "pas de pipe de sortie `%s'"

#. Say hello !
#. print self.pout.read ()
#. ans = string.strip (ans)
#. if ans [0:4] != 'INFO':
#. raise IOError, ("LyX server error: " + ans,)
#. print self.pout.read ()
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#: Pyblio/Open.py:97
#, python-format
msgid "method `%s' provides no opener"
msgstr "pas de fonction d'ouverture dans `%s'"

#. Consider the reference as an URL
#: Pyblio/Open.py:105 Pyblio/Open.py:151
#, python-format
msgid "File `%s' does not exist"
msgstr "Le fichier `%s' n'existe pas"

#. eventually load a new module
#: Pyblio/Open.py:116 Pyblio/Open.py:162
#, python-format
msgid "don't know how to open `%s'"
msgstr "je ne sais pas comment ouvrir `%s'"

#: Pyblio/Open.py:143
#, python-format
msgid "method `%s' provides no iterator"
msgstr "pas d'itérateur dans la méthode `%s'"

#: glade/config1.glade.h:1 glade/fields1.glade.h:1 glade/format.glade.h:1
#: glade/medline.glade.h:1 glade/search.glade.h:1
msgid "*"
msgstr "*"

#: glade/config1.glade.h:2
msgid "<b>Entry type</b>"
msgstr "Type d'entrée"

#: glade/config1.glade.h:3
msgid "A"
msgstr "A"

#: glade/config1.glade.h:4 glade/fields1.glade.h:2
msgid "Association"
msgstr "Association"

#: glade/config1.glade.h:5 glade/fields1.glade.h:3
msgid "Datum"
msgstr "Valeur"

#: glade/config1.glade.h:6 glade/fields1.glade.h:4
msgid "Editor"
msgstr "Editeur"

#: glade/config1.glade.h:7 glade/fields1.glade.h:5
msgid "Entries"
msgstr "Entrées"

#: glade/config1.glade.h:9
msgid "FIELDS DEFINITION"
msgstr "Définition des Champs"

#: glade/config1.glade.h:10 glade/fields1.glade.h:8
msgid "Fields "
msgstr "Champs"

#: glade/config1.glade.h:12 glade/fields1.glade.h:11
msgid "Name "
msgstr "Nom"

#: glade/config1.glade.h:13
msgid "Pybliographer Configuration"
msgstr "Configuration de Pybliographer"

#: glade/config1.glade.h:17
msgid "standard fields"
msgstr "standard fields"

#: glade/fields1.glade.h:7
msgid "Entry types and field names configuration"
msgstr "Configuration des Entrées et Champs"

#: glade/fields1.glade.h:9
msgid "Information for <b>Article</b> entry type"
msgstr "Informations pour une entrée de type <b>Article</b>"

#: glade/fields1.glade.h:12
msgid ""
"Select an entry type and specify \n"
"its associated (mandatory and\n"
"optional) fields on the next page.\n"
"\n"
"\n"
"\n"
msgstr ""
"Choisissez un type d'entrée et spécifiez\n"
"les champs (optionnels et obligatoires) qui\n"
"lui sont associés à la page suivante.\n"
"\n"
"\n"
"\n"

#: glade/format.glade.h:2
msgid "Bibliography style:"
msgstr "Type de bibliographie :"

#: glade/format.glade.h:3
msgid "Format entries"
msgstr "Formatter les entrées"

#: glade/format.glade.h:4
msgid "Output file:\n"
msgstr "Fichier de sortie :\n"

#: glade/format.glade.h:6
msgid "Output format:"
msgstr "Format de sortie :"

#: glade/format.glade.h:7
msgid "Save Formatted as"
msgstr "Sauver les données formattés Sous"

#: glade/format.glade.h:8
msgid "Style Selection"
msgstr "Sélection du Style"

#: glade/medline.glade.h:2
msgid "Enter your Medline Query"
msgstr "Entrez votre recherche Medline"

#: glade/medline.glade.h:3
msgid "From:"
msgstr "De :"

#: glade/medline.glade.h:4
msgid "Limited to:"
msgstr "Limité à :"

#: glade/medline.glade.h:5
msgid ""
"Maximum number\n"
"of results:"
msgstr ""
"Nombre maxi. \n"
"de résultats"

#: glade/medline.glade.h:7
msgid "Medline Query"
msgstr "Recherche Medline..."

#: glade/medline.glade.h:8
msgid ""
"Only items \n"
"ahead of print"
msgstr ""
"Seulement les objets\n"
"déjà imprimés"

#: glade/medline.glade.h:10
msgid ""
"Only items \n"
"with abstracts"
msgstr ""
"Seulement les objets\n"
"avec un abstract"

#: glade/medline.glade.h:12
msgid ""
"Search \n"
"PubMed for:"
msgstr ""
"Rechercher dans\n"
"PubMed :"

#: glade/medline.glade.h:14
msgid ""
"Starting listing at\n"
"result number:"
msgstr ""
"Commencer la liste\n"
"à la position :"

#: glade/medline.glade.h:16
msgid "To:"
msgstr "À :"

#: glade/medline.glade.h:17
msgid ""
"Use the format YYYY/MM/DD\n"
"Month and day are optional."
msgstr ""
"Utiliser le format Année/Mois/Jour.\n"
"Le mois et le jour sont facultatifs."

#: glade/pyblio.glade.h:1
msgid "Cite"
msgstr "Citer"

#: glade/pyblio.glade.h:2
msgid "Cite..."
msgstr "Citer..."

#: glade/pyblio.glade.h:3
msgid "Fields..."
msgstr "_Champs..."

#: glade/pyblio.glade.h:4
msgid "Forget all changes"
msgstr "Oublier tous les changements"

#: glade/pyblio.glade.h:5
msgid "Format..."
msgstr "_Formatter..."

#: glade/pyblio.glade.h:6
msgid "Medline Query..."
msgstr "Recherche Medline..."

#: glade/pyblio.glade.h:7
msgid "Merge With..."
msgstr "_Fusionner avec..."

#: glade/pyblio.glade.h:8
msgid "Open File"
msgstr "Ouvrir fichier"

#: glade/pyblio.glade.h:9
msgid "Previous Documents"
msgstr "Documents précédents"

#: glade/pyblio.glade.h:10
msgid "Pybliographer"
msgstr "Pybliographer"

#: glade/pyblio.glade.h:11
msgid "S_ort..."
msgstr "_Trier..."

#: glade/pyblio.glade.h:12
msgid "Save File"
msgstr "Sauver comme"

#: glade/pyblio.glade.h:13
msgid "Settings"
msgstr "_Paramètres"

#: glade/pyblio.glade.h:14
msgid "_Add..."
msgstr "_Ajouter..."

#: glade/pyblio.glade.h:15
msgid "_Delete..."
msgstr "Effacer"

#: glade/pyblio.glade.h:16
msgid "_Edit..."
msgstr "_Editer..."

#: glade/pyblio.glade.h:17
msgid "_New"
msgstr "_Nouveau..."

#: glade/search.glade.h:2
msgid "Close"
msgstr "Fermer"

#: glade/search.glade.h:3
msgid "Expert Search"
msgstr "Recherche avancée"

#: glade/search.glade.h:4
msgid "Field"
msgstr "Champ"

#: glade/search.glade.h:5
msgid "Pattern"
msgstr "Valeur"

#: glade/search.glade.h:6
msgid "Query"
msgstr "Recherche"

#: glade/search.glade.h:7
msgid "Search"
msgstr "Chercher"

#: glade/search.glade.h:8
msgid "Simple Search"
msgstr "Recherche simple"

#: glade/sort.glade.h:1
msgid "Select sort criterions"
msgstr "Choisir les critères de tri"

#: glade/sort.glade.h:2
msgid "Set as default"
msgstr "Prendre par défaut"

#. ! @python_path@
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#: pybliographer.py:40
#, python-format
msgid "This is %s, version %s"
msgstr "Bienvenue dans %s, version %s"

#: pybliographer.py:44 pybliographer.py:51
msgid "This is free software with ABSOLUTELY NO WARRANTY."
msgstr "Ceci est un logiciel libre, sans AUCUNE GARANTIE"

#: pybliographer.py:45
msgid "For details, type `warranty'."
msgstr "Pour plus de détails, tapez `warranty'."

#. ---------- Lire les fichiers de conf
#. Fichiers standards
#. Fichiers passes en argument au programme
#: pybliographer.py:108 pybliographer.py:160
#, python-format
msgid "%s: error: can't open file `%s'"
msgstr "%s: erreur : impossible d'ouvrir le fichier `%s'"

#: pybliographer.py:121
#, python-format
msgid "For help, run %s and type `help' at the prompt"
msgstr "Pour de l'aide, tapez %s puis le mot `help' à l'invite"

#. ---------- Initialisation
#: pybliographer.py:130
msgid ""
"Useful commands:\n"
"\thelp     to get some help\n"
"\tquit     to quit\n"
msgstr ""
"Commandes utiles :\n"
"\thelp\tpour obtenir de l'aide\n"
"\tquit\tpour quitter le programme\n"

#. Quand on a tout lu, le programme est fini !
#. ---------- Initialisations du parser
#. save history
#. -*- python -*-
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. check the arguments
#. list containing the broken entries
#. set the strictness for bibtex files
#. we go over all the specified files
#. eventually expand directories to their content
#. in the case of a directory, use only .bib extension...
#. loop over the files
#. try to open the database
#. write the error messages (expected to be well formated)
#. -*- python -*-
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#: scripts/pybcompact.py:29
msgid "usage: pybcompact <latexfile> <bibtexfiles...>"
msgstr "usage : pybcompact <fichier latex> <fichiers bibtex...>"

#: scripts/pybcompact.py:33
#, python-format
msgid "pybcompact: error: %s\n"
msgstr "pybcompact : erreur: %s\n"

#. test input arguments
#. regular expression to match in the .aux file
#. this function extracts the citation keys from the .aux files
#. parse the whole file
#. we match a new citation
#. we have to enter an additional .aux file
#. ensure citation keys unicity
#. is there something to do ?
#: scripts/pybcompact.py:96
msgid "no entry"
msgstr "pas d'entrée"

#. use the bibliographic databases in order of declaration
#. to solve the references
#. open the database
#. as we are modifying the list of entries in this loop, we make a copy
#. of it in order to avoir strange behaviors
#. we have to create a new database to hold the entries contained in the
#. current database.
#. loop over the expected entries
#. create a key in the current database
#. does the database provide the key ?
#. yes, add it to the reference
#. and remove it from the list
#. if we found some entries in the current database...
#. is it finished ?
#. check if we were able to solve all the citations
#: scripts/pybcompact.py:141
#, python-format
msgid "can't find the following entries: %s"
msgstr "impossible de trouver les entrées suivantes : %s"

#. -*- python -*-
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#: scripts/pybconvert.py:28
msgid "usage: pybconvert <source>..<target> <input> [output]"
msgstr "usage : pybconvert <source>..<cible> <entrée> [<sortie>]"

#: scripts/pybconvert.py:37
msgid "pybconvert: bad conversion format"
msgstr "pybconvert : mauvaise spécification de format"

#. -*- python -*-
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#: scripts/pybformat.py:33
msgid "usage: pybformat [bibtexfiles...]\n"
msgstr "usage : pybformat [fichiers bibtex...]\n"

#: scripts/pybformat.py:37
#, python-format
msgid "pybformat: error: %s\n"
msgstr "pybformat : erreur: %s\n"

#: scripts/pybformat.py:43
#, python-format
msgid "pybformat: warning: %s\n"
msgstr "pybformat : attention: %s\n"

#. test input arguments
#. user gave wrong arguments...
#. get the specified style and the output
#: scripts/pybformat.py:140 scripts/pybtex.py:85
#, python-format
msgid "can't find style `%s'"
msgstr "Impossible de trouver le style `%s'"

#. first, write the header
#. write the data
#. last, write the footer
#. -*- python -*-
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#. -*- python -*-
#. This file is part of pybliographer
#.
#. Copyright (C) 1998-2003 Frederic GOBRY
#. Email : gobry@pybliographer.org
#.
#. This program is free software; you can redistribute it and/or
#. modify it under the terms of the GNU General Public License
#. as published by the Free Software Foundation; either version 2
#. of the License, or (at your option) any later version.
#.
#. This program is distributed in the hope that it will be useful,
#. but WITHOUT ANY WARRANTY; without even the implied warranty of
#. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#. GNU General Public License for more details.
#.
#. You should have received a copy of the GNU General Public License
#. along with this program; if not, write to the Free Software
#. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#.
#.
#: scripts/pybtex.py:33
msgid "usage: pybtex <latexfile> [bibtexfiles...]"
msgstr "usage : pybtex <fichier latex> [fichiers bibtex...]"

#: scripts/pybtex.py:37
#, python-format
msgid "pybtex: error: %s\n"
msgstr "pybtex : erreur: %s\n"

#. test input arguments
#. user gave wrong arguments...
#. --------------------------------------------------
#. Search the entries found in the LaTeX document
#. --------------------------------------------------
#. warn the user that some entries were not found
#: scripts/pybtex.py:58
msgid "pybtex: warning: the following keys were not resolved"
msgstr "pybtex : attention : les clés suivantes n'ont pas été trouvées"

#. If the LaTeX document declares no style...
#: scripts/pybtex.py:63
msgid "no style defined"
msgstr "pas de style défini"

#~ msgid "Entries..."
#~ msgstr "Entrées..."

#~ msgid ""
#~ "Please install bug-buddy\n"
#~ "to use this feature"
#~ msgstr ""
#~ "Veuillez installer `bug-buddy'\n"
#~ "pour utiliser cette fonction"

#~ msgid "Entries configuration"
#~ msgstr "Configuration des Entrées"

#~ msgid "Entry"
#~ msgstr "Entrée"

#~ msgid "Entry Name:"
#~ msgstr "Nom de l'entrée :"

#~ msgid "Status"
#~ msgstr "État"

#, fuzzy
#~ msgid "Search Command:"
#~ msgstr "Commande de recherche :"

#~ msgid "Sort criterions"
#~ msgstr "Critères de tri"

#~ msgid "Reorder"
#~ msgstr "Reclasser"

#~ msgid "Groups the active fields on the top of the list"
#~ msgstr "Regroupe les champs actifs en haut de la list"

#~ msgid "Unselect all"
#~ msgstr "Tout déselectionner"

#~ msgid "Removes all the sort criterions"
#~ msgstr "Supprime tous les critères de tri"

#~ msgid "_Previous Documents"
#~ msgstr "_Documents précédents"

#~ msgid "About..."
#~ msgstr "À propos..."

#~ msgid "Submit a Bug Report"
#~ msgstr "Envoyer un rapport de Bug"

#~ msgid "_Delete"
#~ msgstr "E_ffacer"

#~ msgid "_Cite"
#~ msgstr "_Citer"

#~ msgid "_File"
#~ msgstr "_Fichier"

#~ msgid "_Help"
#~ msgstr "_Aide"

#~ msgid "Open"
#~ msgstr "Ouvrir"

#~ msgid "Save"
#~ msgstr "Sauver"

#~ msgid "Find"
#~ msgstr "Trouver"

#~ msgid "Search string"
#~ msgstr "Terme cherché"

#~ msgid "Select style"
#~ msgstr "Choix du style"

#~ msgid "Select output file"
#~ msgstr "Choisir le fichier de sortie"

#~ msgid ""
#~ "Item `%s':\n"
#~ "\n"
#~ "%s"
#~ msgstr ""
#~ "Élément `%s' :\n"
#~ "\n"
#~ "%s"

#~ msgid "True"
#~ msgstr "Vrai"

#~ msgid "False"
#~ msgstr "Faux"

#~ msgid "Value"
#~ msgstr "Valeur"

#~ msgid "Fields configuration"
#~ msgstr "Configuration des Champs"

#~ msgid "Name:"
#~ msgstr "Nom :"

#~ msgid "Type:"
#~ msgstr "Type :"

#~ msgid "In use"
#~ msgstr "Utilisé"

#~ msgid "Yes"
#~ msgstr "Oui"

#~ msgid "New text"
#~ msgstr "Nouveau texte"

#~ msgid "an Instance of `%s'"
#~ msgstr "un Instance de `%s'"

#~ msgid "Error"
#~ msgstr "Erreur"

#~ msgid "Format"
#~ msgstr "Format"

#~ msgid "Formatting Style:"
#~ msgstr "Style de format:"

#~ msgid "entry has no key `%s'"
#~ msgstr "L'entrée n'a pas de clé `%s'"

#~ msgid "error: field `%s' appears more than once in the definition of `%s'"
#~ msgstr ""
#~ "erreur : le champ `%s' apparait plusieurs fois dans la définition de `%s'"

#~ msgid "database `%s' is unknown in this Reference"
#~ msgstr "la base de données `%s' est inconnue dans cette Reference"

#~ msgid "can't update a database of type Reference ()"
#~ msgstr "impossible de mettre à jour une base de données de type Reference"

#~ msgid "in entry %s: nested crossrefs"
#~ msgstr "dans l'entrée `%s' : références croisées imbriquées"

#~ msgid "Edit the field in its Native format"
#~ msgstr "Éditer le champ dans son format natif"

#~ msgid "Drag an Entry to define a Cross-Reference"
#~ msgstr "Déplacer une Entrée ici pour définir une référence croisée"

#~ msgid "Remove the current Cross-Reference"
#~ msgstr "Supprimer la référence croisée"

#~ msgid "Add Extra Field"
#~ msgstr "Ajouter un champ supplémentaire"

#~ msgid "Cross-Reference `%s' is unexistent in the database"
#~ msgstr "La référence croisée `%s' n'existe pas dans cette base"

#~ msgid "Invalid identifier `%s'"
#~ msgstr "L'identificateur `%s' est incorrect"

#~ msgid "Identifier `%s' already exists"
#~ msgstr "L'identificateur `%s' existe déjà"

#~ msgid "Quit"
#~ msgstr "Quitter"

#~ msgid "Copy"
#~ msgstr "Copier"

#~ msgid "Cut"
#~ msgstr "Couper"

#~ msgid "New..."
#~ msgstr "Nouveau..."

#~ msgid "Search..."
#~ msgstr "Chercher"

#~ msgid "Sort by Key"
#~ msgstr "Trier par Clé"

#~ msgid "Sort by Type"
#~ msgstr "Trier par Type"

#~ msgid "Cite in LyX"
#~ msgstr "Citer dans LyX"

#~ msgid "Configure"
#~ msgstr "Configurer"

#~ msgid "Exit"
#~ msgstr "Quitter"

#~ msgid "Welcome to Pybliographic"
#~ msgstr "Bienvenue dans Pybliographic"

#~ msgid "Modified database `%s' [%s, %s]"
#~ msgstr "Base de données modifiée `%s' [%s, %s]"

#~ msgid "Database `%s' [%s, %s]"
#~ msgstr "Base de données `%s' [%s, %s]"

#~ msgid "Database is modified.\n"
#~ msgstr "Base de données modifiée\n"

#~ msgid "Discard changes ?"
#~ msgstr "Oublier les modifications ?"

#~ msgid "Quit without saving ?"
#~ msgstr "Quitter sans sauver ?"

#~ msgid ""
#~ "Can't save file:\n"
#~ "%s"
#~ msgstr ""
#~ "Impossible de sauver le fichier:\n"
#~ "%s"

#~ msgid "Not yet implemented..."
#~ msgstr "Pas encore implémenté..."

#~ msgid ""
#~ "Please, create a new database first.\n"
#~ "Use File/New for example"
#~ msgstr ""
#~ "Veuillez créer une nouvelle base avant tout.\n"
#~ "Utilisez le menu Fichier/Nouveau pour cela"

#~ msgid "editing is disabled in this database"
#~ msgstr "L'édition n'est pas autorisée dans cette base"

#~ msgid ""
#~ "Submit a bug report\n"
#~ " using bug-buddy"
#~ msgstr ""
#~ "Envoyer un rapport de Bug\n"
#~ "en utilisant `bug-buddy'"

#~ msgid "Please open a database first"
#~ msgstr "Veuillez ouvrir une base de données"

#~ msgid "Bibliography"
#~ msgstr "Bibliographie"

#~ msgid "Ready to search !"
#~ msgstr "Prêt à chercher !"

#~ msgid "found %d matches"
#~ msgstr "%d entrées trouvées"

#~ msgid "%d matches in this node"
#~ msgstr "%d entrées dans ce noeud"

#~ msgid "edition is disabled in this database"
#~ msgstr "L'édition n'est pas autorisée dans cette base"

#~ msgid "Cross-Reference `%s' is unexistant in the database"
#~ msgstr "La référence croisée `%s' n'existe pas dans cette base"