forked from Stellarium/stellarium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
translations_regions.h
658 lines (655 loc) · 40.2 KB
/
translations_regions.h
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
/*
* Stellarium
* Copyright (C) 2021 Alexander Wolf
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA.
*/
class GeoRegionsTranslations
{
void GeoRegionsTranslations(){;}
static translationGeoRegions()
{
// Generate Gettext strings for traduction
Q_ASSERT(0);
// =====================================================================
// List of regions
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/North_Africa
N_("Northern Africa");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/East_Africa
N_("Eastern Africa");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Central_Africa
N_("Central Africa");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Southern_Africa
N_("Southern Africa");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/West_Africa
N_("Western Africa");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Caribbean
N_("Caribbean");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Central_America
N_("Central America");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/South_America
N_("Southern America");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Northern_America
N_("Northern America");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Antarctica
N_("Antarctica");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/North_Asia
N_("Northern Asia");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Central_Asia
N_("Central Asia");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Eastern_Asia
N_("Eastern Asia");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Southeast_Asia
N_("South-eastern Asia");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/South_Asia
N_("Southern Asia");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Western_Asia
N_("Western Asia");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Eastern_Europe
N_("Eastern Europe");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Northern_Europe
N_("Northern Europe");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Southern_Europe
N_("Southern Europe");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Western_Europe
N_("Western Europe");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Australasia
N_("Australasia");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Melanesia
N_("Melanesia");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Micronesia
N_("Micronesia");
// TRANSLATORS: Name of region on Earth
// TRANSLATORS: https://en.wikipedia.org/wiki/Polynesia
N_("Polynesia");
// TRANSLATORS: Name of region on Mercury
N_("Aparangi Planitia");
// TRANSLATORS: Name of region on Mercury
// TRANSLATORS: https://en.wikipedia.org/wiki/Borealis_Planitia
N_("Borealis Planitia");
// TRANSLATORS: Name of region on Mercury
// TRANSLATORS: https://en.wikipedia.org/wiki/Budh_Planitia
N_("Budh Planitia");
// TRANSLATORS: Name of region on Mercury
// TRANSLATORS: https://en.wikipedia.org/wiki/Caloris_Planitia
N_("Caloris Planitia");
// TRANSLATORS: Name of region on Mercury
N_("Lugus Planitia");
// TRANSLATORS: Name of region on Mercury
N_("Mearcair Planitia");
// TRANSLATORS: Name of region on Mercury
// TRANSLATORS: https://en.wikipedia.org/wiki/Odin_Planitia
N_("Odin Planitia");
// TRANSLATORS: Name of region on Mercury
N_("Otaared Planitia");
// TRANSLATORS: Name of region on Mercury
N_("Papsukkal Planitia");
// TRANSLATORS: Name of region on Mercury
// TRANSLATORS: https://en.wikipedia.org/wiki/Sihtu_Planitia
N_("Sihtu Planitia");
// TRANSLATORS: Name of region on Mercury
// TRANSLATORS: https://en.wikipedia.org/wiki/Sobkou_Planitia
N_("Sobkou Planitia");
// TRANSLATORS: Name of region on Mercury
N_("Stilbon Planitia");
// TRANSLATORS: Name of region on Mercury
// TRANSLATORS: https://en.wikipedia.org/wiki/Suisei_Planitia
N_("Suisei Planitia");
// TRANSLATORS: Name of region on Mercury
// TRANSLATORS: https://en.wikipedia.org/wiki/Tir_Planitia
N_("Tir Planitia");
// TRANSLATORS: Name of region on Mercury
N_("Turms Planitia");
// TRANSLATORS: Name of region on Mercury
N_("Utaridi Planitia");
// TRANSLATORS: Name of region on Mercury
N_("Catuilla Planum");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/Aphrodite_Terra
N_("Aphrodite Terra");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/Ishtar_Terra
N_("Ishtar Terra");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/Lada_Terra
N_("Lada Terra");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/Alpha_Regio
N_("Alpha Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/Asteria_Regio
N_("Asteria Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Atla Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Bell Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/Beta_Regio
N_("Beta Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Dione Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Dsonkwa Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Eistla Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Hyndla Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Imdr Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Ishkus Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Laufey Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Neringa Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/Ovda_Regio
N_("Ovda Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/Phoebe_Regio
N_("Phoebe Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Themis Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Thetis Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Ulfrun Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Vasilisa Regio");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Aibarchin Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Aino Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Akhtamar Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Alma-Merghen Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Atalanta Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Audra Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Bereghinya Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Dzerassa Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Fonueha Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Ganiki Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/Guinevere_Planitia
N_("Guinevere Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Gunda Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Helen Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Hinemoa Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Imapinua Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Kanykey Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Kawelu Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Laimdota Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Lavinia Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Leda Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Libuse Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Llorona Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Louhi Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Lowana Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Mugazo Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Navka Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Niobe Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Nsomeka Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Nuptadi Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Rusalka Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/Sedna_Planitia
N_("Sedna Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Snegurochka Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Sogolon Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Tahmina Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Tilli-Hanum Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Tinatin Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Undine Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Vellamo Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Vinmara Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Wawalag Planitia");
// TRANSLATORS: Name of region on Venus
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Venus
N_("Zhibek Planitia");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Oceanus_Procellarum
N_("Ocean of Storms");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Anguis
N_("Serpent Sea");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Australe
N_("Southern Sea");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Cognitum
N_("Sea that has Become Known");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Crisium
N_("Sea of Crises");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Fecunditatis
N_("Sea of Fecundity");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Frigoris
N_("Sea of Cold");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Humboldtianum
N_("Sea of Humboldt");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Humorum
N_("Sea of Moisture");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Imbrium
N_("Sea of Showers");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Ingenii
N_("Sea of Cleverness");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Insularum
N_("Sea of Islands");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Marginis
N_("Sea of the Edge");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Moscoviense
N_("Sea of Moscow");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Nectaris
N_("Sea of Nectar");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Nubium
N_("Sea of Clouds");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Orientale
N_("Eastern Sea");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Serenitatis
N_("Sea of Serenity");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Smythii
N_("Smyth's Sea");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Spumans
N_("Foaming Sea");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Tranquillitatis
N_("Sea of Tranquillity");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Undarum
N_("Sea of Waves");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Mare_Vaporum
N_("Sea of Vapors");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Northern highlands");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Montes_Jura
N_("Jura mountains");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Alps province");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Caucasus province");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Lacus_Somniorum
N_("Lake of Dreams");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Montes_Taurus
N_("Taurus mountains");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Sinus_Roris
N_("Bay of Dew");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Apennines province");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Carpatian province");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Sinus_Aestuum
N_("Seething Bay");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Aestuum upland");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Haemus province");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Procellarum upland");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Central crater province");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Macro-crater province");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Southeastern crater province");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Cratered plain province");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Southwestern crater province");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Nectaris crater province");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Pyrenees province");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Western highlands");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Eastern highlands");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Sinus_Medii
N_("Bay of the center");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
// TRANSLATORS: https://en.wikipedia.org/wiki/Palus_Epidemiarum
N_("Marsh of Epidemics");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Far-side southern lowland");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Far-side northern lowland");
// TRANSLATORS: Name of region on the Moon
// TRANSLATORS: See also 1961 U.S.G.S. Physical Map of the Moon: https://commons.wikimedia.org/wiki/File:1961_U.S.G.S._Physical_Map_of_the_Moon_(wall_map)_-_landmark_Lunar_map%5E_-_Geographicus_-_MoonPhysical-usgs-1961.jpg
N_("Far-side central highland");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Acidalia_Planitia
N_("Acidalia Planitia");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Amazonis_Planitia
N_("Amazonis Planitia");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Arcadia_Planitia
N_("Arcadia Planitia");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Argyre_Planitia
N_("Argyre Planitia");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Chryse_Planitia
N_("Chryse Planitia");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Elysium_Planitia
N_("Elysium Planitia");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Eridania_Planitia
N_("Eridania Planitia");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Hellas_Planitia
N_("Hellas Planitia");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Isidis_Planitia
N_("Isidis Planitia");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Utopia_Planitia
N_("Utopia Planitia");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Aonia_Terra
N_("Aonia Terra");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Arabia_Terra
N_("Arabia Terra");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Margaritifer_Terra
N_("Margaritifer Terra");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Noachis_Terra
N_("Noachis Terra");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Promethei_Terra
N_("Promethei Terra");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Tempe_Terra
N_("Tempe Terra");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Terra_Cimmeria
N_("Terra Cimmeria");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Terra_Sabaea
N_("Terra Sabaea");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Terra_Sirenum
N_("Terra Sirenum");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Tyrrhena_Terra
N_("Tyrrhena Terra");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Xanthe_Terra
N_("Xanthe Terra");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Vastitas_Borealis
N_("Vastitas Borealis");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Tharsis
N_("Tharsis");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Planum_Boreum
N_("Planum Boreum");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Planum_Australe
N_("Planum Australe");
// TRANSLATORS: Name of region on Mars
// TRANSLATORS: See also MOLA global image showing boundaries of regional feature names: https://planetarynames.wr.usgs.gov/images/mola_regional_boundaries.pdf
// TRANSLATORS: https://en.wikipedia.org/wiki/Lunae_Palus_quadrangle
N_("Lunae Planum");
// TRANSLATORS: Name of region on Titan
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Titan
N_("Garotman Terra");
// TRANSLATORS: Name of region on Titan
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Titan
N_("Tollan Terra");
// TRANSLATORS: Name of region on Titan
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Titan
N_("Tsiipiya Terra");
// TRANSLATORS: Name of region on Titan
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Titan
N_("Yalaing Terra");
// TRANSLATORS: Name of region on Titan
// TRANSLATORS: https://en.wikipedia.org/wiki/Xanadu_(Titan)
N_("Xanadu");
// TRANSLATORS: Name of region on Titan
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Titan
N_("Kraken Mare");
// TRANSLATORS: Name of region on Titan
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Titan
N_("Ligeia Mare");
// TRANSLATORS: Name of region on Titan
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Titan
N_("Punga Mare");
// TRANSLATORS: Name of region on Titan
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Titan
N_("Concordia Regio");
// TRANSLATORS: Name of region on Titan
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Titan
N_("Hetpet Regio");
// TRANSLATORS: Name of region on Titan
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Titan
N_("Hotei Regio");
// TRANSLATORS: Name of region on Titan
// TRANSLATORS: https://en.wikipedia.org/wiki/List_of_geological_features_on_Titan
N_("Ochumare Regio");
// TRANSLATORS: Name of region on Titan
// TRANSLATORS: https://en.wikipedia.org/wiki/Tui_Regio
N_("Tui Regio");
}
};