-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplotpy.pot
More file actions
2249 lines (1719 loc) · 45.7 KB
/
plotpy.pot
File metadata and controls
2249 lines (1719 loc) · 45.7 KB
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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR ORGANIZATION
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"POT-Creation-Date: 2024-07-23 13:59+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.5\n"
#: plotpy\builder\annotation.py:53 plotpy\items\annotation.py:74
#: plotpy\items\annotation.py:126
msgid "Annotation"
msgstr ""
#: plotpy\builder\curvemarker.py:256 plotpy\builder\curvemarker.py:405
#: plotpy\builder\curvemarker.py:446 plotpy\builder\curvemarker.py:568
#: plotpy\builder\curvemarker.py:628 plotpy\items\curve\base.py:118
#: plotpy\items\curve\base.py:282 plotpy\items\curve\errorbar.py:102
#: plotpy\items\histogram.py:87 plotpy\panels\contrastadjustment.py:73
#: plotpy\panels\csection\csplot.py:65
msgid "Curve"
msgstr ""
#: plotpy\builder\curvemarker.py:448 plotpy\builder\curvemarker.py:570
#: plotpy\items\curve\errorbar.py:65 plotpy\items\curve\errorbar.py:104
msgid "Error bars"
msgstr ""
#: plotpy\builder\curvemarker.py:626 plotpy\items\histogram.py:90
#: plotpy\panels\contrastadjustment.py:163 plotpy\styles\histogram.py:61
msgid "Histogram"
msgstr ""
#: plotpy\builder\curvemarker.py:863 plotpy\items\shape\marker.py:69
#: plotpy\items\shape\marker.py:114
msgid "Marker"
msgstr ""
#: plotpy\builder\image.py:82 plotpy\builder\image.py:221
#: plotpy\builder\image.py:373 plotpy\builder\image.py:472
#: plotpy\builder\image.py:537 plotpy\builder\image.py:597
#: plotpy\builder\image.py:686 plotpy\builder\image.py:762
#: plotpy\items\image\base.py:1110 plotpy\items\image\image_items.py:95
#: plotpy\items\image\image_items.py:540 plotpy\items\image\image_items.py:779
#: plotpy\items\image\masked.py:425 plotpy\items\image\masked.py:591
#: plotpy\items\image\misc.py:217 plotpy\items\image\transform.py:74
#: plotpy\styles\image.py:81 plotpy\styles\image.py:204
msgid "Image"
msgstr ""
#: plotpy\builder\image.py:815 plotpy\styles\image.py:516
msgid "Filter"
msgstr ""
#: plotpy\builder\image.py:887 plotpy\items\image\misc.py:241
msgid "2D Histogram"
msgstr ""
#: plotpy\builder\label.py:84 plotpy\items\annotation.py:173
#: plotpy\items\label.py:83 plotpy\items\label.py:127 plotpy\tools\label.py:13
#: plotpy\tools\label.py:80
msgid "Label"
msgstr ""
#: plotpy\builder\label.py:125
msgid "Legend"
msgstr ""
#: plotpy\builder\label.py:151 plotpy\styles\histogram.py:73
msgid "Computation"
msgstr ""
#: plotpy\builder\plot.py:362 plotpy\items\grid.py:43 plotpy\plot\base.py:422
#: plotpy\plot\base.py:475
msgid "Grid"
msgstr ""
#: plotpy\config.py:27
msgid "#"
msgstr ""
#: plotpy\config.py:59
msgid "pixels"
msgstr ""
#: plotpy\config.py:70
msgid "Intensity"
msgstr ""
#: plotpy\config.py:71
msgid "lsb"
msgstr ""
#: plotpy\constants.py:54
msgid "Grid..."
msgstr ""
#: plotpy\constants.py:55
msgid "Axes style..."
msgstr ""
#: plotpy\constants.py:56 plotpy\panels\itemlist.py:89
msgid "Parameters..."
msgstr ""
#: plotpy\constants.py:120 plotpy\styles\base.py:135
msgid "None"
msgstr ""
#: plotpy\constants.py:121
msgid "Constant"
msgstr ""
#: plotpy\constants.py:122
msgid "Linear"
msgstr ""
#: plotpy\constants.py:123
msgid "Sigmoid"
msgstr ""
#: plotpy\constants.py:124
msgid "Hyperbolic tangent"
msgstr ""
#: plotpy\constants.py:125
msgid "Step"
msgstr ""
#: plotpy\constants.py:131
msgid "Alpha function applied to the Look-Up Table (LUT)<br>to control the transparency of the image:<br>(maximum opacity is given by the <b>Global alpha</b> parameter)<br><br><b>None</b>: No alpha function<br><b>Constant</b>: Constant alpha function<br><b>Linear</b>: Linear alpha function<br><b>Sigmoid</b>: Sigmoid alpha function<br><b>Hyperbolic tangent</b>: Hyperbolic tangent alpha function<br><b>Step</b>: Lowest value of the LUT is 100% transparent, other values are opaque"
msgstr ""
#: plotpy\io.py:155
msgid "All supported files"
msgstr ""
#: plotpy\io.py:489
msgid "PNG files"
msgstr ""
#: plotpy\io.py:496
msgid "TIFF files"
msgstr ""
#: plotpy\io.py:499
msgid "8-bit images"
msgstr ""
#: plotpy\io.py:505
msgid "NumPy arrays"
msgstr ""
#: plotpy\io.py:507
msgid "Text files"
msgstr ""
#: plotpy\io.py:510
msgid "DICOM files"
msgstr ""
#: plotpy\items\annotation.py:513
msgid "Position:"
msgstr ""
#: plotpy\items\annotation.py:572 plotpy\items\annotation.py:631
#: plotpy\items\annotation.py:723 plotpy\items\annotation.py:836
#: plotpy\items\annotation.py:867
msgid "Center:"
msgstr ""
#: plotpy\items\annotation.py:573
msgid "Distance:"
msgstr ""
#: plotpy\items\annotation.py:632 plotpy\items\annotation.py:724
#: plotpy\items\annotation.py:837
msgid "Size:"
msgstr ""
#: plotpy\items\annotation.py:725 plotpy\items\annotation.py:838
msgid "Angle:"
msgstr ""
#: plotpy\items\annotation.py:868
msgid "Diameter:"
msgstr ""
#: plotpy\items\contour.py:39
msgid "Vertices"
msgstr ""
#: plotpy\items\contour.py:39
msgid "Vertices of the line"
msgstr ""
#: plotpy\items\contour.py:40
msgid "Level"
msgstr ""
#: plotpy\items\contour.py:40
msgid "Level of the line"
msgstr ""
#: plotpy\items\contour.py:157
msgid "Contour"
msgstr ""
#: plotpy\items\image\misc.py:98
msgid "Quadrilaterals"
msgstr ""
#: plotpy\items\image\misc.py:635
msgid "There is no supported image item in current plot."
msgstr ""
#: plotpy\items\polygonmap.py:71 plotpy\items\polygonmap.py:203
msgid "PolygonMap"
msgstr ""
#: plotpy\items\shape\axis.py:59 plotpy\items\shape\axis.py:104
#: plotpy\plot\base.py:1870 plotpy\tools\axes.py:95
msgid "Axes"
msgstr ""
#: plotpy\items\shape\polygon.py:60 plotpy\items\shape\polygon.py:122
msgid "Shape"
msgstr ""
#: plotpy\items\shape\range.py:48 plotpy\items\shape\range.py:98
msgid "Range"
msgstr ""
#: plotpy\panels\contrastadjustment.py:421
msgid "Eliminate outliers"
msgstr ""
#: plotpy\panels\contrastadjustment.py:434
msgid "Contrast"
msgstr ""
#: plotpy\panels\contrastadjustment.py:507
msgid "Min."
msgstr ""
#: plotpy\panels\contrastadjustment.py:510
msgid "Select minimum level on image"
msgstr ""
#: plotpy\panels\contrastadjustment.py:517
msgid "Max."
msgstr ""
#: plotpy\panels\contrastadjustment.py:520
msgid "Select maximum level on image"
msgstr ""
#: plotpy\panels\contrastadjustment.py:543
msgid "Full range"
msgstr ""
#: plotpy\panels\contrastadjustment.py:546
msgid "Scale the image's display range according to data range"
msgstr ""
#: plotpy\panels\contrastadjustment.py:550
msgid "Eliminate %"
msgstr ""
#: plotpy\panels\contrastadjustment.py:553
msgid "Eliminate outliers from the image's display range, based on a percentage of the data range"
msgstr ""
#: plotpy\panels\contrastadjustment.py:560
#: plotpy\panels\contrastadjustment.py:593
msgid "Set range"
msgstr ""
#: plotpy\panels\contrastadjustment.py:563
msgid "Set the image's display range manually"
msgstr ""
#: plotpy\panels\contrastadjustment.py:586
msgid "Min. level"
msgstr ""
#: plotpy\panels\contrastadjustment.py:587
msgid "Max. level"
msgstr ""
#: plotpy\panels\csection\csitem.py:386 plotpy\panels\csection\csitem.py:418
#: plotpy\panels\csection\csplot.py:40 plotpy\tools\cross_section.py:29
msgid "Cross section"
msgstr ""
#: plotpy\panels\csection\csitem.py:400 plotpy\panels\csection\csitem.py:432
#: plotpy\tools\cross_section.py:88
msgid "Average cross section"
msgstr ""
#: plotpy\panels\csection\csplot.py:23
msgid "LUT scale"
msgstr ""
#: plotpy\panels\csection\csplot.py:423
msgid "Enable a marker"
msgstr ""
#: plotpy\panels\csection\csplot.py:469 plotpy\panels\csection\csplot.py:470
#: plotpy\tools\cross_section.py:114 plotpy\tools\cross_section.py:139
msgid "Oblique averaged cross section"
msgstr ""
#: plotpy\panels\csection\csplot.py:471
msgid "Activate the oblique cross section tool"
msgstr ""
#: plotpy\panels\csection\csplot.py:488 plotpy\panels\csection\csplot.py:489
#: plotpy\tools\cross_section.py:100 plotpy\tools\cross_section.py:144
msgid "Line cross section"
msgstr ""
#: plotpy\panels\csection\csplot.py:490
msgid "Activate the line cross section tool"
msgstr ""
#: plotpy\panels\csection\cswidget.py:32
msgid "Cross section tool"
msgstr ""
#: plotpy\panels\csection\cswidget.py:136
msgid "Lock scales"
msgstr ""
#: plotpy\panels\csection\cswidget.py:139
msgid "Lock scales to main plot axes"
msgstr ""
#: plotpy\panels\csection\cswidget.py:144
msgid "Auto-scale"
msgstr ""
#: plotpy\panels\csection\cswidget.py:152
msgid "Refresh"
msgstr ""
#: plotpy\panels\csection\cswidget.py:158
msgid "Auto-refresh"
msgstr ""
#: plotpy\panels\csection\cswidget.py:315
msgid "Per image cross-section"
msgstr ""
#: plotpy\panels\csection\cswidget.py:318
msgid ""
"Enable the per-image cross-section mode, which works directly on image rows/columns.\n"
"That is the fastest method to compute cross-section curves but it ignores image transformations (e.g. rotation)"
msgstr ""
#: plotpy\panels\csection\cswidget.py:328
msgid ""
"Apply LUT\n"
"(contrast settings)"
msgstr ""
#: plotpy\panels\csection\cswidget.py:331
msgid ""
"Apply LUT (Look-Up Table) contrast settings.\n"
"This is the easiest way to compare images which have slightly different level ranges.\n"
"\n"
"Note: LUT is coded over 1024 levels (0...1023)"
msgstr ""
#: plotpy\panels\itemlist.py:77
msgid "Move to back"
msgstr ""
#: plotpy\panels\itemlist.py:83
msgid "Move to front"
msgstr ""
#: plotpy\panels\itemlist.py:94 plotpy\panels\itemlist.py:236
#: plotpy\tools\item.py:154 plotpy\tools\item.py:179
#: plotpy\widgets\colormap\manager.py:169
#: plotpy\widgets\colormap\manager.py:358
#: plotpy\widgets\colormap\manager.py:369
msgid "Remove"
msgstr ""
#: plotpy\panels\itemlist.py:232 plotpy\tools\item.py:175
msgid "Do you really want to remove this item?"
msgstr ""
#: plotpy\panels\itemlist.py:234 plotpy\tools\item.py:177
msgid "Do you really want to remove selected items?"
msgstr ""
#: plotpy\panels\itemlist.py:249 plotpy\tools\item.py:230
msgid "Item list"
msgstr ""
#: plotpy\plot\base.py:361 plotpy\styles\image.py:567
#: plotpy\styles\label.py:81 plotpy\styles\label.py:147
msgid "Left"
msgstr ""
#: plotpy\plot\base.py:362 plotpy\styles\image.py:568
#: plotpy\styles\label.py:82 plotpy\styles\label.py:148
msgid "Right"
msgstr ""
#: plotpy\plot\base.py:363 plotpy\styles\image.py:570
#: plotpy\styles\label.py:84 plotpy\styles\label.py:150
msgid "Bottom"
msgstr ""
#: plotpy\plot\base.py:364 plotpy\styles\image.py:569
#: plotpy\styles\label.py:83 plotpy\styles\label.py:149
msgid "Top"
msgstr ""
#: plotpy\plot\base.py:1203
msgid "Unknown file extension"
msgstr ""
#: plotpy\plot\base.py:1872
msgid "Axes associated to selected item"
msgstr ""
#: plotpy\plot\base.py:1920 plotpy\styles\axes.py:108
#: plotpy\styles\axes.py:164 plotpy\styles\base.py:568
#: plotpy\styles\base.py:574
msgid "Y Axis"
msgstr ""
#: plotpy\plot\base.py:1922 plotpy\styles\axes.py:102
#: plotpy\styles\axes.py:160 plotpy\styles\base.py:567
#: plotpy\styles\base.py:573
msgid "X Axis"
msgstr ""
#: plotpy\plot\interactive.py:70 plotpy\plot\plotwidget.py:359
#: plotpy\plot\plotwidget.py:928
msgid "Tools"
msgstr ""
#: plotpy\plot\interactive.py:831
msgid ""
"Function 'savefig' currently supports the following formats:\n"
"%s"
msgstr ""
#: plotpy\styles\axes.py:35 plotpy\styles\curve.py:37
#: plotpy\styles\histogram.py:61 plotpy\styles\image.py:516
#: plotpy\styles\label.py:41 plotpy\styles\label.py:233
#: plotpy\styles\polygonmap.py:20 plotpy\styles\shape.py:143
#: plotpy\styles\shape.py:311 plotpy\tests\widgets\test_simple_dialog.py:25
#: plotpy\tests\widgets\test_simple_window.py:45
msgid "Title"
msgstr ""
#: plotpy\styles\axes.py:36 plotpy\widgets\fit.py:127
msgid "Unit"
msgstr ""
#: plotpy\styles\axes.py:37 plotpy\styles\base.py:422
#: plotpy\styles\base.py:470 plotpy\styles\errorbar.py:29
msgid "Color"
msgstr ""
#: plotpy\styles\axes.py:38
msgid "Title font"
msgstr ""
#: plotpy\styles\axes.py:39
msgid "Values font"
msgstr ""
#: plotpy\styles\axes.py:46
msgid "linear"
msgstr ""
#: plotpy\styles\axes.py:46 plotpy\styles\histogram.py:30
#: plotpy\styles\histogram.py:70
msgid "logarithmic"
msgstr ""
#: plotpy\styles\axes.py:46 plotpy\tools\axes.py:18 plotpy\widgets\fit.py:126
msgid "Scale"
msgstr ""
#: plotpy\styles\axes.py:48
msgid "Lower axis limit"
msgstr ""
#: plotpy\styles\axes.py:49
msgid "Upper axis limit"
msgstr ""
#: plotpy\styles\axes.py:98
msgid "X-axis position"
msgstr ""
#: plotpy\styles\axes.py:99
msgid "bottom"
msgstr ""
#: plotpy\styles\axes.py:99
msgid "top"
msgstr ""
#: plotpy\styles\axes.py:104
msgid "Y-axis position"
msgstr ""
#: plotpy\styles\axes.py:105
msgid "left"
msgstr ""
#: plotpy\styles\axes.py:105
msgid "right"
msgstr ""
#: plotpy\styles\axes.py:161
msgid "Lower x-axis limit"
msgstr ""
#: plotpy\styles\axes.py:162
msgid "Upper x-axis limit"
msgstr ""
#: plotpy\styles\axes.py:165
msgid "Lower y-axis limit"
msgstr ""
#: plotpy\styles\axes.py:166
msgid "Upper y-axis limit"
msgstr ""
#: plotpy\styles\axes.py:168
msgid "Z Axis"
msgstr ""
#: plotpy\styles\axes.py:169
msgid "Lower z-axis limit"
msgstr ""
#: plotpy\styles\axes.py:170
msgid "Upper z-axis limit"
msgstr ""
#: plotpy\styles\base.py:71
msgid "Solid line"
msgstr ""
#: plotpy\styles\base.py:72
msgid "Dashed line"
msgstr ""
#: plotpy\styles\base.py:73
msgid "Dotted line"
msgstr ""
#: plotpy\styles\base.py:74
msgid "Dash-dot line"
msgstr ""
#: plotpy\styles\base.py:75
msgid "Dash-dot-dot line"
msgstr ""
#: plotpy\styles\base.py:76
msgid "No line"
msgstr ""
#: plotpy\styles\base.py:79 plotpy\styles\base.py:138
msgid "Cross"
msgstr ""
#: plotpy\styles\base.py:80 plotpy\tools\shape.py:311
msgid "Ellipse"
msgstr ""
#: plotpy\styles\base.py:81
msgid "Star"
msgstr ""
#: plotpy\styles\base.py:82
msgid "X-Cross"
msgstr ""
#: plotpy\styles\base.py:83
msgid "Square"
msgstr ""
#: plotpy\styles\base.py:84
msgid "Diamond"
msgstr ""
#: plotpy\styles\base.py:85 plotpy\styles\base.py:86 plotpy\styles\base.py:87
#: plotpy\styles\base.py:88
msgid "Triangle"
msgstr ""
#: plotpy\styles\base.py:89
msgid "Hexagon"
msgstr ""
#: plotpy\styles\base.py:90
msgid "No symbol"
msgstr ""
#: plotpy\styles\base.py:93
msgid "Lines"
msgstr ""
#: plotpy\styles\base.py:94
msgid "Sticks"
msgstr ""
#: plotpy\styles\base.py:95 plotpy\widgets\fit.py:124
msgid "Steps"
msgstr ""
#: plotpy\styles\base.py:96
msgid "Dots"
msgstr ""
#: plotpy\styles\base.py:97
msgid "No curve"
msgstr ""
#: plotpy\styles\base.py:101
msgid "No brush pattern"
msgstr ""
#: plotpy\styles\base.py:102
msgid "Uniform color"
msgstr ""
#: plotpy\styles\base.py:103
msgid "Extremely dense brush pattern"
msgstr ""
#: plotpy\styles\base.py:104
msgid "Very dense brush pattern"
msgstr ""
#: plotpy\styles\base.py:105
msgid "Somewhat dense brush pattern"
msgstr ""
#: plotpy\styles\base.py:106
msgid "Half dense brush pattern"
msgstr ""
#: plotpy\styles\base.py:107
msgid "Somewhat sparse brush pattern"
msgstr ""
#: plotpy\styles\base.py:108
msgid "Very sparse brush pattern"
msgstr ""
#: plotpy\styles\base.py:109
msgid "Extremely sparse brush pattern"
msgstr ""
#: plotpy\styles\base.py:110
msgid "Horizontal lines"
msgstr ""
#: plotpy\styles\base.py:111
msgid "Vertical lines"
msgstr ""
#: plotpy\styles\base.py:112
msgid "Crossing horizontal and vertical lines"
msgstr ""
#: plotpy\styles\base.py:113
msgid "Backward diagonal lines"
msgstr ""
#: plotpy\styles\base.py:114
msgid "Forward diagonal lines"
msgstr ""
#: plotpy\styles\base.py:115
msgid "Crossing diagonal lines"
msgstr ""
#: plotpy\styles\base.py:136
msgid "Horizontal"
msgstr ""
#: plotpy\styles\base.py:137
msgid "Vertical"
msgstr ""
#: plotpy\styles\base.py:312
msgid "Family"
msgstr ""
#: plotpy\styles\base.py:313
msgid "Choose font"
msgstr ""
#: plotpy\styles\base.py:314
msgid "Size in point"
msgstr ""
#: plotpy\styles\base.py:315
msgid "Bold"
msgstr ""
#: plotpy\styles\base.py:316
msgid "Italic"
msgstr ""
#: plotpy\styles\base.py:357 plotpy\styles\base.py:421
#: plotpy\styles\base.py:469
msgid "Style"
msgstr ""
#: plotpy\styles\base.py:358
msgid "Size"
msgstr ""
#: plotpy\styles\base.py:359 plotpy\styles\label.py:60
msgid "Border"
msgstr ""
#: plotpy\styles\base.py:360 plotpy\styles\base.py:527
#: plotpy\styles\base.py:565 plotpy\styles\histogram.py:95
#: plotpy\styles\image.py:290 plotpy\styles\label.py:66
msgid "Background color"
msgstr ""
#: plotpy\styles\base.py:361 plotpy\styles\base.py:528
msgid "Background alpha"
msgstr ""
#: plotpy\styles\base.py:423 plotpy\styles\errorbar.py:33
#: plotpy\tests\widgets\test_simple_dialog.py:26
#: plotpy\tests\widgets\test_simple_window.py:48
msgid "Width"
msgstr ""
#: plotpy\styles\base.py:471 plotpy\styles\errorbar.py:31
msgid "Alpha"
msgstr ""
#: plotpy\styles\base.py:472
msgid "Angle"
msgstr ""
#: plotpy\styles\base.py:473
msgid "sx"
msgstr ""
#: plotpy\styles\base.py:474
msgid "sy"
msgstr ""
#: plotpy\styles\base.py:525
msgid "Font"
msgstr ""
#: plotpy\styles\base.py:526 plotpy\styles\label.py:65
msgid "Text color"
msgstr ""
#: plotpy\styles\base.py:566
msgid "Major grid"
msgstr ""
#: plotpy\styles\base.py:569 plotpy\styles\base.py:575
#: plotpy\styles\curve.py:40 plotpy\styles\shape.py:55
#: plotpy\styles\shape.py:58 plotpy\styles\shape.py:146
#: plotpy\styles\shape.py:149 plotpy\styles\shape.py:242
#: plotpy\styles\shape.py:245 plotpy\styles\shape.py:402
#: plotpy\styles\shape.py:405
msgid "Line"
msgstr ""
#: plotpy\styles\base.py:572
msgid "Minor grid"
msgstr ""
#: plotpy\styles\curve.py:41 plotpy\styles\label.py:55
#: plotpy\styles\shape.py:60 plotpy\styles\shape.py:63
#: plotpy\styles\shape.py:151 plotpy\styles\shape.py:154
#: plotpy\styles\shape.py:407 plotpy\styles\shape.py:410
#: plotpy\tests\unit\test_styles.py:25 plotpy\tests\unit\test_styles.py:35
#: plotpy\tests\unit\test_styles.py:43 plotpy\tests\unit\test_styles.py:45
#: plotpy\tests\unit\test_styles.py:55 plotpy\tests\unit\test_styles.py:58
msgid "Symbol"
msgstr ""
#: plotpy\styles\curve.py:42
msgid "Shadow"
msgstr ""
#: plotpy\styles\curve.py:43
msgid "Curve style"
msgstr ""
#: plotpy\styles\curve.py:44
msgid "Baseline"
msgstr ""
#: plotpy\styles\curve.py:46
msgid "Use downsampling"
msgstr ""
#: plotpy\styles\curve.py:49
msgid "Downsampling factor"
msgstr ""
#: plotpy\styles\errorbar.py:20
msgid "Display"
msgstr ""
#: plotpy\styles\errorbar.py:22
msgid "error area (y)"
msgstr ""
#: plotpy\styles\errorbar.py:22
msgid "error bars with caps (x, y)"
msgstr ""
#: plotpy\styles\errorbar.py:23
msgid ""
"Note: only y-axis error bars are shown in error area mode\n"
"(width and cap parameters will also be ignored)"
msgstr ""
#: plotpy\styles\errorbar.py:31
msgid "Error bar transparency"
msgstr ""
#: plotpy\styles\errorbar.py:34
msgid "Cap"
msgstr ""
#: plotpy\styles\errorbar.py:35
msgid "Visibility"
msgstr ""
#: plotpy\styles\errorbar.py:35
msgid "set to foreground"
msgstr ""
#: plotpy\styles\histogram.py:27
msgid "Bins"
msgstr ""
#: plotpy\styles\histogram.py:27
msgid "Number of bins"
msgstr ""
#: plotpy\styles\histogram.py:28
msgid "Minimum value"
msgstr ""
#: plotpy\styles\histogram.py:28 plotpy\widgets\fit.py:122
msgid "Min"
msgstr ""
#: plotpy\styles\histogram.py:29 plotpy\styles\histogram.py:76
msgid "Maximum value"
msgstr ""
#: plotpy\styles\histogram.py:29 plotpy\widgets\fit.py:123
msgid "Max"
msgstr ""
#: plotpy\styles\histogram.py:30
msgid "Y-axis scale"
msgstr ""
#: plotpy\styles\histogram.py:65
msgid "Number of bins along x-axis"
msgstr ""
#: plotpy\styles\histogram.py:65
msgid "X-axis bins"
msgstr ""
#: plotpy\styles\histogram.py:68
msgid "Number of bins along y-axis"
msgstr ""
#: plotpy\styles\histogram.py:68
msgid "Y-axis bins"
msgstr ""
#: plotpy\styles\histogram.py:70
msgid "Z-axis scale"
msgstr ""
#: plotpy\styles\histogram.py:75
msgid "Bin count"
msgstr ""
#: plotpy\styles\histogram.py:77
msgid "Mininum value"
msgstr ""
#: plotpy\styles\histogram.py:78
msgid "Sum"
msgstr ""
#: plotpy\styles\histogram.py:79
msgid "Product"
msgstr ""
#: plotpy\styles\histogram.py:80
msgid "Average"
msgstr ""
#: plotpy\styles\histogram.py:83
msgid ""
"Bin count : counts the number of points per bin,\n"
"For max, min, sum, product, average, compute the function of a third parameter (one by default)"
msgstr ""
#: plotpy\styles\histogram.py:90
msgid "Automatic LUT range"
msgstr ""
#: plotpy\styles\histogram.py:92
msgid "Automatically adapt color scale when panning, zooming"
msgstr ""
#: plotpy\styles\histogram.py:97
msgid "Background color when no data is present"
msgstr ""
#: plotpy\styles\image.py:81 plotpy\styles\image.py:204
#: plotpy\tests\widgets\test_simple_dialog.py:54
msgid "Image title"
msgstr ""
#: plotpy\styles\image.py:85 plotpy\styles\image.py:208
msgid "Alpha function"
msgstr ""
#: plotpy\styles\image.py:91 plotpy\styles\image.py:214
msgid "Global alpha"
msgstr ""
#: plotpy\styles\image.py:91 plotpy\styles\image.py:214
msgid "Global alpha value"
msgstr ""
#: plotpy\styles\image.py:95 plotpy\styles\image.py:217
#: plotpy\tools\image.py:598
msgid "Colormap"
msgstr ""
#: plotpy\styles\image.py:99 plotpy\styles\image.py:220
#: plotpy\tools\image.py:694
msgid "Invert colormap"
msgstr ""
#: plotpy\styles\image.py:102
msgid "Lock LUT range when updating data"
msgstr ""
#: plotpy\styles\image.py:104 plotpy\tools\image.py:749
msgid "If enabled, the LUT range is not updated when the image data changes.<br>This allows to keep the same color scale for different successive images. <br><br><u>Note:</u> It has no effect when a new image is added to the plot."
msgstr ""
#: plotpy\styles\image.py:113 plotpy\styles\image.py:223
msgid "Interpolation"
msgstr ""
#: plotpy\styles\image.py:115
msgid "None (nearest pixel)"
msgstr ""
#: plotpy\styles\image.py:116
msgid "Linear interpolation"
msgstr ""
#: plotpy\styles\image.py:117
msgid "2x2 antialiasing filter"
msgstr ""