cs.po
50 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
# InVesalius 3.0 Beta - English
# Copyright (C) 2007-2009 Centro de Tecnologia da Informação Renato Archer
# This file is distributed under the same license as the InVesalius package. (GNU General Public License v2)
# Tatiana Al-Chueyr Pereira Martins <tatiana.alchueyr@gmail.com>
# Paulo Henrique Junqueira Amorim <paulojamorim@gmail.com>
# Thiago Franco de Morais <totonixsame@gmail.com>
# Translators:
# Translators:
# fri, 2011,2015,2017
# fri, 2011,2015
# fri, 2015,2017
msgid ""
msgstr ""
"Project-Id-Version: InVesalius3\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-26 16:15-0300\n"
"PO-Revision-Date: 2017-04-27 17:03+0000\n"
"Last-Translator: fri\n"
"Language-Team: Czech (http://www.transifex.com/invesalius/invesalius3/language/cs/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Poedit-Country: GENERIC\n"
"X-Poedit-Language: English\n"
"X-Poedit-SourceCharset: utf-8\n"
#: bitmap_preview_panel.py:25 dicom_preview_panel.py:49
#, python-format
msgid "Image size: %d x %d"
msgstr "Velikost obrázku: %d x %d"
#: bitmap_preview_panel.py:26 dicom_preview_panel.py:50
#, python-format
msgid "Spacing: %.2f"
msgstr "Rozložení: %.2f"
#: bitmap_preview_panel.py:27 dicom_preview_panel.py:51
#, python-format
msgid "Location: %.2f"
msgstr "Umístění: %.2f"
#: bitmap_preview_panel.py:29 dicom_preview_panel.py:53
#, python-format
msgid ""
"%s %s\n"
"Made in InVesalius"
msgstr "%s %s\nVytvořeno s InVesalius"
#: bitmap_preview_panel.py:166 bitmap_preview_panel.py:167
#: dicom_preview_panel.py:189 dicom_preview_panel.py:190 frame.py:831
msgid "Image"
msgstr "Obrázek"
#: bitmap_preview_panel.py:442 bitmap_preview_panel.py:443 constants.py:214
#: constants.py:302 control.py:478 dialogs.py:879 dialogs.py:892
#: dicom_preview_panel.py:676 dicom_preview_panel.py:677 presets.py:32
#: presets.py:50 presets.py:106 presets.py:137
msgid "Bone"
msgstr "Kost"
#: bitmap_preview_panel.py:510 dicom_preview_panel.py:744
msgid "Auto-play"
msgstr "Automatické přehrávání"
#: clut_raycasting.py:535
#, python-format
msgid "Value: %-6d"
msgstr "Hodnota: %-6d"
#: clut_raycasting.py:536
#, python-format
msgid "Alpha: %-.3f"
msgstr "Alfa: %-.3f"
#: constants.py:32
#, python-format
msgid "M %d"
msgstr "M %d"
#: constants.py:44 constants.py:422 constants.py:424
msgid " Off"
msgstr " Vypnuto"
#: constants.py:45
msgid "Red-blue"
msgstr "Červenomodrá"
#: constants.py:46
msgid "CristalEyes"
msgstr "Křišťálové oči"
#: constants.py:47
msgid "Interlaced"
msgstr "Prokládáno"
#: constants.py:48 constants.py:361
msgid "Left"
msgstr "Vlevo"
#: constants.py:49 constants.py:360
msgid "Right"
msgstr "Vpravo"
#: constants.py:50
msgid "Dresden"
msgstr "Drážďany"
#: constants.py:51
msgid "Checkboard"
msgstr "Šachovnice"
#: constants.py:52
msgid "Anaglyph"
msgstr "Dvojbarevný soutisk"
#: constants.py:105
msgid "Keep all slices"
msgstr "Ponechat všechny řezy"
#: constants.py:105
msgid "Skip 1 for each 2 slices"
msgstr "Přeskočit 1 pro všechny 2 řezy"
#: constants.py:106
msgid "Skip 2 for each 3 slices"
msgstr "Přeskočit 2 pro všechny 3 řezy"
#: constants.py:106
msgid "Skip 3 for each 4 slices"
msgstr "Přeskočit 3 pro všechny 4 řezy"
#: constants.py:107
msgid "Skip 4 for each 5 slices"
msgstr "Přeskočit 4 pro všech 5 řezů"
#: constants.py:107
msgid "Skip 5 for each 6 slices"
msgstr "Přeskočit 5 pro všech 6 řezů"
#: constants.py:164 slice_menu.py:103 slice_menu.py:110
msgid "Default "
msgstr "Výchozí "
#: constants.py:165
msgid "Hue"
msgstr "Odstín"
#: constants.py:166
msgid "Saturation"
msgstr "Nasycení"
#: constants.py:167
msgid "Desert"
msgstr "Poušť"
#: constants.py:168
msgid "Rainbow"
msgstr "Duha"
#: constants.py:169
msgid "Ocean"
msgstr "Oceán"
#: constants.py:170
msgid "Inverse Gray"
msgstr "Obrácená šedá"
#: constants.py:220
#, python-format
msgid "Mask %d"
msgstr "Maska %d"
#: constants.py:276 task_surface.py:44
msgid "Draw"
msgstr "Kreslit"
#: constants.py:276 styles.py:65 task_slice.py:867 task_surface.py:44
msgid "Erase"
msgstr "Smazat"
#: constants.py:276 data_notebook.py:457 dialogs.py:2566 frame.py:805
#: task_surface.py:44
msgid "Threshold"
msgstr "Prahová hodnota"
#: constants.py:288 constants.py:293
msgid "Low"
msgstr "Nízký"
#: constants.py:289 constants.py:293
msgid "Medium"
msgstr "Střední"
#: constants.py:290 constants.py:293
msgid "High"
msgstr "Vysoký"
#: constants.py:291 constants.py:292 constants.py:293 task_slice.py:176
msgid "Optimal *"
msgstr "Nejlepší"
#: constants.py:298
#, python-format
msgid "Surface %d"
msgstr "Povrch %d"
#: constants.py:301
msgid "Abdomen"
msgstr "Břicho"
#: constants.py:303
msgid "Brain posterior fossa"
msgstr "Zadní jamka mozku"
#: constants.py:304
msgid "Brain"
msgstr "Mozek"
#: constants.py:305 control.py:480 dialogs.py:1542 dialogs.py:1545
#: dialogs.py:1553 dialogs.py:1628 slice_menu.py:60 slice_menu.py:72
msgid "Default"
msgstr "Výchozí"
#: constants.py:306
msgid "Emphysema"
msgstr "Rozedma"
#: constants.py:307
msgid "Ischemia - Hard, non contrast"
msgstr "Ischemie - tvrdá bez kontrastu"
#: constants.py:308
msgid "Ischemia - Soft, non contrast"
msgstr "Ischemie - měkká bez kontrastu"
#: constants.py:309
msgid "Larynx"
msgstr "Hrtan"
#: constants.py:310
msgid "Liver"
msgstr "Játra"
#: constants.py:311
msgid "Lung - Soft"
msgstr "Plíce - měkké"
#: constants.py:312
msgid "Lung - Hard"
msgstr "Plíce - tvrdé"
#: constants.py:313
msgid "Mediastinum"
msgstr "Mezihrudí"
#: constants.py:314 control.py:481 slice_menu.py:67 slice_menu.py:72
msgid "Manual"
msgstr "Příručka"
#: constants.py:315
msgid "Pelvis"
msgstr "Pánev"
#: constants.py:316
msgid "Sinus"
msgstr "Dutina"
#: constants.py:317
msgid "Vasculature - Hard"
msgstr "Cévy - tvrdé"
#: constants.py:318
msgid "Vasculature - Soft"
msgstr "Cévy - měkké"
#: constants.py:319
msgid "Contour"
msgstr "Obrys"
#: constants.py:356
msgid "Front"
msgstr "Předek"
#: constants.py:357
msgid "Back"
msgstr "Zadek"
#: constants.py:358
msgid "Top"
msgstr "Nahoře"
#: constants.py:359
msgid "Bottom"
msgstr "Dole"
#: constants.py:362
msgid "Isometric"
msgstr "Rovnoměrný"
#: constants.py:369
msgid "Airways"
msgstr "Dýchací cesty"
#: constants.py:370
msgid "Airways II"
msgstr "Dýchací cesty II"
#: constants.py:371
msgid "Black & White"
msgstr "Černá a bílá"
#: constants.py:372
msgid "Bone + Skin"
msgstr "Kost a kůže"
#: constants.py:373
msgid "Bone + Skin II"
msgstr "Kost a kůže II"
#: constants.py:374
msgid "Dark bone"
msgstr "Tmavá kost"
#: constants.py:375
msgid "Glossy"
msgstr "Lesklý"
#: constants.py:376
msgid "Glossy II"
msgstr "Lesklý II"
#: constants.py:377
msgid "Gold bone"
msgstr "Zlatá kost"
#: constants.py:378
msgid "High contrast"
msgstr "Vysoký kontrast"
#: constants.py:379
msgid "Low contrast"
msgstr "Nízký kontrast"
#: constants.py:380 constants.py:388
msgid "Soft on white"
msgstr "Měkká na bílé"
#: constants.py:381
msgid "Mid contrast"
msgstr "Střední kontrast"
#: constants.py:382
msgid "MIP"
msgstr "MIP"
#: constants.py:383
msgid "No shading"
msgstr "Bez stínování"
#: constants.py:384
msgid "Pencil"
msgstr "Tužka"
#: constants.py:385
msgid "Red on white"
msgstr "Červená a bílá"
#: constants.py:386
msgid "Skin on blue"
msgstr "Kůže na modré"
#: constants.py:387
msgid "Skin on blue II"
msgstr "Kůže na modré II"
#: constants.py:389
msgid "Soft + Skin"
msgstr "Měkká a kůže"
#: constants.py:390
msgid "Soft + Skin II"
msgstr "Měkká a kůže II"
#: constants.py:391
msgid "Soft + Skin III"
msgstr "Měkká a kůže III"
#: constants.py:392
msgid "Soft on blue"
msgstr "Měkká na modré"
#: constants.py:393
msgid "Soft"
msgstr "Měkká"
#: constants.py:394
msgid "Standard"
msgstr "Obvyklý"
#: constants.py:395
msgid "Vascular"
msgstr "Cévní"
#: constants.py:396
msgid "Vascular II"
msgstr "Cévní II"
#: constants.py:397
msgid "Vascular III"
msgstr "Cévní III"
#: constants.py:398
msgid "Vascular IV"
msgstr "Cévní IV"
#: constants.py:399
msgid "Yellow bone"
msgstr "Žlutá kost"
#: constants.py:425 volume.py:647
msgid "Cut plane"
msgstr "Rovina řezu"
#: constants.py:663
msgid "Select tracker:"
msgstr "Vybrat sledovač:"
#: constants.py:663
msgid "Claron MicronTracker"
msgstr "Claron MicronTracker"
#: constants.py:664
msgid "Polhemus FASTRAK"
msgstr "Polhemus FASTRAK"
#: constants.py:664
msgid "Polhemus ISOTRAK II"
msgstr "Polhemus ISOTRAK II"
#: constants.py:665
msgid "Polhemus PATRIOT"
msgstr "Polhemus PATRIOT"
#: constants.py:665
msgid "Debug tracker"
msgstr "Ladit sledovač"
#: constants.py:666
msgid "Disconnect tracker"
msgstr "Odpojit sledovač"
#: constants.py:671
msgid "Static ref."
msgstr "Trvalý odkaz"
#: constants.py:671
msgid "Dynamic ref."
msgstr "Dynamický odkaz"
#: constants.py:681
msgid "LEI"
msgstr "LEI"
#: constants.py:682
msgid "REI"
msgstr "REI"
#: constants.py:683
msgid "NAI"
msgstr "NAI"
#: constants.py:689
msgid "Select left ear in image"
msgstr "Vybrat v obrázku levé ucho"
#: constants.py:690
msgid "Select right ear in image"
msgstr "Vybrat v obrázku pravé ucho"
#: constants.py:691
msgid "Select nasion in image"
msgstr "Vybrat v obrázku nasion"
#: constants.py:693
msgid "LET"
msgstr "LET"
#: constants.py:694
msgid "RET"
msgstr "RET"
#: constants.py:695
msgid "NAT"
msgstr "NAT"
#: constants.py:696
msgid "SET"
msgstr "SET"
#: constants.py:698
msgid "Select left ear with spatial tracker"
msgstr "Vybrat levé ucho pomocí prostorového sledovače"
#: constants.py:699
msgid "Select right ear with spatial tracker"
msgstr "Vybrat pravé ucho pomocí prostorového sledovače"
#: constants.py:700
msgid "Select nasion with spatial tracker"
msgstr "Vybrat nasion pomocí prostorového sledovače"
#: constants.py:701
msgid "Show set coordinates in image"
msgstr "Ukázat v obrázku souřadnice sady"
#: control.py:382
#, python-format
msgid "Loading file %d of %d ..."
msgstr "Nahrává se soubor %d z %d..."
#: control.py:820
msgid "Fix gantry tilt applying the degrees below"
msgstr "Změnit naklonění nosné konstrukce o níže uvedený počet stupňů"
#: data_notebook.py:45 measures.py:17
msgid "Linear"
msgstr "Přímý"
#: data_notebook.py:46 measures.py:18
msgid "Angular"
msgstr "Úhlový"
#: data_notebook.py:49 measures.py:21
msgid "3D"
msgstr "Trojrozměrný"
#: data_notebook.py:50 dialogs.py:1964 dialogs.py:2115 dialogs.py:2134
#: measures.py:22
msgid "Axial"
msgstr "Osový"
#: data_notebook.py:51 dialogs.py:1964 dialogs.py:2115 dialogs.py:2135
#: measures.py:23
msgid "Coronal"
msgstr "Věnčitý"
#: data_notebook.py:52 measures.py:24
msgid "Sagittal"
msgstr "Předozadní"
#: data_notebook.py:67
msgid "Masks"
msgstr "Masky"
#: data_notebook.py:68
msgid "3D surfaces"
msgstr "Trojrozměrné povrchy"
#: data_notebook.py:69
msgid "Measures"
msgstr "Měření"
#: data_notebook.py:165
msgid "Create a new measure"
msgstr "Vytvořit nové měření"
#: data_notebook.py:172
msgid "Remove measure"
msgstr "Odstranit měření"
#: data_notebook.py:178
msgid "Duplicate measure"
msgstr "Zdvojit měření"
#: data_notebook.py:191 frame.py:1400
msgid "Measure distance"
msgstr "Změřit vzdálenost"
#: data_notebook.py:194 frame.py:1406
msgid "Measure angle"
msgstr "Změřit úhel"
#: data_notebook.py:283
msgid "Create a new mask"
msgstr "Vytvořit novou masku"
#: data_notebook.py:289
msgid "Remove mask"
msgstr "Odstranit masku"
#: data_notebook.py:295
msgid "Duplicate mask"
msgstr "Zdvojit masku"
#: data_notebook.py:456 data_notebook.py:802 data_notebook.py:1066
#: data_notebook.py:1263
msgid "Name"
msgstr "Název"
#: data_notebook.py:520 frame.py:832
msgid "Mask"
msgstr "Maska"
#: data_notebook.py:615
msgid "Create a new surface"
msgstr "Vytvořit nový povrch"
#: data_notebook.py:621
msgid "Remove surface"
msgstr "Odstranit povrch"
#: data_notebook.py:627
msgid "Duplicate surface"
msgstr "Zdvojit povrch"
#: data_notebook.py:633
msgid "Import a surface file into InVesalius"
msgstr "Zavést soubor s povrchem do InVesalius"
#: data_notebook.py:661 task_surface.py:141
msgid "New surface"
msgstr "Nový povrch"
#: data_notebook.py:803
msgid "Volume (mm³)"
msgstr "Objem (mm³)"
#: data_notebook.py:804
msgid "Area (mm²)"
msgstr "Oblast (mm²)"
#: data_notebook.py:805
msgid "Transparency"
msgstr "Průhlednost"
#: data_notebook.py:1067
msgid "Location"
msgstr "Místo"
#: data_notebook.py:1068 data_notebook.py:1264 import_bitmap_panel.py:203
msgid "Type"
msgstr "Typ"
#: data_notebook.py:1069 data_notebook.py:1265
msgid "Value"
msgstr "Hodnota"
#: default_tasks.py:151
msgid "Data"
msgstr "Data"
#: default_tasks.py:244 default_tasks.py:250
msgid "Load data"
msgstr "Nahrát data"
#: default_tasks.py:245 default_tasks.py:251 default_tasks.py:280
msgid "Select region of interest"
msgstr "Zvolte zájmovou oblast"
#: default_tasks.py:246 default_tasks.py:252 default_tasks.py:282
msgid "Configure 3D surface"
msgstr "Nastavit trojrozměrný povrch"
#: default_tasks.py:247 default_tasks.py:253
msgid "Export data"
msgstr "Vyvést data"
#: default_tasks.py:254 default_tasks.py:324
msgid "Navigation system"
msgstr "Systém pro pohyb"
#: default_viewers.py:82 default_viewers.py:171 task_exporter.py:247
msgid "Axial slice"
msgstr "Osový řez"
#: default_viewers.py:87 default_viewers.py:177 task_exporter.py:248
msgid "Coronal slice"
msgstr "Věnčitý řez"
#: default_viewers.py:92 default_viewers.py:183 task_exporter.py:249
msgid "Sagittal slice"
msgstr "Předozadní řez"
#: default_viewers.py:98 default_viewers.py:189 task_exporter.py:250
msgid "Volume"
msgstr "Objem"
#: default_viewers.py:437
msgid "Preset name"
msgstr "Název přednastavení"
#: default_viewers.py:440
msgid "Save raycasting preset"
msgstr "Uložit přednastavení"
#: default_viewers.py:473 frame.py:903
msgid "Tools"
msgstr "Nástroje"
#: dialogs.py:78
msgid "Value will be applied."
msgstr "Hodnota se použije."
#: dialogs.py:82
msgid "Value will not be applied."
msgstr "Hodnota se nepoužije."
#: dialogs.py:116
msgid ""
"InVesalius is running on a 32-bit operating system or has insufficient memory. \n"
"If you want to work with 3D surfaces or volume rendering, \n"
"it is recommended to reduce the medical images resolution."
msgstr "InVesalius běží na 32-bitovém operačním systému nebo má nedostatek paměti. \nPokud chcete pracovat s trojrozměrnými povrchy nebo vykreslit objem, \ndoporučuje se zmenšit rozlišení lékařských obrázků."
#: dialogs.py:130
msgid "Percentage of original resolution"
msgstr "Procento původního rozlišení"
#: dialogs.py:178
msgid "Loading DICOM files"
msgstr "Nahrávají se soubory DICOM"
#: dialogs.py:236
msgid "Open InVesalius 3 project..."
msgstr "Otevřít projekt InVesalius 3"
#: dialogs.py:274
msgid "Choose a DICOM folder:"
msgstr "Vybrat složku s DICOM:"
#: dialogs.py:315
msgid "Choose a folder with TIFF, BMP, JPG or PNG:"
msgstr "Vybrat složku s TIFF, BMP, JPG nebo PNG:"
#: dialogs.py:347
msgid "Import Analyze 7.5 file"
msgstr "Zavést soubor Analyze 7.5"
#: dialogs.py:353
msgid "Import NIFTi 1 file"
msgstr "Zavést soubor NIFTi 1"
#: dialogs.py:356
msgid "Import PAR/REC file"
msgstr "Zavést soubor PAR/REC"
#: dialogs.py:388
msgid "Import surface file"
msgstr "Zavést soubor s povrchem"
#: dialogs.py:421 frame.py:734
msgid "Save project as..."
msgstr "Uložit projekt jako..."
#: dialogs.py:424
msgid "InVesalius project (*.inv3)|*.inv3"
msgstr "Projekt InVesalius (*.inv3)|*.inv3"
#: dialogs.py:453
msgid "Save markers as..."
msgstr "Uložit značky jako..."
#: dialogs.py:456 dialogs.py:487
msgid "Markers files (*.mks)|*.mks"
msgstr "Soubory se značkami (*.mks)|*.mks"
#: dialogs.py:484
msgid "Load markers"
msgstr "Nahrát značky"
#: dialogs.py:550 utils.py:377
msgid ""
"A new version of InVesalius is available. Do you want to open the download "
"website now?"
msgstr "Je dostupná nová verze programu InVesalius. Chcete nyní otevřít stránku pro stahování?"
#: dialogs.py:551 utils.py:378
msgid "Invesalius Update"
msgstr "Aktualizace InVesalius"
#: dialogs.py:609 dialogs.py:998 dialogs.py:1023
#, python-format
msgid ""
"The project %s has been modified.\n"
"Save changes?"
msgstr "Projekt %s byl změněn.\nUložit změny?"
#: dialogs.py:623
#, python-format
msgid "%s is an empty folder."
msgstr "%s je prázdná složka."
#: dialogs.py:638
msgid "There are no Bitmap, JPEG, PNG or TIFF files in the selected folder."
msgstr "Ve vybrané složce nejsou žádné soubory Bitmap, JPEG, PNG nebo TIFF."
#: dialogs.py:640
msgid "There are no DICOM files in the selected folder."
msgstr "Ve vybrané složce nejsou žádné soubory DICOM."
#: dialogs.py:653
msgid "Warning! InVesalius has limited support to Analyze format.\n"
msgstr "Varování! InVesalius má omezenou podporu pro formát Analyze.\n"
#: dialogs.py:654
msgid "Slices may be wrongly oriented and functions may not work properly."
msgstr "Řezy mohou být špatně natočeny a funkce nemusí pracovat správně."
#: dialogs.py:666
msgid "A mask is needed to create a surface."
msgstr "K vytvoření povrchu je potřeba maska."
#: dialogs.py:677
msgid "No mask was selected for removal."
msgstr "Pro odstranění nebyla vybrána žádná maska."
#: dialogs.py:688
msgid "No surface was selected for removal."
msgstr "Pro odstranění nebyl vybrán žádný povrch."
#: dialogs.py:700
msgid "No measure was selected for removal."
msgstr "Pro odstranění nebylo vybráno žádné měření."
#: dialogs.py:711
msgid "No mask was selected for duplication."
msgstr "Pro zdvojení nebyla vybrána žádná maska."
#: dialogs.py:724
msgid "No surface was selected for duplication."
msgstr "Pro zdvojení nebyl vybrán žádný povrch."
#: dialogs.py:737
msgid "Fiducials are invalid. Select six coordinates."
msgstr "Výchozí jsou neplatné. Vyberte šest souřadnic."
#: dialogs.py:759
msgid "No tracking device selected"
msgstr "Nevybráno žádné sledovací zařízení"
#: dialogs.py:761
msgid " is not installed."
msgstr "není nainstalováno."
#: dialogs.py:763
msgid " disconnected."
msgstr "odpojeno."
#: dialogs.py:765
msgid " is not connected."
msgstr "není připojeno."
#: dialogs.py:779
msgid "The TXT file is invalid."
msgstr "Soubor TXT je neplatný"
#: dialogs.py:791
msgid "No data selected"
msgstr "Nevybrána žádná data"
#: dialogs.py:802
msgid "Do you really want to delete all markers?"
msgstr "Opravdu chcete smazat všechny značky?"
#: dialogs.py:815
msgid "Edit marker ID"
msgstr "Upravit ID značky"
#: dialogs.py:862
msgid "New mask name:"
msgstr "Nový název masky:"
#: dialogs.py:866
msgid "Name the mask to be created"
msgstr "Název masky, která se má vytvořit"
#: dialogs.py:873
msgid "Threshold preset:"
msgstr "Přednastavení prahu:"
#: dialogs.py:960 presets.py:46 presets.py:64 presets.py:120 presets.py:151
#: slice_menu.py:128 slice_menu.py:264 task_slice.py:550 task_slice.py:552
#: task_slice.py:564 task_slice.py:566 task_slice.py:609 task_slice.py:612
msgid "Custom"
msgstr "Vlastní"
#: dialogs.py:975
#, python-format
msgid "%s does not exist."
msgstr "%s neexistuje."
#: dialogs.py:986
msgid "Please, provide more than one DICOM file for 3D reconstruction"
msgstr "Poskytněte, prosím, pro trojrozměrné opětné sestrojení více než jeden soubor DICOM"
#: dialogs.py:1047
msgid "(c) 2007-2017 Center for Information Technology Renato Archer - CTI"
msgstr "(c) 2007-2017 Center for Information Technology Renato Archer - CTI"
#: dialogs.py:1048
msgid ""
"InVesalius is a medical imaging program for 3D reconstruction. It uses a sequence of 2D DICOM image files acquired with CT or MRI scanners. InVesalius allows exporting 3D volumes or surfaces as mesh files for creating physical models of a patient's anatomy using additive manufacturing (3D printing) technologies. The software is developed by Center for Information Technology Renato Archer (CTI), National Council for Scientific and Technological Development (CNPq) and the Brazilian Ministry of Health.\n"
"\n"
" InVesalius must be used only for research. The Center for Information Technology Renato Archer is not responsible for damages caused by the use of this software.\n"
"\n"
" Contact: invesalius@cti.gov.br"
msgstr "InVesalius le lékařský zobrazovací program pro 3D rekonstrukce. Používá sled obrázkových souborů 2D DICOM pořízených skenery CT nebo MRI. InVesalius umožňuje vyvedení trojrozměrných objemů nebo povrchů jako souborů síť bodů na vytvoření hmotných modelů stavby pacientova těla pomocí přidaných additive výrobních technik (trojrozměrný tisk). Program je vyvíjen Střediskem pro informační technologie Renata Archera (Center for Information Technology Renato Archer (CTI)), Národní radou pro vědecký a technický vývoj (National Council for Scientific and Technological Development (CNPq)) a brazilským Ministerstvem zdraví (Brazilian Ministry of Health).\n\nInVesalius se musí používat jen při výzkumu. Střediskem pro informační technologie Renata Archera (Center for Information Technology Renato Archer) nezodpovídá za škody způsobené používáním tohoto software.\n\n Spojení: invesalius@cti.gov.br"
#: dialogs.py:1056
msgid "GNU GPL (General Public License) version 2"
msgstr "GNU GPL (General Public License) Verze 2"
#: dialogs.py:1096
msgid "Save raycasting preset as:"
msgstr "Uložit přednastavení s vrhem paprsků jako:"
#: dialogs.py:1139 dialogs.py:1397
msgid "New surface name:"
msgstr "Název nového povrchu"
#: dialogs.py:1143 dialogs.py:1401
msgid "Name the surface to be created"
msgstr "Název povrchu, který se má vytvořit"
#: dialogs.py:1150 dialogs.py:1408
msgid "Mask of reference:"
msgstr "Srovnávací maska:"
#: dialogs.py:1168 dialogs.py:1426
msgid "Surface quality:"
msgstr "Jakost povrchu:"
#: dialogs.py:1197 dialogs.py:1454 styles.py:1670
msgid "Fill holes"
msgstr "Vyplnit otvory"
#: dialogs.py:1200 dialogs.py:1457
msgid "Keep largest region"
msgstr "Zachovat největší oblast"
#: dialogs.py:1240
msgid "BMP image"
msgstr "Obrázek BMP"
#: dialogs.py:1241
msgid "JPG image"
msgstr "Obrázek JPG"
#: dialogs.py:1242
msgid "PNG image"
msgstr "Obrázek PNG"
#: dialogs.py:1243
msgid "PostScript document"
msgstr "Postskriptový dokument"
#: dialogs.py:1244
msgid "POV-Ray file"
msgstr "Soubor POV-Ray"
#: dialogs.py:1245
msgid "TIFF image"
msgstr "Obrázek TIFF"
#: dialogs.py:1290
msgid "Surface generation options"
msgstr "Volby pro vytvoření povrchu"
#: dialogs.py:1320
msgid "Surface creation"
msgstr "Vytvoření povrchu"
#: dialogs.py:1347
msgid "Surface creation options"
msgstr "Volby pro vytvoření povrchu"
#: dialogs.py:1353
msgid "Surface creation method"
msgstr "Postup pro vytvoření povrchu"
#: dialogs.py:1502 frame.py:905
msgid "Options"
msgstr "Volby"
#: dialogs.py:1518
msgid "Angle:"
msgstr "Úhel:"
#: dialogs.py:1520
msgid "Max. distance:"
msgstr "Největší vzdálenost:"
#: dialogs.py:1522
msgid "Min. weight:"
msgstr "Nejmenší váha"
#: dialogs.py:1524
msgid "N. steps:"
msgstr "Č. kroku:"
#: dialogs.py:1543 dialogs.py:1579 dialogs.py:1624
msgid "Context aware smoothing"
msgstr "Vyhlazování dle souvislosti"
#: dialogs.py:1544
msgid "Binary"
msgstr "Binární"
#: dialogs.py:1562
msgid ""
"It is not possible to use the Default method because the mask was edited."
msgstr "Není možné použít výchozí způsob, protože maska byla upravena."
#: dialogs.py:1565
msgid "Method:"
msgstr "Metoda:"
#: dialogs.py:1694 dialogs.py:2602
msgid "Method"
msgstr "Metoda"
#: dialogs.py:1717
msgid "Gaussian sigma"
msgstr "Gaussova směrodatná odchylka (sigma)"
#: dialogs.py:1739 frame.py:807 task_slice.py:285
msgid "Watershed"
msgstr "Předěl"
#: dialogs.py:1780 frame.py:776
msgid "Boolean operations"
msgstr "Booleánské operace"
#: dialogs.py:1803 slice_.py:1314
msgid "Union"
msgstr "Sjednocení"
#: dialogs.py:1804
msgid "Difference"
msgstr "Rozdíl"
#: dialogs.py:1805 slice_.py:1316
msgid "Intersection"
msgstr "Průnik"
#: dialogs.py:1806
msgid "Exclusive disjunction"
msgstr "Výhradní rozpojení"
#: dialogs.py:1827
msgid "Mask 1"
msgstr "Maska 1"
#: dialogs.py:1829
msgid "Operation"
msgstr "Operace"
#: dialogs.py:1831
msgid "Mask 2"
msgstr "Maska 2"
#: dialogs.py:1860
msgid "Image reorientation"
msgstr "Znovunatočení obrázku"
#: dialogs.py:1872
msgid "Apply"
msgstr "Použít"
#: dialogs.py:1876
msgid "Angle X"
msgstr "Úhel X"
#: dialogs.py:1880
msgid "Angle Y"
msgstr "Úhel Y"
#: dialogs.py:1884
msgid "Angle Z"
msgstr "Úhel Z"
#: dialogs.py:1933
msgid "Create project from bitmap"
msgstr "Vytvořit projekt z bitmapy"
#: dialogs.py:1960
msgid "Project name:"
msgstr "Název projektu:"
#: dialogs.py:1963
msgid "Slices orientation:"
msgstr "Natočení řezů:"
#: dialogs.py:1964 dialogs.py:2115 dialogs.py:2136
msgid "Sagital"
msgstr "Sagitální (předozadní)"
#: dialogs.py:1968
msgid "Spacing (mm):"
msgstr "Rozestupy (mm):"
#: dialogs.py:1983
msgid "X:"
msgstr "X:"
#: dialogs.py:1988
msgid "Y:"
msgstr "Y:"
#: dialogs.py:1992
msgid "Z:"
msgstr "Z:"
#: dialogs.py:2070
msgid ""
"All bitmaps files must be the same \n"
" width and height size."
msgstr "Všechny soubory s bitmapami musí mít\nstejnou velikost šířky a výšky."
#: dialogs.py:2083
msgid "2D - Actual slice"
msgstr "2D - skutečný řez"
#: dialogs.py:2084
msgid "3D - All slices"
msgstr "3D - všechny řezy"
#: dialogs.py:2109
msgid "2D Connectivity"
msgstr "Propojitelnost 2D"
#: dialogs.py:2118
msgid "Orientation"
msgstr "Natočení"
#: dialogs.py:2155
msgid "3D Connectivity"
msgstr "Propojitelnost 3D"
#: dialogs.py:2222 dialogs.py:2275 task_slice.py:886
msgid "Use WW&WL"
msgstr "Použít WW&WL"
#: dialogs.py:2240
msgid "Deviation"
msgstr "Výchylka"
#: dialogs.py:2242
msgid "Min:"
msgstr "Min:"
#: dialogs.py:2245
msgid "Max:"
msgstr "Max:"
#: dialogs.py:2298
msgid "Multiplier"
msgstr "Násobič"
#: dialogs.py:2301
msgid "Iterations"
msgstr "Opakování"
#: dialogs.py:2379 dialogs.py:2593 dialogs.py:2847
msgid "Parameters"
msgstr "Parametry"
#: dialogs.py:2437
msgid "Select mask parts"
msgstr "Vybrat části masky"
#: dialogs.py:2465
msgid "Target mask name"
msgstr "Cílový název masky"
#: dialogs.py:2519 frame.py:808 styles.py:2016
msgid "Region growing"
msgstr "Rostoucí oblast"
#: dialogs.py:2566
msgid "Dynamic"
msgstr "Dynamicky"
#: dialogs.py:2566
msgid "Confidence"
msgstr "Důvěra"
#: dialogs.py:2706
msgid "Crop mask"
msgstr "Ořezat masku"
#: dialogs.py:2747
msgid "Axial:"
msgstr "Osový:"
#: dialogs.py:2749 dialogs.py:2759 dialogs.py:2769
msgid " - "
msgstr " - "
#: dialogs.py:2757
msgid "Sagital:"
msgstr "Sagitální (předozadní):"
#: dialogs.py:2767
msgid "Coronal:"
msgstr "Věnčitý:"
#: dialogs.py:2858
msgid "Max hole size"
msgstr "Největší velikost otvoru"
#: dialogs.py:2860
msgid "voxels"
msgstr "objemových prvků (voxel)"
#: dicom.py:1550 dicom.py:1554 dicom.py:1556
msgid "unnamed"
msgstr "bez názvu"
#: dicom_preview_panel.py:409
#, python-format
msgid "%d images"
msgstr "%d obrázků"
#: dicom_preview_panel.py:534 dicom_preview_panel.py:555
#, python-format
msgid "Image %d"
msgstr "Obrázek %d"
#: frame.py:173
msgid "Data panel"
msgstr "Datový panel"
#: frame.py:179
msgid "Preview medical data to be reconstructed"
msgstr "Náhled na lékařská data, která se mají opět sestrojit"
#: frame.py:185
msgid "Preview bitmap to be reconstructed"
msgstr "Náhled na bitmapu, která se má opět sestrojit"
#: frame.py:191
msgid "Retrieve DICOM from PACS"
msgstr "Získat DICOM z PACS"
#: frame.py:499
msgid "Currently the Navigation mode is only working on Windows"
msgstr "V současnosti pracuje pohybový režim pouze v operačním systému Windows"
#: frame.py:632 frame.py:787
msgid "Fill holes automatically"
msgstr "Vyplnit otvory automaticky"
#: frame.py:721
msgid "Analyze 7.5"
msgstr "Analyze 7.5"
#: frame.py:722
msgid "NIfTI 1"
msgstr "NIfTI 1"
#: frame.py:723
msgid "PAR/REC"
msgstr "PAR/REC"
#: frame.py:729
msgid "Import DICOM...\tCtrl+I"
msgstr "Zavést DICOM...\tCtrl+I"
#: frame.py:731
msgid "Import other files..."
msgstr "Zavést jiné soubory..."
#: frame.py:732
msgid "Open project...\tCtrl+O"
msgstr "Otevřít projekt...\tCtrl+O"
#: frame.py:733
msgid "Save project\tCtrl+S"
msgstr "Uložit projekt\tCtrl+S"
#: frame.py:735
msgid "Close project"
msgstr "Zavřít projekt"
#: frame.py:744
msgid "Exit\tCtrl+Q"
msgstr "Ukončit\tCtrl+Q"
#: frame.py:756 frame.py:766
msgid "Undo\tCtrl+Z"
msgstr "Zpět\tCtrl+Z"
#: frame.py:761 frame.py:767
msgid "Redo\tCtrl+Y"
msgstr "Znovu\tCtrl+Y"
#: frame.py:779
msgid "Clean Mask\tCtrl+Shift+A"
msgstr "Uklidit masku\tCtrl+Shift+A"
#: frame.py:784
msgid "Fill holes manually"
msgstr "Vyplnit otvory ručně"
#: frame.py:792 styles.py:1767
msgid "Remove parts"
msgstr "Odstranit části"
#: frame.py:795
msgid "Select parts"
msgstr "Vybrat části"
#: frame.py:800
msgid "Crop"
msgstr "Ořezat"
#: frame.py:806
msgid "Manual segmentation"
msgstr "Ruční členění"
#: frame.py:816
msgid "Right - Left"
msgstr "Vpravo - vlevo"
#: frame.py:817
msgid "Anterior - Posterior"
msgstr "Dřívější - pozdější"
#: frame.py:818
msgid "Top - Bottom"
msgstr "Nahoře - dole"
#: frame.py:821
msgid "From Right-Left to Anterior-Posterior"
msgstr "Z vpravo-vlevo na dřívější-pozdější"
#: frame.py:822
msgid "From Right-Left to Top-Bottom"
msgstr "Z vpravo-vlevo na nahoře-dole"
#: frame.py:823
msgid "From Anterior-Posterior to Top-Bottom"
msgstr "Z dřívější-pozdější na nahoře-dole"
#: frame.py:825
msgid "Flip"
msgstr "Převrátit"
#: frame.py:826
msgid "Swap axes"
msgstr "Vyměnit osy"
#: frame.py:828
msgid "Reorient image\tCtrl+Shift+R"
msgstr "Znovunatočit obrázek\tCtrl+Shift+R"
#: frame.py:833
msgid "Segmentation"
msgstr "Členění"
#: frame.py:839
msgid "Interpolated slices"
msgstr "Pozměněné řezy"
#: frame.py:876
msgid "Preferences..."
msgstr "Nastavení..."
#: frame.py:880
msgid "Navigation mode"
msgstr "Pohybový režim"
#: frame.py:889
msgid "Getting started..."
msgstr "První kroky..."
#: frame.py:892
msgid "About..."
msgstr "O programu..."
#: frame.py:900
msgid "File"
msgstr "Soubor"
#: frame.py:901
msgid "Edit"
msgstr "Úpravy"
#: frame.py:902
msgid "View"
msgstr "Pohled"
#: frame.py:906
msgid "Mode"
msgstr "Režim"
#: frame.py:907
msgid "Help"
msgstr "Nápověda"
#: frame.py:1057 surface.py:415 surface.py:807 surface.py:808
#: task_navigator.py:413 trackers.py:230
msgid "Ready"
msgstr "Připraven"
#: frame.py:1209
msgid "Import DICOM files...\tCtrl+I"
msgstr "Zavést soubory DICOM\tCtrl+I"
#: frame.py:1218
msgid "Open InVesalius project..."
msgstr "Otevřít projekt InVesalius 3..."
#: frame.py:1224
msgid "Save InVesalius project"
msgstr "Uložit projekt InVesalius"
#: frame.py:1370
msgid "Zoom"
msgstr "Zvětšit"
#: frame.py:1376
msgid "Zoom based on selection"
msgstr "Zvětšit výběr"
#: frame.py:1382
msgid "Rotate"
msgstr "Otočit"
#: frame.py:1388
msgid "Move"
msgstr "Pohybovat"
#: frame.py:1394
msgid "Constrast"
msgstr "Kontrast"
#: frame.py:1552
msgid "Scroll slices"
msgstr "Projíždět řezy"
#: frame.py:1558
msgid "Slices' cross intersection"
msgstr "Křížový průsečík řezů"
#: frame.py:1734 frame.py:1806 frame.py:1985
msgid "Hide task panel"
msgstr "Skrýt panel s úkoly"
#: frame.py:1740 frame.py:1828 frame.py:2007
msgid "Hide text"
msgstr "Skrýt text"
#: frame.py:1812 frame.py:1991
msgid "Show task panel"
msgstr "Ukázat panel s úkoly"
#: frame.py:1822 frame.py:2001
msgid "Show text"
msgstr "Ukázat text"
#: frame.py:1903
msgid "Undo"
msgstr "Zpět"
#: frame.py:1910
msgid "Redo"
msgstr "Znovu"
#: imagedata_utils.py:93 imagedata_utils.py:227 imagedata_utils.py:332
#: imagedata_utils.py:425 imagedata_utils.py:525
msgid "Generating multiplanar visualization..."
msgstr "Vytváří se vícerovinné znázornění..."
#: import_bitmap_panel.py:92 import_network_panel.py:101 import_panel.py:94
msgid "Import"
msgstr "Zavést"
#: import_bitmap_panel.py:202
msgid "Path"
msgstr "Cesta"
#: import_bitmap_panel.py:204
msgid "Width x Height"
msgstr "Výška x šířka"
#: import_bitmap_panel.py:211 import_network_panel.py:266 import_panel.py:251
msgid "InVesalius Database"
msgstr "Databáze InVesalius"
#: import_network_panel.py:239 import_panel.py:224
msgid "Patient name"
msgstr "Pacientovo jméno"
#: import_network_panel.py:240 import_panel.py:225
msgid "Patient ID"
msgstr "Pacientovo ID"
#: import_network_panel.py:241 import_panel.py:226
msgid "Age"
msgstr "Věk"
#: import_network_panel.py:242 import_panel.py:227
msgid "Gender"
msgstr "Pohlaví"
#: import_network_panel.py:243 import_panel.py:228
msgid "Study description"
msgstr "Studijní popis"
#: import_network_panel.py:244 import_panel.py:229
msgid "Modality"
msgstr "Fyzioterapeutický prostředek"
#: import_network_panel.py:245 import_panel.py:230
msgid "Date acquired"
msgstr "Datum pořízení dat"
#: import_network_panel.py:246 import_panel.py:231
msgid "# Images"
msgstr "# Obrázky"
#: import_network_panel.py:247 import_panel.py:232
msgid "Institution"
msgstr "Zařízení"
#: import_network_panel.py:248 import_panel.py:233
msgid "Date of birth"
msgstr "Datum narození"
#: import_network_panel.py:249 import_panel.py:234
msgid "Accession Number"
msgstr "Přístupové číslo"
#: import_network_panel.py:250 import_panel.py:235
msgid "Referring physician"
msgstr "Přidělený lékař"
#: import_network_panel.py:497
msgid "Word"
msgstr "Slovo"
#: import_network_panel.py:504
msgid "Search"
msgstr "Hledat"
#: import_network_panel.py:663
msgid "Active"
msgstr "Činné"
#: import_network_panel.py:664
msgid "Host"
msgstr "Hostitel"
#: import_network_panel.py:665
msgid "Port"
msgstr "Přípojka"
#: import_network_panel.py:666
msgid "AETitle"
msgstr "AETitle"
#: import_network_panel.py:667
msgid "Status"
msgstr "Stav"
#: import_network_panel.py:694
msgid "Add"
msgstr "Přidat"
#: import_network_panel.py:695 task_navigator.py:590
msgid "Remove"
msgstr "Odstranit"
#: import_network_panel.py:696
msgid "Check status"
msgstr "Prověřit stav"
#: import_network_panel.py:769
msgid "ok"
msgstr "OK"
#: import_network_panel.py:771
msgid "error"
msgstr "Chyba"
#: language_dialog.py:91
msgid "Language selection"
msgstr "Výběr jazyka"
#: language_dialog.py:135
msgid "Choose user interface language"
msgstr "Vyberte jazyk uživatelského rozhraní"
#: polydata_utils.py:142
msgid "Analysing selected regions..."
msgstr "Provádí se rozbor vybraných oblastí..."
#: polydata_utils.py:198
msgid "Splitting disconnected regions..."
msgstr "Rozdělují se odpojené oblasti..."
#: preferences.py:17
msgid "Preferences"
msgstr "Nastavení"
#: preferences.py:41
msgid "2D Visualization"
msgstr "Dvojrozměrné znázornění"
#: preferences.py:42
msgid "3D Visualization"
msgstr "Trojrozměrné znázornění"
#: preferences.py:43 preferences.py:190
msgid "Language"
msgstr "Jazyk"
#: preferences.py:102
msgid "Surface"
msgstr "Povrch"
#: preferences.py:105
msgid "Interpolation "
msgstr "Interpolace"
#: preferences.py:113
msgid "Volume rendering"
msgstr "Vykreslení objemu"
#: preferences.py:116
msgid "Rendering"
msgstr "Zpracování"
#: preferences.py:120
msgid "GPU (NVidia video cards only)"
msgstr "GPU (pouze videokarty NVidia)"
#: preferences.py:152
msgid "Slices"
msgstr "Řezy"
#: preferences.py:155
msgid "Interpolated "
msgstr "Pozměněno"
#: preferences.py:159
msgid "Yes"
msgstr "Ano"
#: preferences.py:159
msgid "No"
msgstr "Ne"
#: preferences.py:193
msgid ""
"Language settings will be applied \n"
" the next time InVesalius starts."
msgstr "Nastavení jazyka se použijí\npři příštím spuštění programu InVesalius."
#: presets.py:33 presets.py:51 presets.py:107 presets.py:138
msgid "Soft Tissue"
msgstr "Měkké tkáně"
#: presets.py:34 presets.py:52 presets.py:108 presets.py:139
msgid "Enamel (Adult)"
msgstr "Zubní sklovina (dospělý)"
#: presets.py:35 presets.py:53 presets.py:109 presets.py:140
msgid "Enamel (Child)"
msgstr "Zubní sklovina (dítě)"
#: presets.py:36 presets.py:54 presets.py:110 presets.py:141
msgid "Compact Bone (Adult)"
msgstr "Pevná kost (dospělý)"
#: presets.py:37 presets.py:55 presets.py:111 presets.py:142
msgid "Compact Bone (Child)"
msgstr "Pevná kost (dítě)"
#: presets.py:38 presets.py:56 presets.py:112 presets.py:143
msgid "Spongial Bone (Adult)"
msgstr "Houbovitá kost (dospělý)"
#: presets.py:39 presets.py:57 presets.py:113 presets.py:144
msgid "Spongial Bone (Child)"
msgstr "Houbovitá kost (dítě)"
#: presets.py:40 presets.py:58 presets.py:114 presets.py:145
msgid "Muscle Tissue (Adult)"
msgstr "Svalová tkáň (dospělý)"
#: presets.py:41 presets.py:59 presets.py:115 presets.py:146
msgid "Muscle Tissue (Child)"
msgstr "Svalová tkáň (dítě)"
#: presets.py:42 presets.py:60 presets.py:116 presets.py:147
msgid "Fat Tissue (Adult)"
msgstr "Tuková tkáň (dospělý)"
#: presets.py:43 presets.py:61 presets.py:117 presets.py:148
msgid "Fat Tissue (Child)"
msgstr "Tuková tkáň (dítě)"
#: presets.py:44 presets.py:62 presets.py:118 presets.py:149
msgid "Skin Tissue (Adult)"
msgstr "Kožní tkáň (dospělý)"
#: presets.py:45 presets.py:63 presets.py:119 presets.py:150
msgid "Skin Tissue (Child)"
msgstr "Kožní tkáň (dítě)"
#: slice_.py:1315
msgid "Diff"
msgstr "Rozdíl"
#: slice_.py:1317
msgid "XOR"
msgstr "XOR"
#: slice_menu.py:37
msgid "Normal"
msgstr "Normální"
#: slice_menu.py:38
msgid "MaxIP"
msgstr "MaxIP"
#: slice_menu.py:39
msgid "MinIP"
msgstr "MinIP"
#: slice_menu.py:40
msgid "MeanIP"
msgstr "PrůměrIP"
#: slice_menu.py:41
msgid "MIDA"
msgstr "MIDA"
#: slice_menu.py:42
msgid "Contour MaxIP"
msgstr "Nakreslit obrys MaxIP"
#: slice_menu.py:43
msgid "Contour MIDA"
msgstr "Nakreslit obrys MIDA"
#: slice_menu.py:161
msgid "Window width and level"
msgstr "Šířka okna a úroveň"
#: slice_menu.py:162
msgid "Pseudo color"
msgstr "Nepravá barva"
#: slice_menu.py:163
msgid "Projection type"
msgstr "Typ promítání"
#: styles.py:66 task_slice.py:865
msgid "Foreground"
msgstr "Popředí"
#: styles.py:67 task_slice.py:866
msgid "Background"
msgstr "Pozadí"
#: styles.py:870
msgid "Applying watershed ..."
msgstr "Používá se předěl..."
#: styles.py:1671
msgid "Fill hole"
msgstr "Vyplnit otvor"
#: styles.py:1672
msgid "Filling hole ..."
msgstr "Vyplňuje se otvor..."
#: styles.py:1768
msgid "Remove part"
msgstr "Odstranit část"
#: styles.py:1769
msgid "Removing part ..."
msgstr "Odstraňuje se část..."
#: styles.py:2017
msgid "Segmenting ..."
msgstr "Člení se..."
#: surface.py:263
msgid "File format not reconized by InVesalius"
msgstr "Formát souboru nerozpoznán v InVesalius"
#: surface.py:263 surface.py:271
msgid "Import surface error"
msgstr "Chyba při zavádění souboru s povrchem"
#: surface.py:271
msgid "InVesalius was not able to import this surface"
msgstr "InVesalius se nepodařilo zavést tento povrch"
#: surface.py:476 surface.py:567 surface.py:585 surface.py:623 surface.py:652
#: surface.py:674 surface.py:693 surface.py:707 surface.py:724
msgid "Creating 3D surface..."
msgstr "Vytváří se trojrozměrný povrch..."
#: task_exporter.py:109
msgid "Export InVesalius screen to an image file"
msgstr "Vyvést obrazovku InVesalius do obrázkového souboru"
#: task_exporter.py:111
msgid "Export picture..."
msgstr "Vyvést obrázek..."
#: task_exporter.py:122
msgid "Export 3D surface"
msgstr "Vyvést trojrozměrný povrch"
#: task_exporter.py:123
msgid "Export 3D surface..."
msgstr "Vyvést trojrozměrný povrch..."
#: task_exporter.py:317
msgid "Save 3D surface as..."
msgstr "Uložit trojrozměrný povrch jako..."
#: task_exporter.py:336
msgid "You need to create a surface and make it "
msgstr "Musíte vytvořit trojrozměrný povrch a tento "
#: task_exporter.py:337
msgid "visible before exporting it."
msgstr "před jeho vyvedením udělat viditelným."
#: task_generic.py:65
msgid "Testing..."
msgstr "Zkouška..."
#: task_importer.py:67
msgid "Select DICOM, Analyze, NIfTI or REC/PAR files to be reconstructed"
msgstr "Vyberte soubory DICOM, Analyze, NIfTI nebo REC/PAR, které se mají opět sestrojit"
#: task_importer.py:68
msgid "Import medical images..."
msgstr "Zavést lékařské obrazy..."
#: task_importer.py:87
msgid "Open an existing InVesalius project..."
msgstr "Otevřít stávající projekt InVesalius..."
#: task_importer.py:88
msgid "Open an existing project..."
msgstr "Otevřít stávající projekt..."
#: task_navigator.py:62
msgid "Select fiducials and navigate"
msgstr "Vybrat výchozí a pohybovat se"
#: task_navigator.py:131
msgid "Neuronavigation"
msgstr "Neuropohyb"
#: task_navigator.py:140
msgid "Extra tools"
msgstr "Další nástroje"
#: task_navigator.py:149
msgid "Update camera in volume"
msgstr "Obnovit kameru v objemu"
#: task_navigator.py:150
msgid "Volume camera"
msgstr "Kamera objemu"
#: task_navigator.py:156
msgid "Enable external trigger for creating markers"
msgstr "Povolit vnější spouštěč pro vytváření značek"
#: task_navigator.py:157
msgid "External trigger"
msgstr "Vnější spouštěč"
#: task_navigator.py:227
msgid "Choose the tracking device"
msgstr "Vybrat sledovací zařízení"
#: task_navigator.py:235
msgid "Choose the navigation reference mode"
msgstr "Vybrat pohybový odkazový režim"
#: task_navigator.py:269
msgid "FRE:"
msgstr "FRE:"
#: task_navigator.py:272
msgid "Fiducial registration error"
msgstr "Chyba zapsání výchozího"
#: task_navigator.py:280
msgid "Start navigation"
msgstr "Spustit pohyb"
#: task_navigator.py:281
msgid "Navigate"
msgstr "Pohybovat se"
#: task_navigator.py:365
msgid "Configuring tracker ..."
msgstr "Nastavuje se sledovač..."
#: task_navigator.py:483
msgid "Stop neuronavigation"
msgstr "Zastavit neuropohyb"
#: task_navigator.py:516
msgid "Start neuronavigation"
msgstr "Spustit neuropohyb"
#: task_navigator.py:566
msgid "Create marker"
msgstr "Vytvořit značku"
#: task_navigator.py:575
msgid "Save"
msgstr "Uložit"
#: task_navigator.py:578
msgid "Load"
msgstr "Nahrát"
#: task_navigator.py:581
msgid "Hide"
msgstr "Skrýt"
#: task_navigator.py:593
msgid "Delete all"
msgstr "Smazat vše"
#: task_navigator.py:637
msgid "Edit ID"
msgstr "Upravit ID"
#: task_slice.py:86
msgid "Create mask for slice segmentation and editing"
msgstr "Vytvořit masku pro rozčlenění řezů a úpravy"
#: task_slice.py:87
msgid "Create new mask"
msgstr "Vytvořit novou masku"
#: task_slice.py:117
msgid "Create surface"
msgstr "Vytvořit povrch"
#: task_slice.py:118
msgid "Overwrite last surface"
msgstr "Přepsat poslední povrch"
#: task_slice.py:267
msgid "Mask properties"
msgstr "Vlastnosti masky"
#: task_slice.py:275
msgid "Manual edition"
msgstr "Ruční úprava"
#: task_slice.py:434
msgid "Set predefined or manual threshold:"
msgstr "Nastavit přednastavenou nebo ruční hodnotu prahu:"
#: task_slice.py:664 task_slice.py:828
msgid "Choose brush type, size or operation:"
msgstr "vybrat štětec, velikost nebo funkci:"
#: task_slice.py:670 task_slice.py:834
msgid "Circle"
msgstr "Kruh"
#: task_slice.py:674 task_slice.py:838
msgid "Square"
msgstr "Čtverec"
#: task_slice.py:715
msgid "Brush threshold range:"
msgstr "Prahová hodnota štětce:"
#: task_slice.py:885
msgid "Overwrite mask"
msgstr "Přepsat masku"
#: task_slice.py:895
msgid "Expand watershed to 3D"
msgstr "Roztáhnout předěl k 3D"
#: task_surface.py:88
msgid "Create 3D surface based on a mask"
msgstr "Vytvořit trojrozměrný povrch založený na masce"
#: task_surface.py:89
msgid "Create new 3D surface"
msgstr "Vytvořit nový trojrozměrný povrch"
#: task_surface.py:109
msgid "Next step"
msgstr "Další krok"
#: task_surface.py:217
msgid "Surface properties"
msgstr "Vlastnosti povrchu"
#: task_surface.py:223
msgid "Advanced options"
msgstr "Pokročilé volby"
#: task_surface.py:275
msgid ""
"Automatically select largest disconnected region and create new surface"
msgstr "Vybrat automaticky největší odpojenou oblast a vytvořit nový povrch"
#: task_surface.py:276
msgid "Select largest surface"
msgstr "Vybrat největší povrch"
#: task_surface.py:284
msgid ""
"Automatically select disconnected regions and create a new surface per "
"region"
msgstr "Vybrat automaticky odpojené oblasti a vytvořit jeden nový povrch na oblast"
#: task_surface.py:285
msgid "Split all disconnected surfaces"
msgstr "Oddělit všechny odpojené povrchy"
#: task_surface.py:293
msgid "Manually insert seeds of regions of interest and create a new surface"
msgstr "Vložit ručně jádra zájmových oblastí a vytvořit jeden nový povrch"
#: task_surface.py:294
msgid "Select regions of interest..."
msgstr "Vybrat zájmovou oblast..."
#: task_surface.py:430
msgid "Transparency:"
msgstr "Průhlednost:"
#: task_surface.py:578
msgid "Decimate resolution:"
msgstr "Desetinné rozlišení:"
#: task_surface.py:588
msgid "Smooth iterations:"
msgstr "Jemná opakování:"
#: task_tools.py:62
msgid "Measure distances"
msgstr "Změřit vzdálenosti"
#: task_tools.py:63
msgid "Measure"
msgstr "Změřit"
#: task_tools.py:66 task_tools.py:67
msgid "Add text annotations"
msgstr "Přidat textové poznámky"
#: trackers.py:202
msgid "Disconnecting tracker ..."
msgstr "Odpojuje se sledovač..."
#: viewer_slice.py:68
msgid "Number of slices used to compound the visualization."
msgstr "Počet řezů.použitých k poskládání znázornění."
#: viewer_slice.py:77
msgid ""
"Controls the sharpness of the contour. The greater the value, the sharper "
"the contour."
msgstr "Řídí ostrost obrysu. Čím větší je hodnota, tím ostřejší je obrys."
#: viewer_slice.py:85
msgid "Inverted order"
msgstr "Obrácené pořadí"
#: viewer_slice.py:86
msgid ""
"If checked, the slices are traversed in descending order to compound the "
"visualization instead of ascending order."
msgstr "Je-li zaškrtnuto, řezy pro složení znázornění leží přes sebe namísto ve vzestupném pořadí v sestupném pořadí."
#: viewer_slice.py:92
msgid "Number of slices"
msgstr "Počet řezů"
#: viewer_slice.py:93
msgid "Sharpness"
msgstr "Ostrost"
#: viewer_slice.py:720 viewer_slice.py:724 viewer_slice.py:774
#: viewer_slice.py:776 viewer_slice.py:788 viewer_slice.py:797
#: viewer_slice.py:806 viewer_slice.py:815 viewer_slice.py:826
#: viewer_slice.py:835 viewer_slice.py:844 viewer_slice.py:853
msgid "R"
msgstr "R"
#: viewer_slice.py:720 viewer_slice.py:724 viewer_slice.py:774
#: viewer_slice.py:776 viewer_slice.py:788 viewer_slice.py:797
#: viewer_slice.py:806 viewer_slice.py:815 viewer_slice.py:826
#: viewer_slice.py:835 viewer_slice.py:844 viewer_slice.py:853
msgid "L"
msgstr "L"
#: viewer_slice.py:720 viewer_slice.py:722 viewer_slice.py:774
#: viewer_slice.py:778 viewer_slice.py:788 viewer_slice.py:797
#: viewer_slice.py:806 viewer_slice.py:815 viewer_slice.py:864
#: viewer_slice.py:873 viewer_slice.py:882 viewer_slice.py:891
msgid "A"
msgstr "A"
#: viewer_slice.py:720 viewer_slice.py:722 viewer_slice.py:774
#: viewer_slice.py:778 viewer_slice.py:788 viewer_slice.py:797
#: viewer_slice.py:806 viewer_slice.py:815 viewer_slice.py:864
#: viewer_slice.py:873 viewer_slice.py:882 viewer_slice.py:891
msgid "P"
msgstr "P"
#: viewer_slice.py:722 viewer_slice.py:724 viewer_slice.py:776
#: viewer_slice.py:778 viewer_slice.py:826 viewer_slice.py:835
#: viewer_slice.py:844 viewer_slice.py:853 viewer_slice.py:864
#: viewer_slice.py:873 viewer_slice.py:882 viewer_slice.py:891
msgid "T"
msgstr "T"
#: viewer_slice.py:722 viewer_slice.py:724 viewer_slice.py:776
#: viewer_slice.py:778 viewer_slice.py:826 viewer_slice.py:835
#: viewer_slice.py:844 viewer_slice.py:853 viewer_slice.py:864
#: viewer_slice.py:873 viewer_slice.py:882 viewer_slice.py:891
msgid "B"
msgstr "B"
#: viewer_slice.py:791 viewer_slice.py:800 viewer_slice.py:809
#: viewer_slice.py:818
msgid "AL"
msgstr "AL"
#: viewer_slice.py:791 viewer_slice.py:800 viewer_slice.py:809
#: viewer_slice.py:818
msgid "RA"
msgstr "RA"
#: viewer_slice.py:791 viewer_slice.py:800 viewer_slice.py:809
#: viewer_slice.py:818
msgid "PR"
msgstr "PR"
#: viewer_slice.py:791 viewer_slice.py:800 viewer_slice.py:809
#: viewer_slice.py:818
msgid "LP"
msgstr "LP"
#: viewer_slice.py:794 viewer_slice.py:803 viewer_slice.py:812
#: viewer_slice.py:821
msgid "LA"
msgstr "LA"
#: viewer_slice.py:794 viewer_slice.py:803 viewer_slice.py:812
#: viewer_slice.py:821
msgid "AR"
msgstr "AR"
#: viewer_slice.py:794 viewer_slice.py:803 viewer_slice.py:812
#: viewer_slice.py:821
msgid "RP"
msgstr "RP"
#: viewer_slice.py:794 viewer_slice.py:803 viewer_slice.py:812
#: viewer_slice.py:821
msgid "PL"
msgstr "PL"
#: viewer_slice.py:829 viewer_slice.py:838 viewer_slice.py:847
#: viewer_slice.py:856
msgid "TL"
msgstr "TL"
#: viewer_slice.py:829 viewer_slice.py:838 viewer_slice.py:847
#: viewer_slice.py:856
msgid "RT"
msgstr "RT"
#: viewer_slice.py:829 viewer_slice.py:838 viewer_slice.py:847
#: viewer_slice.py:856
msgid "BR"
msgstr "BR"
#: viewer_slice.py:829 viewer_slice.py:838 viewer_slice.py:847
#: viewer_slice.py:856
msgid "LB"
msgstr "LB"
#: viewer_slice.py:832 viewer_slice.py:841 viewer_slice.py:850
#: viewer_slice.py:859
msgid "LT"
msgstr "LT"
#: viewer_slice.py:832 viewer_slice.py:841 viewer_slice.py:850
#: viewer_slice.py:859
msgid "TR"
msgstr "TR"
#: viewer_slice.py:832 viewer_slice.py:841 viewer_slice.py:850
#: viewer_slice.py:859
msgid "RB"
msgstr "RB"
#: viewer_slice.py:832 viewer_slice.py:841 viewer_slice.py:850
#: viewer_slice.py:859
msgid "BL"
msgstr "BL"
#: viewer_slice.py:867 viewer_slice.py:876 viewer_slice.py:885
#: viewer_slice.py:894
msgid "TA"
msgstr "TA"
#: viewer_slice.py:867 viewer_slice.py:876 viewer_slice.py:885
#: viewer_slice.py:894
msgid "PT"
msgstr "PT"
#: viewer_slice.py:867 viewer_slice.py:876 viewer_slice.py:885
#: viewer_slice.py:894
msgid "BP"
msgstr "BP"
#: viewer_slice.py:867 viewer_slice.py:876 viewer_slice.py:885
#: viewer_slice.py:894
msgid "AB"
msgstr "AB"
#: viewer_slice.py:870 viewer_slice.py:879 viewer_slice.py:888
#: viewer_slice.py:897
msgid "AT"
msgstr "AT"
#: viewer_slice.py:870 viewer_slice.py:879 viewer_slice.py:888
#: viewer_slice.py:897
msgid "TP"
msgstr "TP"
#: viewer_slice.py:870 viewer_slice.py:879 viewer_slice.py:888
#: viewer_slice.py:897
msgid "PB"
msgstr "PB"
#: viewer_slice.py:870 viewer_slice.py:879 viewer_slice.py:888
#: viewer_slice.py:897
msgid "BA"
msgstr "BA"
#~ msgid "Untitled"
#~ msgstr "Untitled"
#~ msgid "Import DICOM images..."
#~ msgstr "Import DICOM files..."
#~ msgid "Advanced editing tools"
#~ msgstr "Advanced editing tools"
#~ msgid "Exit"
#~ msgstr "Exit"
#~ msgid "Off"
#~ msgstr " Off"
#~ msgid "Save Project As..."
#~ msgstr "Save Project As..."
#~ msgid "Open a InVesalius project..."
#~ msgstr "Open a InVesalius project..."
#~ msgid "Image Tiling"
#~ msgstr "Image Tiling"