-
Notifications
You must be signed in to change notification settings - Fork 429
Expand file tree
/
Copy pathindex.json
More file actions
3671 lines (3671 loc) · 122 KB
/
index.json
File metadata and controls
3671 lines (3671 loc) · 122 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": "Cancel"
},
"action.continue": {
"message": "Continue"
},
"admin.billing.error.not-found": {
"message": "User not found"
},
"app-marketing.download.description": {
"message": "Our desktop app is available across all platforms, choose your desired version."
},
"app-marketing.download.download-appimage": {
"message": "Download the AppImage"
},
"app-marketing.download.download-beta": {
"message": "Download the beta"
},
"app-marketing.download.download-deb": {
"message": "Download the DEB"
},
"app-marketing.download.download-rpm": {
"message": "Download the RPM"
},
"app-marketing.download.flathub": {
"message": "Get it on Flathub"
},
"app-marketing.download.linux": {
"message": "Linux"
},
"app-marketing.download.linux-disclaimer": {
"message": "The Linux versions of Modrinth App are <issues-link>known to have issues</issues-link> on certain systems and configurations. If Modrinth App is unstable on your system, we encourage you to try other apps like <prism-link>Prism Launcher</prism-link> to easily install Modrinth content."
},
"app-marketing.download.mac": {
"message": "Mac"
},
"app-marketing.download.options-title": {
"message": "Download options"
},
"app-marketing.download.terms": {
"message": "By downloading Modrinth App, you agree to our <terms-link>Terms</terms-link> and <privacy-link>Privacy Policy</privacy-link>."
},
"app-marketing.download.title": {
"message": "Download Modrinth App (Beta)"
},
"app-marketing.download.windows": {
"message": "Windows"
},
"app-marketing.features.follow.description": {
"message": "Save content you love and receive updates with one click."
},
"app-marketing.features.follow.title": {
"message": "Follow projects"
},
"app-marketing.features.importing.description": {
"message": "Import all your favorite profiles from the launcher you were using before, and get started with Modrinth App in seconds!"
},
"app-marketing.features.importing.gdlauncher-alt": {
"message": "GDLauncher"
},
"app-marketing.features.importing.multimc-alt": {
"message": "MultiMC"
},
"app-marketing.features.importing.title": {
"message": "Profile importing"
},
"app-marketing.features.mod-management.actions": {
"message": "Actions"
},
"app-marketing.features.mod-management.byAuthor": {
"message": "by {author}"
},
"app-marketing.features.mod-management.description": {
"message": "Modrinth makes it easy to manage all your mods in one place. You can install, uninstall, and update mods with a single click."
},
"app-marketing.features.mod-management.installed-mods": {
"message": "Installed mods"
},
"app-marketing.features.mod-management.name": {
"message": "Name"
},
"app-marketing.features.mod-management.search-mods": {
"message": "Search mods"
},
"app-marketing.features.mod-management.title": {
"message": "Mod management"
},
"app-marketing.features.mod-management.version": {
"message": "Version"
},
"app-marketing.features.offline.description": {
"message": "Play your mods, whether you are connected to the internet, or not."
},
"app-marketing.features.offline.title": {
"message": "Offline mode"
},
"app-marketing.features.open-source.description": {
"message": "Modrinth's launcher is fully open source. You can view the source code on our <github-link>GitHub</github-link>!"
},
"app-marketing.features.open-source.title": {
"message": "Open source"
},
"app-marketing.features.performance.activity-monitor": {
"message": "Activity monitor"
},
"app-marketing.features.performance.cpu-percent": {
"message": "% CPU"
},
"app-marketing.features.performance.description": {
"message": "Modrinth App performs better than many of the leading mod managers, using just 150 MB of RAM!"
},
"app-marketing.features.performance.discord": {
"message": "Discord"
},
"app-marketing.features.performance.good-performance": {
"message": "Good 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": "Process name"
},
"app-marketing.features.performance.ram": {
"message": "RAM"
},
"app-marketing.features.performance.small": {
"message": "Small"
},
"app-marketing.features.performance.title": {
"message": "Performant"
},
"app-marketing.features.play.description": {
"message": "Use Modrinth App to download and play with your favorite mods and modpacks."
},
"app-marketing.features.play.title": {
"message": "Play with your favorite mods"
},
"app-marketing.features.sharing.description": {
"message": "Build, share, and play modpacks with any of the thousands of mods and modpacks hosted here on Modrinth."
},
"app-marketing.features.sharing.modpack": {
"message": "Modpack"
},
"app-marketing.features.sharing.share-button": {
"message": "Share"
},
"app-marketing.features.sharing.title": {
"message": "Share modpacks"
},
"app-marketing.features.unlike-any-launcher": {
"message": "Unlike any launcher"
},
"app-marketing.features.website.description": {
"message": "Modrinth App is fully integrated with the website, so you can access all your favorite projects from the app!"
},
"app-marketing.features.website.title": {
"message": "Website integration"
},
"app-marketing.features.youve-used-before": {
"message": "you've used before"
},
"app-marketing.hero.app-screenshot-alt": {
"message": "Screenshot of Modrinth App with a Cobblemon instance opened to the 'Content' page."
},
"app-marketing.hero.description": {
"message": "Modrinth App is a unique, open source launcher that allows you to play your favorite mods, and keep them up to date, all in one neat little package."
},
"app-marketing.hero.download-button": {
"message": "Download Modrinth App"
},
"app-marketing.hero.download-modrinth-app": {
"message": "Download Modrinth App"
},
"app-marketing.hero.download-modrinth-app-for-os": {
"message": "Download Modrinth App for {os}"
},
"app-marketing.hero.minecraft-screenshot-alt": {
"message": "Screenshot of the Cobblemon instance's main menu screen."
},
"app-marketing.hero.more-download-options": {
"message": "More Download Options"
},
"app-marketing.hide-other-packages": {
"message": "Hide other packages"
},
"app-marketing.not-recommended": {
"message": "We don't recommend you use these unless you know what you're doing."
},
"app-marketing.show-other-packages": {
"message": "Show other packages"
},
"auth.authorize.action.authorize": {
"message": "Authorize"
},
"auth.authorize.action.decline": {
"message": "Decline"
},
"auth.authorize.app-info": {
"message": "<strong>{appName}</strong> by <creator-link>{creator}</creator-link> will be able to:"
},
"auth.authorize.authorize-app-name": {
"message": "Authorize {appName}"
},
"auth.authorize.error.no-redirect-url": {
"message": "No redirect location found in response"
},
"auth.authorize.redirect-url": {
"message": "You will be redirected to <redirect-url>{url}</redirect-url>"
},
"auth.reset-password.method-choice.action": {
"message": "Send recovery email"
},
"auth.reset-password.method-choice.description": {
"message": "Enter your email below and we'll send a recovery link to allow you to recover your account."
},
"auth.reset-password.notification.email-sent.text": {
"message": "An email with instructions has been sent to you if the email was previously saved on your account."
},
"auth.reset-password.notification.email-sent.title": {
"message": "Email sent"
},
"auth.reset-password.notification.password-reset.text": {
"message": "You can now log-in into your account with your new password."
},
"auth.reset-password.notification.password-reset.title": {
"message": "Password successfully reset"
},
"auth.reset-password.post-challenge.action": {
"message": "Reset password"
},
"auth.reset-password.post-challenge.confirm-password.label": {
"message": "Confirm password"
},
"auth.reset-password.post-challenge.description": {
"message": "Enter your new password below to gain access to your account."
},
"auth.reset-password.title": {
"message": "Reset Password"
},
"auth.reset-password.title.long": {
"message": "Reset your password"
},
"auth.sign-in.2fa.description": {
"message": "Please enter a two-factor code to proceed."
},
"auth.sign-in.2fa.label": {
"message": "Enter two-factor code"
},
"auth.sign-in.2fa.placeholder": {
"message": "Enter code..."
},
"auth.sign-in.additional-options": {
"message": "<forgot-password-link>Forgot password?</forgot-password-link> • <create-account-link>Create an account</create-account-link>"
},
"auth.sign-in.sign-in-with": {
"message": "Sign in with"
},
"auth.sign-in.title": {
"message": "Sign In"
},
"auth.sign-in.use-password": {
"message": "Or use a password"
},
"auth.sign-up.action.create-account": {
"message": "Create account"
},
"auth.sign-up.legal-dislaimer": {
"message": "By creating an account, you agree to Modrinth's <terms-link>Terms</terms-link> and <privacy-policy-link>Privacy Policy</privacy-policy-link>."
},
"auth.sign-up.notification.password-mismatch.text": {
"message": "Passwords do not match!"
},
"auth.sign-up.sign-in-option.title": {
"message": "Already have an account?"
},
"auth.sign-up.subscribe.label": {
"message": "Subscribe to updates about Modrinth"
},
"auth.sign-up.title": {
"message": "Sign Up"
},
"auth.sign-up.title.create-account": {
"message": "Or create an account yourself"
},
"auth.sign-up.title.sign-up-with": {
"message": "Sign up with"
},
"auth.verify-email.action.account-settings": {
"message": "Account settings"
},
"auth.verify-email.already-verified.description": {
"message": "Your email is already verified!"
},
"auth.verify-email.already-verified.title": {
"message": "Email already verified"
},
"auth.verify-email.failed-verification.action": {
"message": "Resend verification email"
},
"auth.verify-email.failed-verification.description": {
"message": "We were unable to verify your email. Try re-sending the verification email through your dashboard by signing in."
},
"auth.verify-email.failed-verification.description.logged-in": {
"message": "We were unable to verify your email. Try re-sending the verification email through the button below."
},
"auth.verify-email.failed-verification.title": {
"message": "Email verification failed"
},
"auth.verify-email.post-verification.description": {
"message": "Your email address has been successfully verified!"
},
"auth.verify-email.post-verification.title": {
"message": "Email verification"
},
"auth.verify-email.title": {
"message": "Verify Email"
},
"auth.welcome.checkbox.subscribe": {
"message": "Subscribe to updates about Modrinth"
},
"auth.welcome.description": {
"message": "You’re now part of the awesome community of creators & explorers already building, downloading, and staying up-to-date with amazing mods."
},
"auth.welcome.label.tos": {
"message": "By creating an account, you have agreed to Modrinth's <terms-link>Terms</terms-link> and <privacy-policy-link>Privacy Policy</privacy-policy-link>."
},
"auth.welcome.long-title": {
"message": "Welcome to Modrinth!"
},
"auth.welcome.title": {
"message": "Welcome"
},
"collection.button.edit-icon": {
"message": "Edit icon"
},
"collection.button.remove-icon": {
"message": "Remove icon"
},
"collection.button.remove-project": {
"message": "Remove project"
},
"collection.button.replace-icon": {
"message": "Replace icon"
},
"collection.button.select-icon": {
"message": "Select icon"
},
"collection.button.unfollow-project": {
"message": "Unfollow project"
},
"collection.delete-modal.description": {
"message": "This will permanently delete this collection. This action cannot be undone."
},
"collection.delete-modal.title": {
"message": "Are you sure you want to delete this collection?"
},
"collection.description": {
"message": "{description} - View the collection {name} by {username} on Modrinth"
},
"collection.description.following": {
"message": "Auto-generated collection of all the projects you're following."
},
"collection.editing": {
"message": "Editing collection"
},
"collection.error.not-found": {
"message": "Collection not found"
},
"collection.label.created-at": {
"message": "Created {ago}"
},
"collection.label.curated-by": {
"message": "Curated by"
},
"collection.label.no-projects": {
"message": "No projects in collection yet"
},
"collection.label.projects-count": {
"message": "{count, plural, =0 {No projects yet} other {<stat>{count}</stat> {type}}}"
},
"collection.label.updated-at": {
"message": "Updated {ago}"
},
"collection.return-link.dashboard-collections": {
"message": "Your collections"
},
"collection.return-link.user": {
"message": "{user}'s profile"
},
"collection.title": {
"message": "{name} - Collection"
},
"create-project-version.create-modal.stage.add-files.admonition": {
"message": "Supplementary files are for supporting resources like source code, not for alternative versions or variants."
},
"create.collection.collection-info": {
"message": "Your new collection will be created as a public collection with {count, plural, =0 {no projects} one {# project} other {# projects}}."
},
"create.collection.create-collection": {
"message": "Create collection"
},
"create.collection.name-label": {
"message": "Name"
},
"create.collection.name-placeholder": {
"message": "Enter collection name..."
},
"create.collection.summary-description": {
"message": "A sentence or two that describes your collection."
},
"create.collection.summary-label": {
"message": "Summary"
},
"create.collection.summary-placeholder": {
"message": "This is a collection of..."
},
"create.collection.title": {
"message": "Creating a collection"
},
"create.limit-alert.approaching-limit": {
"message": "Approaching {type} limit ({current}/{max})"
},
"create.limit-alert.approaching-limit-description": {
"message": "You're about to hit the {type} limit, please contact support if you need more than {max} {typePlural}."
},
"create.limit-alert.contact-support": {
"message": "Contact support"
},
"create.limit-alert.limit-reached": {
"message": "{type} limit reached"
},
"create.limit-alert.limit-reached-description": {
"message": "You've reached your {type} limit of {max}. Please contact support to increase your limit."
},
"create.limit-alert.type-collection": {
"message": "collection"
},
"create.limit-alert.type-organization": {
"message": "organization"
},
"create.limit-alert.type-plural-collection": {
"message": "collections"
},
"create.limit-alert.type-plural-organization": {
"message": "organizations"
},
"create.limit-alert.type-plural-project": {
"message": "projects"
},
"create.limit-alert.type-project": {
"message": "project"
},
"create.organization.create-organization": {
"message": "Create organization"
},
"create.organization.name-label": {
"message": "Name"
},
"create.organization.name-placeholder": {
"message": "Enter organization name..."
},
"create.organization.ownership-info": {
"message": "You will be the owner of this organization, but you can invite other members and transfer ownership at any time."
},
"create.organization.summary-description": {
"message": "A sentence or two that describes your organization."
},
"create.organization.summary-label": {
"message": "Summary"
},
"create.organization.summary-placeholder": {
"message": "An organization for..."
},
"create.organization.title": {
"message": "Creating an organization"
},
"create.organization.url-label": {
"message": "URL"
},
"create.project.create-project": {
"message": "Create project"
},
"create.project.missing-fields-tooltip": {
"message": "Missing fields: {fields}"
},
"create.project.name-label": {
"message": "Name"
},
"create.project.name-placeholder": {
"message": "Enter project name..."
},
"create.project.owner-description": {
"message": "Set the project owner as yourself or an organization you're a member of."
},
"create.project.owner-label": {
"message": "Owner"
},
"create.project.server-project-title": {
"message": "Creating a server project"
},
"create.project.summary-description": {
"message": "A sentence or two that describes your project."
},
"create.project.summary-label": {
"message": "Summary"
},
"create.project.summary-placeholder": {
"message": "This project adds..."
},
"create.project.title": {
"message": "Creating a project"
},
"create.project.type-label": {
"message": "Type"
},
"create.project.type-project": {
"message": "Project"
},
"create.project.type-server": {
"message": "Server"
},
"create.project.url-label": {
"message": "URL"
},
"create.project.visibility-description": {
"message": "The visibility of your project after it has been approved."
},
"create.project.visibility-private": {
"message": "Private"
},
"create.project.visibility-public": {
"message": "Public"
},
"create.project.visibility-unlisted": {
"message": "Unlisted"
},
"dashboard.affiliate-links.create.button": {
"message": "Create affiliate link"
},
"dashboard.affiliate-links.error.title": {
"message": "Error loading affiliate links"
},
"dashboard.affiliate-links.header": {
"message": "Your affiliate links"
},
"dashboard.affiliate-links.revoke-confirm.body": {
"message": "This will permanently revoke the affiliate code `{id}` and any existing links with this code that have been shared will no longer be valid."
},
"dashboard.affiliate-links.revoke-confirm.button": {
"message": "Revoke"
},
"dashboard.affiliate-links.revoke-confirm.title": {
"message": "Are you sure you want to revoke your ''{title}'' affiliate link?"
},
"dashboard.affiliate-links.search": {
"message": "Search affiliate links..."
},
"dashboard.collections.button.create-new": {
"message": "Create new"
},
"dashboard.collections.empty.get-started-hint": {
"message": "Create your first collection to get started!"
},
"dashboard.collections.empty.no-collections": {
"message": "You don't have any collections yet"
},
"dashboard.collections.empty.no-match": {
"message": "No collections match your search"
},
"dashboard.collections.empty.no-match-hint": {
"message": "Try adjusting your filters or search terms."
},
"dashboard.collections.label.projects-count": {
"message": "{count} {countPlural, plural, one {project} other {projects}}"
},
"dashboard.collections.label.search-input": {
"message": "Search your collections"
},
"dashboard.collections.long-title": {
"message": "Your collections"
},
"dashboard.creator-tax-form-modal.confirmation.download-button": {
"message": "Download {formType}"
},
"dashboard.creator-tax-form-modal.confirmation.success": {
"message": "Your {formType} tax form has been submitted successfully!"
},
"dashboard.creator-tax-form-modal.confirmation.support-text": {
"message": "You can freely withdraw now. If you have questions or need to update your details <support-link>contact support</support-link>."
},
"dashboard.creator-tax-form-modal.confirmation.title": {
"message": "You're all set! 🎉"
},
"dashboard.creator-tax-form-modal.entity.description": {
"message": "A foreign entity means a business entity organized outside the United States (such as a non-US corporation, partnership, or LLC)."
},
"dashboard.creator-tax-form-modal.entity.foreign-entity": {
"message": "Foreign entity"
},
"dashboard.creator-tax-form-modal.entity.private-individual": {
"message": "Private individual"
},
"dashboard.creator-tax-form-modal.entity.question": {
"message": "Are you a private individual or part of a foreign entity?"
},
"dashboard.creator-tax-form-modal.header": {
"message": "Tax form"
},
"dashboard.creator-tax-form-modal.security.description": {
"message": "Modrinth uses third-party provider Track1099 to securely collect and store your tax forms. <security-link>Learn more here.</security-link>"
},
"dashboard.creator-tax-form-modal.security.header": {
"message": "Security practices"
},
"dashboard.creator-tax-form-modal.us-citizen.question": {
"message": "Are you a US citizen?"
},
"dashboard.creator-withdraw-modal.complete-tax-form": {
"message": "Complete tax form"
},
"dashboard.creator-withdraw-modal.continue-with-limit": {
"message": "Continue with limit"
},
"dashboard.creator-withdraw-modal.details-label": {
"message": "Details"
},
"dashboard.creator-withdraw-modal.fee-breakdown-amount": {
"message": "Amount"
},
"dashboard.creator-withdraw-modal.fee-breakdown-exchange-rate": {
"message": "FX rate"
},
"dashboard.creator-withdraw-modal.fee-breakdown-fee": {
"message": "Fee"
},
"dashboard.creator-withdraw-modal.fee-breakdown-gift-card-value": {
"message": "Gift card value"
},
"dashboard.creator-withdraw-modal.fee-breakdown-net-amount": {
"message": "Net amount"
},
"dashboard.creator-withdraw-modal.fee-breakdown-usd-equivalent": {
"message": "USD equivalent"
},
"dashboard.creator-withdraw-modal.kyc.business-entity": {
"message": "Business entity"
},
"dashboard.creator-withdraw-modal.kyc.entity-description": {
"message": "A business entity refers to a registered organization such as a corporation, partnership, or LLC."
},
"dashboard.creator-withdraw-modal.kyc.entity-question": {
"message": "Are you withdrawing as an individual or a business?"
},
"dashboard.creator-withdraw-modal.kyc.private-individual": {
"message": "Private individual"
},
"dashboard.creator-withdraw-modal.method-selection.country-placeholder": {
"message": "Select your country"
},
"dashboard.creator-withdraw-modal.method-selection.country-search-placeholder": {
"message": "Search countries..."
},
"dashboard.creator-withdraw-modal.method-selection.error-text": {
"message": "Unable to fetch available payment methods. Please try again later."
},
"dashboard.creator-withdraw-modal.method-selection.error-title": {
"message": "Failed to load payment methods"
},
"dashboard.creator-withdraw-modal.method-selection.region": {
"message": "Region"
},
"dashboard.creator-withdraw-modal.method-selection.region-tooltip": {
"message": "Some payout methods are not available in certain regions."
},
"dashboard.creator-withdraw-modal.method-selection.select-method": {
"message": "Select withdraw method"
},
"dashboard.creator-withdraw-modal.method-selection.tax-limit-warning": {
"message": "Your withdraw limit is <b>{amount}</b>, <tax-link>complete a tax form</tax-link> to withdraw more."
},
"dashboard.creator-withdraw-modal.muralpay-details.account-owner": {
"message": "Account owner"
},
"dashboard.creator-withdraw-modal.muralpay-details.bank-account-owner": {
"message": "Bank account owner"
},
"dashboard.creator-withdraw-modal.muralpay-details.bank-account-owner-description": {
"message": "Enter the name of the person authorized to operate this bank account on behalf of the business."
},
"dashboard.creator-withdraw-modal.muralpay-details.coin": {
"message": "Coin"
},
"dashboard.creator-withdraw-modal.muralpay-details.crypto-warning-header": {
"message": "Confirm your wallet address"
},
"dashboard.creator-withdraw-modal.muralpay-details.document-number-national-id": {
"message": "National ID number"
},
"dashboard.creator-withdraw-modal.muralpay-details.document-number-national-id-placeholder": {
"message": "Enter national ID number"
},
"dashboard.creator-withdraw-modal.muralpay-details.document-number-passport": {
"message": "Passport number"
},
"dashboard.creator-withdraw-modal.muralpay-details.document-number-passport-placeholder": {
"message": "Enter passport number"
},
"dashboard.creator-withdraw-modal.muralpay-details.document-number-resident-id": {
"message": "Resident ID number"
},
"dashboard.creator-withdraw-modal.muralpay-details.document-number-resident-id-placeholder": {
"message": "Enter resident ID number"
},
"dashboard.creator-withdraw-modal.muralpay-details.document-number-ruc": {
"message": "RUC number"
},
"dashboard.creator-withdraw-modal.muralpay-details.document-number-ruc-placeholder": {
"message": "Enter RUC number"
},
"dashboard.creator-withdraw-modal.muralpay-details.document-number-tax-id": {
"message": "Tax ID number"
},
"dashboard.creator-withdraw-modal.muralpay-details.document-number-tax-id-placeholder": {
"message": "Enter tax ID number"
},
"dashboard.creator-withdraw-modal.muralpay-details.network": {
"message": "Network"
},
"dashboard.creator-withdraw-modal.nearing-threshold": {
"message": "You're nearing the withdraw threshold. You can withdraw <b>{amountRemaining}</b> now, but a tax form is required for more."
},
"dashboard.creator-withdraw-modal.paypal-details.account": {
"message": "Account"
},
"dashboard.creator-withdraw-modal.paypal-details.disconnect-account": {
"message": "Disconnect account"
},
"dashboard.creator-withdraw-modal.paypal-details.payment-method": {
"message": "Payment method"
},
"dashboard.creator-withdraw-modal.paypal-details.paypal-account": {
"message": "PayPal account"
},
"dashboard.creator-withdraw-modal.paypal-details.paypal-auth-description": {
"message": "Connect your PayPal account to receive payments directly."
},
"dashboard.creator-withdraw-modal.paypal-details.save-success": {
"message": "Venmo handle saved successfully!"
},
"dashboard.creator-withdraw-modal.paypal-details.sign-in-with-paypal": {
"message": "Sign in with PayPal"
},
"dashboard.creator-withdraw-modal.paypal-details.venmo-description": {
"message": "Enter your Venmo handle to receive payments."
},
"dashboard.creator-withdraw-modal.paypal-details.venmo-handle": {
"message": "Venmo handle"
},
"dashboard.creator-withdraw-modal.paypal-details.venmo-handle-placeholder": {
"message": "@username"
},
"dashboard.creator-withdraw-modal.stage.completion": {
"message": "Complete"
},
"dashboard.creator-withdraw-modal.stage.method-selection": {
"message": "Method"
},
"dashboard.creator-withdraw-modal.stage.tax-form": {
"message": "Tax form"
},
"dashboard.creator-withdraw-modal.tax-form-required.body": {
"message": "To withdraw your full <b>{available}</b> available balance please complete the form below. It is required for tax reporting and only needs to be done once."
},
"dashboard.creator-withdraw-modal.tax-form-required.body-with-limit": {
"message": "You must complete a W-9 or W-8 form for Modrinth's tax records so we remain compliant with tax regulations."
},
"dashboard.creator-withdraw-modal.tax-form-required.header": {
"message": "Tax form required"
},
"dashboard.creator-withdraw-modal.tremendous-details.available-denominations-label": {
"message": "Available denominations"
},
"dashboard.creator-withdraw-modal.tremendous-details.balance-worth-hint": {
"message": "Your balance of {usdBalance} is currently worth {localBalance}."
},
"dashboard.creator-withdraw-modal.tremendous-details.enter-amount-hint": {
"message": "Find gift cards near this value."
},
"dashboard.creator-withdraw-modal.tremendous-details.enter-denomination-placeholder": {
"message": "Enter amount"
},
"dashboard.creator-withdraw-modal.tremendous-details.payment-method": {
"message": "Payment method"
},
"dashboard.creator-withdraw-modal.tremendous-details.reward": {
"message": "Reward"
},
"dashboard.creator-withdraw-modal.tremendous-details.reward-placeholder": {
"message": "Select reward"
},
"dashboard.creator-withdraw-modal.tremendous-details.reward-plural": {
"message": "Rewards"
},
"dashboard.creator-withdraw-modal.tremendous-details.search-amount-label": {
"message": "Search amount"
},
"dashboard.creator-withdraw-modal.tremendous-details.select-denomination-hint": {
"message": "Select a denomination:"
},
"dashboard.creator-withdraw-modal.tremendous-details.select-denomination-required": {
"message": "Please select a denomination to continue"
},
"dashboard.creator-withdraw-modal.tremendous-details.unverified-email-header": {
"message": "Unverified email"
},
"dashboard.creator-withdraw-modal.tremendous-details.unverified-email-message": {
"message": "The delivery email you have entered is not associated with your Modrinth account. Modrinth cannot recover rewards sent to an incorrect email address."
},
"dashboard.creator-withdraw-modal.tremendous-details.usd-paypal-warning-header": {
"message": "Lower fees available"
},
"dashboard.creator-withdraw-modal.tremendous-details.usd-paypal-warning-message": {
"message": "You selected USD for PayPal International. <direct-paypal-link>Switch to direct PayPal</direct-paypal-link> for better fees (≈2% instead of ≈6%)."
},
"dashboard.creator-withdraw-modal.withdraw-button": {
"message": "Withdraw"
},
"dashboard.creator-withdraw-modal.withdraw-limit": {
"message": "Withdraw limit"
},
"dashboard.creator-withdraw-modal.withdraw-limit-used": {
"message": "You've used up your <b>{withdrawLimit}</b> withdrawal limit. You must complete a tax form to withdraw more."
},
"dashboard.revenue.available-now": {
"message": "Available now"
},
"dashboard.revenue.balance": {
"message": "Balance"
},
"dashboard.revenue.estimated-tooltip.msg1": {
"message": "Estimated revenue may be subject to change until it is made available."
},
"dashboard.revenue.estimated-tooltip.msg2": {
"message": "Click to read about how Modrinth handles your revenue."
},
"dashboard.revenue.estimated-with-date": {
"message": "Estimated {date}"
},
"dashboard.revenue.processing": {
"message": "Processing"
},
"dashboard.revenue.processing.tooltip": {
"message": "Revenue stays in processing until the end of the month, then becomes available 60 days later."
},
"dashboard.revenue.stats.received": {
"message": "Received"
},
"dashboard.revenue.stats.transactions": {
"message": "Transactions"
},
"dashboard.revenue.stats.withdrawn": {
"message": "Withdrawn"
},
"dashboard.revenue.tos": {
"message": "By uploading projects to Modrinth and withdrawing money from your account, you agree to our <terms-link>Rewards Program Terms</terms-link>. Learn more about the <info-link>Reward Program</info-link>."
},
"dashboard.revenue.transactions.btn.download-csv": {
"message": "Download as CSV"
},
"dashboard.revenue.transactions.header": {
"message": "Transactions"
},
"dashboard.revenue.transactions.none": {
"message": "No transactions"
},
"dashboard.revenue.transactions.none.desc": {
"message": "Your payouts and withdrawals will appear here."
},
"dashboard.revenue.transactions.see-all": {
"message": "See all"
},
"dashboard.revenue.withdraw.blocked-tin-mismatch": {
"message": "Your withdrawals are temporarily locked because your TIN or SSN didn't match IRS records. Please contact support to reset and resubmit your tax form."
},
"dashboard.revenue.withdraw.card.description": {
"message": "Withdraw from your available balance to any payout method."
},
"dashboard.revenue.withdraw.card.title": {
"message": "Withdraw"
},
"dashboard.revenue.withdraw.header": {
"message": "Withdraw"
},
"dashboard.withdraw.completion.account": {
"message": "Account"
},
"dashboard.withdraw.completion.amount": {
"message": "Amount"
},
"dashboard.withdraw.completion.date": {
"message": "Date"
},
"dashboard.withdraw.completion.email-confirmation": {
"message": "You'll receive an email at <b>{email}</b> with instructions to redeem your withdrawal."
},
"dashboard.withdraw.completion.exchange-rate": {
"message": "Exchange rate"
},
"dashboard.withdraw.completion.fee": {
"message": "Fee"
},
"dashboard.withdraw.completion.method": {
"message": "Method"
},
"dashboard.withdraw.completion.net-amount": {
"message": "Net amount"
},
"dashboard.withdraw.completion.recipient": {
"message": "Recipient"
},
"dashboard.withdraw.completion.title": {
"message": "Withdraw complete"
},
"dashboard.withdraw.completion.transactions-button": {
"message": "Transactions"
},
"dashboard.withdraw.completion.wallet": {
"message": "Wallet"
},
"dashboard.withdraw.error.account-not-linked.text": {
"message": "Please link your payment account before withdrawing."
},
"dashboard.withdraw.error.account-not-linked.title": {
"message": "Account not linked"
},
"dashboard.withdraw.error.email-verification.text": {
"message": "You must verify your email address before withdrawing funds."
},
"dashboard.withdraw.error.email-verification.title": {
"message": "Email verification required"
},
"dashboard.withdraw.error.generic.text": {
"message": "We were unable to submit your withdrawal request, please check your details or contact support.\n{error}"
},
"dashboard.withdraw.error.generic.title": {
"message": "Unable to withdraw"
},
"dashboard.withdraw.error.insufficient-balance.text": {
"message": "You do not have enough funds to make this withdrawal."
},
"dashboard.withdraw.error.insufficient-balance.title": {
"message": "Insufficient balance"
},
"dashboard.withdraw.error.invalid-address.text": {
"message": "The address you provided could not be verified. Please check your address details."
},
"dashboard.withdraw.error.invalid-address.title": {
"message": "Address verification failed"
},
"dashboard.withdraw.error.invalid-bank.text": {
"message": "The bank account details you provided are invalid. Please verify your information."
},
"dashboard.withdraw.error.invalid-bank.title": {
"message": "Invalid bank details"
},
"dashboard.withdraw.error.invalid-wallet.text": {
"message": "The crypto wallet address you provided is invalid. Please double-check and try again."
},
"dashboard.withdraw.error.invalid-wallet.title": {
"message": "Invalid wallet address"
},
"dashboard.withdraw.error.minimum-not-met.text": {
"message": "The withdrawal amount (after fees) doesn't meet the minimum requirement. Please increase your withdrawal amount."
},
"dashboard.withdraw.error.minimum-not-met.title": {
"message": "Amount too low"
},
"dashboard.withdraw.error.paypal-country-mismatch.text": {
"message": "Please use the correct PayPal transfer option for your region (US or International)."
},
"dashboard.withdraw.error.paypal-country-mismatch.title": {
"message": "PayPal region mismatch"
},