alexandria-book-collection-manager 0.7.8 → 0.7.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +48 -53
- data/.rubocop.yml +18 -5
- data/.rubocop_todo.yml +31 -37
- data/.simplecov +2 -2
- data/CHANGELOG.md +37 -0
- data/ChangeLog.0 +19 -19
- data/INSTALL.md +3 -5
- data/README.md +0 -5
- data/Rakefile +14 -14
- data/alexandria-book-collection-manager.gemspec +35 -34
- data/doc/FAQ +2 -2
- data/lib/alexandria/about.rb +1 -1
- data/lib/alexandria/book_providers/bl_provider.rb +88 -0
- data/lib/alexandria/book_providers/loc_provider.rb +38 -0
- data/lib/alexandria/book_providers/sbn_provider.rb +108 -0
- data/lib/alexandria/book_providers/thalia_provider.rb +1 -1
- data/lib/alexandria/book_providers/web.rb +2 -2
- data/lib/alexandria/book_providers/worldcat.rb +9 -7
- data/lib/alexandria/book_providers/z3950_provider.rb +199 -0
- data/lib/alexandria/book_providers.rb +10 -25
- data/lib/alexandria/console.rb +2 -2
- data/lib/alexandria/default_preferences.rb +1 -1
- data/lib/alexandria/export_library.rb +14 -14
- data/lib/alexandria/image_fetcher.rb +25 -0
- data/lib/alexandria/import_library.rb +10 -10
- data/lib/alexandria/library_store.rb +4 -5
- data/lib/alexandria/models/book.rb +13 -0
- data/lib/alexandria/models/library.rb +15 -23
- data/lib/alexandria/preferences.rb +4 -6
- data/lib/alexandria/{book_providers/pseudomarc.rb → pseudo_marc_parser.rb} +2 -2
- data/lib/alexandria/scanners/cue_cat.rb +1 -1
- data/lib/alexandria/smart_library.rb +2 -2
- data/lib/alexandria/ui/about_dialog.rb +1 -1
- data/lib/alexandria/ui/acquire_dialog.rb +6 -9
- data/lib/alexandria/ui/alert_dialog.rb +2 -2
- data/lib/alexandria/ui/barcode_animation.rb +1 -1
- data/lib/alexandria/ui/book_properties_dialog_base.rb +5 -9
- data/lib/alexandria/ui/completion_models.rb +1 -5
- data/lib/alexandria/ui/conflict_while_copying_dialog.rb +1 -1
- data/lib/alexandria/ui/icons.rb +2 -2
- data/lib/alexandria/ui/init.rb +10 -4
- data/lib/alexandria/ui/listview.rb +1 -1
- data/lib/alexandria/ui/multi_drag_treeview.rb +1 -1
- data/lib/alexandria/ui/new_book_dialog.rb +11 -13
- data/lib/alexandria/ui/new_book_dialog_manual.rb +1 -1
- data/lib/alexandria/ui/preferences_dialog.rb +2 -2
- data/lib/alexandria/ui/provider_preferences_base_dialog.rb +1 -1
- data/lib/alexandria/ui/really_delete_dialog.rb +1 -1
- data/lib/alexandria/ui/ui_manager.rb +17 -25
- data/lib/alexandria/version.rb +1 -1
- data/lib/alexandria/web_themes.rb +1 -1
- data/lib/alexandria.rb +6 -5
- data/po/cs.po +90 -125
- data/po/cy.po +87 -125
- data/po/de.po +96 -125
- data/po/el.po +96 -125
- data/po/es.po +96 -125
- data/po/fr.po +90 -125
- data/po/ga.po +83 -124
- data/po/gl.po +90 -125
- data/po/it.po +90 -125
- data/po/ja.po +90 -125
- data/po/mk.po +96 -125
- data/po/nb.po +90 -125
- data/po/nl.po +107 -124
- data/po/pl.po +113 -124
- data/po/pt.po +90 -125
- data/po/pt_BR.po +90 -125
- data/po/ru.po +92 -124
- data/po/sk.po +90 -125
- data/po/sv.po +90 -125
- data/po/uk.po +90 -125
- data/po/zh_TW.po +90 -125
- data/schemas/alexandria.schemas +1 -1
- data/share/gnome/help/alexandria/C/adding-books.xml +3 -4
- data/share/gnome/help/alexandria/C/introduction.xml +0 -16
- data/share/gnome/help/alexandria/C/searching.xml +1 -4
- data/share/gnome/help/alexandria/C/settings.xml +0 -30
- data/share/gnome/help/alexandria/fr/alexandria.xml +4 -159
- data/share/gnome/help/alexandria/ja/adding-books.xml +1 -1
- data/share/gnome/help/alexandria/ja/introduction.xml +0 -15
- data/share/gnome/help/alexandria/ja/searching.xml +3 -7
- data/share/gnome/help/alexandria/ja/settings.xml +0 -27
- data/spec/alexandria/book_providers/bl_provider_spec.rb +13 -0
- data/spec/alexandria/book_providers/loc_provider_spec.rb +17 -0
- data/spec/alexandria/book_providers/sbn_provider_spec.rb +13 -0
- data/spec/alexandria/book_providers/thalia_provider_spec.rb +1 -1
- data/spec/alexandria/book_providers/world_cat_provider_spec.rb +22 -10
- data/spec/alexandria/book_providers_spec.rb +0 -81
- data/spec/alexandria/book_spec.rb +5 -3
- data/spec/alexandria/export_library_spec.rb +8 -8
- data/spec/alexandria/library_spec.rb +83 -51
- data/spec/alexandria/library_store_spec.rb +1 -1
- data/spec/alexandria/preferences_spec.rb +7 -7
- data/spec/alexandria/pseudo_marc_parser_spec.rb +71 -0
- data/spec/alexandria/scanners/cue_cat_spec.rb +11 -4
- data/spec/alexandria/smart_library_spec.rb +7 -5
- data/spec/alexandria/ui/about_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/acquire_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/alert_dialog_spec.rb +5 -3
- data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/book_properties_dialog_spec.rb +4 -4
- data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +18 -2
- data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/error_dialog_spec.rb +13 -2
- data/spec/alexandria/ui/export_dialog_spec.rb +3 -3
- data/spec/alexandria/ui/iconview_spec.rb +1 -1
- data/spec/alexandria/ui/import_dialog_spec.rb +3 -3
- data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +4 -4
- data/spec/alexandria/ui/new_book_dialog_spec.rb +2 -2
- data/spec/alexandria/ui/new_provider_dialog_spec.rb +3 -3
- data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +9 -7
- data/spec/alexandria/ui/preferences_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +2 -2
- data/spec/alexandria/ui/really_delete_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/sidepane_manager_spec.rb +1 -1
- data/spec/alexandria/ui/skip_entry_dialog_spec.rb +18 -2
- data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +2 -2
- data/spec/alexandria/ui/ui_manager_spec.rb +83 -5
- data/spec/data/libraries/0.6.2/My Library/9780571147168.yaml +2 -0
- data/spec/spec_helper.rb +23 -32
- data/util/rake/fileinstall.rb +12 -12
- data/util/rake/gettextgenerate.rb +1 -1
- data/util/rake/omfgenerate.rb +1 -1
- metadata +73 -58
- data/lib/alexandria/book_providers/adlibris.rb +0 -191
- data/lib/alexandria/book_providers/amazon_aws.rb +0 -239
- data/lib/alexandria/book_providers/amazon_ecs_util.rb +0 -373
- data/lib/alexandria/book_providers/barnes_and_noble.rb +0 -209
- data/lib/alexandria/book_providers/proxis.rb +0 -176
- data/lib/alexandria/book_providers/siciliano.rb +0 -256
- data/lib/alexandria/book_providers/z3950.rb +0 -408
data/po/de.po
CHANGED
@@ -7,7 +7,7 @@ msgid ""
|
|
7
7
|
msgstr ""
|
8
8
|
"Project-Id-Version: alexandria 0.6.6\n"
|
9
9
|
"Report-Msgid-Bugs-To: \n"
|
10
|
-
"POT-Creation-Date: 2020-
|
10
|
+
"POT-Creation-Date: 2020-12-26 12:17+0100\n"
|
11
11
|
"PO-Revision-Date: 2009-12-16 11:47+0100\n"
|
12
12
|
"Last-Translator: Joachim Breitner <mail@joachim-breitner.de>\n"
|
13
13
|
"Language-Team: German\n"
|
@@ -21,16 +21,15 @@ msgstr ""
|
|
21
21
|
msgid "A program to help you manage your book collection."
|
22
22
|
msgstr "Ein Programm zum Ordnen ihrer Büchersammlung."
|
23
23
|
|
24
|
-
#: ../lib/alexandria/book_providers.rb:
|
24
|
+
#: ../lib/alexandria/book_providers.rb:95
|
25
25
|
msgid "Couldn't reach the provider '%s': timeout expired."
|
26
26
|
msgstr "Konnte den Anbieter '%s' nicht erreichen: Zeitüberschreitung"
|
27
27
|
|
28
|
-
#: ../lib/alexandria/book_providers.rb:
|
28
|
+
#: ../lib/alexandria/book_providers.rb:99
|
29
29
|
msgid "Couldn't reach the provider '%s': socket error (%s)."
|
30
30
|
msgstr "Konnte den Anbieter '%s' nicht erreichen: socket error (%s)"
|
31
31
|
|
32
|
-
#: ../lib/alexandria/book_providers.rb:
|
33
|
-
#: ../lib/alexandria/book_providers.rb:104
|
32
|
+
#: ../lib/alexandria/book_providers.rb:103
|
34
33
|
msgid ""
|
35
34
|
"No results were found. Make sure your search criterion is spelled "
|
36
35
|
"correctly, and try again."
|
@@ -38,59 +37,18 @@ msgstr ""
|
|
38
37
|
"Keine Ergebnisse. Stellen Sie sicher dass ihre Suchkriterien richtig "
|
39
38
|
"geschrieben sind und versuchen Sie es noch einmal."
|
40
39
|
|
41
|
-
#: ../lib/alexandria/book_providers.rb:
|
40
|
+
#: ../lib/alexandria/book_providers.rb:108
|
42
41
|
msgid "Too many results for that search."
|
43
42
|
msgstr "Zu viele Ergebnisse für diese Suche."
|
44
43
|
|
45
|
-
#: ../lib/alexandria/book_providers.rb:
|
44
|
+
#: ../lib/alexandria/book_providers.rb:111
|
46
45
|
msgid "Invalid search type."
|
47
46
|
msgstr "Ungültiger Suchtyp."
|
48
47
|
|
49
|
-
#: ../lib/alexandria/book_providers.rb:
|
48
|
+
#: ../lib/alexandria/book_providers.rb:205
|
50
49
|
msgid "Enabled"
|
51
50
|
msgstr "Aktiviert"
|
52
51
|
|
53
|
-
#: ../lib/alexandria/book_providers/adlibris.rb:111
|
54
|
-
msgid "title not found on page"
|
55
|
-
msgstr ""
|
56
|
-
|
57
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:26
|
58
|
-
msgid "Locale"
|
59
|
-
msgstr "Sprache"
|
60
|
-
|
61
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:27
|
62
|
-
msgid "Access key ID"
|
63
|
-
msgstr "Zugriffs-Schlüssel-ID"
|
64
|
-
|
65
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:28
|
66
|
-
msgid "Secret access key"
|
67
|
-
msgstr "Privater Zugriffsschlüssel"
|
68
|
-
|
69
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:29
|
70
|
-
#, fuzzy
|
71
|
-
msgid "Associate Tag"
|
72
|
-
msgstr "Associate ID"
|
73
|
-
|
74
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:59
|
75
|
-
msgid "Provide secret key for your Amazon AWS account."
|
76
|
-
msgstr ""
|
77
|
-
|
78
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:149
|
79
|
-
msgid "No products"
|
80
|
-
msgstr ""
|
81
|
-
|
82
|
-
#: ../lib/alexandria/book_providers/amazon_ecs_util.rb:102
|
83
|
-
msgid "HTTP Response: %<code>s %<message>s"
|
84
|
-
msgstr ""
|
85
|
-
|
86
|
-
#: ../lib/alexandria/book_providers/amazon_ecs_util.rb:170
|
87
|
-
msgid "Invalid country '%<country>s'"
|
88
|
-
msgstr ""
|
89
|
-
|
90
|
-
#: ../lib/alexandria/book_providers/barnes_and_noble.rb:59
|
91
|
-
msgid "HTTP redirect too deep"
|
92
|
-
msgstr ""
|
93
|
-
|
94
52
|
#: ../lib/alexandria/book_providers/z3950.rb:22
|
95
53
|
msgid "Hostname"
|
96
54
|
msgstr "Servername"
|
@@ -127,7 +85,7 @@ msgstr "US-Kongress-Bibliothek"
|
|
127
85
|
msgid "British Library"
|
128
86
|
msgstr "Britische Bibliothek"
|
129
87
|
|
130
|
-
#: ../lib/alexandria/book_providers/z3950.rb:
|
88
|
+
#: ../lib/alexandria/book_providers/z3950.rb:374
|
131
89
|
#, fuzzy
|
132
90
|
msgid "Invalid ISBN"
|
133
91
|
msgstr "Ungültige ISBN '%s'"
|
@@ -204,11 +162,11 @@ msgstr ""
|
|
204
162
|
msgid "%<file>s pub year is not okay"
|
205
163
|
msgstr ""
|
206
164
|
|
207
|
-
#: ../lib/alexandria/models/library.rb:
|
165
|
+
#: ../lib/alexandria/models/library.rb:42
|
208
166
|
msgid "Untitled"
|
209
167
|
msgstr "Unbenannt"
|
210
168
|
|
211
|
-
#: ../lib/alexandria/models/library.rb:
|
169
|
+
#: ../lib/alexandria/models/library.rb:284
|
212
170
|
msgid "Book %<isbn>s was already deleted"
|
213
171
|
msgstr ""
|
214
172
|
|
@@ -371,52 +329,52 @@ msgstr "ist nicht in den letzten"
|
|
371
329
|
msgid "invalid operand klass %<klass>s"
|
372
330
|
msgstr ""
|
373
331
|
|
374
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
332
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:206
|
375
333
|
msgid "There was %d duplicate"
|
376
334
|
msgid_plural "There were %d duplicates"
|
377
335
|
msgstr[0] "Es gab %d Duplikat"
|
378
336
|
msgstr[1] "Es gab %d Duplikate"
|
379
337
|
|
380
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
338
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:209
|
381
339
|
msgid "Couldn't add this book"
|
382
340
|
msgid_plural "Couldn't add these books"
|
383
341
|
msgstr[0] "Konnte dieses Buch nicht hinzufügen"
|
384
342
|
msgstr[1] "Konnte diese Bücher nicht hinzufügen"
|
385
343
|
|
386
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
387
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
344
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:288
|
345
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:498
|
388
346
|
msgid "Searching Provider '%s'..."
|
389
347
|
msgstr "Suche Anbieter '%s'"
|
390
348
|
|
391
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
392
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
349
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:289
|
350
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:499
|
393
351
|
msgid "Error while Searching Provider '%s'"
|
394
352
|
msgstr "Fehler beim Suchen des Anbieters '%s'"
|
395
353
|
|
396
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
397
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
354
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:290
|
355
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:500
|
398
356
|
msgid "Not Found at Provider '%s'"
|
399
357
|
msgstr "Beim Anbeiter '%s' nicht gefunden"
|
400
358
|
|
401
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
402
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
359
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:291
|
360
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:501
|
403
361
|
msgid "Found at Provider '%s'"
|
404
362
|
msgstr "Beim Anbieter '%s' gefunden"
|
405
363
|
|
406
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
364
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:403
|
407
365
|
msgid "Ready to use %s barcode scanner"
|
408
366
|
msgstr "Bereit, den Barcode-Scanner %s zu verwenden"
|
409
367
|
|
410
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
368
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:427
|
411
369
|
msgid "Click below to scan _barcodes"
|
412
370
|
msgstr "Kicken sie, um _Barcodes einzulesen."
|
413
371
|
|
414
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
415
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
372
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:111
|
373
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:121
|
416
374
|
msgid "Couldn't modify the book"
|
417
375
|
msgstr "Konnte das Buch nicht bearbeiten"
|
418
376
|
|
419
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
377
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:112
|
420
378
|
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:74
|
421
379
|
msgid ""
|
422
380
|
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
@@ -425,41 +383,41 @@ msgstr ""
|
|
425
383
|
"Die EAN/ISBN, die Sie eingegeben haben, ist ungültig. Bitte stellen Sie "
|
426
384
|
"sicher, dass Sie keine Tippfehler enthält und versuchen Sie es noch mal."
|
427
385
|
|
428
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
386
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:122
|
429
387
|
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:79
|
430
388
|
msgid "The EAN/ISBN you provided is already used in this library."
|
431
389
|
msgstr ""
|
432
390
|
"Die EAN/ISBN, die sie angegeben haben, wird in dieser Bibliothek bereits "
|
433
391
|
"benutzt."
|
434
392
|
|
435
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
393
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:104
|
436
394
|
msgid "Properties"
|
437
395
|
msgstr "_Eigenschaften"
|
438
396
|
|
439
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
397
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:106
|
440
398
|
#: ../lib/alexandria/ui/smart_library_properties_dialog.rb:21
|
441
399
|
msgid "Properties for '%s'"
|
442
400
|
msgstr "Eigenschaften von %s"
|
443
401
|
|
444
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
402
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:112
|
445
403
|
msgid "Author"
|
446
404
|
msgstr "Autor"
|
447
405
|
|
448
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
406
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:160
|
449
407
|
msgid "Select a cover image"
|
450
408
|
msgstr "Wähle ein Einbandbild"
|
451
409
|
|
452
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
410
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:163
|
453
411
|
msgid "No Cover"
|
454
412
|
msgstr "Kein Einband"
|
455
413
|
|
456
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
414
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:242
|
457
415
|
msgid "%d day"
|
458
416
|
msgid_plural "%d days"
|
459
417
|
msgstr[0] "%d Tag"
|
460
418
|
msgstr[1] "%d Tage"
|
461
419
|
|
462
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
420
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:268
|
463
421
|
msgid "out of range"
|
464
422
|
msgstr ""
|
465
423
|
|
@@ -775,31 +733,31 @@ msgid "If you replace the existing book, its contents will be overwritten."
|
|
775
733
|
msgstr ""
|
776
734
|
"Wenn sie das existierende Buch ersetzen, wird der Inhalt überschrieben."
|
777
735
|
|
778
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
736
|
+
#: ../lib/alexandria/ui/export_dialog.rb:24
|
779
737
|
msgid "Export '%s'"
|
780
738
|
msgstr "'%s' exportieren"
|
781
739
|
|
782
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
740
|
+
#: ../lib/alexandria/ui/export_dialog.rb:29
|
783
741
|
msgid "_Export"
|
784
742
|
msgstr "_Export"
|
785
743
|
|
786
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
744
|
+
#: ../lib/alexandria/ui/export_dialog.rb:50
|
787
745
|
msgid "_Theme:"
|
788
746
|
msgstr "_Thema:"
|
789
747
|
|
790
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
748
|
+
#: ../lib/alexandria/ui/export_dialog.rb:62
|
791
749
|
msgid "directory"
|
792
750
|
msgstr "Verzeichnis"
|
793
751
|
|
794
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
752
|
+
#: ../lib/alexandria/ui/export_dialog.rb:74
|
795
753
|
msgid "Export for_mat:"
|
796
754
|
msgstr "Exportfor_mat:"
|
797
755
|
|
798
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
756
|
+
#: ../lib/alexandria/ui/export_dialog.rb:101
|
799
757
|
msgid "Export failed"
|
800
758
|
msgstr "Exportieren fehlgeschlagen"
|
801
759
|
|
802
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
760
|
+
#: ../lib/alexandria/ui/export_dialog.rb:125
|
803
761
|
msgid ""
|
804
762
|
"The target, named '%s', is a regular file. A directory is needed for this "
|
805
763
|
"operation. Please select a directory and try again."
|
@@ -808,7 +766,7 @@ msgstr ""
|
|
808
766
|
"ein Verzeichnis. Bitte wählen sie ein Verzeichnis aus und versuchen es "
|
809
767
|
"nochmal."
|
810
768
|
|
811
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
769
|
+
#: ../lib/alexandria/ui/export_dialog.rb:129
|
812
770
|
msgid "Not a directory"
|
813
771
|
msgstr "Kein Verzeichnis"
|
814
772
|
|
@@ -832,11 +790,11 @@ msgstr ""
|
|
832
790
|
"Das Format der angegebenen Datei ist nicht bekannt. Bitte versuchen sie eine "
|
833
791
|
"andere Datei."
|
834
792
|
|
835
|
-
#: ../lib/alexandria/ui/init.rb:
|
793
|
+
#: ../lib/alexandria/ui/init.rb:70
|
836
794
|
msgid "Unable to launch the help browser"
|
837
795
|
msgstr "Konnte den Hilfe-Betrachter nicht starten"
|
838
796
|
|
839
|
-
#: ../lib/alexandria/ui/init.rb:
|
797
|
+
#: ../lib/alexandria/ui/init.rb:71
|
840
798
|
msgid ""
|
841
799
|
"Could not display help for Alexandria. There was an error launching the "
|
842
800
|
"system help browser."
|
@@ -872,27 +830,27 @@ msgstr "Neue Bibliothek"
|
|
872
830
|
msgid "Loaned To"
|
873
831
|
msgstr "Verliehen"
|
874
832
|
|
875
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
833
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:155
|
876
834
|
msgid "A problem occurred while downloading images"
|
877
835
|
msgstr "Ein Problem trat beim Laden der Bilder auf."
|
878
836
|
|
879
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
837
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:194
|
880
838
|
msgid "Iter is invalid! %s"
|
881
839
|
msgstr ""
|
882
840
|
|
883
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
841
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:266
|
884
842
|
msgid "Unable to find matches for your search"
|
885
843
|
msgstr "Ihre Suche führte zu keinen Treffern"
|
886
844
|
|
887
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
845
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:302
|
888
846
|
msgid "%s, by %s"
|
889
847
|
msgstr "%s, nach %s"
|
890
848
|
|
891
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
849
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:308
|
892
850
|
msgid "Copying %s into tree view."
|
893
851
|
msgstr ""
|
894
852
|
|
895
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
853
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:336
|
896
854
|
msgid ""
|
897
855
|
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
898
856
|
"correctly, and try again."
|
@@ -901,12 +859,12 @@ msgstr ""
|
|
901
859
|
"stellen Sie sicher, dass sie richtig geschrieben ist und versuchen Sie es "
|
902
860
|
"noch mal."
|
903
861
|
|
904
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
862
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:464
|
905
863
|
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:119
|
906
864
|
msgid "Couldn't add the book"
|
907
865
|
msgstr "Konnte das Buch nicht hinzufügen"
|
908
866
|
|
909
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
867
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:570
|
910
868
|
msgid "'%s' already exists in '%s' (titled '%s')."
|
911
869
|
msgstr "'%s' existiert bereits in '%s' (Unter dem Namen '%s')"
|
912
870
|
|
@@ -1035,15 +993,15 @@ msgstr "Fehler beim Importieren"
|
|
1035
993
|
msgid "_Continue"
|
1036
994
|
msgstr "_Fortsetzen"
|
1037
995
|
|
1038
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
996
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:97
|
1039
997
|
msgid "Empty or conflictive condition"
|
1040
998
|
msgstr "Leer oder im Konflikt"
|
1041
999
|
|
1042
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1000
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
|
1043
1001
|
msgid "_Save However"
|
1044
1002
|
msgstr "Trozdem _speichern"
|
1045
1003
|
|
1046
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1004
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:101
|
1047
1005
|
msgid ""
|
1048
1006
|
"This smart library contains one or more conditions which are empty or "
|
1049
1007
|
"conflict with each other. This is likely to result in never matching a book. "
|
@@ -1054,116 +1012,116 @@ msgstr ""
|
|
1054
1012
|
"Buch darin auftauchen wird. Sind sie sicher, dass sie diese Bibliothek "
|
1055
1013
|
"speichern möchten?"
|
1056
1014
|
|
1057
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1015
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:118
|
1058
1016
|
msgid "Match"
|
1059
1017
|
msgstr "Überprüfe"
|
1060
1018
|
|
1061
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1019
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
|
1062
1020
|
msgid "all"
|
1063
1021
|
msgstr "alle"
|
1064
1022
|
|
1065
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1023
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
|
1066
1024
|
msgid "any"
|
1067
1025
|
msgstr "einen"
|
1068
1026
|
|
1069
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1027
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:131
|
1070
1028
|
msgid "of the following rules:"
|
1071
1029
|
msgstr "der folgenden Regeln:"
|
1072
1030
|
|
1073
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1031
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:139
|
1074
1032
|
msgid "Match the following rule:"
|
1075
1033
|
msgstr "Überprüfe die folgende Regel:"
|
1076
1034
|
|
1077
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1035
|
+
#: ../lib/alexandria/ui/ui_manager.rb:132
|
1078
1036
|
msgid "Type here the search criterion"
|
1079
1037
|
msgstr "Hier die Suchkriterien eingeben"
|
1080
1038
|
|
1081
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1039
|
+
#: ../lib/alexandria/ui/ui_manager.rb:143
|
1082
1040
|
msgid "Match everything"
|
1083
1041
|
msgstr "Alles anzeigen"
|
1084
1042
|
|
1085
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1043
|
+
#: ../lib/alexandria/ui/ui_manager.rb:145
|
1086
1044
|
msgid "Title contains"
|
1087
1045
|
msgstr "Der Titel enthält"
|
1088
1046
|
|
1089
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1047
|
+
#: ../lib/alexandria/ui/ui_manager.rb:146
|
1090
1048
|
msgid "Authors contain"
|
1091
1049
|
msgstr "Die Autoren enthalten"
|
1092
1050
|
|
1093
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1051
|
+
#: ../lib/alexandria/ui/ui_manager.rb:147
|
1094
1052
|
msgid "ISBN contains"
|
1095
1053
|
msgstr "Die ISBN enthält"
|
1096
1054
|
|
1097
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1055
|
+
#: ../lib/alexandria/ui/ui_manager.rb:148
|
1098
1056
|
msgid "Publisher contains"
|
1099
1057
|
msgstr "Der Verlag enthält"
|
1100
1058
|
|
1101
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1059
|
+
#: ../lib/alexandria/ui/ui_manager.rb:149
|
1102
1060
|
msgid "Notes contain"
|
1103
1061
|
msgstr "Die Bemerkungen enthalten"
|
1104
1062
|
|
1105
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1063
|
+
#: ../lib/alexandria/ui/ui_manager.rb:150
|
1106
1064
|
msgid "Tags contain"
|
1107
1065
|
msgstr "Die Tags enthalten"
|
1108
1066
|
|
1109
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1067
|
+
#: ../lib/alexandria/ui/ui_manager.rb:164
|
1110
1068
|
msgid "Change the search type"
|
1111
1069
|
msgstr "Den Suchtyp ändern"
|
1112
1070
|
|
1113
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1071
|
+
#: ../lib/alexandria/ui/ui_manager.rb:169
|
1114
1072
|
msgid "View as Icons"
|
1115
1073
|
msgstr "Symbolansicht"
|
1116
1074
|
|
1117
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1075
|
+
#: ../lib/alexandria/ui/ui_manager.rb:170
|
1118
1076
|
msgid "View as List"
|
1119
1077
|
msgstr "Listenansicht"
|
1120
1078
|
|
1121
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1079
|
+
#: ../lib/alexandria/ui/ui_manager.rb:184
|
1122
1080
|
msgid "Choose how to show books"
|
1123
1081
|
msgstr "Wählen sie, wie die Bücher angezeigt werden sollen"
|
1124
1082
|
|
1125
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1083
|
+
#: ../lib/alexandria/ui/ui_manager.rb:407
|
1126
1084
|
msgid "Library '%s' selected"
|
1127
1085
|
msgstr "Bibliothek '%s' ausgewählt"
|
1128
1086
|
|
1129
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1087
|
+
#: ../lib/alexandria/ui/ui_manager.rb:412
|
1130
1088
|
msgid "Library '%s' selected, %d unrated book"
|
1131
1089
|
msgid_plural "Library '%s' selected, %d unrated books"
|
1132
1090
|
msgstr[0] "Bibliothek '%s' ausgewählt, %d unbewertetes Buch"
|
1133
1091
|
msgstr[1] "Bibliothek '%s' ausgewählt, %d unbewertete Bücher"
|
1134
1092
|
|
1135
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1093
|
+
#: ../lib/alexandria/ui/ui_manager.rb:416
|
1136
1094
|
msgid "Library '%s' selected, %d book"
|
1137
1095
|
msgid_plural "Library '%s' selected, %d books"
|
1138
1096
|
msgstr[0] "Bibliothek '%s' ausgewählt, %d Buch"
|
1139
1097
|
msgstr[1] "Bibliothek '%s' ausgewählt, %d Bücher"
|
1140
1098
|
|
1141
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1099
|
+
#: ../lib/alexandria/ui/ui_manager.rb:420
|
1142
1100
|
msgid "Library '%s' selected, %d book, %d unrated"
|
1143
1101
|
msgid_plural "Library '%s' selected, %d books, %d unrated"
|
1144
1102
|
msgstr[0] "Bibliothek '%s' ausgewählt, %d Buch, %d unbewertet"
|
1145
1103
|
msgstr[1] "Bibliothek '%s' ausgewählt, %d Bücher, %d unbewertet"
|
1146
1104
|
|
1147
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1105
|
+
#: ../lib/alexandria/ui/ui_manager.rb:434
|
1148
1106
|
msgid "'%s' selected"
|
1149
1107
|
msgstr "'%s' ausgewählt"
|
1150
1108
|
|
1151
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1109
|
+
#: ../lib/alexandria/ui/ui_manager.rb:436
|
1152
1110
|
msgid "%d book selected"
|
1153
1111
|
msgid_plural "%d books selected"
|
1154
1112
|
msgstr[0] "%d Buch ausgewählt"
|
1155
1113
|
msgstr[1] "%d Bücher ausgewählt"
|
1156
1114
|
|
1157
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1115
|
+
#: ../lib/alexandria/ui/ui_manager.rb:552
|
1158
1116
|
msgid "unrecognized update event"
|
1159
1117
|
msgstr ""
|
1160
1118
|
|
1161
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1119
|
+
#: ../lib/alexandria/ui/ui_manager.rb:597
|
1162
1120
|
#, fuzzy
|
1163
1121
|
msgid "Loading libraries..."
|
1164
1122
|
msgstr "Lade '%s'..."
|
1165
1123
|
|
1166
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1124
|
+
#: ../lib/alexandria/ui/ui_manager.rb:614
|
1167
1125
|
msgid ""
|
1168
1126
|
"The data files for the following books are malformed or empty. Do you wish "
|
1169
1127
|
"to attempt to download new information for them from the online book "
|
@@ -1173,15 +1131,15 @@ msgstr ""
|
|
1173
1131
|
"versuchen, neue Informationen für diese Bücher von den Internet-Quellen "
|
1174
1132
|
"herunterzuladen?\n"
|
1175
1133
|
|
1176
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1134
|
+
#: ../lib/alexandria/ui/ui_manager.rb:666
|
1177
1135
|
msgid "Added '%s' to library '%s'"
|
1178
1136
|
msgstr "'%s' der Bibliothek '%s' hinzugefügt."
|
1179
1137
|
|
1180
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1138
|
+
#: ../lib/alexandria/ui/ui_manager.rb:815
|
1181
1139
|
msgid "Loading '%s'..."
|
1182
1140
|
msgstr "Lade '%s'..."
|
1183
1141
|
|
1184
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1142
|
+
#: ../lib/alexandria/ui/ui_manager.rb:1045
|
1185
1143
|
msgid "In '_%s'"
|
1186
1144
|
msgstr "In '_%s'"
|
1187
1145
|
|
@@ -1430,6 +1388,19 @@ msgstr "Büchersammlungs-Manager"
|
|
1430
1388
|
msgid "Manage your book collection"
|
1431
1389
|
msgstr "Ordnen sie ihre Büchersammlung."
|
1432
1390
|
|
1391
|
+
#~ msgid "Locale"
|
1392
|
+
#~ msgstr "Sprache"
|
1393
|
+
|
1394
|
+
#~ msgid "Access key ID"
|
1395
|
+
#~ msgstr "Zugriffs-Schlüssel-ID"
|
1396
|
+
|
1397
|
+
#~ msgid "Secret access key"
|
1398
|
+
#~ msgstr "Privater Zugriffsschlüssel"
|
1399
|
+
|
1400
|
+
#, fuzzy
|
1401
|
+
#~ msgid "Associate Tag"
|
1402
|
+
#~ msgstr "Associate ID"
|
1403
|
+
|
1433
1404
|
#~ msgid "Unable to launch the web browser"
|
1434
1405
|
#~ msgstr "Konnte den Webbrowser nicht starten"
|
1435
1406
|
|