-
Notifications
You must be signed in to change notification settings - Fork 576
Expand file tree
/
Copy pathindex.json
More file actions
4967 lines (4967 loc) · 178 KB
/
Copy pathindex.json
File metadata and controls
4967 lines (4967 loc) · 178 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": "Abbrechen"
},
"action.continue": {
"message": "Weiter"
},
"admin.billing.error.not-found": {
"message": "Benutzer nicht gefunden"
},
"analytics.action.add": {
"message": "Hinzufügen"
},
"analytics.action.cancel": {
"message": "Abbrechen"
},
"analytics.action.refresh": {
"message": "Aktualisieren"
},
"analytics.action.reset": {
"message": "Zurücksetzen"
},
"analytics.breakdown.country": {
"message": "Land"
},
"analytics.breakdown.dependent-on": {
"message": "Abhängig von"
},
"analytics.breakdown.dependent-project-download": {
"message": "Abhängiges Projekt"
},
"analytics.breakdown.dependent-project-type": {
"message": "Abhängiger Projekttyp"
},
"analytics.breakdown.download-reason": {
"message": "Download-Grund"
},
"analytics.breakdown.download-source": {
"message": "Download-Quelle"
},
"analytics.breakdown.game-version": {
"message": "Spielversion"
},
"analytics.breakdown.generic": {
"message": "Aufschlüsselung"
},
"analytics.breakdown.loader": {
"message": "Loader"
},
"analytics.breakdown.members": {
"message": "Mitglied"
},
"analytics.breakdown.monetization": {
"message": "Monetarisierung"
},
"analytics.breakdown.none.selected": {
"message": "Keine Aufschlüsselung"
},
"analytics.breakdown.project": {
"message": "Projekt"
},
"analytics.breakdown.project-status": {
"message": "Projektstatus"
},
"analytics.breakdown.project-version": {
"message": "Projektversion"
},
"analytics.breakdown.selected": {
"message": "Aufschlüsselung nach {breakdown}"
},
"analytics.chart.action.show-all": {
"message": "Alle anzeigen"
},
"analytics.chart.action.show-limited": {
"message": "Begrenzt anzeigen"
},
"analytics.chart.action.show-top-eight": {
"message": "Top 8 anzeigen"
},
"analytics.chart.axis.playtime-hours": {
"message": "{hours} Std."
},
"analytics.chart.controls.active-count": {
"message": "{count} aktiv"
},
"analytics.chart.controls.annotations": {
"message": "Anmerkungen"
},
"analytics.chart.controls.aria": {
"message": "Analytics-Diagramm-Steuerung, {activeCount}"
},
"analytics.chart.controls.button": {
"message": "Steuerung"
},
"analytics.chart.controls.dialog-aria": {
"message": "Analytics-Diagramm-Steuerung"
},
"analytics.chart.controls.display": {
"message": "Anzeige"
},
"analytics.chart.controls.modrinth-events": {
"message": "Modrinth-Ereignisse"
},
"analytics.chart.controls.no-modrinth-events": {
"message": "Keine Modrinth-Ereignisse im Diagramm."
},
"analytics.chart.controls.no-project-events": {
"message": "Keine Projekt-Ereignisse im Diagramm."
},
"analytics.chart.controls.previous-period": {
"message": "Vorheriger Zeitraum"
},
"analytics.chart.controls.project-events": {
"message": "Projekt-Ereignisse"
},
"analytics.chart.controls.ratio": {
"message": "Verhältnis"
},
"analytics.chart.empty.select-table-items": {
"message": "Wähle Elemente aus der Tabelle unten, um deine Daten zu visualisieren."
},
"analytics.chart.events.count-aria": {
"message": "{count, plural, one {# Analytics-Ereignis} other {# Analytics-Ereignisse}}"
},
"analytics.chart.events.project-title": {
"message": "<project>{projectName}</project>: {title}"
},
"analytics.chart.events.see-announcement": {
"message": "Ankündigung ansehen"
},
"analytics.chart.legend.monetization-details.aria": {
"message": "Details zur monetarisierten Analytics ansehen"
},
"analytics.chart.legend.monetization-details.description": {
"message": "Nur Aufrufe und Downloads über Modrinth zählen für die Monetarisierung, und für Downloads müssen Benutzer angemeldet sein."
},
"analytics.chart.legend.monetization-details.title": {
"message": "Details zur monetarisierten Analytics"
},
"analytics.chart.legend.previous-period-suffix": {
"message": "{name} (Vorh.)"
},
"analytics.chart.render-limit.description": {
"message": "Die Anzeige aller ausgewählten Linien aus der Tabelle kann die Seitenleistung beeinträchtigen."
},
"analytics.chart.render-limit.header": {
"message": "Alle {count} Linien im Diagramm anzeigen?"
},
"analytics.chart.table-selection.all": {
"message": "Zeige alle {itemType, select, project {{count, plural, one {Projekt} other {Projekte}}} country {{count, plural, one {Land} other {Länder}}} monetization {{count, plural, one {Monetarisierungswert} other {Monetarisierungswerte}}} downloadSource {{count, plural, one {Downloadquelle} other {Downloadquellen}}} downloadReason {{count, plural, one {Downloadgrund} other {Downloadgründe}}} member {{count, plural, one {Mitglied} other {Mitglieder}}} projectVersion {{count, plural, one {Projektversion} other {Projektversionen}}} loader {{count, plural, one {Loader} other {Loader}}} gameVersion {{count, plural, one {Spielversion} other {Spielversionen}}} other {{count, plural, one {Artikel} other {Artikel}}}} aus der Tabelle"
},
"analytics.chart.table-selection.count": {
"message": "Zeige {count} {itemType, select, project {{count, plural, one {Projekt} other {Projekte}}} country {{count, plural, one {Land} other {Länder}}} monetization {{count, plural, one {Monetarisierungswert} other {Monetarisierungswerte}}} downloadSource {{count, plural, one {Downloadquelle} other {Downloadquellen}}} downloadReason {{count, plural, one {Downloadgrund} other {Downloadgründe}}} member {{count, plural, one {Mitglied} other {Mitglieder}}} projectVersion {{count, plural, one {Projektversion} other {Projektversionen}}} loader {{count, plural, one {Loader} other {Loader}}} gameVersion {{count, plural, one {Spielversion} other {Spielversionen}}} other {{count, plural, one {Artikel} other {Artikel}}}} aus der Tabelle"
},
"analytics.chart.table-selection.limited": {
"message": "Zeige {limit} {itemType, select, project {{limit, plural, one {Projekt} other {Projekte}}} country {{limit, plural, one {Land} other {Länder}}} monetization {{limit, plural, one {Monetarisierungswert} other {Monetarisierungswerte}}} downloadSource {{limit, plural, one {Downloadquelle} other {Downloadquellen}}} downloadReason {{limit, plural, one {Downloadgrund} other {Downloadgründe}}} member {{limit, plural, one {Mitglied} other {Mitglieder}}} projectVersion {{limit, plural, one {Projektversion} other {Projektversionen}}} loader {{limit, plural, one {Loader} other {Loader}}} gameVersion {{limit, plural, one {Spielversion} other {Spielversionen}}} other {{limit, plural, one {Artikel} other {Artikel}}}} aus der Tabelle"
},
"analytics.chart.table-selection.top": {
"message": "Zeige die top {count} {itemType, select, project {{count, plural, one {Projekt} other {Projekte}}} country {{count, plural, one {Land} other {Länder}}} monetization {{count, plural, one {Monetarisierungswert} other {Monetarisierungswerte}}} downloadSource {{count, plural, one {Downloadquelle} other {Downloadquellen}}} downloadReason {{count, plural, one {Downloadgrund} other {Downloadgründe}}} member {{count, plural, one {Mitglied} other {Mitglieder}}} projectVersion {{count, plural, one {Projektversion} other {Projektversionen}}} loader {{count, plural, one {Loader} other {Loader}}} gameVersion {{count, plural, one {Spielversion} other {Spielversionen}}} other {{count, plural, one {Artikel} other {Artikel}}}} aus der Tabelle"
},
"analytics.chart.tooltip.dependent-on-project": {
"message": "Abhängig von {project}"
},
"analytics.chart.tooltip.dependent-project-version": {
"message": "{dependentProject} abhängig von {dependencyProject}, {version}"
},
"analytics.chart.tooltip.duration.days": {
"message": "{count, plural, one {# Tag} other {# Tage}}"
},
"analytics.chart.tooltip.duration.hours": {
"message": "{count, plural, one {# Stunde} other {# Stunden}}"
},
"analytics.chart.tooltip.duration.minutes": {
"message": "{count, plural, one {# Minute} other {# Minuten}}"
},
"analytics.chart.tooltip.hide-entry": {
"message": "{name} im Diagramm ausblenden"
},
"analytics.chart.tooltip.pinned": {
"message": "Diagramm-Tooltip angeheftet"
},
"analytics.chart.tooltip.pinned-aria": {
"message": "Angeheftet"
},
"analytics.chart.tooltip.previous-period-short": {
"message": "(vorh.)"
},
"analytics.chart.tooltip.show-entry": {
"message": "{name} im Diagramm anzeigen"
},
"analytics.chart.tooltip.total": {
"message": "Total"
},
"analytics.chart.view.area": {
"message": "Fläche"
},
"analytics.chart.view.bar": {
"message": "Balken"
},
"analytics.chart.view.line": {
"message": "Linie"
},
"analytics.download-reason.dependency": {
"message": "Abhängigkeit"
},
"analytics.download-reason.modpack": {
"message": "Modpack"
},
"analytics.download-reason.standalone": {
"message": "Standalone"
},
"analytics.download-reason.update": {
"message": "Update"
},
"analytics.download-source.app": {
"message": "Modrinth App"
},
"analytics.download-source.website": {
"message": "Modrinth Website"
},
"analytics.downloads.suffix": {
"message": "downloads"
},
"analytics.empty.no-data": {
"message": "Keine Daten verfügbar"
},
"analytics.empty.no-data-for-analytics": {
"message": "Keine Daten für Analytics verfügbar"
},
"analytics.empty.no-projects": {
"message": "Keine Projekte verfügbar"
},
"analytics.empty.no-projects-for-analytics": {
"message": "Keine Projekte für Analytics verfügbar"
},
"analytics.empty.select-project": {
"message": "Wähle mindestens ein Projekt aus, um Daten anzuzeigen"
},
"analytics.filter.game-version-type": {
"message": "Spielversionstyp"
},
"analytics.filter.game-version-type.all": {
"message": "Alle"
},
"analytics.filter.game-version-type.release": {
"message": "Release"
},
"analytics.filter.search.countries": {
"message": "Länder suchen..."
},
"analytics.filter.search.dependent-projects": {
"message": "Projekte durchsuchen..."
},
"analytics.filter.search.download-sources": {
"message": "Download-Quellen suchen..."
},
"analytics.filter.search.members": {
"message": "Mitglieder durchsuchen..."
},
"analytics.filter.search.project-versions": {
"message": "Projektversionen suchen..."
},
"analytics.filter.search.versions": {
"message": "Versionen suchen..."
},
"analytics.graph.title.downloads": {
"message": "Downloads im Zeitverlauf"
},
"analytics.graph.title.playtime": {
"message": "Spielzeit im Zeitverlauf"
},
"analytics.graph.title.revenue": {
"message": "Einnahmen im Zeitverlauf"
},
"analytics.graph.title.views": {
"message": "Aufrufe im Zeitverlauf"
},
"analytics.group-by.1h": {
"message": "1 Std."
},
"analytics.group-by.6h": {
"message": "6 Std."
},
"analytics.group-by.date": {
"message": "Datum"
},
"analytics.group-by.day": {
"message": "Tag"
},
"analytics.group-by.month": {
"message": "Monat"
},
"analytics.group-by.selected.day": {
"message": "Nach Tag gruppieren"
},
"analytics.group-by.selected.hour": {
"message": "Nach Stunde gruppieren"
},
"analytics.group-by.selected.month": {
"message": "Nach Monat gruppieren"
},
"analytics.group-by.selected.six-hours": {
"message": "Nach 6 Stunden gruppieren"
},
"analytics.group-by.selected.week": {
"message": "Nach Woche gruppieren"
},
"analytics.group-by.selected.year": {
"message": "Nach Jahr gruppieren"
},
"analytics.group-by.week": {
"message": "Woche"
},
"analytics.group-by.year": {
"message": "Jahr"
},
"analytics.loading.fetching-results": {
"message": "Ergebnisse werden abgerufen..."
},
"analytics.options.loading": {
"message": "Lädt..."
},
"analytics.project-event.project-approved": {
"message": "Projekt genehmigt"
},
"analytics.project-event.project-private": {
"message": "Projekt auf privat gesetzt"
},
"analytics.project-event.project-status-changed": {
"message": "Projektstatus geändert"
},
"analytics.project-event.project-unlisted": {
"message": "Projekt nicht gelistet"
},
"analytics.project-event.version-released": {
"message": "{version} veröffentlicht"
},
"analytics.project-event.version-uploaded": {
"message": "Version hochgeladen"
},
"analytics.project-status.approved": {
"message": "Genehmigt"
},
"analytics.project-status.archived": {
"message": "Archiviert"
},
"analytics.project-status.draft": {
"message": "Entwurf"
},
"analytics.project-status.other": {
"message": "Andere"
},
"analytics.project-status.private": {
"message": "Privat"
},
"analytics.project-status.rejected": {
"message": "Abgelehnt"
},
"analytics.project-status.unlisted": {
"message": "Nicht gelistet"
},
"analytics.project-status.withheld": {
"message": "Zurückgehalten"
},
"analytics.project.all": {
"message": "Alle Projekte"
},
"analytics.project.count": {
"message": "{count, plural, one {# Projekt} other {# Projekte}}"
},
"analytics.project.icon-alt": {
"message": "{name} Symbol"
},
"analytics.project.select": {
"message": "Projekte auswählen"
},
"analytics.project.user": {
"message": "Projekte von {username}"
},
"analytics.project.your": {
"message": "Deine Projekte"
},
"analytics.query.filter.add": {
"message": "Filter hinzufügen"
},
"analytics.query.label.breakdown": {
"message": "Aufschlüsselung:"
},
"analytics.query.label.grouped-by": {
"message": "Gruppiert nach"
},
"analytics.query.label.project": {
"message": "Projekt:"
},
"analytics.query.label.timeframe": {
"message": "Zeitraum:"
},
"analytics.stat.downloads": {
"message": "Downloads"
},
"analytics.stat.monetization-banner.body": {
"message": "Nur Aufrufe und Downloads, die über Modrinth erfolgen, sind monetarisierbar und müssen die Filter zur Betrugsprävention bestehen. Für Downloads über die Modrinth App muss der Nutzer zudem angemeldet sein. Da alle Projekte einen ähnlichen Anteil an monetarisierten Downloads aufweisen, würden sich deine Einnahmen nicht wesentlich ändern, wenn alle Downloads gezählt würden."
},
"analytics.stat.monetization-banner.learn-more": {
"message": "Mehr erfahren"
},
"analytics.stat.monetization-banner.title": {
"message": "Wie funktioniert die Monetarisierung?"
},
"analytics.stat.playtime": {
"message": "Spielzeit"
},
"analytics.stat.playtime-hours": {
"message": "{hours} Std."
},
"analytics.stat.previous-period-comparison": {
"message": "vs. vorh. Zeitraum"
},
"analytics.stat.previous-period-comparison-short": {
"message": "vs. vorh."
},
"analytics.stat.revenue": {
"message": "Einnahmen"
},
"analytics.stat.revenue-value": {
"message": "${value}"
},
"analytics.stat.unavailable": {
"message": "N/A"
},
"analytics.stat.unavailable-tooltip": {
"message": "Statistik für aktuelle Abfrage nicht verfügbar"
},
"analytics.stat.views": {
"message": "Aufrufe"
},
"analytics.table.csv.date-range": {
"message": "{start} bis {end}"
},
"analytics.table.csv.filename": {
"message": "Modrinth Analytics {breakdown} Aufschlüsselung - {dateRange}"
},
"analytics.table.csv.header.playtime-seconds": {
"message": "Spielzeit (Sekunden)"
},
"analytics.table.csv.selected-range": {
"message": "Ausgewählter Bereich"
},
"analytics.table.duration.days": {
"message": "{count, plural, one {# Tag} other {# Tage}}"
},
"analytics.table.duration.hours": {
"message": "{count, plural, one {# Stunde} other {# Stunden}}"
},
"analytics.table.duration.minutes": {
"message": "{count, plural, one {# Minute} other {# Minuten}}"
},
"analytics.table.empty.no-matching-rows": {
"message": "Keine übereinstimmenden Analytics-Zeilen"
},
"analytics.table.export-csv": {
"message": "CSV exportieren"
},
"analytics.table.export.cumulative": {
"message": "Kumulativ"
},
"analytics.table.export.grouped": {
"message": "Gruppiert nach {groupBy}"
},
"analytics.table.pagination.summary": {
"message": "Zeige {start} bis {end} von {total}"
},
"analytics.table.search.placeholder": {
"message": "Suche..."
},
"analytics.threshold.countries-above": {
"message": "Länder über"
},
"analytics.threshold.country-downloads-aria": {
"message": "Schwellenwert für Länder-Downloads"
},
"analytics.threshold.game-version-downloads-aria": {
"message": "Schwellenwert für Spielversion-Downloads"
},
"analytics.threshold.game-versions-above": {
"message": "Spielversionen über"
},
"analytics.threshold.project-downloads-aria": {
"message": "Schwellenwert für Projekt-Downloads"
},
"analytics.threshold.project-version-downloads-aria": {
"message": "Schwellenwert für Projektversionen-Downloads"
},
"analytics.threshold.project-versions-above": {
"message": "Projektversionen über"
},
"analytics.threshold.projects-above": {
"message": "Projekte über"
},
"analytics.title": {
"message": "Analytics"
},
"analytics.value.monetized": {
"message": "Monetarisiert"
},
"analytics.value.no-dependent": {
"message": "Keine"
},
"analytics.value.no-dependent-tooltip": {
"message": "Aus anderen Gründen als einer Abhängigkeit heruntergeladen"
},
"analytics.value.none": {
"message": "Keine"
},
"analytics.value.other": {
"message": "Andere"
},
"analytics.value.unknown": {
"message": "Unbekannt"
},
"analytics.value.unknown-dependent-tooltip": {
"message": "Es gibt keine Metadaten, um zu bestimmen, zu welchem abhängigen Projekt dieser Download gehört."
},
"analytics.value.unmonetized": {
"message": "Nicht monetarisiert"
},
"app-marketing.download.description": {
"message": "Unsere Desktop App ist für alle Platformen verfügbar. Wähle deine bevorzugte Version."
},
"app-marketing.download.download-appimage": {
"message": "Lade das AppImage herunter"
},
"app-marketing.download.download-beta": {
"message": "Lade die beta herunter"
},
"app-marketing.download.download-deb": {
"message": "Lade das DEB herunter"
},
"app-marketing.download.download-rpm": {
"message": "Lade das RPM herunter"
},
"app-marketing.download.flathub": {
"message": "Auf Flathub herunterladen"
},
"app-marketing.download.linux": {
"message": "Linux"
},
"app-marketing.download.linux-disclaimer": {
"message": "Die Linux Version der Modrinth App <issues-link>hat einige Probleme</issues-link> mit bestimmten Systemen und Konfiigurationen. Sollte Modrinth App auf deinem System instabil sein, empfehlen wir das verwenden anderer Apps wie z. B. <prism-link>Prism Launcher</prism-link> zum einfachen installieren von Modrinth Inhalten."
},
"app-marketing.download.mac": {
"message": "Mac"
},
"app-marketing.download.options-title": {
"message": "Download Optionen"
},
"app-marketing.download.terms": {
"message": "Durch das herunterladen der Modrinth App stimmst du unseren <terms-link>Nutzungsbedingungen</terms-link> und <privacy-link>Datenschutzrichtlinien</privacy-link> zu."
},
"app-marketing.download.title": {
"message": "Modrinth App (Beta) herunterladen"
},
"app-marketing.download.windows": {
"message": "Windows"
},
"app-marketing.features.follow.description": {
"message": "Speicher Inhalte die du magst und erhalte updates mit einem klick."
},
"app-marketing.features.follow.title": {
"message": "Folge Projekten"
},
"app-marketing.features.importing.description": {
"message": "Importiere alle deine Lieblingsprofile von Launchern welche du vorher verwendet hast, und starte mit Modrinth App in Sekundenschnelle!"
},
"app-marketing.features.importing.gdlauncher-alt": {
"message": "GDLauncher"
},
"app-marketing.features.importing.multimc-alt": {
"message": "MultiMC"
},
"app-marketing.features.importing.title": {
"message": "Profile importieren"
},
"app-marketing.features.mod-management.actions": {
"message": "Aktionen"
},
"app-marketing.features.mod-management.byAuthor": {
"message": "von {author}"
},
"app-marketing.features.mod-management.description": {
"message": "Modrinth macht es einfach, all deine Mods an einem Ort zu verwalten. Du kannst Mods installieren, deinstallieren und aktualisieren mit einem einzigen Klick."
},
"app-marketing.features.mod-management.installed-mods": {
"message": "Installierte Mods"
},
"app-marketing.features.mod-management.name": {
"message": "Name"
},
"app-marketing.features.mod-management.search-mods": {
"message": "Mods suchen"
},
"app-marketing.features.mod-management.title": {
"message": "Mod Verwaltung"
},
"app-marketing.features.mod-management.version": {
"message": "Version"
},
"app-marketing.features.offline.description": {
"message": "Spiele mit deinen Mods, egal ob du mit dem Internet verbunden bist oder nicht."
},
"app-marketing.features.offline.title": {
"message": "Offline Modus"
},
"app-marketing.features.open-source.description": {
"message": "Modrinth's Launcher ist komplett quelloffen. Du kannst den Quellcode auf unserem <github-link>GitHub</github-link> finden!"
},
"app-marketing.features.open-source.title": {
"message": "Quelloffen"
},
"app-marketing.features.performance.activity-monitor": {
"message": "Aktivitätsmonitor"
},
"app-marketing.features.performance.cpu-percent": {
"message": "% CPU"
},
"app-marketing.features.performance.description": {
"message": "Modrinth App läuft besser als viele der führenden Mod Manager. Es verwendet nur 150 MB Arbeitsspeicher!"
},
"app-marketing.features.performance.discord": {
"message": "Discord"
},
"app-marketing.features.performance.good-performance": {
"message": "Gute Performance"
},
"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": "1 billion %"
},
"app-marketing.features.performance.process-name": {
"message": "Prozessname"
},
"app-marketing.features.performance.ram": {
"message": "RAM"
},
"app-marketing.features.performance.small": {
"message": "Klein"
},
"app-marketing.features.performance.title": {
"message": "Perfromant"
},
"app-marketing.features.play.description": {
"message": "Nutze Modrinth App zum herunterladen und Spielen deiner Lieblingsmods und -Modpakete."
},
"app-marketing.features.play.title": {
"message": "Spiele mit deinen Lieblings-Mods"
},
"app-marketing.features.sharing.description": {
"message": "Erstelle, teile und Spiele mit Modpaketen mit tausenden von Mods und Modpaketen auf Modrinth."
},
"app-marketing.features.sharing.modpack": {
"message": "Modpaket"
},
"app-marketing.features.sharing.share-button": {
"message": "Teilen"
},
"app-marketing.features.sharing.title": {
"message": "Modpaket teilen"
},
"app-marketing.features.unlike-any-launcher": {
"message": "Anders als andere Launcher"
},
"app-marketing.features.website.description": {
"message": "Modrinth App ist komplett integriert mit der Webseite, welches dir ermöglicht, auf all deine Lieblingsprojekte per App zuzugreifen!"
},
"app-marketing.features.website.title": {
"message": "Webseitenintegration"
},
"app-marketing.features.youve-used-before": {
"message": "welche du verwendest hast"
},
"app-marketing.hero.app-screenshot-alt": {
"message": "Screenshot der Modrinth App mit einer Cobblemon-Instanz geöffnet in der 'Inhalt' Seite."
},
"app-marketing.hero.description": {
"message": "Modrinth App ist ein einzigartiger, quelloffener Launcher, welcher dir erlaubt, mit deinen Lieblingsmods zu spielen, und diese aktuell zu halten. Alles in einem netten kleine Paket."
},
"app-marketing.hero.download-button": {
"message": "Modrinth App herunterladen"
},
"app-marketing.hero.download-modrinth-app": {
"message": "Modrinth App herunterladen"
},
"app-marketing.hero.download-modrinth-app-for-os": {
"message": "Modrinth App für {os} herunterladen"
},
"app-marketing.hero.minecraft-screenshot-alt": {
"message": "Schreenshot des Hauptmenüs der Cobblemon-Instanz."
},
"app-marketing.hero.more-download-options": {
"message": "Weitere Downloadoptionen"
},
"app-marketing.hide-other-packages": {
"message": "Andere Pakete verstecken"
},
"app-marketing.not-recommended": {
"message": "Wir empfehlen, diese nicht zu verwenden, ausser du weisst was du tust."
},
"app-marketing.show-other-packages": {
"message": "Andere Pakete anzeigen"
},
"auth.authorize.action.authorize": {
"message": "Autorisieren"
},
"auth.authorize.action.decline": {
"message": "Ablehnen"
},
"auth.authorize.app-info": {
"message": "<strong>{appName}</strong> von <creator-link>{creator}</creator-link> wird in der Lage sein:"
},
"auth.authorize.authorize-app-name": {
"message": "{appName} autorisieren"
},
"auth.authorize.error.missing-parameters": {
"message": "Erforderliche Abfrageparameter für OAuth fehlen."
},
"auth.authorize.error.no-redirect-url": {
"message": "Keine Weiterleitungsziel in Antwort gefunden"
},
"auth.authorize.errro-title": {
"message": "Ein Fehler ist aufgetreten"
},
"auth.authorize.redirect-url": {
"message": "Du wirst zu <redirect-url>{url}</redirect-url> weitergeleitet"
},
"auth.continue-with-provider": {
"message": "Weiter mit {provider}"
},
"auth.create-account.age-requirement.warning-title": {
"message": "Mindestalter"
},
"auth.create-account.complete-sign-up": {
"message": "Registrierung abschließen"
},
"auth.create-account.date-of-birth.invalid.text": {
"message": "Bitte gib ein gültiges Geburtsdatum ein. Das Jahr darf nicht 0000 sein."
},
"auth.create-account.date-of-birth.invalid.title": {
"message": "Ungültiges Geburtsdatum"
},
"auth.create-account.date-of-birth.label": {
"message": "Geburtsdatum"
},
"auth.create-account.date-of-birth.placeholder": {
"message": "Wähle dein Geburtsdatum"
},
"auth.create-account.date-of-birth.required.text": {
"message": "Bitte gib dein Geburtsdatum ein, bevor du fortfährst."
},
"auth.create-account.date-of-birth.required.title": {
"message": "Geburtsdatum erforderlich"
},
"auth.create-account.date-of-birth.under13-helper": {
"message": "Du erfüllst das Mindestalter für die Erstellung eines Kontos bei Modrinth nicht."
},
"auth.create-account.info-panel.source-code-link": {
"message": "Relevanter Quellcode"
},
"auth.create-account.info-panel.text": {
"message": "Wir speichern dein Geburtsdatum nicht. Wir verwenden es ausschließlich bei der Registrierung, um die Einhaltung der COPPA-Vorschriften sicherzustellen."
},
"auth.create-account.page-title": {
"message": "Konto erstellen"
},
"auth.create-account.security-check.label": {
"message": "Sicherheitscheck"
},
"auth.create-account.subscribe.label": {
"message": "Haltet mich per E-Mail über coole Dinge auf dem Laufenden, an denen Modrinth gerade arbeitet"
},
"auth.create-account.title": {
"message": "Ein Konto erstellen"
},
"auth.create-account.username.label": {
"message": "Benutzername"
},
"auth.create-account.username.placeholder": {
"message": "Benutzername eingeben"
},
"auth.reset-password.method-choice.action": {
"message": "Wiederherstellungs-E-Mail senden"
},
"auth.reset-password.method-choice.description": {
"message": "Gib eine E-Mail unten ein und wir werden dir einen Wiederherstellungslink zum wiederherstellen deines Kontos senden."
},
"auth.reset-password.notification.email-sent.text": {
"message": "Eine E-Mail mit Anweisungen wurde gesendet, falls diese E-Mail zuvor in deinem Konto gespeicher wurde."
},
"auth.reset-password.notification.email-sent.title": {
"message": "E-Mail gesendet"
},
"auth.reset-password.notification.password-reset.text": {
"message": "Du kannst dich jetzt mit deinem neuen Passwort anmelden."
},
"auth.reset-password.notification.password-reset.title": {
"message": "Passwort erfolgreich zurückgesetzt"
},
"auth.reset-password.post-challenge.action": {
"message": "Passwort zurücksetzen"
},
"auth.reset-password.post-challenge.confirm-password.label": {
"message": "Passwort bestätigen"
},
"auth.reset-password.post-challenge.description": {
"message": "Gib dein neues Passwort unten ein, um Zugriff auf dein Konto zu erhalten."
},
"auth.reset-password.title": {
"message": "Passwort zurücksetzen"
},
"auth.reset-password.title.long": {
"message": "Dein Passwort zurücksetzen"
},
"auth.sign-in.2fa.description": {
"message": "Gib den 6-stelligen Code aus deiner Authentifikator-App oder einen deiner Backup-Codes ein."
},
"auth.sign-in.2fa.label": {
"message": "Zwei-Faktor-Authentifizierung"
},
"auth.sign-in.2fa.placeholder": {
"message": "Code eingeben..."
},
"auth.sign-in.continue-with-email": {
"message": "Weiter mit E-Mail"
},
"auth.sign-in.continue-with-passkey": {
"message": "Weiter mit Passkey"
},
"auth.sign-in.create-account": {
"message": "Registrieren"
},
"auth.sign-in.forgot-password": {
"message": "Passwort vergessen"
},
"auth.sign-in.last-sign-in": {
"message": "Zuletzt benutzt"
},
"auth.sign-in.no-account": {
"message": "Du hast kein Konto?"
},
"auth.sign-in.sign-in-with": {
"message": "Bei Modrinth anmelden"
},
"auth.sign-in.title": {
"message": "Anmelden"
},
"auth.sign-up.age-requirement.warning-title": {
"message": "Mindestalter"
},
"auth.sign-up.continue-with-email": {
"message": "Mit E-Mail fortfahren"
},
"auth.sign-up.legal-dislaimer": {
"message": "Durch das erstellen eines Kontos stimmst du den <terms-link>Nutzungsbedingungen</terms-link> und <privacy-policy-link>Datenschutzrichtlinien</privacy-policy-link> von Modrinth zu."
},
"auth.sign-up.show-fewer-options": {
"message": "Zeige weniger Optionen"
},
"auth.sign-up.show-other-options": {
"message": "Zeige weitere Optionen"
},
"auth.sign-up.sign-in-option.title": {
"message": "Du hast bereits ein Konto?"
},
"auth.sign-up.title": {
"message": "Registrieren"
},
"auth.sign-up.title.sign-up-with": {
"message": "Ein Konto erstellen"
},
"auth.verify-email.action.account-settings": {
"message": "Kontoeinstellungen"
},
"auth.verify-email.action.discover-mods": {
"message": "Mods entdecken"
},
"auth.verify-email.already-verified.description": {
"message": "Deine E-Mail ist bereits verifiziert!"
},
"auth.verify-email.already-verified.title": {
"message": "E-Mail bereits verifiziert"
},
"auth.verify-email.failed-verification.action": {
"message": "Verifizierungs-E-Mail erneut senden"
},
"auth.verify-email.failed-verification.description": {
"message": "Wir konnten deine E-Mail nicht verifizieren. Versuch, die Verifizierungs-E-Mail erneut über das Dashboard zu senden, indem du dich anmeldest."
},
"auth.verify-email.failed-verification.description.logged-in": {
"message": "Wir konnten deine E-Mail nicht verifizieren. Versuche die Verifizierungs-E-Mail erneut zu senden, indem du auf den Knopf unten klickst."
},
"auth.verify-email.failed-verification.title": {
"message": "E-Mail-Veifizierung fehlgeschlagen"
},
"auth.verify-email.notification.email-sent.description": {
"message": "Eine E-Mail mit einem Link zur Verifizierung deines Accounts wurde an {email} gesendet."
},
"auth.verify-email.notification.email-sent.title": {
"message": "E-Mail gesendet"
},
"auth.verify-email.notification.error-occurred.title": {
"message": "Ein Fehler ist aufgetreten"
},
"auth.verify-email.post-verification.description": {
"message": "Deine E-Mail-Adresse wurde erfolgreich verifiziert!"
},
"auth.verify-email.post-verification.title": {
"message": "E-Mail-Verifizierung"
},
"auth.verify-email.title": {
"message": "E-Mail verifizieren"
},
"collection.button.edit-icon": {
"message": "Icon bearbeiten"
},
"collection.button.remove-icon": {
"message": "Icon entfernen"
},
"collection.button.remove-project": {
"message": "Projekt entfernen"
},
"collection.button.replace-icon": {
"message": "Icon ersetzen"
},
"collection.button.select-icon": {
"message": "Icon auswählen"
},
"collection.button.unfollow-project": {
"message": "Projekt entfolgen"
},
"collection.delete-modal.description": {
"message": "Dies wird diese Sammlung permanent löschen. Diese Aktion kann nicht rückgängig gemacht werden."
},
"collection.delete-modal.title": {
"message": "Bist du dir sicher, dass du diese Kollektion löschen willst?"
},
"collection.description": {
"message": "{description} - {name} von {username} auf Modrinth ansehen"
},
"collection.description.following": {
"message": "Auto-generiere Kollektion aller Projekte denen du folgst."
},
"collection.editing": {
"message": "Sammlung bearbeiten"
},
"collection.error.not-found": {
"message": "Kollektion nicht gefunden"
},
"collection.label.created-at": {
"message": "Erstellt {ago}"
},
"collection.label.curated-by": {
"message": "Kuratiert von"
},
"collection.label.no-projects": {
"message": "Noch keine Projekte in Sammlung"
},
"collection.label.projects-count": {
"message": "{count, plural, =0 {Noch keine Projekte} other {<stat>{count}</stat> {type}}}"
},
"collection.label.updated-at": {
"message": "Aktualisiert {ago}"
},
"collection.return-link.dashboard-collections": {
"message": "Deine Sammlungen"
},
"collection.return-link.user": {
"message": "{user}'s Profil"
},
"collection.title": {
"message": "{name} - Kollektion"
},
"conversation-thread.action.add-private-note": {
"message": "Private Notiz hinzufügen"
},
"conversation-thread.action.approve": {
"message": "Genehmigen"
},