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/cs.po CHANGED
@@ -7,7 +7,7 @@ msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: alexandria 0.6.3\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2020-09-13 14:52+0200\n"
10
+ "POT-Creation-Date: 2020-12-26 12:17+0100\n"
11
11
  "PO-Revision-Date: 2008-01-05 21:48+0100\n"
12
12
  "Last-Translator: Petr Vanek <vanous@penguin.cz>\n"
13
13
  "Language-Team: Czech <cs@li.org>\n"
@@ -23,16 +23,15 @@ msgstr ""
23
23
  msgid "A program to help you manage your book collection."
24
24
  msgstr "Program, který vám pomůže spravovat vaši sbírku knih."
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 "Poskytovatel '%s' je nedostupný: čas vypršel."
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 "Poskytovatel '%s' je nedostupný: soketová chyba (%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,59 +39,18 @@ msgstr ""
40
39
  "Žádné výsledky nenalezeny. Zkontrolujte prosím, zda je vaše vyhledávací "
41
40
  "kritérium správně zapsané, a zkuste to znovu."
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 "Hledání vrátilo příliš mnoho výsledků."
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 "Chybný druh hledání."
50
49
 
51
- #: ../lib/alexandria/book_providers.rb:206
50
+ #: ../lib/alexandria/book_providers.rb:205
52
51
  msgid "Enabled"
53
52
  msgstr ""
54
53
 
55
- #: ../lib/alexandria/book_providers/adlibris.rb:111
56
- msgid "title not found on page"
57
- msgstr ""
58
-
59
- #: ../lib/alexandria/book_providers/amazon_aws.rb:26
60
- msgid "Locale"
61
- msgstr "Pobočka"
62
-
63
- #: ../lib/alexandria/book_providers/amazon_aws.rb:27
64
- msgid "Access key ID"
65
- msgstr ""
66
-
67
- #: ../lib/alexandria/book_providers/amazon_aws.rb:28
68
- msgid "Secret access key"
69
- msgstr ""
70
-
71
- #: ../lib/alexandria/book_providers/amazon_aws.rb:29
72
- #, fuzzy
73
- msgid "Associate Tag"
74
- msgstr "Přičleněné ID"
75
-
76
- #: ../lib/alexandria/book_providers/amazon_aws.rb:59
77
- msgid "Provide secret key for your Amazon AWS account."
78
- msgstr ""
79
-
80
- #: ../lib/alexandria/book_providers/amazon_aws.rb:149
81
- msgid "No products"
82
- msgstr ""
83
-
84
- #: ../lib/alexandria/book_providers/amazon_ecs_util.rb:102
85
- msgid "HTTP Response: %<code>s %<message>s"
86
- msgstr ""
87
-
88
- #: ../lib/alexandria/book_providers/amazon_ecs_util.rb:170
89
- msgid "Invalid country '%<country>s'"
90
- msgstr ""
91
-
92
- #: ../lib/alexandria/book_providers/barnes_and_noble.rb:59
93
- msgid "HTTP redirect too deep"
94
- msgstr ""
95
-
96
54
  #: ../lib/alexandria/book_providers/z3950.rb:22
97
55
  msgid "Hostname"
98
56
  msgstr "Jméno počítače"
@@ -129,7 +87,7 @@ msgstr "Kongresová knihovna USA"
129
87
  msgid "British Library"
130
88
  msgstr "British Library"
131
89
 
132
- #: ../lib/alexandria/book_providers/z3950.rb:376
90
+ #: ../lib/alexandria/book_providers/z3950.rb:374
133
91
  #, fuzzy
134
92
  msgid "Invalid ISBN"
135
93
  msgstr "Neplatné ISBN '%s'"
@@ -207,11 +165,11 @@ msgstr ""
207
165
  msgid "%<file>s pub year is not okay"
208
166
  msgstr ""
209
167
 
210
- #: ../lib/alexandria/models/library.rb:40
168
+ #: ../lib/alexandria/models/library.rb:42
211
169
  msgid "Untitled"
212
170
  msgstr "Nepojmenovaná"
213
171
 
214
- #: ../lib/alexandria/models/library.rb:288
172
+ #: ../lib/alexandria/models/library.rb:284
215
173
  msgid "Book %<isbn>s was already deleted"
216
174
  msgstr ""
217
175
 
@@ -383,14 +341,14 @@ msgstr "není v poslední"
383
341
  msgid "invalid operand klass %<klass>s"
384
342
  msgstr ""
385
343
 
386
- #: ../lib/alexandria/ui/acquire_dialog.rb:202
344
+ #: ../lib/alexandria/ui/acquire_dialog.rb:206
387
345
  msgid "There was %d duplicate"
388
346
  msgid_plural "There were %d duplicates"
389
347
  msgstr[0] ""
390
348
  msgstr[1] ""
391
349
  msgstr[2] ""
392
350
 
393
- #: ../lib/alexandria/ui/acquire_dialog.rb:205
351
+ #: ../lib/alexandria/ui/acquire_dialog.rb:209
394
352
  #, fuzzy
395
353
  msgid "Couldn't add this book"
396
354
  msgid_plural "Couldn't add these books"
@@ -398,40 +356,40 @@ msgstr[0] "Knihu nelze přidat"
398
356
  msgstr[1] "Knihu nelze přidat"
399
357
  msgstr[2] "Knihu nelze přidat"
400
358
 
401
- #: ../lib/alexandria/ui/acquire_dialog.rb:284
402
- #: ../lib/alexandria/ui/new_book_dialog.rb:500
359
+ #: ../lib/alexandria/ui/acquire_dialog.rb:288
360
+ #: ../lib/alexandria/ui/new_book_dialog.rb:498
403
361
  msgid "Searching Provider '%s'..."
404
362
  msgstr ""
405
363
 
406
- #: ../lib/alexandria/ui/acquire_dialog.rb:285
407
- #: ../lib/alexandria/ui/new_book_dialog.rb:501
364
+ #: ../lib/alexandria/ui/acquire_dialog.rb:289
365
+ #: ../lib/alexandria/ui/new_book_dialog.rb:499
408
366
  msgid "Error while Searching Provider '%s'"
409
367
  msgstr ""
410
368
 
411
- #: ../lib/alexandria/ui/acquire_dialog.rb:286
412
- #: ../lib/alexandria/ui/new_book_dialog.rb:502
369
+ #: ../lib/alexandria/ui/acquire_dialog.rb:290
370
+ #: ../lib/alexandria/ui/new_book_dialog.rb:500
413
371
  msgid "Not Found at Provider '%s'"
414
372
  msgstr ""
415
373
 
416
- #: ../lib/alexandria/ui/acquire_dialog.rb:287
417
- #: ../lib/alexandria/ui/new_book_dialog.rb:503
374
+ #: ../lib/alexandria/ui/acquire_dialog.rb:291
375
+ #: ../lib/alexandria/ui/new_book_dialog.rb:501
418
376
  msgid "Found at Provider '%s'"
419
377
  msgstr ""
420
378
 
421
- #: ../lib/alexandria/ui/acquire_dialog.rb:406
379
+ #: ../lib/alexandria/ui/acquire_dialog.rb:403
422
380
  msgid "Ready to use %s barcode scanner"
423
381
  msgstr ""
424
382
 
425
- #: ../lib/alexandria/ui/acquire_dialog.rb:430
383
+ #: ../lib/alexandria/ui/acquire_dialog.rb:427
426
384
  msgid "Click below to scan _barcodes"
427
385
  msgstr "Kliněte níže pro naskenování čárových kódů"
428
386
 
429
- #: ../lib/alexandria/ui/book_properties_dialog.rb:112
430
- #: ../lib/alexandria/ui/book_properties_dialog.rb:122
387
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:111
388
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:121
431
389
  msgid "Couldn't modify the book"
432
390
  msgstr "Knihu nelze upravit"
433
391
 
434
- #: ../lib/alexandria/ui/book_properties_dialog.rb:113
392
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:112
435
393
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:74
436
394
  msgid ""
437
395
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
@@ -440,40 +398,40 @@ msgstr ""
440
398
  "Zadané EAN/ISBN je neplatné. Přesvědčte se, zda je napsáno správně a zkuste "
441
399
  "to znovu."
442
400
 
443
- #: ../lib/alexandria/ui/book_properties_dialog.rb:123
401
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:122
444
402
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:79
445
403
  msgid "The EAN/ISBN you provided is already used in this library."
446
404
  msgstr "Zadané EAN/ISBN je již v této knihovně používáno."
447
405
 
448
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:206
406
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:104
449
407
  msgid "Properties"
450
408
  msgstr "_Vlastnosti"
451
409
 
452
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:208
410
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:106
453
411
  #: ../lib/alexandria/ui/smart_library_properties_dialog.rb:21
454
412
  msgid "Properties for '%s'"
455
413
  msgstr "Vlastnosti %s"
456
414
 
457
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:214
415
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:112
458
416
  msgid "Author"
459
417
  msgstr "Autor"
460
418
 
461
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:263
419
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:160
462
420
  msgid "Select a cover image"
463
421
  msgstr "Vybrání obrázku obálky"
464
422
 
465
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:267
423
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:163
466
424
  msgid "No Cover"
467
425
  msgstr "Není obal"
468
426
 
469
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:346
427
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:242
470
428
  msgid "%d day"
471
429
  msgid_plural "%d days"
472
430
  msgstr[0] "%d den"
473
431
  msgstr[1] "%d dny"
474
432
  msgstr[2] "%d dnů"
475
433
 
476
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:372
434
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:268
477
435
  msgid "out of range"
478
436
  msgstr ""
479
437
 
@@ -787,31 +745,31 @@ msgstr "V_ynechat"
787
745
  msgid "If you replace the existing book, its contents will be overwritten."
788
746
  msgstr "Jestliže nahradíte existující knihu, její obsah bude přepsán."
789
747
 
790
- #: ../lib/alexandria/ui/export_dialog.rb:22
748
+ #: ../lib/alexandria/ui/export_dialog.rb:24
791
749
  msgid "Export '%s'"
792
750
  msgstr "Exportovat '%s'"
793
751
 
794
- #: ../lib/alexandria/ui/export_dialog.rb:27
752
+ #: ../lib/alexandria/ui/export_dialog.rb:29
795
753
  msgid "_Export"
796
754
  msgstr "_Exportovat"
797
755
 
798
- #: ../lib/alexandria/ui/export_dialog.rb:48
756
+ #: ../lib/alexandria/ui/export_dialog.rb:50
799
757
  msgid "_Theme:"
800
758
  msgstr "_Téma:"
801
759
 
802
- #: ../lib/alexandria/ui/export_dialog.rb:60
760
+ #: ../lib/alexandria/ui/export_dialog.rb:62
803
761
  msgid "directory"
804
762
  msgstr "adresář"
805
763
 
806
- #: ../lib/alexandria/ui/export_dialog.rb:72
764
+ #: ../lib/alexandria/ui/export_dialog.rb:74
807
765
  msgid "Export for_mat:"
808
766
  msgstr "For_mát exportu:"
809
767
 
810
- #: ../lib/alexandria/ui/export_dialog.rb:99
768
+ #: ../lib/alexandria/ui/export_dialog.rb:101
811
769
  msgid "Export failed"
812
770
  msgstr "Export se nezdařil"
813
771
 
814
- #: ../lib/alexandria/ui/export_dialog.rb:122
772
+ #: ../lib/alexandria/ui/export_dialog.rb:125
815
773
  msgid ""
816
774
  "The target, named '%s', is a regular file. A directory is needed for this "
817
775
  "operation. Please select a directory and try again."
@@ -819,7 +777,7 @@ msgstr ""
819
777
  "Cíl se jménem '%s' je obyčejný soubor. Pro tuto operaci je nutný adresář. "
820
778
  "Vyberte prosím adresář a zkuste to znovu."
821
779
 
822
- #: ../lib/alexandria/ui/export_dialog.rb:126
780
+ #: ../lib/alexandria/ui/export_dialog.rb:129
823
781
  msgid "Not a directory"
824
782
  msgstr "Není adresář"
825
783
 
@@ -841,11 +799,11 @@ msgid ""
841
799
  "file."
842
800
  msgstr "Nerozpoznán formát zadaného souboru. Zkuste prosím jiný soubor."
843
801
 
844
- #: ../lib/alexandria/ui/init.rb:69
802
+ #: ../lib/alexandria/ui/init.rb:70
845
803
  msgid "Unable to launch the help browser"
846
804
  msgstr "Nelze spustit prohlížeč nápovědy"
847
805
 
848
- #: ../lib/alexandria/ui/init.rb:70
806
+ #: ../lib/alexandria/ui/init.rb:71
849
807
  msgid ""
850
808
  "Could not display help for Alexandria. There was an error launching the "
851
809
  "system help browser."
@@ -878,27 +836,27 @@ msgstr "Nová knihovna"
878
836
  msgid "Loaned To"
879
837
  msgstr "Vypůjčeno"
880
838
 
881
- #: ../lib/alexandria/ui/new_book_dialog.rb:153
839
+ #: ../lib/alexandria/ui/new_book_dialog.rb:155
882
840
  msgid "A problem occurred while downloading images"
883
841
  msgstr "Při stahování obrázků se vyskytl problém"
884
842
 
885
- #: ../lib/alexandria/ui/new_book_dialog.rb:193
843
+ #: ../lib/alexandria/ui/new_book_dialog.rb:194
886
844
  msgid "Iter is invalid! %s"
887
845
  msgstr ""
888
846
 
889
- #: ../lib/alexandria/ui/new_book_dialog.rb:267
847
+ #: ../lib/alexandria/ui/new_book_dialog.rb:266
890
848
  msgid "Unable to find matches for your search"
891
849
  msgstr "Nenalezeny žádné záznamy"
892
850
 
893
- #: ../lib/alexandria/ui/new_book_dialog.rb:303
851
+ #: ../lib/alexandria/ui/new_book_dialog.rb:302
894
852
  msgid "%s, by %s"
895
853
  msgstr "%s, od %s"
896
854
 
897
- #: ../lib/alexandria/ui/new_book_dialog.rb:309
855
+ #: ../lib/alexandria/ui/new_book_dialog.rb:308
898
856
  msgid "Copying %s into tree view."
899
857
  msgstr ""
900
858
 
901
- #: ../lib/alexandria/ui/new_book_dialog.rb:337
859
+ #: ../lib/alexandria/ui/new_book_dialog.rb:336
902
860
  msgid ""
903
861
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
904
862
  "correctly, and try again."
@@ -906,12 +864,12 @@ msgstr ""
906
864
  "Zadané EAN/ISBN je neplatné. Přesvědčte se, zda je napsáno správně a zkuste "
907
865
  "to znovu."
908
866
 
909
- #: ../lib/alexandria/ui/new_book_dialog.rb:466
867
+ #: ../lib/alexandria/ui/new_book_dialog.rb:464
910
868
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:119
911
869
  msgid "Couldn't add the book"
912
870
  msgstr "Knihu nelze přidat"
913
871
 
914
- #: ../lib/alexandria/ui/new_book_dialog.rb:572
872
+ #: ../lib/alexandria/ui/new_book_dialog.rb:570
915
873
  msgid "'%s' already exists in '%s' (titled '%s')."
916
874
  msgstr "'%s' již existuje v '%s' (s názvem '%s')."
917
875
 
@@ -1038,15 +996,15 @@ msgstr "Chyba při importování"
1038
996
  msgid "_Continue"
1039
997
  msgstr "_Pokračovat"
1040
998
 
1041
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:96
999
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:97
1042
1000
  msgid "Empty or conflictive condition"
1043
1001
  msgstr "Podmínka je prázdná nebo neplatná"
1044
1002
 
1045
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:99
1003
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
1046
1004
  msgid "_Save However"
1047
1005
  msgstr "Přesto uložit"
1048
1006
 
1049
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
1007
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:101
1050
1008
  msgid ""
1051
1009
  "This smart library contains one or more conditions which are empty or "
1052
1010
  "conflict with each other. This is likely to result in never matching a book. "
@@ -1056,136 +1014,136 @@ msgstr ""
1056
1014
  "prázdné, nebo v konfliktu, což se může v konečném důsledku projevit "
1057
1015
  "knihovnou, která budu vždy bez knih. Chcete opravdu uložit tuto knihovnu?"
1058
1016
 
1059
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:117
1017
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:118
1060
1018
  msgid "Match"
1061
1019
  msgstr "Porovnat"
1062
1020
 
1063
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
1021
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
1064
1022
  msgid "all"
1065
1023
  msgstr "vše"
1066
1024
 
1067
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
1025
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
1068
1026
  msgid "any"
1069
1027
  msgstr "kterékoliv"
1070
1028
 
1071
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:130
1029
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:131
1072
1030
  msgid "of the following rules:"
1073
1031
  msgstr "z následujících plavidel:"
1074
1032
 
1075
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:138
1033
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:139
1076
1034
  msgid "Match the following rule:"
1077
1035
  msgstr "Vybrat podle následujícího pravidla:"
1078
1036
 
1079
- #: ../lib/alexandria/ui/ui_manager.rb:130
1037
+ #: ../lib/alexandria/ui/ui_manager.rb:132
1080
1038
  msgid "Type here the search criterion"
1081
1039
  msgstr "Zde napište hledací kritéria"
1082
1040
 
1083
- #: ../lib/alexandria/ui/ui_manager.rb:141
1041
+ #: ../lib/alexandria/ui/ui_manager.rb:143
1084
1042
  msgid "Match everything"
1085
1043
  msgstr "Prohledávat vše"
1086
1044
 
1087
- #: ../lib/alexandria/ui/ui_manager.rb:143
1045
+ #: ../lib/alexandria/ui/ui_manager.rb:145
1088
1046
  msgid "Title contains"
1089
1047
  msgstr "Název obsahuje"
1090
1048
 
1091
- #: ../lib/alexandria/ui/ui_manager.rb:144
1049
+ #: ../lib/alexandria/ui/ui_manager.rb:146
1092
1050
  msgid "Authors contain"
1093
1051
  msgstr "Autoři obsahují"
1094
1052
 
1095
- #: ../lib/alexandria/ui/ui_manager.rb:145
1053
+ #: ../lib/alexandria/ui/ui_manager.rb:147
1096
1054
  msgid "ISBN contains"
1097
1055
  msgstr "ISBN obsahuje"
1098
1056
 
1099
- #: ../lib/alexandria/ui/ui_manager.rb:146
1057
+ #: ../lib/alexandria/ui/ui_manager.rb:148
1100
1058
  msgid "Publisher contains"
1101
1059
  msgstr "Vydavatel obsahuje"
1102
1060
 
1103
- #: ../lib/alexandria/ui/ui_manager.rb:147
1061
+ #: ../lib/alexandria/ui/ui_manager.rb:149
1104
1062
  msgid "Notes contain"
1105
1063
  msgstr "Poznámky obsahují"
1106
1064
 
1107
- #: ../lib/alexandria/ui/ui_manager.rb:148
1065
+ #: ../lib/alexandria/ui/ui_manager.rb:150
1108
1066
  msgid "Tags contain"
1109
1067
  msgstr "Značky obsahují"
1110
1068
 
1111
- #: ../lib/alexandria/ui/ui_manager.rb:162
1069
+ #: ../lib/alexandria/ui/ui_manager.rb:164
1112
1070
  msgid "Change the search type"
1113
1071
  msgstr "Změnit druh hledání"
1114
1072
 
1115
- #: ../lib/alexandria/ui/ui_manager.rb:167
1073
+ #: ../lib/alexandria/ui/ui_manager.rb:169
1116
1074
  msgid "View as Icons"
1117
1075
  msgstr "Zobrazit jako ikony"
1118
1076
 
1119
- #: ../lib/alexandria/ui/ui_manager.rb:168
1077
+ #: ../lib/alexandria/ui/ui_manager.rb:170
1120
1078
  msgid "View as List"
1121
1079
  msgstr "Zobrazit jako seznam"
1122
1080
 
1123
- #: ../lib/alexandria/ui/ui_manager.rb:181
1081
+ #: ../lib/alexandria/ui/ui_manager.rb:184
1124
1082
  msgid "Choose how to show books"
1125
1083
  msgstr "Zvolte jak zobrazit knihy"
1126
1084
 
1127
- #: ../lib/alexandria/ui/ui_manager.rb:400
1085
+ #: ../lib/alexandria/ui/ui_manager.rb:407
1128
1086
  msgid "Library '%s' selected"
1129
1087
  msgstr "Vybrána knihovna '%s'"
1130
1088
 
1131
- #: ../lib/alexandria/ui/ui_manager.rb:405
1089
+ #: ../lib/alexandria/ui/ui_manager.rb:412
1132
1090
  msgid "Library '%s' selected, %d unrated book"
1133
1091
  msgid_plural "Library '%s' selected, %d unrated books"
1134
1092
  msgstr[0] "Vybrána knihovna '%s', %d neohodnocená kniha"
1135
1093
  msgstr[1] "Vybrána knihovna '%s', %d neohodnocené knihy"
1136
1094
  msgstr[2] "Vybrána knihovna '%s', %d neohodnocených knih"
1137
1095
 
1138
- #: ../lib/alexandria/ui/ui_manager.rb:409
1096
+ #: ../lib/alexandria/ui/ui_manager.rb:416
1139
1097
  msgid "Library '%s' selected, %d book"
1140
1098
  msgid_plural "Library '%s' selected, %d books"
1141
1099
  msgstr[0] "Vybrána knihovna '%s', %d kniha"
1142
1100
  msgstr[1] "Vybrána knihovna '%s', %d knihy"
1143
1101
  msgstr[2] "Vybrána knihovna '%s', %d knih"
1144
1102
 
1145
- #: ../lib/alexandria/ui/ui_manager.rb:413
1103
+ #: ../lib/alexandria/ui/ui_manager.rb:420
1146
1104
  msgid "Library '%s' selected, %d book, %d unrated"
1147
1105
  msgid_plural "Library '%s' selected, %d books, %d unrated"
1148
1106
  msgstr[0] "Vybrána knihovna '%s', %d kniha, neohodnoceno: %d"
1149
1107
  msgstr[1] "Vybrána knihovna '%s', %d knihy, neohodnoceno: %d"
1150
1108
  msgstr[2] "Vybrána knihovna '%s', %d knih, neohodnoceno: %d"
1151
1109
 
1152
- #: ../lib/alexandria/ui/ui_manager.rb:427
1110
+ #: ../lib/alexandria/ui/ui_manager.rb:434
1153
1111
  msgid "'%s' selected"
1154
1112
  msgstr "Vybráno '%s'"
1155
1113
 
1156
- #: ../lib/alexandria/ui/ui_manager.rb:429
1114
+ #: ../lib/alexandria/ui/ui_manager.rb:436
1157
1115
  msgid "%d book selected"
1158
1116
  msgid_plural "%d books selected"
1159
1117
  msgstr[0] "Vybrána %d kniha"
1160
1118
  msgstr[1] "Vybrány %d knihy"
1161
1119
  msgstr[2] "Vybráno %d knih"
1162
1120
 
1163
- #: ../lib/alexandria/ui/ui_manager.rb:545
1121
+ #: ../lib/alexandria/ui/ui_manager.rb:552
1164
1122
  msgid "unrecognized update event"
1165
1123
  msgstr ""
1166
1124
 
1167
- #: ../lib/alexandria/ui/ui_manager.rb:590
1125
+ #: ../lib/alexandria/ui/ui_manager.rb:597
1168
1126
  #, fuzzy
1169
1127
  msgid "Loading libraries..."
1170
1128
  msgstr "Přidávám '%s'"
1171
1129
 
1172
- #: ../lib/alexandria/ui/ui_manager.rb:607
1130
+ #: ../lib/alexandria/ui/ui_manager.rb:614
1173
1131
  msgid ""
1174
1132
  "The data files for the following books are malformed or empty. Do you wish "
1175
1133
  "to attempt to download new information for them from the online book "
1176
1134
  "providers?\n"
1177
1135
  msgstr ""
1178
1136
 
1179
- #: ../lib/alexandria/ui/ui_manager.rb:659
1137
+ #: ../lib/alexandria/ui/ui_manager.rb:666
1180
1138
  msgid "Added '%s' to library '%s'"
1181
1139
  msgstr ""
1182
1140
 
1183
- #: ../lib/alexandria/ui/ui_manager.rb:808
1141
+ #: ../lib/alexandria/ui/ui_manager.rb:815
1184
1142
  #, fuzzy
1185
1143
  msgid "Loading '%s'..."
1186
1144
  msgstr "Přidávám '%s'"
1187
1145
 
1188
- #: ../lib/alexandria/ui/ui_manager.rb:1038
1146
+ #: ../lib/alexandria/ui/ui_manager.rb:1045
1189
1147
  msgid "In '_%s'"
1190
1148
  msgstr "Do '_%s'"
1191
1149
 
@@ -1435,6 +1393,13 @@ msgstr "Správce sbírky knih"
1435
1393
  msgid "Manage your book collection"
1436
1394
  msgstr "Spravovat vaši sbírku knih"
1437
1395
 
1396
+ #~ msgid "Locale"
1397
+ #~ msgstr "Pobočka"
1398
+
1399
+ #, fuzzy
1400
+ #~ msgid "Associate Tag"
1401
+ #~ msgstr "Přičleněné ID"
1402
+
1438
1403
  #~ msgid "Unable to launch the web browser"
1439
1404
  #~ msgstr "Nelze spustit prohlížeč webových stránek·"
1440
1405