-
Notifications
You must be signed in to change notification settings - Fork 582
Expand file tree
/
Copy pathindex.json
More file actions
4973 lines (4973 loc) · 165 KB
/
Copy pathindex.json
File metadata and controls
4973 lines (4973 loc) · 165 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"action.cancel": {
"message": "取消"
},
"action.continue": {
"message": "繼續"
},
"admin.billing.error.not-found": {
"message": "找不到使用者"
},
"analytics.action.add": {
"message": "新增"
},
"analytics.action.cancel": {
"message": "取消"
},
"analytics.action.refresh": {
"message": "重新整理"
},
"analytics.action.reset": {
"message": "重設"
},
"analytics.breakdown.country": {
"message": "國家或地區"
},
"analytics.breakdown.dependent-on": {
"message": "相依於"
},
"analytics.breakdown.dependent-project-download": {
"message": "相依專案"
},
"analytics.breakdown.dependent-project-type": {
"message": "相依專案類型"
},
"analytics.breakdown.download-reason": {
"message": "下載原因"
},
"analytics.breakdown.download-source": {
"message": "下載來源"
},
"analytics.breakdown.game-version": {
"message": "遊戲版本"
},
"analytics.breakdown.generic": {
"message": "細項"
},
"analytics.breakdown.loader": {
"message": "載入器"
},
"analytics.breakdown.members": {
"message": "成員"
},
"analytics.breakdown.monetization": {
"message": "營利情形"
},
"analytics.breakdown.none.selected": {
"message": "未選取細項"
},
"analytics.breakdown.project": {
"message": "專案"
},
"analytics.breakdown.project-status": {
"message": "專案狀態"
},
"analytics.breakdown.project-version": {
"message": "專案版本"
},
"analytics.breakdown.selected": {
"message": "按{breakdown}分類"
},
"analytics.chart.action.show-all": {
"message": "顯示全部"
},
"analytics.chart.action.show-limited": {
"message": "顯示有限項目"
},
"analytics.chart.action.show-top-eight": {
"message": "顯示前 8 項"
},
"analytics.chart.axis.playtime-hours": {
"message": "{hours}小時"
},
"analytics.chart.controls.active-count": {
"message": "已啟用 {count} 項"
},
"analytics.chart.controls.annotations": {
"message": "註釋"
},
"analytics.chart.controls.aria": {
"message": "分析圖表控制項,{activeCount}"
},
"analytics.chart.controls.button": {
"message": "控制"
},
"analytics.chart.controls.dialog-aria": {
"message": "分析圖表控制項"
},
"analytics.chart.controls.display": {
"message": "顯示"
},
"analytics.chart.controls.modrinth-events": {
"message": "Modrinth 事件"
},
"analytics.chart.controls.no-modrinth-events": {
"message": "圖表中沒有 Modrinth 事件。"
},
"analytics.chart.controls.no-project-events": {
"message": "圖表中沒有專案事件。"
},
"analytics.chart.controls.previous-period": {
"message": "上一期"
},
"analytics.chart.controls.project-events": {
"message": "專案事件"
},
"analytics.chart.controls.ratio": {
"message": "百分比"
},
"analytics.chart.empty.select-table-items": {
"message": "從表格選取項目來視覺化你的數據。"
},
"analytics.chart.events.count-aria": {
"message": "{count, plural, other {# 個分析事件}}"
},
"analytics.chart.events.project-title": {
"message": "<project>{projectName}</project>:{title}"
},
"analytics.chart.events.see-announcement": {
"message": "檢視公告"
},
"analytics.chart.legend.monetization-details.aria": {
"message": "檢視營利分析詳情"
},
"analytics.chart.legend.monetization-details.description": {
"message": "只有透過 Modrinth 產生的瀏覽量與下載量才會計入營利,且使用者必須登入才能計算下載量。"
},
"analytics.chart.legend.monetization-details.title": {
"message": "營利分析詳情"
},
"analytics.chart.legend.previous-period-suffix": {
"message": "{name}(上一期)"
},
"analytics.chart.render-limit.description": {
"message": "顯示表格中所有已選取的資料列可能會降低頁面效能。"
},
"analytics.chart.render-limit.header": {
"message": "要在圖表中顯示所有 {count} 個資料列嗎?"
},
"analytics.chart.table-selection.all": {
"message": "正在顯示表格中的所有{itemType, select, project {{count, plural, other {專案}}} country {{count, plural, other {國家/地區}}} monetization {{count, plural, other {營利情形}}} downloadSource {{count, plural, other {下載來源}}} downloadReason {{count, plural, other {下載原因}}} member {{count, plural, other {成員}}} projectVersion {{count, plural, other {專案版本}}} loader {{count, plural, other {載入器}}} gameVersion {{count, plural, other {遊戲版本}}} other {{count, plural, other {項目}}}}"
},
"analytics.chart.table-selection.count": {
"message": "正在顯示表格中的 {count} 個{itemType, select, project {{count, plural, other {專案}}} country {{count, plural, other {國家/地區}}} monetization {{count, plural, other {營利情形}}} downloadSource {{count, plural, other {下載來源}}} downloadReason {{count, plural, other {下載原因}}} member {{count, plural, other {成員}}} projectVersion {{count, plural, other {專案版本}}} loader {{count, plural, other {載入器}}} gameVersion {{count, plural, other {遊戲版本}}} other {{count, plural, other {項目}}}}"
},
"analytics.chart.table-selection.limited": {
"message": "正在顯示表格中的 {limit} 個{itemType, select, project {{limit, plural, other {專案}}} country {{limit, plural, other {國家/地區}}} monetization {{limit, plural, other {營利情形}}} downloadSource {{limit, plural, other {下載來源}}} downloadReason {{limit, plural, other {下載原因}}} member {{limit, plural, other {成員}}} projectVersion {{limit, plural, other {專案版本}}} loader {{limit, plural, other {載入器}}} gameVersion {{limit, plural, other {遊戲版本}}} other {{limit, plural, other {項目}}}}"
},
"analytics.chart.table-selection.top": {
"message": "正在顯示表格中的前 {count} 個{itemType, select, project {{count, plural, other {專案}}} country {{count, plural, other {國家/地區}}} monetization {{count, plural, other {營利情形}}} downloadSource {{count, plural, other {下載來源}}} downloadReason {{count, plural, other {下載原因}}} member {{count, plural, other {成員}}} projectVersion {{count, plural, other {專案版本}}} loader {{count, plural, other {載入器}}} gameVersion {{count, plural, other {遊戲版本}}} other {{count, plural, other {項目}}}}"
},
"analytics.chart.tooltip.dependent-on-project": {
"message": "相依於 {project}"
},
"analytics.chart.tooltip.dependent-project-version": {
"message": "{dependentProject} 相依於 {dependencyProject},{version}"
},
"analytics.chart.tooltip.duration.days": {
"message": "{count, plural, other {# 天}}"
},
"analytics.chart.tooltip.duration.hours": {
"message": "{count, plural, other {# 小時}}"
},
"analytics.chart.tooltip.duration.minutes": {
"message": "{count, plural, other {# 分鐘}}"
},
"analytics.chart.tooltip.hide-entry": {
"message": "在圖表中隱藏 {name}"
},
"analytics.chart.tooltip.pinned": {
"message": "圖表工具提示已固定"
},
"analytics.chart.tooltip.pinned-aria": {
"message": "釘選"
},
"analytics.chart.tooltip.previous-period-short": {
"message": "(上一期)"
},
"analytics.chart.tooltip.show-entry": {
"message": "在圖表中顯示 {name}"
},
"analytics.chart.tooltip.total": {
"message": "總計"
},
"analytics.chart.view.area": {
"message": "面積圖"
},
"analytics.chart.view.bar": {
"message": "長條圖"
},
"analytics.chart.view.line": {
"message": "折線圖"
},
"analytics.download-reason.dependency": {
"message": "相依項"
},
"analytics.download-reason.modpack": {
"message": "模組包"
},
"analytics.download-reason.standalone": {
"message": "單獨下載"
},
"analytics.download-reason.update": {
"message": "更新"
},
"analytics.download-source.app": {
"message": "Modrinth App"
},
"analytics.download-source.website": {
"message": "Modrinth 網站"
},
"analytics.downloads.suffix": {
"message": "次"
},
"analytics.empty.no-data": {
"message": "暫無可用數據"
},
"analytics.empty.no-data-for-analytics": {
"message": "暫無可供分析的數據"
},
"analytics.empty.no-projects": {
"message": "暫無可用專案"
},
"analytics.empty.no-projects-for-analytics": {
"message": "暫無可供分析的專案"
},
"analytics.empty.select-project": {
"message": "請選擇至少一個專案以查看數據"
},
"analytics.filter.game-version-type": {
"message": "遊戲版本類型"
},
"analytics.filter.game-version-type.all": {
"message": "全部"
},
"analytics.filter.game-version-type.release": {
"message": "正式版"
},
"analytics.filter.search.countries": {
"message": "搜尋國家或地區..."
},
"analytics.filter.search.dependent-projects": {
"message": "搜尋專案..."
},
"analytics.filter.search.download-sources": {
"message": "搜尋下載來源..."
},
"analytics.filter.search.members": {
"message": "搜尋成員..."
},
"analytics.filter.search.project-versions": {
"message": "搜尋專案版本..."
},
"analytics.filter.search.versions": {
"message": "搜尋版本..."
},
"analytics.graph.title.downloads": {
"message": "下載量趨勢"
},
"analytics.graph.title.playtime": {
"message": "遊玩時數趨勢"
},
"analytics.graph.title.revenue": {
"message": "收益趨勢"
},
"analytics.graph.title.views": {
"message": "瀏覽量趨勢"
},
"analytics.group-by.1h": {
"message": "1小時"
},
"analytics.group-by.6h": {
"message": "6小時"
},
"analytics.group-by.date": {
"message": "日期"
},
"analytics.group-by.day": {
"message": "天"
},
"analytics.group-by.month": {
"message": "月"
},
"analytics.group-by.selected.day": {
"message": "按天分組"
},
"analytics.group-by.selected.hour": {
"message": "按小時分組"
},
"analytics.group-by.selected.month": {
"message": "按月分組"
},
"analytics.group-by.selected.six-hours": {
"message": "按 6 小時分組"
},
"analytics.group-by.selected.week": {
"message": "按週分組"
},
"analytics.group-by.selected.year": {
"message": "按年分組"
},
"analytics.group-by.week": {
"message": "週"
},
"analytics.group-by.year": {
"message": "年"
},
"analytics.loading.fetching-results": {
"message": "正在取得結果..."
},
"analytics.options.loading": {
"message": "載入中..."
},
"analytics.project-event.project-approved": {
"message": "專案已核准"
},
"analytics.project-event.project-private": {
"message": "專案已設為私人"
},
"analytics.project-event.project-status-changed": {
"message": "專案狀態變更"
},
"analytics.project-event.project-unlisted": {
"message": "專案已設為不公開"
},
"analytics.project-event.version-released": {
"message": "{version} 版本發布"
},
"analytics.project-event.version-uploaded": {
"message": "版本上傳"
},
"analytics.project-status.approved": {
"message": "已核准"
},
"analytics.project-status.archived": {
"message": "已封存"
},
"analytics.project-status.draft": {
"message": "草稿"
},
"analytics.project-status.other": {
"message": "其他"
},
"analytics.project-status.private": {
"message": "私人"
},
"analytics.project-status.rejected": {
"message": "已拒絕"
},
"analytics.project-status.unlisted": {
"message": "不公開"
},
"analytics.project-status.withheld": {
"message": "擱置"
},
"analytics.project.all": {
"message": "所有專案"
},
"analytics.project.count": {
"message": "{count, plural, other {# 個專案}}"
},
"analytics.project.icon-alt": {
"message": "{name} 圖示"
},
"analytics.project.select": {
"message": "選取專案"
},
"analytics.project.user": {
"message": "{username} 的專案"
},
"analytics.project.your": {
"message": "你的專案"
},
"analytics.query.filter.add": {
"message": "新增篩選條件"
},
"analytics.query.label.breakdown": {
"message": "細項:"
},
"analytics.query.label.grouped-by": {
"message": "分組依據:"
},
"analytics.query.label.project": {
"message": "專案:"
},
"analytics.query.label.timeframe": {
"message": "時間範圍:"
},
"analytics.stat.downloads": {
"message": "下載量"
},
"analytics.stat.monetization-banner.body": {
"message": "只有透過 Modrinth 產生的瀏覽量與下載量才會計入營利,且必須通過防詐欺篩選機制。此外,透過 Modrinth App 下載時,使用者也必須處於登入狀態。由於所有專案中可營利的下載比例大致相同,因此即使計入所有下載量,你的收益也不會產生顯著變化。"
},
"analytics.stat.monetization-banner.learn-more": {
"message": "了解更多"
},
"analytics.stat.monetization-banner.title": {
"message": "營利機制是如何運作的?"
},
"analytics.stat.playtime": {
"message": "遊玩時數"
},
"analytics.stat.playtime-hours": {
"message": "{hours} 小時"
},
"analytics.stat.previous-period-comparison": {
"message": "vs 上一期"
},
"analytics.stat.previous-period-comparison-short": {
"message": "vs 上一期"
},
"analytics.stat.revenue": {
"message": "收益"
},
"analytics.stat.revenue-value": {
"message": "${value}"
},
"analytics.stat.unavailable": {
"message": "不適用"
},
"analytics.stat.unavailable-tooltip": {
"message": "目前查詢沒有可用的統計資訊"
},
"analytics.stat.views": {
"message": "瀏覽量"
},
"analytics.table.csv.date-range": {
"message": "{start}至{end}"
},
"analytics.table.csv.filename": {
"message": "Modrinth 數據分析 - 按{breakdown} - {dateRange}"
},
"analytics.table.csv.header.playtime-seconds": {
"message": "遊玩時數(秒)"
},
"analytics.table.csv.selected-range": {
"message": "選取範圍"
},
"analytics.table.duration.days": {
"message": "{count, plural, other {# 天}}"
},
"analytics.table.duration.hours": {
"message": "{count, plural, other {# 小時}}"
},
"analytics.table.duration.minutes": {
"message": "{count, plural, other {# 分鐘}}"
},
"analytics.table.empty.no-matching-rows": {
"message": "沒有符合條件的數據"
},
"analytics.table.export-csv": {
"message": "匯出 CSV"
},
"analytics.table.export.cumulative": {
"message": "累計"
},
"analytics.table.export.grouped": {
"message": "按{groupBy}分組"
},
"analytics.table.pagination.summary": {
"message": "顯示第 {start} 至第 {end} 項,共 {total} 項"
},
"analytics.table.search.placeholder": {
"message": "搜尋..."
},
"analytics.threshold.countries-above": {
"message": "國家/地區下載量高於"
},
"analytics.threshold.country-downloads-aria": {
"message": "國家/地區下載量閾值"
},
"analytics.threshold.game-version-downloads-aria": {
"message": "遊戲版本下載量閾值"
},
"analytics.threshold.game-versions-above": {
"message": "遊戲版本下載量高於"
},
"analytics.threshold.project-downloads-aria": {
"message": "專案下載量閾值"
},
"analytics.threshold.project-version-downloads-aria": {
"message": "專案版本下載量閾值"
},
"analytics.threshold.project-versions-above": {
"message": "專案版本下載量高於"
},
"analytics.threshold.projects-above": {
"message": "專案下載量高於"
},
"analytics.title": {
"message": "數據分析"
},
"analytics.value.monetized": {
"message": "可營利"
},
"analytics.value.no-dependent": {
"message": "無"
},
"analytics.value.no-dependent-tooltip": {
"message": "下載原因不是相依項"
},
"analytics.value.none": {
"message": "無"
},
"analytics.value.other": {
"message": "其他"
},
"analytics.value.unknown": {
"message": "未知"
},
"analytics.value.unknown-dependent-tooltip": {
"message": "缺少詮釋資料,無法確定這項下載歸因於哪個相依專案。"
},
"analytics.value.unmonetized": {
"message": "非營利"
},
"app-marketing.download.description": {
"message": "我們的桌面應用程式可在所有平臺上使用,請選擇你所需的版本。"
},
"app-marketing.download.download-appimage": {
"message": "下載 AppImage"
},
"app-marketing.download.download-beta": {
"message": "下載 Beta 版"
},
"app-marketing.download.download-deb": {
"message": "下載 DEB"
},
"app-marketing.download.download-rpm": {
"message": "下載 RPM"
},
"app-marketing.download.flathub": {
"message": "取得自 Flathub"
},
"app-marketing.download.linux": {
"message": "Linux"
},
"app-marketing.download.linux-disclaimer": {
"message": "Modrinth App 的 Linux 版本在特定系統與設定上<issues-link>已知存在問題</issues-link>。若 Modrinth App 在你的系統上執行不穩定,我們建議你嘗試使用 <prism-link>Prism Launcher</prism-link> 等其他應用程式,以輕鬆安裝 Modrinth 的內容。"
},
"app-marketing.download.mac": {
"message": "Mac"
},
"app-marketing.download.options-title": {
"message": "下載選項"
},
"app-marketing.download.terms": {
"message": "下載 Modrinth App,即表示您同意我們的《<terms-link>使用條款</terms-link>》及《<privacy-link>隱私權政策</privacy-link>》。"
},
"app-marketing.download.title": {
"message": "下載 Modrinth App(Beta 版)"
},
"app-marketing.download.windows": {
"message": "Windows"
},
"app-marketing.features.follow.description": {
"message": "收藏你喜愛的內容,並一鍵接收更新。"
},
"app-marketing.features.follow.title": {
"message": "追蹤專案"
},
"app-marketing.features.importing.description": {
"message": "從你之前使用的啟動器匯入所有喜愛的設定檔,幾秒鐘內即可輕鬆上手 Modrinth App!"
},
"app-marketing.features.importing.gdlauncher-alt": {
"message": "GDLauncher"
},
"app-marketing.features.importing.multimc-alt": {
"message": "MultiMC"
},
"app-marketing.features.importing.title": {
"message": "匯入設定檔"
},
"app-marketing.features.mod-management.actions": {
"message": "動作"
},
"app-marketing.features.mod-management.byAuthor": {
"message": "作者:{author}"
},
"app-marketing.features.mod-management.description": {
"message": "Modrinth 讓你可以輕鬆集中管理所有模組。你可以一鍵安裝、移除及更新模組。"
},
"app-marketing.features.mod-management.installed-mods": {
"message": "已安裝模組"
},
"app-marketing.features.mod-management.name": {
"message": "名稱"
},
"app-marketing.features.mod-management.search-mods": {
"message": "搜尋模組"
},
"app-marketing.features.mod-management.title": {
"message": "模組管理"
},
"app-marketing.features.mod-management.version": {
"message": "版本"
},
"app-marketing.features.offline.description": {
"message": "無論你是否連線到網路,都能遊玩你的模組。"
},
"app-marketing.features.offline.title": {
"message": "離線模式"
},
"app-marketing.features.open-source.description": {
"message": "Modrinth App 完全開源。你可以在我們的 <github-link>GitHub</github-link> 上查看原始碼!"
},
"app-marketing.features.open-source.title": {
"message": "開放原始碼"
},
"app-marketing.features.performance.activity-monitor": {
"message": "活動監視器"
},
"app-marketing.features.performance.cpu-percent": {
"message": "% CPU"
},
"app-marketing.features.performance.description": {
"message": "Modrinth App 的效能優於許多主流的模組管理員,且僅使用 150 MB 記憶體!"
},
"app-marketing.features.performance.discord": {
"message": "Discord"
},
"app-marketing.features.performance.good-performance": {
"message": "效能表現優異"
},
"app-marketing.features.performance.google-chrome": {
"message": "Google Chrome"
},
"app-marketing.features.performance.infinite-mb": {
"message": "∞ MB"
},
"app-marketing.features.performance.infinite-times-infinite-mb": {
"message": "∞ × ∞ MB"
},
"app-marketing.features.performance.less-than-150mb": {
"message": "< 150 MB"
},
"app-marketing.features.performance.modrinth-app": {
"message": "Modrinth App"
},
"app-marketing.features.performance.one-billion-percent": {
"message": "10 億 %"
},
"app-marketing.features.performance.process-name": {
"message": "處理程序名稱"
},
"app-marketing.features.performance.ram": {
"message": "記憶體"
},
"app-marketing.features.performance.small": {
"message": "低"
},
"app-marketing.features.performance.title": {
"message": "高效能"
},
"app-marketing.features.play.description": {
"message": "使用 Modrinth App 下載並遊玩你喜愛的模組和模組包。"
},
"app-marketing.features.play.title": {
"message": "遊玩你喜愛的模組"
},
"app-marketing.features.sharing.description": {
"message": "透過 Modrinth 上託管的數千種模組與模組包,建立、分享並遊玩你的模組包。"
},
"app-marketing.features.sharing.modpack": {
"message": "模組包"
},
"app-marketing.features.sharing.share-button": {
"message": "分享"
},
"app-marketing.features.sharing.title": {
"message": "分享模組包"
},
"app-marketing.features.unlike-any-launcher": {
"message": "前所未有的"
},
"app-marketing.features.website.description": {
"message": "Modrinth App 已與網站完全整合,因此你可透過應用程式存取所有喜愛的專案!"
},
"app-marketing.features.website.title": {
"message": "網站整合"
},
"app-marketing.features.youve-used-before": {
"message": "啟動器體驗"
},
"app-marketing.hero.app-screenshot-alt": {
"message": "Modrinth App 的螢幕擷取畫面,顯示已開啟 Cobblemon 實例的「內容」頁面。"
},
"app-marketing.hero.description": {
"message": "Modrinth App 是一款獨特的開源啟動器,它讓你可以輕鬆遊玩並保持你喜愛模組的最新狀態,所有功能都整合在一個簡潔小巧的應用程式中。"
},
"app-marketing.hero.download-button": {
"message": "下載 Modrinth App"
},
"app-marketing.hero.download-modrinth-app": {
"message": "下載 Modrinth App"
},
"app-marketing.hero.download-modrinth-app-for-os": {
"message": "下載適用於 {os} 的 Modrinth App"
},
"app-marketing.hero.minecraft-screenshot-alt": {
"message": "Cobblemon 實例主選單的螢幕擷取畫面。"
},
"app-marketing.hero.more-download-options": {
"message": "更多下載選項"
},
"app-marketing.hide-other-packages": {
"message": "隱藏其他軟體包"
},
"app-marketing.not-recommended": {
"message": "除非你清楚自己在做什麼,否則我們不建議使用這些軟體包。"
},
"app-marketing.show-other-packages": {
"message": "顯示其他軟體包"
},
"auth.authorize.action.authorize": {
"message": "授權"
},
"auth.authorize.action.decline": {
"message": "拒絕"
},
"auth.authorize.app-info": {
"message": "由 <creator-link>{creator}</creator-link> 開發的「<strong>{appName}</strong>」將可執行下列操作:"
},
"auth.authorize.authorize-app-name": {
"message": "授權「{appName}」"
},
"auth.authorize.error.missing-parameters": {
"message": "缺少必要的 OAuth 查詢參數。"
},
"auth.authorize.error.no-redirect-url": {
"message": "找不到回應中的重新導向位置"
},
"auth.authorize.errro-title": {
"message": "發生錯誤"
},
"auth.authorize.redirect-url": {
"message": "系統會將你重新導向至 <redirect-url>{url}</redirect-url>"
},
"auth.continue-with-provider": {
"message": "使用 {provider} 繼續"
},
"auth.create-account.age-requirement.warning-title": {
"message": "年齡限制"
},
"auth.create-account.complete-sign-up": {
"message": "完成註冊"
},
"auth.create-account.date-of-birth.invalid.text": {
"message": "請輸入有效的出生日期。年份不能為 0000。"
},
"auth.create-account.date-of-birth.invalid.title": {
"message": "出生日期無效"
},
"auth.create-account.date-of-birth.label": {
"message": "出生日期"
},
"auth.create-account.date-of-birth.placeholder": {
"message": "選取你的出生日期"
},
"auth.create-account.date-of-birth.required.text": {
"message": "請先輸入你的出生日期再繼續。"
},
"auth.create-account.date-of-birth.required.title": {
"message": "出生日期是必填欄位"
},
"auth.create-account.date-of-birth.under13-helper": {
"message": "你未達到建立 Modrinth 帳號的最低年齡限制。"
},
"auth.create-account.info-panel.source-code-link": {
"message": "相關原始碼"
},
"auth.create-account.info-panel.text": {
"message": "我們不會儲存你的出生日期,僅在註冊時用來驗證是否符合《兒童線上隱私保護法》(COPPA)的規定。"
},
"auth.create-account.page-title": {
"message": "建立帳號"
},
"auth.create-account.security-check.label": {
"message": "安全檢查"
},
"auth.create-account.subscribe.label": {
"message": "透過電子郵件通知我 Modrinth 的最新動態"
},
"auth.create-account.title": {
"message": "建立帳號"
},
"auth.create-account.username.label": {
"message": "使用者名稱"
},
"auth.create-account.username.placeholder": {
"message": "輸入使用者名稱"
},
"auth.reset-password.method-choice.action": {
"message": "傳送密碼重設電子郵件"
},
"auth.reset-password.method-choice.description": {
"message": "請在下方輸入你的電子郵件地址,系統將傳送密碼重設連結,協助你取回帳號。"
},
"auth.reset-password.notification.email-sent.text": {
"message": "如果你的帳號中先前已儲存該電子郵件地址,系統已將一封內含指示的電子郵件傳送給你。"
},
"auth.reset-password.notification.email-sent.title": {
"message": "電子郵件已送出"
},
"auth.reset-password.notification.password-reset.text": {
"message": "你現在可以使用新密碼登入帳號了。"
},
"auth.reset-password.notification.password-reset.title": {
"message": "密碼重設成功"
},
"auth.reset-password.post-challenge.action": {
"message": "重設密碼"
},
"auth.reset-password.post-challenge.confirm-password.label": {
"message": "確認密碼"
},
"auth.reset-password.post-challenge.description": {
"message": "請在下方輸入新密碼以登入你的帳號。"
},
"auth.reset-password.title": {
"message": "重設密碼"
},
"auth.reset-password.title.long": {
"message": "重設你的密碼"
},
"auth.sign-in.2fa.description": {
"message": "請輸入驗證應用程式中的 6 位數驗證碼,或其中一個備用碼。"
},
"auth.sign-in.2fa.label": {
"message": "雙重驗證"
},
"auth.sign-in.2fa.placeholder": {
"message": "輸入驗證碼..."
},
"auth.sign-in.continue-with-email": {
"message": "使用電子郵件繼續"
},
"auth.sign-in.continue-with-passkey": {
"message": "使用通行金鑰繼續"
},
"auth.sign-in.create-account": {
"message": "註冊"
},
"auth.sign-in.forgot-password": {
"message": "忘記密碼"
},
"auth.sign-in.last-sign-in": {
"message": "上次使用"
},
"auth.sign-in.no-account": {
"message": "還沒有帳號嗎?"
},
"auth.sign-in.sign-in-with": {
"message": "登入 Modrinth"
},
"auth.sign-in.title": {
"message": "登入"
},
"auth.sign-up.age-requirement.warning-title": {
"message": "年齡限制"
},
"auth.sign-up.continue-with-email": {
"message": "使用電子郵件繼續"
},
"auth.sign-up.legal-dislaimer": {
"message": "建立帳號即表示您同意 Modrinth 的《<terms-link>使用條款</terms-link>》及《<privacy-policy-link>隱私權政策</privacy-policy-link>》。"
},
"auth.sign-up.show-fewer-options": {
"message": "顯示較少選項"
},
"auth.sign-up.show-other-options": {
"message": "顯示其他選項"
},
"auth.sign-up.sign-in-option.title": {
"message": "已經有帳號了?"
},
"auth.sign-up.title": {
"message": "註冊"
},
"auth.sign-up.title.sign-up-with": {
"message": "建立帳號"
},
"auth.verify-email.action.account-settings": {
"message": "帳號設定"
},
"auth.verify-email.action.discover-mods": {
"message": "探索模組"
},
"auth.verify-email.already-verified.description": {
"message": "你的電子郵件地址已經完成過驗證!"
},
"auth.verify-email.already-verified.title": {
"message": "電子郵件已經驗證"
},
"auth.verify-email.failed-verification.action": {
"message": "重新傳送驗證電子郵件"
},
"auth.verify-email.failed-verification.description": {
"message": "系統無法驗證你的電子郵件。請在登入後,透過資訊主頁重新傳送驗證電子郵件。"
},
"auth.verify-email.failed-verification.description.logged-in": {
"message": "系統無法驗證你的電子郵件。請透過下方按鈕重新傳送驗證電子郵件。"
},
"auth.verify-email.failed-verification.title": {
"message": "電子郵件驗證失敗"
},
"auth.verify-email.notification.email-sent.description": {
"message": "驗證連結已傳送至你的電子郵件 {email} 。"
},
"auth.verify-email.notification.email-sent.title": {
"message": "電子郵件已送出"
},
"auth.verify-email.notification.error-occurred.title": {
"message": "發生錯誤"
},
"auth.verify-email.post-verification.description": {
"message": "你的電子郵件地址已成功驗證!"
},
"auth.verify-email.post-verification.title": {
"message": "電子郵件驗證"
},
"auth.verify-email.title": {
"message": "驗證電子郵件"
},
"collection.button.edit-icon": {
"message": "編輯圖示"
},
"collection.button.remove-icon": {
"message": "移除圖示"
},
"collection.button.remove-project": {
"message": "移除專案"
},
"collection.button.replace-icon": {
"message": "取代圖示"
},
"collection.button.select-icon": {
"message": "選擇圖示"
},
"collection.button.unfollow-project": {
"message": "取消追蹤專案"
},
"collection.delete-modal.description": {
"message": "這將永久刪除這個收藏。此動作無法復原。"
},
"collection.delete-modal.title": {
"message": "確定要刪除這個收藏嗎?"
},
"collection.description": {
"message": "{description} — 前往 Modrinth 查看 {username} 的收藏「{name}」"
},
"collection.description.following": {
"message": "由系統自動產生的收藏,包含你正在追蹤的所有專案。"
},
"collection.editing": {
"message": "編輯收藏"
},
"collection.error.not-found": {
"message": "找不到收藏"
},
"collection.label.created-at": {
"message": "建立時間:{ago}"
},
"collection.label.curated-by": {
"message": "策劃者"
},
"collection.label.no-projects": {
"message": "收藏中暫無專案"
},
"collection.label.projects-count": {
"message": "{count, plural, =0 {還沒有專案} other {<stat>{count}</stat> 個{type}}}"
},
"collection.label.updated-at": {
"message": "更新時間:{ago}"
},
"collection.return-link.dashboard-collections": {
"message": "你的收藏"
},
"collection.return-link.user": {
"message": "{user} 的個人檔案"
},
"collection.title": {
"message": "{name} - 收藏"
},
"conversation-thread.action.add-private-note": {
"message": "新增私人附註"
},
"conversation-thread.action.approve": {
"message": "核准"
},