-
Notifications
You must be signed in to change notification settings - Fork 9
/
cn.js
1796 lines (1714 loc) · 65.5 KB
/
cn.js
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
const cn = {
general: {
home: "主页",
next: "下一项",
ok: "确认",
done: "完成",
cancel: "取消",
confirm: "确认",
apply: "应用",
enter: "输入",
scan: "扫描",
save: "保存",
save_as: "保存为",
overwrite: "覆盖",
select: "选择",
hardware: "硬件",
signal: "信号",
usb: "USB",
devices: "设备",
connect: "连接",
disconnect: "断开",
schedule: "Schedule",
walk: "Walk",
yes: "是",
no: "否",
ignore: "忽略",
error: "错误",
back: "返回",
delete: "删除",
remove: "移除",
online: "在线",
offline: "离线",
cloud: "云端",
remote: "遥控",
preset: "预设",
camera: "相机",
focuser: "电动调焦座",
filter_wheel: "滤镜轮",
filter: "滤镜",
exposure: "曝光",
binning: "像素合并",
left: "Left",
top: "Top",
action: "动作",
scope_type: "望远镜类型",
solver_type: "解析类型",
type: "类型",
driver: "驱动",
gain: "增益",
offset: "偏置",
format: "格式",
iso: "ISO",
count: "连拍",
delay: "延时",
status: "状态",
target: "目标",
angle: "角度",
sep_profile: "SEP文件",
direction: "方向",
rotation: "旋转",
automatic: "自动",
manual: "手动",
progress: "处理",
position_angle: "方位角",
details: "细节",
skip: "跳过",
updated: "已更新",
new: "新建",
remote_support: "远程帮助",
logout: "登出",
setting: "设置",
hours: "时",
minutes: "分",
seconds: "秒",
introduction: "介绍",
examples: "示例",
chat: "聊天",
controls: "控制",
balance: "Balance",
white: "White",
black: "Black",
azimuth: "方位角",
altitude: "高度角",
tags: "标签",
filename: "文件名",
size: "尺寸",
frame: "画幅",
temperature: "温度",
name: "名称",
date: "日期",
resolution: "分辨率",
monitor: "监控",
clear_all: "清除所有",
pixels: "像素",
select_file: "选择文件",
select_folder: "选择文件夹",
selected_dir: "已选目录",
new_folder: "输入新文件夹名称",
create_new_folder: "在此处创建新文件夹",
empty_folder: "文件夹为空",
train: "光路",
no_data_found: "未找到数据",
track: "跟踪",
jobs: "工作",
category: "类别",
profile: "档案",
arcmin: "角分",
calculate: "计算",
update: "更新",
center: "中心",
learn_more: "了解更多",
select_option: "请选择...",
search: "查找...",
no_results: "无结果",
on: "开",
off: "关",
go: "前往",
add: "添加",
load: "加载",
edit: "编辑",
refresh: "刷新",
reset: "重置",
reset_all: "全部重置",
start: "开始",
stop: "停止",
stopping: "停止中",
clear: "清除",
solve: "解析",
parked: "停放",
unparked: "取消停放",
open: "打开",
close: "关闭",
opened: "已打开",
closed: "已关闭",
enable: "允许",
disable: "禁止",
select_time: "选择时间",
set: "设置",
logging: "日志",
drivers: "驱动",
network: "网络",
submit: "提交",
execute: "运行",
retry: "重试",
// Confirm Delete Alert
alert_confirm_delete_title: "确认删除",
alert_delete_profile_body: "你确认要删除已选择的文件吗?",
alert_delete_scope_body: "你确定要删除已选择的望远镜吗?",
// Confirm
alert_confirmation_title: "确认",
alert_confirmation_files:
"Are you sure you would like to delete the selected files",
alert_confirmation_body: "是否确实要使用此名称创建{0}?",
alert_overwrite_body: "文件“{0}”已存在。是否要覆盖它?",
network_error: "请确认StellarMate已联网",
internet_required: "请确认你已经联网",
alert_comm_error_title: "连接错误",
alert_comm_error_body: "与StellarMate连接失败.请确认你已经连接网络",
ekoslive_down_title: "EkosLive停止运行",
ekoslive_down_body:
"EkosLive不在工作中,尝试重启StellarMate或者联系StellarMate技术支持.",
kstars_down_title: "KStars停止工作",
kstars_down_body:
"KStars不在工作中,尝试重启StellarMate或者联系StellarMate技术支持.",
reset_default: "恢复默认设置",
external_storage: "外部存储器",
success: "成功",
failed: "失败",
file_too_large: "文件过大",
public: "Public",
private: "Private",
label: "Label",
users: "Users",
title: "Title",
submitted_by: "Submitted By",
submitted_date: "Submitted Date",
publish_status: "Publish Status",
submission_status: "Submission Status",
access_level: "Access Level",
description: "Description",
acquisition_details: "Acquisition Details",
models: "Models",
manufacturers: "Manufacturers",
logo: "Logo",
approve: "Approve",
reject: "Reject",
confirm_approve: "Confirm Approve",
confirm_reject: "Confirm Reject",
confirm_ban: "Confirm Ban",
confirm_delete: "Confirm Delete",
confirm_ignore: "Confirm Ignore",
product_range: "Product Range",
image: "Image",
owner: "Owner",
country: "Country",
region: "Region",
pictures_captured: "Pictures Captured",
latitude: "Latitude",
longitude: "Longitude",
elevation: "Elevation",
no_filter: "No Filter",
new_observatory: "New Observatory",
go_back: "Go Back",
go_home: "Go back to Home",
go_to_feed: "Go to Feed",
go_to_users: "Go to Users",
go_to_equipment: "Go to Equipment",
go_to_observatories: "Go to Observatories",
absent_page: "Oops! The page you're looking for doesn't exist.",
absent_user: "Oops! The user you're looking for doesn't exist.",
imaging: "Imaging",
engage: "Engage",
trash: "Trash",
unpublish: "Unpublish",
duplicate: "Duplicate",
blacklist: "Blacklist",
ban: "Ban",
delete: "Delete",
},
darkLibrary: {
title: "暗场库",
darks: "暗场",
defects: "缺陷",
prefer: "校准方式",
create_darks_title: "创建暗场",
create_defects_title: "创建缺陷图",
view_masters_title: "查看主暗场",
progress: "处理",
create_darks: {
exposure_range: "曝光范围",
to: "To",
temp_range: "温度范围",
binning: "像素合并",
binning_one: "1x1",
binning_two: "2x2",
binning_four: "4x4",
total_images: "总共",
},
create_defect_map: {
master_dark: "主暗场",
bad_pixels: "坏点",
hot_pixels: "热噪",
generate_map: "生成图像",
save_map: "保存",
deviation: "σ",
},
},
achievements: {
score: "总得分",
badge: "徽章",
achievements: "成就",
unlocked: "解锁成就",
points: "分数",
completed: "已完成",
not_completed: "未完成",
capture_preview_title: "首次之光!",
ten_sequences_title: "星河相连",
mount_goto_title: "魔法锁敌千里外",
video_recording_title: "导演之剪",
weather_check_title: "腾云驾雾",
live_stacking_title: "星光闪耀",
create_darks_title: "黑暗的力量",
create_defect_title: "马赛克大师",
import_mosaic_title: "拼图达人",
messier_captured_title: "梅西耶探索者",
all_messier_title: "梅西耶马拉松",
scheduler_title: "序列规划师",
capture_master_title: "天空捕手",
capture_legend_title: "天空传说",
paa_title: "完美主义者",
guide_rms_title: "导星王中王",
capture_preview_description:
"拍摄预览图像:拍摄一张精美的预览图像,展现宇宙的神秘面貌。",
ten_sequences_description:
"星河连线:拍摄包含10张图像的序列,记录下宇宙中的连绵星光,串联成一幅壮丽的星河画卷。",
mount_goto__description:
"魔法定位:在新图像被捕获时,按住目标3秒钟来使用目标GOTO,在茫茫星空中精确定位,让您的望远镜准确锁定目标。",
video_recording_description:
"导演之剪:录制1分钟的时间流逝视频,将星空的变幻与宇宙的奥秘化为永恒的画面。",
weather_check__description:
"云层猎手:利用天气信息中的云图,至少放大8倍以检查天气,保证你的拍摄不受云层遮挡,尽情追寻星空的美丽。",
live_stacking_description:
"星光闪耀:实时叠加图像,至少执行5张图像,让宇宙中的星光在你的相机中闪耀绽放,谁说短曝不能拍深空。",
create_darks_description:
"黑暗的力量:创建50张暗场图像,用暗场干掉那些可恶的噪点。",
create_defect_description:
"马赛克大师:在马赛克修补图中生成80个以上的热点/冷点像素,用创造力修复图像的瑕疵,让宇宙的美丽更加完整无缺。",
import_mosaic_description:
"拼图达人:从相机导入需要的拼接图像,然后将多张图像拼接在一起,由此展现出更广阔的宇宙景象。",
messier_captured_description:
"梅西耶探索者:捕获了一个梅西耶天体,留下永恒的纪念,展示你对宇宙的探索精神和敏锐的观察力。",
all_messier_description:
"梅西耶马拉松:捕获了所有梅西耶天体,重走先人的探索之路。完成这一壮举,证明你是宇宙探索的真正先锋。",
scheduler_description:
"序列规划师:完成一个2小时或更长时间的拍摄序列,精准安排拍摄时间,捕捉到最佳的宇宙瞬间。",
capture_master_description:
"天空捕手:总共拍摄了500张图像,你是真正的天空捕手,记录下宇宙中的每一个细节和美丽瞬间。",
capture_legend_description:
"天空传说:总共拍摄了1000张图像,你已经成为天空摄影的传奇,你的作品将永远流传在宇宙之中。",
paa_description:
"完美主义者:在误差低于30角秒的情况下完成PAA,你的精确度和追求完美的态度令人钦佩。",
guide_rms_description:
"导星之王:使导星的总RMS误差小于0.5角秒,你是真正的导星之王,在与风、大气抖动的斗争中取得完美胜利。",
filtered_image_description: "啊,是窄带!",
gallery_image_description: "回忆过往",
alert_reset_title: "重置成就",
alert_agree_reset_body: "您确定要重置所有成就吗?",
no_description: "No description",
complete_tour_guide: "Complete Tour Guide",
file_stored: "File Stored",
},
tourGuide: {
tour_guide: "指导",
previous: "上一页",
finish: "完成",
title_devices_list: "设备列表",
title_device_actions: "设备操作",
title_profiles: "设备配置文件",
title_port_selector: "端口选择",
title_trains: "光路配置",
title_weather_bar: "天气信息栏",
title_cloud_report: "云量报告",
title_next: "下一步是什么?",
title_focus: "调焦",
title_align: "对准",
title_guide: "导星",
title_capture: "拍摄",
title_mount: "赤道仪",
title_observatory: "天文台",
title_scheduler: "序列",
title_indi: "INDI控制面板",
title_quick_controls: "快速控制",
title_preview: "预览图像",
title_framing: "拍摄",
title_live_video: "实时视频",
title_stop: "停止",
title_live_stacking: "实时叠加",
title_quick_settings: "快速相机设置",
title_targets_info: "目标信息",
title_search_bar: "搜索栏",
title_time_controls: "时间设置",
title_target_controls: "目标控制",
title_object_info: "目标信息",
title_fov: "视场",
title_target_action: "目标动作",
title_stella_prompt: "Stella prompt",
title_focus_initial: "Current Position",
title_focus_steps: "Target Position",
title_focus_size: "Step Size",
description_devices_list:
"自动发现和手动添加的StellarMate设备列表。单击重新扫描以检测网络上的新StellarMate设备。",
description_device_actions:
"从列表中删除设备,执行恢复出厂设置或注销操作。",
description_profiles:
"在设备配置文件中管理天文设备。必须在启动配置文件前将所有设备接通并连接到StellarMate。开始配置文件后,请使用光路配置来配置每个设备的功能,然后单击Ekos按钮开始天体摄影会话。",
description_port_selector:
"在首次启动配置文件后,选择您设备的串口和/或网络设置。",
description_trains:
"使用视场配置来管理您的设备。为每个相机创建一个配置文件。",
description_weather_bar: "简要的天气报告和当前站点波尔特暗夜等级",
description_cloud_report: "云量超过3小时。",
description_next:
"通过单击目标选项卡,探索适用的天文目标。使用Go&Solve将您的目标居中在相机视场中。打开定位助手,实现完美的期望方向。前往Ekos选项卡设置图像序列和实时叠加图像。",
description_focus: "使用电调进行对焦。",
description_align: "通过解析图像获取当前指向坐标,使望远镜精确对准目标。",
description_guide:
"跟踪您的目标,保持赤道仪锁定,并使其能够进行长时间曝光。",
description_capture:
"使用可配置的设置创建图像序列。管理滤镜轮和暗场存储库。",
description_mount: "切换跟踪,归位和中天翻转设置。配置自动零位。",
description_observatory: "控制圆顶和防尘盖设备。",
description_scheduler:
"通过选择目标和序列文件来自动化整个天体摄影。从Telescopius导入拼接。",
description_indi: "直接访问INDI控制面板。",
description_quick_controls: "快速访问赤道仪,相机和转台控件。",
description_preview: "拍摄图像预览。",
description_framing: "无限循环曝光,直到停止",
description_live_video: "开始实时视频流并报错到本地。",
description_stop: "停止任何正在进行的曝光或录制。",
description_live_stacking:
"实时叠加图像以增加信噪比。如果存在进行中的拍摄序列,则实时叠加将使用实时获取的图像; 否则,它将使用快速相机设置中的设置循环曝光。",
description_quick_settings: "选择视场配置文件并配置相机和滤镜轮设置。",
description_targets_info:
"目标管理器是StellarMate规划工具,可简化观测操作。从数千个天体中搜索并使用简单的标准进行过滤。使用定位助手定位您的目标。",
description_search_bar:
"过滤现有清单中的对象或通过输入名称并单击搜索按钮来搜索新对象。",
description_time_controls:
"如果Ekos处于离线状态,请调整目标日期和时间计算。",
description_target_controls:
"查看黄昏信息,管理视场范围,调整滤镜并选择目标类型。",
description_object_info: "物体大小、上升、过境和设置时间。",
description_fov: "单击进入构图助手模式。",
description_target_action:
"将目标添加到收藏夹或自定义列表中。仅命令GOTO或命令GOTO后拍摄和解决。如果Ekos处于离线状态,则安排该目标。",
alert_guided_tour_title: "进行一次领略Stellarmate魅力的导览",
description_stella_intro:
"Stella 是你的个人智能数字助手。你可以通过语音或文本与 Stella 进行交流。向它询问任何天文学相关的主题。",
description_stella_example: "查看示例提示。",
description_stella_chat: "查看聊天记录。",
description_stella_input: "输入你的提示以请求任务或检索数据。",
description_stella_other_function:
"你还可以通过语音与 Stella 互动并附加文件。",
description_align_paa:
"Polar align your equatorial mount to achieve better tracking & guiding.",
description_align_load: "Load and Plate Solve an image (JPG, FITS, XISF)",
description_align_controls:
"You can view Align Chart, Image, Settings and Quick Access Settings. You can also start Aligning",
description_align_solution: "Plate solving solution",
description_focus_initial: "Current focuser position and Focus Advisor",
description_focus_steps: "Target position",
description_focus_size: "Steps size when running autofocus",
description_focus_exposure: "Exposure duration and Framing toggle",
description_focus_controls:
"You can view Focus Chart, Image, Settings and Quick Access Settings. You can also start Focusing",
description_guide_camera: "Capture and Loop",
description_guide_status: "Guiding Status",
description_guide_controls:
"You can view Guide Chart, Image, Settings and Quick Access Settings. You can also start Guiding",
description_search_filter: "Filter by metadata.",
description_search_live: "Search by name.",
description_feed_all: "Displays posts from all users.",
description_feed_following: "Displays posts from users you are following.",
description_feed_saved: "Displays bookmarked posts.",
description_feed_add: "Add a new post.",
description_profile_posts:
"This tab displays your posts. Here, you can view all the posts you have created.",
description_profile_image: "RAW images.",
description_profile_achievements: "Achievements Tracker",
description_observatory_map: "Public Observatories map",
initial_tour_guide: {
profile_general:
"This is your Profile page where you can manage your account settings and personal information.",
side_panel:
"The left-hand panel is the Main Navigation. Here, you can explore Photos, connect with other Users, and view Observatories.",
profile_page:
"Take a look around your profile to explore the features available for managing your account.",
profile_next:
"Next, check out the Feed where you can explore posts from other users.",
feed_general:
"This is the Feed, where you can view images shared by others, see your bookmarks, and upload your own photos.",
feed_page: "Browse posts from other users here.",
feed_next:
"Next, explore the Users page to find and connect with others.",
users_general:
"This is the Users page, where you can search for, filter, and follow other members of the community.",
users_page: "Discover and interact with other users here.",
users_next:
"Next, let's visit the Equipment page to explore astronomy tools.",
equipment_general:
"Welcome to the Equipment page, where you can browse and learn about different astronomy equipment.",
equipment_page:
"Check out the astronomy equipment types. Tap any type to list all manufacturers for this equipment type, and then tap a manufacturer to list all models.",
equipment_next:
"Next, explore the Observatories page to view and manage observatories.",
observatories_general:
"Welcome to the Observatories page! Here, you can explore observatories created by other users and manage your own.",
observatories_page: "View and manage observatories in this section.",
final_step:
"Congratulations! You've finished the tour. Now it's time to dive in and discover everything this platform has to offer.",
},
},
tooltip: {
placeholder: "占位符 %{0} 或 %{1}",
placeholder_file: "不带扩展名的.esq文件名。",
placeholder_date: "保存文件时的当前时间和日期。",
placeholder_type: "帧类型,例如:'亮场'、'暗场'",
placeholder_exp: "曝光时长(秒)。",
placeholder_exposure:
"曝光持续时间以秒为单位,单位为普通数字,后缀不含任何单位。",
placeholder_offset: "偏置。",
placeholder_gain: "增益。",
placeholder_bin: "像素合并。",
placeholder_iso: "ISO(仅单反).",
placeholder_pierside: "赤道仪指向",
placeholder_temperature: "相机温度",
placeholder_filter: "当前滤镜名称。",
placeholder_seq:
"图像序列标识符,其中 * 是使用的数字位数(1-9),此标记是必需的并且必须是格式中的最后一个元素。",
placeholder_target: "目标名称。",
placeholder_arbitrary:
"格式字符串中也可以包括任意文本,%和/字符除外。/Path字符可用于定义任意目录。",
placeholder_notes: "注意:",
placeholder_case: "•标签区分大小写",
placeholder_datetime:
"•只在格式的文件名部分使用%Datetime标记,而不在路径定义中使用。",
format_title: "使用占位符标记来定义图像文件名的格式。",
suffix: "用于在文件名中附加序列号的数字位数。",
paa_desc:
"在极轴对准过程中使用解析法。解析速度较慢,但可以提供更准确的结果。",
plate_solving:
"使用解析获取校准过程中的指向偏差。用户应尝试减少下面更新错误行中的误差并最小化偏移。",
mount_info: "赤道仪转动并计算误差",
movestar_desc:
"类似于Move Star,但是Ekos尝试跟踪正在移动的星星,并在可能时估计当前对准误差。",
remote_description:
"将远程 INDI 驱动程序添加到此配置文件配置的本地 INDI 服务器链中。此字段的格式应为引号括起来的驱动程序名称、主机名/地址以及可选端口的逗号分隔列表:",
remote_zwo_description: "连接到 192.168.1.50,端口 8000 上的指定相机。",
remote_eqmod_description: "连接到 192.168.1.50,端口 7624 上的指定云台。",
remote_port: "连接到 192.168.1.50,端口 8000 上找到的所有驱动程序。",
remote_ip: "连接到 192.168.1.50,端口 7624 上找到的所有驱动程序。",
remote_info:
"如果省略,主机默认设置为 localhost,端口默认设置为 7624。远程 INDI 驱动程序必须已在运行,以便连接成功。",
},
splash: {
checking_for_updates: "检测更新中...",
downloading_package: "下载更新中...",
installing_update: "安装更新包...",
channel_update: "正在进行信道切换...",
upto_date: "已是最新版本",
update_installed: "更新已安装",
loading: "加载中...",
},
validations: {
username_required: "请输入用户名",
username_tooshort: "至少需要3个字母",
username_toolong: "不能超过64个字母",
username_invalid: "用户名含有非法字符",
password_required: "请输入密码",
password_invalid: "至少需要6位",
confirm_password_required: "请确认密码",
confirm_password_mismatch: "密码错误",
email_required: "请填写邮箱",
email_invalid: "邮箱地址无效",
license_required: "请输入许可证密钥",
serial_required: "请输入序列号",
new_scope_vendor: "请输入有效用户名",
new_scope_model_invalid: "请输入有效的模型",
new_scope_aperture_invalid: "请输入有效的光圈",
new_scope_focal_length_invalid: "请输入有效的焦距",
new_scope_focal_ratio_invalid: "请输入一个有效的焦比",
},
progress: {
start_capture: "开始拍摄...",
please_wait: "请稍候 ...",
establishing_connection: "正在建立连接",
cameras: "获取相机",
mounts: "获取赤道仪",
scopes: "获取望远镜",
filter_wheels: "获取滤镜轮",
registering: "注册中",
registered: "注册完毕",
authenticating: "登录中",
authenticated: "登录完毕",
checking_kstars: "检查KStars",
kstars_open: "KStars启动",
checking_ekoslive: "检查EkosLive...",
ekoslive_connected: "EkosLive已连接",
starting_ekos: "启动Ekos...",
getting_devices: "获取设备...",
loading_settings: "加载配置...",
register_device: "已扫描二维码,注册设备: ",
},
welcome: {
register_new_device: "注册新的设备?",
have_existing_account: "已存在一个账号?",
require_sm_plus_pro: "如果已购买,请注册",
},
device_scanner: {
scanning: "正在联网获取StellarMate设备中,请稍侯。。。",
qr_scan: "扫描设备上的二维码",
},
statuses: {
Idle: "闲置",
prep: "准备",
run: "运行",
Aborted: "中断",
"Calibration error": "校准错误",
Capturing: "正在捕获",
"In Progress": "进行中",
"Setting Temperature": "设置温度",
Slewing: "移动中",
Calibrating: "校准中",
Tracking: "追踪中",
Guiding: "导星中",
Parking: "停放中",
"User Input": "请输入",
Complete: "完成",
Suspended: "暂停",
Parked: "已停放",
},
connect: {
register_welcome: "请登录您的Stellarmate账号以同步设备.",
welcome_heading: "欢迎使用",
welcome_description:
"请确认您已连接至StellarMate的热点或StellarMate与您的设备处于同一网络中",
welcome_rescan: "点击”重新扫描”扫描局域网中的StellarMate",
device_unreachable: "设备无法访问! 请检查电源和网络设置",
login_mismatch:
"认证失败。App 密码与stellarmate.com上设定的密码不一致。请使用正确密码再次登入。",
register_using_key: "Register Device using Serial number",
old_stellarmate_heading: "版本过旧。请更新!",
old_stellarmate_description:
"您正在使用 StellarMate OS 的旧版本。若想继续使用本应用,请务必更新至 StellarMate 的最新版本。",
primary: "主镜",
guide: "导星相机",
scope: "导星镜",
btn_rescan: "重新扫描",
btn_port_select: "端口选择",
btn_sync_gps: "同步GPS",
btn_dslr_setup: "相机设置",
btn_clear_driver_config: "清除设备设置",
scan_in_progress: "正在扫描 ...",
connection_in_progress: "正在连接StellarMate...",
registration_in_progress: "正在注册StellarMate...",
logging_in_progress: "正在登陆StellarMate...",
connecting: "连接中...",
logging: "登陆中...",
generic: "通用串口",
select_driver: "请选择设备类别和驱动",
invalid_ip: "找不到IP地址或IP{0}无效。请再试一次。",
cloudsMap: {
btn_clouds_map: "云图",
attribution: "OpenStreetMap",
map_title: "三小时内云图",
bortle_class: "暗夜等级",
},
ip_address: "请输入IP地址",
login_register: {
heading: "认证",
heading_online: "请登录stellarmate.com",
connect_to_internet: "您必须联网",
connect_to_sync: "此操作仅用于同步您的帐户.",
reset_app:
"提示:你可以通过转到“关于”选项,单击“重置应用程序”按钮,然后重新启动应用程序,将应用程序与你的在线帐户重新同步",
no_valid_device: "无有效的设备信息",
setup_guide: "设置导星",
register: "注册",
login: "登入",
serial: "序列号#",
license: "许可证密钥",
username: "用户名",
password: "密码",
confirm_password: "确认密码",
first_name: "名",
last_name: "姓",
email: "邮箱",
manually: "Manually",
},
device_manager: {
alert_confirm_remove_title: "确认移除",
alert_confirm_remove_body: "确定移除该设备?",
btn_sign_out: "登出",
},
profile_manager: {
heading: "配置文件",
},
port_selector: {
connect_all: "连接所有",
},
manually_add_device: {
heading: "手动添加设备",
btn_add_device: "添加设备",
alert_unreachable_title: "发生错误",
alert_unreachable_body:
"尝试在指定的IP地址处寻找设备时出错,请检查IP地址,然后重试",
},
device_scanner: {
no_device_before_scan: "未检测到设备,请运行扫描程序",
no_device_after_scan: "扫描完成,未发现设备",
auto_scanned: "自动扫描",
manually_added: "手动添加",
add_a_device: "添加设备",
devices_detected: "检测完毕",
no_network_found: "未发现设备,请确认您的网络连接",
},
add_profile: {
add_profile: "添加配置文件",
edit_profile: "编辑配置文件",
mount: "赤道仪",
ccd: "主相机 1",
dome: "穹顶",
focuser: "电动调焦座",
filter: "滤镜",
guider: "主相机 2",
ao: "自适应光学设备",
weather: "天气",
aux1: "辅助设备1",
aux2: "辅助设备2",
aux3: "辅助设备3",
aux4: "辅助设备4",
indi_server: "INDI服务器",
local: "本地",
host: "主机",
web_manager: "INDI网络管理器",
profile_settings: "配置设定",
auto_connect: "自动连接",
port_selector: "端口选择器",
usb_reset: "强制 USB 重置",
remote_drivers: "远程驱动程序",
},
add_scope: {
add_scope: "添加望远镜",
edit_scope: "编辑望远镜",
vendor: "厂商",
aperture: "口径 (mm)",
focal_length: "焦距 (mm)",
},
auto_detect: {
alert_auto_detect_title: "自动检测说明",
alert_auto_detect_body:
"请先从 StellarMate 中拔出所有设备,然后按确定。然后逐个插入它们以检测设备类型和驱动程序。在每个设备插入后,您需要确认驱动程序。",
alert_mapped_title: "设备映射",
alert_mapped_body: "设备串行端口成功映射。",
alert_missing_driver_title: "缺少设备",
alert_missing_driver_body: "你必须先选择一个设备",
},
dslr_setup: {
width: "宽",
height: "高",
pixel_width: "像素宽",
pixel_height: "像素高",
},
observatory: {
observatory_name: "Name of the observatory",
bortle_scale: "Bortle Scale",
observatory_delete_submit:
"Are you sure you want to delete the observatory? All equipment and the equipment profiles will also be deleted",
observatory_delete_title: "Delete observatory",
empty_profile:
"The selected profile currently has no equipment. To proceed, please add new equipment.",
empty_profiles_list:
"The selected observatory currently has no equipment profiles. To proceed, please add new profile.",
manufacturer: "Manufacturer",
profile_name: "Profile Name",
},
no_connected_instances:
"No active instances detected, please make sure KStars is connected and is not linked to any other observatory.",
observatories: "Observatories",
equipment: "Equipment",
observatory_delete_submit: "Observatory successfully deleted",
},
targets: {
now: "现在",
night: "夜晚",
rise: "升起",
moon: "月亮",
sun: "太阳",
search: "搜索",
cam_width: "视场宽度",
cam_height: "视场高度",
fov_warning: "视场太小或太大,请检查!",
phases: {
new_moon: "新月",
full_moon: "满月",
first_quarter: "上弦月",
third_quarter: "下弦月",
waxing_crescent: "娥眉月",
waxing_gibbous: "盈凸月",
waning_crescent: "残月",
waning_gibbous: "亏凸月",
},
lists: "列表",
framing_assistant: "定位助手",
target_rotation: "目标方位角",
current_rotation: "当前方位角",
rotate_capture: "旋转并拍摄",
goto_rotate: "去并旋转",
angular_offset: "角度偏差",
no_objects_in_list: "找不到目标。请检查活动列表,调整或重置过滤器。",
go_and_solve: "前往并求解",
fov_profile: "视场角配置",
fov_width: "视场宽度",
fov_height: "视场高度",
alert_select_FOV_body: "请创建或选择FOV配置文件,以便使用构图助手。",
alert_list_exists_body: "相同名称列表已存在!",
},
ekos: {
heading: "Ekos",
tgl_mount: "赤道仪",
tgl_solution_bar: "状态栏",
tgl_sequence: "拍摄队列",
tgl_properties: "属性",
alert_ekos_offline_title: "Ekos离线中",
alert_ekos_offline_body: "Ekos目前处于离线状态,是否开启设备匹配?",
ekos_dialog: {
auto_closes_in: "自动关闭",
},
indi: {
no_logs: "没有可用于此驱动的日志",
},
controls_bar: {
mount_speed: "赤道仪转速",
centering: "居中",
find: "寻找",
max: "最大",
parking_position: "归位位置设置成功",
},
collapse_align: {
heading: "导星",
action_sync: "同步",
action_slew: "转动至目标",
action_nothing: "不进行任何操作",
solver_backend: "解析平台",
control: "控制",
solve: "拍摄 & 解析",
load: "加载 & 转动",
polar: "极轴校准",
accuracy: "精度",
settle: "稳定时间",
dark: "暗场",
arcsec: "角秒",
ms: "毫秒",
x_axis: "迭代次数",
y_axis: "误差(角秒)",
refresh_rate: "刷新频率",
image_selected: "图像选择成功",
select_method: "请选择图像的选择模式",
device_gallery: "手机/平板电脑库",
sm_storage: "SM 存储",
request_storage_permission: "请允许存储权限",
celestial_warning: "解析在离天极附近无法使用!",
manualRotator: {
heading: "手动转动器",
current_pa: "当前位置角",
target_pa: "目标位置角",
another_image: "拍摄另一张图片",
},
align_settings: {
rotator_control: "场旋器控制",
use_scale: "使用缩放",
use_position: "使用位置",
},
calibration_settings: {
pulse: "脉冲",
max_move: "最大移动范围",
iterations: "迭代",
two_axis: "双轴",
square_size: "自动正方形大小",
calibrate_backlast: "在导星校准时消除赤纬背隙",
reset_calibration: "每次望远镜移动后重置导星校准",
reuse_calibration: "尽可能存储和重复使用导星校准",
reverse_calibration: "在赤道仪中天翻转时,反转赤纬以重复使用校准值",
skyflats: "天空平场",
},
},
collapse_camera: {
heading: "相机设置",
type_light: "亮场",
type_bias: "偏置",
type_flat: "平场",
type_dark: "暗场",
format_fits: "FITS",
format_native: "RAW",
cooling_unavailable: "制冷功能不可用",
btn_add_to_sequence: "添加到拍摄序列",
btn_loop: "循环",
rotator_control: {
title: "旋转器",
angle: "场旋角度",
offset: "相机偏移",
pierside: "相机立柱侧",
flip: "翻转策略",
pos_angle: "相机位置角",
reverse_direction: "反转旋转器",
flip_rotator: "Preserve Rotator Angel",
flip_position: "Preserve Position Angel",
},
capture_settings: {
miscellaneous: "杂项",
temperature: "温度阈值",
temperature_tooltip:
"请求温度设定点与测量温度设定点之间的最大可接受差值。当温度阈值低于该值时,温度设定点请求被认为是成功的。",
guiding: "导星稳定",
guiding_tooltip: "在导星恢复后等待几秒钟,以稳定导星。",
dialog: "对话超时",
dialog_tooltip: "关闭或打开望远镜对话框超时(秒)。",
reset_sequence: "每次重启后重置拍摄队列",
reset_sequence_tooltip:
"开始序列时,将所有已拍摄计数重置为零。启用“记住序列进度”后,序列功能将覆盖此选项。",
reset_mount: "在中天反转后重置赤道仪校准模型",
reset_mount_tooltip: "在中天反转后重置赤道仪校准模型",
use_flip: "在赤道仪支持的情况下使用反转功能",
use_flip_tooltip: "在赤道仪支持的情况下使用反转功能",
summary_preview: "缩略图预览",
summary_preview_tooltip: "在缩略图中预览拍摄到的FITS图像",
force_dslr: "强制单反预设",
image_viewer: "单反图像查看器",
sequence_focus: "序列中对焦",
hfr_threshold: "HFR阈值修正",
hfr_threshold_tooltip:
"设置HFR阈值百分比增益。当自动对焦操作完成时,自动对焦HFR值增加该阈值百分比值并存储在捕获模块内。如果顺序对焦已启用,则自动对焦模块仅在当前HFR值超过捕获模块HFR阈值时执行自动对焦程序。增加值以允许在不需要完全自动对焦的情况下更轻松地更改HFR值。",
sequence_check: "序列中HFR检查",
sequence_check_tooltip: "在拍摄多张图像后进行序列内HFR检查",
median: "使用中值对焦",
median_tooltip:
"计算每次自动对焦操作完成后的焦点中值。如果自动对焦结果随着时间的推移而逐渐变差,则中值应反映这一趋势,并在视觉条件恶化时防止不必要的自动对焦操作。",
save_sequence: "序列HFR保存到文件中",
save_sequence_tooltip:
"依次,HFR阈值控制自动聚焦处理何时开始。如果测得的HFR值超过HFR阈值,则启动自动对焦过程。如果HFR阈值最初为零(默认),则在应用HFR阈值修改器百分比之后,使用自动聚焦过程最佳HFR值来设置新的HFR阈值。这个新的HFR阈值随后用于后续的顺序聚焦检查。如果启用此选项,HFR阈值将保持不变,并保存到序列文件中。",
},
},
capture_presets: {
heading: "预设",
},
capture_limits: {
heading: "限制设置",
guiding_deviation: "导星误差 <",
guiding_deviation_unit: '"',
focus_hfr: "自动对焦如果HFR >",
focus_hfr_unit: "像素",
focus_deltaT: "自动对焦如果ΔT° >",
focus_deltaT_unit: "°C",
refocus_n: "重新对焦每",
refocus_n_unit: "分",
refocus_on_hfr: "Refocus on HFR. Use",
refocus_meridian: "中天翻转后重新对焦",
check_every: "每次都检查",
about_guide_deviation: "关于如果导星误差>",
start_deviation: "只有在导星出现误差时才启动<",
guide_deviation: "导星误差",
consecutive_times: "连续次数",
dither_job: "每个任务后都抖动",
},
capture_filters: {
heading: "滤镜轮设置",
auto_focus: "自动对焦",
lock_filter: "锁定滤镜",
no_filters: "未发现可用滤镜!",
},
targets_filters: {
object_type: "目标类型",
alt: "Alt",
},
capture_auto_calibration: {
heading: "自动校准",
flat_source: "平场源",
flat_duration: "平场曝光时间",
dust_builtin: "带内置平场灯的镜头盖",
dust_external: "带外置平场灯的镜头盖",
wall: "墙",
az: "方位角",
adu: "ADU",
tolerance: "容差",
park_mount: "赤道仪停放",
park_dome: "归位穹顶",
pre_actions: "校准前置准备",
},
capture_file: {