File: stellarium-scripts.pot

package info (click to toggle)
stellarium 25.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,307,224 kB
  • sloc: ansic: 317,377; cpp: 214,435; xml: 48,592; javascript: 26,073; python: 2,113; perl: 734; sh: 247; makefile: 192; pascal: 169
file content (1675 lines) | stat: -rw-r--r-- 36,303 bytes parent folder | download
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
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Stellarium's team
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: stellarium@googlegroups.com\n"
"POT-Creation-Date: 2025-12-01 14:32+0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"

#: scripts/analemma.ssc:17
msgid "Analemma"
msgstr ""

#: scripts/analemma.ssc:41
msgid "Week"
msgstr ""

#: scripts/analemma.ssc:47
msgid "Near winter solstice"
msgstr ""

#: scripts/analemma.ssc:51
msgid "Near summer solstice"
msgstr ""

#: scripts/analemma.ssc:55 scripts/martian_analemma.ssc:48
#: scripts/saturnian_analemma.ssc:48 scripts/uranian_analemma.ssc:48
msgid "Yearly path of the Sun"
msgstr ""

#: scripts/bennett.ssc:47
msgid "The Jack Bennett Catalog of Southern Deep-Sky Objects"
msgstr ""

#: scripts/bennett.ssc:48 scripts/best_ngc.ssc:27 scripts/binosky.ssc:20
msgid "objects in all"
msgstr ""

#: scripts/best_ngc.ssc:26
msgid "Best objects in the New General Catalog"
msgstr ""

#: scripts/best_ngc.ssc:42
msgid "Object #"
msgstr ""

#: scripts/binocular_highlights.ssc:12
msgid "Chapter 1"
msgstr ""

#: scripts/binocular_highlights.ssc:12
msgid "December to February"
msgstr ""

#: scripts/binocular_highlights.ssc:13
msgid "Kemble's Cascade"
msgstr ""

#: scripts/binocular_highlights.ssc:13
msgid "Kemble's Cascade is visible even in light-polluted skies"
msgstr ""

#: scripts/binocular_highlights.ssc:14
msgid "The Glorious Double Cluster"
msgstr ""

#: scripts/binocular_highlights.ssc:14
msgid "NGC 884 and NGC 869"
msgstr ""

#: scripts/binocular_highlights.ssc:15
msgid "The Alpha Persei Association"
msgstr ""

#: scripts/binocular_highlights.ssc:16
msgid "M34: A True Binocular Cluster"
msgstr ""

#: scripts/binocular_highlights.ssc:17
msgid "Watching the Demon Star"
msgstr ""

#: scripts/binocular_highlights.ssc:18
msgid "The Pleiades"
msgstr ""

#: scripts/binocular_highlights.ssc:19
msgid "Corralling the Hyades"
msgstr ""

#: scripts/binocular_highlights.ssc:20
msgid "NGC 1647: The Crab Cluster"
msgstr ""

#: scripts/binocular_highlights.ssc:21
msgid "Messier's Number One"
msgstr ""

#: scripts/binocular_highlights.ssc:22
msgid "Auriga's Messier Clusters"
msgstr ""

#: scripts/binocular_highlights.ssc:22
msgid "M36 and M38"
msgstr ""

#: scripts/binocular_highlights.ssc:23
msgid "Another Double Cluster"
msgstr ""

#: scripts/binocular_highlights.ssc:23
msgid "M35 and NGC 2158"
msgstr ""

#: scripts/binocular_highlights.ssc:24
msgid "Golden Betelgeuse"
msgstr ""

#: scripts/binocular_highlights.ssc:25
msgid "Orion Extras"
msgstr ""

#: scripts/binocular_highlights.ssc:26
msgid "Orion's Sword"
msgstr ""

#: scripts/binocular_highlights.ssc:26
msgid "NGC 1981, M42, M43 and Struve 747"
msgstr ""

#: scripts/binocular_highlights.ssc:27
msgid "The Overlooked Open Cluster: M41"
msgstr ""

#: scripts/binocular_highlights.ssc:28
msgid "M50 in a Stream of Starlight"
msgstr ""

#: scripts/binocular_highlights.ssc:29
msgid "M46 and M47: A Celestial Odd Couple"
msgstr ""

#: scripts/binocular_highlights.ssc:30
msgid "Collinders in Canis Minor"
msgstr ""

#: scripts/binocular_highlights.ssc:30
msgid "Cr 132 and Cr 140"
msgstr ""

#: scripts/binocular_highlights.ssc:31
msgid "Two Southern Delights"
msgstr ""

#: scripts/binocular_highlights.ssc:31
msgid "NGC 2477 and NGC 2451"
msgstr ""

#: scripts/binocular_highlights.ssc:32
msgid "Chapter 2"
msgstr ""

#: scripts/binocular_highlights.ssc:32
msgid "March to May"
msgstr ""

#: scripts/binocular_highlights.ssc:33
msgid "The Engagement Ring"
msgstr ""

#: scripts/binocular_highlights.ssc:34
msgid "The Power of Power"
msgstr ""

#: scripts/binocular_highlights.ssc:34
msgid "M81 and M82"
msgstr ""

#: scripts/binocular_highlights.ssc:35
msgid "M101 in the Mind's Eye"
msgstr ""

#: scripts/binocular_highlights.ssc:36
msgid "A Star-Hop to M51"
msgstr ""

#: scripts/binocular_highlights.ssc:37
msgid "Galaxy Season"
msgstr ""

#: scripts/binocular_highlights.ssc:38
msgid "Steady on Galaxy M94"
msgstr ""

#: scripts/binocular_highlights.ssc:39
msgid "Globular Cluster M3"
msgstr ""

#: scripts/binocular_highlights.ssc:40
msgid "In and Around Melotte 111"
msgstr ""

#: scripts/binocular_highlights.ssc:41
msgid "A Trio of Doubles in Bootes"
msgstr ""

#: scripts/binocular_highlights.ssc:42
msgid "R Cor Bor's Vanishing Act"
msgstr ""

#: scripts/binocular_highlights.ssc:43
msgid "Two Doubles in Cancer"
msgstr ""

#: scripts/binocular_highlights.ssc:43
msgid "Rho and Iota Cancri"
msgstr ""

#: scripts/binocular_highlights.ssc:44
msgid "The Beehive Cluster"
msgstr ""

#: scripts/binocular_highlights.ssc:45
msgid "A Visit to NGC 2903"
msgstr ""

#: scripts/binocular_highlights.ssc:46 scripts/binocular_highlights.ssc:47
msgid "A Pair of Leo Doubles"
msgstr ""

#: scripts/binocular_highlights.ssc:46
msgid "Tau Leonis"
msgstr ""

#: scripts/binocular_highlights.ssc:47
msgid "Alpha Leonis (Regulus)"
msgstr ""

#: scripts/binocular_highlights.ssc:48
msgid "Star Cluster M48 in Hydra"
msgstr ""

#: scripts/binocular_highlights.ssc:49
msgid "U Hydra"
msgstr ""

#: scripts/binocular_highlights.ssc:49
msgid "Carbon star"
msgstr ""

#: scripts/binocular_highlights.ssc:50
msgid "V Hydra"
msgstr ""

#: scripts/binocular_highlights.ssc:50
msgid ""
"It has been ranging from magnitude 6 to 10 with a period of about 550 days."
msgstr ""

#: scripts/binocular_highlights.ssc:51
msgid "M104 and the Great Beyond"
msgstr ""

#: scripts/binocular_highlights.ssc:52
msgid "Ancient Globular M5"
msgstr ""

#: scripts/binocular_highlights.ssc:53
msgid "Magnificent Omega Centauri"
msgstr ""

#: scripts/binocular_highlights.ssc:54
msgid "Chapter 3"
msgstr ""

#: scripts/binocular_highlights.ssc:54
msgid "June to August"
msgstr ""

#: scripts/binocular_highlights.ssc:55
msgid "Resolving Nu Draconis"
msgstr ""

#: scripts/binocular_highlights.ssc:55
msgid "Nu Draconis's components are separated by 62\""
msgstr ""

#: scripts/binocular_highlights.ssc:56
msgid "The Great Hercules Cluster"
msgstr ""

#: scripts/binocular_highlights.ssc:57
msgid "Double Delight Albireo"
msgstr ""

#: scripts/binocular_highlights.ssc:57
msgid "Albireo's components are separated by 35\""
msgstr ""

#: scripts/binocular_highlights.ssc:58
msgid "A Colorful Cygnus Triple"
msgstr ""

#: scripts/binocular_highlights.ssc:58
msgid "Omicron1, Omicron2 and 30 Cygni"
msgstr ""

#: scripts/binocular_highlights.ssc:59 scripts/binocular_highlights.ssc:60
#: scripts/binocular_highlights.ssc:61
msgid "Three Cygnus Doubles"
msgstr ""

#: scripts/binocular_highlights.ssc:59
msgid "Mu Cygni (Its stars are separated by a generous 198\")"
msgstr ""

#: scripts/binocular_highlights.ssc:60
msgid "79 Cygni (Its stars are separated by 150\")"
msgstr ""

#: scripts/binocular_highlights.ssc:61
msgid "61 Cygni (Its stars are separated by 31\")"
msgstr ""

#: scripts/binocular_highlights.ssc:62
msgid "Open Cluster M39 in Cygnus"
msgstr ""

#: scripts/binocular_highlights.ssc:63
msgid "The Road to the Cocoon"
msgstr ""

#: scripts/binocular_highlights.ssc:63
msgid "IC 5146, B168 and M39"
msgstr ""

#: scripts/binocular_highlights.ssc:64
msgid "Summer's Other Triangle"
msgstr ""

#: scripts/binocular_highlights.ssc:64
msgid "Epsilon, Zeta and Alpha Lyrae"
msgstr ""

#: scripts/binocular_highlights.ssc:65
msgid "M57 and Expectations"
msgstr ""

#: scripts/binocular_highlights.ssc:65
msgid "Difficult deep-sky object for tests your observing skills..."
msgstr ""

#: scripts/binocular_highlights.ssc:66
msgid "Splendid Sagitta"
msgstr ""

#: scripts/binocular_highlights.ssc:66
msgid "M71 between Gamma and Delta Sagittae"
msgstr ""

#: scripts/binocular_highlights.ssc:67
msgid "M27 in Vulpecula"
msgstr ""

#: scripts/binocular_highlights.ssc:68
msgid "A Milky Way Surprise"
msgstr ""

#: scripts/binocular_highlights.ssc:68
msgid "Brocchi's Cluster (Cr 399) or Coathanger"
msgstr ""

#: scripts/binocular_highlights.ssc:69
msgid "Barnard's \"E\""
msgstr ""

#: scripts/binocular_highlights.ssc:69
msgid "B143 near Altair"
msgstr ""

#: scripts/binocular_highlights.ssc:70
msgid "M11 in Scutum"
msgstr ""

#: scripts/binocular_highlights.ssc:70
msgid "Also known as the Wild Duck Cluster"
msgstr ""

#: scripts/binocular_highlights.ssc:71
msgid "IC 4756 in Serpens"
msgstr ""

#: scripts/binocular_highlights.ssc:72
msgid "Three Star Clusters in Ophiuchus"
msgstr ""

#: scripts/binocular_highlights.ssc:73
msgid "IC 4665 in Ophiuchus"
msgstr ""

#: scripts/binocular_highlights.ssc:74
msgid "A Pair of Ophiuchus Globulars"
msgstr ""

#: scripts/binocular_highlights.ssc:74
msgid "M10 and M12"
msgstr ""

#: scripts/binocular_highlights.ssc:75
msgid "Rho Ophiuchi"
msgstr ""

#: scripts/binocular_highlights.ssc:75
msgid "Rho itself is a pretty triple star"
msgstr ""

#: scripts/binocular_highlights.ssc:76
msgid "A Solar Twin"
msgstr ""

#: scripts/binocular_highlights.ssc:76
msgid "18 Scorpii"
msgstr ""

#: scripts/binocular_highlights.ssc:77
msgid "A Double for Steady Hands"
msgstr ""

#: scripts/binocular_highlights.ssc:77
msgid "Nu Scorpii components are separated by 41\""
msgstr ""

#: scripts/binocular_highlights.ssc:78
msgid "Globular Cluster Season"
msgstr ""

#: scripts/binocular_highlights.ssc:78
msgid "M4 and M80"
msgstr ""

#: scripts/binocular_highlights.ssc:79
msgid "A Gorgeous Duo"
msgstr ""

#: scripts/binocular_highlights.ssc:79
msgid "M6 and M7"
msgstr ""

#: scripts/binocular_highlights.ssc:80
msgid "A False Comet"
msgstr ""

#: scripts/binocular_highlights.ssc:80
msgid "Cr 316, NGC 6231 and NGC 6242"
msgstr ""

#: scripts/binocular_highlights.ssc:81
msgid "Summer Star Cloud"
msgstr ""

#: scripts/binocular_highlights.ssc:82
msgid "Milky Way Messiers"
msgstr ""

#: scripts/binocular_highlights.ssc:82
msgid "M16, M17 and M18"
msgstr ""

#: scripts/binocular_highlights.ssc:83
msgid "The Lagoon Nebula"
msgstr ""

#: scripts/binocular_highlights.ssc:84
msgid "M22: A Gem of a Globular"
msgstr ""

#: scripts/binocular_highlights.ssc:84
msgid "M22 and M28"
msgstr ""

#: scripts/binocular_highlights.ssc:85
msgid "A Lonesome Messier"
msgstr ""

#: scripts/binocular_highlights.ssc:86
msgid "Chapter 4"
msgstr ""

#: scripts/binocular_highlights.ssc:86
msgid "September to November"
msgstr ""

#: scripts/binocular_highlights.ssc:87
msgid "Two Lacerta Clusters"
msgstr ""

#: scripts/binocular_highlights.ssc:87
msgid "NGC 7209 and NGC 7243"
msgstr ""

#: scripts/binocular_highlights.ssc:88
msgid "NGC 6939 and NGC 6946"
msgstr ""

#: scripts/binocular_highlights.ssc:89
msgid "Magnificent Mu Cephei"
msgstr ""

#: scripts/binocular_highlights.ssc:89
msgid "A semiregular variable star"
msgstr ""

#: scripts/binocular_highlights.ssc:90
msgid "Watching Delta Cephei"
msgstr ""

#: scripts/binocular_highlights.ssc:90
msgid "Well-known variable star and striking double also"
msgstr ""

#: scripts/binocular_highlights.ssc:91
msgid "M52 in Cassiopeia"
msgstr ""

#: scripts/binocular_highlights.ssc:92
msgid "Galactic Cluster NGC 7789"
msgstr ""

#: scripts/binocular_highlights.ssc:93
msgid "The E.T. Cluster"
msgstr ""

#: scripts/binocular_highlights.ssc:94
msgid "Open Cluster M103"
msgstr ""

#: scripts/binocular_highlights.ssc:95
msgid "Magnificent M31"
msgstr ""

#: scripts/binocular_highlights.ssc:96
msgid "Andromeda's Companions"
msgstr ""

#: scripts/binocular_highlights.ssc:96
msgid "M32 and M110"
msgstr ""

#: scripts/binocular_highlights.ssc:97
msgid "Ancient Cluster NGC 752"
msgstr ""

#: scripts/binocular_highlights.ssc:98
msgid "Triangulum's Treasure"
msgstr ""

#: scripts/binocular_highlights.ssc:99
msgid "TX Piscium"
msgstr ""

#: scripts/binocular_highlights.ssc:99
msgid "Carbon star, which varies slightly from magnitude 4.8 to 5.2"
msgstr ""

#: scripts/binocular_highlights.ssc:100
msgid "A Farewell to Summer"
msgstr ""

#: scripts/binocular_highlights.ssc:101
msgid "Messier 2 Shining Through"
msgstr ""

#: scripts/binocular_highlights.ssc:102
msgid "The Ghostly Helix Nebula"
msgstr ""

#: scripts/binocular_highlights.ssc:103
msgid "Challenging NGC 253 and NGC 288"
msgstr ""

#: scripts/binocular_highlights.ssc:125
msgid "Binocular Highlights"
msgstr ""

#: scripts/binocular_highlights.ssc:126
msgid "Look through the Meade 10x50 TravelView Binocular"
msgstr ""

#: scripts/binosky.ssc:19
msgid "Binosky: Deep Sky Objects for Binoculars"
msgstr ""

#: scripts/double_stars.ssc:28
msgid "Asterope (21 Tauri and 22 Tauri)"
msgstr ""

#: scripts/double_stars.ssc:28
msgid "2.5 arcminutes (SE)"
msgstr ""

#: scripts/double_stars.ssc:28
msgid ""
"Extremely difficult because of their faintness, separation, and nearby "
"bright stars"
msgstr ""

#: scripts/double_stars.ssc:29
msgid "Atlas and Pleione (27 Tauri and 28 Tauri)"
msgstr ""

#: scripts/double_stars.ssc:29
msgid "5 arcminutes (N)"
msgstr ""

#: scripts/double_stars.ssc:29 scripts/double_stars.ssc:35
#: scripts/double_stars.ssc:41 scripts/double_stars.ssc:43
msgid "Moderately difficult"
msgstr ""

#: scripts/double_stars.ssc:30
msgid "θ Tauri"
msgstr ""

#: scripts/double_stars.ssc:30
msgid "5.6 arcminutes (NNW)"
msgstr ""

#: scripts/double_stars.ssc:30 scripts/double_stars.ssc:42
#: scripts/double_stars.ssc:47
msgid "Showcase naked-eye double!"
msgstr ""

#: scripts/double_stars.ssc:31
msgid "δ Tauri"
msgstr ""

#: scripts/double_stars.ssc:31
msgid "δ1-δ2: 17.6 arcseconds (ESE); δ1-δ3: 43.25 arcseconds (NE)"
msgstr ""

#: scripts/double_stars.ssc:31
msgid "Easy naked-eye triple"
msgstr ""

#: scripts/double_stars.ssc:32
msgid "θ Orionis"
msgstr ""

#: scripts/double_stars.ssc:32
msgid "2.24 arcminutes (NW)"
msgstr ""

#: scripts/double_stars.ssc:32
msgid "Very difficult because of stars and nebulosity in the area"
msgstr ""

#: scripts/double_stars.ssc:33
msgid "42 and 45 Orionis"
msgstr ""

#: scripts/double_stars.ssc:33
msgid "4.2 arcminutes (ESE)"
msgstr ""

#: scripts/double_stars.ssc:33 scripts/double_stars.ssc:34
msgid "Moderately difficult optical double"
msgstr ""

#: scripts/double_stars.ssc:34
msgid "ι Orionis"
msgstr ""

#: scripts/double_stars.ssc:34
msgid "8 arcminutes (SW)"
msgstr ""

#: scripts/double_stars.ssc:35
msgid "ζ Corvi"
msgstr ""

#: scripts/double_stars.ssc:35
msgid "5.85 arcminutes (WNW)"
msgstr ""

#: scripts/double_stars.ssc:36
msgid "Mizar and Alcor"
msgstr ""

#: scripts/double_stars.ssc:36
msgid "11.8 arcminutes (ENE)"
msgstr ""

#: scripts/double_stars.ssc:36 scripts/double_stars.ssc:44
#: scripts/double_stars.ssc:45
msgid "Easy naked-eye double"
msgstr ""

#: scripts/double_stars.ssc:37
msgid "Zubenelgenubi"
msgstr ""

#: scripts/double_stars.ssc:37
msgid "3.83 arcminutes (NW)"
msgstr ""

#: scripts/double_stars.ssc:37
msgid "Very difficult because of the magnitude difference"
msgstr ""

#: scripts/double_stars.ssc:38
msgid "ω Scorpii"
msgstr ""

#: scripts/double_stars.ssc:38
msgid "14.6 arcminutes (SSE)"
msgstr ""

#: scripts/double_stars.ssc:38
msgid "Easy optical double"
msgstr ""

#: scripts/double_stars.ssc:39
msgid "λ and υ Scorpii"
msgstr ""

#: scripts/double_stars.ssc:39
msgid "36 arcminutes (WSW)"
msgstr ""

#: scripts/double_stars.ssc:39
msgid "Easy double"
msgstr ""

#: scripts/double_stars.ssc:40
msgid "μ Scorpii"
msgstr ""

#: scripts/double_stars.ssc:40
msgid "5.8 arcminutes (ENE)"
msgstr ""

#: scripts/double_stars.ssc:40
msgid "Showcase double!"
msgstr ""

#: scripts/double_stars.ssc:41
msgid "ζ Scorpii"
msgstr ""

#: scripts/double_stars.ssc:41
msgid "6.5 arcminutes (W)"
msgstr ""

#: scripts/double_stars.ssc:42
msgid "ε Lyrae"
msgstr ""

#: scripts/double_stars.ssc:42
msgid "3.5 arcminutes (N)"
msgstr ""

#: scripts/double_stars.ssc:43
msgid "δ Lyrae"
msgstr ""

#: scripts/double_stars.ssc:43
msgid "10.3 arcminutes (WNW)"
msgstr ""

#: scripts/double_stars.ssc:44
msgid "ν Sagittarii"
msgstr ""

#: scripts/double_stars.ssc:44
msgid "13.9 arcminutes (ENE)"
msgstr ""

#: scripts/double_stars.ssc:45
msgid "ο1 and ο2 Cygni"
msgstr ""

#: scripts/double_stars.ssc:45
msgid "61.3 arcminutes (NNE)"
msgstr ""

#: scripts/double_stars.ssc:46
msgid "ο1 Cygni (ο1 Cygni, 30 Cyg and HD 192579)"
msgstr ""

#: scripts/double_stars.ssc:46
msgid "5.6 arcminutes (NW)"
msgstr ""

#: scripts/double_stars.ssc:46
msgid "Moderately difficult optical triple star"
msgstr ""

#: scripts/double_stars.ssc:47
msgid "Algedi"
msgstr ""

#: scripts/double_stars.ssc:47
msgid "6.3 arcminutes (WNW)"
msgstr ""

#: scripts/double_stars.ssc:78
msgid "Separation:"
msgstr ""

#: scripts/martian_analemma.ssc:17
msgid "Martian analemma"
msgstr ""

#: scripts/martian_analemma.ssc:42
msgid "Sol"
msgstr ""

#: scripts/morsels_1.ssc:15 scripts/morsels_1.ssc:16 scripts/morsels_1.ssc:18
#: scripts/morsels_1.ssc:22 scripts/morsels_1.ssc:23 scripts/morsels_1.ssc:29
#: scripts/morsels_1.ssc:30 scripts/morsels_1.ssc:34 scripts/morsels_1.ssc:36
#: scripts/morsels_1.ssc:38 scripts/morsels_1.ssc:43
msgid "Shadows from Io, Ganymede and Callisto"
msgstr ""

#: scripts/morsels_1.ssc:17 scripts/morsels_1.ssc:19 scripts/morsels_1.ssc:20
#: scripts/morsels_1.ssc:21 scripts/morsels_1.ssc:25 scripts/morsels_1.ssc:26
#: scripts/morsels_1.ssc:27 scripts/morsels_1.ssc:28 scripts/morsels_1.ssc:31
#: scripts/morsels_1.ssc:33 scripts/morsels_1.ssc:35 scripts/morsels_1.ssc:37
#: scripts/morsels_1.ssc:39 scripts/morsels_1.ssc:41 scripts/morsels_1.ssc:42
#: scripts/morsels_1.ssc:44 scripts/morsels_1.ssc:45 scripts/morsels_1.ssc:46
msgid "Shadows from Io, Europe and Callisto"
msgstr ""

#: scripts/morsels_1.ssc:24 scripts/morsels_1.ssc:32 scripts/morsels_1.ssc:40
msgid "Shadows from Europe, Ganymede and Callisto"
msgstr ""

#: scripts/morsels_1.ssc:60
msgid "Triple shadow phenomena of the satellites of Jupiter"
msgstr ""

#: scripts/morsels_1.ssc:62 scripts/morsels_2.ssc:78 scripts/morsels_3.ssc:52
#: scripts/morsels_4.ssc:70
msgid "phenomena in all"
msgstr ""

#: scripts/morsels_1.ssc:77 scripts/morsels_2.ssc:98 scripts/morsels_3.ssc:62
#: scripts/morsels_4.ssc:81
msgid "Event #"
msgstr ""

#: scripts/morsels_1.ssc:78 scripts/morsels_2.ssc:99 scripts/morsels_3.ssc:63
#: scripts/morsels_4.ssc:82
msgid "Date:"
msgstr ""

#: scripts/morsels_1.ssc:79
msgid "Time:"
msgstr ""

#: scripts/morsels_2.ssc:76
msgid "Jupiter without Galilean satellites"
msgstr ""

#: scripts/morsels_2.ssc:100
msgid "Limits of the disappearance:"
msgstr ""

#: scripts/morsels_3.ssc:50
msgid "Occultations of bright stars by planets"
msgstr ""

#: scripts/morsels_4.ssc:68
msgid "Mutual occultations of planets"
msgstr ""

#: scripts/supernova.ssc:23
msgid "Europe, Uraniborg."
msgstr ""

#: scripts/supernova.ssc:31
msgid "Evening of 20 October 1572"
msgstr ""

#: scripts/supernova.ssc:40
msgid "Constellation Cassiopeia"
msgstr ""

#: scripts/supernova.ssc:61
msgid "5 days later..."
msgstr ""

#: scripts/supernova.ssc:67
msgid "Next 3 days..."
msgstr ""

#: scripts/supernova.ssc:73
msgid "New star! But people have not seen it yet..."
msgstr ""

#: scripts/supernova.ssc:78
msgid "Evening of 31 October 1572"
msgstr ""

#: scripts/supernova.ssc:86
msgid "Evening of "
msgstr ""

#: scripts/supernova.ssc:86
msgid " November 1572"
msgstr ""

#: scripts/supernova.ssc:93
msgid "Hooray! First observations in Korea and Europe."
msgstr ""

#: scripts/supernova.ssc:101
msgid "First observations in China."
msgstr ""

#: scripts/supernova.ssc:109
msgid "The clouds are gone and Tycho Brahe the first time watching a new star!"
msgstr ""

#: scripts/supernova.ssc:118
msgid "Next 60 days..."
msgstr ""

#: scripts/supernova.ssc:129
msgid "Next other 40 days..."
msgstr ""

#: scripts/supernova.ssc:150
msgid "The Historical supernovae plugin is not loaded!"
msgstr ""

#: scripts/h400_tour.ssc:16
msgid "The Herschel 400 Catalogue"
msgstr ""

#: scripts/h400_tour.ssc:17
msgid ""
"The Herschel 400 is a subset of John Herschel's General Catalogue of Nebulae "
"and Clusters"
msgstr ""

#: scripts/h400_tour.ssc:18
msgid ""
"published in 1864 of 5,000 objects, and hence also of the New General "
"Catalogue."
msgstr ""

#: scripts/h400_tour.ssc:19
msgid "Vital statistics:"
msgstr ""

#: scripts/h400_tour.ssc:20
msgid "* The catalogue contains 400 objects"
msgstr ""

#: scripts/h400_tour.ssc:21
msgid "* All objects are from the NGC"
msgstr ""

#: scripts/h400_tour.ssc:22
msgid "* All visible in mid northern latitudes"
msgstr ""

#: scripts/h400_tour.ssc:23
msgid "* All visible in 150 mm (6\") or larger telescopes"
msgstr ""

#: scripts/largest_known_stars.ssc:12
msgid "PZ Cassiopeiae"
msgstr ""

#: scripts/largest_known_stars.ssc:13
msgid ""
"PZ Cas is located in a region with heavy dust extinction.\n"
"The quoted size is the average size parameter, the true\n"
"value is from 1,340-1,940."
msgstr ""

#: scripts/largest_known_stars.ssc:14
msgid "VX Sagittarii"
msgstr ""

#: scripts/largest_known_stars.ssc:15
msgid ""
"VX Sgr is a pulsating variable with a large visual range\n"
"and varies significantly in size."
msgstr ""

#: scripts/largest_known_stars.ssc:16
msgid "VV Cephei A"
msgstr ""

#: scripts/largest_known_stars.ssc:17
msgid ""
"VV Cep A is a highly distorted star in a binary system,\n"
"losing mass to its B-type companion VV Cephei B for at least\n"
"part of its orbit."
msgstr ""

#: scripts/largest_known_stars.ssc:18
msgid "RW Cephei"
msgstr ""

#: scripts/largest_known_stars.ssc:19
msgid ""
"RW Cep is variable both in brightness (by at least a factor\n"
"of 3) and spectral type (observed from G8 to M), thus\n"
"probably also in diameter."
msgstr ""

#: scripts/largest_known_stars.ssc:20
msgid "VY Canis Majoris"
msgstr ""

#: scripts/largest_known_stars.ssc:21
msgid ""
"Once thought to be a red hypergiant star so large that it\n"
"contradicted stellar evolutionary theory, improved measurements\n"
"and estimates have brought it down to size."
msgstr ""

#: scripts/largest_known_stars.ssc:22
msgid "AH Scorpii"
msgstr ""

#: scripts/largest_known_stars.ssc:23
msgid ""
"AH Sco is variable by nearly 3 magnitudes in the visual range,\n"
"and an estimated 20% in total luminosity. The variation in diameter\n"
"is not clear because the temperature also varies."
msgstr ""

#: scripts/largest_known_stars.ssc:24
msgid "V766 Centauri A"
msgstr ""

#: scripts/largest_known_stars.ssc:25
msgid ""
"V766 Centauri A is a highly distorted star in a close binary system,\n"
"losing mass to the secondary."
msgstr ""

#: scripts/largest_known_stars.ssc:26
msgid "KW Sagittarii"
msgstr ""

#: scripts/largest_known_stars.ssc:27
msgid "BC Cygni"
msgstr ""

#: scripts/largest_known_stars.ssc:28
msgid "RT Carinae"
msgstr ""

#: scripts/largest_known_stars.ssc:29
msgid "Betelgeuse"
msgstr ""

#: scripts/largest_known_stars.ssc:30
msgid "Ninth brightest star in the night sky."
msgstr ""

#: scripts/largest_known_stars.ssc:31
msgid "Mu Cephei (Herschel's \"Garnet Star\")"
msgstr ""

#: scripts/largest_known_stars.ssc:32
msgid "S Persei"
msgstr ""

#: scripts/largest_known_stars.ssc:33
msgid "In the Perseus Double Cluster."
msgstr ""

#: scripts/largest_known_stars.ssc:34
msgid "RW Cygni"
msgstr ""

#: scripts/largest_known_stars.ssc:35
msgid "Antares A"
msgstr ""

#: scripts/largest_known_stars.ssc:36
msgid "Theta Muscae"
msgstr ""

#: scripts/largest_known_stars.ssc:37
msgid "V1749 Cygni"
msgstr ""

#: scripts/largest_known_stars.ssc:38
msgid "TZ Cassiopeiae"
msgstr ""

#: scripts/largest_known_stars.ssc:39
msgid "IX Carinae"
msgstr ""

#: scripts/largest_known_stars.ssc:40
msgid "TV Geminorum"
msgstr ""

#: scripts/largest_known_stars.ssc:41
msgid "T Cephei"
msgstr ""

#: scripts/largest_known_stars.ssc:42
msgid "V382 Carinae"
msgstr ""

#: scripts/largest_known_stars.ssc:43 scripts/largest_known_stars.ssc:45
msgid "Yellow hypergiant, one of the rarest types of star."
msgstr ""

#: scripts/largest_known_stars.ssc:44
msgid "V509 Cassiopeiae"
msgstr ""

#: scripts/largest_known_stars.ssc:46
msgid "CE Tauri (\"Ruby Star\")"
msgstr ""

#: scripts/largest_known_stars.ssc:47
msgid ""
"Can be occulted by the Moon, allowing accurate determination\n"
"of its apparent diameter."
msgstr ""

#: scripts/largest_known_stars.ssc:48
msgid "R Leporis (\"Hind's Crimson Star\")"
msgstr ""

#: scripts/largest_known_stars.ssc:49
msgid "One of the largest carbon stars existent in the Milky Way Galaxy."
msgstr ""

#: scripts/largest_known_stars.ssc:50
msgid "Alpha Herculis (\"Ras Algethi\")"
msgstr ""

#: scripts/largest_known_stars.ssc:51
msgid "Rho Cassiopeiae"
msgstr ""

#: scripts/largest_known_stars.ssc:52
msgid "A yellow hypergiant, one of the rarest types of a star."
msgstr ""

#: scripts/largest_known_stars.ssc:53
msgid "Mira A (Omicron Ceti)"
msgstr ""

#: scripts/largest_known_stars.ssc:54
msgid "Prototype Mira variable"
msgstr ""

#: scripts/largest_known_stars.ssc:55
msgid "R Doradus"
msgstr ""

#: scripts/largest_known_stars.ssc:56
msgid "Star with the second largest apparent size after the Sun."
msgstr ""

#: scripts/largest_known_stars.ssc:57
msgid "La Superba (Y Canum Venaticorum)"
msgstr ""

#: scripts/largest_known_stars.ssc:58
msgid "One of the coolest and reddest known stars."
msgstr ""

#: scripts/largest_known_stars.ssc:59
msgid "Deneb (Alpha Cygni)"
msgstr ""

#: scripts/largest_known_stars.ssc:60
msgid "19th brightest star in the night sky."
msgstr ""

#: scripts/largest_known_stars.ssc:61
msgid "Rigel A (Beta Orionis A)"
msgstr ""

#: scripts/largest_known_stars.ssc:62
msgid "Seventh brightest star in the night sky."
msgstr ""

#: scripts/largest_known_stars.ssc:63
msgid "Canopus (Alpha Carinae)"
msgstr ""

#: scripts/largest_known_stars.ssc:64
msgid "Second brightest star in the night sky."
msgstr ""

#: scripts/largest_known_stars.ssc:65
msgid "Aldebaran (Alpha Tauri)"
msgstr ""

#: scripts/largest_known_stars.ssc:66
msgid "VV Cephei B"
msgstr ""

#: scripts/largest_known_stars.ssc:67
msgid "The B-type main sequence companion of VV Cephei A."
msgstr ""

#: scripts/largest_known_stars.ssc:92
msgid "Solar radii"
msgstr ""

#: scripts/constellations_tour.ssc:32 scripts/modern_constellations_tour.ssc:32
msgid "Press Ctrl+T to un-hide the toolbar"
msgstr ""

#: scripts/triple_sunrise_and_sunsets.ssc:17
msgid "Location: Mercury, 0N, 90E"
msgstr ""

#: scripts/triple_sunrise_and_sunsets.ssc:51
msgid "Just Before Sunrise....."
msgstr ""

#: scripts/triple_sunrise_and_sunsets.ssc:54
msgid "Surface of Mercury"
msgstr ""

#: scripts/triple_sunrise_and_sunsets.ssc:57
msgid "Day"
msgstr ""

#: scripts/triple_sunrise_and_sunsets.ssc:92
msgid "Sunrise #1"
msgstr ""

#: scripts/triple_sunrise_and_sunsets.ssc:120
msgid "Retro"
msgstr ""

#: scripts/triple_sunrise_and_sunsets.ssc:141
msgid "Sunset #1"
msgstr ""

#: scripts/triple_sunrise_and_sunsets.ssc:159
msgid "Sunrise #2"
msgstr ""

#: scripts/triple_sunrise_and_sunsets.ssc:173
msgid "Later in the afternoon"
msgstr ""

#: scripts/triple_sunrise_and_sunsets.ssc:205
msgid "Sunset #2"
msgstr ""

#: scripts/triple_sunrise_and_sunsets.ssc:225
msgid "Sunrise #3"
msgstr ""

#: scripts/triple_sunrise_and_sunsets.ssc:244
msgid "Sunset #3"
msgstr ""

#: scripts/saturnian_analemma.ssc:17
msgid "Saturnian analemma"
msgstr ""

#: scripts/saturnian_analemma.ssc:42 scripts/uranian_analemma.ssc:42
msgid "Solar day"
msgstr ""

#: scripts/uranian_analemma.ssc:17
msgid "Uranian analemma"
msgstr ""

#: scripts/messier_marathon.ssc:18
msgid "Messier Marathon"
msgstr ""

#: scripts/messier_marathon.ssc:85
msgid "Difficulty is 0"
msgstr ""

#: scripts/messier_marathon.ssc:86
msgid "Very diffuse, very dark, very difficult"
msgstr ""

#: scripts/messier_marathon.ssc:87
msgid "Easier than M74, small"
msgstr ""

#: scripts/messier_marathon.ssc:88
msgid "Visible to the naked eye, no difficulty"
msgstr ""

#: scripts/messier_marathon.ssc:89
msgid "More difficult than M110 to verify, small"
msgstr ""

#: scripts/messier_marathon.ssc:90
msgid "In the west of M31, it is easy to detect"
msgstr ""

#: scripts/messier_marathon.ssc:91
msgid "Diffuse, great, brighter"
msgstr ""

#: scripts/messier_marathon.ssc:92
msgid "Small, easy to locate, not as horror as imagined"
msgstr ""

#: scripts/messier_marathon.ssc:93
msgid "Difficult to locate, easy to detect and verify"
msgstr ""

#: scripts/messier_marathon.ssc:94
msgid "Small, easy to locate, don't confuse with NGC663"
msgstr ""

#: scripts/messier_marathon.ssc:95
msgid "Large, scattered, easy"
msgstr ""

#: scripts/messier_marathon.ssc:96
msgid "Fuzzy, easy to find, accompanied by a small star"
msgstr ""

#: scripts/messier_marathon.ssc:97
msgid "Visible to the naked eye, better than M31"
msgstr ""

#: scripts/messier_marathon.ssc:98
msgid "Very close to M42, not easy to see the fuzzy"
msgstr ""

#: scripts/messier_marathon.ssc:99
msgid "Small, dark, few stars around"
msgstr ""

#: scripts/messier_marathon.ssc:100
msgid "Easy to locate, easy to detect in a good transparency."
msgstr ""

#: scripts/messier_marathon.ssc:101
msgid "Visible to the naked eye, easier"
msgstr ""

#: scripts/messier_marathon.ssc:102 scripts/messier_marathon.ssc:154
#: scripts/messier_marathon.ssc:175
msgid "Easy to locate and verify"
msgstr ""

#: scripts/messier_marathon.ssc:103 scripts/messier_marathon.ssc:104
msgid "Large, scattered"
msgstr ""

#: scripts/messier_marathon.ssc:105
msgid "Bright, easy to verify, difficult to locate"
msgstr ""

#: scripts/messier_marathon.ssc:106
msgid "Large, difficult to locate, easy to confuse with NGC2506"
msgstr ""

#: scripts/messier_marathon.ssc:107
msgid "Easy, more scattered"
msgstr ""

#: scripts/messier_marathon.ssc:108
msgid "Easy, fuzzy"
msgstr ""

#: scripts/messier_marathon.ssc:109
msgid "Easy, scattered"
msgstr ""

#: scripts/messier_marathon.ssc:110
msgid "Easy, large, scattered"
msgstr ""

#: scripts/messier_marathon.ssc:111
msgid "Very close to M96 and M105"
msgstr ""

#: scripts/messier_marathon.ssc:112
msgid "Easy to locate and verify, assist to verify M95 and M105"
msgstr ""

#: scripts/messier_marathon.ssc:113
msgid "Dark"
msgstr ""

#: scripts/messier_marathon.ssc:114
msgid "Very close, it’s like M81 and M82"
msgstr ""

#: scripts/messier_marathon.ssc:115
msgid "There is NGC3628 nearby, don't think you have found a new comet"
msgstr ""

#: scripts/messier_marathon.ssc:116
msgid "Like the darkened M33, require a high sky conditions"
msgstr ""

#: scripts/messier_marathon.ssc:117
msgid "Difficult to locate, 4 stars of the inverted 7 shape beside"
msgstr ""

#: scripts/messier_marathon.ssc:118
msgid "Easy, you can see the companion galaxy"
msgstr ""

#: scripts/messier_marathon.ssc:119
msgid "Easy to verify"
msgstr ""

#: scripts/messier_marathon.ssc:120
msgid "Not easy to locate, small, slightly dark"
msgstr ""

#: scripts/messier_marathon.ssc:121
msgid "Not easy to locate, bright"
msgstr ""

#: scripts/messier_marathon.ssc:122
msgid "Not easy to locate, no bright stars nearby"
msgstr ""

#: scripts/messier_marathon.ssc:123
msgid "Easy to locate"
msgstr ""

#: scripts/messier_marathon.ssc:124
msgid "Beside M60, it is easy to verify"
msgstr ""

#: scripts/messier_marathon.ssc:125
msgid "It’s an easier one"
msgstr ""

#: scripts/messier_marathon.ssc:126
msgid "As bright as M85, easy to verify"
msgstr ""

#: scripts/messier_marathon.ssc:127
msgid "Dark, hard to look"
msgstr ""

#: scripts/messier_marathon.ssc:128
msgid "Easy to detect than M89, easy to locate"
msgstr ""

#: scripts/messier_marathon.ssc:129
msgid "Easy to locate, detect once"
msgstr ""

#: scripts/messier_marathon.ssc:130
msgid "There is an NGC4438 near M84 and M86, don't make a mistake"
msgstr ""

#: scripts/messier_marathon.ssc:131
msgid "M84 are together, closer to NGC4438"
msgstr ""

#: scripts/messier_marathon.ssc:132
msgid "Just above M90, almost like M90"
msgstr ""

#: scripts/messier_marathon.ssc:133
msgid "Look hard"
msgstr ""

#: scripts/messier_marathon.ssc:134
msgid "This bunch of things in the Virgo Cluster is not easy"
msgstr ""

#: scripts/messier_marathon.ssc:135
msgid "M99 is easier to verify than M98"
msgstr ""

#: scripts/messier_marathon.ssc:136
msgid "First find M100 and then find M98 and M99"
msgstr ""

#: scripts/messier_marathon.ssc:137
msgid "Far away, but very bright, easy to find"
msgstr ""

#: scripts/messier_marathon.ssc:138
msgid "Small, not easy to locate, a little difficult"
msgstr ""

#: scripts/messier_marathon.ssc:139
msgid "Not easy to locate, easy to verify"
msgstr ""

#: scripts/messier_marathon.ssc:140
msgid "Easy to locate and verify, small"
msgstr ""

#: scripts/messier_marathon.ssc:141
msgid "Easy to verify, a star 5 magnitude nearby"
msgstr ""

#: scripts/messier_marathon.ssc:142
msgid "Visible to the naked eye, big, bright"
msgstr ""

#: scripts/messier_marathon.ssc:143
msgid "Bright and big in the galaxies, not hard to find"
msgstr ""

#: scripts/messier_marathon.ssc:144
msgid "Bright, easy to verify"
msgstr ""

#: scripts/messier_marathon.ssc:145
msgid "Easy to verify in a right location"
msgstr ""

#: scripts/messier_marathon.ssc:146
msgid "Famous, like the shoulder pole star"
msgstr ""

#: scripts/messier_marathon.ssc:147
msgid "It may be easier to locate from the Dragon"
msgstr ""

#: scripts/messier_marathon.ssc:148
msgid "Small, 20 times or more is still easy to detect"
msgstr ""

#: scripts/messier_marathon.ssc:149
msgid "More difficult than M57, not easy to locate, very small"
msgstr ""

#: scripts/messier_marathon.ssc:150
msgid "Easy, small, looks like a cluster of stars 7-8 magnitude"
msgstr ""

#: scripts/messier_marathon.ssc:151
msgid "Larger than imagined, very scattered, not easy to locate"
msgstr ""

#: scripts/messier_marathon.ssc:152
msgid "Find M71 first, then find M27, and will be easier to locate"
msgstr ""

#: scripts/messier_marathon.ssc:153
msgid "Easy to locate, easy to verify in 50 binos"
msgstr ""

#: scripts/messier_marathon.ssc:155
msgid "Bright, like M13, easy to find"
msgstr ""

#: scripts/messier_marathon.ssc:156
msgid "Detect it with M12, brighter than M12"
msgstr ""

#: scripts/messier_marathon.ssc:157
msgid "Difficult to locate, easy to verify"
msgstr ""

#: scripts/messier_marathon.ssc:158
msgid "Small, not easy to verify"
msgstr ""

#: scripts/messier_marathon.ssc:159
msgid "Bright, big, don't forget to detect NGC6144 nearby"
msgstr ""

#: scripts/messier_marathon.ssc:160
msgid "Not easy to verify at low power, easy at high power"
msgstr ""

#: scripts/messier_marathon.ssc:161
msgid "Follow the line of M4 and Antares, easy to verify"
msgstr ""

#: scripts/messier_marathon.ssc:162
msgid "Looking down from M19, darker than M19, but easy to verify"
msgstr ""

#: scripts/messier_marathon.ssc:163
msgid "Easy to locate, bright, and almost like M13"
msgstr ""

#: scripts/messier_marathon.ssc:164
msgid "Easy to locate M26 by M11"
msgstr ""

#: scripts/messier_marathon.ssc:165
msgid "Easy"
msgstr ""

#: scripts/messier_marathon.ssc:166 scripts/messier_marathon.ssc:179
msgid "Difficult to locate, bright, easy to verify"
msgstr ""

#: scripts/messier_marathon.ssc:167
msgid "Beside M81, vertical to each other"
msgstr ""

#: scripts/messier_marathon.ssc:168
msgid "Large, a little fuzzy"
msgstr ""

#: scripts/messier_marathon.ssc:168
msgid "Beside M20"
msgstr ""

#: scripts/messier_marathon.ssc:169
msgid "It’s not hard to see the diffuse nebula"
msgstr ""

#: scripts/messier_marathon.ssc:170
msgid "Visible to the naked eye, extremely easy"
msgstr ""

#: scripts/messier_marathon.ssc:171
msgid "Big, easy"
msgstr ""

#: scripts/messier_marathon.ssc:171
msgid "Easy to locate and verify, bright"
msgstr ""

#: scripts/messier_marathon.ssc:172
msgid "M13 second"
msgstr ""

#: scripts/messier_marathon.ssc:173
msgid "Too big, scattered, not easy to verify"
msgstr ""

#: scripts/messier_marathon.ssc:174
msgid "Bigger than M6"
msgstr ""

#: scripts/messier_marathon.ssc:176
msgid "Brighter than imagined, can be detected with 60 binos"
msgstr ""

#: scripts/messier_marathon.ssc:177
msgid "Darker than M97, long strips, look hard"
msgstr ""

#: scripts/messier_marathon.ssc:178
msgid "Easy to verify with more than 20 times binos"
msgstr ""

#: scripts/messier_marathon.ssc:180
msgid "In the morning light, it looks too hard, dark"
msgstr ""

#: scripts/messier_marathon.ssc:289
msgid "cannot be seen now"
msgstr ""