aboutsummaryrefslogtreecommitdiffstats
path: root/view/fr/hstrings.php
blob: a7f20adc2ce759c5bcd9f1f1a99e8ce06302cdc5 (plain) (blame)
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
<?php

if(! function_exists("string_plural_select_fr")) {
function string_plural_select_fr($n){
	return ($n > 1);;
}}
;
$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authentification distante bloquée. Vous êtes connecté(e) sur ce site localement. Merci de vous déconnecter et réessayer.";
$a->strings["Welcome %s. Remote authentication successful."] = "Bienvenue %s. L'authentification distante a fonctionné.";
$a->strings["Connect"] = "Ajouter/Suivre";
$a->strings["New window"] = "Nouvelle fenêtre";
$a->strings["Open the selected location in a different window or browser tab"] = "Ouvrir l'emplacement dans une fenêtre ou un onglet différent";
$a->strings["User '%s' deleted"] = "Utilisateur '%s' supprimé";
$a->strings["No username found in import file."] = "Aucun nom d'utilisateur dans le fichier d'import.";
$a->strings["Unable to create a unique channel address. Import failed."] = "Impossible de créer une adresse de canal unique. Echec de l'import.";
$a->strings["Import completed."] = "L'import est terminé.";
$a->strings["parent"] = "retour";
$a->strings["Collection"] = "Groupe de contacts";
$a->strings["Principal"] = "Principal";
$a->strings["Addressbook"] = "Carnet d'adresse";
$a->strings["Calendar"] = "Calendrier";
$a->strings["Schedule Inbox"] = "Calendrier - Message entrants";
$a->strings["Schedule Outbox"] = "Calendrier - Message sortants";
$a->strings["Unknown"] = "Inconnu";
$a->strings["Files"] = "Fichiers";
$a->strings["Total"] = "Total";
$a->strings["Shared"] = "Partagé";
$a->strings["Create"] = "Créer";
$a->strings["Upload"] = "Envoyer";
$a->strings["Name"] = "Nom";
$a->strings["Type"] = "Type";
$a->strings["Size"] = "Taille";
$a->strings["Last Modified"] = "Modifié le";
$a->strings["Edit"] = "Modifier";
$a->strings["Delete"] = "Supprimer";
$a->strings["You are using %1\$s of your available file storage."] = "Vous utilisez %1\$s de votre espace de stockage.";
$a->strings["You are using %1\$s of %2\$s available file storage. (%3\$s&#37;)"] = "Vous utilisez %1\$s sur %2\$s d'espace disponible. (%3\$s&#37;)";
$a->strings["WARNING:"] = "AVERTISSEMENT&nbsp;:";
$a->strings["Create new folder"] = "Nouveau dossier";
$a->strings["Upload file"] = "Téléverser un fichier";
$a->strings["Not a valid email address"] = "Ce n'est pas une adresse de courriel valide";
$a->strings["Your email domain is not among those allowed on this site"] = "Votre domaine de courriel ne fait pas partie de ceux autorisés par ce site";
$a->strings["Your email address is already registered at this site."] = "Votre adresse de courriel est déjà inscrite sur ce site.";
$a->strings["An invitation is required."] = "Une invitation est requise.";
$a->strings["Invitation could not be verified."] = "Votre invitation n'a pas pu être vérifiée.";
$a->strings["Please enter the required information."] = "Merci d'entrer les informations requises.";
$a->strings["Failed to store account information."] = "Impossible de stocker les informations liées au compte.";
$a->strings["Registration confirmation for %s"] = "Confirmation de l'inscription pour %s";
$a->strings["Registration request at %s"] = "Demande d'inscription sur %s";
$a->strings["Administrator"] = "Administrateur";
$a->strings["your registration password"] = "votre mot de passe d'inscription";
$a->strings["Registration details for %s"] = "Détails de l'inscription pour %s";
$a->strings["Account approved."] = "Compte approuvé.";
$a->strings["Registration revoked for %s"] = "Inscription révoquée pour %s";
$a->strings["Account verified. Please login."] = "Compte vérifié. Veuillez vous connecter.";
$a->strings["Click here to upgrade."] = "Cliquez ici pour mettre à jour.";
$a->strings["This action exceeds the limits set by your subscription plan."] = "Cette action outrepasserait les limites prévues par votre forfait.";
$a->strings["This action is not available under your subscription plan."] = "Cette action n'est pas disponible avec votre forfait.";
$a->strings["Visible to your default audience"] = "Visible pour vos contacts seulement";
$a->strings["Show"] = "Montrer";
$a->strings["Don't show"] = "Cacher";
$a->strings["Other networks and post services"] = "Autres réseaux et services de messagerie";
$a->strings["Permissions"] = "Autorisations";
$a->strings["Close"] = "Fermer";
$a->strings[" and "] = "et";
$a->strings["public profile"] = "profil public";
$a->strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$s a changé %2\$s en &ldquo;%3\$s&rdquo;";
$a->strings["Visit %1\$s's %2\$s"] = "Visiter %2\$s de %1\$s";
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s a mis à jour %2\$s, modifiant %3\$s.";
$a->strings["Public Timeline"] = "Fil public";
$a->strings["Site Admin"] = "Administrateur";
$a->strings["Bookmarks"] = "Favoris";
$a->strings["Address Book"] = "Carnet d'adresses";
$a->strings["Login"] = "Connexion";
$a->strings["Channel Manager"] = "Gérer les canaux";
$a->strings["Grid"] = "Réseau";
$a->strings["Settings"] = "Paramètres";
$a->strings["Webpages"] = "Pages web";
$a->strings["Channel Home"] = "Mon canal";
$a->strings["Profile"] = "Profil";
$a->strings["Photos"] = "Photos";
$a->strings["Events"] = "Événements";
$a->strings["Directory"] = "Annuaire";
$a->strings["Help"] = "Aide";
$a->strings["Mail"] = "Messages";
$a->strings["Mood"] = "Humeur";
$a->strings["Poke"] = "Tapoter";
$a->strings["Chat"] = "Clavardage";
$a->strings["Search"] = "Recherche";
$a->strings["Probe"] = "Sonder";
$a->strings["Suggest"] = "Suggérer";
$a->strings["Random Channel"] = "Un canal au hasard";
$a->strings["Invite"] = "Invitation";
$a->strings["Features"] = "Fonctionalités";
$a->strings["Language"] = "Langue";
$a->strings["Post"] = "Envoyer";
$a->strings["Profile Photo"] = "Photo du Profil";
$a->strings["Update"] = "Mise à jour";
$a->strings["Install"] = "Installer";
$a->strings["Purchase"] = "Acheter";
$a->strings["Permission denied."] = "Permission refusée.";
$a->strings["Item was not found."] = "Élément introuvable.";
$a->strings["No source file."] = "Pas de fichier source.";
$a->strings["Cannot locate file to replace"] = "Impossible de trouver le fichier à remplacer.";
$a->strings["Cannot locate file to revise/update"] = "Impossible de trouver le fichier à corriger/mettre à jour";
$a->strings["File exceeds size limit of %d"] = "Le fichier dépasse la taille limite de %d";
$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Vous avez atteint votre limite de %1$.0f méga-octets autorisés pour le stockage des pièces-jointes.";
$a->strings["File upload failed. Possible system limit or action terminated."] = "Envoi du fichier impossible. Limite système ou action avortée.";
$a->strings["Stored file could not be verified. Upload failed."] = "Le fichier stocké n'a pu être vérifié. Echec de l'envoi.";
$a->strings["Path not available."] = "Chemin non disponible.";
$a->strings["Empty pathname"] = "Chemin vide";
$a->strings["duplicate filename or path"] = "doublon de chemin ou de fichier";
$a->strings["Path not found."] = "Chemin introuvable.";
$a->strings["mkdir failed."] = "mkdir a échoué.";
$a->strings["database storage failed."] = "l'écriture dans la base de données a échoué.";
$a->strings["Empty path"] = "Chemin vide";
$a->strings["Logged out."] = "Deconnecté.";
$a->strings["Failed authentication"] = "Échec de l'authentification";
$a->strings["Login failed."] = "Échec de la connexion.";
$a->strings["Attachments:"] = "Pièces jointes&nbsp;:";
$a->strings["l F d, Y \\@ g:i A"] = "l d F Y \\à G\\hi";
$a->strings["\$Projectname event notification:"] = "Notification d'événement de \$Projectname&nbsp;:";
$a->strings["Starts:"] = "Début&nbsp;:";
$a->strings["Finishes:"] = "Fin&nbsp;:";
$a->strings["Location:"] = "Emplacement&nbsp;:";
$a->strings["Image/photo"] = "Image/photo";
$a->strings["Encrypted content"] = "Contenu chiffré";
$a->strings["Install %s element: "] = "Installer %s élément";
$a->strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Ce message contient un élément installable %s, mais vous n'avez pas l'autorisation de l'installer sur ce site.";
$a->strings["webpage"] = "pages web";
$a->strings["layout"] = "mise en page";
$a->strings["block"] = "bloquer";
$a->strings["menu"] = "menu";
$a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s a écrit %2\$s qui suit %3\$s";
$a->strings["post"] = "publication";
$a->strings["Different viewers will see this text differently"] = "Ce texte aura un rendu différent en fonction des utilisateurs";
$a->strings["$1 spoiler"] = "dévoile&nbsp;: $1";
$a->strings["$1 wrote:"] = "$1 a écrit&nbsp;:";
$a->strings["%1\$s's bookmarks"] = "Favoris de %1\$s";
$a->strings["Missing room name"] = "Il manque le nom du salon";
$a->strings["Duplicate room name"] = "Un salon avec ce nom existe déjà";
$a->strings["Invalid room specifier."] = "Identifiant de salon invalide.";
$a->strings["Room not found."] = "Salon introuvable.";
$a->strings["Room is full"] = "Le salon est plein";
$a->strings["Default"] = "Défaut";
$a->strings["%d invitation available"] = array(
	0 => "%d invitation disponible",
	1 => "%d invitations disponibles",
);
$a->strings["Advanced"] = "Avancé";
$a->strings["Find Channels"] = "Trouver des canaux";
$a->strings["Enter name or interest"] = "Saisir nom ou centre d'intérêt";
$a->strings["Connect/Follow"] = "Ajouter/Suivre";
$a->strings["Examples: Robert Morgenstein, Fishing"] = "Exemples: Guillaume Martin, Course à pieds";
$a->strings["Find"] = "Trouver";
$a->strings["Channel Suggestions"] = "Canaux suggérés";
$a->strings["Random Profile"] = "Un profil au hasard";
$a->strings["Invite Friends"] = "Inviter des amis";
$a->strings["Advanced example: name=fred and country=iceland"] = "Exemple avancé&nbsp;: name=fred and country=iceland";
$a->strings["Saved Folders"] = "Dossiers sauvegardés";
$a->strings["Everything"] = "Tout";
$a->strings["Categories"] = "Catégories";
$a->strings["%d connection in common"] = array(
	0 => "%d contact en commun",
	1 => "%d contacts en commun",
);
$a->strings["show more"] = "montrer plus";
$a->strings["photo"] = "photo";
$a->strings["event"] = "événement";
$a->strings["channel"] = "canal";
$a->strings["status"] = "état";
$a->strings["comment"] = "commentaire";
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s aime %3\$s de %2\$s";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s n'aime pas %3\$s de %2\$s";
$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ajoute %2\$s à ses contacts";
$a->strings["%1\$s poked %2\$s"] = "%1\$s a tapoté %2\$s";
$a->strings["poked"] = "a tapoté";
$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s est %2\$s";
$a->strings["__ctx:title__ Likes"] = "Aime";
$a->strings["__ctx:title__ Dislikes"] = "N'aime pas";
$a->strings["__ctx:title__ Agree"] = "D'accord";
$a->strings["__ctx:title__ Disagree"] = "Pas d'accord";
$a->strings["__ctx:title__ Abstain"] = "Abstention";
$a->strings["__ctx:title__ Attending"] = "Participations";
$a->strings["__ctx:title__ Not attending"] = "Non-participations";
$a->strings["__ctx:title__ Might attend"] = "Participation possible";
$a->strings["Select"] = "Sélectionner";
$a->strings["Private Message"] = "Message Privé";
$a->strings["Message signature validated"] = "Signature du message validée";
$a->strings["Message signature incorrect"] = "Signature du message incorrecte";
$a->strings["View %s's profile @ %s"] = "Voir le profil de %s @ %s";
$a->strings["Categories:"] = "Catégories&nbsp;:";
$a->strings["Filed under:"] = "Classé sous&nbsp;:";
$a->strings["from %s"] = "de %s";
$a->strings["last edited: %s"] = "dernière modification&nbsp;: %s";
$a->strings["Expires: %s"] = "Expire&nbsp;: %s";
$a->strings["View in context"] = "Voir en contexte";
$a->strings["Please wait"] = "Merci de patienter";
$a->strings["remove"] = "supprimer";
$a->strings["Loading..."] = "Chargement...";
$a->strings["Delete Selected Items"] = "Supprimer les éléments selectionnés";
$a->strings["View Source"] = "Voir source";
$a->strings["Follow Thread"] = "Suivre la discussion";
$a->strings["Unfollow Thread"] = "Ne plus suivre la discussion";
$a->strings["View Profile"] = "Voir le profil";
$a->strings["Activity/Posts"] = "Activité/Publications";
$a->strings["Edit Connection"] = "Modifier le contact";
$a->strings["Message"] = "Message";
$a->strings["Ratings"] = "Evaluations";
$a->strings["%s likes this."] = "%s aime ça.";
$a->strings["%s doesn't like this."] = "%s n'aime pas ça.";
$a->strings["<span  %1\$s>%2\$d people</span> like this."] = array(
	0 => "<span  %1\$s>%2\$d personne</span> aime ceci.",
	1 => "<span  %1\$s>%2\$d personnes</span> aiment ceci.",
);
$a->strings["<span  %1\$s>%2\$d people</span> don't like this."] = array(
	0 => "<span  %1\$s>%2\$d personne</span> n'aime pas ça.",
	1 => "<span  %1\$s>%2\$d personnes</span> n'aiment pas ça.",
);
$a->strings["and"] = "et";
$a->strings[", and %d other people"] = array(
	0 => ", et %d autre personne",
	1 => ", et %d autres personnes",
);
$a->strings["%s like this."] = "%s aime ça.";
$a->strings["%s don't like this."] = "%s n'aime pas ça.";
$a->strings["Visible to <strong>everybody</strong>"] = "Visible par <strong>tout le monde</strong>";
$a->strings["Please enter a link URL:"] = "Merci d'entrer l'URL d'un lien&nbsp;:";
$a->strings["Please enter a video link/URL:"] = "Merci d'entrer l'URL d'une video&nbsp;:";
$a->strings["Please enter an audio link/URL:"] = "Merci d'entrer l'URL d'un contenu audio&nsbp;:";
$a->strings["Tag term:"] = "Étiquette&nbsp;:";
$a->strings["Save to Folder:"] = "Classer dans le dossier&nbsp;:";
$a->strings["Where are you right now?"] = "Où êtes-vous en ce moment&nbsp;?";
$a->strings["Expires YYYY-MM-DD HH:MM"] = "Expire le YYYY-MM-DD à HH:MM";
$a->strings["Preview"] = "Aperçu";
$a->strings["Share"] = "Partager";
$a->strings["Page link name"] = "Nom du lien vers la page";
$a->strings["Post as"] = "Publier en tant que";
$a->strings["Bold"] = "Gras";
$a->strings["Italic"] = "Italique";
$a->strings["Underline"] = "Souligné";
$a->strings["Quote"] = "Citation";
$a->strings["Code"] = "Code";
$a->strings["Upload photo"] = "Téléverser une photo";
$a->strings["upload photo"] = "téléverser une photo";
$a->strings["Attach file"] = "Joindre un fichier";
$a->strings["attach file"] = "joindre un fichier";
$a->strings["Insert web link"] = "Insérer lien web";
$a->strings["web link"] = "lien web";
$a->strings["Insert video link"] = "Insérer lien vidéo";
$a->strings["video link"] = "lien vidéo";
$a->strings["Insert audio link"] = "Insérer un lien audio";
$a->strings["audio link"] = "lien audio";
$a->strings["Set your location"] = "Spécifier votre emplacement géographique";
$a->strings["set location"] = "spécifier l'emplacement géographique";
$a->strings["Toggle voting"] = "(Dés)activer le vote";
$a->strings["Clear browser location"] = "Supprimer l'emplacement géographique du navigateur";
$a->strings["clear location"] = "supprimer l'emplacement géographique";
$a->strings["Title (optional)"] = "Titre (facultatif)";
$a->strings["Categories (optional, comma-separated list)"] = "Catégories (facultatives, séparées par des virgules)";
$a->strings["Permission settings"] = "Gérer les autorisations";
$a->strings["permissions"] = "autorisations";
$a->strings["Public post"] = "Contenu public";
$a->strings["Example: bob@example.com, mary@example.com"] = "Exemple: julien@exemple.com, marie@exemple.com";
$a->strings["Set expiration date"] = "Définir la date d'expiration";
$a->strings["Set publish date"] = "Définir la date de publication";
$a->strings["Encrypt text"] = "Chiffrer le texte";
$a->strings["OK"] = "OK";
$a->strings["Cancel"] = "Annuler";
$a->strings["Discover"] = "À découvrir";
$a->strings["Imported public streams"] = "Flux publics importés";
$a->strings["Commented Order"] = "Par date de commentaire";
$a->strings["Sort by Comment Date"] = "Trier par date de dernier commentaire";
$a->strings["Posted Order"] = "Par date de publication";
$a->strings["Sort by Post Date"] = "Trier par date de publication";
$a->strings["Personal"] = "Me concernant";
$a->strings["Posts that mention or involve you"] = "Publications qui vous mentionnent ou vous concernent d'une manière ou d'une autre";
$a->strings["New"] = "Nouveautés";
$a->strings["Activity Stream - by date"] = "Flux d'activité - par date";
$a->strings["Starred"] = "Mis en avant (étoiles)";
$a->strings["Favourite Posts"] = "Publications préférées";
$a->strings["Spam"] = "Indésirable";
$a->strings["Posts flagged as SPAM"] = "Publications marquées comme indésirables";
$a->strings["Channel"] = "Canal";
$a->strings["Status Messages and Posts"] = "Messages d'état et contributions";
$a->strings["About"] = "À propos";
$a->strings["Profile Details"] = "Détails du profil";
$a->strings["Photo Albums"] = "Albums photo";
$a->strings["Files and Storage"] = "Fichiers et Stockage";
$a->strings["Chatrooms"] = "Salons de clavardage";
$a->strings["Saved Bookmarks"] = "Favoris sauvegardés";
$a->strings["Manage Webpages"] = "Gérer les pages web";
$a->strings["View all"] = "Voir tout";
$a->strings["__ctx:noun__ Like"] = array(
	0 => "Aime",
	1 => "Aime",
);
$a->strings["__ctx:noun__ Dislike"] = array(
	0 => "N'aime pas",
	1 => "N'aime pas",
);
$a->strings["__ctx:noun__ Attending"] = array(
	0 => "Participe",
	1 => "Participent",
);
$a->strings["__ctx:noun__ Not Attending"] = array(
	0 => "Ne participe pas",
	1 => "Ne participent pas",
);
$a->strings["__ctx:noun__ Undecided"] = array(
	0 => "Indécis(e)",
	1 => "Indécis(es)",
);
$a->strings["__ctx:noun__ Agree"] = array(
	0 => "D'accord",
	1 => "D'accord",
);
$a->strings["__ctx:noun__ Disagree"] = array(
	0 => "Pas d'accord",
	1 => "Pas d'accord",
);
$a->strings["__ctx:noun__ Abstain"] = array(
	0 => "S'abstient",
	1 => "S'abstiennent",
);
$a->strings["Miscellaneous"] = "Divers";
$a->strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-JJ ou MM-JJ";
$a->strings["Required"] = "Requis";
$a->strings["never"] = "jamais";
$a->strings["less than a second ago"] = "à l'instant";
$a->strings["year"] = "année";
$a->strings["years"] = "années";
$a->strings["month"] = "mois";
$a->strings["months"] = "mois";
$a->strings["week"] = "semaine";
$a->strings["weeks"] = "semaines";
$a->strings["day"] = "jour";
$a->strings["days"] = "jours";
$a->strings["hour"] = "heure";
$a->strings["hours"] = "heures";
$a->strings["minute"] = "minute";
$a->strings["minutes"] = "minutes";
$a->strings["second"] = "seconde";
$a->strings["seconds"] = "secondes";
$a->strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "il y a %1\$d %2\$s";
$a->strings["%1\$s's birthday"] = "Anniversaire de %1\$s";
$a->strings["Happy Birthday %1\$s"] = "Joyeux Anniversaire %1\$s";
$a->strings["Cannot locate DNS info for database server '%s'"] = "Impossible de trouver les infos DNS du serveur de BDD '%s'";
$a->strings["Directory Options"] = "Options d'annuaire";
$a->strings["Safe Mode"] = "Mode sûr";
$a->strings["No"] = "Non";
$a->strings["Yes"] = "Oui";
$a->strings["Public Forums Only"] = "Les forums publics uniquement";
$a->strings["This Website Only"] = "Ce site uniquement";
$a->strings["This event has been added to your calendar."] = "Cet évènement a été ajouté dans votre calendrier.";
$a->strings["Not specified"] = "Non spécifié";
$a->strings["Needs Action"] = "Besoin d'une action";
$a->strings["Completed"] = "Terminé";
$a->strings["In Process"] = "En cours";
$a->strings["Cancelled"] = "Annulé";
$a->strings["Channel is blocked on this site."] = "Ce canal est bloqué sur ce site.";
$a->strings["Channel location missing."] = "Emplacement du canal introuvable.";
$a->strings["Response from remote channel was incomplete."] = "La réponse du canal distant était incomplète.";
$a->strings["Channel was deleted and no longer exists."] = "Le canal a été supprimé et n'existe plus.";
$a->strings["Protocol disabled."] = "Protocole désactivé.";
$a->strings["Channel discovery failed."] = "La tentative d'accéder au canal a échoué.";
$a->strings["local account not found."] = "compte local introuvable.";
$a->strings["Cannot connect to yourself."] = "Ne peut pas se connecter à vous.";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un groupe supprimé portant ce nom a été ressuscité. Les permissions liées aux éléments existants <strong>peuvent</strong> s'appliquer au groupe et aux membres futurs. Si ce n'est pas ce que vous attendiez, merci de créer un autre groupe avec un nom différent.";
$a->strings["Add new connections to this privacy group"] = "Ajouter de nouveaux contacts à ce groupe d'accès";
$a->strings["All Channels"] = "Tous les canaux";
$a->strings["edit"] = "modifier";
$a->strings["Privacy Groups"] = "Groupes d'accès";
$a->strings["Edit group"] = "Modifier le groupe";
$a->strings["Add privacy group"] = "Ajouter un groupe d'accès";
$a->strings["Channels not in any privacy group"] = "Canaux n'étant dans aucun groupe d'accès";
$a->strings["add"] = "ajouter";
$a->strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "L'import a échoué. Un canal existe déjà avec ce nom";
$a->strings["Channel clone failed. Import failed."] = "Echec du clonage du canal. Echec de l'impot.";
$a->strings["Cloned channel not found. Import failed."] = "Canal cloné non trouvé. Echec de l'import.";
$a->strings["Delete this item?"] = "Supprimer cet élément?";
$a->strings["Comment"] = "Commenter";
$a->strings["[+] show all"] = "[+] voir tous";
$a->strings["[-] show less"] = "[-] montrer moins";
$a->strings["[+] expand"] = "[+] déplier";
$a->strings["[-] collapse"] = "[-] replier";
$a->strings["Password too short"] = "Mot de passe trop court";
$a->strings["Passwords do not match"] = "Les mots de passe ne correspondent pas";
$a->strings["everybody"] = "tout le monde";
$a->strings["Secret Passphrase"] = "Phrase de passe secrète";
$a->strings["Passphrase hint"] = "Indice pour la phrase de passe";
$a->strings["Notice: Permissions have changed but have not yet been submitted."] = "Note&nbsp;: Les permissions ont changées, mais n'ont pas encore été sauvées.";
$a->strings["close all"] = "fermer tout";
$a->strings["Nothing new here"] = "Aucun nouveau contenu trouvé";
$a->strings["Rate This Channel (this is public)"] = "Evaluer ce canal (publiquement)";
$a->strings["Rating"] = "Evaluation";
$a->strings["Describe (optional)"] = "Description (facultative)";
$a->strings["Submit"] = "Envoyer";
$a->strings["Please enter a link URL"] = "Merci d'insérer une URL";
$a->strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Changements en attente. Voulez-vous vraiment quitter cette page?";
$a->strings["Location"] = "Emplacement";
$a->strings["timeago.prefixAgo"] = "timeago.prefixAgo";
$a->strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
$a->strings["ago"] = "auparavant";
$a->strings["from now"] = "de maintenant";
$a->strings["less than a minute"] = "moins d'une minute";
$a->strings["about a minute"] = "environ une minute";
$a->strings["%d minutes"] = "%d minutes";
$a->strings["about an hour"] = "environ une heure";
$a->strings["about %d hours"] = "environ %d heures";
$a->strings["a day"] = "un jour";
$a->strings["%d days"] = "%d jours";
$a->strings["about a month"] = "environ un mois";
$a->strings["%d months"] = "%d mois";
$a->strings["about a year"] = "environ un an";
$a->strings["%d years"] = "%d années";
$a->strings[" "] = "";
$a->strings["timeago.numbers"] = "timeago.numbers";
$a->strings["January"] = "Janvier";
$a->strings["February"] = "Février";
$a->strings["March"] = "Mars";
$a->strings["April"] = "Avril";
$a->strings["__ctx:long__ May"] = "Mai";
$a->strings["June"] = "Juin";
$a->strings["July"] = "Juillet";
$a->strings["August"] = "Août";
$a->strings["September"] = "Septembre";
$a->strings["October"] = "Octobre";
$a->strings["November"] = "Novembre";
$a->strings["December"] = "Décembre";
$a->strings["Jan"] = "Jan";
$a->strings["Feb"] = "Fev";
$a->strings["Mar"] = "Mar";
$a->strings["Apr"] = "Avr";
$a->strings["__ctx:short__ May"] = "Mai";
$a->strings["Jun"] = "Jun";
$a->strings["Jul"] = "Jul";
$a->strings["Aug"] = "Aou";
$a->strings["Sep"] = "Sep";
$a->strings["Oct"] = "Oct";
$a->strings["Nov"] = "Nov";
$a->strings["Dec"] = "Dec";
$a->strings["Sunday"] = "Dimanche";
$a->strings["Monday"] = "Lundi";
$a->strings["Tuesday"] = "Mardi";
$a->strings["Wednesday"] = "Mercredi";
$a->strings["Thursday"] = "Jeudi";
$a->strings["Friday"] = "Vendredi";
$a->strings["Saturday"] = "Samedi";
$a->strings["Sun"] = "Dim";
$a->strings["Mon"] = "Lun";
$a->strings["Tue"] = "Mar";
$a->strings["Wed"] = "Mer";
$a->strings["Thu"] = "Jeu";
$a->strings["Fri"] = "Ven";
$a->strings["Sat"] = "Sam";
$a->strings["__ctx:calendar__ today"] = "aujourd'hui";
$a->strings["__ctx:calendar__ month"] = "mois";
$a->strings["__ctx:calendar__ week"] = "semaine";
$a->strings["__ctx:calendar__ day"] = "jour";
$a->strings["__ctx:calendar__ All day"] = "Toute la journée";
$a->strings["No recipient provided."] = "Pas de destinataire.";
$a->strings["[no subject]"] = "[sans objet]";
$a->strings["Unable to determine sender."] = "Impossible de déterminer l'émetteur.";
$a->strings["Stored post could not be verified."] = "Le message stocké n'a pas pu être vérifié.";
$a->strings["Logout"] = "Déconnexion";
$a->strings["End this session"] = "Mettre fin à la session";
$a->strings["Home"] = "Mon canal";
$a->strings["Your posts and conversations"] = "Vos publications et conversations";
$a->strings["Your profile page"] = "Votre profil";
$a->strings["Edit Profiles"] = "Modifier les profils";
$a->strings["Manage/Edit profiles"] = "Gérer/modifier les profils";
$a->strings["Edit Profile"] = "Éditeur de profil";
$a->strings["Edit your profile"] = "Modifier votre profil";
$a->strings["Your photos"] = "Vos photos";
$a->strings["Your files"] = "Vos fichiers";
$a->strings["Your chatrooms"] = "Vos salons";
$a->strings["Your bookmarks"] = "Vos favoris";
$a->strings["Your webpages"] = "Vos pages web";
$a->strings["Sign in"] = "Connexion";
$a->strings["%s - click to logout"] = "%s - cliquer ici pour déconnecter";
$a->strings["Remote authentication"] = "Authentification distante";
$a->strings["Click to authenticate to your home hub"] = "S'authentifier auprès de votre hub principal";
$a->strings["Home Page"] = "Page d'accueil";
$a->strings["Register"] = "S'inscrire";
$a->strings["Create an account"] = "Créer un compte";
$a->strings["Help and documentation"] = "Aide et documentation";
$a->strings["Apps"] = "Applications";
$a->strings["Applications, utilities, links, games"] = "Applications, utilitaires, liens, jeux";
$a->strings["Search site @name, #tag, ?docs, content"] = "Recherche @nom, #tag, contenu";
$a->strings["Channel Directory"] = "Annuaire des canaux";
$a->strings["Your grid"] = "Votre réseau";
$a->strings["Mark all grid notifications seen"] = "Marquer toutes les notifications du réseau comme vues";
$a->strings["Channel home"] = "Mon canal";
$a->strings["Mark all channel notifications seen"] = "Marquer toutes les notifications du canal comme vues";
$a->strings["Connections"] = "Contacts";
$a->strings["Notices"] = "Notifications";
$a->strings["Notifications"] = "Notifications";
$a->strings["See all notifications"] = "Voir toutes les notifications";
$a->strings["Mark all system notifications seen"] = "Marquer toutes les notifications système comme vues";
$a->strings["Private mail"] = "Messages privés";
$a->strings["See all private messages"] = "Voir tous les messages privés";
$a->strings["Mark all private messages seen"] = "Marquer tous les messages privés comme vus";
$a->strings["Inbox"] = "Boîte de réception";
$a->strings["Outbox"] = "Boîte d'envoi";
$a->strings["New Message"] = "Nouveau message";
$a->strings["Event Calendar"] = "Calendrier des événements";
$a->strings["See all events"] = "Voir tous les événements";
$a->strings["Mark all events seen"] = "Marquer tous les événements comme vus";
$a->strings["Manage Your Channels"] = "Gérer vos canaux";
$a->strings["Account/Channel Settings"] = "Paramètres du Compte/Canal";
$a->strings["Admin"] = "Administrateur";
$a->strings["Site Setup and Configuration"] = "Configuration du site";
$a->strings["@name, #tag, ?doc, content"] = "@nom, #étiquette, ?doc, contenu";
$a->strings["Please wait..."] = "Merci de patienter...";
$a->strings["view full size"] = "voir en taille réelle";
$a->strings["\$Projectname Notification"] = "Notification \$Projectname";
$a->strings["\$projectname"] = "\$projectname";
$a->strings["Thank You,"] = "Merci,";
$a->strings["%s Administrator"] = "l'administrateur de %s";
$a->strings["No Subject"] = "Pas d'objet";
$a->strings["created a new post"] = "a publié un nouveau message";
$a->strings["commented on %s's post"] = "a commenté la publication de %s";
$a->strings["New Page"] = "Nouvelle page";
$a->strings["View"] = "Voir";
$a->strings["Actions"] = "Actions";
$a->strings["Page Link"] = "Lien vers la page";
$a->strings["Title"] = "Titre";
$a->strings["Created"] = "Créé(e)";
$a->strings["Edited"] = "Modifié(e)";
$a->strings["Profile Photos"] = "Photos du profil";
$a->strings["Image exceeds website size limit of %lu bytes"] = "L'image dépasse la taille limite de %lu octets";
$a->strings["Image file is empty."] = "L'image est vide.";
$a->strings["Unable to process image"] = "Impossible de traiter l'image";
$a->strings["Photo storage failed."] = "Le stockage de l'image a échoué.";
$a->strings["a new photo"] = "une nouvelle photo";
$a->strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s a publié %2\$s pour %3\$s";
$a->strings["Upload New Photos"] = "Ajouter des photos";
$a->strings["Male"] = "Homme";
$a->strings["Female"] = "Femme";
$a->strings["Currently Male"] = "Actuellement homme";
$a->strings["Currently Female"] = "Actuellement femme";
$a->strings["Mostly Male"] = "Surtout homme";
$a->strings["Mostly Female"] = "Surtout femme";
$a->strings["Transgender"] = "Transgenre";
$a->strings["Intersex"] = "Intersexuel";
$a->strings["Transsexual"] = "Transsexuel";
$a->strings["Hermaphrodite"] = "Hermaphrodite";
$a->strings["Neuter"] = "Neutre";
$a->strings["Non-specific"] = "Non spécifique";
$a->strings["Other"] = "Autre";
$a->strings["Undecided"] = "Indécis";
$a->strings["Males"] = "Hommes";
$a->strings["Females"] = "Femmes";
$a->strings["Gay"] = "Gay";
$a->strings["Lesbian"] = "Lesbienne";
$a->strings["No Preference"] = "Sans préférence";
$a->strings["Bisexual"] = "Bisexuel";
$a->strings["Autosexual"] = "Autosexuel";
$a->strings["Abstinent"] = "Abstinent";
$a->strings["Virgin"] = "Vierge";
$a->strings["Deviant"] = "Déviant";
$a->strings["Fetish"] = "Fétichiste";
$a->strings["Oodles"] = "Une floppée";
$a->strings["Nonsexual"] = "Non-sexuel";
$a->strings["Single"] = "Célibataire";
$a->strings["Lonely"] = "Solitaire";
$a->strings["Available"] = "Disponible";
$a->strings["Unavailable"] = "Indisponible";
$a->strings["Has crush"] = "A un béguin";
$a->strings["Infatuated"] = "Amoureux transi";
$a->strings["Dating"] = "Sort avec quelqu'un";
$a->strings["Unfaithful"] = "Infidèle";
$a->strings["Sex Addict"] = "Accro au sexe";
$a->strings["Friends"] = "Amis";
$a->strings["Friends/Benefits"] = "Amis avec bénéfices";
$a->strings["Casual"] = "Sans engagement";
$a->strings["Engaged"] = "Fiancé(e)";
$a->strings["Married"] = "Marié(e)";
$a->strings["Imaginarily married"] = "Marié(e) dans ses rêves";
$a->strings["Partners"] = "Partenaires";
$a->strings["Cohabiting"] = "En cohabitation";
$a->strings["Common law"] = "Conjoints de fait";
$a->strings["Happy"] = "Heureux";
$a->strings["Not looking"] = "Pas en recherche";
$a->strings["Swinger"] = "Echangiste";
$a->strings["Betrayed"] = "Trahi(e)";
$a->strings["Separated"] = "Séparé(e)";
$a->strings["Unstable"] = "Instable";
$a->strings["Divorced"] = "Divorcé(e)";
$a->strings["Imaginarily divorced"] = "Divorcé(e) dans ses rêves";
$a->strings["Widowed"] = "Veuf/veuve";
$a->strings["Uncertain"] = "Incertain";
$a->strings["It's complicated"] = "C'est compliqué";
$a->strings["Don't care"] = "S'en fiche";
$a->strings["Ask me"] = "Me demander";
$a->strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Le formulaire n'est plus sécurisé, probablement parce qu'il est ouvert depuis trop longtemps (plus de 3 heures).";
$a->strings["Tags"] = "Étiquettes";
$a->strings["Keywords"] = "Mots-clefs";
$a->strings["have"] = "ont";
$a->strings["has"] = "a";
$a->strings["want"] = "veulent";
$a->strings["wants"] = "veut";
$a->strings["like"] = "aiment";
$a->strings["likes"] = "aime";
$a->strings["dislike"] = "n'aiment pas";
$a->strings["dislikes"] = "n'aime pas";
$a->strings["Invalid data packet"] = "Paquet de données invalide";
$a->strings["Unable to verify channel signature"] = "Impossible de vérifier la signature du canal";
$a->strings["Unable to verify site signature for %s"] = "Impossible de vérifier la signature de site pour %s";
$a->strings["invalid target signature"] = "signature de la cible invalide";
$a->strings["Frequently"] = "Fréquemment";
$a->strings["Hourly"] = "Toutes les heures";
$a->strings["Twice daily"] = "Deux fois par jour";
$a->strings["Daily"] = "Chaque jour";
$a->strings["Weekly"] = "Chaque semaine";
$a->strings["Monthly"] = "Chaque mois";
$a->strings["Friendica"] = "Friendica";
$a->strings["OStatus"] = "OStatus";
$a->strings["RSS/Atom"] = "RSS/Atom";
$a->strings["Email"] = "Courriel";
$a->strings["Diaspora"] = "Diaspora";
$a->strings["Facebook"] = "Facebook";
$a->strings["Zot"] = "Zot";
$a->strings["LinkedIn"] = "Linkedin";
$a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace";
$a->strings["prev"] = "préc.";
$a->strings["first"] = "premier";
$a->strings["last"] = "dernier";
$a->strings["next"] = "Suivant";
$a->strings["older"] = "plus ancien";
$a->strings["newer"] = "plus récent";
$a->strings["No connections"] = "Pas de relations.";
$a->strings["View all %s connections"] = "Voir les %s contacts";
$a->strings["Save"] = "Enregistrer";
$a->strings["poke"] = "tapoter";
$a->strings["ping"] = "ping";
$a->strings["pinged"] = "pingé";
$a->strings["prod"] = "encourager";
$a->strings["prodded"] = "encouragé";
$a->strings["slap"] = "giffler";
$a->strings["slapped"] = "gifflé(e)";
$a->strings["finger"] = "pointer";
$a->strings["fingered"] = "pointé";
$a->strings["rebuff"] = "rejetter";
$a->strings["rebuffed"] = "rejeté";
$a->strings["happy"] = "heureux";
$a->strings["sad"] = "triste";
$a->strings["mellow"] = "mélancolique";
$a->strings["tired"] = "fatigué";
$a->strings["perky"] = "impertinent";
$a->strings["angry"] = "en colère";
$a->strings["stupefied"] = "stupéfait";
$a->strings["puzzled"] = "perplexe";
$a->strings["interested"] = "intéressé";
$a->strings["bitter"] = "amer";
$a->strings["cheerful"] = "plein d'entrain";
$a->strings["alive"] = "vivant";
$a->strings["annoyed"] = "agaçé";
$a->strings["anxious"] = "anxieux";
$a->strings["cranky"] = "énervé";
$a->strings["disturbed"] = "perturbé";
$a->strings["frustrated"] = "frustré";
$a->strings["depressed"] = "déprimé";
$a->strings["motivated"] = "motivé";
$a->strings["relaxed"] = "détendu";
$a->strings["surprised"] = "surpris";
$a->strings["May"] = "Mai";
$a->strings["Unknown Attachment"] = "Pièce jointe inconnue";
$a->strings["unknown"] = "Inconnu";
$a->strings["remove category"] = "supprimer la catégorie";
$a->strings["remove from file"] = "retirer du fichier";
$a->strings["Click to open/close"] = "Cliquer pour ouvrir/fermer";
$a->strings["Link to Source"] = "Lien vers la Source";
$a->strings["default"] = "défaut";
$a->strings["Page layout"] = "Mise en page";
$a->strings["You can create your own with the layouts tool"] = "Créez les vôtres avec les outils de mise en page";
$a->strings["Page content type"] = "Type de contenu de la page";
$a->strings["Select an alternate language"] = "Choisir une langue alternative";
$a->strings["activity"] = "activité";
$a->strings["Design Tools"] = "Outils de conception";
$a->strings["Blocks"] = "Blocs";
$a->strings["Menus"] = "Menus";
$a->strings["Layouts"] = "Mises-en-page";
$a->strings["Pages"] = "Pages";
$a->strings["Permission denied"] = "Accès refusé";
$a->strings["(Unknown)"] = "(Inconnu)";
$a->strings["Visible to anybody on the internet."] = "Visible pour tout le monde sur internet.";
$a->strings["Visible to you only."] = "Visible pour vous seulement.";
$a->strings["Visible to anybody in this network."] = "Visible pour tout le monde sur ce réseau.";
$a->strings["Visible to anybody authenticated."] = "Visible aux utilisateurs authentifiés.";
$a->strings["Visible to anybody on %s."] = "Visible pour tous sur %s.";
$a->strings["Visible to all connections."] = "Visible pour tous les contacts.";
$a->strings["Visible to approved connections."] = "Visible aux contacts approuvés.";
$a->strings["Visible to specific connections."] = "Visible pour certains contacts.";
$a->strings["Item not found."] = "Élément introuvable";
$a->strings["Privacy group not found."] = "Groupe d'accès introuvable.";
$a->strings["Privacy group is empty."] = "Groupe d'accès vide.";
$a->strings["Privacy group: %s"] = "Groupe d'accès&nbsp;: %s";
$a->strings["Connection: %s"] = "Contact&nbsp;: %s";
$a->strings["Connection not found."] = "Contact non trouvé.";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notify] Nouveau courriel reçu à %s";
$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, vous avez reçu un message privé sur %3\$s, de la part de %2\$s.";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s vous a envoyé %2\$s.";
$a->strings["a private message"] = "un message privé";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Merci de visiter %s pour voir et/ou répondre à vos messages privés.";
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s a commenté sur [zrl=%3\$s]%4\$s[/zrl]";
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s a commenté sur [zrl=%3\$s]%5\$s de %4\$s[/zrl]";
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s a commenté [zrl=%3\$s]votre %4\$s[/zrl]";
$a->strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notify] Commentaire de %2\$s sur conversation #%1\$d";
$a->strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s a commenté un élément de conversation que vous suivez.";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "Merci de visiter %s pour voir et/ou répondre sur cette conversation.";
$a->strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notify] %s a publié sur votre profil";
$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s a publié sur votre profil à %3\$s";
$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s a publié sur [zrl=%3\$s]votre profil[/zrl]";
$a->strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notify] %s vous a étiqueté";
$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, vous avez été étiqueté sur %3\$s par %2\$s";
$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]vous a étiqueté[/zrl].";
$a->strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notify] %1\$s vous a tapoté";
$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s vous a tapoté sur %3\$s";
$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]vous a tapoté[/zrl].";
$a->strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notify] %s a étiqueté votre publication";
$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s a étiqueté votre publication sur %3\$s";
$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s a étiqueté [zrl=%3\$s]votre publication[/zrl]";
$a->strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notify] Nouvelle présentation";
$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, vous avez reçu une demande de contact de '%2\$s' sur %3\$s";
$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, vous avez reçu [zrl=%2\$s]une demande de contact[/zrl] de %3\$s.";
$a->strings["You may visit their profile at %s"] = "Vous pouvez visiter leur profil sur %s";
$a->strings["Please visit %s to approve or reject the connection request."] = "Merci de visiter %s avant d'approuver (ou non) cette demande de contact.";
$a->strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notify] Nouvel(le) ami(e) suggéré(e)";
$a->strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, vous avez reçu une suggestion d'ami(e) de '%2\$s' à %3\$s";
$a->strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, avez reçu %3\$s comme [zrl=%2\$s]une suggestion d'ami(e)[/zrl] de %4\$s.";
$a->strings["Name:"] = "Nom&nbsp;:";
$a->strings["Photo:"] = "Photo&nbsp;:";
$a->strings["Please visit %s to approve or reject the suggestion."] = "Merci de visiter %s pour donner suite (ou non) à cette suggestion.";
$a->strings["[Hubzilla:Notify]"] = "[Hubzilla:Notify]";
$a->strings["General Features"] = "Fonctionnalités générales";
$a->strings["Content Expiration"] = "Expiration du contenu";
$a->strings["Remove posts/comments and/or private messages at a future time"] = "Supprimer les contributions/commentaires et/ou messages privés plus tard";
$a->strings["Multiple Profiles"] = "Profils multiples";
$a->strings["Ability to create multiple profiles"] = "Possibilité de créer plusieurs profils";
$a->strings["Advanced Profiles"] = "Profils Avancés";
$a->strings["Additional profile sections and selections"] = "Sections et sélections supplémentaires du profil";
$a->strings["Profile Import/Export"] = "Importer/Exporter le profil";
$a->strings["Save and load profile details across sites/channels"] = "Sauvegarder et charger les détails d'un profil entre sites/canaux";
$a->strings["Web Pages"] = "Pages web";
$a->strings["Provide managed web pages on your channel"] = "Fournir des pages web, sous votre contrôle, sur votre canal";
$a->strings["Hide Rating"] = "Masquer l'évaluation";
$a->strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Masquer les boutons d'évaluation sur les pages de votre canal et de votre profil. NB : vous pourrez toujours être évalué(e) ailleurs.";
$a->strings["Private Notes"] = "Notes privées";
$a->strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Active un outil pour stocker des notes et des rappels (note&nbsp;:non chiffré)";
$a->strings["Navigation Channel Select"] = "Sélection du canal par la navigation";
$a->strings["Change channels directly from within the navigation dropdown menu"] = "Changez de canal directement depuis le menu de navigation déroulant";
$a->strings["Photo Location"] = "Site de prise de vue";
$a->strings["If location data is available on uploaded photos, link this to a map."] = "Si des informations géographiques sont présentes dans les images téléversées, les lier à une carte.";
$a->strings["Expert Mode"] = "Mode expert";
$a->strings["Enable Expert Mode to provide advanced configuration options"] = "Activer le mode expert pour accéder aux options avancées";
$a->strings["Premium Channel"] = "Canal VIP";
$a->strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Vous permet d'appliquer des règles et restrictions aux contacts de votre canal";
$a->strings["Post Composition Features"] = "Fonctionnalités de composition";
$a->strings["Use Markdown"] = "Utiliser Markdown";
$a->strings["Allow use of \"Markdown\" to format posts"] = "Autoriser l'utilisation de \"Markdown\" pour mettre en forme les messages";
$a->strings["Large Photos"] = "Grandes photos";
$a->strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Inclure de grands aperçus (1024px) dans les messages. Si désactivé, inclure de petits aperçus (640px).";
$a->strings["Channel Sources"] = "Sources du canal";
$a->strings["Automatically import channel content from other channels or feeds"] = "Importe automatiquement le contenus d'autres canaux ou flux dans le canal actif";
$a->strings["Even More Encryption"] = "Encore plus de chiffrement";
$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permettre le chiffrement optionnel du contenu de bout en bout au moyen d'un secret partagé";
$a->strings["Enable Voting Tools"] = "Activer les outils de vote";
$a->strings["Provide a class of post which others can vote on"] = "Fournit un type de publication sur lequel les utilisateurs peuvent voter";
$a->strings["Delayed Posting"] = "Publication plus tard";
$a->strings["Allow posts to be published at a later date"] = "Permettre de publier des messages à une date programmée";
$a->strings["Suppress Duplicate Posts/Comments"] = "Supprimer les publications/commentaires en doublon";
$a->strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Empêcher des messages aux contenus identiques d'être publiés à moins de deux minutes d'intervalle";
$a->strings["Network and Stream Filtering"] = "Filtrage du réseau et des flux";
$a->strings["Search by Date"] = "Chercher par date";
$a->strings["Ability to select posts by date ranges"] = "Pouvoir choisir des publications par date";
$a->strings["Enable management and selection of privacy groups"] = "Active la gestion et la sélection des groupes d'accès";
$a->strings["Saved Searches"] = "Recherches sauvegardées";
$a->strings["Save search terms for re-use"] = "Sauvegarder des termes de recherche pour utilisation ultérieure";
$a->strings["Network Personal Tab"] = "Onglet \"Me concernant\"";
$a->strings["Enable tab to display only Network posts that you've interacted on"] = "Activer un onglet affichant seulement les publications du réseau sur lesquelles vous êtes intervenu";
$a->strings["Network New Tab"] = "Onglet \"nouveautés réseau\"";
$a->strings["Enable tab to display all new Network activity"] = "Activer un onglet présentant toute l'activité récente sur le réseau";
$a->strings["Affinity Tool"] = "Gérer l'affinité";
$a->strings["Filter stream activity by depth of relationships"] = "Filtrer le flux d'activité en fonction de la profondeur des relations";
$a->strings["Connection Filtering"] = "Filtrage des contacts";
$a->strings["Filter incoming posts from connections based on keywords/content"] = "Filtrer les publications entrantes de mes contacts sur la base de mots-clefs";
$a->strings["Suggest Channels"] = "Suggérer des canaux";
$a->strings["Show channel suggestions"] = "Montrer les suggestions de canaux";
$a->strings["Post/Comment Tools"] = "Gérer les publications/commentaires";
$a->strings["Community Tagging"] = "Etiquetage communautaire";
$a->strings["Ability to tag existing posts"] = "Permettre de marquer les publications existantes";
$a->strings["Post Categories"] = "Catégoriser les publications";
$a->strings["Add categories to your posts"] = "Ajouter des catégories à vos publications";
$a->strings["Ability to file posts under folders"] = "Permettre de classer les publications dans des dossiers";
$a->strings["Dislike Posts"] = "\"Ne pas aimer\" les publications";
$a->strings["Ability to dislike posts/comments"] = "Possibilité de \"ne pas aimer\" les publications/commentaires";
$a->strings["Star Posts"] = "Pouvoir mettre en avant les publications";
$a->strings["Ability to mark special posts with a star indicator"] = "Pouvoir marquer certaines publications d'une étoile";
$a->strings["Tag Cloud"] = "Nuage de tags";
$a->strings["Provide a personal tag cloud on your channel page"] = "Afficher un nuage de vos tags sur votre canal";
$a->strings["Unable to obtain identity information from database"] = "Impossible d'obtenir les données d'identité depuis la base de données";
$a->strings["Empty name"] = "Nom vide";
$a->strings["Name too long"] = "Nom trop long";
$a->strings["No account identifier"] = "Pas d'identifiant de compte";
$a->strings["Nickname is required."] = "Un surnom est requis.";
$a->strings["Reserved nickname. Please choose another."] = "Surnom réservé. Merci d'en choisir un autre.";
$a->strings["Nickname has unsupported characters or is already being used on this site."] = "Le surnom contient des caractères interdits ou est déjà pris sur ce site.";
$a->strings["Unable to retrieve created identity"] = "Impossible de récupérer l'identité créée";
$a->strings["Default Profile"] = "Profil par défaut";
$a->strings["Requested channel is not available."] = "Canal demandé non disponible.";
$a->strings["Requested profile is not available."] = "Profil demandé non disponible.";
$a->strings["Change profile photo"] = "Changer la photo du profil";
$a->strings["Profiles"] = "Profils";
$a->strings["Manage/edit profiles"] = "Gérer/modifier les profils";
$a->strings["Create New Profile"] = "Créer un nouveau profil";
$a->strings["Profile Image"] = "Image du profil";
$a->strings["visible to everybody"] = "visible pour tous";
$a->strings["Edit visibility"] = "Changer la visibilité";
$a->strings["Gender:"] = "Sexe&nbsp;:";
$a->strings["Status:"] = "État&nbsp;:";
$a->strings["Homepage:"] = "Site Internet&nbsp;:";
$a->strings["Online Now"] = "Connecté";
$a->strings["g A l F d"] = "g A l F d";
$a->strings["F d"] = "d F";
$a->strings["[today]"] = "[aujourd'hui]";
$a->strings["Birthday Reminders"] = "Rappels d'anniversaires";
$a->strings["Birthdays this week:"] = "Anniversaires cette semaine&nbsp;:";
$a->strings["[No description]"] = "[Pas de description]";
$a->strings["Event Reminders"] = "Rappels d'événements";
$a->strings["Events this week:"] = "Événements cette semaine&nbsp;:";
$a->strings["Full Name:"] = "Nom complet&nbsp;:";
$a->strings["Like this channel"] = "J'aime ce canal";
$a->strings["j F, Y"] = "j F, Y";
$a->strings["j F"] = "j F";
$a->strings["Birthday:"] = "Date de naissance&nbsp;:";
$a->strings["Age:"] = "Age&nbsp;:";
$a->strings["for %1\$d %2\$s"] = "depuis %1\$d %2\$s";
$a->strings["Sexual Preference:"] = "Orientation sexuelle&nbsp;:";
$a->strings["Hometown:"] = "Ville natale&nbsp;:";
$a->strings["Tags:"] = "Étiquettes&nbsp;:";
$a->strings["Political Views:"] = "Opinions politiques&nbsp;:";
$a->strings["Religion:"] = "Religion&nbsp;:";
$a->strings["About:"] = "À propos&nbsp;:";
$a->strings["Hobbies/Interests:"] = "Occupations/Centres d'intérêt&nbsp;:";
$a->strings["Likes:"] = "Aime&nbsp;:";
$a->strings["Dislikes:"] = "N'aime pas&nbsp;:";
$a->strings["Contact information and Social Networks:"] = "Coordonnées et réseaux sociaux&nbsp;:";
$a->strings["My other channels:"] = "Mes autres canaux&nbsp;:";
$a->strings["Musical interests:"] = "Goûts musicaux&nbsp;:";
$a->strings["Books, literature:"] = "Lectures, goûts littéraires&nbsp;:";
$a->strings["Television:"] = "Télévision&nbsp;:";
$a->strings["Film/dance/culture/entertainment:"] = "Cinéma/danse/culture/divertissement&nsbp;:";
$a->strings["Love/Romance:"] = "Vie sentimentale/amoureuse&nbsp;:";
$a->strings["Work/employment:"] = "Travail/Occupation&nbsp;";
$a->strings["School/education:"] = "Études&nbsp;";
$a->strings["Like this thing"] = "J'aime ceci";
$a->strings["cover photo"] = "Photo principale";
$a->strings["Embedded content"] = "Contenu imbriqué";
$a->strings["Embedding disabled"] = "Imbrication désactivée";
$a->strings["Can view my normal stream and posts"] = "Peut voir les publications ordinaires sur mon canal.";
$a->strings["Can view my default channel profile"] = "Peut voir le profil du canal par défaut.";
$a->strings["Can view my connections"] = "Peut voir mes contacts";
$a->strings["Can view my file storage and photos"] = "Peut voir mes fichiers et photos";
$a->strings["Can view my webpages"] = "Peut voir mes pages web";
$a->strings["Can send me their channel stream and posts"] = "Peuvent m'envoyer leur flux et les publications de leur canal";
$a->strings["Can post on my channel page (\"wall\")"] = "Peuvent poster sur la page de mon canal (\"mur\")";
$a->strings["Can comment on or like my posts"] = "Peuvent commenter et/ou aimer mes publications";
$a->strings["Can send me private mail messages"] = "Peuvent m'envoyer des messages privés";
$a->strings["Can like/dislike stuff"] = "Peuvent aimer/ne pas aimer";
$a->strings["Profiles and things other than posts/comments"] = "Profils et autres excluant les publications/commentaires.";
$a->strings["Can forward to all my channel contacts via post @mentions"] = "Peut faire suivre à tous les contacts de mon canal via \"@mention\"";
$a->strings["Advanced - useful for creating group forum channels"] = "Avancé - utile pour les canaux de type \"forum/groupe\"";
$a->strings["Can chat with me (when available)"] = "Peut discuter avec moi (quand disponibie)";
$a->strings["Can write to my file storage and photos"] = "Peut charger des fichiers et des photos dans mon canal";
$a->strings["Can edit my webpages"] = "Peut modifier mes pages web";
$a->strings["Can source my public posts in derived channels"] = "Peut rediriger mes publications publiques vers des canaux dérivés";
$a->strings["Somewhat advanced - very useful in open communities"] = "Plutôt avancé - très utile dans les communautés ouvertes";
$a->strings["Can administer my channel resources"] = "Peut administrer les ressources de mon canal";
$a->strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Très avancé. Ne pas toucher, sauf si vous savez ce que vous faîtes";
$a->strings["Social Networking"] = "Réseau social";
$a->strings["Mostly Public"] = "Pincipalement public";
$a->strings["Restricted"] = "Accès restreint";
$a->strings["Private"] = "Privé";
$a->strings["Community Forum"] = "Forum communautaire";
$a->strings["Feed Republish"] = "Republication de flux";
$a->strings["Special Purpose"] = "Utilisation spécifique";
$a->strings["Celebrity/Soapbox"] = "Page de célébrité/tribune";
$a->strings["Group Repository"] = "Espace de groupe";
$a->strings["Custom/Expert Mode"] = "Mode expert/spécifique";
$a->strings["System"] = "Système";
$a->strings["Create Personal App"] = "Créer votre application";
$a->strings["Edit Personal App"] = "Modifier votre application";
$a->strings["Ignore/Hide"] = "Ignorer/Cacher";
$a->strings["Suggestions"] = "Suggestions";
$a->strings["See more..."] = "Voir plus...";
$a->strings["You have %1$.0f of %2$.0f allowed connections."] = "Vous avez %1$.0f sur %2$.0f contacts autorisés.";
$a->strings["Add New Connection"] = "Ajouter un nouveau contact";
$a->strings["Enter channel address"] = "Saisissez l'adresse du canal";
$a->strings["Examples: bob@example.com, https://example.com/barbara"] = "Exemples&nbsp;: pierre@exemple.com, https://exemple.com/sophie";
$a->strings["Notes"] = "Notes";
$a->strings["Remove term"] = "Retirer le terme";
$a->strings["Archives"] = "Archives";
$a->strings["Me"] = "Moi";
$a->strings["Family"] = "Famille";
$a->strings["Acquaintances"] = "Connaissances";
$a->strings["All"] = "Tous";
$a->strings["Refresh"] = "Actualiser";
$a->strings["Account settings"] = "Paramètres du compte";
$a->strings["Channel settings"] = "Paramètres du canal";
$a->strings["Additional features"] = "Fonctionnalités supplémentaires";
$a->strings["Feature/Addon settings"] = "Paramètres des extensions/greffons";
$a->strings["Display settings"] = "Paramètres d'affichage";
$a->strings["Connected apps"] = "Applications connectées";
$a->strings["Export channel"] = "Exporter le canal";
$a->strings["Connection Default Permissions"] = "Autorisations par défaut des contacts";
$a->strings["Premium Channel Settings"] = "Paramètres de canal VIP";
$a->strings["Private Mail Menu"] = "Menu des messages privés";
$a->strings["Combined View"] = "Vue combinée";
$a->strings["Conversations"] = "Conversations";
$a->strings["Received Messages"] = "Messages reçus";
$a->strings["Sent Messages"] = "Messages envoyés";
$a->strings["No messages."] = "Pas de message.";
$a->strings["Delete conversation"] = "Supprimer la conversation";
$a->strings["Events Menu"] = "Menu Evènements";
$a->strings["Day View"] = "Vue Jour";
$a->strings["Week View"] = "Vue Semaine";
$a->strings["Month View"] = "Vue Mois";
$a->strings["Export"] = "Export";
$a->strings["Import"] = "Import";
$a->strings["Events Tools"] = "Outils Evènements";
$a->strings["Export Calendar"] = "Exporter le calendrier";
$a->strings["Import Calendar"] = "Importer un calendrier";
$a->strings["Chat Rooms"] = "Salons de clavardage";
$a->strings["Bookmarked Chatrooms"] = "Salons favoris";
$a->strings["Suggested Chatrooms"] = "Salons suggérés";
$a->strings["photo/image"] = "photo/image";
$a->strings["Rating Tools"] = "Outils d'évaluation";
$a->strings["Rate Me"] = "M'évaluer";
$a->strings["View Ratings"] = "Voir mes évaluations";
$a->strings["Public Hubs"] = "Instances publiques";
$a->strings["Forums"] = "Membres du forum";
$a->strings["Tasks"] = "Tâches";
$a->strings["Documentation"] = "Documentation";
$a->strings["Project/Site Information"] = "Information sur le site/projet";
$a->strings["For Members"] = "Pour les membres";
$a->strings["For Administrators"] = "Pour les administrateurs";
$a->strings["For Developers"] = "Pour les développeurs";
$a->strings["Site"] = "Site";
$a->strings["Accounts"] = "Comptes";
$a->strings["Channels"] = "Canaux";
$a->strings["Security"] = "";
$a->strings["Plugins"] = "Greffons";
$a->strings["Themes"] = "Thèmes";
$a->strings["Inspect queue"] = "Analyser la file d'attente";
$a->strings["Profile Config"] = "Configuration du profil";
$a->strings["DB updates"] = "Mises à jour BDD";
$a->strings["Logs"] = "Journaux";
$a->strings["Plugin Features"] = "Fonctionnalités des greffons";
$a->strings["User registrations waiting for confirmation"] = "Enregistrements d'utilisateurs en attente d'approbation";
$a->strings["View Photo"] = "Voir la photo";
$a->strings["Edit Album"] = "Modifier l'album";
$a->strings["Save to Folder"] = "Enregistrer dans le dossier";
$a->strings["I will attend"] = "Je participerai";
$a->strings["I will not attend"] = "Je ne participerai pas";
$a->strings["I might attend"] = "Je participerai peut-être";
$a->strings["I agree"] = "Je suis d'accord";
$a->strings["I disagree"] = "Je ne suis pas d'accord";
$a->strings["I abstain"] = "Je m'abstiens";
$a->strings["Add Star"] = "Mettre en avant (étoile)";
$a->strings["Remove Star"] = "Ne plus mettre en avant";
$a->strings["Toggle Star Status"] = "(Dés)activer l'étoile";
$a->strings["starred"] = "mis en avant";
$a->strings["Add Tag"] = "Ajouter une étiquette";
$a->strings["I like this (toggle)"] = "J'aime (oui/non)";
$a->strings["I don't like this (toggle)"] = "Je n'aime pas (oui/non)";
$a->strings["Share This"] = "Partager";
$a->strings["share"] = "partager";
$a->strings["Delivery Report"] = "Rapport de distribution";
$a->strings["%d comment"] = array(
	0 => "%d commentaire",
	1 => "%d commentaires",
);
$a->strings["View %s's profile - %s"] = "Voir le profil de %s - %s";
$a->strings["to"] = "à";
$a->strings["via"] = "via";
$a->strings["Wall-to-Wall"] = "Mur-à-mur";
$a->strings["via Wall-To-Wall:"] = "par Mur-à-mur&nbsp;:";
$a->strings["Save Bookmarks"] = "Enregistrer les favoris";
$a->strings["Add to Calendar"] = "Ajouter au Calendrier";
$a->strings["Mark all seen"] = "Tout marquer comme vu";
$a->strings["__ctx:noun__ Likes"] = "Aime";
$a->strings["__ctx:noun__ Dislikes"] = "N'aime pas";
$a->strings["This is you"] = "C'est vous";
$a->strings["Image"] = "Image";
$a->strings["Insert Link"] = "Insérer un lien";
$a->strings["Video"] = "Vidéo";
$a->strings["Not Found"] = "Introuvable";
$a->strings["Page not found."] = "Page introuvable.";
$a->strings["Some blurb about what to do when you're new here"] = "Quelques mots sur quoi faire quand on est nouveau ici";
$a->strings["network"] = "réseau";
$a->strings["RSS"] = "RSS";
$a->strings["Authorize application connection"] = "Autoriser l'application à se connecter";
$a->strings["Return to your app and insert this Securty Code:"] = "Merci de retourner vers votre application, et d'y insérer ce Code de Sécurité&nbsp;:";
$a->strings["Please login to continue."] = "Merci de vous identifier pour continuer.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Voulez-vous autoriser cette application à accéder à vos publications et contacts, et/ou à publier en votre nom?";
$a->strings["App installed."] = "Application installée.";
$a->strings["Malformed app."] = "Erreur de l'application - Malformée.";
$a->strings["Embed code"] = "Imbriquer le code";
$a->strings["Edit App"] = "Modifier l'application";
$a->strings["Create App"] = "Créer une application";
$a->strings["Name of app"] = "Nom de l'application";
$a->strings["Location (URL) of app"] = "Emplacement (URL) de l'application";
$a->strings["Description"] = "Description";
$a->strings["Photo icon URL"] = "URL de l'icône à utiliser pour cette photo";
$a->strings["80 x 80 pixels - optional"] = "80 x 80 pixels - facultatif";
$a->strings["Version ID"] = "Identifiant de version";
$a->strings["Price of app"] = "Prix de l'application";
$a->strings["Location (URL) to purchase app"] = "Emplacement (URL) pour l'achat de l'application";
$a->strings["Item not available."] = "Élément indisponible.";
$a->strings["Invalid item."] = "Élément invalide.";
$a->strings["Channel not found."] = "Canal introuvable.";
$a->strings["Block Name"] = "Nom du Bloc";
$a->strings["Block Title"] = "Titre du bloc";
$a->strings["Bookmark added"] = "Favori ajouté";
$a->strings["My Bookmarks"] = "Mes Favoris";
$a->strings["My Connections Bookmarks"] = "Favoris de mes contacts";
$a->strings["You must be logged in to see this page."] = "Vous devez vous connecter pour voir cette page.";
$a->strings["Insufficient permissions.  Request redirected to profile page."] = "Permissions insuffisantes. Demande redirigée vers la page du profil.";
$a->strings["Public"] = "Public";
$a->strings["Room not found"] = "Salon introuvable";
$a->strings["Leave Room"] = "Quitter le salon";
$a->strings["Delete This Room"] = "Supprimer le salon";
$a->strings["I am away right now"] = "Je suis absent en ce moment";
$a->strings["I am online"] = "Je suis en ligne";
$a->strings["Bookmark this room"] = "Marquer ce salon comme favori";
$a->strings["New Chatroom"] = "Nouveau salon de discussion";
$a->strings["Chatroom Name"] = "Nom du salon de discussion";
$a->strings["Expiration of chats (minutes)"] = "Expiration des discussions (en minutes)";
$a->strings["%1\$s's Chatrooms"] = "Salons de %1\$s";
$a->strings["Away"] = "Absent";
$a->strings["Online"] = "En ligne";
$a->strings["No channel."] = "Pas de canal.";
$a->strings["Common connections"] = "Contacts en commun";
$a->strings["No connections in common."] = "Pas de contacts en commun.";
$a->strings["Continue"] = "Continuer";
$a->strings["Premium Channel Setup"] = "Configuration du canal VIP";
$a->strings["Enable premium channel connection restrictions"] = "Activer les restrictions liées au canal VIP";
$a->strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Merci de saisir les restrictions et/ou conditions - reçu Paypal, transaction Bitcoin, ligne de conduite, ...";
$a->strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Avant d'autoriser la mise en relation, ce canal attire votre attention sur les conditions suivantes&nbsp;:";
$a->strings["Potential connections will then see the following text before proceeding:"] = "Les contacts potentiels verront ce qui suit avant de pouvoir continuer&nbsp;:";
$a->strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "En continuant, je certifie que je me suis conformé à toutes les instructions indiquées sur cette page.";
$a->strings["(No specific instructions have been provided by the channel owner.)"] = "(Aucune instruction spécifique n'a été fournie par le propriétaire du canal.)";
$a->strings["Restricted or Premium Channel"] = "Canal VIP ou restreint";
$a->strings["Blocked"] = "Bloqué(e)";
$a->strings["Ignored"] = "Ignoré(e)";
$a->strings["Hidden"] = "Caché";
$a->strings["Archived"] = "Archivé";
$a->strings["New Connections"] = "Nouveaux contacts";
$a->strings["Show pending (new) connections"] = "Voir les (nouveaux) contacts en attente";
$a->strings["All Connections"] = "Tous les contacts";
$a->strings["Show all connections"] = "Voir tous les contacts";
$a->strings["Only show blocked connections"] = "Ne montrer que les contacts bloqués";
$a->strings["Only show ignored connections"] = "Ne montrer que les contacts ignorés";
$a->strings["Only show archived connections"] = "Ne montrer que les contacts archivés";
$a->strings["Only show hidden connections"] = "Ne montrer que les contacts cachés";
$a->strings["Pending approval"] = "En attente de validation";
$a->strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]";
$a->strings["Edit connection"] = "Modifier le contact";
$a->strings["Delete connection"] = "Supprimer le contact";
$a->strings["Channel address"] = "Adresse du canal";
$a->strings["Network"] = "Réseau";
$a->strings["Status"] = "État";
$a->strings["Connected"] = "Connecté";
$a->strings["Approve connection"] = "Valider le contact";
$a->strings["Approve"] = "Approuver";
$a->strings["Ignore connection"] = "Ignorer le contact";
$a->strings["Ignore"] = "Ignorer";
$a->strings["Recent activity"] = "Activité récente";
$a->strings["Search your connections"] = "Chercher parmi vos contacts";
$a->strings["Connections search"] = "Chercher des contacts";
$a->strings["Could not access contact record."] = "Impossible d'accéder aux détails du contact.";
$a->strings["Could not locate selected profile."] = "Impossible de localiser le profil sélectionné.";
$a->strings["Connection updated."] = "Contact mis à jour.";
$a->strings["Failed to update connection record."] = "Impossible de mettre à jour les détails du contact.";
$a->strings["is now connected to"] = "est maintenant connecté avec";
$a->strings["Could not access address book record."] = "Impossible d'accéder aux détails du carnet d'adresses.";
$a->strings["Refresh failed - channel is currently unavailable."] = "Actualisation impossible - le canal est indisponible.";
$a->strings["Unable to set address book parameters."] = "Impossible de régler les paramètres du carnet d'adresses.";
$a->strings["Connection has been removed."] = "Le contact a été supprimé.";
$a->strings["View %s's profile"] = "Voir le profil de %s";
$a->strings["Refresh Permissions"] = "Actualiser les autorisations";
$a->strings["Fetch updated permissions"] = "Récupérer les autorisations les plus récentes";
$a->strings["Recent Activity"] = "Activité récente";
$a->strings["View recent posts and comments"] = "Voir les publications et commentaires récents";
$a->strings["Unblock"] = "Débloquer";
$a->strings["Block"] = "Bloquer";
$a->strings["Block (or Unblock) all communications with this connection"] = "Bloquer ou débloquer toute communication avec ce contact";
$a->strings["This connection is blocked!"] = "Ce contact est bloqué&nbsp;!";
$a->strings["Unignore"] = "Ne plus ignorer";
$a->strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorer ou ne plus ignorer toute communication venant de ce contact";
$a->strings["This connection is ignored!"] = "Ce contact est ignoré&nbsp;!";
$a->strings["Unarchive"] = "Désarchiver";
$a->strings["Archive"] = "Archiver";
$a->strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiver ou désarchiver ce contact - le marquer comme inactif mais conserver le contenu";
$a->strings["This connection is archived!"] = "Ce contact est archivé&nbsp;!";
$a->strings["Unhide"] = "Ne plus cacher";
$a->strings["Hide"] = "Cacher";
$a->strings["Hide or Unhide this connection from your other connections"] = "Cacher ou ne plus cacher ce contact vis-à-vis de vos autres contacts";
$a->strings["This connection is hidden!"] = "Ce contact est caché&nbsp;!";
$a->strings["Delete this connection"] = "Supprimer ce contact";
$a->strings["Approve this connection"] = "Autoriser ce contact";
$a->strings["Accept connection to allow communication"] = "Accepter le contact pour permettre la communication";
$a->strings["Set Affinity"] = "Définir le degré d'affinité";
$a->strings["Set Profile"] = "Définir le profil";
$a->strings["Set Affinity & Profile"] = "Définir le degré d'affinité et le profil";
$a->strings["none"] = "Aucun";
$a->strings["Apply these permissions automatically"] = "Appliquer ces permissions automatiquement";
$a->strings["This connection's primary address is"] = "L'adresse principale de ce contact est";
$a->strings["Available locations:"] = "Emplacements disponibles&nbsp;:";
$a->strings["The permissions indicated on this page will be applied to all new connections."] = "Les permissions indiquées sur cette page seront appliquées à tous vos nouveaux contacts.";
$a->strings["Slide to adjust your degree of friendship"] = "Faites glisser pour ajuster votre proximité avec le contact";
$a->strings["Slide to adjust your rating"] = "Faîtes glisser pour ajuster votre note";
$a->strings["Optionally explain your rating"] = "Explication facultative de votre évaluation";
$a->strings["Custom Filter"] = "Filtre personnalisé";
$a->strings["Only import posts with this text"] = "N'importer que les publications comprenant ce texte";
$a->strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "un mot par ligne ou #étiquettes ou /motif/ ou lang=xx, laisser vide pour importer toutes les publications";
$a->strings["Do not import posts with this text"] = "Ne pas importer les publications comprenant ce texte";
$a->strings["This information is public!"] = "Cette information est publique&nbsp;!";
$a->strings["Connection Pending Approval"] = "Contact en attente d'approbation";
$a->strings["inherited"] = "héritée";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Merci de choisir le profil que vous souhaitez montrer quand %s visite votre profil de manière authentifiée.";
$a->strings["Their Settings"] = "Leurs paramètres";
$a->strings["My Settings"] = "Mes paramètres";
$a->strings["Individual Permissions"] = "Permissions individuelles";
$a->strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can <strong>not</strong> change those settings here."] = "Certaines permissions peuvent être héritées de vos <a href=\"settings\">paramètres de confidentialité</a> de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces permissions ici mais cela n'aura aucun effet à moins de changer les paramètres hérités.";
$a->strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Certaines permissions peuvent être héritées de vos <a href=\"settings\">paramètres de confidentialité</a> de canal, lesquels sont prioritaires sur les réglages individuels. Vous pouvez modifier ces permissions ici mais cela n'aura aucun effet à moins de changer les paramètres hérités.";
$a->strings["Last update:"] = "Dernière mise à jour&nbsp;:";
$a->strings["\$Projectname channel"] = "Canal \$Projectname";
$a->strings["Public access denied."] = "Accès public refusé.";
$a->strings["%d rating"] = array(
	0 => "%d évaluation",
	1 => "%d évaluations",
);
$a->strings["Gender: "] = "Sexe/genre&nbsp;:";
$a->strings["Status: "] = "État&nbsp;:";
$a->strings["Homepage: "] = "Site web&nbsp;:";
$a->strings["Description:"] = "Description&nbsp;:";
$a->strings["Public Forum:"] = "Forum public&nbsp;:";
$a->strings["Keywords: "] = "Mots-clefs&nbsp;:";
$a->strings["Don't suggest"] = "Ne pas suggérer";
$a->strings["Common connections:"] = "Contacts en commun&nbsp;:";
$a->strings["Global Directory"] = "Annuaire global";
$a->strings["Local Directory"] = "Annuaire local";
$a->strings["Finding:"] = "Recherche&nbsp;:";
$a->strings["next page"] = "page suivante";
$a->strings["previous page"] = "page précédente";
$a->strings["Sort options"] = "Options de tri";
$a->strings["Alphabetic"] = "Alphabétique";
$a->strings["Reverse Alphabetic"] = "Alphabétique inversé";
$a->strings["Newest to Oldest"] = "Du plus récent au moins récent";
$a->strings["Oldest to Newest"] = "Du moins récent du plus récent";
$a->strings["No entries (some entries may be hidden)."] = "Pas d'entrées (certaines peuvent être cachées).";
$a->strings["This site is not a directory server"] = "Ce site n'est pas un serveur d'annuaire";
$a->strings["This directory server requires an access token"] = "Ce serveur d'annuaire requiert un jeton d'accès";
$a->strings["Invalid message"] = "Message non valide";
$a->strings["no results"] = "aucun résultat";
$a->strings["Delivery report for %1\$s"] = "Rapport de distribution pour %1\$s";
$a->strings["channel sync processed"] = "Synchro de canal effectuée";
$a->strings["queued"] = "mis dans la file d'attente";
$a->strings["posted"] = "publié";
$a->strings["accepted for delivery"] = "accepté pour la distribution";
$a->strings["updated"] = "mis à jour";
$a->strings["update ignored"] = "mise à jour ignorée";
$a->strings["permission denied"] = "permission refusée";
$a->strings["recipient not found"] = "destinataire introuvable";
$a->strings["mail recalled"] = "courriel rappelé";
$a->strings["duplicate mail received"] = "courriel reçu en double";
$a->strings["mail delivered"] = "courriel distribué";
$a->strings["Item not found"] = "Élément introuvable";
$a->strings["Delete block?"] = "Supprimer le bloc&nbsp;?";
$a->strings["Insert YouTube video"] = "Insérer une vidéo YouTube";
$a->strings["Insert Vorbis [.ogg] video"] = "Insérer une vidéo Vorbis [.ogg]";
$a->strings["Insert Vorbis [.ogg] audio"] = "Insérer un son Vorbis [.ogg]";
$a->strings["Edit Block"] = "Modifier le bloc";
$a->strings["Delete layout?"] = "Supprimer la mise en page&nbsp;?";
$a->strings["Layout Description (Optional)"] = "Description de la mise en page (facultatif)";
$a->strings["Layout Name"] = "Nom de la mise en page";
$a->strings["Edit Layout"] = "Modifier la mise en page";
$a->strings["Item is not editable"] = "Elément non modifiable";
$a->strings["Delete item?"] = "Supprimer l'élément&nbsp;?";
$a->strings["Edit post"] = "Modifier la publication";
$a->strings["Delete webpage?"] = "Supprimer la page web&nbsp;?";
$a->strings["Page link title"] = "Titre du lien vers la page";
$a->strings["Edit Webpage"] = "Modifier la page web";
$a->strings["Calendar entries imported."] = "Entrées du calendrier importées.";
$a->strings["No calendar entries found."] = "Aucune entrée du calendrier trouvée.";
$a->strings["Event can not end before it has started."] = "La fin de l'événement ne peut être antérieure à son début.";
$a->strings["Unable to generate preview."] = "Impossible de générer l'aperçu.";
$a->strings["Event title and start time are required."] = "Un titre et une date de début sont requises pour l'événement.";
$a->strings["Event not found."] = "Événement introuvable.";
$a->strings["Edit event title"] = "Modifier le titre de l'événement";
$a->strings["Event title"] = "Titre de l'événement";
$a->strings["Categories (comma-separated list)"] = "Catégories (séparées par des virgules)";
$a->strings["Edit Category"] = "Modifier la catégorie";
$a->strings["Category"] = "Catégorie";
$a->strings["Edit start date and time"] = "Modifier la date et l'heure de début";
$a->strings["Start date and time"] = "Date et heure de début";
$a->strings["Finish date and time are not known or not relevant"] = "Date et heure de fin inconnues ou sans objet";
$a->strings["Edit finish date and time"] = "Modifier la date et l'heure de fin";
$a->strings["Finish date and time"] = "Date et heure de fin";
$a->strings["Adjust for viewer timezone"] = "Ajuster au fuseau horaire du visiteur";
$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Important pour les événements se tenant en un lieu particulier. Pas pratique pour les vacances communes à de nombreux pays dans le monde.";
$a->strings["Edit Description"] = "Modifier la description";
$a->strings["Edit Location"] = "Modifier l'emplacement";
$a->strings["Share this event"] = "Partager cet événement";
$a->strings["Advanced Options"] = "Options avancées";
$a->strings["l, F j"] = "l, F j";
$a->strings["Edit event"] = "Modifier l'événement";
$a->strings["Delete event"] = "Supprimer l'événement";
$a->strings["calendar"] = "calendrier";
$a->strings["Edit Event"] = "Modifier l'événement";
$a->strings["Create Event"] = "Créer un événement";
$a->strings["Previous"] = "Précédent";
$a->strings["Next"] = "Suivant";
$a->strings["Today"] = "Aujourd'hui";
$a->strings["Event removed"] = "Événement supprimé";
$a->strings["Failed to remove event"] = "Impossible de supprimer l'événement";
$a->strings["Share content from Firefox to \$Projectname"] = "Partager du contenu depuis Firefox avec \$Projectname";
$a->strings["Activate the Firefox \$Projectname provider"] = "Activer le connecteur \$Projectname pour Firefox";
$a->strings["- select -"] = "- choisir -";
$a->strings["Permission Denied."] = "Permission refusée.";
$a->strings["File not found."] = "Fichier introuvable.";
$a->strings["Edit file permissions"] = "Modifier les autorisations d'accès au fichier";
$a->strings["Set/edit permissions"] = "Définir/modifier les autorisations";
$a->strings["Include all files and sub folders"] = "Inclure tous fichiers et sous-répertoires";
$a->strings["Return to file list"] = "Retourner à la liste des fichiers";
$a->strings["Copy/paste this code to attach file to a post"] = "Copiez/collez ce code pour joindre le fichier à une publication";
$a->strings["Copy/paste this URL to link file from a web page"] = "Copiez/collez cette URL pour pointer vers ce fichier depuis une page web";
$a->strings["Share this file"] = "Partager ce fichier";
$a->strings["Show URL to this file"] = "Montrer l'URL de ce fichier";
$a->strings["Notify your contacts about this file"] = "Notifier vos contacts à propos de ce fichier";
$a->strings["Channel added."] = "Canal ajouté.";
$a->strings["Contact not found."] = "Contact introuvable.";
$a->strings["Friend suggestion sent."] = "Suggestion d'amitié envoyée.";
$a->strings["Suggest Friends"] = "Suggérer des amis";
$a->strings["Suggest a friend for %s"] = "Suggérer un amis à %s";
$a->strings["Privacy group created."] = "Groupe d'accès créé.";
$a->strings["Could not create privacy group."] = "Impossible de créer le groupe d'accès.";
$a->strings["Privacy group updated."] = "Groupe d'accès mis à jour.";
$a->strings["Create a group of channels."] = "Créer un groupe de canaux.";
$a->strings["Privacy group name: "] = "Nom du groupe d'accès&nbsp;:";
$a->strings["Members are visible to other channels"] = "Les membres sont visibles par les autres canaux";
$a->strings["Privacy group removed."] = "Groupe d'accès supprimé.";
$a->strings["Unable to remove privacy group."] = "Impossible de supprimer le groupe d'accès.";
$a->strings["Privacy group editor"] = "Editeur de groupe d'accès.";
$a->strings["Members"] = "Membres";
$a->strings["All Connected Channels"] = "Tous les canaux connectés";
$a->strings["Click on a channel to add or remove."] = "Cliquer sur un canal pour l'ajouter ou le supprimer";
$a->strings["Documentation Search"] = "Chercher dans la documentation";
$a->strings["Help:"] = "Aide&nbsp;:";
$a->strings["\$Projectname Documentation"] = "Documentation \$Projectname";
$a->strings["\$Projectname"] = "\$Projectname";
$a->strings["Welcome to %s"] = "Bienvenue sur %s";
$a->strings["First Name"] = "Prénom";
$a->strings["Last Name"] = "Nom de famille";
$a->strings["Nickname"] = "Surnom";
$a->strings["Full Name"] = "Nom complet";
$a->strings["Profile Photo 16px"] = "Photo de profil 16px";
$a->strings["Profile Photo 32px"] = "Photo de profil 32px";
$a->strings["Profile Photo 48px"] = "Photo de profil 48px";
$a->strings["Profile Photo 64px"] = "Photo de profil 64px";
$a->strings["Profile Photo 80px"] = "Photo de profil 80px";
$a->strings["Profile Photo 128px"] = "Photo de profil 128px";
$a->strings["Timezone"] = "Fuseau horaire";
$a->strings["Homepage URL"] = "URL de mon site Internet&nbsp;:";
$a->strings["Birth Year"] = "Année de naissance";
$a->strings["Birth Month"] = "Mois de naissance";
$a->strings["Birth Day"] = "Jour de naissance";
$a->strings["Birthdate"] = "Date de naissance";
$a->strings["Gender"] = "Sexe";
$a->strings["%s element installed"] = "Elément %s installé";
$a->strings["%s element installation failed"] = "L'installation de l'élément %s a échoué";
$a->strings["Your service plan only allows %d channels."] = "Votre forfait n'autorise que %d canaux.";
$a->strings["Nothing to import."] = "Rien à importer.";
$a->strings["Unable to download data from old server"] = "Impossible de récupérer les données de l'ancien serveur";
$a->strings["Imported file is empty."] = "Le fichier importé est vide.";
$a->strings["Warning: Database versions differ by %1\$d updates."] = "Attention&nbsp;: les versions de bases de données diffèrent de %1\$d mises à jour.";
$a->strings["Server platform is not compatible. Operation not permitted."] = "";
$a->strings["No channel. Import failed."] = "Pas de canal. Echec de l'import.";
$a->strings["You must be logged in to use this feature."] = "Vous devez vous connecter pour utiliser cette fonctionnalité.";
$a->strings["Import Channel"] = "Importation de canal";
$a->strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Utilisez ce formulaire pour importer un canal existant sur un autre serveur. Vous pouvez récupérer l'identité du canal sur l'ancien serveur directement par le réseau, ou bien fournir un fichier d'export/import.";
$a->strings["File to Upload"] = "Fichier à envoyer";
$a->strings["Or provide the old server/hub details"] = "Ou fournissez les détails de l'ancien serveur/hub";
$a->strings["Your old identity address (xyz@example.com)"] = "Votre ancienne identité (zyx@exemple.com)";
$a->strings["Your old login email address"] = "Votre ancienne adresse de courriel";
$a->strings["Your old login password"] = "Votre ancien mot de passe";
$a->strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Quelle que soit l'option choisie, merci de décider si ce hub sera votre nouvelle adresse primaire, ou si votre ancien hub continuera à jouer ce rôle. Vous pourrez publier depuis l'emplacement de votre choix, mais une seule peut être déclarée comme stockage primaire de vos fichiers/photos/media.";
$a->strings["Make this hub my primary location"] = "Faire de ce hub mon emplacement primaire";
$a->strings["Import existing posts if possible (experimental - limited by available memory"] = "Importer les publications existantes si possible (expérimental - limité par la mémoire disponible)";
$a->strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Ce processus peut prendre plusieurs minutes. Merci de ne valider le formulaire qu'une seule fois et de laisser cette page ouverte jusqu'à la fin.";
$a->strings["Import completed"] = "L'import est terminé.";
$a->strings["Import Items"] = "Importer";
$a->strings["Use this form to import existing posts and content from an export file."] = "Utiliser ce formulaire pour importer des publications et du contenu existant d'un fichier d'export.";
$a->strings["Total invitation limit exceeded."] = "Limite du nombre total d'invitation dépassée.";
$a->strings["%s : Not a valid email address."] = "%s&nbsp;: adresse courriel invalide.";
$a->strings["Please join us on \$Projectname"] = "Rejoignez-nous sur \$Projectname";
$a->strings["Invitation limit exceeded. Please contact your site administrator."] = "Limite d'invitations dépassée. Merci de contacter l'administration de votre site.";
$a->strings["%s : Message delivery failed."] = "%s&nbsp;: Échec de distribution du message.";
$a->strings["%d message sent."] = array(
	0 => "%d message envoyé.",
	1 => "%d messages envoyés.",
);
$a->strings["You have no more invitations available"] = "Vous ne disposez plus d'aucune invitation";
$a->strings["Send invitations"] = "Envoyer des invitations";
$a->strings["Enter email addresses, one per line:"] = "Entrez les adresses de courriel, une par ligne&nbsp;:";
$a->strings["Your message:"] = "Votre message&nbsp;:";
$a->strings["Please join my community on \$Projectname."] = "Rejoignez ma communauté sur \$Projectname.";
$a->strings["You will need to supply this invitation code:"] = "";
$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Enregistrez-vous sur n'importe quel serveur \$Projectname (ils sont tous inter-connectés)";
$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Saisissez l'adresse de mon canal \$Projectname dans la barre de recherche du site.";
$a->strings["or visit"] = "";
$a->strings["3. Click [Connect]"] = "3. Cliquez sur [Ajouter]";
$a->strings["Unable to locate original post."] = "Impossible de localiser la publication initiale.";
$a->strings["Empty post discarded."] = "Publication vide annulée.";
$a->strings["Executable content type not permitted to this channel."] = "Les contenus de type 'exécutable' ne sont pas autorisés sur ce canal.";
$a->strings["Duplicate post suppressed."] = "Publication en doublon supprimée.";
$a->strings["System error. Post not saved."] = "Erreur système. Publication non sauvegardée.";
$a->strings["Unable to obtain post information from database."] = "Impossible d'obtenir les informations de publication depuis la base de données.";
$a->strings["You have reached your limit of %1$.0f top level posts."] = "Vous avez atteint votre limite de %1$.0f contributions \"racines\".";
$a->strings["You have reached your limit of %1$.0f webpages."] = "Vous avez atteint votre limite de %1$.0f pages web.";
$a->strings["Comanche page description language help"] = "Aide sur le langage de description de page Comanche";
$a->strings["Layout Description"] = "Description de la mise en page";
$a->strings["Download PDL file"] = "Télécharger le fichier PDL";
$a->strings["Like/Dislike"] = "Aime/n'aime pas";
$a->strings["This action is restricted to members."] = "Cette action est réservée aux membres.";
$a->strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "S'il vous plait, <a href=\"rmagic\">identifiez vous avec votre identifant de \$Projectname </a> ou <a href=\"register\">inscrivez vous comme nouveau membre de \$Projectname </a> pour continuer.";
$a->strings["Invalid request."] = "Requête invalide.";
$a->strings["thing"] = "chose";
$a->strings["Channel unavailable."] = "Canal indisponible.";
$a->strings["Previous action reversed."] = "Action précédente annulée.";
$a->strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s approuve %3\$s de %2\$s";
$a->strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s n'est pas d'accord avec %3\$s de %2\$s";
$a->strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s s'abstient de toute décision sur le %3\$s de %2\$s";
$a->strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s participe à %3\$s de %2\$s";
$a->strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s ne participe pas à %3\$s de %2\$s";
$a->strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s participe peut-être à %3\$s de %2\$s";
$a->strings["Action completed."] = "Action terminée.";
$a->strings["Thank you."] = "Merci.";
$a->strings["Remote privacy information not available."] = "Les informations distantes de confidentialité ne sont pas disponibles.";
$a->strings["Visible to:"] = "Visible par&nbsp;:";
$a->strings["Location not found."] = "Emplacement introuvable.";
$a->strings["Location lookup failed."] = "Echec de la recherche de l'emplacement.";
$a->strings["Please select another location to become primary before removing the primary location."] = "Merci de sélectionner un autre emplacement comme nouvel emplacement primaire avant de supprimer l'emplacement primaire actuel.";
$a->strings["Syncing locations"] = "Synchronisation des emplacements";
$a->strings["No locations found."] = "Emplacement(s) introuvable.";
$a->strings["Manage Channel Locations"] = "Gérer les emplacements des canaux";
$a->strings["Location (address)"] = "Emplacement (adresse)";
$a->strings["Primary Location"] = "Emplacement primaire";
$a->strings["Drop location"] = "Abandonner l'emplacement";
$a->strings["Sync now"] = "Synchroniser maintenant";
$a->strings["Please wait several minutes between consecutive operations."] = "Merci d'attendre plusieurs minutes entre opérations successives.";
$a->strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quand c'est possible, abandonnez un emplacement en vous connectant sur le site/hub et en supprimant votre canal.";
$a->strings["Use this form to drop the location if the hub is no longer operating."] = "Utilisez ce formulaire pour abandonner l'emplacement si le hub n'est plus actif.";
$a->strings["sent you a private message"] = "vous a envoyé un message privé";
$a->strings["added your channel"] = "a ajouté votre canal";
$a->strings["posted an event"] = "a publié un événement";
$a->strings["Hub not found."] = "Hub introuvable.";
$a->strings["Unable to lookup recipient."] = "Impossible de localiser le destinataire.";
$a->strings["Unable to communicate with requested channel."] = "Impossible de communiquer avec le canal demandé.";
$a->strings["Cannot verify requested channel."] = "Impossible de vérifier le canal demandé.";
$a->strings["Selected channel has private message restrictions. Send failed."] = "Le canal choisi a des restrictions quant aux messages privés. L'envoi a échoué.";
$a->strings["Messages"] = "Messages";
$a->strings["Message recalled."] = "Message rappelé.";
$a->strings["Conversation removed."] = "Conversation supprimée.";
$a->strings["Requested channel is not in this network"] = "Le canal demandé n'est pas sur ce réseau";
$a->strings["Send Private Message"] = "Envoyer un message privé";
$a->strings["To:"] = "À&nbsp;:";
$a->strings["Subject:"] = "Objet&nbsp;:";
$a->strings["Send"] = "Envoyer";
$a->strings["Delete message"] = "Supprimer le message";
$a->strings["Delivery report"] = "Rapport de distribution";
$a->strings["Recall message"] = "Rappeler le message";
$a->strings["Message has been recalled."] = "Le message a été rappelé.";
$a->strings["Delete Conversation"] = "Supprimer la conversation";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Aucune communication sécurisée n'est possible. Vous pourrez <strong>peut-être</strong> répondre depuis la page de profil de l'émetteur.";
$a->strings["Send Reply"] = "Envoyer la réponse";
$a->strings["Your message for %s (%s):"] = "Votre message pour %s (%s)&nbsp;:";
$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Vous avez créé %1$.0f des %2$.0f canaux autorisés.";
$a->strings["Create a new channel"] = "Créer un nouveau canal";
$a->strings["Current Channel"] = "Canal actif";
$a->strings["Switch to one of your channels by selecting it."] = "Pour changer de canal, sélectionnez-en un";
$a->strings["Default Channel"] = "Canal par défaut";
$a->strings["Make Default"] = "Définir comme défaut";
$a->strings["%d new messages"] = "%d nouveaux messages";
$a->strings["%d new introductions"] = "%d nouvelles présentations";
$a->strings["Delegated Channels"] = "Canaux délégués";
$a->strings["Profile Match"] = "Profils similaires";
$a->strings["No keywords to match. Please add keywords to your default profile."] = "Aucun mot-clef à comparer. Merci d'ajouter des mots-clefs à votre profil par défaut.";
$a->strings["is interested in:"] = "s'intéresse à&nbsp;:";
$a->strings["No matches"] = "Pas de correspondance";
$a->strings["Unable to update menu."] = "Impossible de mettre le menu à jour.";
$a->strings["Unable to create menu."] = "Impossible de créer le menu.";
$a->strings["Menu Name"] = "Nom du menu";
$a->strings["Unique name (not visible on webpage) - required"] = "Nom unique (non visible sur la page web) - requis";
$a->strings["Menu Title"] = "Titre du menu";
$a->strings["Visible on webpage - leave empty for no title"] = "Visible pour la page web - laisser vide pour qu'il n'y ait pas de titre";
$a->strings["Allow Bookmarks"] = "Autoriser l'usage de favoris";
$a->strings["Menu may be used to store saved bookmarks"] = "Le menu pourra être utilisé pour stocker des favoris";
$a->strings["Submit and proceed"] = "Valider et continuer";
$a->strings["Drop"] = "Supprimer";
$a->strings["Bookmarks allowed"] = "Favoris autorisés";
$a->strings["Delete this menu"] = "Supprimer ce menu";
$a->strings["Edit menu contents"] = "Modifier le contenu du menu";
$a->strings["Edit this menu"] = "Modifier ce menu";
$a->strings["Menu could not be deleted."] = "Impossible de supprimer le menu.";
$a->strings["Menu not found."] = "Menu introuvable.";
$a->strings["Edit Menu"] = "Modifier le menu";
$a->strings["Add or remove entries to this menu"] = "Ajouter/supprimer des entrées à ce menu";
$a->strings["Menu name"] = "Nom du menu";
$a->strings["Must be unique, only seen by you"] = "Doit être unique, ne sera vu que par vous";
$a->strings["Menu title"] = "Titre du menu";
$a->strings["Menu title as seen by others"] = "Titre du menu tel que vu par les visiteurs";
$a->strings["Allow bookmarks"] = "Autoriser l'usage de favoris";
$a->strings["Not found."] = "Introuvable.";
$a->strings["Unable to create element."] = "Impossible de créer l'entrée.";
$a->strings["Unable to update menu element."] = "Impossible de mettre à jour l'entrée de menu.";
$a->strings["Unable to add menu element."] = "Impossible d'ajouter l'entrée de menu.";
$a->strings["Menu Item Permissions"] = "Permissions de l'entrée de menu";
$a->strings["(click to open/close)"] = "(cliquer pour ouvrir/fermer)";
$a->strings["Link Name"] = "Nom du lien";
$a->strings["Link or Submenu Target"] = "Lien ou sous-menu cible";
$a->strings["Enter URL of the link or select a menu name to create a submenu"] = "Entrez l'URL du lien ou sélectionnez un nom de menu pour créer un sous-menu";
$a->strings["Use magic-auth if available"] = "Utiliser l'authentification distante, quand disponible";
$a->strings["Open link in new window"] = "Ouvrir le lien dans une nouvelle fenêtre";
$a->strings["Order in list"] = "Ordre dans la liste";
$a->strings["Higher numbers will sink to bottom of listing"] = "Les nombres les plus élevés seront au bas de la liste";
$a->strings["Submit and finish"] = "Vadiler et terminer";
$a->strings["Submit and continue"] = "Valider et continuer";
$a->strings["Menu:"] = "Menu&nbsp;:";
$a->strings["Link Target"] = "Cible du lien";
$a->strings["Edit menu"] = "Modifier le menu";
$a->strings["Edit element"] = "Modifier l'entrée";
$a->strings["Drop element"] = "Supprimer l'entrée";
$a->strings["New element"] = "Nouvelle entrée";
$a->strings["Edit this menu container"] = "Éditer ce bloc de menu";
$a->strings["Add menu element"] = "Ajouter une entrée au menu";
$a->strings["Delete this menu item"] = "Supprimer cette entrée du menu";
$a->strings["Edit this menu item"] = "Modifier cette entrée du menu";
$a->strings["Menu item not found."] = "Entrée de menu introuvable.";
$a->strings["Menu item deleted."] = "Entrée de menu supprimée.";
$a->strings["Menu item could not be deleted."] = "Impossible de supprimer l'entrée de menu.";
$a->strings["Edit Menu Element"] = "Modifier l'entrée de menu";
$a->strings["Link text"] = "Texte du lien";
$a->strings["Set your current mood and tell your friends"] = "Indiquez votre humeur du moment à vos amis";
$a->strings["No such group"] = "Groupe introuvable";
$a->strings["No such channel"] = "Canal introuvable";
$a->strings["forum"] = "forum";
$a->strings["Search Results For:"] = "Résultats de recherche pour&nbsp;:";
$a->strings["Privacy group is empty"] = "Groupe d'accès vide";
$a->strings["Privacy group: "] = "Groupe d'accès&nbsp;:";
$a->strings["Invalid connection."] = "Contact non valide.";
$a->strings["Add a Channel"] = "Ajouter un canal";
$a->strings["A channel is your own collection of related web pages. A channel can be used to hold social network profiles, blogs, conversation groups and forums, celebrity pages, and much more. You may create as many channels as your service provider allows."] = "Un canal est un ensemble de pages web reliées entre elles, sous votre contrôle. Il peut contenir des profils de réseau social, des blogs, des groupes de conversation, des forums, des pages de célébrités, et bien plus encore. Vous pouvez créer autant de canaux que votre administrateur vous y autorise.";
$a->strings["Channel Name"] = "Nom du canal";
$a->strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\" "] = "Exemples&nbsp;: \"Bernard Martin\", \"Lisa et ses chevaux\", \"Football\", \"Groupe des amateurs de tir à l'arc\"";
$a->strings["Choose a short nickname"] = "Choisissez un alias";
$a->strings["Your nickname will be used to create an easily remembered channel address (like an email address) which you can share with others."] = "Cet alias sera utilisé pour créer une adresse de canal, facile à retenir - un peu comme une adresse de courriel - que vous pourrez partager avec d'autres.";
$a->strings["Or <a href=\"import\">import an existing channel</a> from another location"] = "Ou <a href=\"import\">importez un canal existant</a> d'un autre endroit";
$a->strings["Please choose a channel type (such as social networking or community forum) and privacy requirements so we can select the best permissions for you"] = "Veuillez choisir un type de canal (par exemple \"réseau social\" ou \"forum communautaire\") et un niveau de confidentialité afin que nous puissions choisir les meilleures autorisations pour vous";
$a->strings["Channel Type"] = "Type de canal";
$a->strings["Read more about roles"] = "En savoir plus sur les rôles";
$a->strings["Invalid request identifier."] = "Identifiant de requête invalide.";
$a->strings["Discard"] = "Annuler";
$a->strings["No more system notifications."] = "Pas d'autre notification du système.";
$a->strings["System Notifications"] = "Notifications du système";
$a->strings["Unable to find your hub."] = "Impossible de trouver votre hub.";
$a->strings["Post successful."] = "Publication réussie.";
$a->strings["OpenID protocol error. No ID returned."] = "Erreur du protocole OpenID. Pas d'ID retourné.";
$a->strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.";
$a->strings["This setting requires special processing and editing has been blocked."] = "Ce paramètre nécessité un traitement spécial, les modifications ont été bloquées.";
$a->strings["Configuration Editor"] = "Editeur de configuration";
$a->strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Attention&nbsp;:modifier certains paramètres peut rendre votre canal inutilisable. Merci d'ignorer cette page à moins d'être suffisamment à l'aise de savoir comment utiliser correctement cette fonctionnalité.";
$a->strings["Layout updated."] = "Mise en page mise à jour.";
$a->strings["Edit System Page Description"] = "Modifier la description de la page du système";
$a->strings["Layout not found."] = "Mise en page introuvable.";
$a->strings["Module Name:"] = "Nom du module&nbsp;:";
$a->strings["Layout Help"] = "Aide à la mise en page";
$a->strings["Page owner information could not be retrieved."] = "Impossible d'obtenir des informations sur le propriétaire de la page.";
$a->strings["Album not found."] = "Album introuvable.";
$a->strings["Delete Album"] = "Supprimer l'album";
$a->strings["Delete Photo"] = "Supprimer la photo";
$a->strings["No photos selected"] = "Aucune photo selectionnée";
$a->strings["Access to this item is restricted."] = "L'accès à l'élément est restreint.";
$a->strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Vous avez utilisé %1$.2f mégaoctets sur les %2$.2f autorisés pour le stockage des photos.";
$a->strings["%1$.2f MB photo storage used."] = "%1$.2f méga-octets utilisés pour le stockage des photos.";
$a->strings["Upload Photos"] = "Téléverser des photos";
$a->strings["Enter an album name"] = "Entrer un nom d'album";
$a->strings["or select an existing album (doubleclick)"] = "ou sélectionner un album existant (double-clic)";
$a->strings["Create a status post for this upload"] = "Créer une publication de statut pour cet envoi";
$a->strings["Caption (optional):"] = "Légende (facultative)";
$a->strings["Description (optional):"] = "Description (facultative)";
$a->strings["Album name could not be decoded"] = "Le nom de l'Album n'a pu être décodé";
$a->strings["Contact Photos"] = "Photos de contact";
$a->strings["Show Newest First"] = "Les plus récent(e)s en premier";
$a->strings["Show Oldest First"] = "Les moins récent(e)s en premier";
$a->strings["Permission denied. Access to this item may be restricted."] = "Permission refusée. L'accès à cet élément peut avoir été restreint.";
$a->strings["Photo not available"] = "Photo non disponible";
$a->strings["Use as profile photo"] = "Utiliser comme photo du profil";
$a->strings["Private Photo"] = "Photo privée";
$a->strings["View Full Size"] = "Voir en taille réelle";
$a->strings["Remove"] = "Retirer";
$a->strings["Edit photo"] = "Modifier la photo";
$a->strings["Rotate CW (right)"] = "Rotation horaire (droite)";
$a->strings["Rotate CCW (left)"] = "Rotation anti-horaire (gauche)";
$a->strings["Enter a new album name"] = "Entrer un nouveau nom d'album";
$a->strings["or select an existing one (doubleclick)"] = "ou en sélectionner un existant (double-clic)";
$a->strings["Caption"] = "Titre/légende";
$a->strings["Add a Tag"] = "Ajouter une étiquette";
$a->strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Exemple&nbsp;: @marc, @Barbara_Jensen, @charles@exemple.com, #Ile_de_France, #marathon";
$a->strings["Flag as adult in album view"] = "Marquer comme \"adulte\" dans l'affichage de l'album";
$a->strings["In This Photo:"] = "Dans cette photo&nbsp;:";
$a->strings["Map"] = "Carte";
$a->strings["View Album"] = "Voir l'album";
$a->strings["Recent Photos"] = "Photos récentes";
$a->strings["Theme settings updated."] = "Paramètres du thème mis à jour.";
$a->strings["# Accounts"] = "# Comptes";
$a->strings["# blocked accounts"] = "# comptes bloqués";
$a->strings["# expired accounts"] = "# comptes expirés";
$a->strings["# expiring accounts"] = "# comptes expirant";
$a->strings["# Channels"] = "# Canaux";
$a->strings["# primary"] = "# primaire";
$a->strings["# clones"] = "# clones";
$a->strings["Message queues"] = "File des messages";
$a->strings["Administration"] = "Administration";
$a->strings["Summary"] = "Résumé";
$a->strings["Registered accounts"] = "Comptes enregistrés";
$a->strings["Pending registrations"] = "Inscriptions en attente";
$a->strings["Registered channels"] = "Canaux enregistrés";
$a->strings["Active plugins"] = "Greffons actifs";
$a->strings["Version"] = "Version";
$a->strings["Site settings updated."] = "Paramètres du site sauvegardés.";
$a->strings["mobile"] = "mobile";
$a->strings["experimental"] = "expérimental";
$a->strings["unsupported"] = "non maintenu";
$a->strings["Yes - with approval"] = "Oui - avec approbation";
$a->strings["My site is not a public server"] = "Mon site n'est pas un serveur public";
$a->strings["My site has paid access only"] = "Mon site est à accès payant uniquement";
$a->strings["My site has free access only"] = "Mon site est gratuit uniquement";
$a->strings["My site offers free accounts with optional paid upgrades"] = "Mon site offre des comptes gratuits avec des améliorations payantes facultatives";
$a->strings["Registration"] = "Inscription";
$a->strings["File upload"] = "Envoi de fichier";
$a->strings["Policies"] = "Stratégies";
$a->strings["Site name"] = "Nom du site";
$a->strings["Banner/Logo"] = "Bannière/logo";
$a->strings["Administrator Information"] = "Informations de l'administrateur";
$a->strings["Contact information for site administrators.  Displayed on siteinfo page.  BBCode can be used here"] = "Coordonnées de l'administrateur du site. Affichées sur la page 'siteinfo'. Vous pouvez utiliser du BBCode ici";
$a->strings["System language"] = "Langue du système";
$a->strings["System theme"] = "Thème du système";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "Thème par défaut - il peut être changé pour chaque profil utilisateur - <a href='#' id='cnftheme'>modifier le thème</a>";
$a->strings["Mobile system theme"] = "Thème par défaut pour les mobiles";
$a->strings["Theme for mobile devices"] = "Thème pour les mobiles";
$a->strings["Allow Feeds as Connections"] = "Autoriser les Flux (RSS) comme contacts";
$a->strings["(Heavy system resource usage)"] = "(Impact important sur les ressources)";
$a->strings["Maximum image size"] = "Taille maximale des images";
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Taille maximum, en octets, des images envoyées. Par défaut 0, soit sans limite.";
$a->strings["Does this site allow new member registration?"] = "Est-ce que l'enregistrement de nouveaux membres est autorisé sur ce site&nbsp;?";
$a->strings["Invitation only"] = "Sur invitation seulement";
$a->strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "N'autoriser que les nouvelles inscriptions avec code d'invitation. La stratégie d'inscription ci-dessus doit être mise sur \"Oui\".";
$a->strings["Which best describes the types of account offered by this hub?"] = "Quelle est la meilleure description des types de comptes proposés sur ce hub&nbsp;?";
$a->strings["Register text"] = "Texte d'inscription";
$a->strings["Will be displayed prominently on the registration page."] = "Sera affiché de manière bien visible sur le formulaire d'inscription.";
$a->strings["Site homepage to show visitors (default: login box)"] = "Page d'accueil du site à montrer aux visiteurs (par défaut&nbsp;:boîte de dialogue de connexion)";
$a->strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "exemple&nbsp;:'public' pour montrer le flux public, 'page/sys/home' pour montrer une page système appelée 'home' ou 'include:home.html' pour inclure un fichier.";
$a->strings["Preserve site homepage URL"] = "Préserver l'adresse d'accueil du site";
$a->strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Présenter la page d'accueil du site dans un cadre à l'adresse d'origine, plutôt que de rediriger";
$a->strings["Accounts abandoned after x days"] = "Les comptes sont abandonnés après x jours";
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviter de gaspiller les ressources du système en interrogeant des hubs distants pour des canaux abandonnés. Mettez 0 pour ne pas avoir de limite de temps.";
$a->strings["Allowed friend domains"] = "Domaines amicaux autorisés";
$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de noms de domaines séparés par des virgules pour lesquels ce site acceptera les demandes d'amitié. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines.";
$a->strings["Allowed email domains"] = "Domaines de courriels autorisés";
$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste de noms de domaines séparés par des virgules dont les adresses de courriel seront autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines.";
$a->strings["Not allowed email domains"] = "Domaines de courriel non autorisés";
$a->strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Liste de noms de domaines - séparés par des virgules - dont les adresses de courriel ne seront pas autorisées lors de l'inscription à ce site. Les caractères génériques (*) sont acceptés. Laissez vide pour accepter tous les domaines, sauf si des domaines autorisés ont été définis.";
$a->strings["Verify Email Addresses"] = "Demander vérification des adresses de courriel";
$a->strings["Check to verify email addresses used in account registration (recommended)."] = "Cocher pour que les adresses utilisées à l'inscription soient vérifiées (recommandé).";
$a->strings["Force publish"] = "Publicité forcée";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Cocher pour forcer la publication de tous les profils du site dans l'annuaire.";
$a->strings["Import Public Streams"] = "Flux publics importés";
$a->strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importer du contenu public à partir d'autres sites et autoriser l'accès à ce contenu. Attention&nbsp;: ce contenu n'est pas modéré.";
$a->strings["login on Homepage"] = "Connexion à partir de la page d'accueil";
$a->strings["Present a login box to visitors on the home page if no other content has been configured."] = "Présenter une boîte de dialogue de connexion aux visiteurs sur la page d'accueil si aucun autre contenu n'a été configuré.";
$a->strings["Directory Server URL"] = "URL du serveur d'annuaire";
$a->strings["Default directory server"] = "Serveur d'annuaire par défaut";
$a->strings["Proxy user"] = "Utilisateur du proxy";
$a->strings["Proxy URL"] = "URL du proxy";
$a->strings["Network timeout"] = "Délai maximal du réseau";
$a->strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "En secondes. Mettre à 0 pour ne pas avoir de délai maximal (non recommandé).";
$a->strings["Delivery interval"] = "Intervalle de distribution";
$a->strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Temporise le processus de distribution de tant de secondes pour réduire la charge sur le système. Valeurs recommandées&nbsp;: 4-5 pour les serveurs mutualisés, 2-3 pour les VPS. 0-1 pour les gros serveurs dédiés.";
$a->strings["Deliveries per process"] = "Distributions par processus";
$a->strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Nombre de distributions à tenter au sein d'un seul processus système. Ajuster si nécessaire pour affiner la performance du système. Recommandé&nbsp;:1-5.";
$a->strings["Poll interval"] = "Intervalle de scrutation";
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Temporise le processus de scrutation en tâche de fond de tant de secondes, pour réduire la charge. Si 0, utilise l'intervalle de distribution.";
$a->strings["Maximum Load Average"] = "Charge maximale moyenne";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Charge système maximale au-delà de laquelle distribution et scrutation sont reportées - par défaut 50.";
$a->strings["Expiration period in days for imported (grid/network) content"] = "Délai d'expiration pour le contenu importé (réseau)";
$a->strings["0 for no expiration of imported content"] = "0 pour ne pas expirer le contenu importé";
$a->strings["Off"] = "Inactif";
$a->strings["On"] = "Actif";
$a->strings["Lock feature %s"] = "Verrouiller fonctionnalité %s";
$a->strings["Manage Additional Features"] = "Gérer les fonctionnalités additionnelles";
$a->strings["No server found"] = "Serveur introuvable";
$a->strings["ID"] = "Identifiant";
$a->strings["for channel"] = "pour le canal";
$a->strings["on server"] = "sur le serveur";
$a->strings["Server"] = "Serveur";
$a->strings["Block public"] = "Bloquer \"public\"";
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "";
$a->strings["Allow communications only from these sites"] = "";
$a->strings["One site per line. Leave empty to allow communication from anywhere by default"] = "";
$a->strings["Block communications from these sites"] = "";
$a->strings["Allow communications only from these channels"] = "";
$a->strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "";
$a->strings["Block communications from these channels"] = "";
$a->strings["Allow embedded HTML content only from these domains"] = "";
$a->strings["One site per line. Leave empty to allow from any site by default"] = "";
$a->strings["Block embedded HTML from these domains"] = "";
$a->strings["Cooperative embed security"] = "";
$a->strings["Enable to share embed security with other compatible sites/hubs"] = "";
$a->strings["Update has been marked successful"] = "La mise à jour a été marquée comme réussie";
$a->strings["Executing %s failed. Check system logs."] = "L'éxecution de %s a échoué. Merci de vérifier les journaux du système.";
$a->strings["Update %s was successfully applied."] = "La mise à jour %s a été appliquée avec succès.";
$a->strings["Update %s did not return a status. Unknown if it succeeded."] = "La mise à jour %s n'a pas retourné d'information. Impossible de savoir si elle a réussi ou non.";
$a->strings["Update function %s could not be found."] = "La fonction de mise à jour %s est introuvable.";
$a->strings["No failed updates."] = "Aucune mise à jour défaillante.";
$a->strings["Failed Updates"] = "Mises à jour défaillantes";
$a->strings["Mark success (if update was manually applied)"] = "Marquer comme réussie (si la mise à jour a été réalisée manuellement)";
$a->strings["Attempt to execute this update step automatically"] = "Tenter de réaliser cette étape de mise à jour automatiquement";
$a->strings["Queue Statistics"] = "Statistiques de file d'attente";
$a->strings["Total Entries"] = "Nombre d'entrées total";
$a->strings["Priority"] = "Priorité";
$a->strings["Destination URL"] = "URL de destination";
$a->strings["Mark hub permanently offline"] = "Marquer le hub comme étant hors ligne de manière permanente";
$a->strings["Empty queue for this hub"] = "Vider la file d'attente pour ce hub";
$a->strings["Last known contact"] = "Dernier contact connu";
$a->strings["%s account blocked/unblocked"] = array(
	0 => "%s compte bloqué/débloqué",
	1 => "%s comptes bloqués/débloqués",
);
$a->strings["%s account deleted"] = array(
	0 => "%s compte supprimé",
	1 => "%s comptes supprimés",
);
$a->strings["Account not found"] = "Compte introuvable";
$a->strings["Account '%s' deleted"] = "Compte '%s' supprimé";
$a->strings["Account '%s' blocked"] = "Compte '%s' bloqué";
$a->strings["Account '%s' unblocked"] = "Compte '%s' débloqué";
$a->strings["Users"] = "Utilisateurs";
$a->strings["select all"] = "tout sélectionner";
$a->strings["User registrations waiting for confirm"] = "Inscriptions en attente d'approbation";
$a->strings["Request date"] = "Date de la demande";
$a->strings["No registrations."] = "Pas d'inscriptions.";
$a->strings["Deny"] = "Refuser";
$a->strings["Register date"] = "Date d'inscription";
$a->strings["Last login"] = "Dernière connexion";
$a->strings["Expires"] = "Expire le";
$a->strings["Service Class"] = "Classe de service";
$a->strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les comptes sélectionnés seront supprimés&nbsp;!\\n\\nTout ce que ces utilisateurs ont publié sur ce site sera détruit de manière définitive&nbsp;!\\n\\nÊtes-vous sûr&nbsp;?";
$a->strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Le compte {0} sera supprimé&nbsp;!\\n\\nTout ce que cet utilisateur a publié sur ce site sera détruit de manière définitive&nbsp;!\\n\\nÊtes-vous sûr&nbsp;?";
$a->strings["%s channel censored/uncensored"] = array(
	0 => "%s canal censuré/dé-censuré",
	1 => "%s canaux censurés/dé-censurés",
);
$a->strings["%s channel code allowed/disallowed"] = array(
	0 => "code autorisé/interdit pour %s canal",
	1 => "code autorisé/interdit pour %s canaux",
);
$a->strings["%s channel deleted"] = array(
	0 => "%s canal supprimé",
	1 => "%s canaux supprimés",
);
$a->strings["Channel not found"] = "Canal introuvable";
$a->strings["Channel '%s' deleted"] = "Canal '%s' supprimé";
$a->strings["Channel '%s' censored"] = "Canal '%s' censuré";
$a->strings["Channel '%s' uncensored"] = "Canal '%s' non censuré";
$a->strings["Channel '%s' code allowed"] = "Code autorisé pour le canal '%s'";
$a->strings["Channel '%s' code disallowed"] = "Code interdit pour le canal '%s'";
$a->strings["Censor"] = "Censurer";
$a->strings["Uncensor"] = "Ne plus censurer";
$a->strings["Allow Code"] = "Autoriser le code";
$a->strings["Disallow Code"] = "Interdire le code";
$a->strings["UID"] = "UID";
$a->strings["Address"] = "Adresse";
$a->strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Les canaux sélectionnés seront supprimés&nbsp;!\\n\\nTout ce qui a été publié dans ces canaux sur ce site sera définitivement supprimé&nbsp;!\\n\\nÊtes-vous sûr&nbsp;?";
$a->strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Le canal {0} sera supprimé&nbsp;!\\n\\nTout ce qui a été publié sur ce canal sera définitivement supprimé&nbsp;!\\n\\nÊtes-vous sûr(e)&nbsp;?";
$a->strings["Plugin %s disabled."] = "Greffon %s désactivé.";
$a->strings["Plugin %s enabled."] = "Greffon %s activé.";
$a->strings["Disable"] = "Désactiver";
$a->strings["Enable"] = "Activer";
$a->strings["Toggle"] = "(Dés)activer";
$a->strings["Author: "] = "Auteur&nbsp;:";
$a->strings["Maintainer: "] = "Maintenu par&nbsp;:";
$a->strings["Minimum project version: "] = "Version minimum du projet&nbsp;:";
$a->strings["Maximum project version: "] = "Version maximum du projet&nbsp;:";
$a->strings["Minimum PHP version: "] = "Version minimum de PHP&nbsp;:";
$a->strings["Disabled - version incompatibility"] = "Désactivé - version incompatible";
$a->strings["No themes found."] = "Aucun thème trouvé.";
$a->strings["Screenshot"] = "Capture d'écran";
$a->strings["[Experimental]"] = "[Expérimental]";
$a->strings["[Unsupported]"] = "[Non maintenu]";
$a->strings["Log settings updated."] = "Paramètres du journal mis à jour.";
$a->strings["Clear"] = "Vider";
$a->strings["Debugging"] = "Débogage";
$a->strings["Log file"] = "Fichier du journal";
$a->strings["Must be writable by web server. Relative to your Red top-level directory."] = "Doit être accessible en écriture par le serveur web. Chemin relatif à la racine de votre installation de Hubzilla.";
$a->strings["Log level"] = "Niveau de journalisation";
$a->strings["New Profile Field"] = "Nouveau champ de profil";
$a->strings["Field nickname"] = "Nom court du champ";
$a->strings["System name of field"] = "Nom système du champ";
$a->strings["Input type"] = "Type de champ";
$a->strings["Field Name"] = "Nom du champ";
$a->strings["Label on profile pages"] = "Étiquette sur les pages de profil";
$a->strings["Help text"] = "Aide à la saisie";
$a->strings["Additional info (optional)"] = "Informations additionnelles (facultatif)";
$a->strings["Field definition not found"] = "Définition du champ introuvable";
$a->strings["Edit Profile Field"] = "Modifier le champ de profil";
$a->strings["Poke somebody"] = "";
$a->strings["Poke/Prod"] = "Tapoter/Encourager";
$a->strings["Poke, prod or do other things to somebody"] = "";
$a->strings["Recipient"] = "Destinataire";
$a->strings["Choose what you wish to do to recipient"] = "Choisir ce que vous voulez faire au destinataire";
$a->strings["Make this post private"] = "Rendre cette publication privée";
$a->strings["Fetching URL returns error: %1\$s"] = "Récupération d'URL échouée&nbsp;: %1\$s";
$a->strings["Image uploaded but image cropping failed."] = "L'image a été téléversée, mais le recadrage a échoué.";
$a->strings["Image resize failed."] = "Le redimensionnement de l'image a échoué.";
$a->strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Shift-rechargez votre page, ou videz le cache du navigateur si la photo ne s'affiche pas immédiatement.";
$a->strings["Image upload failed."] = "Le téléversement de l'image a échoué.";
$a->strings["Unable to process image."] = "Impossible de traîter l'image.";
$a->strings["female"] = "femme";
$a->strings["%1\$s updated her %2\$s"] = "%1\$s a mis à jour son %2\$s";
$a->strings["male"] = "homme";
$a->strings["%1\$s updated his %2\$s"] = "%1\$s a mis à jour son %2\$s";
$a->strings["%1\$s updated their %2\$s"] = "%1\$s a mis a jour sa %2\$s";
$a->strings["profile photo"] = "photo de profil";
$a->strings["Photo not available."] = "Photo inaccessible.";
$a->strings["Upload File:"] = "Téléverser fichier&nbsp;:";
$a->strings["Select a profile:"] = "Choisir un profil&nbsp;:";
$a->strings["Upload Profile Photo"] = "Téléverser une photo de profil";
$a->strings["or"] = "ou";
$a->strings["skip this step"] = "passer cette étape";
$a->strings["select a photo from your photo albums"] = "choisir une photo dans vos albums";
$a->strings["Crop Image"] = "Recadrer l'image";
$a->strings["Please adjust the image cropping for optimum viewing."] = "Merci d'ajuster le cadre pour une visualisation optimale.";
$a->strings["Done Editing"] = "J'ai terminé";
$a->strings["Profile not found."] = "Profil introuvable.";
$a->strings["Profile deleted."] = "Profil supprimé.";
$a->strings["Profile-"] = "Profil-";
$a->strings["New profile created."] = "Nouveau profil créé.";
$a->strings["Profile unavailable to clone."] = "Profil impossible à cloner.";
$a->strings["Profile unavailable to export."] = "Impossible d'exporter le profil.";
$a->strings["Profile Name is required."] = "Le nom du profil est obligatoire.";
$a->strings["Marital Status"] = "Statut marital";
$a->strings["Romantic Partner"] = "Partenaire amoureux";
$a->strings["Likes"] = "Aime";
$a->strings["Dislikes"] = "N'aime pas";
$a->strings["Work/Employment"] = "Travail/Occupation";
$a->strings["Religion"] = "Religion/Croyance";
$a->strings["Political Views"] = "Opinions politiques";
$a->strings["Sexual Preference"] = "Préférences sexuelle";
$a->strings["Homepage"] = "Site Internet";
$a->strings["Interests"] = "Centres d'intérêt";
$a->strings["Profile updated."] = "Profil mis à jour.";
$a->strings["Hide your contact/friend list from viewers of this profile?"] = "Cacher vos contacts/amis aux visiteurs de ce profil&nbsp;?";
$a->strings["Edit Profile Details"] = "Modifier les détails du profil";
$a->strings["View this profile"] = "Voir ce profil";
$a->strings["Change Profile Photo"] = "Changer la photo du profil";
$a->strings["Create a new profile using these settings"] = "Créer un nouveau profil avec ces paramètres";
$a->strings["Clone this profile"] = "Cloner ce profil";
$a->strings["Delete this profile"] = "Supprimer ce profil";
$a->strings["Import profile from file"] = "Importer le profil à partir d'un fichier";
$a->strings["Export profile to file"] = "Exporter le profil vers un fichier.";
$a->strings["Profile Name:"] = "Nom du profil&nbsp;:";
$a->strings["Your Full Name:"] = "Votre nom complet&nbsp;:";
$a->strings["Title/Description:"] = "Titre/description&nbsp;:";
$a->strings["Your Gender:"] = "Sexe/Genre&nbsp;:";
$a->strings["Birthday :"] = "Date de naissance&nbsp;:";
$a->strings["Street Address:"] = "Numéro et voie&nbsp;:";
$a->strings["Locality/City:"] = "Ville&nbsp;:";
$a->strings["Postal/Zip Code:"] = "Code postal&nbsp;:";
$a->strings["Country:"] = "Pays&nbsp;:";
$a->strings["Region/State:"] = "Région/Province/État&nbsp;:";
$a->strings["<span class=\"heart\">&hearts;</span> Marital Status:"] = "<span class=\"heart\">&hearts;</span>Statut marital&nbsp;:";
$a->strings["Who: (if applicable)"] = "Avec&nbsp;: (si pertinent)";
$a->strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Exemples&nbsp;: marie123, Marie Deschamps, marie@exemple.com";
$a->strings["Since [date]:"] = "Depuis [date]&nbsp;:";
$a->strings["Homepage URL:"] = "URL de mon site Internet&nbsp;:";
$a->strings["Religious Views:"] = "Opinions religieuses&nbsp;:";
$a->strings["Keywords:"] = "Mots-clefs&nbsp;:";
$a->strings["Example: fishing photography software"] = "Exemple&nbsp;: escrime photographie modélisme";
$a->strings["Used in directory listings"] = "Utilisé pour le référencement dans l'annuaire";
$a->strings["Tell us about yourself..."] = "Parlez nous de vous...";
$a->strings["Hobbies/Interests"] = "Loisirs/Centres d'intêret";
$a->strings["Contact information and Social Networks"] = "Coordonnées et réseaux sociaux";
$a->strings["My other channels"] = "Mes autres canaux";
$a->strings["Musical interests"] = "Goûts musicaux";
$a->strings["Books, literature"] = "Livres, littérature";
$a->strings["Television"] = "Télévision";
$a->strings["Film/dance/culture/entertainment"] = "Cinéma/Danse/Culture/Divertissement";
$a->strings["Love/romance"] = "Amour/Relation amoureuse";
$a->strings["Work/employment"] = "Travail/Occupation&nbsp;";
$a->strings["School/education"] = "Études";
$a->strings["This is your default profile."] = "Ceci est votre profil par défaut.";
$a->strings["Age: "] = "Age&nbsp;:";
$a->strings["Edit/Manage Profiles"] = "Modifier/gérer les profils";
$a->strings["Add profile things"] = "Ajouter des éléments de profil";
$a->strings["Include desirable objects in your profile"] = "Incluez des objets souhaitables dans votre profil";
$a->strings["Invalid profile identifier."] = "Identifiant de profil invalide.";
$a->strings["Profile Visibility Editor"] = "Éditeur de visibilité de profil";
$a->strings["Click on a contact to add or remove."] = "Cliquer sur un contact pour l'ajouter ou le retirer.";
$a->strings["Visible To"] = "Visible par";
$a->strings["Public Sites"] = "Sites publics";
$a->strings["The listed sites allow public registration for the \$Projectname network. All sites in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some sites may require subscription or provide tiered service plans. The provider links <strong>may</strong> provide additional details."] = "Les sites listés autorisent l'inscription publique au réseau \$Projectname. Tous les sites du réseau sont interconnectés, l'inscription sur l'un quelconque d'entre eux signifie donc l'inscription sur le réseau dans son ensemble. Certains sites peuvent nécessiter une souscription ou fournir des niveaux de service différenciés. Le lien du fournisseur <strong>peut</strong> fournir plus de détails.";
$a->strings["Rate this hub"] = "Noter ce hub";
$a->strings["Site URL"] = "URL du site";
$a->strings["Access Type"] = "Type d'accès";
$a->strings["Registration Policy"] = "Politique d'inscription";
$a->strings["Project"] = "Projet";
$a->strings["View hub ratings"] = "Voir les notes de cette instance";
$a->strings["Rate"] = "Evaluer";
$a->strings["View ratings"] = "Voir les notes";
$a->strings["Website:"] = "Site web&nbsp;:";
$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Canal distant [%s] (encore inconnu sur ce site)";
$a->strings["Rating (this information is public)"] = "Evaluation (cette information est publique)";
$a->strings["Optionally explain your rating (this information is public)"] = "Explication facultative de votre évaluation (cette information est publique)";
$a->strings["No ratings"] = "Pas de note";
$a->strings["Rating: "] = "Evaluation&nbsp:";
$a->strings["Website: "] = "Site web&nbsp;:";
$a->strings["Description: "] = "Description&nbsp;:";
$a->strings["Select a bookmark folder"] = "Choisir un dossier de favoris";
$a->strings["Save Bookmark"] = "Enregistrer le favori";
$a->strings["URL of bookmark"] = "URL du favori";
$a->strings["Or enter new bookmark folder name"] = "Ou entrez un nouveau nom de dossier de favoris";
$a->strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Nombre d'inscriptions quotidiennes dépassé. Merci d'essayer à nouveau demain.";
$a->strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Merci d'indiquer votre adhésion aux conditions de service. L'inscription a échoué.";
$a->strings["Passwords do not match."] = "Les mots de passe ne concordent pas.";
$a->strings["Registration successful. Please check your email for validation instructions."] = "Inscription réussie. Merci de vérifier vos courriels pour valider votre compte.";
$a->strings["Your registration is pending approval by the site owner."] = "Votre inscription est en attente d'approbation par l'administrateur.";
$a->strings["Your registration can not be processed."] = "Votre inscription ne peut être traîtée.";
$a->strings["Registration on this site is disabled."] = "L'enregistrement est désactivé sur ce site.";
$a->strings["Registration on this site/hub is by approval only."] = "L'inscription sur ce site/hub est soumise à approbation.";
$a->strings["<a href=\"pubsites\">Register at another affiliated site/hub</a>"] = "<a href=\"pubsites\">S'inscrire sur un autre site/hub affilié</a>";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Ce site a dépassé le nombre de création de comptes autorisé chaque jour. Merci d'essayer à nouveau demain.";
$a->strings["Terms of Service"] = "Conditions de service";
$a->strings["I accept the %s for this website"] = "J'accepte les %s de ce site";
$a->strings["I am over 13 years of age and accept the %s for this website"] = "J'ai plus de 13 ans et j'accepte les %s de ce site";
$a->strings["Membership on this site is by invitation only."] = "L'inscription à ce site se fait uniquement sur invitation.";
$a->strings["Please enter your invitation code"] = "Merci de saisir votre code d'invitation";
$a->strings["Enter your name"] = "Saisissez votre nom";
$a->strings["Your email address"] = "Votre adresse de courriel";
$a->strings["Choose a password"] = "Choisissez un mot de passe";
$a->strings["Please re-enter your password"] = "Merci de saisir à nouveau votre mot de passe";
$a->strings["Please login."] = "Merci de vous connecter.";
$a->strings["Account removals are not allowed within 48 hours of changing the account password."] = "Il est impossible de supprimer un compte dans les 48 heures après avoir changé le mot de passe du compte.";
$a->strings["Remove This Account"] = "Supprimer ce compte";
$a->strings["WARNING: "] = "AVERTISSEMENT&nbsp;:";
$a->strings["This account and all its channels will be completely removed from the network. "] = "Ce compte et tous ses canaux seront entièrement supprimés du réseau.";
$a->strings["This action is permanent and can not be undone!"] = "Cette action est permanente et irréversible&nbsp;!";
$a->strings["Please enter your password for verification:"] = "Merci de saisir votre mot de passe pour vérification&nbsp;:";
$a->strings["Remove this account, all its channels and all its channel clones from the network"] = "Supprimer du réseau ce compte, tous ses canaux et tous les clones de ses canaux.";
$a->strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Par défaut, seules les instances des canaux situés sur ce hub seront supprimées du réseau";
$a->strings["Remove Account"] = "Supprimer le compte";
$a->strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Il est impossible de supprimer un canal moins de 48 heures après avoir changé le mot de passe d'un compte.";
$a->strings["Remove This Channel"] = "Supprimer ce canal";
$a->strings["This channel will be completely removed from the network. "] = "Ce canal sera complètement supprimé du réseau.";
$a->strings["Remove this channel and all its clones from the network"] = "Supprimer ce canal ainsi que tous ses clones sur le réseau";
$a->strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Par défaut, seule l'instance du canal présente sur ce hub sera supprimée du réseau";
$a->strings["Remove Channel"] = "Supprimer le canal";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Nous avons rencontré un problème avec l'OpenID que vous nous avez fourni. Merci de vérifier que l'ID est correctement saisi.";
$a->strings["The error message was:"] = "Le message d'erreur était&nbsp;:";
$a->strings["Authentication failed."] = "Échec de l'authentification.";
$a->strings["Remote Authentication"] = "Authentification distante";
$a->strings["Enter your channel address (e.g. channel@example.com)"] = "Entrez l'adresse de votre canal (par ex. moncanal@monsite.com)";
$a->strings["Authenticate"] = "Authentifier";
$a->strings["Items tagged with: %s"] = "Eléments étiquetés avec&nbsp;: %s";
$a->strings["Search results for: %s"] = "Résultats de recherche pour&nbsp;: %s";
$a->strings["No service class restrictions found."] = "Aucune restriction de classe de service trouvée.";
$a->strings["Name is required"] = "Le nom est requis";
$a->strings["Key and Secret are required"] = "Clef et secret sont requis";
$a->strings["Passwords do not match. Password unchanged."] = "Les deux saisies du mot de passe ne correspondent pas. Il n'a donc pas été changé.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Le mot de passe ne peut pas être vide. Il n'a donc pas été changé.";
$a->strings["Password changed."] = "Le mot de passe a été changé.";
$a->strings["Password update failed. Please try again."] = "La mise à jour du mot de passe a échoué. Merci d'essayer à nouveau.";
$a->strings["Not valid email."] = "Adresse de courriel non valide.";
$a->strings["Protected email address. Cannot change to that email."] = "Adresse de courriel protégée. Impossible de l'utiliser.";
$a->strings["System failure storing new email. Please try again."] = "Défaillance système lors du stockage de la nouvelle adresse de courriel. Merci d'essayer à nouveau.";
$a->strings["Settings updated."] = "Paramètres mis à jour.";
$a->strings["Add application"] = "Ajouter une application";
$a->strings["Name of application"] = "Nom de l'application";
$a->strings["Consumer Key"] = "Clef client";
$a->strings["Automatically generated - change if desired. Max length 20"] = "Généré automatiquement - à changer si besoin. Longueur maximale 20 caractères.";
$a->strings["Consumer Secret"] = "Secret client";
$a->strings["Redirect"] = "Redirection";
$a->strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI de redirection - laissez vide, sauf si votre application le requiert spécifiquement";
$a->strings["Icon url"] = "URL de l'icône";
$a->strings["Optional"] = "Facultatif";
$a->strings["Application not found."] = "";
$a->strings["Connected Apps"] = "Applications connectées";
$a->strings["Client key starts with"] = "La clef partagée commence par";
$a->strings["No name"] = "Sans nom";
$a->strings["Remove authorization"] = "Révoquer l'autorisation";
$a->strings["No feature settings configured"] = "Aucun paramètre de fonctionnalité configuré";
$a->strings["Feature/Addon Settings"] = "Paramètres des extensions/greffons";
$a->strings["Account Settings"] = "Paramètres du compte";
$a->strings["Enter New Password:"] = "Nouveau mot de passe&nbsp;:";
$a->strings["Confirm New Password:"] = "Confirmer le nouveau mot de passe&nbsp;:";
$a->strings["Leave password fields blank unless changing"] = "Laissez les mots de passe vides si vous ne voulez pas les modifier";
$a->strings["Email Address:"] = "Adresse de courriel&nbsp;:";
$a->strings["Remove this account including all its channels"] = "Supprimer ce compte et tous ses canaux";
$a->strings["Additional Features"] = "Fonctionnalités additionnelles";
$a->strings["Connector Settings"] = "Paramètres du connecteur";
$a->strings["No special theme for mobile devices"] = "Pas de thème spécifique aux mobiles";
$a->strings["%s - (Experimental)"] = "%s - (Expérimental)";
$a->strings["Display Settings"] = "Afficher les paramètres";
$a->strings["Theme Settings"] = "Paramètres du thème";
$a->strings["Custom Theme Settings"] = "Paramètres personnels du thème";
$a->strings["Content Settings"] = "Paramètres liés au contenu";
$a->strings["Display Theme:"] = "Afficher le thème&nbsp;:";
$a->strings["Mobile Theme:"] = "Thème mobile&nbsp;:";
$a->strings["Enable user zoom on mobile devices"] = "Permettre à l'utilisateur d'un mobile d'agrandir le contenu";
$a->strings["Update browser every xx seconds"] = "Mettre à jour le navigateur toutes les xx secondes";
$a->strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 secondes, pas de maximum";
$a->strings["Maximum number of conversations to load at any time:"] = "Nombre maximal de conversations pouvant être chargées en même temps&nbsp;:";
$a->strings["Maximum of 100 items"] = "100 éléments au maximum";
$a->strings["Show emoticons (smilies) as images"] = "Remplacer les émoticônes (smileys) par des images";
$a->strings["Link post titles to source"] = "Lier les titres des publications à leur source";
$a->strings["System Page Layout Editor - (advanced)"] = "Editeur de mise en page des pages systèmes - (avancé)";
$a->strings["Use blog/list mode on channel page"] = "Utiliser le mode blog/liste sur la page du canal";
$a->strings["(comments displayed separately)"] = "(commentaires affichés séparément)";
$a->strings["Use blog/list mode on grid page"] = "Utiliser le mode blog/liste sur la page du réseau";
$a->strings["Channel page max height of content (in pixels)"] = "Hauteur maximale du contenu pour la page du canal (en pixels)";
$a->strings["click to expand content exceeding this height"] = "cliquer pour dérouler le contenu dépassant cette limite";
$a->strings["Grid page max height of content (in pixels)"] = "Hauteur maximale du contenu sur la page du réseau (en pixels)";
$a->strings["Nobody except yourself"] = "Personne sauf vous";
$a->strings["Only those you specifically allow"] = "Seulement ceux que vous autorisez spécifiquement";
$a->strings["Approved connections"] = "Contacts approuvés";
$a->strings["Any connections"] = "Tous les contacts";
$a->strings["Anybody on this website"] = "Tous les utilisateurs du hub";
$a->strings["Anybody in this network"] = "Tous les utilisateurs sur ce réseau";
$a->strings["Anybody authenticated"] = "Tous les utilisateurs authentifiés";
$a->strings["Anybody on the internet"] = "Tous les utilisateurs d'Internet";
$a->strings["Publish your default profile in the network directory"] = "Publier votre profil par défaut dans l'annuaire du réseau";
$a->strings["Allow us to suggest you as a potential friend to new members?"] = "Nous autoriser à vous suggérer comme ami(e) potentiel(le) aux nouveaux membres?";
$a->strings["Your channel address is"] = "L'adresse de votre canal est";
$a->strings["Channel Settings"] = "Paramètres du canal";
$a->strings["Basic Settings"] = "Paramètres standard";
$a->strings["Your Timezone:"] = "Votre fureau horaire&nbsp;:";
$a->strings["Default Post Location:"] = "Emplacement de publication par défaut&nbsp;:";
$a->strings["Geographical location to display on your posts"] = "Emplacement géographique à afficher sur vos publications";
$a->strings["Use Browser Location:"] = "Utiliser la géolocalisation du navigateur&nbsp;:";
$a->strings["Adult Content"] = "Contenu \"adulte\"";
$a->strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Ce canal publie plus ou moins fréquemment du contenu pour adultes. (Merci d'indiquer tout contenu pour adulte ou potentiellement choquant avec l'étiquette <em>#NSFW</em> - Not Safe For Work)";
$a->strings["Security and Privacy Settings"] = "Paramètres de sécurité et de confidentialité";
$a->strings["Your permissions are already configured. Click to view/adjust"] = "Vous permissions sont déjà paramétrées. Cliquer pour voir/ajuster";
$a->strings["Hide my online presence"] = "Cacher ma présence en ligne";
$a->strings["Prevents displaying in your profile that you are online"] = "Cacher votre statut (en ligne/hors ligne) sur votre profil";
$a->strings["Simple Privacy Settings:"] = "Paramètres de confidentialité simplifiés&nbsp;:";
$a->strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "Très public - <em>extrèmement permissif (à n'utiliser qu'en connaissance de cause)</em>";
$a->strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "Classique - <em>public par défaut, privé en cas de besoin (comparable aux permissions type réseau social, avec une confidentialité améliorée)</em>";
$a->strings["Private - <em>default private, never open or public</em>"] = "Privé - <em>privé par défaut, jamais ouvert ni public</em>";
$a->strings["Blocked - <em>default blocked to/from everybody</em>"] = "Bloqué - <em>par défaut, bloqué de/vers tout le monde</em>";
$a->strings["Allow others to tag your posts"] = "Autoriser les autres à \"étiqueter\" vos publications";
$a->strings["Often used by the community to retro-actively flag inappropriate content"] = "Souvent utilisé par la communauté pour identifier un contenu inapproprié a posteriori ";
$a->strings["Advanced Privacy Settings"] = "Paramètres de confidentialité avancés";
$a->strings["Expire other channel content after this many days"] = "Faire expirer le contenu des autres canaux après n jours";
$a->strings["0 or blank to use the website limit. The website expires after %d days."] = "0 ou vide pour utiliser la limite du site. Le délai du site est de %d jours.";
$a->strings["Maximum Friend Requests/Day:"] = "Nombre maximum de demandes de contact par jour&nbsp;:";
$a->strings["May reduce spam activity"] = "Contribue à réduire l'impact des indésirables";
$a->strings["Default Post Permissions"] = "Permissions par défaut des publications";
$a->strings["Channel permissions category:"] = "Catégorie de permissions du canal&nbsp;:";
$a->strings["Maximum private messages per day from unknown people:"] = "Nombre maximum de messages privés émanant d'inconnus, par jour&nbsp;:";
$a->strings["Useful to reduce spamming"] = "Utile pour réduire les indésirables";
$a->strings["Notification Settings"] = "Paramètres de notification";
$a->strings["By default post a status message when:"] = "Par défaut, publier un statut quand&nbsp;:";
$a->strings["accepting a friend request"] = "vous acceptez une demande de contact";
$a->strings["joining a forum/community"] = "vous rejoignez un forum ou une communauté";
$a->strings["making an <em>interesting</em> profile change"] = "vous faîtes une modification <em>intéressante</em> de votre profil";
$a->strings["Send a notification email when:"] = "Envoyer un courriel de notification quand&nbsp;:";
$a->strings["You receive a connection request"] = "Vous recevez une demande de contact";
$a->strings["Your connections are confirmed"] = "Vos contacts sont confirmés";
$a->strings["Someone writes on your profile wall"] = "Quelqu'un a écrit sur votre mur";
$a->strings["Someone writes a followup comment"] = "Quelqu'un a commenté vos publications";
$a->strings["You receive a private message"] = "Vous recevez un message privé";
$a->strings["You receive a friend suggestion"] = "Vous recevez une suggestion d'amitié/contact";
$a->strings["You are tagged in a post"] = "Vous êtes étiqueté dans une publication";
$a->strings["You are poked/prodded/etc. in a post"] = "Vous êtes tapoté/encouragé/etc. dans une publication";
$a->strings["Show visual notifications including:"] = "Afficher des notifications visuelles y compris&nbsp;:";
$a->strings["Unseen grid activity"] = "Activité du réseau pas encore consultée";
$a->strings["Unseen channel activity"] = "Activité non vue sur le canal";
$a->strings["Unseen private messages"] = "Messages privés non lus";
$a->strings["Recommended"] = "Recommandé";
$a->strings["Upcoming events"] = "Événements à venir";
$a->strings["Events today"] = "Événements aujourd'hui";
$a->strings["Upcoming birthdays"] = "Anniversaires à venir";
$a->strings["Not available in all themes"] = "Pas disponible dans tous les thèmes";
$a->strings["System (personal) notifications"] = "Notifications système (personnelles)";
$a->strings["System info messages"] = "Messages d'info système";
$a->strings["System critical alerts"] = "Alertes critiques système";
$a->strings["New connections"] = "Nouveaux contacts";
$a->strings["System Registrations"] = "Inscriptions système";
$a->strings["Also show new wall posts, private messages and connections under Notices"] = "Afficher également les nouvelles publications sur le mur, les messages privés et les contacts dans Notifications";
$a->strings["Notify me of events this many days in advance"] = "Me prévenir d’événements à venir tant de jours en avance";
$a->strings["Must be greater than 0"] = "Doit être supérieur à 0";
$a->strings["Advanced Account/Page Type Settings"] = "Paramètres avancés de compte/type de page";
$a->strings["Change the behaviour of this account for special situations"] = "Modifie le comportement de ce compte pour des situations particulières";
$a->strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "Mode expert requis (<a href=\"settings/features\">Paramètres > Fonctions supplémentaires</a>) pour ajuster&nbsp;!";
$a->strings["Miscellaneous Settings"] = "Paramètres divers";
$a->strings["Default photo upload folder"] = "Répertoire par défaut pour les photos téléversées";
$a->strings["%Y - current year, %m -  current month"] = "%Y - année en cours, %m - mois en cours";
$a->strings["Default file upload folder"] = "Répertoire par défaut pour les fichiers téléversés";
$a->strings["Personal menu to display in your channel pages"] = "Menu personnel à afficher sur les pages de votre canal";
$a->strings["Remove this channel."] = "Supprimer ce canal";
$a->strings["Firefox Share \$Projectname provider"] = "Connecteur \$Projectname pour Firefox Share";
$a->strings["Start calendar week on monday"] = "Commencer la semaine du calendrier le lundi";
$a->strings["\$Projectname Server - Setup"] = "Serveur \$Projectname - configuration";
$a->strings["Could not connect to database."] = "Impossible de se connecter à la base de données.";
$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Impossible de se connecter à l'URL indiquée. Problème potentiel de certificat SSL/TLS ou de DNS.";
$a->strings["Could not create table."] = "Impossible de créer la table.";
$a->strings["Your site database has been installed."] = "La base de données de votre site a été installée.";
$a->strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Vous pourriez avoir besoin d'importer le fichier \"install/schema_xxx.sql\" manuellement via un client de base de données (ex: phpmyadmin).";
$a->strings["Please see the file \"install/INSTALL.txt\"."] = "Merci de consulter le fichier \"install/INSTALL.txt\".";
$a->strings["System check"] = "Vérification du système";
$a->strings["Check again"] = "Re-vérifier";
$a->strings["Database connection"] = "Connexion à la base de données";
$a->strings["In order to install \$Projectname we need to know how to connect to your database."] = "Pour installer \$Projectname, nous avons besoin de savoir comment se connecter à votre base de données.";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Merci de contacter votre prestataire d'hébergement ou votre administrateur de site si vous avez des questions à propos de ces paramètres.";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de données que vous allez spécifier doit exister. Si ce n'est pas déjà le cas, merci de la créer avant de continuer.";
$a->strings["Database Server Name"] = "Nom du serveur de base de données";
$a->strings["Default is 127.0.0.1"] = "Par défaut 127.0.0.1";
$a->strings["Database Port"] = "Port de la base de données";
$a->strings["Communication port number - use 0 for default"] = "Numéro TCP du port - utilisez 0 pour la valeur par défaut";
$a->strings["Database Login Name"] = "Identifiant de connexion à la Base de Données";
$a->strings["Database Login Password"] = "Mot de passe de connexion à la Base de Données";
$a->strings["Database Name"] = "Nom de la Base de Données";
$a->strings["Database Type"] = "Type de base de données";
$a->strings["Site administrator email address"] = "Adresse de courriel de l'administrateur du site";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "Votre compte devra utiliser la même adresse de courriel pour pouvoir utiliser l'administration web.";
$a->strings["Website URL"] = "URL du site web";
$a->strings["Please use SSL (https) URL if available."] = "Veuillez utiliser SSL/TLS (https) si disponible.";
$a->strings["Please select a default timezone for your website"] = "Veuillez choisir un fuseau horaire par défaut pour votre site";
$a->strings["Site settings"] = "Paramètres du site";
$a->strings["Enable \$Projectname <strong>advanced</strong> features?"] = "";
$a->strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "";
$a->strings["Could not find a command line version of PHP in the web server PATH."] = "Impossible de trouver une version CLI de PHP dans le PATH du serveur web.";
$a->strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "En l'absence de version CLI de PHP sur votre serveur, vous ne pourrez pas utiliser la synchronisation en arrière-plan via cron.";
$a->strings["PHP executable path"] = "Chemin vers l'éxecutable PHP";
$a->strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Entrez le chemin complet vers l'exécutable php. Vous pouvez continuer l'installation sans.";
$a->strings["Command line PHP"] = "PHP en ligne de commande (CLI)";
$a->strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La version CLI de PHP sur votre système n'a pas l'option \"register_argc_argv\" activée.";
$a->strings["This is required for message delivery to work."] = "Elle est nécessaire pour la distribution des messages.";
$a->strings["PHP register_argc_argv"] = "PHP register_argc_argv";
$a->strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "Votre taille de téléversement maximale totale autorisée est fixée à %s. La taille maximale d'un seul fichier à téléverser est fixée à %s. Vous pouvez téléverser jusqu'à %d fichier(s) à la fois.";
$a->strings["You can adjust these settings in the servers php.ini."] = "Vous pouvez ajuster ces paramètres dans le php.ini du serveur.";
$a->strings["PHP upload limits"] = "Limites de téléversement de PHP";
$a->strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Erreur&nbsp;: la fonction \"openssl_pkey_new\" de ce système n'est pas capable de générer des clefs de chiffrement";
$a->strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si vous êtes sur un serveur Windows, merci de consulter \"http://www.php.net/manual/fr/openssl.installation.php\".";
$a->strings["Generate encryption keys"] = "Générer les clefs de chiffrement";
$a->strings["libCurl PHP module"] = "module PHP libCurl";
$a->strings["GD graphics PHP module"] = "module PHP GD graphics";
$a->strings["OpenSSL PHP module"] = "module PHP OpenSSL";
$a->strings["mysqli or postgres PHP module"] = "module PHP postgres ou mysqli";
$a->strings["mb_string PHP module"] = "module PHP mb_string";
$a->strings["mcrypt PHP module"] = "module PHP mcrypt";
$a->strings["xml PHP module"] = "module PHP xml";
$a->strings["Apache mod_rewrite module"] = "module Apache mod_rewrite";
$a->strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Erreur&nbsp;: le module mod-rewrite du serveur web Apache est requis, mais pas installé.";
$a->strings["proc_open"] = "proc_open";
$a->strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Erreur&nbsp;: proc_open est requis, mais soit n'est pas installé, soit est désactivé dans le php.ini";
$a->strings["Error: libCURL PHP module required but not installed."] = "Erreur&nbsp;: le module libCURL de PHP est requis, mais pas installé.";
$a->strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Erreur&nbsp;: le module GD de PHP avec support JPEG est requis, mais pas installé.";
$a->strings["Error: openssl PHP module required but not installed."] = "Erreur&nbsp;: le module openssl de PHP est requis, mais pas installé.";
$a->strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Erreur&nbsp;: un module PHP mysqli ou postgres est requis, mais aucun des deux n'est installé.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur&nbsp;: le module mb_string de PHP est requis, mais pas installé.";
$a->strings["Error: mcrypt PHP module required but not installed."] = "Erreur&nbsp;: le module mcrypt de PHP est requis, mais pas installé.";
$a->strings["Error: xml PHP module required for DAV but not installed."] = "Erreur&nbsp;: le module xml de PHP est requis pour le DAV, mais pas installé.";
$a->strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "L'installeur web a besoin de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais en est incapable.";
$a->strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "C'est généralement lié à un problème de droits, à cause duquel le serveur web est interdit d'écriture dans le répertoire concerné - alors que votre propre utilisateur a le droit.";
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Au terme de cette procédure, nous vous transmettrons un texte à sauvegarder dans un fichier nommé .htconfig.php, à la racine de votre installation de \$Projectname.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Autrement, vous pouvez contourner toute cette procédure et réaliser l'installation manuellement. Merci de consulter le fichier \"install/INSTALL.txt\" pour les instructions détaillées.";
$a->strings[".htconfig.php is writable"] = "Le fichier .htconfig.php est accessible en écriture";
$a->strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "\$Projectname utilise le moteur de gabarits Smarty3 pour mettre son contenu en forme. Smarty3 compile ses modèles vers du PHP natif pour accélérer le rendu.";
$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder."] = "Pour utiliser ces modèles, le serveur doit avoir le droits d'écrire dans le dossier %s à la racine du site \$Projectname.";
$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Merci de vous assurer que l'utilisateur sous lequel le serveur web tourne (le plus souvent, www-data) a bien l'autorisation d'écrire dans ce répertoire.";
$a->strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Note: Comme mesure de sécurité, assurez vous de donner les droits d'écriture au serveur web sur %s uniquement, pas sur les fichiers individuels (.tpl) qu'il contient.";
$a->strings["%s is writable"] = "Permission d'écriture sur %s activée";
$a->strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "\$Projectname utilise le répertoire 'store' - situé à la racine de votre installation de \$Projectname - pour sauvegarder les fichiers envoyés. Le serveur web aura donc besoin de pouvoir y écrire.";
$a->strings["store is writable"] = "'store' est accessible en écriture";
$a->strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Le certificat SSL/TLS n'a pas pu être validé. Merci de le corriger, ou de désactiver l'accès https à ce site (non recommandé).";
$a->strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Si votre serveur accepte les connexions https ou s'il permet les connexions sur le port TCP 443 (le port utilisé par le protocole https), vous DEVEZ utiliser un certificat valide. Vous ne DEVEZ PAS utiliser un certificat que vous avez vous-mêmes signé&nbsp;!";
$a->strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Nous avons ajouté cette contrainte pour éviter que vos publications publiques ne fassent référence par exemple à des images sur votre propre hub.";
$a->strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "Si votre certificat n'est pas reconnu, les membres des autres sites (qui eux peuvent avoir des certificats valides) recevront des messages d'avertissement sur leur propre site se plaignant de problèmes de sécurité.";
$a->strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ceci peut causer des problèmes d'ergonomie ailleurs (pas seulement sur votre site), nous devons donc insister sur ce prérequis.";
$a->strings["Providers are available that issue free certificates which are browser-valid."] = "Il existe des autorités de certification qui vous fourniront gratuitement un certificat valide.";
$a->strings["SSL certificate validation"] = "Validation du certificat SSL/TLS";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "La réécriture d'URL définie dans le .htaccess ne fonctionne pas. Vérifiez votre configuration serveur. Test&nbsp;:";
$a->strings["Url rewrite is working"] = "La réécriture d'URL fonctionne";
$a->strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "Le fichier de configuration de la base de données - \".htconfig.php\" - ne peut être écrit. Merci de copier le texte généré dans un fichier à ce nom, à la racine de votre serveur web.";
$a->strings["Errors encountered creating database tables."] = "Erreurs rencontrées pendant la création de tables de BDD.";
$a->strings["<h1>What next</h1>"] = "<h1>Et maintenant</h1>";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT&nbsp;: Vous devez créer [manuellement] une tâche planifiée pour les mises à jour du réseau.";
$a->strings["No valid account found."] = "Aucun compte valide trouvé.";
$a->strings["Password reset request issued. Check your email."] = "Demande de réinitialisation du mot de passe envoyée. Vérifiez vos courriels.";
$a->strings["Site Member (%s)"] = "Membre du site (%s)";
$a->strings["Password reset requested at %s"] = "Demande de réinitialisation du mot de passe sur %s";
$a->strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La demande n'a pas pu être vérifiée. (Peut-être l'avez vous déjà utilisée.) La réinitialisation a échoué.";
$a->strings["Password Reset"] = "Réinitialiser le mot de passe";
$a->strings["Your password has been reset as requested."] = "Votre mot de passe a bien été réinitialisé.";
$a->strings["Your new password is"] = "Votre nouveau mot de passe est";
$a->strings["Save or copy your new password - and then"] = "Enregistrez ou copiez votre nouveau mot de passe, puis";
$a->strings["click here to login"] = "cliquez ici pour vous connecter";
$a->strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "Votre mot de passe peut être changé depuis la page des <em>Paramètres</em> une fois connecté.";
$a->strings["Your password has changed at %s"] = "Votre mot de passe de %s a été changé";
$a->strings["Forgot your Password?"] = "Mot de passe oublié&nbsp;?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Saisissez votre adresse de courriel, et validez, pour réinitialiser votre mot de passe. Vérifiez ensuite votre boîte aux lettres pour la suite des instructions.";
$a->strings["Email Address"] = "Adresse de courriel";
$a->strings["Reset"] = "Réinitialiser";
$a->strings["Files: shared with me"] = "Fichiers&nbsp;: partagés avec moi";
$a->strings["NEW"] = "NOUVEAU";
$a->strings["Remove all files"] = "Supprimer tous les fichiers";
$a->strings["Remove this file"] = "Supprimer ce fichier";
$a->strings["Version %s"] = "Version %s";
$a->strings["Installed plugins/addons/apps:"] = "Greffons/extensions/applications installés&nbsp;:";
$a->strings["No installed plugins/addons/apps"] = "Aucun greffon/extension/application installé";
$a->strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Ceci est un serveur \$Projectname - un réseau collaboratif mondial de serveurs décentralisés à la confidentialité améliorée.";
$a->strings["Tag: "] = "Étiquette&nbsp;:";
$a->strings["Last background fetch: "] = "Dernière récupération en tâche de fond&nbsp;:";
$a->strings["Current load average: "] = "Charge moyenne actuelle&nbsp;:";
$a->strings["Running at web location"] = "Tourne à l'adresse internet";
$a->strings["Please visit <a href=\"http://hubzilla.org\">hubzilla.org</a> to learn more about \$Projectname."] = "Merci de visiter <a href=\"http://hubzilla.org\">hubzilla.org</a> pour en apprendre davantage sur \$Projectname.";
$a->strings["Bug reports and issues: please visit"] = "Pour remonter bogues et problèmes, merci de visiter";
$a->strings["\$projectname issues"] = "Problèmes \$projectname";
$a->strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Suggestions, demandes, etc. - merci de vous adresser à \"redmatrix\" à librelist - point com";
$a->strings["Site Administrators"] = "Administrateurs du site";
$a->strings["Failed to create source. No channel selected."] = "Impossible de créer la source. Aucun canal selectionné.";
$a->strings["Source created."] = "Source créée.";
$a->strings["Source updated."] = "Source mise à jour.";
$a->strings["*"] = "*";
$a->strings["Manage remote sources of content for your channel."] = "Gérer les sources distantes de contenu pour votre canal.";
$a->strings["New Source"] = "Nouvelle source";
$a->strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importer le contenu sélectionné ou tout le contenu du canal suivant vers ce canal et le distribuer selon vos paramètres de canal.";
$a->strings["Only import content with these words (one per line)"] = "N'importer le contenu que s'il contient ces mots (un par ligne)";
$a->strings["Leave blank to import all public content"] = "Laissez vide pour importer tout le contenu public";
$a->strings["Source not found."] = "Source introuvable.";
$a->strings["Edit Source"] = "Modifier la source";
$a->strings["Delete Source"] = "Supprimer la source";
$a->strings["Source removed"] = "Source supprimée";
$a->strings["Unable to remove source."] = "Impossible de supprimer la source.";
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s suit %3\$s de %2\$s";
$a->strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ne suit plus %3\$s de %2\$s";
$a->strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Aucune suggestion disponible. Si le site est récent, merci de re-tenter dans 24 heures.";
$a->strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s a étiqueté le %3\$s de %2\$s avec %4\$s";
$a->strings["Tag removed"] = "Étiquette retirée";
$a->strings["Remove Item Tag"] = "Retirer une étiquette à l'élément";
$a->strings["Select a tag to remove: "] = "Étiquette à retirer&nbsp;:";
$a->strings["Thing updated"] = "Elément mis à jour";
$a->strings["Object store: failed"] = "Stockage de l'objet&nbsp;: échec";
$a->strings["Thing added"] = "Elément ajouté";
$a->strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
$a->strings["Show Thing"] = "Montrer élément";
$a->strings["item not found."] = "élément introuvable.";
$a->strings["Edit Thing"] = "Modifier élément";
$a->strings["Select a profile"] = "Choisissez un profil";
$a->strings["Post an activity"] = "Publier une activité";
$a->strings["Only sends to viewers of the applicable profile"] = "Envoie exclusivement aux visiteurs du profil concerné";
$a->strings["Name of thing e.g. something"] = "Nom de l'élément, p.ex. quelque-chose";
$a->strings["URL of thing (optional)"] = "URL de l'élément (facultatif)";
$a->strings["URL for photo of thing (optional)"] = "URL d'une photo de l'élément (facultatif)";
$a->strings["Add Thing to your Profile"] = "Ajouter l'élément à  votre profil";
$a->strings["Export Channel"] = "Exporter le canal";
$a->strings["Export your basic channel information to a file.  This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportez les principales informations de votre canal dans un fichier. Celui-ci pourra servir de sauvegarde de vos contacts, permissions, profils et données de base. Il pourra être importé sur un nouveau hub/serveur, mais n'embarquera pas vos contenus.";
$a->strings["Export Content"] = "Exporter le contenu";
$a->strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large.  Please be patient - it may take several minutes for this download to begin."] = "Exportez les informations du canal et les contenus récents dans un fichier JSON. Celui-ci contiendra toutes vos relations, permissions, profils, et plusieurs mois de publications. Ce fichier peut être TRÈS gros. Armez-vous de patience - plusieurs minutes peuvent s'écouler avant que le téléchargement ne commence.";
$a->strings["Export your posts from a given year."] = "Exporter vos publications d'une année en particulier";
$a->strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Vous pouvez également exporter vos publications et conversations pour une année ou un mois particulier. Ajustez la date dans la barre de votre navigateur pour sélectionner d'autres dates. Si l'export échoue (possible en cas de pénurie de mémoire sur le serveur de votre hub), essayez à nouveau en sélectionnant un intervalle de dates plus petit.";
$a->strings["To select all posts for a given year, such as this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Pour sélectionner toutes les publications pour une année donnée, telle que cette année, visitez <a href=\"%1\$s\">%2\$s</a>";
$a->strings["To select all posts for a given month, such as January of this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "Pour sélectionner toutes les publications pour un mois donné, par exemple janvier, visitez <a href=\"%1\$s\">%2\$s</a>";
$a->strings["These content files may be imported or restored by visiting <a href=\"%1\$s\">%2\$s</a> on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Ces fichiers de contenu peuvent être importés ou restaurés en visitant <a href=\"%1\$s\">%2\$s</a> sur n'importe quel site hébergeant votre canal. Pour de meilleurs résultats merci de les importer par ordre chronologique (les plus anciens d'abord).";
$a->strings["No connections."] = "Aucun contact.";
$a->strings["Visit %s's profile [%s]"] = "Visiter le profil de %s [%s]";
$a->strings["View Connections"] = "Voir les contacts";
$a->strings["Source of Item"] = "Source de l'élément";
$a->strings["Page Title"] = "Titre de la page";
$a->strings["Xchan Lookup"] = "Recherche xchan";
$a->strings["Lookup xchan beginning with (or webbie): "] = "Recherche xchan commençant par (ou adresse \"webbie\")&nbsp;:";
$a->strings["Cover Photos"] = "Photos de couverture";
$a->strings["Upload Cover Photo"] = "Téléverser une photo de couverture";
$a->strings["Focus (Hubzilla default)"] = "Focus (par défaut pour Hubzilla)";
$a->strings["Theme settings"] = "Paramètres du thème";
$a->strings["Select scheme"] = "Définir la palette de couleurs";
$a->strings["Narrow navbar"] = "Barre de navigation fine";
$a->strings["Navigation bar background color"] = "Couleur de fond de la barre de navigation";
$a->strings["Navigation bar gradient top color"] = "Dégradé de la barre de navigation - couleur du haut";
$a->strings["Navigation bar gradient bottom color"] = "Dégradé de la barre de navigation - couleur du bas";
$a->strings["Navigation active button gradient top color"] = "Dégradé du bouton de navigation actif - couleur du haut";
$a->strings["Navigation active button gradient bottom color"] = "Dégradé du bouton de navigation actif - couleur du bas";
$a->strings["Navigation bar border color "] = "Couleur de la bordure de la barre de navigation";
$a->strings["Navigation bar icon color "] = "Couleur des icônes de la barre de navigation";
$a->strings["Navigation bar active icon color "] = "Couleur de l'icône active de la barre de navigation";
$a->strings["link color"] = "couleur des liens";
$a->strings["Set font-color for banner"] = "Définir la couleur du texte de la bannière";
$a->strings["Set the background color"] = "Définir la couleur d'arrière-plan";
$a->strings["Set the background image"] = "Définir l'image d'arrière-plan";
$a->strings["Set the background color of items"] = "Définir la couleur de fond des contributions";
$a->strings["Set the background color of comments"] = "Couleur de fond des commentaires";
$a->strings["Set the border color of comments"] = "Couleur de la bordure des commentaires";
$a->strings["Set the indent for comments"] = "Indentation des commentaires";
$a->strings["Set the basic color for item icons"] = "Définir la couleur de base pour les icônes des éléments";
$a->strings["Set the hover color for item icons"] = "Définir la couleur de survol des icônes des éléments";
$a->strings["Set font-size for the entire application"] = "Définir la taille de police pour l'application entière";
$a->strings["Example: 14px"] = "Exemple : 14px";
$a->strings["Set font-size for posts and comments"] = "Définir la taille de police pour les contributions et commentaires";
$a->strings["Set font-color for posts and comments"] = "Définir la couleur de police pour les contributions et commentaires";
$a->strings["Set radius of corners"] = "Définir le rayon des arrondis";
$a->strings["Set shadow depth of photos"] = "Définir la profondeur de l'ombre des photos";
$a->strings["Set maximum width of content region in pixel"] = "Définir la largeur maximale de la zone des contenus";
$a->strings["Leave empty for default width"] = "Laissez vide pour avoir la largeur par défaut";
$a->strings["Left align page content"] = "Aligner à gauche le contenu de la page";
$a->strings["Set minimum opacity of nav bar - to hide it"] = "Définir l'opacité minimum du bandeau de navigation - pour le cacher";
$a->strings["Set size of conversation author photo"] = "Définir la taille de la photo de l'auteur d'une conversation";
$a->strings["Set size of followup author photos"] = "Définir la taille de la photo de l'auteur d'une réponse";
$a->strings["Update %s failed. See error logs."] = "La mise-à-jour %s a échoué. Merci de consulter les journaux d'erreur.";
$a->strings["Update Error at %s"] = "Erreur de mise à jour sur %s";
$a->strings["Create an account to access services and applications within the Hubzilla"] = "Créez un compte pour pouvoir accéder aux services et applications de Hubzilla";
$a->strings["Password"] = "Mot de passe";
$a->strings["Remember me"] = "Se souvenir de moi";
$a->strings["Forgot your password?"] = "Mot de passe oublié&nbsp;?";
$a->strings["toggle mobile"] = "(dés)activer mobile";
$a->strings["Website SSL certificate is not valid. Please correct."] = "Le certificat SSL n'est pas valide. Corrigez le.";
$a->strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] Erreur SSL pour %s";
$a->strings["Cron/Scheduled tasks not running."] = "Les taches planifiées ne tournent pas.";
$a->strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Les tâches planifiées ne tournent pas sur %s";