-
-
Notifications
You must be signed in to change notification settings - Fork 196
Expand file tree
/
Copy pathmessages.pot
More file actions
3157 lines (2444 loc) · 75.3 KB
/
Copy pathmessages.pot
File metadata and controls
3157 lines (2444 loc) · 75.3 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
# Translations template for PROJECT.
# Copyright (C) 2026 ORGANIZATION
# This file is distributed under the same license as the PROJECT project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2026.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2026-08-28 15:23+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.18.0\n"
#: app/activity/api/blueprint.py:118 app/activity/api/helpers.py:89
msgid "Failed to load settings"
msgstr ""
#: app/activity/api/blueprint.py:256
msgid "Failed to load dashboard data"
msgstr ""
#: app/activity/api/blueprint.py:279
msgid "Failed to load history data"
msgstr ""
#: app/activity/api/blueprint.py:390
msgid "Failed to load activity data"
msgstr ""
#: app/activity/api/blueprint.py:445
msgid "Failed to load activity summary"
msgstr ""
#: app/activity/api/blueprint.py:466
msgid "Failed to get activity statistics"
msgstr ""
#: app/activity/api/blueprint.py:475
msgid "Database not available"
msgstr ""
#: app/activity/api/blueprint.py:489
msgid "Failed to get session details"
msgstr ""
#: app/activity/api/blueprint.py:571
msgid "Failed to export activity data"
msgstr ""
#: app/activity/api/blueprint.py:590
msgid "Monitoring restarted"
msgstr ""
#: app/activity/api/blueprint.py:593
msgid "Monitor not available"
msgstr ""
#: app/activity/api/blueprint.py:603
#, python-brace-format
msgid "Cleaned up {} old activity records"
msgstr ""
#: app/activity/api/blueprint.py:616
#, python-brace-format
msgid "Ended {} stale sessions"
msgstr ""
#: app/activity/api/blueprint.py:620
msgid "Unknown action"
msgstr ""
#: app/activity/api/blueprint.py:626
msgid "Failed to update settings"
msgstr ""
#: app/activity/api/blueprint.py:641
#, python-brace-format
msgid "Activity data has been successfully deleted ({} records)."
msgstr ""
#: app/activity/api/blueprint.py:646
#, python-brace-format
msgid "Failed to delete activity data: {}"
msgstr ""
#: app/activity/api/blueprint.py:666 app/activity/api/blueprint.py:725
msgid "Please select a media server."
msgstr ""
#: app/activity/api/blueprint.py:677
msgid "Media server not found."
msgstr ""
#: app/activity/api/blueprint.py:688
msgid ""
"Historical data import is currently only supported for Plex, Jellyfin, "
"Emby, and AudiobookShelf servers."
msgstr ""
#: app/activity/api/blueprint.py:699
#, python-brace-format
msgid "Historical import job #{job_id} started for {server} (last {days} days)."
msgstr ""
#: app/activity/api/blueprint.py:709
#, python-brace-format
msgid "Failed to import historical data: {}"
msgstr ""
#: app/activity/api/blueprint.py:732
#, python-brace-format
msgid "Successfully cleared {} historical entries."
msgstr ""
#: app/activity/api/blueprint.py:739 app/activity/api/blueprint.py:748
#, python-brace-format
msgid "Failed to clear historical data: {}"
msgstr ""
#: app/activity/api/blueprint.py:740
msgid "Unknown error"
msgstr ""
#: app/activity/api/blueprint.py:778
msgid "Cannot remove a job that is still queued or running."
msgstr ""
#: app/activity/api/blueprint.py:806
msgid "An internal error has occurred."
msgstr ""
#: app/blueprints/admin/routes.py:359
#: app/templates/admin/user_details_modal.html:56
msgid "Unknown"
msgstr ""
#: app/blueprints/admin/routes.py:362
#: app/templates/admin/user_details_modal.html:70
#: app/templates/modals/invite.html:69
#: app/templates/tables/invite_card.html:115
#: app/templates/tables/user_card.html:104
#: app/templates/tables/user_card.html:123
msgid "Never"
msgstr ""
#: app/blueprints/admin/routes.py:435 app/templates/tables/invite_card.html:5
msgid "Expired"
msgstr ""
#: app/blueprints/admin/routes.py:443
#, python-format
msgid "in %(n)d d"
msgstr ""
#: app/blueprints/admin/routes.py:445
msgid "in 1 d"
msgstr ""
#: app/blueprints/admin/routes.py:447
#, python-format
msgid "in %(n)d h"
msgstr ""
#: app/blueprints/admin/routes.py:449
#, python-format
msgid "in %(n)d m"
msgstr ""
#: app/blueprints/admin/routes.py:450
msgid "soon"
msgstr ""
#: app/blueprints/admin_accounts/routes.py:41
msgid "Admin created"
msgstr ""
#: app/blueprints/admin_accounts/routes.py:68
msgid "Admin updated"
msgstr ""
#: app/blueprints/admin_accounts/routes.py:168
#, python-brace-format
msgid "All passkeys for {} have been reset"
msgstr ""
#: app/blueprints/admin_accounts/routes.py:172
#, python-brace-format
msgid "Failed to reset passkeys for {}"
msgstr ""
#: app/blueprints/api_keys/routes.py:55
msgid ""
"No admin account found. Please set up a proper admin account before "
"creating API keys."
msgstr ""
#: app/blueprints/api_keys/routes.py:86
msgid "Failed to create API key due to a database error."
msgstr ""
#: app/blueprints/api_keys/routes.py:96
msgid ""
"API key created successfully. Please copy it now as it won't be shown "
"again."
msgstr ""
#: app/blueprints/api_keys/routes.py:138
msgid "API key deleted successfully"
msgstr ""
#: app/blueprints/auth/ldap_auth.py:15
msgid "LDAP authentication is not enabled"
msgstr ""
#: app/blueprints/auth/ldap_auth.py:18
msgid "LDAP admin authentication is not allowed"
msgstr ""
#: app/blueprints/auth/ldap_auth.py:30
msgid "Invalid LDAP credentials"
msgstr ""
#: app/blueprints/auth/ldap_auth.py:36
msgid "User DN not found in LDAP response"
msgstr ""
#: app/blueprints/auth/ldap_auth.py:52
msgid "User is not authorized as an administrator"
msgstr ""
#: app/blueprints/auth/ldap_auth.py:98
msgid "Login successful"
msgstr ""
#: app/blueprints/auth/ldap_auth.py:104
msgid "LDAP authentication failed"
msgstr ""
#: app/blueprints/auth/routes.py:112
msgid "Invalid username or password"
msgstr ""
#: app/blueprints/auth/routes.py:136
msgid "No pending 2FA authentication"
msgstr ""
#: app/blueprints/auth/routes.py:150 app/templates/login.html:203
#: app/templates/login.html:268 app/templates/login.html:272
msgid "Authentication failed"
msgstr ""
#: app/blueprints/connections/routes.py:52
#: app/blueprints/connections/routes.py:188
msgid "Connection type is required"
msgstr ""
#: app/blueprints/connections/routes.py:65
#, python-format
msgid "Connection test failed: %(message)s"
msgstr ""
#: app/blueprints/connections/routes.py:75
msgid "Connection test successful!"
msgstr ""
#: app/blueprints/connections/routes.py:78
#: app/blueprints/connections/routes.py:204
msgid "Unknown connection type"
msgstr ""
#: app/blueprints/connections/routes.py:95
msgid "Connection created successfully!"
msgstr ""
#: app/blueprints/connections/routes.py:124
msgid "Connection updated successfully!"
msgstr ""
#: app/blueprints/connections/routes.py:146
msgid "Connection deleted successfully!"
msgstr ""
#: app/blueprints/connections/routes.py:165
msgid "Please refresh the page and try again (CSRF token expired)"
msgstr ""
#: app/blueprints/connections/routes.py:170
#, python-format
msgid "Invalid form data: %(errors)s"
msgstr ""
#: app/blueprints/public/routes.py:180 app/blueprints/public/routes.py:197
msgid ""
"There was an issue setting up your access. Please contact your server "
"admin."
msgstr ""
#: app/blueprints/settings/routes.py:166 app/blueprints/settings/routes.py:272
msgid "Settings saved successfully!"
msgstr ""
#: app/blueprints/settings/routes.py:217 app/forms/settings.py:24
msgid "Server URL"
msgstr ""
#: app/blueprints/settings/routes.py:220 app/forms/settings.py:25
msgid "API Key"
msgstr ""
#: app/blueprints/settings/routes.py:220
msgid "Username/Password"
msgstr ""
#: app/blueprints/settings/routes.py:223
#, python-brace-format
msgid "Missing required fields: {fields}"
msgstr ""
#: app/blueprints/settings/routes.py:226 app/blueprints/settings/routes.py:236
#: app/templates/components/passkey_error.html:12
msgid "Error"
msgstr ""
#: app/blueprints/settings/routes.py:235
msgid "Library scan failed"
msgstr ""
#: app/blueprints/settings/routes.py:296
#, python-brace-format
msgid "Successfully cleaned {count} expired user(s)."
msgstr ""
#: app/blueprints/settings/routes.py:301
msgid "No expired users found to clean."
msgstr ""
#: app/blueprints/settings/routes.py:324 app/blueprints/settings/routes.py:353
#: app/templates/settings/general.html:178
msgid ""
"Are you sure you want to clean all expired users? This action cannot be "
"undone."
msgstr ""
#: app/blueprints/settings/routes.py:326 app/blueprints/settings/routes.py:355
#: app/templates/settings/general.html:167
#: app/templates/settings/general.html:195
msgid "Clean Expired Users"
msgstr ""
#: app/blueprints/settings/routes.py:331
#, python-brace-format
msgid "Failed to clean expired users: {error}"
msgstr ""
#: app/blueprints/settings/routes.py:410
msgid "LDAP configuration saved successfully"
msgstr ""
#: app/blueprints/settings/routes.py:484
msgid "LDAP not configured or disabled"
msgstr ""
#: app/blueprints/settings/routes.py:494
msgid "No groups found in LDAP"
msgstr ""
#: app/blueprints/settings/routes.py:550
msgid "LDAP is not configured"
msgstr ""
#: app/blueprints/settings/routes.py:559
#, python-format
msgid "Failed to list LDAP users: %(error)s"
msgstr ""
#: app/blueprints/setup/routes.py:74
msgid "Admin account created – welcome!"
msgstr ""
#: app/blueprints/wizard/routes.py:66
msgid ""
"Your invitation has expired or is no longer valid. Please request a new "
"invitation."
msgstr ""
#: app/blueprints/wizard/routes.py:331 app/blueprints/wizard/routes.py:1250
#: app/blueprints/wizard/routes.py:1413
msgid "Error Loading Step"
msgstr ""
#: app/blueprints/wizard/routes.py:334 app/blueprints/wizard/routes.py:1253
#: app/blueprints/wizard/routes.py:1416
msgid ""
"This step could not be loaded. Please contact the administrator or skip "
"to the next step."
msgstr ""
#: app/blueprints/wizard/routes.py:549 app/blueprints/wizard/routes.py:556
#: app/blueprints/wizard/routes.py:660 app/blueprints/wizard/routes.py:1151
#: app/blueprints/wizard/routes.py:1159
msgid "Invalid or expired invitation"
msgstr ""
#: app/blueprints/wizard/routes.py:609 app/blueprints/wizard/routes.py:775
msgid ""
"No media servers are configured. Please contact the administrator to set "
"up a media server."
msgstr ""
#: app/blueprints/wizard/routes.py:626
msgid "Unable to load wizard steps. Proceeding to invitation acceptance."
msgstr ""
#: app/blueprints/wizard/routes.py:650 app/blueprints/wizard/routes.py:987
#: app/blueprints/wizard/routes.py:1272 app/templates/wizard/steps.html:21
msgid "Continue to Invite"
msgstr ""
#: app/blueprints/wizard/routes.py:703
msgid "Please log in to continue"
msgstr ""
#: app/blueprints/wizard/routes.py:815
msgid "Unable to load wizard steps. Setup complete! Welcome to your media server."
msgstr ""
#: app/blueprints/wizard/routes.py:863
msgid "Setup complete! Welcome to your media server."
msgstr ""
#: app/blueprints/wizard/routes.py:972
msgid "Unable to load wizard configuration. Please try again."
msgstr ""
#: app/blueprints/wizard/routes.py:1129
msgid "Unable to load wizard bundle. Please try again."
msgstr ""
#: app/blueprints/wizard/routes.py:1180
msgid "Unable to load wizard steps. Please try again."
msgstr ""
#: app/blueprints/wizard/routes.py:1373
msgid "This bundle has no steps to preview."
msgstr ""
#: app/blueprints/wizard_admin/routes.py:126
#, python-brace-format
msgid "Cleaned up {} orphaned step(s)"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:199
msgid "Step created"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:276
msgid "Preset step created successfully"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:284
#, python-brace-format
msgid "Error creating preset: {}"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:320
msgid "Step updated"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:358
msgid "Step deleted"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:478
msgid "Bundle created"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:508
msgid "Bundle updated"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:532
msgid "Bundle deleted"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:684
msgid "Steps added"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:696
msgid "Orphaned step removed"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:714
#, python-brace-format
msgid "No steps found for server type: {}"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:739
#: app/blueprints/wizard_admin/routes.py:777
#: app/blueprints/wizard_admin/routes.py:782
#, python-brace-format
msgid "Export failed: {}"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:827
#, python-brace-format
msgid "Successfully imported {} items"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:831
#, python-brace-format
msgid " and updated {} existing items"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:836
#: app/blueprints/wizard_admin/routes.py:843
#, python-brace-format
msgid "Import failed: {}"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:841
msgid "Invalid JSON file"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:906 app/services/wizard_reset.py:119
#, python-brace-format
msgid "Reset {} steps for {} (deleted {}, imported {})"
msgstr ""
#: app/blueprints/wizard_admin/routes.py:916 app/services/wizard_reset.py:134
#, python-brace-format
msgid "Failed to reset steps: {}"
msgstr ""
#: app/forms/admin.py:29
msgid "Password must be at least 8 characters."
msgstr ""
#: app/forms/admin.py:34
msgid ""
"Password must contain at least one uppercase letter, one lowercase "
"letter, and one number."
msgstr ""
#: app/forms/admin.py:43 app/forms/admin.py:57
#: app/templates/admin/user_details_modal.html:66
#: app/templates/hybrid-password-form.html:101 app/templates/login.html:75
#: app/templates/modals/create-admin.html:22
#: app/templates/modals/edit-admin.html:22
#: app/templates/welcome-jellyfin.html:117
msgid "Username"
msgstr ""
#: app/forms/admin.py:45 app/templates/choose-password.html:22
#: app/templates/hybrid-password-form.html:133 app/templates/login.html:85
#: app/templates/modals/create-admin.html:28 app/templates/profile.html:32
#: app/templates/welcome-jellyfin.html:149
msgid "Password"
msgstr ""
#: app/forms/admin.py:47 app/forms/admin.py:65
#: app/templates/modals/create-admin.html:35
#: app/templates/modals/edit-admin.html:37
msgid "Confirm password"
msgstr ""
#: app/forms/admin.py:50 app/forms/admin.py:68
msgid "Passwords must match."
msgstr ""
#: app/forms/admin.py:62 app/templates/password-reset-form.html:36
#: app/templates/profile.html:53
msgid "New Password"
msgstr ""
#: app/forms/admin.py:79
msgid "Please confirm the new password."
msgstr ""
#: app/forms/settings.py:10
msgid "Server Type"
msgstr ""
#: app/forms/settings.py:23
msgid "Server Name"
msgstr ""
#: app/forms/settings.py:26
msgid "RomM Username"
msgstr ""
#: app/forms/settings.py:27
msgid "RomM Password"
msgstr ""
#: app/forms/settings.py:28 app/templates/admin/user_details_modal.html:74
#: app/templates/tables/invite_card.html:143
msgid "Libraries"
msgstr ""
#: app/forms/settings.py:30 app/forms/settings.py:46
#: app/templates/admin/user_modal.html:87 app/templates/modals/invite.html:219
#: app/templates/modals/invite.html:253 app/templates/modals/invite.html:296
#: app/templates/modals/invite.html:330 app/templates/modals/invite.html:342
msgid "Allow Downloads"
msgstr ""
#: app/forms/settings.py:33 app/templates/admin/user_modal.html:112
msgid "Allow Live TV"
msgstr ""
#: app/forms/settings.py:36
msgid "Overseerr/Ombi URL"
msgstr ""
#: app/forms/settings.py:38
msgid "Ombi API Key"
msgstr ""
#: app/forms/settings.py:39
msgid "Discord ID"
msgstr ""
#: app/forms/settings.py:40
msgid "External URL"
msgstr ""
#: app/services/servers.py:18
#, python-format
msgid "Server returned status code %(status_code)s"
msgstr ""
#: app/services/servers.py:29
#, python-format
msgid "%(server_type)s server returned an error: %(error)s"
msgstr ""
#: app/services/servers.py:36
#, python-format
msgid ""
"Could not connect to the %(server_type)s server. Please check if the "
"server is running and the URL is correct."
msgstr ""
#: app/services/servers.py:42
#, python-format
msgid ""
"Connection to %(server_type)s server timed out. Please check if the "
"server is running and accessible."
msgstr ""
#: app/services/servers.py:48
#, python-format
msgid ""
"An error occurred while connecting to the %(server_type)s server: "
"%(error)s"
msgstr ""
#: app/services/servers.py:55
#, python-format
msgid ""
"An unexpected error occurred while connecting to the %(server_type)s "
"server: %(error)s"
msgstr ""
#: app/services/servers.py:68
msgid "Plex"
msgstr ""
#: app/services/servers.py:84
msgid "Jellyfin"
msgstr ""
#: app/services/servers.py:91
msgid "Emby"
msgstr ""
#: app/services/servers.py:117
msgid "Audiobookshelf"
msgstr ""
#: app/services/servers.py:147
msgid "RomM"
msgstr ""
#: app/services/servers.py:172
msgid "Komga"
msgstr ""
#: app/services/servers.py:224
msgid "Kavita"
msgstr ""
#: app/services/servers.py:279
msgid "Navidrome"
msgstr ""
#: app/services/servers.py:301
msgid "Invalid API token or insufficient permissions."
msgstr ""
#: app/services/servers.py:303
msgid "API token lacks required permissions."
msgstr ""
#: app/services/servers.py:308
msgid "Could not connect to Drop server."
msgstr ""
#: app/services/servers.py:310
msgid "Connection to Drop server timed out."
msgstr ""
#: app/services/servers.py:313
msgid "Drop API not found. Check the server URL."
msgstr ""
#: app/services/servers.py:316
msgid "Drop"
msgstr ""
#: app/services/wizard_reset.py:99
#, python-brace-format
msgid "No default steps found for server type: {}"
msgstr ""
#: app/templates/admin.html:3 app/templates/admin/user_details_modal.html:104
msgid "Admin"
msgstr ""
#: app/templates/admin.html:133
msgid "Profile"
msgstr ""
#: app/templates/admin.html:144
msgid "Logout"
msgstr ""
#: app/templates/choose-password.html:10
msgid "Complete your access"
msgstr ""
#: app/templates/choose-password.html:15
msgid "Choose a password for the remaining servers"
msgstr ""
#: app/templates/choose-password.html:33
#: app/templates/hybrid-password-form.html:149
#: app/templates/password-reset-form.html:50
#: app/templates/welcome-jellyfin.html:165
msgid "Confirm Password"
msgstr ""
#: app/templates/choose-password.html:50
msgid "Generate a strong random password instead"
msgstr ""
#: app/templates/choose-password.html:55
msgid "Continue"
msgstr ""
#: app/templates/hybrid-password-form.html:9
msgid "Complete your account setup for local servers"
msgstr ""
#: app/templates/hybrid-password-form.html:15
msgid "Complete Your Account Setup"
msgstr ""
#: app/templates/hybrid-password-form.html:30
msgid "Plex Authentication Complete!"
msgstr ""
#: app/templates/hybrid-password-form.html:31
msgid "Now please set a password for your local server accounts."
msgstr ""
#: app/templates/hybrid-password-form.html:38
msgid "Local Servers"
msgstr ""
#: app/templates/hybrid-password-form.html:72
msgid "Set Password for Local Servers"
msgstr ""
#: app/templates/hybrid-password-form.html:86
msgid "Error!"
msgstr ""
#: app/templates/hybrid-password-form.html:106
msgid "Your username"
msgstr ""
#: app/templates/hybrid-password-form.html:118
msgid "Email Address"
msgstr ""
#: app/templates/hybrid-password-form.html:124
msgid "your.email@example.com"
msgstr ""
#: app/templates/hybrid-password-form.html:138
msgid "Your password"
msgstr ""
#: app/templates/hybrid-password-form.html:155
#: app/templates/welcome-jellyfin.html:168
msgid "Confirm your password"
msgstr ""
#: app/templates/hybrid-password-form.html:173
msgid "I agree to the"
msgstr ""
#: app/templates/hybrid-password-form.html:176
msgid "Terms and Conditions"
msgstr ""
#: app/templates/hybrid-password-form.html:184
msgid "Complete Setup"
msgstr ""
#: app/templates/hybrid-password-form.html:194
msgid "Setting up..."
msgstr ""
#: app/templates/hybrid-password-form.html:200
msgid "What happens next?"
msgstr ""
#: app/templates/hybrid-password-form.html:202
msgid "Your Plex account is already set up and ready to use"
msgstr ""
#: app/templates/hybrid-password-form.html:203
msgid "This password will be used to create accounts on your local servers"
msgstr ""
#: app/templates/hybrid-password-form.html:204
msgid "You'll be redirected to the setup wizard to complete configuration"
msgstr ""
#: app/templates/hybrid-password-form.html:210
msgid "Only want to use Plex?"
msgstr ""
#: app/templates/hybrid-password-form.html:213
msgid "Skip local servers"
msgstr ""
#: app/templates/hybrid-password-form.html:228
msgid "Password too short"
msgstr ""
#: app/templates/hybrid-password-form.html:231
msgid "Password strength: Medium"
msgstr ""
#: app/templates/hybrid-password-form.html:234
msgid "Password strength: Strong"
msgstr ""
#: app/templates/hybrid-password-form.html:246
msgid "Passwords do not match"
msgstr ""
#: app/templates/invalid-invite.html:10
#: app/templates/password-reset-error.html:9
#: app/templates/password-reset-success.html:9
msgid "Wizarr"
msgstr ""
#: app/templates/invalid-invite.html:15
msgid "Invalid Invitation"
msgstr ""
#: app/templates/invalid-invite.html:19
msgid "This invitation link is no longer valid. Please request a new invitation."
msgstr ""
#: app/templates/login.html:14
msgid "Two-Factor Authentication"
msgstr ""
#: app/templates/login.html:16
msgid "Login"
msgstr ""
#: app/templates/login.html:21
msgid "This is the administrator login page."
msgstr ""
#: app/templates/login.html:23
msgid "Go to your media server instead"
msgstr ""
#: app/templates/login.html:43
#, python-brace-format
msgid "Welcome back, {}!"
msgstr ""
#: app/templates/login.html:45
msgid "Please authenticate with your passkey to complete login."
msgstr ""
#: app/templates/login.html:60
msgid "Authentication Method"
msgstr ""
#: app/templates/login.html:66
msgid "Local Account"
msgstr ""
#: app/templates/login.html:67 app/templates/settings/index.html:125
msgid "LDAP"
msgstr ""
#: app/templates/login.html:103
msgid "Remember me"
msgstr ""
#: app/templates/login.html:110
msgid "Sign in"
msgstr ""
#: app/templates/login.html:128
msgid "Authenticate with Passkey"
msgstr ""
#: app/templates/login.html:140
msgid "Back to Login"
msgstr ""
#: app/templates/login.html:149
msgid "Or"
msgstr ""
#: app/templates/login.html:162 app/templates/login.html:284
msgid "Sign in with Passkey"
msgstr ""
#: app/templates/login.html:189
msgid "Authenticating..."
msgstr ""
#: app/templates/login.html:262
msgid "Failed to complete 2FA login"
msgstr ""
#: app/templates/login.html:277
msgid "Passkey authentication failed. Please try again or use your password."
msgstr ""
#: app/templates/password-reset-error.html:25
msgid "Password Reset Error"
msgstr ""
#: app/templates/password-reset-error.html:29
#: app/templates/password-reset-form.html:29
msgid "Error:"
msgstr ""
#: app/templates/password-reset-error.html:32
msgid "This password reset link is invalid."
msgstr ""
#: app/templates/password-reset-error.html:34
msgid "This password reset link has already been used."
msgstr ""
#: app/templates/password-reset-error.html:36
msgid "This password reset link has expired."
msgstr ""
#: app/templates/password-reset-error.html:38
msgid "This password reset link is malformed."
msgstr ""
#: app/templates/password-reset-error.html:40
msgid "This password reset link is no longer valid."
msgstr ""
#: app/templates/password-reset-error.html:45
msgid ""
"Please contact your server administrator to request a new password reset "
"link."
msgstr ""
#: app/templates/password-reset-error.html:47
msgid "Code:"
msgstr ""
#: app/templates/password-reset-error.html:51
msgid "Common reasons for this error:"