-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathmessages.pot
More file actions
13877 lines (10748 loc) · 279 KB
/
Copy pathmessages.pot
File metadata and controls
13877 lines (10748 loc) · 279 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 Calibre-Web Automated.
# Copyright (C) 2026 Calibre-Web Automated Contributors
# This file is distributed under the same license as the Calibre-Web
# Automated project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2026.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Calibre-Web Automated v4.0.6\n"
"Report-Msgid-Bugs-To: https://github.com/crocodilestick/Calibre-Web-"
"Automated\n"
"POT-Creation-Date: 2026-07-17 21:21-0400\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"
#: cps/about.py cps/spa_strings.py
msgid "Statistics"
msgstr ""
#: cps/admin.py
msgid "Calibre database unavailable. Please reconfigure the library path."
msgstr ""
#: cps/admin.py
msgid "Server restarted, please reload page."
msgstr ""
#: cps/admin.py
msgid "Performing Server shutdown, please close window."
msgstr ""
#: cps/admin.py
msgid "Success! Database Reconnected"
msgstr ""
#: cps/admin.py
msgid "Unknown command"
msgstr ""
#: cps/admin.py
msgid "Success! Books queued for Metadata Backup, please check Tasks for result"
msgstr ""
#: cps/admin.py
msgid ""
"Error: Hardcover sync is disabled. Enable it in Basic Configuration or "
"with HARDCOVER_SYNC_ENABLED."
msgstr ""
#: cps/admin.py
msgid ""
"Error: No Hardcover token available. Set HARDCOVER_TOKEN environment "
"variable or configure in Basic Configuration."
msgstr ""
#: cps/admin.py
msgid ""
"Success! Hardcover auto-fetch task started. Check Tasks panel for "
"progress."
msgstr ""
#: cps/admin.py
#, python-format
msgid "Error starting Hardcover auto-fetch task: %(error)s"
msgstr ""
#: cps/admin.py cps/templates/admin.html
msgid "Review Hardcover Matches"
msgstr ""
#: cps/admin.py
#, python-format
msgid "Error loading review queue: %(error)s"
msgstr ""
#: cps/admin.py
msgid "Hardcover ID applied successfully"
msgstr ""
#: cps/admin.py
#, python-format
msgid "Match %(action)s"
msgstr ""
#: cps/admin.py
msgid "No pending matches to reject"
msgstr ""
#: cps/admin.py
#, python-format
msgid "Rejected %(count)s match(es)"
msgstr ""
#: cps/admin.py
#, python-brace-format
msgid ""
"Thumbnail cache refresh started for {} book(s). This may take a few "
"minutes."
msgstr ""
#: cps/admin.py
msgid "No books with covers found to process."
msgstr ""
#: cps/admin.py
#, python-brace-format
msgid "Failed to start thumbnail refresh: {}"
msgstr ""
#: cps/admin.py
msgid "Admin page"
msgstr ""
#: cps/admin.py
msgid "Hardcover token expires"
msgstr ""
#: cps/admin.py
msgid "Basic Configuration"
msgstr ""
#: cps/admin.py
msgid "UI Configuration"
msgstr ""
#: cps/admin.py cps/db.py cps/search.py cps/web.py
#, python-format
msgid "Custom Column No.%(column)d does not exist in calibre database"
msgstr ""
#: cps/admin.py cps/templates/admin.html
msgid "Edit Users"
msgstr ""
#: cps/admin.py cps/opds.py cps/spa_strings.py cps/templates/grid.html
#: cps/templates/index.html cps/templates/list.html
msgid "All"
msgstr ""
#: cps/admin.py
msgid "User not found"
msgstr ""
#: cps/admin.py
#, python-brace-format
msgid "{} users deleted successfully"
msgstr ""
#: cps/admin.py cps/api/options.py cps/templates/config_view_edit.html
#: cps/templates/user_edit.html cps/templates/user_table.html
msgid "Show All"
msgstr ""
#: cps/admin.py
msgid "Malformed request"
msgstr ""
#: cps/admin.py
msgid "Guest Name can't be changed"
msgstr ""
#: cps/admin.py
msgid "Guest can't have this role"
msgstr ""
#: cps/admin.py
msgid "No admin user remaining, can't remove admin role"
msgstr ""
#: cps/admin.py
msgid "Value has to be true or false"
msgstr ""
#: cps/admin.py
msgid "Invalid role"
msgstr ""
#: cps/admin.py
msgid "Guest can't have this view"
msgstr ""
#: cps/admin.py
msgid "Invalid view"
msgstr ""
#: cps/admin.py
msgid "Guest's Locale is determined automatically and can't be set"
msgstr ""
#: cps/admin.py
msgid "No Valid Locale Given"
msgstr ""
#: cps/admin.py
msgid "No Valid Book Language Given"
msgstr ""
#: cps/admin.py cps/editbooks.py
msgid "Parameter not found"
msgstr ""
#: cps/admin.py
msgid "Settings DB is not Writeable"
msgstr ""
#: cps/admin.py
msgid ""
"The title-sort rule was saved, but reordering the existing library failed"
" — books may keep their previous order until you retry or edit them."
msgstr ""
#: cps/admin.py
msgid "Invalid Read Column"
msgstr ""
#: cps/admin.py
msgid "Invalid Restricted Column"
msgstr ""
#: cps/admin.py
msgid "Calibre-Web NextGen configuration updated"
msgstr ""
#: cps/admin.py
msgid "Do you really want to delete the Kobo Token?"
msgstr ""
#: cps/admin.py
msgid "Do you really want to delete this domain?"
msgstr ""
#: cps/admin.py
msgid "Do you really want to delete this user?"
msgstr ""
#: cps/admin.py
msgid "Are you sure you want to delete this shelf?"
msgstr ""
#: cps/admin.py
msgid "Are you sure you want to change locales of selected user(s)?"
msgstr ""
#: cps/admin.py
msgid ""
"Are you sure you want to change visible book languages for selected "
"user(s)?"
msgstr ""
#: cps/admin.py
msgid ""
"Are you sure you want to change the selected role for the selected "
"user(s)?"
msgstr ""
#: cps/admin.py
msgid ""
"Are you sure you want to change the selected restrictions for the "
"selected user(s)?"
msgstr ""
#: cps/admin.py
msgid ""
"Are you sure you want to change the selected visibility restrictions for "
"the selected user(s)?"
msgstr ""
#: cps/admin.py
msgid ""
"Are you sure you want to change shelf sync behavior for the selected "
"user(s)?"
msgstr ""
#: cps/admin.py
msgid ""
"Are you sure you want to change OPDS shelf exposure for the selected "
"user(s)?"
msgstr ""
#: cps/admin.py
msgid "Are you sure you want to change Calibre library location?"
msgstr ""
#: cps/admin.py
msgid ""
"Calibre-Web NextGen will search for updated Covers and update Cover "
"Thumbnails, this may take a while?"
msgstr ""
#: cps/admin.py
msgid ""
"Are you sure you want delete Calibre-Web NextGen's sync database to force"
" a full sync with your Kobo Reader?"
msgstr ""
#: cps/admin.py cps/templates/modal_dialogs.html cps/templates/user_table.html
msgid "Deny"
msgstr ""
#: cps/admin.py cps/templates/modal_dialogs.html cps/templates/user_table.html
msgid "Allow"
msgstr ""
#: cps/admin.py
#, python-brace-format
msgid "{} sync entries deleted"
msgstr ""
#: cps/admin.py
#, python-brace-format
msgid "Book {} not found"
msgstr ""
#: cps/admin.py
#, python-brace-format
msgid ""
"Cleared sync state for book {0} (user {1}); the device will re-receive "
"the book on next sync"
msgstr ""
#: cps/admin.py
#, python-brace-format
msgid ""
"Book {0} was not in the sync record for user {1}; last_modified bumped so"
" the device will receive on next sync"
msgstr ""
#: cps/admin.py cps/templates/kobo_reconcile.html
#, python-format
msgid "Reconcile deleted Kobo books for %(user)s"
msgstr ""
#: cps/admin.py
msgid "Choose a KoboReader.sqlite file."
msgstr ""
#: cps/admin.py
msgid "The uploaded file is not a SQLite database."
msgstr ""
#: cps/admin.py
#, python-format
msgid "The file is larger than %(max)d MB."
msgstr ""
#: cps/admin.py
msgid "This preview is invalid or expired. Upload the device database again."
msgstr ""
#: cps/admin.py
msgid "Select at least one book to archive."
msgstr ""
#: cps/admin.py
msgid ""
"The selected books do not match this preview. Upload the device database "
"again."
msgstr ""
#: cps/admin.py cps/api/browse.py cps/spa_strings.py
msgid "Tag not found"
msgstr ""
#: cps/admin.py
msgid "Invalid Action"
msgstr ""
#: cps/admin.py
msgid "client_secrets.json Is Not Configured For Web Application"
msgstr ""
#: cps/admin.py
msgid "Logfile Location is not Valid, Please Enter Correct Path"
msgstr ""
#: cps/admin.py
msgid "Access Logfile Location is not Valid, Please Enter Correct Path"
msgstr ""
#: cps/admin.py
msgid "Please Enter a LDAP Provider, Port, DN and User Object Identifier"
msgstr ""
#: cps/admin.py
msgid "Please Enter a LDAP Service Account and Password"
msgstr ""
#: cps/admin.py
msgid "Please Enter a LDAP Service Account"
msgstr ""
#: cps/admin.py
#, python-format
msgid "LDAP Group Object Filter Needs to Have One \"%s\" Format Identifier"
msgstr ""
#: cps/admin.py
msgid "LDAP Group Object Filter Has Unmatched Parenthesis"
msgstr ""
#: cps/admin.py
#, python-format
msgid "LDAP User Object Filter needs to Have One \"%s\" Format Identifier"
msgstr ""
#: cps/admin.py
msgid "LDAP User Object Filter Has Unmatched Parenthesis"
msgstr ""
#: cps/admin.py
#, python-format
msgid "LDAP Member User Filter needs to Have One \"%s\" Format Identifier"
msgstr ""
#: cps/admin.py
msgid "LDAP Member User Filter Has Unmatched Parenthesis"
msgstr ""
#: cps/admin.py
msgid ""
"LDAP CACertificate, Certificate or Key Location is not Valid, Please "
"Enter Correct Path"
msgstr ""
#: cps/admin.py cps/templates/admin.html
msgid "Add New User"
msgstr ""
#: cps/admin.py cps/templates/admin.html cps/templates/broadcast_email.html
msgid "Edit Email Server Settings"
msgstr ""
#: cps/admin.py
msgid "Success! Gmail Account Verified."
msgstr ""
#: cps/admin.py cps/editbooks.py cps/shelf.py cps/tasks/convert.py cps/web.py
#, python-format
msgid "Oops! Database Error: %(error)s."
msgstr ""
#: cps/admin.py
#, python-format
msgid "Test e-mail queued for sending to %(email)s, please check Tasks for result"
msgstr ""
#: cps/admin.py
#, python-format
msgid "There was an error sending the Test e-mail: %(res)s"
msgstr ""
#: cps/admin.py
msgid "Please configure your e-mail address first..."
msgstr ""
#: cps/admin.py
msgid "Email Server Settings updated"
msgstr ""
#: cps/admin.py cps/templates/admin.html
msgid "Email Your Users"
msgstr ""
#: cps/admin.py
msgid "Please configure the email server under Edit Email Server Settings first."
msgstr ""
#: cps/admin.py
msgid "Please enter a subject for the announcement email."
msgstr ""
#: cps/admin.py
msgid "Please enter a message body for the announcement email."
msgstr ""
#: cps/admin.py
msgid "Please set an email address on your own account first..."
msgstr ""
#: cps/admin.py
msgid "Please select at least one recipient."
msgstr ""
#: cps/admin.py
msgid "No valid recipients — nothing was sent."
msgstr ""
#: cps/admin.py
#, python-format
msgid "Test announcement email queued to %(email)s — check Tasks for the result."
msgstr ""
#: cps/admin.py
#, python-format
msgid ""
"Announcement email queued for %(num)s recipient(s) — check Tasks for "
"delivery."
msgstr ""
#: cps/admin.py
#, python-format
msgid "%(num)s address(es) were skipped as invalid or duplicate."
msgstr ""
#: cps/admin.py cps/templates/admin.html
msgid "Edit Scheduled Tasks Settings"
msgstr ""
#: cps/admin.py
msgid "Invalid start time for task specified"
msgstr ""
#: cps/admin.py
msgid "Invalid duration for task specified"
msgstr ""
#: cps/admin.py
msgid "Scheduled tasks settings updated"
msgstr ""
#: cps/admin.py cps/web.py
msgid "Oops! An unknown error occurred. Please try again later."
msgstr ""
#: cps/admin.py cps/opds.py cps/web.py
msgid "title"
msgstr ""
#: cps/admin.py
#, python-format
msgid "Edit User %(nick)s"
msgstr ""
#: cps/admin.py
#, python-format
msgid "Success! Password for user %(user)s reset"
msgstr ""
#: cps/admin.py
msgid "Oops! Please configure the SMTP mail settings."
msgstr ""
#: cps/admin.py
msgid "Logfile viewer"
msgstr ""
#: cps/admin.py
msgid "Requesting update package"
msgstr ""
#: cps/admin.py
msgid "Downloading update package"
msgstr ""
#: cps/admin.py
msgid "Unzipping update package"
msgstr ""
#: cps/admin.py
msgid "Replacing files"
msgstr ""
#: cps/admin.py
msgid "Database connections are closed"
msgstr ""
#: cps/admin.py
msgid "Stopping server"
msgstr ""
#: cps/admin.py
msgid "Update finished, please press okay and reload page"
msgstr ""
#: cps/admin.py
msgid "Update failed:"
msgstr ""
#: cps/admin.py cps/updater.py
msgid "HTTP Error"
msgstr ""
#: cps/admin.py cps/updater.py
msgid "Connection error"
msgstr ""
#: cps/admin.py cps/updater.py
msgid "Timeout while establishing connection"
msgstr ""
#: cps/admin.py cps/updater.py
msgid "General error"
msgstr ""
#: cps/admin.py
msgid "Update file could not be saved in temp dir"
msgstr ""
#: cps/admin.py
msgid "Files could not be replaced during update"
msgstr ""
#: cps/admin.py
msgid "Failed to extract at least One LDAP User"
msgstr ""
#: cps/admin.py
msgid "Failed to Create at Least One LDAP User"
msgstr ""
#: cps/admin.py
#, python-format
msgid "Error: %(ldaperror)s"
msgstr ""
#: cps/admin.py
msgid "Error: No user returned in response of LDAP server"
msgstr ""
#: cps/admin.py
msgid "At Least One LDAP User Not Found in Database"
msgstr ""
#: cps/admin.py
#, python-brace-format
msgid "{} User Successfully Imported"
msgstr ""
#: cps/admin.py
msgid "Books path not valid"
msgstr ""
#: cps/admin.py
msgid "DB Location is not Valid, Please Enter Correct Path"
msgstr ""
#: cps/admin.py
msgid "DB is not Writeable"
msgstr ""
#: cps/admin.py
msgid "Keyfile Location is not Valid, Please Enter Correct Path"
msgstr ""
#: cps/admin.py
msgid "Certfile Location is not Valid, Please Enter Correct Path"
msgstr ""
#: cps/admin.py
msgid ""
"Auto-create users cannot be enabled without enabling reverse proxy "
"authentication"
msgstr ""
#: cps/admin.py
msgid "Auto-create users requires a valid reverse proxy header name"
msgstr ""
#: cps/admin.py
msgid ""
"Invalid OAuth Redirect Host format. Please include the full URL with "
"protocol (e.g., https://your-domain.com)"
msgstr ""
#: cps/admin.py
msgid ""
"OAuth Redirect Host should not include a path. Use only the base URL "
"(e.g., https://your-domain.com)"
msgstr ""
#: cps/admin.py
msgid "Password length has to be between 1 and 40"
msgstr ""
#: cps/admin.py
msgid ""
"KEPUB conversion was not queued. Check that the preference and Kepubify "
"path are enabled."
msgstr ""
#: cps/admin.py
msgid "Database Settings updated"
msgstr ""
#: cps/admin.py
msgid "Database Configuration"
msgstr ""
#: cps/admin.py cps/web.py
msgid "Oops! Please complete all fields."
msgstr ""
#: cps/admin.py
msgid "E-mail is not from valid domain"
msgstr ""
#: cps/admin.py
msgid "Add new user"
msgstr ""
#: cps/admin.py
#, python-format
msgid "User '%(user)s' created"
msgstr ""
#: cps/admin.py
msgid "Oops! An account already exists for this Email. or name."
msgstr ""
#: cps/admin.py
#, python-format
msgid "User '%(nick)s' deleted"
msgstr ""
#: cps/admin.py
msgid "Can't delete Guest User"
msgstr ""
#: cps/admin.py
msgid "No admin user remaining, can't delete user"
msgstr ""
#: cps/admin.py cps/web.py
msgid "Invalid library mode"
msgstr ""
#: cps/admin.py cps/web.py
msgid "Email can't be empty and has to be a valid Email"
msgstr ""
#: cps/admin.py
#, python-format
msgid "User '%(nick)s' updated"
msgstr ""
#: cps/admin.py
#, python-format
msgid "Connection successful! OIDC discovery endpoint is accessible.%(endpoints)s"
msgstr ""
#: cps/admin.py
msgid ""
"Connection failed: OIDC discovery endpoint not found (404). Check if the "
"base URL is correct."
msgstr ""
#: cps/admin.py
#, python-format
msgid "Connection failed: Server returned status code %(code)s"
msgstr ""
#: cps/admin.py
msgid ""
"Connection failed: Could not connect to server. Check the URL and network"
" connectivity."
msgstr ""
#: cps/admin.py
msgid ""
"Connection failed: Request timed out. The server may be slow or "
"unreachable."
msgstr ""
#: cps/admin.py
msgid ""
"Connection failed: Server returned invalid JSON. This may not be an OIDC "
"endpoint."
msgstr ""
#: cps/admin.py
#, python-format
msgid "Connection failed: %(error)s"
msgstr ""
#: cps/admin.py
#, python-format
msgid ""
"Metadata is missing required OIDC fields: %(fields)s. This may not be a "
"valid OIDC metadata endpoint."
msgstr ""
#: cps/admin.py
#, python-format
msgid "Metadata URL is valid! Found %(count)s OAuth endpoints."
msgstr ""
#: cps/admin.py
msgid " User info endpoint is available."
msgstr ""
#: cps/admin.py
msgid ""
" Note: User info endpoint not found - this may cause authentication "
"issues."
msgstr ""
#: cps/admin.py
msgid "Metadata URL not found (404). Please check the URL is correct."
msgstr ""
#: cps/admin.py
msgid ""
"Connection failed: Could not connect to metadata URL. Check the URL and "
"network connectivity."
msgstr ""
#: cps/admin.py
msgid "Connection failed: Request timed out."
msgstr ""
#: cps/admin.py
msgid "Connection failed: Invalid JSON in response."
msgstr ""
#: cps/admin.py
msgid "An unknown error occurred."
msgstr ""
#: cps/admin.py
msgid "Restore already in progress."
msgstr ""
#: cps/admin.py
msgid "Restore failed: Calibre library path is not configured."
msgstr ""
#: cps/admin.py
#, python-format
msgid "Restore failed: metadata.db not found at %(path)s"
msgstr ""
#: cps/admin.py
#, python-format
msgid "Restore failed: app.db not found at %(path)s"
msgstr ""
#: cps/admin.py
msgid "An ingest run is in progress; try again when it finishes."
msgstr ""
#: cps/admin.py
msgid "Cover enforcement is in progress; try again when it finishes."
msgstr ""
#: cps/admin.py
#, python-format
msgid "Restore failed: %(err)s"
msgstr ""
#: cps/admin.py
msgid "Restore completed but app.db cleanup failed. See logs for details."
msgstr ""
#: cps/admin.py
#, python-format
msgid ""
"Restore complete. Backups and restore log saved to %(dir)s. All book-"
"linked data was reset."
msgstr ""
#: cps/annotations.py cps/templates/annotations_import.html
msgid "Import Kobo annotations"
msgstr ""
#: cps/annotations.py
msgid "No file uploaded."
msgstr ""
#: cps/annotations.py
msgid "Uploaded file is not a SQLite database."
msgstr ""
#: cps/annotations.py
msgid "Uploaded database has no readable Kobo Bookmark table."
msgstr ""
#: cps/annotations.py
#, python-format
msgid "File exceeds %(max)d MB."
msgstr ""
#: cps/annotations.py cps/templates/annotations_view.html
#, python-format
msgid "Annotations: %(title)s"
msgstr ""
#: cps/constants.py
msgid "Czech"
msgstr ""
#: cps/constants.py
msgid "German"
msgstr ""
#: cps/constants.py
msgid "Greek"
msgstr ""
#: cps/constants.py
msgid "Spanish"
msgstr ""
#: cps/constants.py
msgid "Finnish"
msgstr ""
#: cps/constants.py
msgid "French"
msgstr ""
#: cps/constants.py
msgid "Galician"
msgstr ""
#: cps/constants.py
msgid "Hungarian"
msgstr ""
#: cps/constants.py
msgid "Indonesian"
msgstr ""
#: cps/constants.py
msgid "Italian"
msgstr ""
#: cps/constants.py
msgid "Japanese"
msgstr ""
#: cps/constants.py
msgid "Khmer"
msgstr ""
#: cps/constants.py
msgid "Korean"
msgstr ""
#: cps/constants.py
msgid "Dutch"
msgstr ""
#: cps/constants.py
msgid "Norwegian"
msgstr ""
#: cps/constants.py
msgid "Polish"
msgstr ""
#: cps/constants.py
msgid "Portuguese"
msgstr ""
#: cps/constants.py
msgid "Portuguese (Brazil)"
msgstr ""
#: cps/constants.py
msgid "Russian"
msgstr ""
#: cps/constants.py
msgid "Slovak"
msgstr ""
#: cps/constants.py
msgid "Slovenian"
msgstr ""
#: cps/constants.py
msgid "Swedish"
msgstr ""
#: cps/constants.py
msgid "Turkish"
msgstr ""
#: cps/constants.py
msgid "Ukrainian"
msgstr ""
#: cps/constants.py
msgid "Vietnamese"
msgstr ""
#: cps/constants.py
msgid "Chinese (Simplified, China)"
msgstr ""
#: cps/constants.py
msgid "Chinese (Traditional, Taiwan)"
msgstr ""