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/pl.po CHANGED
@@ -8,7 +8,7 @@ msgid ""
8
8
  msgstr ""
9
9
  "Project-Id-Version: alexandria\n"
10
10
  "Report-Msgid-Bugs-To: \n"
11
- "POT-Creation-Date: 2020-09-13 14:52+0200\n"
11
+ "POT-Creation-Date: 2020-12-26 12:17+0100\n"
12
12
  "PO-Revision-Date: 2020-11-01 14:20+0100\n"
13
13
  "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
14
14
  "Language-Team: Polish <pl@li.org>\n"
@@ -23,16 +23,15 @@ msgstr ""
23
23
  msgid "A program to help you manage your book collection."
24
24
  msgstr "Program pomagający zarządzać domową biblioteką."
25
25
 
26
- #: ../lib/alexandria/book_providers.rb:91
26
+ #: ../lib/alexandria/book_providers.rb:95
27
27
  msgid "Couldn't reach the provider '%s': timeout expired."
28
28
  msgstr "Nie można połączyć się z dostawcą „%s”: wygasł czas oczekiwania."
29
29
 
30
- #: ../lib/alexandria/book_providers.rb:95
30
+ #: ../lib/alexandria/book_providers.rb:99
31
31
  msgid "Couldn't reach the provider '%s': socket error (%s)."
32
32
  msgstr "Nie można połączyć się z dostawcą „%s”: błąd gniazda (%s)."
33
33
 
34
- #: ../lib/alexandria/book_providers.rb:99
35
- #: ../lib/alexandria/book_providers.rb:104
34
+ #: ../lib/alexandria/book_providers.rb:103
36
35
  msgid ""
37
36
  "No results were found. Make sure your search criterion is spelled "
38
37
  "correctly, and try again."
@@ -40,58 +39,18 @@ msgstr ""
40
39
  "Nie odnaleziono żadnych wyników. Proszę się upewnić, że kryteria "
41
40
  "wyszukiwania nie zawierają żadnych literówek i spróbować ponownie."
42
41
 
43
- #: ../lib/alexandria/book_providers.rb:109
42
+ #: ../lib/alexandria/book_providers.rb:108
44
43
  msgid "Too many results for that search."
45
44
  msgstr "Za dużo wyników wyszukiwania."
46
45
 
47
- #: ../lib/alexandria/book_providers.rb:112
46
+ #: ../lib/alexandria/book_providers.rb:111
48
47
  msgid "Invalid search type."
49
48
  msgstr "Nieprawidłowy typ wyszukiwania."
50
49
 
51
- #: ../lib/alexandria/book_providers.rb:206
50
+ #: ../lib/alexandria/book_providers.rb:205
52
51
  msgid "Enabled"
53
52
  msgstr "Włączone"
54
53
 
55
- #: ../lib/alexandria/book_providers/adlibris.rb:111
56
- msgid "title not found on page"
57
- msgstr "na stronie nie odnaleziono tytułu"
58
-
59
- #: ../lib/alexandria/book_providers/amazon_aws.rb:26
60
- msgid "Locale"
61
- msgstr "Lokalizacja"
62
-
63
- #: ../lib/alexandria/book_providers/amazon_aws.rb:27
64
- msgid "Access key ID"
65
- msgstr "Identyfikator klucza dostępu"
66
-
67
- #: ../lib/alexandria/book_providers/amazon_aws.rb:28
68
- msgid "Secret access key"
69
- msgstr "Tajny klucz dostępu"
70
-
71
- #: ../lib/alexandria/book_providers/amazon_aws.rb:29
72
- msgid "Associate Tag"
73
- msgstr "Etykieta partnera"
74
-
75
- #: ../lib/alexandria/book_providers/amazon_aws.rb:59
76
- msgid "Provide secret key for your Amazon AWS account."
77
- msgstr "Proszę podać tajny klucz dla konta Amazon AWS."
78
-
79
- #: ../lib/alexandria/book_providers/amazon_aws.rb:149
80
- msgid "No products"
81
- msgstr "Brak produktów"
82
-
83
- #: ../lib/alexandria/book_providers/amazon_ecs_util.rb:102
84
- msgid "HTTP Response: %<code>s %<message>s"
85
- msgstr "Odpowiedź HTTP: %<code>s %<message>s"
86
-
87
- #: ../lib/alexandria/book_providers/amazon_ecs_util.rb:170
88
- msgid "Invalid country '%<country>s'"
89
- msgstr "Nieprawidłowy kraj „%<country>s”"
90
-
91
- #: ../lib/alexandria/book_providers/barnes_and_noble.rb:59
92
- msgid "HTTP redirect too deep"
93
- msgstr "Przekierowanie HTTP jest za głębokie"
94
-
95
54
  #: ../lib/alexandria/book_providers/z3950.rb:22
96
55
  msgid "Hostname"
97
56
  msgstr "Nazwa komputera"
@@ -128,7 +87,7 @@ msgstr "Biblioteka Kongresu (USA)"
128
87
  msgid "British Library"
129
88
  msgstr "Biblioteka Brytyjska"
130
89
 
131
- #: ../lib/alexandria/book_providers/z3950.rb:376
90
+ #: ../lib/alexandria/book_providers/z3950.rb:374
132
91
  msgid "Invalid ISBN"
133
92
  msgstr "Nieprawidłowy numer ISBN"
134
93
 
@@ -204,11 +163,11 @@ msgstr "Wersja %<file>s nie jest poprawna"
204
163
  msgid "%<file>s pub year is not okay"
205
164
  msgstr "Rok publikacji %<file>s nie jest poprawny"
206
165
 
207
- #: ../lib/alexandria/models/library.rb:40
166
+ #: ../lib/alexandria/models/library.rb:42
208
167
  msgid "Untitled"
209
168
  msgstr "Brak tytułu"
210
169
 
211
- #: ../lib/alexandria/models/library.rb:288
170
+ #: ../lib/alexandria/models/library.rb:284
212
171
  msgid "Book %<isbn>s was already deleted"
213
172
  msgstr "Książka %<isbn>s została już usunięta"
214
173
 
@@ -371,54 +330,54 @@ msgstr "nie jest ostatnie"
371
330
  msgid "invalid operand klass %<klass>s"
372
331
  msgstr "nieprawidłowa klasa argumentu %<klass>s"
373
332
 
374
- #: ../lib/alexandria/ui/acquire_dialog.rb:202
333
+ #: ../lib/alexandria/ui/acquire_dialog.rb:206
375
334
  msgid "There was %d duplicate"
376
335
  msgid_plural "There were %d duplicates"
377
336
  msgstr[0] "Jest %d duplikat"
378
337
  msgstr[1] "Są %d duplikaty"
379
338
  msgstr[2] "Jest %d duplikatów"
380
339
 
381
- #: ../lib/alexandria/ui/acquire_dialog.rb:205
340
+ #: ../lib/alexandria/ui/acquire_dialog.rb:209
382
341
  msgid "Couldn't add this book"
383
342
  msgid_plural "Couldn't add these books"
384
343
  msgstr[0] "Nie można dodać tej książki"
385
344
  msgstr[1] "Nie można dodać tych książek"
386
345
  msgstr[2] "Nie można dodać tych książek"
387
346
 
388
- #: ../lib/alexandria/ui/acquire_dialog.rb:284
389
- #: ../lib/alexandria/ui/new_book_dialog.rb:500
347
+ #: ../lib/alexandria/ui/acquire_dialog.rb:288
348
+ #: ../lib/alexandria/ui/new_book_dialog.rb:498
390
349
  msgid "Searching Provider '%s'..."
391
350
  msgstr "Wyszukiwanie dostawcy „%s”…"
392
351
 
393
- #: ../lib/alexandria/ui/acquire_dialog.rb:285
394
- #: ../lib/alexandria/ui/new_book_dialog.rb:501
352
+ #: ../lib/alexandria/ui/acquire_dialog.rb:289
353
+ #: ../lib/alexandria/ui/new_book_dialog.rb:499
395
354
  msgid "Error while Searching Provider '%s'"
396
355
  msgstr "Błąd podczas wyszukiwania dostawcy „%s”"
397
356
 
398
- #: ../lib/alexandria/ui/acquire_dialog.rb:286
399
- #: ../lib/alexandria/ui/new_book_dialog.rb:502
357
+ #: ../lib/alexandria/ui/acquire_dialog.rb:290
358
+ #: ../lib/alexandria/ui/new_book_dialog.rb:500
400
359
  msgid "Not Found at Provider '%s'"
401
360
  msgstr "Nie odnaleziono u dostawcy „%s”"
402
361
 
403
- #: ../lib/alexandria/ui/acquire_dialog.rb:287
404
- #: ../lib/alexandria/ui/new_book_dialog.rb:503
362
+ #: ../lib/alexandria/ui/acquire_dialog.rb:291
363
+ #: ../lib/alexandria/ui/new_book_dialog.rb:501
405
364
  msgid "Found at Provider '%s'"
406
365
  msgstr "Odnaleziono u dostawcy „%s”"
407
366
 
408
- #: ../lib/alexandria/ui/acquire_dialog.rb:406
367
+ #: ../lib/alexandria/ui/acquire_dialog.rb:403
409
368
  msgid "Ready to use %s barcode scanner"
410
369
  msgstr "Skaner kodów kreskowych %s jest gotowy do użycia"
411
370
 
412
- #: ../lib/alexandria/ui/acquire_dialog.rb:430
371
+ #: ../lib/alexandria/ui/acquire_dialog.rb:427
413
372
  msgid "Click below to scan _barcodes"
414
373
  msgstr "Proszę kliknąć poniżej, aby skanować _kody kreskowe"
415
374
 
416
- #: ../lib/alexandria/ui/book_properties_dialog.rb:112
417
- #: ../lib/alexandria/ui/book_properties_dialog.rb:122
375
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:111
376
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:121
418
377
  msgid "Couldn't modify the book"
419
378
  msgstr "Nie można zmodyfikować książki"
420
379
 
421
- #: ../lib/alexandria/ui/book_properties_dialog.rb:113
380
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:112
422
381
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:74
423
382
  msgid ""
424
383
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
@@ -427,40 +386,40 @@ msgstr ""
427
386
  "Nie można sprawdzić poprawności podanego numeru EAN/ISBN. Proszę się "
428
387
  "upewnić, że numer został poprawnie wpisany i spróbować ponownie."
429
388
 
430
- #: ../lib/alexandria/ui/book_properties_dialog.rb:123
389
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:122
431
390
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:79
432
391
  msgid "The EAN/ISBN you provided is already used in this library."
433
392
  msgstr "Podany numer EAN/ISBN jest już użyty w tej bibliotece."
434
393
 
435
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:206
394
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:104
436
395
  msgid "Properties"
437
396
  msgstr "Właściwości"
438
397
 
439
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:208
398
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:106
440
399
  #: ../lib/alexandria/ui/smart_library_properties_dialog.rb:21
441
400
  msgid "Properties for '%s'"
442
401
  msgstr "Właściwości „%s”"
443
402
 
444
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:214
403
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:112
445
404
  msgid "Author"
446
405
  msgstr "Autor"
447
406
 
448
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:263
407
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:160
449
408
  msgid "Select a cover image"
450
409
  msgstr "Wybór okładki"
451
410
 
452
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:267
411
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:163
453
412
  msgid "No Cover"
454
413
  msgstr "Brak okładki"
455
414
 
456
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:346
415
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:242
457
416
  msgid "%d day"
458
417
  msgid_plural "%d days"
459
418
  msgstr[0] "%d dzień"
460
419
  msgstr[1] "%d dni"
461
420
  msgstr[2] "%d dni"
462
421
 
463
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:372
422
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:268
464
423
  msgid "out of range"
465
424
  msgstr "poza zakresem"
466
425
 
@@ -774,31 +733,31 @@ msgstr ""
774
733
  "Jeśli istniejąca książka zostanie zastąpiona, jej zawartość zostanie "
775
734
  "nadpisana."
776
735
 
777
- #: ../lib/alexandria/ui/export_dialog.rb:22
736
+ #: ../lib/alexandria/ui/export_dialog.rb:24
778
737
  msgid "Export '%s'"
779
738
  msgstr "Eksport „%s”"
780
739
 
781
- #: ../lib/alexandria/ui/export_dialog.rb:27
740
+ #: ../lib/alexandria/ui/export_dialog.rb:29
782
741
  msgid "_Export"
783
742
  msgstr "Wy_eksportuj"
784
743
 
785
- #: ../lib/alexandria/ui/export_dialog.rb:48
744
+ #: ../lib/alexandria/ui/export_dialog.rb:50
786
745
  msgid "_Theme:"
787
746
  msgstr "M_otyw:"
788
747
 
789
- #: ../lib/alexandria/ui/export_dialog.rb:60
748
+ #: ../lib/alexandria/ui/export_dialog.rb:62
790
749
  msgid "directory"
791
750
  msgstr "katalog"
792
751
 
793
- #: ../lib/alexandria/ui/export_dialog.rb:72
752
+ #: ../lib/alexandria/ui/export_dialog.rb:74
794
753
  msgid "Export for_mat:"
795
754
  msgstr "For_mat eksportu:"
796
755
 
797
- #: ../lib/alexandria/ui/export_dialog.rb:99
756
+ #: ../lib/alexandria/ui/export_dialog.rb:101
798
757
  msgid "Export failed"
799
758
  msgstr "Eksport się nie powiódł"
800
759
 
801
- #: ../lib/alexandria/ui/export_dialog.rb:122
760
+ #: ../lib/alexandria/ui/export_dialog.rb:125
802
761
  msgid ""
803
762
  "The target, named '%s', is a regular file. A directory is needed for this "
804
763
  "operation. Please select a directory and try again."
@@ -806,7 +765,7 @@ msgstr ""
806
765
  "Docelowy plik „%s” jest zwykłym plikiem. Do tego działania wymagany jest "
807
766
  "katalog. Proszę go wybrać i spróbować ponownie."
808
767
 
809
- #: ../lib/alexandria/ui/export_dialog.rb:126
768
+ #: ../lib/alexandria/ui/export_dialog.rb:129
810
769
  msgid "Not a directory"
811
770
  msgstr "Nie jest katalogiem"
812
771
 
@@ -829,11 +788,11 @@ msgid ""
829
788
  msgstr ""
830
789
  "Nieznany format podanego pliku. Proszę spróbować ponownie z innym plikiem."
831
790
 
832
- #: ../lib/alexandria/ui/init.rb:69
791
+ #: ../lib/alexandria/ui/init.rb:70
833
792
  msgid "Unable to launch the help browser"
834
793
  msgstr "Nie można uruchomić przeglądarki pomocy"
835
794
 
836
- #: ../lib/alexandria/ui/init.rb:70
795
+ #: ../lib/alexandria/ui/init.rb:71
837
796
  msgid ""
838
797
  "Could not display help for Alexandria. There was an error launching the "
839
798
  "system help browser."
@@ -867,27 +826,27 @@ msgstr "Nowa biblioteka"
867
826
  msgid "Loaned To"
868
827
  msgstr "Wypożyczona"
869
828
 
870
- #: ../lib/alexandria/ui/new_book_dialog.rb:153
829
+ #: ../lib/alexandria/ui/new_book_dialog.rb:155
871
830
  msgid "A problem occurred while downloading images"
872
831
  msgstr "Wystąpił problem podczas pobierania obrazów"
873
832
 
874
- #: ../lib/alexandria/ui/new_book_dialog.rb:193
833
+ #: ../lib/alexandria/ui/new_book_dialog.rb:194
875
834
  msgid "Iter is invalid! %s"
876
835
  msgstr "Iter jest nieprawidłowe. %s"
877
836
 
878
- #: ../lib/alexandria/ui/new_book_dialog.rb:267
837
+ #: ../lib/alexandria/ui/new_book_dialog.rb:266
879
838
  msgid "Unable to find matches for your search"
880
839
  msgstr "Nie można odnaleźć wyników odpowiadających kryteriom"
881
840
 
882
- #: ../lib/alexandria/ui/new_book_dialog.rb:303
841
+ #: ../lib/alexandria/ui/new_book_dialog.rb:302
883
842
  msgid "%s, by %s"
884
843
  msgstr "%s, przez %s"
885
844
 
886
- #: ../lib/alexandria/ui/new_book_dialog.rb:309
845
+ #: ../lib/alexandria/ui/new_book_dialog.rb:308
887
846
  msgid "Copying %s into tree view."
888
847
  msgstr "Kopiowanie %s do widoku drzewa."
889
848
 
890
- #: ../lib/alexandria/ui/new_book_dialog.rb:337
849
+ #: ../lib/alexandria/ui/new_book_dialog.rb:336
891
850
  msgid ""
892
851
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
893
852
  "correctly, and try again."
@@ -895,12 +854,12 @@ msgstr ""
895
854
  "Nie można sprawdzić poprawności podanego numeru EAN/ISBN. Proszę się "
896
855
  "upewnić, że numer został poprawnie wpisany i spróbować ponownie."
897
856
 
898
- #: ../lib/alexandria/ui/new_book_dialog.rb:466
857
+ #: ../lib/alexandria/ui/new_book_dialog.rb:464
899
858
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:119
900
859
  msgid "Couldn't add the book"
901
860
  msgstr "Nie można dodać książki"
902
861
 
903
- #: ../lib/alexandria/ui/new_book_dialog.rb:572
862
+ #: ../lib/alexandria/ui/new_book_dialog.rb:570
904
863
  msgid "'%s' already exists in '%s' (titled '%s')."
905
864
  msgstr "„%s” już istnieje w „%s” (o tytule „%s”)."
906
865
 
@@ -1024,15 +983,15 @@ msgstr "Błąd podczas importowania"
1024
983
  msgid "_Continue"
1025
984
  msgstr "_Kontynuuj"
1026
985
 
1027
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:96
986
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:97
1028
987
  msgid "Empty or conflictive condition"
1029
988
  msgstr "Pusty lub sprzeczny warunek"
1030
989
 
1031
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:99
990
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
1032
991
  msgid "_Save However"
1033
992
  msgstr "Zapi_sz mimo to"
1034
993
 
1035
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
994
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:101
1036
995
  msgid ""
1037
996
  "This smart library contains one or more conditions which are empty or "
1038
997
  "conflict with each other. This is likely to result in never matching a book. "
@@ -1042,119 +1001,119 @@ msgstr ""
1042
1001
  "lub są ze sobą sprzeczne. Prawdopodobnie z tego powodu żadna książka nie "
1043
1002
  "będzie pasowała. Na pewno zapisać tę bibliotekę?"
1044
1003
 
1045
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:117
1004
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:118
1046
1005
  msgid "Match"
1047
1006
  msgstr "Dopasowanie"
1048
1007
 
1049
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
1008
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
1050
1009
  msgid "all"
1051
1010
  msgstr "wszystkie"
1052
1011
 
1053
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
1012
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
1054
1013
  msgid "any"
1055
1014
  msgstr "dowolne"
1056
1015
 
1057
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:130
1016
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:131
1058
1017
  msgid "of the following rules:"
1059
1018
  msgstr "jedna z tych reguł:"
1060
1019
 
1061
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:138
1020
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:139
1062
1021
  msgid "Match the following rule:"
1063
1022
  msgstr "Dopasowanie do tej reguły:"
1064
1023
 
1065
- #: ../lib/alexandria/ui/ui_manager.rb:130
1024
+ #: ../lib/alexandria/ui/ui_manager.rb:132
1066
1025
  msgid "Type here the search criterion"
1067
1026
  msgstr "Miejsce na wpisanie kryteriów wyszukiwania"
1068
1027
 
1069
- #: ../lib/alexandria/ui/ui_manager.rb:141
1028
+ #: ../lib/alexandria/ui/ui_manager.rb:143
1070
1029
  msgid "Match everything"
1071
1030
  msgstr "Wyszukiwanie we wszystkim"
1072
1031
 
1073
- #: ../lib/alexandria/ui/ui_manager.rb:143
1032
+ #: ../lib/alexandria/ui/ui_manager.rb:145
1074
1033
  msgid "Title contains"
1075
1034
  msgstr "Tytuł zawiera"
1076
1035
 
1077
- #: ../lib/alexandria/ui/ui_manager.rb:144
1036
+ #: ../lib/alexandria/ui/ui_manager.rb:146
1078
1037
  msgid "Authors contain"
1079
1038
  msgstr "Autorzy zawierają"
1080
1039
 
1081
- #: ../lib/alexandria/ui/ui_manager.rb:145
1040
+ #: ../lib/alexandria/ui/ui_manager.rb:147
1082
1041
  msgid "ISBN contains"
1083
1042
  msgstr "ISBN zawiera"
1084
1043
 
1085
- #: ../lib/alexandria/ui/ui_manager.rb:146
1044
+ #: ../lib/alexandria/ui/ui_manager.rb:148
1086
1045
  msgid "Publisher contains"
1087
1046
  msgstr "Wydawca zawiera"
1088
1047
 
1089
- #: ../lib/alexandria/ui/ui_manager.rb:147
1048
+ #: ../lib/alexandria/ui/ui_manager.rb:149
1090
1049
  msgid "Notes contain"
1091
1050
  msgstr "Notatki zawierają"
1092
1051
 
1093
- #: ../lib/alexandria/ui/ui_manager.rb:148
1052
+ #: ../lib/alexandria/ui/ui_manager.rb:150
1094
1053
  msgid "Tags contain"
1095
1054
  msgstr "Etykiety zawierają"
1096
1055
 
1097
- #: ../lib/alexandria/ui/ui_manager.rb:162
1056
+ #: ../lib/alexandria/ui/ui_manager.rb:164
1098
1057
  msgid "Change the search type"
1099
1058
  msgstr "Zmienia typ wyszukiwania"
1100
1059
 
1101
- #: ../lib/alexandria/ui/ui_manager.rb:167
1060
+ #: ../lib/alexandria/ui/ui_manager.rb:169
1102
1061
  msgid "View as Icons"
1103
1062
  msgstr "Widok ikon"
1104
1063
 
1105
- #: ../lib/alexandria/ui/ui_manager.rb:168
1064
+ #: ../lib/alexandria/ui/ui_manager.rb:170
1106
1065
  msgid "View as List"
1107
1066
  msgstr "Widok listy"
1108
1067
 
1109
- #: ../lib/alexandria/ui/ui_manager.rb:181
1068
+ #: ../lib/alexandria/ui/ui_manager.rb:184
1110
1069
  msgid "Choose how to show books"
1111
1070
  msgstr "Wybiera, jak wyświetlać książki"
1112
1071
 
1113
- #: ../lib/alexandria/ui/ui_manager.rb:400
1072
+ #: ../lib/alexandria/ui/ui_manager.rb:407
1114
1073
  msgid "Library '%s' selected"
1115
1074
  msgstr "Wybrano bibliotekę „%s”"
1116
1075
 
1117
- #: ../lib/alexandria/ui/ui_manager.rb:405
1076
+ #: ../lib/alexandria/ui/ui_manager.rb:412
1118
1077
  msgid "Library '%s' selected, %d unrated book"
1119
1078
  msgid_plural "Library '%s' selected, %d unrated books"
1120
1079
  msgstr[0] "Wybrano bibliotekę „%s”, %d książka nie ma oceny"
1121
1080
  msgstr[1] "Wybrano bibliotekę „%s”, %d książki nie mają oceny"
1122
1081
  msgstr[2] "Wybrano bibliotekę „%s”, %d książek nie ma oceny"
1123
1082
 
1124
- #: ../lib/alexandria/ui/ui_manager.rb:409
1083
+ #: ../lib/alexandria/ui/ui_manager.rb:416
1125
1084
  msgid "Library '%s' selected, %d book"
1126
1085
  msgid_plural "Library '%s' selected, %d books"
1127
1086
  msgstr[0] "Wybrano bibliotekę „%s”, %d książka"
1128
1087
  msgstr[1] "Wybrano bibliotekę „%s”, %d książki"
1129
1088
  msgstr[2] "Wybrano bibliotekę „%s”, %d książek"
1130
1089
 
1131
- #: ../lib/alexandria/ui/ui_manager.rb:413
1090
+ #: ../lib/alexandria/ui/ui_manager.rb:420
1132
1091
  msgid "Library '%s' selected, %d book, %d unrated"
1133
1092
  msgid_plural "Library '%s' selected, %d books, %d unrated"
1134
1093
  msgstr[0] "Wybrano bibliotekę „%s”, %d książka, %d książka nie ma oceny"
1135
1094
  msgstr[1] "Wybrano bibliotekę „%s”, %d książki, %d nie mają oceny"
1136
1095
  msgstr[2] "Wybrano bibliotekę „%s”, %d książek, %d nie ma oceny"
1137
1096
 
1138
- #: ../lib/alexandria/ui/ui_manager.rb:427
1097
+ #: ../lib/alexandria/ui/ui_manager.rb:434
1139
1098
  msgid "'%s' selected"
1140
1099
  msgstr "Zaznaczono „%s”"
1141
1100
 
1142
- #: ../lib/alexandria/ui/ui_manager.rb:429
1101
+ #: ../lib/alexandria/ui/ui_manager.rb:436
1143
1102
  msgid "%d book selected"
1144
1103
  msgid_plural "%d books selected"
1145
1104
  msgstr[0] "Zaznaczono %d książkę"
1146
1105
  msgstr[1] "Zaznaczono %d książki"
1147
1106
  msgstr[2] "Zaznaczono %d książek"
1148
1107
 
1149
- #: ../lib/alexandria/ui/ui_manager.rb:545
1108
+ #: ../lib/alexandria/ui/ui_manager.rb:552
1150
1109
  msgid "unrecognized update event"
1151
1110
  msgstr "nierozpoznane zdarzenie aktualizacji"
1152
1111
 
1153
- #: ../lib/alexandria/ui/ui_manager.rb:590
1112
+ #: ../lib/alexandria/ui/ui_manager.rb:597
1154
1113
  msgid "Loading libraries..."
1155
1114
  msgstr "Wczytywanie bibliotek…"
1156
1115
 
1157
- #: ../lib/alexandria/ui/ui_manager.rb:607
1116
+ #: ../lib/alexandria/ui/ui_manager.rb:614
1158
1117
  msgid ""
1159
1118
  "The data files for the following books are malformed or empty. Do you wish "
1160
1119
  "to attempt to download new information for them from the online book "
@@ -1163,15 +1122,15 @@ msgstr ""
1163
1122
  "Pliki danych poniższych książek są błędnie sformatowane lub puste. Spróbować "
1164
1123
  "pobrać dla nich nowe informacje u dostawców książek z Internetu?\n"
1165
1124
 
1166
- #: ../lib/alexandria/ui/ui_manager.rb:659
1125
+ #: ../lib/alexandria/ui/ui_manager.rb:666
1167
1126
  msgid "Added '%s' to library '%s'"
1168
1127
  msgstr "Dodano „%s” do biblioteki „%s”"
1169
1128
 
1170
- #: ../lib/alexandria/ui/ui_manager.rb:808
1129
+ #: ../lib/alexandria/ui/ui_manager.rb:815
1171
1130
  msgid "Loading '%s'..."
1172
1131
  msgstr "Wczytywanie „%s”…"
1173
1132
 
1174
- #: ../lib/alexandria/ui/ui_manager.rb:1038
1133
+ #: ../lib/alexandria/ui/ui_manager.rb:1045
1175
1134
  msgid "In '_%s'"
1176
1135
  msgstr "W „_%s”"
1177
1136
 
@@ -1414,3 +1373,33 @@ msgstr "Menedżer domowej biblioteki"
1414
1373
  #: ../alexandria.desktop.in.h:3
1415
1374
  msgid "Manage your book collection"
1416
1375
  msgstr "Zarządzanie domową biblioteką"
1376
+
1377
+ #~ msgid "Locale"
1378
+ #~ msgstr "Lokalizacja"
1379
+
1380
+ #~ msgid "Access key ID"
1381
+ #~ msgstr "Identyfikator klucza dostępu"
1382
+
1383
+ #~ msgid "Secret access key"
1384
+ #~ msgstr "Tajny klucz dostępu"
1385
+
1386
+ #~ msgid "Associate Tag"
1387
+ #~ msgstr "Etykieta partnera"
1388
+
1389
+ #~ msgid "Provide secret key for your Amazon AWS account."
1390
+ #~ msgstr "Proszę podać tajny klucz dla konta Amazon AWS."
1391
+
1392
+ #~ msgid "No products"
1393
+ #~ msgstr "Brak produktów"
1394
+
1395
+ #~ msgid "HTTP Response: %<code>s %<message>s"
1396
+ #~ msgstr "Odpowiedź HTTP: %<code>s %<message>s"
1397
+
1398
+ #~ msgid "Invalid country '%<country>s'"
1399
+ #~ msgstr "Nieprawidłowy kraj „%<country>s”"
1400
+
1401
+ #~ msgid "HTTP redirect too deep"
1402
+ #~ msgstr "Przekierowanie HTTP jest za głębokie"
1403
+
1404
+ #~ msgid "title not found on page"
1405
+ #~ msgstr "na stronie nie odnaleziono tytułu"