-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathZeGrapher_fr.ts
2492 lines (2489 loc) · 128 KB
/
ZeGrapher_fr.ts
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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="fr_FR">
<context>
<name>About</name>
<message>
<location filename="Windows/about.ui" line="14"/>
<source>About...</source>
<translation>À Propos...</translation>
</message>
<message>
<location filename="Windows/about.ui" line="81"/>
<source><html><head/><body><p><span style=" font-family:'Sans'; font-size:14pt; font-weight:600;">ZeGrapher<br/></span>       by Adel Kara Slimane</p></body></html></source>
<translation><html><head/><body><p><span style=" font-family:'Sans'; font-size:14pt; font-weight:600;">ZeGrapher<br/></span> par Adel Kara Slimane</p></body></html></translation>
</message>
<message>
<location filename="Windows/about.ui" line="117"/>
<source><html><head/><body><p><span style=" font-family:'Sans'; font-size:12pt;">ZeGrapher is a free software, distributed under the GNU GPLv3 license. Its source code is available for download in its </span><a href="http://zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">official website</span></a><span style=" font-family:'Sans'; font-size:12pt;"> or </span><a href="https://github.com/AdelKS/ZeGrapher"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">Github</span></a><span style=" font-family:'Sans'; font-size:12pt;"> (for the latest one)</span></p><p><span style=" font-family:'Sans'; font-size:12pt;">Official website: </span><a href="https://zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">zegrapher.com</span></a></p><p><span style=" font-family:'Sans'; font-size:12pt;">Did you encouter a bug ? You have ideas to make ZeGrapher better ? Something else ? Feel free to reach me at </span><a href="mailto:contact@zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">contact@zegrapher.com</span></a></p></body></html></source>
<oldsource><html><head/><body><p><span style=" font-family:'Sans'; font-size:12pt;">ZeGrapher is a free software, distributed under the GNU GPLv3 license. Its source code is available for download in its </span><a href="http://zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">official website</span></a><span style=" font-family:'Sans'; font-size:12pt;"> or </span><a href="https://github.com/AdelKS/ZeGrapher"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">Github</span></a><span style=" font-family:'Sans'; font-size:12pt;"> (for the latest one)</span></p><p><span style=" font-family:'Sans'; font-size:12pt;">Official website: </span><a href="http://zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">zegrapher.com</span></a></p><p><span style=" font-family:'Sans'; font-size:12pt;">Did you encouter a bug ? You have ideas to make ZeGrapher better ? Something else ? Feel free to reach me at </span><a href="mailto:contact@zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">contact@zegrapher.com</span></a></p></body></html></oldsource>
<translation><html><head/><body><p><span style=" font-family:'Sans'; font-size:12pt;">ZeGrapher est un logiciel libre et gratuit, distributé sous la licence GNU GPLv3. Son code source est disponible en libre accès sur son </span><a href="http://zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">site officiel</span></a><span style=" font-family:'Sans'; font-size:12pt;"> ou bien sur </span><a href="https://github.com/AdelKS/ZeGrapher"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">Github</span></a><span style=" font-family:'Sans'; font-size:12pt;"> (pour le dernier en date)</span></p><p><span style=" font-family:'Sans'; font-size:12pt;">Site officiel: </span><a href="http://zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">zegrapher.com</span></a></p><p><span style=" font-family:'Sans'; font-size:12pt;">Vous avez trouvé un bug ? Vous avez des idées pour améliorer ZeGrapher ? Autre chose ? Un mail en parlant à <a href="mailto:contact@zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">contact@zegrapher.com</span></a> est le bienvenue!</span></p></body></html></translation>
</message>
<message>
<source><html><head/><body><p><span style=" font-family:'Sans'; font-size:14pt; font-weight:600;">ZeGrapher 3.0<br/></span>       by Adel Kara Slimane<br/></p><p><span style=" font-family:'Sans'; font-size:12pt;">ZeGrapher is a free software, distributed under the GNU GPLv3 license. Its source code is available for download in its </span><a href="http://zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">official website</span></a><span style=" font-family:'Sans'; font-size:12pt;"> or </span><a href="https://github.com/AdelKS/ZeGrapher"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">Github</span></a><span style=" font-family:'Sans'; font-size:12pt;"> (for the latest one)</span></p><p><span style=" font-family:'Sans'; font-size:12pt;">Official website: </span><a href="http://zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">zegrapher.com</span></a></p><p><span style=" font-family:'Sans'; font-size:12pt;">Did you encouter a bug ? a crash ? You have ideas to make ZeGrapher better ? Something else ? Feel free to reach me at </span><a href="mailto:contact@zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">contact@zegrapher.com</span></a></p></body></html></source>
<oldsource><html><head/><body><p><span style=" font-family:'Sans'; font-size:14pt; font-weight:600;">ZeGrapher 3.0<br/></span>by Adel Kara Slimane<br/></p><p><span style=" font-family:'Sans'; font-size:12pt;">ZeGrapher is a free software, distributed under the GNU GPLv3 license. Its source code is available for download in its </span><a href="http://zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">official website</span></a><span style=" font-family:'Sans'; font-size:12pt;"> or </span><a href="https://github.com/AdelKS/ZeGrapher"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">Github</span></a><span style=" font-family:'Sans'; font-size:12pt;"> (for the latest one)</span></p><p><span style=" font-family:'Sans'; font-size:12pt;">Official website: </span><a href="http://zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">zegrapher.com</span></a></p><p><span style=" font-family:'Sans'; font-size:12pt;">Did you encouter a bug ? a crash ? You have ideas to make ZeGrapher better ? Something else ? Feel free to reach me at</span></p><p><a href="mailto:contact@zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">contact@zegrapher.com</span></a></p></body></html></oldsource>
<translation type="vanished"><html><head/><body><p><span style=" font-family:'Sans'; font-size:14pt; font-weight:600;">ZeGrapher 3.0<br/></span> &nbsp; &nbsp; &nbsp; &nbsp;par Adel Kara Slimane<br/></p><p><span style=" font-family:'Sans'; font-size:12pt;">ZeGrapher est un logiciel libre et gratuit, distributé sous la licence GNU GPLv3. Son code source est disponible en libre accès sur son </span><a href="http://zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">site officiel</span></a><span style=" font-family:'Sans'; font-size:12pt;"> ou bien sur </span><a href="https://github.com/AdelKS/ZeGrapher"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">Github</span></a><span style=" font-family:'Sans'; font-size:12pt;"> (pour le dernier en date)</span></p><p><span style=" font-family:'Sans'; font-size:12pt;">Site officiel: </span><a href="http://zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">zegrapher.com</span></a></p><p><span style=" font-family:'Sans'; font-size:12pt;">Vous avez trouvé un bug ? Vous avez des idées pour améliorer ZeGrapher ? Autre chose ? Un mail en parlant à <a href="mailto:contact@zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">contact@zegrapher.com</span></a> est le bienvenue!</span></p></body></html></translation>
</message>
<message>
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:14pt; font-weight:600;">ZeGrapher 3.0</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">by Adel Kara Slimane</p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Based on Qt 5</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:12pt;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">ZeGrapher is a free software, distributed under the GNU GPLv3 license. Its source code is available for download in its </span><a href="http://zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">official website</span></a><span style=" font-family:'Sans'; font-size:12pt;"> or </span><a href="https://github.com/AdelKS/ZeGrapher"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">Github</span></a><span style=" font-family:'Sans'; font-size:12pt;"> (for the latest one)</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Official website: </span><a href="http://zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">zegrapher.com</span></a></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:12pt; text-decoration: underline; color:#0000ff;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Did you encouter a bug ? a crash ? You have ideas to make ZeGrapher better ? Something else ? Feel free to reach me at</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><a href="mailto:contact@zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">contact@zegrapher.com</span></a></p></body></html></source>
<translation type="vanished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:14pt; font-weight:600;">ZeGrapher 3.0</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">par Adel Kara Slimane</p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Basé sur Qt 5</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'Sans'; font-size:12pt;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">ZeGrapher est un logiciel libre et gratuit, distribué sous la license GNU GPLv3. Son codre source peut être téléchargé sur </span><a href="http://zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">zegrapher.com</span></a><span style=" font-family:'Sans'; font-size:12pt;"> ou </span><a href="https://github.com/AdelKS/ZeGrapher"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">Github</span></a><span style=" font-family:'Sans'; font-size:12pt;"> (pour obtenir le plus récent)</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Vous avez rencontré un bug ? Vous avez des suggestions pour améliorer ZeGrapher ? Quelque chose d'autre ? N'hésitez pas à me contacter sur <a href="mailto:contact@zegrapher.com"><span style=" font-family:'Sans Serif'; font-size:12pt; text-decoration: underline; color:#007af4;">contact@zegrapher.com</span></a></p></body></html></translation>
</message>
<message>
<source><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:14pt; font-weight:600;">ZeGrapher 3.0</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">based on Qt 5.5.1</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">license: GPL version 3</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Official website: </span><a href="http://zegrapher.com"><span style=" font-family:'Sans'; font-size:12pt; text-decoration: underline; color:#0000ff;">zegrapher.com</span></a></p></body></html></source>
<translation type="vanished"><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html><head><meta name="qrichtext" content="1" /><style type="text/css">
p, li { white-space: pre-wrap; }
</style></head><body style=" font-family:'Cantarell'; font-size:11pt; font-weight:400; font-style:normal;">
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:14pt; font-weight:600;">ZeGrapher 3.0</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">basé sur Qt 5.5.1</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Projet opensource distribué sous la licence GPL version 3</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:'MS Shell Dlg 2'; font-size:8pt;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans'; font-size:12pt;">Site officiel : </span><a href="http://zegrapher.com"><span style=" font-family:'Sans'; font-size:12pt; text-decoration: underline; color:#0000ff;">zegrapher.com</span></a></p></body></html></translation>
</message>
<message>
<location filename="Windows/about.ui" line="182"/>
<source>Close</source>
<translation>Fermer</translation>
</message>
</context>
<context>
<name>AbstractTable</name>
<message>
<location filename="ValuesTable/abstracttable.cpp" line="33"/>
<source>Back</source>
<translation>Retour</translation>
</message>
<message>
<location filename="ValuesTable/abstracttable.cpp" line="34"/>
<source>Export</source>
<translation>Exporter</translation>
</message>
<message>
<location filename="ValuesTable/abstracttable.cpp" line="87"/>
<source>Precision:</source>
<translation>Precision :</translation>
</message>
<message>
<location filename="ValuesTable/abstracttable.cpp" line="89"/>
<source> digits</source>
<translation>chiffres</translation>
</message>
</context>
<context>
<name>CSVconfig</name>
<message>
<location filename="DataPlot/csvconfig.ui" line="24"/>
<source><html><head/><body><p>ZeGrapher only supports the <a href="http://fr.wikipedia.org/wiki/Comma-separated_values"><span style=" text-decoration: underline; color:#0000ff;">CSV</span></a> fromat for importing and exporting data.<br/><span style=" font-size:10pt; font-style:italic;">This format is supported by Excel and Calc (LibreOffice).</span></p></body></html></source>
<oldsource><html><head/><body><p>ZeGrapher only supports the <a href="http://fr.wikipedia.org/wiki/Comma-separated_values"><span style=" text-decoration: underline; color:#0000ff;">CSV</span></a>fromat for importing and exporting data.</p></body></html></oldsource>
<translation><html><head/><body><p>ZeGrapher ne supporte l'import/export de données qu'au format <a href="http://fr.wikipedia.org/wiki/Comma-separated_values"><span style=" text-decoration: underline; color:#0000ff;">CSV</span></a><br/><span style=" font-size:10pt; font-style:italic;">Ce format est supporté par Excel et Calc (LibreOffice).</span></p></body></html></translation>
</message>
<message>
<location filename="DataPlot/csvconfig.ui" line="36"/>
<source>Separator : </source>
<oldsource>Séparateur : </oldsource>
<translation>Séparateur : </translation>
</message>
<message>
<location filename="DataPlot/csvconfig.ui" line="43"/>
<source>File : </source>
<oldsource>Fichier : </oldsource>
<translation>Fichier : </translation>
</message>
<message>
<location filename="DataPlot/csvconfig.ui" line="77"/>
<source>...</source>
<translation>...</translation>
</message>
<message>
<location filename="DataPlot/csvconfig.ui" line="88"/>
<source>Tab</source>
<translation>Tab</translation>
</message>
<message>
<location filename="DataPlot/csvconfig.ui" line="95"/>
<source>Custom:</source>
<translation>Personnalisé:</translation>
</message>
<message>
<location filename="DataPlot/csvconfig.ui" line="137"/>
<source>Cancel</source>
<translation>Annuler</translation>
</message>
</context>
<context>
<name>CSVhandler</name>
<message>
<location filename="DataPlot/csvhandler.cpp" line="30"/>
<source>Data (*.csv)</source>
<translation>Données (*.csv)</translation>
</message>
<message>
<location filename="DataPlot/csvhandler.cpp" line="54"/>
<source>Open data from file</source>
<translation>Ouvrir données</translation>
</message>
<message>
<location filename="DataPlot/csvhandler.cpp" line="55"/>
<source>Open</source>
<translation>Ouvrir</translation>
</message>
<message>
<location filename="DataPlot/csvhandler.cpp" line="68"/>
<source>Save data</source>
<translation>Enregistrer données</translation>
</message>
<message>
<location filename="DataPlot/csvhandler.cpp" line="69"/>
<source>Save</source>
<translation>Enregistrer</translation>
</message>
<message>
<location filename="DataPlot/csvhandler.cpp" line="128"/>
<location filename="DataPlot/csvhandler.cpp" line="134"/>
<source>Error</source>
<translation>Erreur</translation>
</message>
<message>
<location filename="DataPlot/csvhandler.cpp" line="128"/>
<source>Target file was not specified.</source>
<translation>Fichier cible non spécifié.</translation>
</message>
<message>
<location filename="DataPlot/csvhandler.cpp" line="134"/>
<source>Separator was not specified.</source>
<translation>Séparateur non spécifié.</translation>
</message>
</context>
<context>
<name>ColumnActionsWidget</name>
<message>
<location filename="DataPlot/columnactionswidget.cpp" line="96"/>
<source>Confirm column deletion?</source>
<translation>Etes vous sûr de vouloir supprimer cette colonne ?</translation>
</message>
<message>
<location filename="DataPlot/columnactionswidget.cpp" line="102"/>
<source>Insert column</source>
<translation>Insérer colonne</translation>
</message>
</context>
<context>
<name>ConfirmDelete</name>
<message>
<location filename="DataPlot/confirmdelete.ui" line="14"/>
<source>Confirmation</source>
<translation>Confirmation</translation>
</message>
<message>
<location filename="DataPlot/confirmdelete.ui" line="48"/>
<source>No</source>
<translation>Non</translation>
</message>
<message>
<location filename="DataPlot/confirmdelete.ui" line="87"/>
<source>Yes</source>
<translation>Oui</translation>
</message>
</context>
<context>
<name>DataTable</name>
<message>
<location filename="DataPlot/datatable.cpp" line="78"/>
<location filename="DataPlot/datatable.cpp" line="176"/>
<location filename="DataPlot/datatable.cpp" line="530"/>
<source>Rename me!</source>
<translation>Renommez moi!</translation>
</message>
<message>
<location filename="DataPlot/datatable.cpp" line="587"/>
<source>New name for column</source>
<translation>Nouveau nom de colonne</translation>
</message>
<message>
<location filename="DataPlot/datatable.cpp" line="587"/>
<source>Please enter a name for this column:</source>
<translation>Veuillez entrer un nom pour cette colonne :</translation>
</message>
<message>
<location filename="DataPlot/datatable.cpp" line="593"/>
<source>Error</source>
<translation>Erreur</translation>
</message>
<message>
<location filename="DataPlot/datatable.cpp" line="593"/>
<source>Column names can only have letters and "_"</source>
<translation>Les noms ne peuvent contenir que des lettres et "_"</translation>
</message>
</context>
<context>
<name>DataWidget</name>
<message>
<location filename="Widgets/datawidget.ui" line="100"/>
<source>Table</source>
<oldsource>Tableau</oldsource>
<translation>Tableau</translation>
</message>
<message>
<location filename="Widgets/datawidget.ui" line="200"/>
<source>Points</source>
<translation>Points</translation>
</message>
<message>
<location filename="Widgets/datawidget.ui" line="234"/>
<source>Segments</source>
<translation>Segments</translation>
</message>
<message>
<location filename="Widgets/datawidget.ui" line="20"/>
<location filename="Widgets/datawidget.cpp" line="158"/>
<source>Data</source>
<translation>Données</translation>
</message>
</context>
<context>
<name>DataWindow</name>
<message>
<location filename="DataPlot/datawindow.ui" line="14"/>
<source>Data fill window</source>
<translation>Saisie de données</translation>
</message>
<message>
<location filename="DataPlot/datawindow.ui" line="116"/>
<source>Data:</source>
<translation>Données:</translation>
</message>
<message>
<location filename="DataPlot/datawindow.ui" line="123"/>
<source>Import</source>
<oldsource>Importer</oldsource>
<translation>Importer</translation>
</message>
<message>
<location filename="DataPlot/datawindow.ui" line="130"/>
<source>Export</source>
<oldsource>Exporter</oldsource>
<translation>Exporter</translation>
</message>
<message>
<location filename="DataPlot/datawindow.ui" line="177"/>
<location filename="DataPlot/datawindow.cpp" line="415"/>
<source>Column actions:</source>
<oldsource>Actions sur la colonne :</oldsource>
<translation>Actions sur la colonne :</translation>
</message>
<message>
<location filename="DataPlot/datawindow.ui" line="229"/>
<source>Regressions:</source>
<translation>Modélisations :</translation>
</message>
<message>
<location filename="DataPlot/datawindow.ui" line="605"/>
<source>Add</source>
<translation>Ajouter</translation>
</message>
<message>
<location filename="DataPlot/datawindow.ui" line="333"/>
<source>Coordinates :</source>
<oldsource>Coordonnées :</oldsource>
<translation>Coordonnées :</translation>
</message>
<message>
<location filename="DataPlot/datawindow.ui" line="352"/>
<source>Cartesian</source>
<oldsource>Cartésiennes</oldsource>
<translation>Cartésiennes</translation>
</message>
<message>
<location filename="DataPlot/datawindow.ui" line="380"/>
<source>Polar</source>
<oldsource>Polaires</oldsource>
<translation>Polaires</translation>
</message>
<message>
<location filename="DataPlot/datawindow.cpp" line="81"/>
<location filename="DataPlot/datawindow.cpp" line="306"/>
<source>Data fill window: data</source>
<translation>Saisie de données: Donnée</translation>
</message>
<message>
<location filename="DataPlot/datawindow.cpp" line="408"/>
<source>Between-two-lines actions:</source>
<translation>Actions entre deux lignes :</translation>
</message>
<message>
<location filename="DataPlot/datawindow.cpp" line="409"/>
<source>Line actions:</source>
<translation>Actions sur la ligne :</translation>
</message>
<message>
<location filename="DataPlot/datawindow.cpp" line="414"/>
<source>Between-two-columns actions:</source>
<translation>Actions entre deux colonnes :</translation>
</message>
<message>
<source>Help: data fill window.</source>
<translation type="vanished">Aide: Saisie de données.</translation>
</message>
<message>
<source>Between two lines:</source>
<translation type="vanished">Actions entre deux lignes :</translation>
</message>
<message>
<source>Actions on line:</source>
<translation type="vanished">Actions sur la ligne :</translation>
</message>
<message>
<source>Between two columns:</source>
<translation type="vanished">Actions entre deux colonnes :</translation>
</message>
</context>
<context>
<name>FillOptions</name>
<message>
<location filename="DataPlot/filloptions.ui" line="20"/>
<source>Representaion range</source>
<translation>Bornes de représentation</translation>
</message>
<message>
<location filename="DataPlot/filloptions.ui" line="58"/>
<source>From expression:</source>
<oldsource>à partir d'une expression :</oldsource>
<translation>à partir d'une expression :</translation>
</message>
<message>
<location filename="DataPlot/filloptions.ui" line="98"/>
<source>x' =</source>
<translation>x' =</translation>
</message>
<message>
<location filename="DataPlot/filloptions.ui" line="133"/>
<source>Auto-fill:</source>
<translation>Prédéfini :</translation>
</message>
<message>
<location filename="DataPlot/filloptions.ui" line="167"/>
<source>Start:</source>
<translation>Début:</translation>
</message>
<message>
<location filename="DataPlot/filloptions.ui" line="211"/>
<source>End:</source>
<translation> Fin:</translation>
</message>
<message>
<location filename="DataPlot/filloptions.ui" line="255"/>
<source>Step:</source>
<translation> Pas:</translation>
</message>
<message>
<location filename="DataPlot/filloptions.ui" line="309"/>
<source>back</source>
<translation>Précédent</translation>
</message>
<message>
<location filename="DataPlot/filloptions.ui" line="335"/>
<source>Apply</source>
<translation>Appliquer</translation>
</message>
</context>
<context>
<name>FuncCalculator</name>
<message>
<source>Error</source>
<translation type="vanished">Erreur</translation>
</message>
<message>
<source>The function </source>
<translation type="vanished">La fonction </translation>
</message>
<message>
<source> calls an invalid other function, or creates an infinite calling loop.</source>
<translation type="vanished"> appelle une autre fonction invalide, ou qui forme une boucle d'appel infine.</translation>
</message>
<message>
<location filename="Calculus/funccalculator.cpp" line="210"/>
<source>This function calls itself in its expression.</source>
<oldsource>Cette fonction s'appelle elle même dans son expression.</oldsource>
<translation>Cette fonction s'appelle elle même dans son expression.</translation>
</message>
<message>
<location filename="Calculus/funccalculator.cpp" line="224"/>
<source>This function calls another function that is either undefined or makes an inifite calling loop.</source>
<translation>Cette fonction appelle une autre fonction qui est invalide, non définie ou avec laquelle elle forme une boucle infinie d'appels.</translation>
</message>
<message>
<source>This function calls another function that is whether undefined or makes an inifite calling loop.</source>
<translation type="vanished">Cette fonction appelle une autre fonction qui est invalide, non définie ou forme une boucle infinie d'appels.</translation>
</message>
</context>
<context>
<name>FuncTable</name>
<message>
<location filename="ValuesTable/functable.cpp" line="56"/>
<source>Function: </source>
<translation>Fonction : </translation>
</message>
<message>
<location filename="ValuesTable/functable.cpp" line="178"/>
<source>Error</source>
<translation>Erreur</translation>
</message>
<message>
<location filename="ValuesTable/functable.cpp" line="178"/>
<source>Syntax error in this entry</source>
<translation>Erreur de syntaxe dans cette entrée</translation>
</message>
</context>
<context>
<name>ImageSave</name>
<message>
<location filename="Export/imagesave.ui" line="14"/>
<location filename="Export/imagesave.ui" line="444"/>
<source>Save</source>
<translation>Enregistrer</translation>
</message>
<message>
<location filename="Export/imagesave.ui" line="33"/>
<source>Image size</source>
<translation>Taille de l'image</translation>
</message>
<message>
<location filename="Export/imagesave.ui" line="54"/>
<source>Graph size</source>
<translation>Celle du graphique</translation>
</message>
<message>
<location filename="Export/imagesave.ui" line="64"/>
<source>Custom size:</source>
<translation>Nouvelle taille :</translation>
</message>
<message>
<location filename="Export/imagesave.ui" line="85"/>
<source>Width:</source>
<translation>Largeur :</translation>
</message>
<message>
<location filename="Export/imagesave.ui" line="129"/>
<source> px</source>
<translation>px</translation>
</message>
<message>
<location filename="Export/imagesave.ui" line="145"/>
<source>Height:</source>
<translation>Hauteur :</translation>
</message>
<message>
<location filename="Export/imagesave.ui" line="191"/>
<source>Precision:</source>
<oldsource>Precision :</oldsource>
<translation>Précision :</translation>
</message>
<message>
<location filename="Export/imagesave.ui" line="204"/>
<source> digits</source>
<translation> chiffres</translation>
</message>
<message>
<location filename="Export/imagesave.ui" line="238"/>
<source>Legend</source>
<translation>Légendes</translation>
</message>
<message>
<location filename="Export/imagesave.ui" line="256"/>
<source>X axis:</source>
<translation>Abscisses :</translation>
</message>
<message>
<location filename="Export/imagesave.ui" line="273"/>
<source>Y axis:</source>
<oldsource>Y axis :</oldsource>
<translation>Ordonnées :</translation>
</message>
<message>
<location filename="Export/imagesave.ui" line="385"/>
<source>Font size:</source>
<translation>Taille de police :</translation>
</message>
<message>
<location filename="Export/imagesave.cpp" line="64"/>
<source>Save picture</source>
<translation>Enregistrer une image</translation>
</message>
</context>
<context>
<name>IntegrationWidget</name>
<message>
<location filename="Widgets/integrationwidget.cpp" line="28"/>
<source>Initial conditions:</source>
<translation>Conditions initiales :</translation>
</message>
</context>
<context>
<name>Keyboard</name>
<message>
<location filename="Widgets/keyboard.ui" line="20"/>
<source>Virtual keyboard</source>
<translation>Clavier</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="404"/>
<source>functions variables</source>
<translation>variables de fonctions</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="461"/>
<source>sequences variable</source>
<translation>variables de suite</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="486"/>
<source>paramètre</source>
<translation>paramètre</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="534"/>
<source>error function.</source>
<translation>fonction d'erreur.</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="553"/>
<source>complementary error function.</source>
<translation>fonction d'erreur complémentaire.</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="572"/>
<source>round to the nearest greater integer</source>
<translation>arrondie à l'entier inférieur</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="594"/>
<source>square root</source>
<translation>racine carrée</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="717"/>
<source>Antiderivative</source>
<translation>Primitive</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="852"/>
<source>Function</source>
<translation>Fonction</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="880"/>
<source>Derivative</source>
<translation>Dérivée</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="946"/>
<source>round to the nearest lower integer</source>
<translation>rounds to upper integer</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="987"/>
<source>absolute value</source>
<translation>valeur abosolue</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="1015"/>
<source>eulerian gamma function.</source>
<translation>fonction gamma d'Euler.</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="1031"/>
<source>reciprocal hyperbolic cosinus.</source>
<translation>cosinus hyperbolique réciproque.</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="1050"/>
<source>reciprocal hyperbolic sinus.</source>
<translation>sinus hyperbolique réciproque.</translation>
</message>
<message>
<location filename="Widgets/keyboard.ui" line="1072"/>
<source>tangente hyperbolique réciproque.</source>
<translation>tangente hyperbolique réciproque.</translation>
</message>
</context>
<context>
<name>MainWindow</name>
<message>
<location filename="Windows/mainwindow.cpp" line="65"/>
<source>File</source>
<translation>Fichier</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="66"/>
<source>Tools</source>
<translation>Outils</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="67"/>
<source>Windows</source>
<translation>Fenêtres</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="70"/>
<source>Show/Hide the grid</source>
<translation>Afficher/Cacher le quadrillage</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="73"/>
<source>Toggle orthonormal view</source>
<translation>Vue orthonormale</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="87"/>
<source>Check for updates</source>
<translation>Mise à jour ?</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="95"/>
<source>Image export...</source>
<translation>Exporter en tant qu'image...</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="100"/>
<source>Settings</source>
<translation>Réglages</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="107"/>
<source>Exit</source>
<translation>Quitter</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="116"/>
<source>Range edit</source>
<translation>Règlages de la fenêtre</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="146"/>
<source>Edit the displayed range: Xmin, Xmax...</source>
<translation>Modifier la fenêtre de représentation: Xmin, Xmax...</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="147"/>
<source>Enter functions, sequences, parametric equations, data...</source>
<translation>Fenêtre où l'on saisi les objets mathématiques à représenter: fonctions, suites, équations paramétriques, données...</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="148"/>
<source>Exit ZeGrapher.</source>
<translation>Quitter ZeGrapher.</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="149"/>
<source>Edit axes' color, background color, curve's quality...</source>
<translation>Fenêtre des options: couleurs des axes, couleurs du fond, qualité des courbes...</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="150"/>
<source>Display the values taken by functions, sequences and parametric equations on tables.</source>
<translation>Fenêtre où l'on peut afficher les tableaux de valeurs des objets mathématiques saisis: fonctions, suites, équations paramétriques.</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="153"/>
<source>Export the graph as an image.</source>
<translation>Fenêtre d'export du graphique en tant qu'image.</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="154"/>
<source>Virtual keyboard.</source>
<translation>Clavier virtuel.</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="155"/>
<source>Print, or export in PDF.</source>
<translation>Fenêtre des options avant impression. Avec la possiblité d'exporter en PDF ou en PostScript.</translation>
</message>
<message>
<source>Orthonormal basis</source>
<translation type="vanished">Base orthonormale</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="78"/>
<location filename="Windows/mainwindow.cpp" line="151"/>
<source>Reset to default view</source>
<translation>Rétablir vue par défaut</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="81"/>
<source>About...</source>
<translation>À Propos...</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="84"/>
<source>About Qt</source>
<translation>À propos de Qt</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="90"/>
<source>Print...</source>
<translation>Imprimer...</translation>
</message>
<message>
<source>Save image...</source>
<translation type="vanished">Enregistrer image...</translation>
</message>
<message>
<source>Options</source>
<translation type="vanished">Outils</translation>
</message>
<message>
<source>Quit</source>
<translation type="vanished">Quitter</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="111"/>
<source>Functions</source>
<translation>Fonctions</translation>
</message>
<message>
<source>Boundaries</source>
<translation type="vanished">Bornes</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="121"/>
<source>Values table</source>
<translation>Tableau de valeurs</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="126"/>
<source>numeric keyboard</source>
<translation>Clavier numérique</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="131"/>
<source>Windows and actions</source>
<translation>Fenêtres et actions</translation>
</message>
<message>
<source>Show the window which allows to modify the shown data boundaries: Xmin, Xmax...</source>
<translation type="vanished">Affiche la fenêtre où l'on peut modifier les bornes de représentation: Xmin, Xmax...</translation>
</message>
<message>
<source>Show the window where you can type functions to trace.</source>
<translation type="vanished">Affiche le fenêtre où l'on peut écrire les expressions des fonctions à représenter.</translation>
</message>
<message>
<source>Quit ZeGrapher.</source>
<translation type="vanished">Quitter.</translation>
</message>
<message>
<source>Show settings window.</source>
<translation type="vanished">Affiche la fenêtre où l'on peut modifier les options de représentation.</translation>
</message>
<message>
<source>Show settings window</source>
<translation type="vanished">Affiche la fenêtre où l'on peut modifier les options de représentation</translation>
</message>
<message>
<location filename="Windows/mainwindow.cpp" line="152"/>
<source>Show/Hide grid</source>
<translation>Afficher/Cacher le quadrillage</translation>
</message>
<message>
<source>Save the graph on a picture.</source>
<translation type="vanished">Enregistrer le graphique dans une image.</translation>
</message>
<message>
<source>Show a virtual numerical keyboard.</source>
<translation type="vanished">Affiche un clavier numérique virtuel.</translation>
</message>
<message>
<source>Print or export in PDF.</source>
<translation type="vanished">Imprimer ou exporter le graphique vers fichier PDF.</translation>
</message>
</context>
<context>
<name>MathObjectsInput</name>
<message>
<location filename="Windows/mathobjectsinput.ui" line="32"/>
<source>Functions</source>
<translation>Fonctions</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="82"/>
<source>&Functions</source>
<translation>&Fonctions</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="85"/>
<source>Numerical functions</source>
<translation>Fonctions numériques</translation>
</message>
<message>
<source>Sequences</source>
<translation type="vanished">Suites</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="167"/>
<source>Numerical sequences</source>
<translation>Suites numériques</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="259"/>
<source>n<sub>min</sub> =</source>
<translation>n<sub>min</sub> =</translation>
</message>
<message>
<source>Straight lines</source>
<translation type="vanished">Droites</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="335"/>
<source>Straight lines and tangents</source>
<translation>Droites et tangentes</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="438"/>
<source>Add :</source>
<translation>Ajouter :</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="451"/>
<source>Straight line</source>
<translation>Droite</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="464"/>
<source>Tangent</source>
<translation>Tangente</translation>
</message>
<message>
<source>Parametric</source>
<translation type="vanished">Paramètrique</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="164"/>
<source>&Sequences</source>
<translation>&Suites</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="332"/>
<source>Straight &lines</source>
<translation>&Droites</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="509"/>
<source>&Parametric</source>
<translation>&Paramètrique</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="574"/>
<source>Animation control:</source>
<translation>Contrôle de l'animation :</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="583"/>
<source>Increment period:</source>
<translation>Période d'incrémentation :</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="617"/>
<source>milliseconds per step.</source>
<translation>millisecondes par pas.</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="620"/>
<source>ms/step</source>
<translation>ms/pas</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="629"/>
<source>Refresh rate:</source>
<translation>Fréquence de rafraîchissement :</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="751"/>
<source>&Data</source>
<translation>&Données</translation>
</message>
<message>
<source>Frequency:</source>
<translation type="obsolete">Fréquence :</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="663"/>
<source>Hz</source>
<translation>Hz</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="708"/>
<location filename="Windows/mathobjectsinput.ui" line="824"/>
<source>Add</source>
<translation>Ajouter</translation>
</message>
<message>
<source>Data</source>
<translation type="vanished">Données</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="872"/>
<source>Keyboard</source>
<translation>Clavier</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.ui" line="907"/>
<location filename="Windows/mathobjectsinput.cpp" line="44"/>
<source>Plot</source>
<translation>Tracer</translation>
</message>
<message>
<location filename="Windows/mathobjectsinput.cpp" line="101"/>
<source>Help: data fill window.</source>
<translation>Aide: Fenêtre de saisie de données.</translation>
</message>
</context>
<context>
<name>ModelChoiceWidget</name>
<message>
<location filename="DataPlot/modelchoicewidget.ui" line="26"/>
<source>Regression type</source>
<translation>Type de modèle</translation>
</message>
<message>
<location filename="DataPlot/modelchoicewidget.ui" line="36"/>
<source>Regression type: </source>
<translation>Type de modèle : </translation>
</message>
<message>
<location filename="DataPlot/modelchoicewidget.ui" line="44"/>
<source>Polynomial</source>
<translation>Polynomial</translation>
</message>
<message>
<location filename="DataPlot/modelchoicewidget.ui" line="60"/>
<source>Ok</source>
<translation>Ok</translation>
</message>