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/nb.po CHANGED
@@ -6,7 +6,7 @@ msgid ""
6
6
  msgstr ""
7
7
  "Project-Id-Version: alexandria 0.6.3\n"
8
8
  "Report-Msgid-Bugs-To: \n"
9
- "POT-Creation-Date: 2020-09-13 14:52+0200\n"
9
+ "POT-Creation-Date: 2020-12-26 12:17+0100\n"
10
10
  "PO-Revision-Date: 2008-02-27 21:35+0100\n"
11
11
  "Last-Translator: Jack Myrseh <jack@enkom.no>\n"
12
12
  "Language-Team: Norwegian\n"
@@ -20,17 +20,16 @@ msgstr ""
20
20
  msgid "A program to help you manage your book collection."
21
21
  msgstr "Ett program for å ordne boksamlinger"
22
22
 
23
- #: ../lib/alexandria/book_providers.rb:91
23
+ #: ../lib/alexandria/book_providers.rb:95
24
24
  msgid "Couldn't reach the provider '%s': timeout expired."
25
25
  msgstr ""
26
26
  "Oppnådde ikke kontakt med tilbyder \"%s\": overskred tidsbegrensningen."
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 "Oppnådde ikke kontakt med tilbyder \"%s\": (socket error) (%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,59 +37,18 @@ msgstr ""
38
37
  "Ingen resultat funnet, Sjekk at søkekriteriet er skrevet korrekt, og forsøk "
39
38
  "igjen."
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 "Søket ga for mange treff."
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 "Ugyldig søkemetode."
48
47
 
49
- #: ../lib/alexandria/book_providers.rb:206
48
+ #: ../lib/alexandria/book_providers.rb:205
50
49
  msgid "Enabled"
51
50
  msgstr ""
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 "Lokal språkinnstilling"
60
-
61
- #: ../lib/alexandria/book_providers/amazon_aws.rb:27
62
- msgid "Access key ID"
63
- msgstr ""
64
-
65
- #: ../lib/alexandria/book_providers/amazon_aws.rb:28
66
- msgid "Secret access key"
67
- msgstr ""
68
-
69
- #: ../lib/alexandria/book_providers/amazon_aws.rb:29
70
- #, fuzzy
71
- msgid "Associate Tag"
72
- msgstr "Assosiert 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 "Vertsnavn"
@@ -127,7 +85,7 @@ msgstr "Library of Congress (USA)"
127
85
  msgid "British Library"
128
86
  msgstr "British Library"
129
87
 
130
- #: ../lib/alexandria/book_providers/z3950.rb:376
88
+ #: ../lib/alexandria/book_providers/z3950.rb:374
131
89
  #, fuzzy
132
90
  msgid "Invalid ISBN"
133
91
  msgstr "Ugyldig 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:40
165
+ #: ../lib/alexandria/models/library.rb:42
208
166
  msgid "Untitled"
209
167
  msgstr "Uten tittel"
210
168
 
211
- #: ../lib/alexandria/models/library.rb:288
169
+ #: ../lib/alexandria/models/library.rb:284
212
170
  msgid "Book %<isbn>s was already deleted"
213
171
  msgstr ""
214
172
 
@@ -371,53 +329,53 @@ msgstr "er ikke i siste"
371
329
  msgid "invalid operand klass %<klass>s"
372
330
  msgstr ""
373
331
 
374
- #: ../lib/alexandria/ui/acquire_dialog.rb:202
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] ""
378
336
  msgstr[1] ""
379
337
 
380
- #: ../lib/alexandria/ui/acquire_dialog.rb:205
338
+ #: ../lib/alexandria/ui/acquire_dialog.rb:209
381
339
  #, fuzzy
382
340
  msgid "Couldn't add this book"
383
341
  msgid_plural "Couldn't add these books"
384
342
  msgstr[0] "Kunne ikke legge til boken"
385
343
  msgstr[1] "Kunne ikke legge til boken"
386
344
 
387
- #: ../lib/alexandria/ui/acquire_dialog.rb:284
388
- #: ../lib/alexandria/ui/new_book_dialog.rb:500
345
+ #: ../lib/alexandria/ui/acquire_dialog.rb:288
346
+ #: ../lib/alexandria/ui/new_book_dialog.rb:498
389
347
  msgid "Searching Provider '%s'..."
390
348
  msgstr ""
391
349
 
392
- #: ../lib/alexandria/ui/acquire_dialog.rb:285
393
- #: ../lib/alexandria/ui/new_book_dialog.rb:501
350
+ #: ../lib/alexandria/ui/acquire_dialog.rb:289
351
+ #: ../lib/alexandria/ui/new_book_dialog.rb:499
394
352
  msgid "Error while Searching Provider '%s'"
395
353
  msgstr ""
396
354
 
397
- #: ../lib/alexandria/ui/acquire_dialog.rb:286
398
- #: ../lib/alexandria/ui/new_book_dialog.rb:502
355
+ #: ../lib/alexandria/ui/acquire_dialog.rb:290
356
+ #: ../lib/alexandria/ui/new_book_dialog.rb:500
399
357
  msgid "Not Found at Provider '%s'"
400
358
  msgstr ""
401
359
 
402
- #: ../lib/alexandria/ui/acquire_dialog.rb:287
403
- #: ../lib/alexandria/ui/new_book_dialog.rb:503
360
+ #: ../lib/alexandria/ui/acquire_dialog.rb:291
361
+ #: ../lib/alexandria/ui/new_book_dialog.rb:501
404
362
  msgid "Found at Provider '%s'"
405
363
  msgstr ""
406
364
 
407
- #: ../lib/alexandria/ui/acquire_dialog.rb:406
365
+ #: ../lib/alexandria/ui/acquire_dialog.rb:403
408
366
  msgid "Ready to use %s barcode scanner"
409
367
  msgstr ""
410
368
 
411
- #: ../lib/alexandria/ui/acquire_dialog.rb:430
369
+ #: ../lib/alexandria/ui/acquire_dialog.rb:427
412
370
  msgid "Click below to scan _barcodes"
413
371
  msgstr "Klikk nedenunder for å skanne strekkoder"
414
372
 
415
- #: ../lib/alexandria/ui/book_properties_dialog.rb:112
416
- #: ../lib/alexandria/ui/book_properties_dialog.rb:122
373
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:111
374
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:121
417
375
  msgid "Couldn't modify the book"
418
376
  msgstr "Kunne ikke endre boken"
419
377
 
420
- #: ../lib/alexandria/ui/book_properties_dialog.rb:113
378
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:112
421
379
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:74
422
380
  msgid ""
423
381
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
@@ -426,39 +384,39 @@ msgstr ""
426
384
  "Kunde ikke bekrefte det EAN/ISBN du anga. Kontroller at det er korrekt "
427
385
  "angitt og forsøk igjen"
428
386
 
429
- #: ../lib/alexandria/ui/book_properties_dialog.rb:123
387
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:122
430
388
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:79
431
389
  msgid "The EAN/ISBN you provided is already used in this library."
432
390
  msgstr "Det EAN/ISBN du anga finnes allerede i dette biblioteket."
433
391
 
434
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:206
392
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:104
435
393
  msgid "Properties"
436
394
  msgstr "Egenskaper"
437
395
 
438
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:208
396
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:106
439
397
  #: ../lib/alexandria/ui/smart_library_properties_dialog.rb:21
440
398
  msgid "Properties for '%s'"
441
399
  msgstr "Innstillinger for '%s'"
442
400
 
443
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:214
401
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:112
444
402
  msgid "Author"
445
403
  msgstr "Forfatter"
446
404
 
447
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:263
405
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:160
448
406
  msgid "Select a cover image"
449
407
  msgstr "Velg et omslagsbilde"
450
408
 
451
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:267
409
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:163
452
410
  msgid "No Cover"
453
411
  msgstr "Ikke noe omslag"
454
412
 
455
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:346
413
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:242
456
414
  msgid "%d day"
457
415
  msgid_plural "%d days"
458
416
  msgstr[0] "%d dag"
459
417
  msgstr[1] "%d dager"
460
418
 
461
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:372
419
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:268
462
420
  msgid "out of range"
463
421
  msgstr ""
464
422
 
@@ -774,31 +732,31 @@ msgstr ""
774
732
  "Om du erstatter den eksisterende boken, kommer innholdet til å bli "
775
733
  "overskrevet."
776
734
 
777
- #: ../lib/alexandria/ui/export_dialog.rb:22
735
+ #: ../lib/alexandria/ui/export_dialog.rb:24
778
736
  msgid "Export '%s'"
779
737
  msgstr "Eksporter \"%s\""
780
738
 
781
- #: ../lib/alexandria/ui/export_dialog.rb:27
739
+ #: ../lib/alexandria/ui/export_dialog.rb:29
782
740
  msgid "_Export"
783
741
  msgstr "_Eksporter"
784
742
 
785
- #: ../lib/alexandria/ui/export_dialog.rb:48
743
+ #: ../lib/alexandria/ui/export_dialog.rb:50
786
744
  msgid "_Theme:"
787
745
  msgstr "_Tema:"
788
746
 
789
- #: ../lib/alexandria/ui/export_dialog.rb:60
747
+ #: ../lib/alexandria/ui/export_dialog.rb:62
790
748
  msgid "directory"
791
749
  msgstr "katalog"
792
750
 
793
- #: ../lib/alexandria/ui/export_dialog.rb:72
751
+ #: ../lib/alexandria/ui/export_dialog.rb:74
794
752
  msgid "Export for_mat:"
795
753
  msgstr "Eksportfor_mat:"
796
754
 
797
- #: ../lib/alexandria/ui/export_dialog.rb:99
755
+ #: ../lib/alexandria/ui/export_dialog.rb:101
798
756
  msgid "Export failed"
799
757
  msgstr "Eksporten mislyktes"
800
758
 
801
- #: ../lib/alexandria/ui/export_dialog.rb:122
759
+ #: ../lib/alexandria/ui/export_dialog.rb:125
802
760
  msgid ""
803
761
  "The target, named '%s', is a regular file. A directory is needed for this "
804
762
  "operation. Please select a directory and try again."
@@ -806,7 +764,7 @@ msgstr ""
806
764
  "Målfilen, med navnet \"%s\", er en vanlig fil. En katalog er nødvendig for "
807
765
  "denne operasjonen. Vennligst velg en katalog og forsøk igjen."
808
766
 
809
- #: ../lib/alexandria/ui/export_dialog.rb:126
767
+ #: ../lib/alexandria/ui/export_dialog.rb:129
810
768
  msgid "Not a directory"
811
769
  msgstr "Ikke en katalog"
812
770
 
@@ -830,11 +788,11 @@ msgstr ""
830
788
  "Formatet på filen du brukte er ukjent. Vennligst forsøk igjen med en annen "
831
789
  "fil."
832
790
 
833
- #: ../lib/alexandria/ui/init.rb:69
791
+ #: ../lib/alexandria/ui/init.rb:70
834
792
  msgid "Unable to launch the help browser"
835
793
  msgstr "Kunne ikke åpne hjelpeteksten"
836
794
 
837
- #: ../lib/alexandria/ui/init.rb:70
795
+ #: ../lib/alexandria/ui/init.rb:71
838
796
  msgid ""
839
797
  "Could not display help for Alexandria. There was an error launching the "
840
798
  "system help browser."
@@ -870,27 +828,27 @@ msgstr "Nytt bibliotek"
870
828
  msgid "Loaned To"
871
829
  msgstr "Utlånt"
872
830
 
873
- #: ../lib/alexandria/ui/new_book_dialog.rb:153
831
+ #: ../lib/alexandria/ui/new_book_dialog.rb:155
874
832
  msgid "A problem occurred while downloading images"
875
833
  msgstr "Det oppsto et problem ved nedlastingen av bilder"
876
834
 
877
- #: ../lib/alexandria/ui/new_book_dialog.rb:193
835
+ #: ../lib/alexandria/ui/new_book_dialog.rb:194
878
836
  msgid "Iter is invalid! %s"
879
837
  msgstr ""
880
838
 
881
- #: ../lib/alexandria/ui/new_book_dialog.rb:267
839
+ #: ../lib/alexandria/ui/new_book_dialog.rb:266
882
840
  msgid "Unable to find matches for your search"
883
841
  msgstr "Søket ga ingen treff"
884
842
 
885
- #: ../lib/alexandria/ui/new_book_dialog.rb:303
843
+ #: ../lib/alexandria/ui/new_book_dialog.rb:302
886
844
  msgid "%s, by %s"
887
845
  msgstr "%s, av %s"
888
846
 
889
- #: ../lib/alexandria/ui/new_book_dialog.rb:309
847
+ #: ../lib/alexandria/ui/new_book_dialog.rb:308
890
848
  msgid "Copying %s into tree view."
891
849
  msgstr ""
892
850
 
893
- #: ../lib/alexandria/ui/new_book_dialog.rb:337
851
+ #: ../lib/alexandria/ui/new_book_dialog.rb:336
894
852
  msgid ""
895
853
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
896
854
  "correctly, and try again."
@@ -898,12 +856,12 @@ msgstr ""
898
856
  "Kunne ikke bekrefte det EAN/ISBN du anga. Kontroller at det er angitt riktig "
899
857
  "og forsøk igjen."
900
858
 
901
- #: ../lib/alexandria/ui/new_book_dialog.rb:466
859
+ #: ../lib/alexandria/ui/new_book_dialog.rb:464
902
860
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:119
903
861
  msgid "Couldn't add the book"
904
862
  msgstr "Kunne ikke legge til boken"
905
863
 
906
- #: ../lib/alexandria/ui/new_book_dialog.rb:572
864
+ #: ../lib/alexandria/ui/new_book_dialog.rb:570
907
865
  msgid "'%s' already exists in '%s' (titled '%s')."
908
866
  msgstr "\"%s\" eksisterer allerede i \"%s\" (med tittel \"%s\")."
909
867
 
@@ -1031,15 +989,15 @@ msgstr "Feil under import"
1031
989
  msgid "_Continue"
1032
990
  msgstr "Fortsett"
1033
991
 
1034
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:96
992
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:97
1035
993
  msgid "Empty or conflictive condition"
1036
994
  msgstr "Tom eller selvmotsigende betingelse"
1037
995
 
1038
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:99
996
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
1039
997
  msgid "_Save However"
1040
998
  msgstr "_Lagre imidlertid"
1041
999
 
1042
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
1000
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:101
1043
1001
  msgid ""
1044
1002
  "This smart library contains one or more conditions which are empty or "
1045
1003
  "conflict with each other. This is likely to result in never matching a book. "
@@ -1049,116 +1007,116 @@ msgstr ""
1049
1007
  "tomme, eller er i konflikt med hverandre. Sannsynligvis vil dette føre til "
1050
1008
  "at en bok ikke kan gjenfinnes."
1051
1009
 
1052
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:117
1010
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:118
1053
1011
  msgid "Match"
1054
1012
  msgstr "Treff"
1055
1013
 
1056
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
1014
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
1057
1015
  msgid "all"
1058
1016
  msgstr "alle"
1059
1017
 
1060
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
1018
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
1061
1019
  msgid "any"
1062
1020
  msgstr "hvilken som helst"
1063
1021
 
1064
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:130
1022
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:131
1065
1023
  msgid "of the following rules:"
1066
1024
  msgstr "av de følgende reglene:"
1067
1025
 
1068
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:138
1026
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:139
1069
1027
  msgid "Match the following rule:"
1070
1028
  msgstr "Match følgende regel:"
1071
1029
 
1072
- #: ../lib/alexandria/ui/ui_manager.rb:130
1030
+ #: ../lib/alexandria/ui/ui_manager.rb:132
1073
1031
  msgid "Type here the search criterion"
1074
1032
  msgstr "Tast inn søkekriteriet"
1075
1033
 
1076
- #: ../lib/alexandria/ui/ui_manager.rb:141
1034
+ #: ../lib/alexandria/ui/ui_manager.rb:143
1077
1035
  msgid "Match everything"
1078
1036
  msgstr "Match alt."
1079
1037
 
1080
- #: ../lib/alexandria/ui/ui_manager.rb:143
1038
+ #: ../lib/alexandria/ui/ui_manager.rb:145
1081
1039
  msgid "Title contains"
1082
1040
  msgstr "Tittel inneholder"
1083
1041
 
1084
- #: ../lib/alexandria/ui/ui_manager.rb:144
1042
+ #: ../lib/alexandria/ui/ui_manager.rb:146
1085
1043
  msgid "Authors contain"
1086
1044
  msgstr "Forfatter(e) inneholder"
1087
1045
 
1088
- #: ../lib/alexandria/ui/ui_manager.rb:145
1046
+ #: ../lib/alexandria/ui/ui_manager.rb:147
1089
1047
  msgid "ISBN contains"
1090
1048
  msgstr "ISBN inneholder"
1091
1049
 
1092
- #: ../lib/alexandria/ui/ui_manager.rb:146
1050
+ #: ../lib/alexandria/ui/ui_manager.rb:148
1093
1051
  msgid "Publisher contains"
1094
1052
  msgstr "Utgiver inneholder"
1095
1053
 
1096
- #: ../lib/alexandria/ui/ui_manager.rb:147
1054
+ #: ../lib/alexandria/ui/ui_manager.rb:149
1097
1055
  msgid "Notes contain"
1098
1056
  msgstr "Notater inneholder"
1099
1057
 
1100
- #: ../lib/alexandria/ui/ui_manager.rb:148
1058
+ #: ../lib/alexandria/ui/ui_manager.rb:150
1101
1059
  msgid "Tags contain"
1102
1060
  msgstr "Merknader inneholder"
1103
1061
 
1104
- #: ../lib/alexandria/ui/ui_manager.rb:162
1062
+ #: ../lib/alexandria/ui/ui_manager.rb:164
1105
1063
  msgid "Change the search type"
1106
1064
  msgstr "Vennligst endre søkemåten"
1107
1065
 
1108
- #: ../lib/alexandria/ui/ui_manager.rb:167
1066
+ #: ../lib/alexandria/ui/ui_manager.rb:169
1109
1067
  msgid "View as Icons"
1110
1068
  msgstr "Vis som ikoner"
1111
1069
 
1112
- #: ../lib/alexandria/ui/ui_manager.rb:168
1070
+ #: ../lib/alexandria/ui/ui_manager.rb:170
1113
1071
  msgid "View as List"
1114
1072
  msgstr "Vis som liste"
1115
1073
 
1116
- #: ../lib/alexandria/ui/ui_manager.rb:181
1074
+ #: ../lib/alexandria/ui/ui_manager.rb:184
1117
1075
  msgid "Choose how to show books"
1118
1076
  msgstr "Velg hvordan du vil vise bøkene"
1119
1077
 
1120
- #: ../lib/alexandria/ui/ui_manager.rb:400
1078
+ #: ../lib/alexandria/ui/ui_manager.rb:407
1121
1079
  msgid "Library '%s' selected"
1122
1080
  msgstr "Biblioteket \"%s\" valgt"
1123
1081
 
1124
- #: ../lib/alexandria/ui/ui_manager.rb:405
1082
+ #: ../lib/alexandria/ui/ui_manager.rb:412
1125
1083
  msgid "Library '%s' selected, %d unrated book"
1126
1084
  msgid_plural "Library '%s' selected, %d unrated books"
1127
1085
  msgstr[0] "Biblioteket \"%s\" valgt, %d bok uten rating"
1128
1086
  msgstr[1] "Biblioteket \"%s\" valgt, %d bøker uten rating"
1129
1087
 
1130
- #: ../lib/alexandria/ui/ui_manager.rb:409
1088
+ #: ../lib/alexandria/ui/ui_manager.rb:416
1131
1089
  msgid "Library '%s' selected, %d book"
1132
1090
  msgid_plural "Library '%s' selected, %d books"
1133
1091
  msgstr[0] "Biblioteket \"%s\" valgt, %d bok"
1134
1092
  msgstr[1] "Biblioteket \"%s\" valgt, %d bøker"
1135
1093
 
1136
- #: ../lib/alexandria/ui/ui_manager.rb:413
1094
+ #: ../lib/alexandria/ui/ui_manager.rb:420
1137
1095
  msgid "Library '%s' selected, %d book, %d unrated"
1138
1096
  msgid_plural "Library '%s' selected, %d books, %d unrated"
1139
1097
  msgstr[0] "Biblioteket \"%s\" valgt, %d bok, %d uten rating"
1140
1098
  msgstr[1] "Biblioteket \"%s\" valt, %d bøker, %d uten rating"
1141
1099
 
1142
- #: ../lib/alexandria/ui/ui_manager.rb:427
1100
+ #: ../lib/alexandria/ui/ui_manager.rb:434
1143
1101
  msgid "'%s' selected"
1144
1102
  msgstr "\"%s\" valgt"
1145
1103
 
1146
- #: ../lib/alexandria/ui/ui_manager.rb:429
1104
+ #: ../lib/alexandria/ui/ui_manager.rb:436
1147
1105
  msgid "%d book selected"
1148
1106
  msgid_plural "%d books selected"
1149
1107
  msgstr[0] "%d bok valgt"
1150
1108
  msgstr[1] "%d bøker valgt"
1151
1109
 
1152
- #: ../lib/alexandria/ui/ui_manager.rb:545
1110
+ #: ../lib/alexandria/ui/ui_manager.rb:552
1153
1111
  msgid "unrecognized update event"
1154
1112
  msgstr ""
1155
1113
 
1156
- #: ../lib/alexandria/ui/ui_manager.rb:590
1114
+ #: ../lib/alexandria/ui/ui_manager.rb:597
1157
1115
  #, fuzzy
1158
1116
  msgid "Loading libraries..."
1159
1117
  msgstr "Laster \"_%s\""
1160
1118
 
1161
- #: ../lib/alexandria/ui/ui_manager.rb:607
1119
+ #: ../lib/alexandria/ui/ui_manager.rb:614
1162
1120
  msgid ""
1163
1121
  "The data files for the following books are malformed or empty. Do you wish "
1164
1122
  "to attempt to download new information for them from the online book "
@@ -1167,15 +1125,15 @@ msgstr ""
1167
1125
  "Datafilene for de følgende bøkene er ødelagt eller tomme. Ønsker du å laste "
1168
1126
  "ned ny informasjon for dem fra de tilbyderne som er online?\n"
1169
1127
 
1170
- #: ../lib/alexandria/ui/ui_manager.rb:659
1128
+ #: ../lib/alexandria/ui/ui_manager.rb:666
1171
1129
  msgid "Added '%s' to library '%s'"
1172
1130
  msgstr "Lagt '%s' til bibliotek '%s'"
1173
1131
 
1174
- #: ../lib/alexandria/ui/ui_manager.rb:808
1132
+ #: ../lib/alexandria/ui/ui_manager.rb:815
1175
1133
  msgid "Loading '%s'..."
1176
1134
  msgstr "Laster \"_%s\""
1177
1135
 
1178
- #: ../lib/alexandria/ui/ui_manager.rb:1038
1136
+ #: ../lib/alexandria/ui/ui_manager.rb:1045
1179
1137
  msgid "In '_%s'"
1180
1138
  msgstr "I \"_%s\""
1181
1139
 
@@ -1425,6 +1383,13 @@ msgstr "Boksamlingsverktøy"
1425
1383
  msgid "Manage your book collection"
1426
1384
  msgstr "Ordne boksamlingen din"
1427
1385
 
1386
+ #~ msgid "Locale"
1387
+ #~ msgstr "Lokal språkinnstilling"
1388
+
1389
+ #, fuzzy
1390
+ #~ msgid "Associate Tag"
1391
+ #~ msgstr "Assosiert id"
1392
+
1428
1393
  #~ msgid "Unable to launch the web browser"
1429
1394
  #~ msgstr "Kunde ikke starte nettleseren"
1430
1395