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/gl.po CHANGED
@@ -11,7 +11,7 @@ msgid ""
11
11
  msgstr ""
12
12
  "Project-Id-Version: alexandria 0.6.3\n"
13
13
  "Report-Msgid-Bugs-To: \n"
14
- "POT-Creation-Date: 2020-09-13 14:52+0200\n"
14
+ "POT-Creation-Date: 2020-12-26 12:17+0100\n"
15
15
  "PO-Revision-Date: 2008-04-09 14:04+0100\n"
16
16
  "Last-Translator: Leandro Regueiro <leandro DOT regueiro AT gmail DOT com>\n"
17
17
  "Language-Team: Galician <proxecto@trasno.net>\n"
@@ -25,16 +25,15 @@ msgstr ""
25
25
  msgid "A program to help you manage your book collection."
26
26
  msgstr "Un programa para axudarlle a xestionar a súa colección de libros."
27
27
 
28
- #: ../lib/alexandria/book_providers.rb:91
28
+ #: ../lib/alexandria/book_providers.rb:95
29
29
  msgid "Couldn't reach the provider '%s': timeout expired."
30
30
  msgstr "Non se puido contactar co provedor '%s': expirou o tempo de espera."
31
31
 
32
- #: ../lib/alexandria/book_providers.rb:95
32
+ #: ../lib/alexandria/book_providers.rb:99
33
33
  msgid "Couldn't reach the provider '%s': socket error (%s)."
34
34
  msgstr "Non se puido contactar co provedor '%s': erro de socket (%s)."
35
35
 
36
- #: ../lib/alexandria/book_providers.rb:99
37
- #: ../lib/alexandria/book_providers.rb:104
36
+ #: ../lib/alexandria/book_providers.rb:103
38
37
  msgid ""
39
38
  "No results were found. Make sure your search criterion is spelled "
40
39
  "correctly, and try again."
@@ -42,59 +41,18 @@ msgstr ""
42
41
  "Non se atoparon resultados. Asegúrese de que escribiu os criterios de busca "
43
42
  "correctamente e probe de novo."
44
43
 
45
- #: ../lib/alexandria/book_providers.rb:109
44
+ #: ../lib/alexandria/book_providers.rb:108
46
45
  msgid "Too many results for that search."
47
46
  msgstr "Esta busca devolveu demasiados resultados."
48
47
 
49
- #: ../lib/alexandria/book_providers.rb:112
48
+ #: ../lib/alexandria/book_providers.rb:111
50
49
  msgid "Invalid search type."
51
50
  msgstr "Tipo de busca incorrecto."
52
51
 
53
- #: ../lib/alexandria/book_providers.rb:206
52
+ #: ../lib/alexandria/book_providers.rb:205
54
53
  msgid "Enabled"
55
54
  msgstr ""
56
55
 
57
- #: ../lib/alexandria/book_providers/adlibris.rb:111
58
- msgid "title not found on page"
59
- msgstr ""
60
-
61
- #: ../lib/alexandria/book_providers/amazon_aws.rb:26
62
- msgid "Locale"
63
- msgstr "gl"
64
-
65
- #: ../lib/alexandria/book_providers/amazon_aws.rb:27
66
- msgid "Access key ID"
67
- msgstr ""
68
-
69
- #: ../lib/alexandria/book_providers/amazon_aws.rb:28
70
- msgid "Secret access key"
71
- msgstr ""
72
-
73
- #: ../lib/alexandria/book_providers/amazon_aws.rb:29
74
- #, fuzzy
75
- msgid "Associate Tag"
76
- msgstr "ID de Asociado"
77
-
78
- #: ../lib/alexandria/book_providers/amazon_aws.rb:59
79
- msgid "Provide secret key for your Amazon AWS account."
80
- msgstr ""
81
-
82
- #: ../lib/alexandria/book_providers/amazon_aws.rb:149
83
- msgid "No products"
84
- msgstr ""
85
-
86
- #: ../lib/alexandria/book_providers/amazon_ecs_util.rb:102
87
- msgid "HTTP Response: %<code>s %<message>s"
88
- msgstr ""
89
-
90
- #: ../lib/alexandria/book_providers/amazon_ecs_util.rb:170
91
- msgid "Invalid country '%<country>s'"
92
- msgstr ""
93
-
94
- #: ../lib/alexandria/book_providers/barnes_and_noble.rb:59
95
- msgid "HTTP redirect too deep"
96
- msgstr ""
97
-
98
56
  #: ../lib/alexandria/book_providers/z3950.rb:22
99
57
  msgid "Hostname"
100
58
  msgstr "Nome de servidor"
@@ -131,7 +89,7 @@ msgstr "Biblioteca do Congreso (EUA)"
131
89
  msgid "British Library"
132
90
  msgstr "Biblioteca Británica"
133
91
 
134
- #: ../lib/alexandria/book_providers/z3950.rb:376
92
+ #: ../lib/alexandria/book_providers/z3950.rb:374
135
93
  #, fuzzy
136
94
  msgid "Invalid ISBN"
137
95
  msgstr "ISBN '%s' incorrecto"
@@ -208,11 +166,11 @@ msgstr ""
208
166
  msgid "%<file>s pub year is not okay"
209
167
  msgstr ""
210
168
 
211
- #: ../lib/alexandria/models/library.rb:40
169
+ #: ../lib/alexandria/models/library.rb:42
212
170
  msgid "Untitled"
213
171
  msgstr "Sen título"
214
172
 
215
- #: ../lib/alexandria/models/library.rb:288
173
+ #: ../lib/alexandria/models/library.rb:284
216
174
  msgid "Book %<isbn>s was already deleted"
217
175
  msgstr ""
218
176
 
@@ -375,53 +333,53 @@ msgstr "non nos últimos"
375
333
  msgid "invalid operand klass %<klass>s"
376
334
  msgstr ""
377
335
 
378
- #: ../lib/alexandria/ui/acquire_dialog.rb:202
336
+ #: ../lib/alexandria/ui/acquire_dialog.rb:206
379
337
  msgid "There was %d duplicate"
380
338
  msgid_plural "There were %d duplicates"
381
339
  msgstr[0] ""
382
340
  msgstr[1] ""
383
341
 
384
- #: ../lib/alexandria/ui/acquire_dialog.rb:205
342
+ #: ../lib/alexandria/ui/acquire_dialog.rb:209
385
343
  #, fuzzy
386
344
  msgid "Couldn't add this book"
387
345
  msgid_plural "Couldn't add these books"
388
346
  msgstr[0] "Non se puido engadir o libro"
389
347
  msgstr[1] "Non se puido engadir o libro"
390
348
 
391
- #: ../lib/alexandria/ui/acquire_dialog.rb:284
392
- #: ../lib/alexandria/ui/new_book_dialog.rb:500
349
+ #: ../lib/alexandria/ui/acquire_dialog.rb:288
350
+ #: ../lib/alexandria/ui/new_book_dialog.rb:498
393
351
  msgid "Searching Provider '%s'..."
394
352
  msgstr ""
395
353
 
396
- #: ../lib/alexandria/ui/acquire_dialog.rb:285
397
- #: ../lib/alexandria/ui/new_book_dialog.rb:501
354
+ #: ../lib/alexandria/ui/acquire_dialog.rb:289
355
+ #: ../lib/alexandria/ui/new_book_dialog.rb:499
398
356
  msgid "Error while Searching Provider '%s'"
399
357
  msgstr ""
400
358
 
401
- #: ../lib/alexandria/ui/acquire_dialog.rb:286
402
- #: ../lib/alexandria/ui/new_book_dialog.rb:502
359
+ #: ../lib/alexandria/ui/acquire_dialog.rb:290
360
+ #: ../lib/alexandria/ui/new_book_dialog.rb:500
403
361
  msgid "Not Found at Provider '%s'"
404
362
  msgstr ""
405
363
 
406
- #: ../lib/alexandria/ui/acquire_dialog.rb:287
407
- #: ../lib/alexandria/ui/new_book_dialog.rb:503
364
+ #: ../lib/alexandria/ui/acquire_dialog.rb:291
365
+ #: ../lib/alexandria/ui/new_book_dialog.rb:501
408
366
  msgid "Found at Provider '%s'"
409
367
  msgstr ""
410
368
 
411
- #: ../lib/alexandria/ui/acquire_dialog.rb:406
369
+ #: ../lib/alexandria/ui/acquire_dialog.rb:403
412
370
  msgid "Ready to use %s barcode scanner"
413
371
  msgstr ""
414
372
 
415
- #: ../lib/alexandria/ui/acquire_dialog.rb:430
373
+ #: ../lib/alexandria/ui/acquire_dialog.rb:427
416
374
  msgid "Click below to scan _barcodes"
417
375
  msgstr "Prema embaixo para escanear os códigos de _barras"
418
376
 
419
- #: ../lib/alexandria/ui/book_properties_dialog.rb:112
420
- #: ../lib/alexandria/ui/book_properties_dialog.rb:122
377
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:111
378
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:121
421
379
  msgid "Couldn't modify the book"
422
380
  msgstr "Non se puido modificar o libro"
423
381
 
424
- #: ../lib/alexandria/ui/book_properties_dialog.rb:113
382
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:112
425
383
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:74
426
384
  msgid ""
427
385
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
@@ -430,39 +388,39 @@ msgstr ""
430
388
  "Non se puido validar o EAN/ISBN que proporcionou. Asegúrese de que o "
431
389
  "escribiu correctamente e probe de novo."
432
390
 
433
- #: ../lib/alexandria/ui/book_properties_dialog.rb:123
391
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:122
434
392
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:79
435
393
  msgid "The EAN/ISBN you provided is already used in this library."
436
394
  msgstr "Nesta biblioteca xa se está a usar o EAN/ISBN que introduciu."
437
395
 
438
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:206
396
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:104
439
397
  msgid "Properties"
440
398
  msgstr "Propiedades"
441
399
 
442
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:208
400
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:106
443
401
  #: ../lib/alexandria/ui/smart_library_properties_dialog.rb:21
444
402
  msgid "Properties for '%s'"
445
403
  msgstr "Propiedades de '%s'"
446
404
 
447
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:214
405
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:112
448
406
  msgid "Author"
449
407
  msgstr "Autor"
450
408
 
451
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:263
409
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:160
452
410
  msgid "Select a cover image"
453
411
  msgstr "Seleccione unha imaxe para a cuberta"
454
412
 
455
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:267
413
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:163
456
414
  msgid "No Cover"
457
415
  msgstr "Sen cuberta"
458
416
 
459
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:346
417
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:242
460
418
  msgid "%d day"
461
419
  msgid_plural "%d days"
462
420
  msgstr[0] "%d día"
463
421
  msgstr[1] "%d días"
464
422
 
465
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:372
423
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:268
466
424
  msgid "out of range"
467
425
  msgstr ""
468
426
 
@@ -774,31 +732,31 @@ msgstr "_Saltar"
774
732
  msgid "If you replace the existing book, its contents will be overwritten."
775
733
  msgstr "Se substitúe o libro existente hase sobrescribir o seu contido."
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 "Exportar '%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 "_Exportar"
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 "directorio"
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 "Exportar for_mato:"
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 "Fallou a exportación"
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
  "A ruta '%s' leva ata un ficheiro normal. Para esta operación precísase un "
807
765
  "directorio. Seleccione outro directorio e probe de novo."
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 "Non é un directorio"
812
770
 
@@ -830,11 +788,11 @@ msgstr ""
830
788
  "Descoñécese o formato do ficheiro que proporcionou. Volva intentalo con "
831
789
  "outro ficheiro."
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 "Non se puido iniciar o navegador de axuda"
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 "Nova Biblioteca"
870
828
  msgid "Loaned To"
871
829
  msgstr "Prestado"
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 "Houbo un problema ó descargar as imaxes"
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 "Non se atoparon resultados para a súa busca"
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, escrito por %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
  "Non foi posible validar o EAN/ISBN que introduciu. Asegúrese de que o "
899
857
  "escribiu correctamente, e probe de novo."
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 "Non se puido engadir o libro"
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' xa existe en '%s' (co título de '%s')."
909
867
 
@@ -1029,15 +987,15 @@ msgstr "Erro ó importar"
1029
987
  msgid "_Continue"
1030
988
  msgstr "_Continuar"
1031
989
 
1032
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:96
990
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:97
1033
991
  msgid "Empty or conflictive condition"
1034
992
  msgstr "Condición baleira ou en conflicto"
1035
993
 
1036
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:99
994
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
1037
995
  msgid "_Save However"
1038
996
  msgstr "_Gardar de tódolos xeitos"
1039
997
 
1040
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
998
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:101
1041
999
  msgid ""
1042
1000
  "This smart library contains one or more conditions which are empty or "
1043
1001
  "conflict with each other. This is likely to result in never matching a book. "
@@ -1047,116 +1005,116 @@ msgstr ""
1047
1005
  "conflicto entre elas. Isto podería levar a que non se atopase nunca un "
1048
1006
  "libro. Está seguro de que quere gardar esta biblioteca?"
1049
1007
 
1050
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:117
1008
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:118
1051
1009
  msgid "Match"
1052
1010
  msgstr "Cumprir"
1053
1011
 
1054
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
1012
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
1055
1013
  msgid "all"
1056
1014
  msgstr "tódalas"
1057
1015
 
1058
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
1016
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
1059
1017
  msgid "any"
1060
1018
  msgstr "algunha das"
1061
1019
 
1062
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:130
1020
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:131
1063
1021
  msgid "of the following rules:"
1064
1022
  msgstr "seguintes regras:"
1065
1023
 
1066
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:138
1024
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:139
1067
1025
  msgid "Match the following rule:"
1068
1026
  msgstr "Cumpren as seguinte regras:"
1069
1027
 
1070
- #: ../lib/alexandria/ui/ui_manager.rb:130
1028
+ #: ../lib/alexandria/ui/ui_manager.rb:132
1071
1029
  msgid "Type here the search criterion"
1072
1030
  msgstr "Escriba aquí os criterios da busca"
1073
1031
 
1074
- #: ../lib/alexandria/ui/ui_manager.rb:141
1032
+ #: ../lib/alexandria/ui/ui_manager.rb:143
1075
1033
  msgid "Match everything"
1076
1034
  msgstr "Buscar todo"
1077
1035
 
1078
- #: ../lib/alexandria/ui/ui_manager.rb:143
1036
+ #: ../lib/alexandria/ui/ui_manager.rb:145
1079
1037
  msgid "Title contains"
1080
1038
  msgstr "Título contén"
1081
1039
 
1082
- #: ../lib/alexandria/ui/ui_manager.rb:144
1040
+ #: ../lib/alexandria/ui/ui_manager.rb:146
1083
1041
  msgid "Authors contain"
1084
1042
  msgstr "Autores contén"
1085
1043
 
1086
- #: ../lib/alexandria/ui/ui_manager.rb:145
1044
+ #: ../lib/alexandria/ui/ui_manager.rb:147
1087
1045
  msgid "ISBN contains"
1088
1046
  msgstr "ISBN contén"
1089
1047
 
1090
- #: ../lib/alexandria/ui/ui_manager.rb:146
1048
+ #: ../lib/alexandria/ui/ui_manager.rb:148
1091
1049
  msgid "Publisher contains"
1092
1050
  msgstr "Editorial contén"
1093
1051
 
1094
- #: ../lib/alexandria/ui/ui_manager.rb:147
1052
+ #: ../lib/alexandria/ui/ui_manager.rb:149
1095
1053
  msgid "Notes contain"
1096
1054
  msgstr "Notas contén"
1097
1055
 
1098
- #: ../lib/alexandria/ui/ui_manager.rb:148
1056
+ #: ../lib/alexandria/ui/ui_manager.rb:150
1099
1057
  msgid "Tags contain"
1100
1058
  msgstr "Etiquetas contén"
1101
1059
 
1102
- #: ../lib/alexandria/ui/ui_manager.rb:162
1060
+ #: ../lib/alexandria/ui/ui_manager.rb:164
1103
1061
  msgid "Change the search type"
1104
1062
  msgstr "Cambiar o tipo de busca"
1105
1063
 
1106
- #: ../lib/alexandria/ui/ui_manager.rb:167
1064
+ #: ../lib/alexandria/ui/ui_manager.rb:169
1107
1065
  msgid "View as Icons"
1108
1066
  msgstr "Ver coma iconas"
1109
1067
 
1110
- #: ../lib/alexandria/ui/ui_manager.rb:168
1068
+ #: ../lib/alexandria/ui/ui_manager.rb:170
1111
1069
  msgid "View as List"
1112
1070
  msgstr "Ver coma unha lista"
1113
1071
 
1114
- #: ../lib/alexandria/ui/ui_manager.rb:181
1072
+ #: ../lib/alexandria/ui/ui_manager.rb:184
1115
1073
  msgid "Choose how to show books"
1116
1074
  msgstr "Elixir como amosar os libros"
1117
1075
 
1118
- #: ../lib/alexandria/ui/ui_manager.rb:400
1076
+ #: ../lib/alexandria/ui/ui_manager.rb:407
1119
1077
  msgid "Library '%s' selected"
1120
1078
  msgstr "Seleccionouse a biblioteca'%s'"
1121
1079
 
1122
- #: ../lib/alexandria/ui/ui_manager.rb:405
1080
+ #: ../lib/alexandria/ui/ui_manager.rb:412
1123
1081
  msgid "Library '%s' selected, %d unrated book"
1124
1082
  msgid_plural "Library '%s' selected, %d unrated books"
1125
1083
  msgstr[0] "Seleccionouse a biblioteca '%s', %d libro sen avaliar"
1126
1084
  msgstr[1] "Seleccionouse a biblioteca '%s', %d libros sen avaliar"
1127
1085
 
1128
- #: ../lib/alexandria/ui/ui_manager.rb:409
1086
+ #: ../lib/alexandria/ui/ui_manager.rb:416
1129
1087
  msgid "Library '%s' selected, %d book"
1130
1088
  msgid_plural "Library '%s' selected, %d books"
1131
1089
  msgstr[0] "Seleccionouse a biblioteca '%s', %d libro"
1132
1090
  msgstr[1] "Seleccionouse a biblioteca '%s', %d libros"
1133
1091
 
1134
- #: ../lib/alexandria/ui/ui_manager.rb:413
1092
+ #: ../lib/alexandria/ui/ui_manager.rb:420
1135
1093
  msgid "Library '%s' selected, %d book, %d unrated"
1136
1094
  msgid_plural "Library '%s' selected, %d books, %d unrated"
1137
1095
  msgstr[0] "Seleccionouse a biblioteca '%s', %d libro, %s sen avaliar"
1138
1096
  msgstr[1] "Seleccionouse a biblioteca '%s', %d libros, %s sen avaliar"
1139
1097
 
1140
- #: ../lib/alexandria/ui/ui_manager.rb:427
1098
+ #: ../lib/alexandria/ui/ui_manager.rb:434
1141
1099
  msgid "'%s' selected"
1142
1100
  msgstr "Seleccionouse '%s'"
1143
1101
 
1144
- #: ../lib/alexandria/ui/ui_manager.rb:429
1102
+ #: ../lib/alexandria/ui/ui_manager.rb:436
1145
1103
  msgid "%d book selected"
1146
1104
  msgid_plural "%d books selected"
1147
1105
  msgstr[0] "Seleccionouse %d libro"
1148
1106
  msgstr[1] "Seleccionáronse %d libros"
1149
1107
 
1150
- #: ../lib/alexandria/ui/ui_manager.rb:545
1108
+ #: ../lib/alexandria/ui/ui_manager.rb:552
1151
1109
  msgid "unrecognized update event"
1152
1110
  msgstr ""
1153
1111
 
1154
- #: ../lib/alexandria/ui/ui_manager.rb:590
1112
+ #: ../lib/alexandria/ui/ui_manager.rb:597
1155
1113
  #, fuzzy
1156
1114
  msgid "Loading libraries..."
1157
1115
  msgstr "Cargando '%s'..."
1158
1116
 
1159
- #: ../lib/alexandria/ui/ui_manager.rb:607
1117
+ #: ../lib/alexandria/ui/ui_manager.rb:614
1160
1118
  msgid ""
1161
1119
  "The data files for the following books are malformed or empty. Do you wish "
1162
1120
  "to attempt to download new information for them from the online book "
@@ -1166,15 +1124,15 @@ msgstr ""
1166
1124
  "Desexa intentar descargar nova información para eles dos provedores de "
1167
1125
  "libros en liña?\n"
1168
1126
 
1169
- #: ../lib/alexandria/ui/ui_manager.rb:659
1127
+ #: ../lib/alexandria/ui/ui_manager.rb:666
1170
1128
  msgid "Added '%s' to library '%s'"
1171
1129
  msgstr "Engadiuse '%s' á biblioteca '%s'"
1172
1130
 
1173
- #: ../lib/alexandria/ui/ui_manager.rb:808
1131
+ #: ../lib/alexandria/ui/ui_manager.rb:815
1174
1132
  msgid "Loading '%s'..."
1175
1133
  msgstr "Cargando '%s'..."
1176
1134
 
1177
- #: ../lib/alexandria/ui/ui_manager.rb:1038
1135
+ #: ../lib/alexandria/ui/ui_manager.rb:1045
1178
1136
  msgid "In '_%s'"
1179
1137
  msgstr "En '_%s'"
1180
1138
 
@@ -1424,6 +1382,13 @@ msgstr "Administrador de Coleccións de Libros"
1424
1382
  msgid "Manage your book collection"
1425
1383
  msgstr "Administre a súa colección de libros"
1426
1384
 
1385
+ #~ msgid "Locale"
1386
+ #~ msgstr "gl"
1387
+
1388
+ #, fuzzy
1389
+ #~ msgid "Associate Tag"
1390
+ #~ msgstr "ID de Asociado"
1391
+
1427
1392
  #~ msgid "Unable to launch the web browser"
1428
1393
  #~ msgstr "Non se puido iniciar o navegador web"
1429
1394