alexandria-book-collection-manager 0.7.3 → 0.7.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (155) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +28 -25
  3. data/.rubocop_todo.yml +87 -67
  4. data/CHANGELOG.md +12 -1
  5. data/Gemfile +4 -3
  6. data/README.md +16 -6
  7. data/Rakefile +71 -72
  8. data/alexandria-book-collection-manager.gemspec +44 -44
  9. data/bin/alexandria +12 -12
  10. data/lib/alexandria.rb +22 -22
  11. data/lib/alexandria/about.rb +50 -50
  12. data/lib/alexandria/book_providers.rb +50 -50
  13. data/lib/alexandria/book_providers/adlibris.rb +28 -44
  14. data/lib/alexandria/book_providers/amazon_aws.rb +64 -64
  15. data/lib/alexandria/book_providers/amazon_ecs_util.rb +52 -78
  16. data/lib/alexandria/book_providers/barnes_and_noble.rb +34 -34
  17. data/lib/alexandria/book_providers/douban.rb +21 -37
  18. data/lib/alexandria/book_providers/proxis.rb +24 -24
  19. data/lib/alexandria/book_providers/pseudomarc.rb +19 -19
  20. data/lib/alexandria/book_providers/renaud.rb +44 -57
  21. data/lib/alexandria/book_providers/siciliano.rb +39 -39
  22. data/lib/alexandria/book_providers/thalia.rb +33 -33
  23. data/lib/alexandria/book_providers/web.rb +5 -5
  24. data/lib/alexandria/book_providers/worldcat.rb +44 -69
  25. data/lib/alexandria/book_providers/z3950.rb +94 -109
  26. data/lib/alexandria/config.rb +1 -1
  27. data/lib/alexandria/console.rb +3 -3
  28. data/lib/alexandria/export_format.rb +8 -8
  29. data/lib/alexandria/export_library.rb +112 -113
  30. data/lib/alexandria/import_library.rb +45 -45
  31. data/lib/alexandria/import_library_csv.rb +30 -30
  32. data/lib/alexandria/library_collection.rb +4 -4
  33. data/lib/alexandria/library_sort_order.rb +1 -1
  34. data/lib/alexandria/library_store.rb +14 -14
  35. data/lib/alexandria/logging.rb +5 -5
  36. data/lib/alexandria/models/book.rb +1 -1
  37. data/lib/alexandria/models/library.rb +36 -36
  38. data/lib/alexandria/net.rb +5 -5
  39. data/lib/alexandria/preferences.rb +32 -32
  40. data/lib/alexandria/scanners/{cuecat.rb → cue_cat.rb} +13 -13
  41. data/lib/alexandria/scanners/keyboard.rb +5 -5
  42. data/lib/alexandria/smart_library.rb +53 -53
  43. data/lib/alexandria/ui.rb +15 -15
  44. data/lib/alexandria/ui/{dialogs/about_dialog.rb → about_dialog.rb} +1 -1
  45. data/lib/alexandria/ui/{dialogs/acquire_dialog.rb → acquire_dialog.rb} +66 -65
  46. data/lib/alexandria/ui/{dialogs/alert_dialog.rb → alert_dialog.rb} +1 -16
  47. data/lib/alexandria/ui/{dialogs/bad_isbns_dialog.rb → bad_isbns_dialog.rb} +0 -0
  48. data/lib/alexandria/ui/{dialogs/barcode_animation.rb → barcode_animation.rb} +7 -7
  49. data/lib/alexandria/ui/{dialogs/book_properties_dialog.rb → book_properties_dialog.rb} +25 -37
  50. data/lib/alexandria/ui/{dialogs/book_properties_dialog_base.rb → book_properties_dialog_base.rb} +38 -37
  51. data/lib/alexandria/ui/builder_base.rb +1 -1
  52. data/lib/alexandria/ui/callbacks.rb +95 -91
  53. data/lib/alexandria/ui/completion_models.rb +7 -21
  54. data/lib/alexandria/ui/confirm_erase_dialog.rb +33 -0
  55. data/lib/alexandria/ui/conflict_while_copying_dialog.rb +34 -0
  56. data/lib/alexandria/ui/dndable.rb +7 -7
  57. data/lib/alexandria/ui/error_dialog.rb +25 -0
  58. data/lib/alexandria/ui/{dialogs/export_dialog.rb → export_dialog.rb} +22 -42
  59. data/lib/alexandria/ui/icons.rb +6 -6
  60. data/lib/alexandria/ui/iconview.rb +7 -7
  61. data/lib/alexandria/ui/iconview_tooltips.rb +6 -6
  62. data/lib/alexandria/ui/{dialogs/import_dialog.rb → import_dialog.rb} +14 -32
  63. data/lib/alexandria/ui/init.rb +16 -29
  64. data/lib/alexandria/ui/{dialogs/keep_bad_isbn_dialog.rb → keep_bad_isbn_dialog.rb} +6 -4
  65. data/lib/alexandria/ui/libraries_combo.rb +7 -7
  66. data/lib/alexandria/ui/listview.rb +40 -40
  67. data/lib/alexandria/ui/main_app.rb +22 -24
  68. data/lib/alexandria/ui/misc_dialogs.rb +10 -0
  69. data/lib/alexandria/ui/multi_drag_treeview.rb +4 -4
  70. data/lib/alexandria/ui/{dialogs/new_book_dialog.rb → new_book_dialog.rb} +46 -45
  71. data/lib/alexandria/ui/{dialogs/new_book_dialog_manual.rb → new_book_dialog_manual.rb} +20 -19
  72. data/lib/alexandria/ui/new_provider_dialog.rb +99 -0
  73. data/lib/alexandria/ui/{dialogs/new_smart_library_dialog.rb → new_smart_library_dialog.rb} +4 -4
  74. data/lib/alexandria/ui/{dialogs/preferences_dialog.rb → preferences_dialog.rb} +44 -235
  75. data/lib/alexandria/ui/provider_preferences_base_dialog.rb +90 -0
  76. data/lib/alexandria/ui/provider_preferences_dialog.rb +35 -0
  77. data/lib/alexandria/ui/{dialogs/misc_dialogs.rb → really_delete_dialog.rb} +6 -27
  78. data/lib/alexandria/ui/{sidepane.rb → sidepane_manager.rb} +27 -25
  79. data/lib/alexandria/ui/skip_entry_dialog.rb +32 -0
  80. data/lib/alexandria/ui/{dialogs/smart_library_properties_dialog.rb → smart_library_properties_dialog.rb} +2 -2
  81. data/lib/alexandria/ui/{dialogs/smart_library_properties_dialog_base.rb → smart_library_properties_dialog_base.rb} +30 -30
  82. data/lib/alexandria/ui/sound.rb +8 -8
  83. data/lib/alexandria/ui/ui_manager.rb +136 -135
  84. data/lib/alexandria/version.rb +4 -19
  85. data/lib/alexandria/web_themes.rb +8 -8
  86. data/po/cs.po +97 -97
  87. data/po/cy.po +97 -97
  88. data/po/de.po +97 -97
  89. data/po/el.po +97 -97
  90. data/po/es.po +97 -97
  91. data/po/fr.po +97 -97
  92. data/po/ga.po +97 -97
  93. data/po/gl.po +97 -97
  94. data/po/it.po +97 -97
  95. data/po/ja.po +97 -97
  96. data/po/mk.po +97 -97
  97. data/po/nb.po +97 -97
  98. data/po/nl.po +97 -97
  99. data/po/pl.po +97 -97
  100. data/po/pt.po +97 -97
  101. data/po/pt_BR.po +97 -97
  102. data/po/ru.po +97 -97
  103. data/po/sk.po +97 -97
  104. data/po/sv.po +97 -97
  105. data/po/uk.po +97 -97
  106. data/po/zh_TW.po +97 -97
  107. data/schemas/alexandria.schemas +24 -2
  108. data/spec/alexandria/book_providers_spec.rb +65 -82
  109. data/spec/alexandria/book_spec.rb +12 -10
  110. data/spec/alexandria/console_spec.rb +9 -9
  111. data/spec/alexandria/export_library_spec.rb +31 -31
  112. data/spec/alexandria/library_spec.rb +86 -86
  113. data/spec/alexandria/library_store_spec.rb +8 -8
  114. data/spec/alexandria/preferences_spec.rb +18 -17
  115. data/spec/alexandria/scanners/cue_cat_spec.rb +52 -0
  116. data/spec/alexandria/smart_library_spec.rb +15 -15
  117. data/spec/alexandria/ui/about_dialog_spec.rb +14 -0
  118. data/spec/alexandria/ui/acquire_dialog_spec.rb +14 -0
  119. data/spec/alexandria/ui/alert_dialog_spec.rb +16 -0
  120. data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +14 -0
  121. data/spec/alexandria/ui/book_properties_dialog_spec.rb +17 -0
  122. data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +14 -0
  123. data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +16 -0
  124. data/spec/alexandria/ui/error_dialog_spec.rb +14 -0
  125. data/spec/alexandria/ui/export_dialog_spec.rb +15 -0
  126. data/spec/alexandria/ui/iconview_spec.rb +7 -21
  127. data/spec/alexandria/ui/import_dialog_spec.rb +14 -0
  128. data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +17 -0
  129. data/spec/alexandria/ui/main_app_spec.rb +6 -6
  130. data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +15 -0
  131. data/spec/alexandria/ui/{dialogs/new_book_dialog_spec.rb → new_book_dialog_spec.rb} +4 -4
  132. data/spec/alexandria/ui/new_provider_dialog_spec.rb +14 -0
  133. data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +14 -0
  134. data/spec/alexandria/ui/preferences_dialog_spec.rb +14 -0
  135. data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +19 -0
  136. data/spec/alexandria/ui/really_delete_dialog_spec.rb +15 -0
  137. data/spec/alexandria/ui/sidepane_manager_spec.rb +15 -0
  138. data/spec/alexandria/ui/skip_entry_dialog_spec.rb +14 -0
  139. data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +18 -0
  140. data/spec/alexandria/ui/sound_spec.rb +2 -2
  141. data/spec/alexandria/ui/ui_manager_spec.rb +6 -20
  142. data/spec/alexandria/ui/ui_utilities_spec.rb +9 -9
  143. data/spec/alexandria/utilities_spec.rb +6 -6
  144. data/spec/end_to_end/basic_run_spec.rb +24 -36
  145. data/spec/spec_helper.rb +9 -9
  146. data/tasks/dogtail.rake +1 -1
  147. data/tasks/setup.rb +2 -2
  148. data/tasks/spec.rake +11 -11
  149. data/util/rake/fileinstall.rb +25 -25
  150. data/util/rake/gettextgenerate.rb +7 -7
  151. data/util/rake/omfgenerate.rb +7 -7
  152. metadata +59 -33
  153. data/spec/alexandria/scanners/cuecat_spec.rb +0 -67
  154. data/spec/alexandria/ui/dialogs_spec.rb +0 -162
  155. data/spec/alexandria/ui/sidepane_spec.rb +0 -29
data/po/de.po CHANGED
@@ -182,7 +182,7 @@ msgstr ""
182
182
  "Die folgenden Zeilen sind keine gültigen ISBNs und wurden nicht importiert."
183
183
 
184
184
  #: ../lib/alexandria/ui/callbacks.rb:122
185
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:128
185
+ #: ../lib/alexandria/ui/export_dialog.rb:128
186
186
  msgid "Export failed"
187
187
  msgstr "Exportieren fehlgeschlagen"
188
188
 
@@ -463,96 +463,96 @@ msgstr "Nach _Bewertung"
463
463
  msgid "At _%s"
464
464
  msgstr "Bei _%s"
465
465
 
466
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:395
466
+ #: ../lib/alexandria/ui/acquire_dialog.rb:395
467
467
  msgid "There was %d duplicate"
468
468
  msgid_plural "There were %d duplicates"
469
469
  msgstr[0] "Es gab %d Duplikat"
470
470
  msgstr[1] "Es gab %d Duplikate"
471
471
 
472
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:398
472
+ #: ../lib/alexandria/ui/acquire_dialog.rb:398
473
473
  msgid "Couldn't add this book"
474
474
  msgid_plural "Couldn't add these books"
475
475
  msgstr[0] "Konnte dieses Buch nicht hinzufügen"
476
476
  msgstr[1] "Konnte diese Bücher nicht hinzufügen"
477
477
 
478
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:477
479
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:555
478
+ #: ../lib/alexandria/ui/acquire_dialog.rb:477
479
+ #: ../lib/alexandria/ui/new_book_dialog.rb:555
480
480
  msgid "Searching Provider '%s'..."
481
481
  msgstr "Suche Anbieter '%s'"
482
482
 
483
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:478
484
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:556
483
+ #: ../lib/alexandria/ui/acquire_dialog.rb:478
484
+ #: ../lib/alexandria/ui/new_book_dialog.rb:556
485
485
  msgid "Error while Searching Provider '%s'"
486
486
  msgstr "Fehler beim Suchen des Anbieters '%s'"
487
487
 
488
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:479
489
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:557
488
+ #: ../lib/alexandria/ui/acquire_dialog.rb:479
489
+ #: ../lib/alexandria/ui/new_book_dialog.rb:557
490
490
  msgid "Not Found at Provider '%s'"
491
491
  msgstr "Beim Anbeiter '%s' nicht gefunden"
492
492
 
493
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:480
494
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:558
493
+ #: ../lib/alexandria/ui/acquire_dialog.rb:480
494
+ #: ../lib/alexandria/ui/new_book_dialog.rb:558
495
495
  msgid "Found at Provider '%s'"
496
496
  msgstr "Beim Anbieter '%s' gefunden"
497
497
 
498
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:610
498
+ #: ../lib/alexandria/ui/acquire_dialog.rb:610
499
499
  msgid "Ready to use %s barcode scanner"
500
500
  msgstr "Bereit, den Barcode-Scanner %s zu verwenden"
501
501
 
502
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:625
502
+ #: ../lib/alexandria/ui/acquire_dialog.rb:625
503
503
  #: ../data/alexandria/glade/acquire_dialog.glade:26
504
504
  msgid "_Barcode Scanner Ready"
505
505
  msgstr "_Barcode-Scanner bereit"
506
506
 
507
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:640
507
+ #: ../lib/alexandria/ui/acquire_dialog.rb:640
508
508
  msgid "Click below to scan _barcodes"
509
509
  msgstr "Kicken sie, um _Barcodes einzulesen."
510
510
 
511
- #: ../lib/alexandria/ui/dialogs/bad_isbns_dialog.rb:24
511
+ #: ../lib/alexandria/ui/bad_isbns_dialog.rb:24
512
512
  msgid "There's a problem"
513
513
  msgstr "Es gibt ein Problem"
514
514
 
515
- #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:30
515
+ #: ../lib/alexandria/ui/new_smart_library_dialog.rb:30
516
516
  msgid "New Smart Library"
517
517
  msgstr "Neue intelligente Bibliothek"
518
518
 
519
- #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:49
519
+ #: ../lib/alexandria/ui/new_smart_library_dialog.rb:49
520
520
  msgid "Smart Library"
521
521
  msgstr "Intelligente Bibliothek"
522
522
 
523
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:106
523
+ #: ../lib/alexandria/ui/preferences_dialog.rb:106
524
524
  msgid "Preferences for %s"
525
525
  msgstr "Einstellungen für %s"
526
526
 
527
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:131
527
+ #: ../lib/alexandria/ui/preferences_dialog.rb:131
528
528
  msgid "New Provider"
529
529
  msgstr "Neuer Anbieter"
530
530
 
531
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:146
531
+ #: ../lib/alexandria/ui/preferences_dialog.rb:146
532
532
  msgid "_Name:"
533
533
  msgstr "_Name:"
534
534
 
535
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:158
535
+ #: ../lib/alexandria/ui/preferences_dialog.rb:158
536
536
  msgid "_Type:"
537
537
  msgstr "_Typ:"
538
538
 
539
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:316
540
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
541
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
539
+ #: ../lib/alexandria/ui/preferences_dialog.rb:316
540
+ #: ../lib/alexandria/ui/preferences_dialog.rb:339
541
+ #: ../lib/alexandria/ui/preferences_dialog.rb:359
542
542
  msgid "Disable Provider"
543
543
  msgstr "Anbieter deaktivieren"
544
544
 
545
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
546
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
545
+ #: ../lib/alexandria/ui/preferences_dialog.rb:339
546
+ #: ../lib/alexandria/ui/preferences_dialog.rb:359
547
547
  msgid "Enable Provider"
548
548
  msgstr "Anbieter aktivieren"
549
549
 
550
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:423
550
+ #: ../lib/alexandria/ui/preferences_dialog.rb:423
551
551
  msgid "Are you sure you want to permanently delete the provider '%s'?"
552
552
  msgstr ""
553
553
  "Sind Sie sicher, dass sie den Anbieter '%s' unwiederbringlich löschen wollen?"
554
554
 
555
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:431
555
+ #: ../lib/alexandria/ui/preferences_dialog.rb:431
556
556
  msgid ""
557
557
  "If you continue, the provider and all of its preferences will be permanently "
558
558
  "deleted."
@@ -560,27 +560,27 @@ msgstr ""
560
560
  "Wenn sie fortfahren wird der Anbeiter und alle seine "
561
561
  "Einstellungenunwiederbringlich gelöscht."
562
562
 
563
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:36
563
+ #: ../lib/alexandria/ui/import_dialog.rb:36
564
564
  msgid "Error while importing"
565
565
  msgstr "Fehler beim Importieren"
566
566
 
567
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:39
567
+ #: ../lib/alexandria/ui/import_dialog.rb:39
568
568
  msgid "_Continue"
569
569
  msgstr "_Fortsetzen"
570
570
 
571
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:64
571
+ #: ../lib/alexandria/ui/import_dialog.rb:64
572
572
  msgid "Import a Library"
573
573
  msgstr "Eine Bibliothek importieren"
574
574
 
575
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:71
575
+ #: ../lib/alexandria/ui/import_dialog.rb:71
576
576
  msgid "_Import"
577
577
  msgstr "_Import"
578
578
 
579
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:188
579
+ #: ../lib/alexandria/ui/import_dialog.rb:188
580
580
  msgid "Couldn't import the library"
581
581
  msgstr "Konnte die Bibliothek nicht importieren"
582
582
 
583
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:189
583
+ #: ../lib/alexandria/ui/import_dialog.rb:189
584
584
  msgid ""
585
585
  "The format of the file you provided is unknown. Please retry with another "
586
586
  "file."
@@ -588,20 +588,20 @@ msgstr ""
588
588
  "Das Format der angegebenen Datei ist nicht bekannt. Bitte versuchen sie eine "
589
589
  "andere Datei."
590
590
 
591
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb:30
592
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:63
591
+ #: ../lib/alexandria/ui/smart_library_properties_dialog.rb:30
592
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:63
593
593
  msgid "Properties for '%s'"
594
594
  msgstr "Eigenschaften von %s"
595
595
 
596
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:83
596
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:83
597
597
  msgid "Empty or conflictive condition"
598
598
  msgstr "Leer oder im Konflikt"
599
599
 
600
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:86
600
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:86
601
601
  msgid "_Save However"
602
602
  msgstr "Trozdem _speichern"
603
603
 
604
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:87
604
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:87
605
605
  msgid ""
606
606
  "This smart library contains one or more conditions which are empty or "
607
607
  "conflict with each other. This is likely to result in never matching a book. "
@@ -612,40 +612,40 @@ msgstr ""
612
612
  "Buch darin auftauchen wird. Sind sie sicher, dass sie diese Bibliothek "
613
613
  "speichern möchten?"
614
614
 
615
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:106
615
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:106
616
616
  msgid "Match"
617
617
  msgstr "Überprüfe"
618
618
 
619
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
619
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:109
620
620
  msgid "all"
621
621
  msgstr "alle"
622
622
 
623
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
623
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:109
624
624
  msgid "any"
625
625
  msgstr "einen"
626
626
 
627
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:119
627
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:119
628
628
  msgid "of the following rules:"
629
629
  msgstr "der folgenden Regeln:"
630
630
 
631
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:127
631
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:127
632
632
  msgid "Match the following rule:"
633
633
  msgstr "Überprüfe die folgende Regel:"
634
634
 
635
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:114
636
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:123
635
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:114
636
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:123
637
637
  msgid "Couldn't modify the book"
638
638
  msgstr "Konnte das Buch nicht bearbeiten"
639
639
 
640
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:115
641
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:88
640
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:115
641
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:88
642
642
  msgid "The EAN/ISBN you provided is already used in this library."
643
643
  msgstr ""
644
644
  "Die EAN/ISBN, die sie angegeben haben, wird in dieser Bibliothek bereits "
645
645
  "benutzt."
646
646
 
647
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:124
648
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:94
647
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:124
648
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:94
649
649
  msgid ""
650
650
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
651
651
  "correcty, and try again."
@@ -653,68 +653,68 @@ msgstr ""
653
653
  "Die EAN/ISBN, die Sie eingegeben haben, ist ungültig. Bitte stellen Sie "
654
654
  "sicher, dass Sie keine Tippfehler enthält und versuchen Sie es noch mal."
655
655
 
656
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:65
656
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:65
657
657
  msgid "Properties"
658
658
  msgstr "_Eigenschaften"
659
659
 
660
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:71
660
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:71
661
661
  msgid "Author"
662
662
  msgstr "Autor"
663
663
 
664
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:123
664
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:123
665
665
  msgid "Select a cover image"
666
666
  msgstr "Wähle ein Einbandbild"
667
667
 
668
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:127
668
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:127
669
669
  msgid "No Cover"
670
670
  msgstr "Kein Einband"
671
671
 
672
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:186
672
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:186
673
673
  msgid "%d day"
674
674
  msgid_plural "%d days"
675
675
  msgstr[0] "%d Tag"
676
676
  msgstr[1] "%d Tage"
677
677
 
678
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:58
678
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:58
679
679
  msgid "Adding '%s'"
680
680
  msgstr "Füge '_%s' hinzu"
681
681
 
682
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:60
682
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:60
683
683
  #: ../data/alexandria/glade/new_book_dialog.glade:8
684
684
  msgid "Adding a Book"
685
685
  msgstr "Ein Buch hinzufügen"
686
686
 
687
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:81
687
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:81
688
688
  msgid "A title must be provided."
689
689
  msgstr "Ein Titel muss angegeben werden."
690
690
 
691
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:102
691
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:102
692
692
  msgid "A publisher must be provided."
693
693
  msgstr "Ein Verlag muss angegeben werden."
694
694
 
695
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:109
695
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:109
696
696
  msgid "A binding must be provided."
697
697
  msgstr "Eine Bindung muss angegeben werden."
698
698
 
699
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:115
699
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:115
700
700
  msgid "At least one author must be provided."
701
701
  msgstr "Es muss mindestens ein Autor angegeben werden."
702
702
 
703
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:142
704
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:523
703
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:142
704
+ #: ../lib/alexandria/ui/new_book_dialog.rb:523
705
705
  msgid "Couldn't add the book"
706
706
  msgstr "Konnte das Buch nicht hinzufügen"
707
707
 
708
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:25
708
+ #: ../lib/alexandria/ui/export_dialog.rb:25
709
709
  msgid "File already exists"
710
710
  msgstr "Die Datei existiert bereits"
711
711
 
712
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:28
713
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:30
712
+ #: ../lib/alexandria/ui/export_dialog.rb:28
713
+ #: ../lib/alexandria/ui/misc_dialogs.rb:30
714
714
  msgid "_Replace"
715
715
  msgstr "_Ersetzen"
716
716
 
717
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:29
717
+ #: ../lib/alexandria/ui/export_dialog.rb:29
718
718
  msgid ""
719
719
  "A file named '%s' already exists. Do you want to replace it with the one "
720
720
  "you are generating?"
@@ -722,27 +722,27 @@ msgstr ""
722
722
  "Eine Datei mit dem Namen '%s' existiert bereits. Möchten Sie sie mit der von "
723
723
  "ihnen generierten ersetzen?"
724
724
 
725
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:52
725
+ #: ../lib/alexandria/ui/export_dialog.rb:52
726
726
  msgid "Export '%s'"
727
727
  msgstr "'%s' exportieren"
728
728
 
729
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:58
729
+ #: ../lib/alexandria/ui/export_dialog.rb:58
730
730
  msgid "_Export"
731
731
  msgstr "_Export"
732
732
 
733
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:77
733
+ #: ../lib/alexandria/ui/export_dialog.rb:77
734
734
  msgid "_Theme:"
735
735
  msgstr "_Thema:"
736
736
 
737
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:87
737
+ #: ../lib/alexandria/ui/export_dialog.rb:87
738
738
  msgid "directory"
739
739
  msgstr "Verzeichnis"
740
740
 
741
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:100
741
+ #: ../lib/alexandria/ui/export_dialog.rb:100
742
742
  msgid "Export for_mat:"
743
743
  msgstr "Exportfor_mat:"
744
744
 
745
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:155
745
+ #: ../lib/alexandria/ui/export_dialog.rb:155
746
746
  msgid ""
747
747
  "The target, named '%s', is a regular file. A directory is needed for this "
748
748
  "operation. Please select a directory and try again."
@@ -751,19 +751,19 @@ msgstr ""
751
751
  "ein Verzeichnis. Bitte wählen sie ein Verzeichnis aus und versuchen es "
752
752
  "nochmal."
753
753
 
754
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:159
754
+ #: ../lib/alexandria/ui/export_dialog.rb:159
755
755
  msgid "Not a directory"
756
756
  msgstr "Kein Verzeichnis"
757
757
 
758
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:32
758
+ #: ../lib/alexandria/ui/new_book_dialog.rb:32
759
759
  msgid "Invalid ISBN '%s'"
760
760
  msgstr "Ungültige ISBN '%s'"
761
761
 
762
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:35
762
+ #: ../lib/alexandria/ui/new_book_dialog.rb:35
763
763
  msgid "_Keep"
764
764
  msgstr "_Behalten"
765
765
 
766
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:36
766
+ #: ../lib/alexandria/ui/new_book_dialog.rb:36
767
767
  msgid ""
768
768
  "The book titled '%s' has an invalid ISBN, but still exists in the providers "
769
769
  "libraries. Do you want to keep the book but change the ISBN or cancel the "
@@ -773,19 +773,19 @@ msgstr ""
773
773
  "Katalog des Anbieters. Möchten sie das Buch behalten und die ISBN ändern "
774
774
  "oder das Hinzufügen abbrechen?"
775
775
 
776
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:182
776
+ #: ../lib/alexandria/ui/new_book_dialog.rb:182
777
777
  msgid "A problem occurred while downloading images"
778
778
  msgstr "Ein Problem trat beim Laden der Bilder auf."
779
779
 
780
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:304
780
+ #: ../lib/alexandria/ui/new_book_dialog.rb:304
781
781
  msgid "Unable to find matches for your search"
782
782
  msgstr "Ihre Suche führte zu keinen Treffern"
783
783
 
784
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:310
784
+ #: ../lib/alexandria/ui/new_book_dialog.rb:310
785
785
  msgid "%s, by %s"
786
786
  msgstr "%s, nach %s"
787
787
 
788
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:383
788
+ #: ../lib/alexandria/ui/new_book_dialog.rb:383
789
789
  msgid ""
790
790
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
791
791
  "correctly, and try again."
@@ -794,74 +794,74 @@ msgstr ""
794
794
  "stellen Sie sicher, dass sie richtig geschrieben ist und versuchen Sie es "
795
795
  "noch mal."
796
796
 
797
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:630
797
+ #: ../lib/alexandria/ui/new_book_dialog.rb:630
798
798
  msgid "'%s' already exists in '%s' (titled '%s')."
799
799
  msgstr "'%s' existiert bereits in '%s' (Unter dem Namen '%s')"
800
800
 
801
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:26
801
+ #: ../lib/alexandria/ui/misc_dialogs.rb:26
802
802
  msgid "The book '%s' already exists in '%s'. Would you like to replace it?"
803
803
  msgstr "'%s' existiert bereits in '%s' Wollen sie es ersetzen?"
804
804
 
805
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:29
805
+ #: ../lib/alexandria/ui/misc_dialogs.rb:29
806
806
  msgid "_Skip"
807
807
  msgstr "Über_springen"
808
808
 
809
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:31
809
+ #: ../lib/alexandria/ui/misc_dialogs.rb:31
810
810
  msgid "If you replace the existing book, its contents will be overwritten."
811
811
  msgstr ""
812
812
  "Wenn sie das existierende Buch ersetzen, wird der Inhalt überschrieben."
813
813
 
814
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:50
814
+ #: ../lib/alexandria/ui/misc_dialogs.rb:50
815
815
  msgid "Are you sure you want to delete '%s'?"
816
816
  msgstr "Sind Sie sicher, '%s' unwiederbringlich zu löschen?"
817
817
 
818
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:58
818
+ #: ../lib/alexandria/ui/misc_dialogs.rb:58
819
819
  msgid "If you continue, %d book will be deleted."
820
820
  msgid_plural "If you continue, %d books will be deleted."
821
821
  msgstr[0] "Wenn sie fortfahren, wird %d Buch unwiederbringlich gelöscht."
822
822
  msgstr[1] "Wenn sie fortfahren, werden %d Bücher unwiederbringlich gelöscht."
823
823
 
824
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:63
824
+ #: ../lib/alexandria/ui/misc_dialogs.rb:63
825
825
  msgid "Are you sure you want to delete '%s' from '%s'?"
826
826
  msgstr "Sind Sie sicher, '%s' aus '%s' unwiederbringlich zu löschen?"
827
827
 
828
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:66
828
+ #: ../lib/alexandria/ui/misc_dialogs.rb:66
829
829
  msgid "Are you sure you want to delete the selected books from '%s'?"
830
830
  msgstr ""
831
831
  "Sind Sie sicher, die ausgewählten Bücher aus '%s' unwiederbringlich zu "
832
832
  "löschen?"
833
833
 
834
- #: ../lib/alexandria/ui/sidepane.rb:49
834
+ #: ../lib/alexandria/ui/sidepane_manager.rb:49
835
835
  msgid "Invalid library name '%s'"
836
836
  msgstr "Ungültiger Bibliotheksname '%s'"
837
837
 
838
- #: ../lib/alexandria/ui/sidepane.rb:50
838
+ #: ../lib/alexandria/ui/sidepane_manager.rb:50
839
839
  msgid "The name provided contains the disallowed character <b>%s</b> "
840
840
  msgstr "Der angegebene Name enthält das ungültige Zeichen '<b>%s</b>'"
841
841
 
842
- #: ../lib/alexandria/ui/sidepane.rb:53
842
+ #: ../lib/alexandria/ui/sidepane_manager.rb:53
843
843
  msgid "Invalid library name"
844
844
  msgstr "Ungültiger Bibliotheksname"
845
845
 
846
- #: ../lib/alexandria/ui/sidepane.rb:54
846
+ #: ../lib/alexandria/ui/sidepane_manager.rb:54
847
847
  msgid "The name provided contains invalid characters."
848
848
  msgstr "Der angegebene Name enthält ungültige Zeichen."
849
849
 
850
- #: ../lib/alexandria/ui/sidepane.rb:60
850
+ #: ../lib/alexandria/ui/sidepane_manager.rb:60
851
851
  msgid "The library name can not be empty"
852
852
  msgstr "Der Name der Bibliothek darf nicht leer sein"
853
853
 
854
- #: ../lib/alexandria/ui/sidepane.rb:65
854
+ #: ../lib/alexandria/ui/sidepane_manager.rb:65
855
855
  msgid "The library can not be renamed"
856
856
  msgstr "Die Bibliothek kann nicht unbenannt werden"
857
857
 
858
- #: ../lib/alexandria/ui/sidepane.rb:66
858
+ #: ../lib/alexandria/ui/sidepane_manager.rb:66
859
859
  msgid "There is already a library named '%s'. Please choose a different name."
860
860
  msgstr ""
861
861
  "Es gibt bereits eine Bibliothek mit dem Namen '%s'. Bitte wählen sie einen "
862
862
  "anderen Namen."
863
863
 
864
- #: ../lib/alexandria/ui/sidepane.rb:92
864
+ #: ../lib/alexandria/ui/sidepane_manager.rb:92
865
865
  msgid "Library"
866
866
  msgstr "Bibliothek"
867
867