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.
Files changed (134) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +48 -53
  3. data/.rubocop.yml +18 -5
  4. data/.rubocop_todo.yml +31 -37
  5. data/.simplecov +2 -2
  6. data/CHANGELOG.md +37 -0
  7. data/ChangeLog.0 +19 -19
  8. data/INSTALL.md +3 -5
  9. data/README.md +0 -5
  10. data/Rakefile +14 -14
  11. data/alexandria-book-collection-manager.gemspec +35 -34
  12. data/doc/FAQ +2 -2
  13. data/lib/alexandria/about.rb +1 -1
  14. data/lib/alexandria/book_providers/bl_provider.rb +88 -0
  15. data/lib/alexandria/book_providers/loc_provider.rb +38 -0
  16. data/lib/alexandria/book_providers/sbn_provider.rb +108 -0
  17. data/lib/alexandria/book_providers/thalia_provider.rb +1 -1
  18. data/lib/alexandria/book_providers/web.rb +2 -2
  19. data/lib/alexandria/book_providers/worldcat.rb +9 -7
  20. data/lib/alexandria/book_providers/z3950_provider.rb +199 -0
  21. data/lib/alexandria/book_providers.rb +10 -25
  22. data/lib/alexandria/console.rb +2 -2
  23. data/lib/alexandria/default_preferences.rb +1 -1
  24. data/lib/alexandria/export_library.rb +14 -14
  25. data/lib/alexandria/image_fetcher.rb +25 -0
  26. data/lib/alexandria/import_library.rb +10 -10
  27. data/lib/alexandria/library_store.rb +4 -5
  28. data/lib/alexandria/models/book.rb +13 -0
  29. data/lib/alexandria/models/library.rb +15 -23
  30. data/lib/alexandria/preferences.rb +4 -6
  31. data/lib/alexandria/{book_providers/pseudomarc.rb → pseudo_marc_parser.rb} +2 -2
  32. data/lib/alexandria/scanners/cue_cat.rb +1 -1
  33. data/lib/alexandria/smart_library.rb +2 -2
  34. data/lib/alexandria/ui/about_dialog.rb +1 -1
  35. data/lib/alexandria/ui/acquire_dialog.rb +6 -9
  36. data/lib/alexandria/ui/alert_dialog.rb +2 -2
  37. data/lib/alexandria/ui/barcode_animation.rb +1 -1
  38. data/lib/alexandria/ui/book_properties_dialog_base.rb +5 -9
  39. data/lib/alexandria/ui/completion_models.rb +1 -5
  40. data/lib/alexandria/ui/conflict_while_copying_dialog.rb +1 -1
  41. data/lib/alexandria/ui/icons.rb +2 -2
  42. data/lib/alexandria/ui/init.rb +10 -4
  43. data/lib/alexandria/ui/listview.rb +1 -1
  44. data/lib/alexandria/ui/multi_drag_treeview.rb +1 -1
  45. data/lib/alexandria/ui/new_book_dialog.rb +11 -13
  46. data/lib/alexandria/ui/new_book_dialog_manual.rb +1 -1
  47. data/lib/alexandria/ui/preferences_dialog.rb +2 -2
  48. data/lib/alexandria/ui/provider_preferences_base_dialog.rb +1 -1
  49. data/lib/alexandria/ui/really_delete_dialog.rb +1 -1
  50. data/lib/alexandria/ui/ui_manager.rb +17 -25
  51. data/lib/alexandria/version.rb +1 -1
  52. data/lib/alexandria/web_themes.rb +1 -1
  53. data/lib/alexandria.rb +6 -5
  54. data/po/cs.po +90 -125
  55. data/po/cy.po +87 -125
  56. data/po/de.po +96 -125
  57. data/po/el.po +96 -125
  58. data/po/es.po +96 -125
  59. data/po/fr.po +90 -125
  60. data/po/ga.po +83 -124
  61. data/po/gl.po +90 -125
  62. data/po/it.po +90 -125
  63. data/po/ja.po +90 -125
  64. data/po/mk.po +96 -125
  65. data/po/nb.po +90 -125
  66. data/po/nl.po +107 -124
  67. data/po/pl.po +113 -124
  68. data/po/pt.po +90 -125
  69. data/po/pt_BR.po +90 -125
  70. data/po/ru.po +92 -124
  71. data/po/sk.po +90 -125
  72. data/po/sv.po +90 -125
  73. data/po/uk.po +90 -125
  74. data/po/zh_TW.po +90 -125
  75. data/schemas/alexandria.schemas +1 -1
  76. data/share/gnome/help/alexandria/C/adding-books.xml +3 -4
  77. data/share/gnome/help/alexandria/C/introduction.xml +0 -16
  78. data/share/gnome/help/alexandria/C/searching.xml +1 -4
  79. data/share/gnome/help/alexandria/C/settings.xml +0 -30
  80. data/share/gnome/help/alexandria/fr/alexandria.xml +4 -159
  81. data/share/gnome/help/alexandria/ja/adding-books.xml +1 -1
  82. data/share/gnome/help/alexandria/ja/introduction.xml +0 -15
  83. data/share/gnome/help/alexandria/ja/searching.xml +3 -7
  84. data/share/gnome/help/alexandria/ja/settings.xml +0 -27
  85. data/spec/alexandria/book_providers/bl_provider_spec.rb +13 -0
  86. data/spec/alexandria/book_providers/loc_provider_spec.rb +17 -0
  87. data/spec/alexandria/book_providers/sbn_provider_spec.rb +13 -0
  88. data/spec/alexandria/book_providers/thalia_provider_spec.rb +1 -1
  89. data/spec/alexandria/book_providers/world_cat_provider_spec.rb +22 -10
  90. data/spec/alexandria/book_providers_spec.rb +0 -81
  91. data/spec/alexandria/book_spec.rb +5 -3
  92. data/spec/alexandria/export_library_spec.rb +8 -8
  93. data/spec/alexandria/library_spec.rb +83 -51
  94. data/spec/alexandria/library_store_spec.rb +1 -1
  95. data/spec/alexandria/preferences_spec.rb +7 -7
  96. data/spec/alexandria/pseudo_marc_parser_spec.rb +71 -0
  97. data/spec/alexandria/scanners/cue_cat_spec.rb +11 -4
  98. data/spec/alexandria/smart_library_spec.rb +7 -5
  99. data/spec/alexandria/ui/about_dialog_spec.rb +1 -1
  100. data/spec/alexandria/ui/acquire_dialog_spec.rb +1 -1
  101. data/spec/alexandria/ui/alert_dialog_spec.rb +5 -3
  102. data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +1 -1
  103. data/spec/alexandria/ui/book_properties_dialog_spec.rb +4 -4
  104. data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +18 -2
  105. data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +1 -1
  106. data/spec/alexandria/ui/error_dialog_spec.rb +13 -2
  107. data/spec/alexandria/ui/export_dialog_spec.rb +3 -3
  108. data/spec/alexandria/ui/iconview_spec.rb +1 -1
  109. data/spec/alexandria/ui/import_dialog_spec.rb +3 -3
  110. data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +1 -1
  111. data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +4 -4
  112. data/spec/alexandria/ui/new_book_dialog_spec.rb +2 -2
  113. data/spec/alexandria/ui/new_provider_dialog_spec.rb +3 -3
  114. data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +9 -7
  115. data/spec/alexandria/ui/preferences_dialog_spec.rb +1 -1
  116. data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +2 -2
  117. data/spec/alexandria/ui/really_delete_dialog_spec.rb +1 -1
  118. data/spec/alexandria/ui/sidepane_manager_spec.rb +1 -1
  119. data/spec/alexandria/ui/skip_entry_dialog_spec.rb +18 -2
  120. data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +2 -2
  121. data/spec/alexandria/ui/ui_manager_spec.rb +83 -5
  122. data/spec/data/libraries/0.6.2/My Library/9780571147168.yaml +2 -0
  123. data/spec/spec_helper.rb +23 -32
  124. data/util/rake/fileinstall.rb +12 -12
  125. data/util/rake/gettextgenerate.rb +1 -1
  126. data/util/rake/omfgenerate.rb +1 -1
  127. metadata +73 -58
  128. data/lib/alexandria/book_providers/adlibris.rb +0 -191
  129. data/lib/alexandria/book_providers/amazon_aws.rb +0 -239
  130. data/lib/alexandria/book_providers/amazon_ecs_util.rb +0 -373
  131. data/lib/alexandria/book_providers/barnes_and_noble.rb +0 -209
  132. data/lib/alexandria/book_providers/proxis.rb +0 -176
  133. data/lib/alexandria/book_providers/siciliano.rb +0 -256
  134. data/lib/alexandria/book_providers/z3950.rb +0 -408
data/po/nl.po CHANGED
@@ -6,7 +6,7 @@ msgid ""
6
6
  msgstr ""
7
7
  "Project-Id-Version: alexandria 0.6.6\n"
8
8
  "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2020-09-13 11:53+0200\n"
9
+ "POT-Creation-Date: 2020-12-26 12:17+0100\n"
10
10
  "PO-Revision-Date: 2020-09-13 11:55+0200\n"
11
11
  "Last-Translator: L.C. Karssen <lennart@karssen.org>\n"
12
12
  "Language-Team: Dutch\n"
@@ -21,16 +21,15 @@ msgstr ""
21
21
  msgid "A program to help you manage your book collection."
22
22
  msgstr "Een programma dat u helpt om uw boekcollectie bij te houden."
23
23
 
24
- #: ../lib/alexandria/book_providers.rb:91
24
+ #: ../lib/alexandria/book_providers.rb:95
25
25
  msgid "Couldn't reach the provider '%s': timeout expired."
26
26
  msgstr "Kon bronbibliotheek '%s' niet bereiken: timeout verlopen."
27
27
 
28
- #: ../lib/alexandria/book_providers.rb:95
28
+ #: ../lib/alexandria/book_providers.rb:99
29
29
  msgid "Couldn't reach the provider '%s': socket error (%s)."
30
30
  msgstr "Kon bronbibliotheek '%s' niet bereiken: socket fout (%s)."
31
31
 
32
- #: ../lib/alexandria/book_providers.rb:99
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,58 +37,18 @@ msgstr ""
38
37
  "Geen resultaten gevonden. Zorg ervoor dat de zoekcriteria correct gespeld "
39
38
  "zijn en probeer het nogmaals."
40
39
 
41
- #: ../lib/alexandria/book_providers.rb:109
40
+ #: ../lib/alexandria/book_providers.rb:108
42
41
  msgid "Too many results for that search."
43
42
  msgstr "Teveel resultaten voor deze zoekopdracht."
44
43
 
45
- #: ../lib/alexandria/book_providers.rb:112
44
+ #: ../lib/alexandria/book_providers.rb:111
46
45
  msgid "Invalid search type."
47
46
  msgstr "Ongeldig zoektype."
48
47
 
49
- #: ../lib/alexandria/book_providers.rb:206
48
+ #: ../lib/alexandria/book_providers.rb:205
50
49
  msgid "Enabled"
51
50
  msgstr "Geactiveerd"
52
51
 
53
- #: ../lib/alexandria/book_providers/adlibris.rb:111
54
- msgid "title not found on page"
55
- msgstr "titel niet gevonden op de pagina"
56
-
57
- #: ../lib/alexandria/book_providers/amazon_aws.rb:26
58
- msgid "Locale"
59
- msgstr "Taal"
60
-
61
- #: ../lib/alexandria/book_providers/amazon_aws.rb:27
62
- msgid "Access key ID"
63
- msgstr "Toegangssleutel ID"
64
-
65
- #: ../lib/alexandria/book_providers/amazon_aws.rb:28
66
- msgid "Secret access key"
67
- msgstr "Geheime toegangssleutel"
68
-
69
- #: ../lib/alexandria/book_providers/amazon_aws.rb:29
70
- msgid "Associate Tag"
71
- msgstr "Geassocieerd ID"
72
-
73
- #: ../lib/alexandria/book_providers/amazon_aws.rb:59
74
- msgid "Provide secret key for your Amazon AWS account."
75
- msgstr "Stel een sleutel in voor uw Amazon AWS account."
76
-
77
- #: ../lib/alexandria/book_providers/amazon_aws.rb:149
78
- msgid "No products"
79
- msgstr "Geen producten"
80
-
81
- #: ../lib/alexandria/book_providers/amazon_ecs_util.rb:102
82
- msgid "HTTP Response: %<code>s %<message>s"
83
- msgstr ""
84
-
85
- #: ../lib/alexandria/book_providers/amazon_ecs_util.rb:170
86
- msgid "Invalid country '%<country>s'"
87
- msgstr "Ongeldig land '%<country>s'"
88
-
89
- #: ../lib/alexandria/book_providers/barnes_and_noble.rb:59
90
- msgid "HTTP redirect too deep"
91
- msgstr ""
92
-
93
52
  #: ../lib/alexandria/book_providers/z3950.rb:22
94
53
  msgid "Hostname"
95
54
  msgstr "Servernaam"
@@ -126,7 +85,7 @@ msgstr "Library of Congress, V.S."
126
85
  msgid "British Library"
127
86
  msgstr "British Library"
128
87
 
129
- #: ../lib/alexandria/book_providers/z3950.rb:376
88
+ #: ../lib/alexandria/book_providers/z3950.rb:374
130
89
  msgid "Invalid ISBN"
131
90
  msgstr "Ongeldig ISBN"
132
91
 
@@ -202,11 +161,11 @@ msgstr ""
202
161
  msgid "%<file>s pub year is not okay"
203
162
  msgstr ""
204
163
 
205
- #: ../lib/alexandria/models/library.rb:40
164
+ #: ../lib/alexandria/models/library.rb:42
206
165
  msgid "Untitled"
207
166
  msgstr "Naamloos"
208
167
 
209
- #: ../lib/alexandria/models/library.rb:288
168
+ #: ../lib/alexandria/models/library.rb:284
210
169
  msgid "Book %<isbn>s was already deleted"
211
170
  msgstr "Boek %<isbn>s is al verwijderd"
212
171
 
@@ -369,52 +328,52 @@ msgstr "komt niet in de laatste"
369
328
  msgid "invalid operand klass %<klass>s"
370
329
  msgstr ""
371
330
 
372
- #: ../lib/alexandria/ui/acquire_dialog.rb:202
331
+ #: ../lib/alexandria/ui/acquire_dialog.rb:206
373
332
  msgid "There was %d duplicate"
374
333
  msgid_plural "There were %d duplicates"
375
334
  msgstr[0] "Er was %d duplikaat"
376
335
  msgstr[1] "Er waren %d duplikaten"
377
336
 
378
- #: ../lib/alexandria/ui/acquire_dialog.rb:205
337
+ #: ../lib/alexandria/ui/acquire_dialog.rb:209
379
338
  msgid "Couldn't add this book"
380
339
  msgid_plural "Couldn't add these books"
381
340
  msgstr[0] "Kon het boek niet toevoegen"
382
341
  msgstr[1] "Kon deze boeken niet toevoegen"
383
342
 
384
- #: ../lib/alexandria/ui/acquire_dialog.rb:284
385
- #: ../lib/alexandria/ui/new_book_dialog.rb:500
343
+ #: ../lib/alexandria/ui/acquire_dialog.rb:288
344
+ #: ../lib/alexandria/ui/new_book_dialog.rb:498
386
345
  msgid "Searching Provider '%s'..."
387
346
  msgstr "Zoeken bij bronbibliotheek '%s'..."
388
347
 
389
- #: ../lib/alexandria/ui/acquire_dialog.rb:285
390
- #: ../lib/alexandria/ui/new_book_dialog.rb:501
348
+ #: ../lib/alexandria/ui/acquire_dialog.rb:289
349
+ #: ../lib/alexandria/ui/new_book_dialog.rb:499
391
350
  msgid "Error while Searching Provider '%s'"
392
351
  msgstr "Fout tijdens het zoeken bij bronbibliotheek '%s'"
393
352
 
394
- #: ../lib/alexandria/ui/acquire_dialog.rb:286
395
- #: ../lib/alexandria/ui/new_book_dialog.rb:502
353
+ #: ../lib/alexandria/ui/acquire_dialog.rb:290
354
+ #: ../lib/alexandria/ui/new_book_dialog.rb:500
396
355
  msgid "Not Found at Provider '%s'"
397
356
  msgstr "Niet gevonden bij bronbibliotheek '%s'"
398
357
 
399
- #: ../lib/alexandria/ui/acquire_dialog.rb:287
400
- #: ../lib/alexandria/ui/new_book_dialog.rb:503
358
+ #: ../lib/alexandria/ui/acquire_dialog.rb:291
359
+ #: ../lib/alexandria/ui/new_book_dialog.rb:501
401
360
  msgid "Found at Provider '%s'"
402
361
  msgstr "Gevonden bij bronbibliotheek '%s'"
403
362
 
404
- #: ../lib/alexandria/ui/acquire_dialog.rb:406
363
+ #: ../lib/alexandria/ui/acquire_dialog.rb:403
405
364
  msgid "Ready to use %s barcode scanner"
406
365
  msgstr "Klaar om de streepjescodescanner '%s' te gebruiken"
407
366
 
408
- #: ../lib/alexandria/ui/acquire_dialog.rb:430
367
+ #: ../lib/alexandria/ui/acquire_dialog.rb:427
409
368
  msgid "Click below to scan _barcodes"
410
369
  msgstr "Klik hieronder om _streepjescodes te scannen"
411
370
 
412
- #: ../lib/alexandria/ui/book_properties_dialog.rb:112
413
- #: ../lib/alexandria/ui/book_properties_dialog.rb:122
371
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:111
372
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:121
414
373
  msgid "Couldn't modify the book"
415
374
  msgstr "Kon het boek niet aanpassen"
416
375
 
417
- #: ../lib/alexandria/ui/book_properties_dialog.rb:113
376
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:112
418
377
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:74
419
378
  msgid ""
420
379
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
@@ -423,39 +382,39 @@ msgstr ""
423
382
  "Kon het EAN/ISBN dat u invoerde niet valideren. Kijk of het correct "
424
383
  "geschreven is en probeer het nogmaals."
425
384
 
426
- #: ../lib/alexandria/ui/book_properties_dialog.rb:123
385
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:122
427
386
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:79
428
387
  msgid "The EAN/ISBN you provided is already used in this library."
429
388
  msgstr "Het EAN/ISBN dat u invoerde wordt al gebruikt in deze bibliotheek."
430
389
 
431
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:206
390
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:104
432
391
  msgid "Properties"
433
392
  msgstr "Eigenschappen"
434
393
 
435
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:208
394
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:106
436
395
  #: ../lib/alexandria/ui/smart_library_properties_dialog.rb:21
437
396
  msgid "Properties for '%s'"
438
397
  msgstr "Eigenschappen voor %s"
439
398
 
440
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:214
399
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:112
441
400
  msgid "Author"
442
401
  msgstr "Auteur"
443
402
 
444
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:263
403
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:160
445
404
  msgid "Select a cover image"
446
405
  msgstr "Selecteer een afbeelding voor de voorkant"
447
406
 
448
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:267
407
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:163
449
408
  msgid "No Cover"
450
409
  msgstr "Geen kaft"
451
410
 
452
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:346
411
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:242
453
412
  msgid "%d day"
454
413
  msgid_plural "%d days"
455
414
  msgstr[0] "%d dag"
456
415
  msgstr[1] "%d dagen"
457
416
 
458
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:372
417
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:268
459
418
  msgid "out of range"
460
419
  msgstr "buiten bereik"
461
420
 
@@ -770,31 +729,31 @@ msgstr "Over_slaan"
770
729
  msgid "If you replace the existing book, its contents will be overwritten."
771
730
  msgstr "Als u het bestaande boek vervangt zal de inhoud overschreven worden."
772
731
 
773
- #: ../lib/alexandria/ui/export_dialog.rb:22
732
+ #: ../lib/alexandria/ui/export_dialog.rb:24
774
733
  msgid "Export '%s'"
775
734
  msgstr "Export '%s'"
776
735
 
777
- #: ../lib/alexandria/ui/export_dialog.rb:27
736
+ #: ../lib/alexandria/ui/export_dialog.rb:29
778
737
  msgid "_Export"
779
738
  msgstr "_Exporteren"
780
739
 
781
- #: ../lib/alexandria/ui/export_dialog.rb:48
740
+ #: ../lib/alexandria/ui/export_dialog.rb:50
782
741
  msgid "_Theme:"
783
742
  msgstr "_Thema:"
784
743
 
785
- #: ../lib/alexandria/ui/export_dialog.rb:60
744
+ #: ../lib/alexandria/ui/export_dialog.rb:62
786
745
  msgid "directory"
787
746
  msgstr "map"
788
747
 
789
- #: ../lib/alexandria/ui/export_dialog.rb:72
748
+ #: ../lib/alexandria/ui/export_dialog.rb:74
790
749
  msgid "Export for_mat:"
791
750
  msgstr "Export for_maat:"
792
751
 
793
- #: ../lib/alexandria/ui/export_dialog.rb:99
752
+ #: ../lib/alexandria/ui/export_dialog.rb:101
794
753
  msgid "Export failed"
795
754
  msgstr "Het exporteren is mislukt"
796
755
 
797
- #: ../lib/alexandria/ui/export_dialog.rb:122
756
+ #: ../lib/alexandria/ui/export_dialog.rb:125
798
757
  msgid ""
799
758
  "The target, named '%s', is a regular file. A directory is needed for this "
800
759
  "operation. Please select a directory and try again."
@@ -802,7 +761,7 @@ msgstr ""
802
761
  "Het doel, genaamd '%s', is een bestand. Voor deze bewerking is een map "
803
762
  "nodig. Gelieve een map te selecteren en opnieuw te proberen."
804
763
 
805
- #: ../lib/alexandria/ui/export_dialog.rb:126
764
+ #: ../lib/alexandria/ui/export_dialog.rb:129
806
765
  msgid "Not a directory"
807
766
  msgstr "Geen map"
808
767
 
@@ -826,11 +785,11 @@ msgstr ""
826
785
  "Het bestandsformaat is onbekend. Gelieve opnieuw te proberen met een ander "
827
786
  "bestand."
828
787
 
829
- #: ../lib/alexandria/ui/init.rb:69
788
+ #: ../lib/alexandria/ui/init.rb:70
830
789
  msgid "Unable to launch the help browser"
831
790
  msgstr "Kon de helpbrowser niet starten"
832
791
 
833
- #: ../lib/alexandria/ui/init.rb:70
792
+ #: ../lib/alexandria/ui/init.rb:71
834
793
  msgid ""
835
794
  "Could not display help for Alexandria. There was an error launching the "
836
795
  "system help browser."
@@ -864,27 +823,27 @@ msgstr "Nieuwe bibliotheek"
864
823
  msgid "Loaned To"
865
824
  msgstr "Uitgeleend aan"
866
825
 
867
- #: ../lib/alexandria/ui/new_book_dialog.rb:153
826
+ #: ../lib/alexandria/ui/new_book_dialog.rb:155
868
827
  msgid "A problem occurred while downloading images"
869
828
  msgstr "Er is een probleem opgetreden bij het downloaden van de afbeeldingen"
870
829
 
871
- #: ../lib/alexandria/ui/new_book_dialog.rb:193
830
+ #: ../lib/alexandria/ui/new_book_dialog.rb:194
872
831
  msgid "Iter is invalid! %s"
873
832
  msgstr ""
874
833
 
875
- #: ../lib/alexandria/ui/new_book_dialog.rb:267
834
+ #: ../lib/alexandria/ui/new_book_dialog.rb:266
876
835
  msgid "Unable to find matches for your search"
877
836
  msgstr "Kon geen resultaten vinden voor uw zoekcriteria"
878
837
 
879
- #: ../lib/alexandria/ui/new_book_dialog.rb:303
838
+ #: ../lib/alexandria/ui/new_book_dialog.rb:302
880
839
  msgid "%s, by %s"
881
840
  msgstr "%s, door %s"
882
841
 
883
- #: ../lib/alexandria/ui/new_book_dialog.rb:309
842
+ #: ../lib/alexandria/ui/new_book_dialog.rb:308
884
843
  msgid "Copying %s into tree view."
885
844
  msgstr ""
886
845
 
887
- #: ../lib/alexandria/ui/new_book_dialog.rb:337
846
+ #: ../lib/alexandria/ui/new_book_dialog.rb:336
888
847
  msgid ""
889
848
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
890
849
  "correctly, and try again."
@@ -892,12 +851,12 @@ msgstr ""
892
851
  "Kon het EAN/ISBN dat u invoerde niet valideren. Controleer of het goed "
893
852
  "geschreven is en probeer het nogmaals."
894
853
 
895
- #: ../lib/alexandria/ui/new_book_dialog.rb:466
854
+ #: ../lib/alexandria/ui/new_book_dialog.rb:464
896
855
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:119
897
856
  msgid "Couldn't add the book"
898
857
  msgstr "Kon het boek niet toevoegen"
899
858
 
900
- #: ../lib/alexandria/ui/new_book_dialog.rb:572
859
+ #: ../lib/alexandria/ui/new_book_dialog.rb:570
901
860
  msgid "'%s' already exists in '%s' (titled '%s')."
902
861
  msgstr "'%s' bestaat al in '%s' (getiteld '%s')."
903
862
 
@@ -1022,15 +981,15 @@ msgstr "Fout tijdens het importeren"
1022
981
  msgid "_Continue"
1023
982
  msgstr "_Doorgaan"
1024
983
 
1025
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:96
984
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:97
1026
985
  msgid "Empty or conflictive condition"
1027
986
  msgstr "Lege of conflicterende voorwaarde"
1028
987
 
1029
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:99
988
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
1030
989
  msgid "_Save However"
1031
990
  msgstr "Toch _opslaan"
1032
991
 
1033
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
992
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:101
1034
993
  msgid ""
1035
994
  "This smart library contains one or more conditions which are empty or "
1036
995
  "conflict with each other. This is likely to result in never matching a book. "
@@ -1040,115 +999,115 @@ msgstr ""
1040
999
  "voorwaarden. Er zal waarschijnlijk nooit een boek aan voldoen. Weet u zeker "
1041
1000
  "dat u deze bibliotheek op wilt slaan?"
1042
1001
 
1043
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:117
1002
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:118
1044
1003
  msgid "Match"
1045
1004
  msgstr "Voldoet aan"
1046
1005
 
1047
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
1006
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
1048
1007
  msgid "all"
1049
1008
  msgstr "alle"
1050
1009
 
1051
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
1010
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
1052
1011
  msgid "any"
1053
1012
  msgstr "een"
1054
1013
 
1055
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:130
1014
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:131
1056
1015
  msgid "of the following rules:"
1057
1016
  msgstr "van de volgende regels:"
1058
1017
 
1059
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:138
1018
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:139
1060
1019
  msgid "Match the following rule:"
1061
1020
  msgstr "Voldoen aan de volgende regel:"
1062
1021
 
1063
- #: ../lib/alexandria/ui/ui_manager.rb:130
1022
+ #: ../lib/alexandria/ui/ui_manager.rb:132
1064
1023
  msgid "Type here the search criterion"
1065
1024
  msgstr "Voer hier het zoekcriterium in"
1066
1025
 
1067
- #: ../lib/alexandria/ui/ui_manager.rb:141
1026
+ #: ../lib/alexandria/ui/ui_manager.rb:143
1068
1027
  msgid "Match everything"
1069
1028
  msgstr "Toon alles"
1070
1029
 
1071
- #: ../lib/alexandria/ui/ui_manager.rb:143
1030
+ #: ../lib/alexandria/ui/ui_manager.rb:145
1072
1031
  msgid "Title contains"
1073
1032
  msgstr "Titel bevat"
1074
1033
 
1075
- #: ../lib/alexandria/ui/ui_manager.rb:144
1034
+ #: ../lib/alexandria/ui/ui_manager.rb:146
1076
1035
  msgid "Authors contain"
1077
1036
  msgstr "Auteurs bevat"
1078
1037
 
1079
- #: ../lib/alexandria/ui/ui_manager.rb:145
1038
+ #: ../lib/alexandria/ui/ui_manager.rb:147
1080
1039
  msgid "ISBN contains"
1081
1040
  msgstr "ISBN bevat"
1082
1041
 
1083
- #: ../lib/alexandria/ui/ui_manager.rb:146
1042
+ #: ../lib/alexandria/ui/ui_manager.rb:148
1084
1043
  msgid "Publisher contains"
1085
1044
  msgstr "Uitgever bevat"
1086
1045
 
1087
- #: ../lib/alexandria/ui/ui_manager.rb:147
1046
+ #: ../lib/alexandria/ui/ui_manager.rb:149
1088
1047
  msgid "Notes contain"
1089
1048
  msgstr "Notities bevat"
1090
1049
 
1091
- #: ../lib/alexandria/ui/ui_manager.rb:148
1050
+ #: ../lib/alexandria/ui/ui_manager.rb:150
1092
1051
  msgid "Tags contain"
1093
1052
  msgstr "Trefwoorden bevat"
1094
1053
 
1095
- #: ../lib/alexandria/ui/ui_manager.rb:162
1054
+ #: ../lib/alexandria/ui/ui_manager.rb:164
1096
1055
  msgid "Change the search type"
1097
1056
  msgstr "Wijzig het zoektype"
1098
1057
 
1099
- #: ../lib/alexandria/ui/ui_manager.rb:167
1058
+ #: ../lib/alexandria/ui/ui_manager.rb:169
1100
1059
  msgid "View as Icons"
1101
1060
  msgstr "Toon als iconen"
1102
1061
 
1103
- #: ../lib/alexandria/ui/ui_manager.rb:168
1062
+ #: ../lib/alexandria/ui/ui_manager.rb:170
1104
1063
  msgid "View as List"
1105
1064
  msgstr "Toon als lijst"
1106
1065
 
1107
- #: ../lib/alexandria/ui/ui_manager.rb:181
1066
+ #: ../lib/alexandria/ui/ui_manager.rb:184
1108
1067
  msgid "Choose how to show books"
1109
1068
  msgstr "Bepaal hoe de boeken getoond moeten worden"
1110
1069
 
1111
- #: ../lib/alexandria/ui/ui_manager.rb:400
1070
+ #: ../lib/alexandria/ui/ui_manager.rb:407
1112
1071
  msgid "Library '%s' selected"
1113
1072
  msgstr "Bibliotheek '%s' is geselecteerd"
1114
1073
 
1115
- #: ../lib/alexandria/ui/ui_manager.rb:405
1074
+ #: ../lib/alexandria/ui/ui_manager.rb:412
1116
1075
  msgid "Library '%s' selected, %d unrated book"
1117
1076
  msgid_plural "Library '%s' selected, %d unrated books"
1118
1077
  msgstr[0] "Bibliotheek '%s' geselecteerd. %d ongewaardeerd boek"
1119
1078
  msgstr[1] "Bibliotheek '%s' geselecteerd. %d ongewaardeerde boeken"
1120
1079
 
1121
- #: ../lib/alexandria/ui/ui_manager.rb:409
1080
+ #: ../lib/alexandria/ui/ui_manager.rb:416
1122
1081
  msgid "Library '%s' selected, %d book"
1123
1082
  msgid_plural "Library '%s' selected, %d books"
1124
1083
  msgstr[0] "Bibliotheek '%s' geselecteerd, %d boek"
1125
1084
  msgstr[1] "Bibliotheek '%s' geselecteerd, %d boeken"
1126
1085
 
1127
- #: ../lib/alexandria/ui/ui_manager.rb:413
1086
+ #: ../lib/alexandria/ui/ui_manager.rb:420
1128
1087
  msgid "Library '%s' selected, %d book, %d unrated"
1129
1088
  msgid_plural "Library '%s' selected, %d books, %d unrated"
1130
1089
  msgstr[0] "Bibliotheek '%s' geselecteerd, %d boek, %d zonder waardering"
1131
1090
  msgstr[1] "Bibliotheek '%s' geselecteerd, %d boeken, %d zonder waardering"
1132
1091
 
1133
- #: ../lib/alexandria/ui/ui_manager.rb:427
1092
+ #: ../lib/alexandria/ui/ui_manager.rb:434
1134
1093
  msgid "'%s' selected"
1135
1094
  msgstr "'%s' geselecteerd"
1136
1095
 
1137
- #: ../lib/alexandria/ui/ui_manager.rb:429
1096
+ #: ../lib/alexandria/ui/ui_manager.rb:436
1138
1097
  msgid "%d book selected"
1139
1098
  msgid_plural "%d books selected"
1140
1099
  msgstr[0] "%d boek geselecteerd"
1141
1100
  msgstr[1] "%d boeken geselecteerd"
1142
1101
 
1143
- #: ../lib/alexandria/ui/ui_manager.rb:545
1102
+ #: ../lib/alexandria/ui/ui_manager.rb:552
1144
1103
  msgid "unrecognized update event"
1145
1104
  msgstr ""
1146
1105
 
1147
- #: ../lib/alexandria/ui/ui_manager.rb:590
1106
+ #: ../lib/alexandria/ui/ui_manager.rb:597
1148
1107
  msgid "Loading libraries..."
1149
1108
  msgstr "Bibliotheken worden geladen..."
1150
1109
 
1151
- #: ../lib/alexandria/ui/ui_manager.rb:607
1110
+ #: ../lib/alexandria/ui/ui_manager.rb:614
1152
1111
  msgid ""
1153
1112
  "The data files for the following books are malformed or empty. Do you wish "
1154
1113
  "to attempt to download new information for them from the online book "
@@ -1157,15 +1116,15 @@ msgstr ""
1157
1116
  "De gegevensbestanden voor de volgende boeken zijn corrupt of leeg. Wilt u "
1158
1117
  "proberen om de informatie voor deze boeken opnieuw te downloaden?\n"
1159
1118
 
1160
- #: ../lib/alexandria/ui/ui_manager.rb:659
1119
+ #: ../lib/alexandria/ui/ui_manager.rb:666
1161
1120
  msgid "Added '%s' to library '%s'"
1162
1121
  msgstr "'%s' toegevoegd aan bibliotheek '%s'"
1163
1122
 
1164
- #: ../lib/alexandria/ui/ui_manager.rb:808
1123
+ #: ../lib/alexandria/ui/ui_manager.rb:815
1165
1124
  msgid "Loading '%s'..."
1166
1125
  msgstr "'%s' wordt geladen..."
1167
1126
 
1168
- #: ../lib/alexandria/ui/ui_manager.rb:1038
1127
+ #: ../lib/alexandria/ui/ui_manager.rb:1045
1169
1128
  msgid "In '_%s'"
1170
1129
  msgstr "Naar '_%s'"
1171
1130
 
@@ -1407,6 +1366,30 @@ msgstr "Boekcollectiebeheerder"
1407
1366
  msgid "Manage your book collection"
1408
1367
  msgstr "Beheer uw boekcollectie"
1409
1368
 
1369
+ #~ msgid "Locale"
1370
+ #~ msgstr "Taal"
1371
+
1372
+ #~ msgid "Access key ID"
1373
+ #~ msgstr "Toegangssleutel ID"
1374
+
1375
+ #~ msgid "Secret access key"
1376
+ #~ msgstr "Geheime toegangssleutel"
1377
+
1378
+ #~ msgid "Associate Tag"
1379
+ #~ msgstr "Geassocieerd ID"
1380
+
1381
+ #~ msgid "Provide secret key for your Amazon AWS account."
1382
+ #~ msgstr "Stel een sleutel in voor uw Amazon AWS account."
1383
+
1384
+ #~ msgid "No products"
1385
+ #~ msgstr "Geen producten"
1386
+
1387
+ #~ msgid "Invalid country '%<country>s'"
1388
+ #~ msgstr "Ongeldig land '%<country>s'"
1389
+
1390
+ #~ msgid "title not found on page"
1391
+ #~ msgstr "titel niet gevonden op de pagina"
1392
+
1410
1393
  #~ msgid "Unable to launch the web browser"
1411
1394
  #~ msgstr "Kon geen webbrowser starten"
1412
1395