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/pt.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-07-30 22:20-0000\n"
11
11
  "Last-Translator: Ligia Moreira <ligia.moreira@netvisao.pt >\n"
12
12
  "Language-Team: Lígia Moreira <ligia.moreira@netvisao.pt>\n"
@@ -23,16 +23,15 @@ msgstr ""
23
23
  msgid "A program to help you manage your book collection."
24
24
  msgstr "Um programa para o ajudar a gerir a sua colecção de livros."
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 "Não consegue contactar o fornecedor '%s': Expirou o tempo de ligação."
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 "Não consegue contactar o fornecedor '%s': erro socket (%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
  "Nenhum resultado encontrado. Verifique a ortografia dos critérios da "
41
40
  "pesquisa, e tente novamente."
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 "Demasiados resultados para esta pesquisa."
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 "Tipo de pesquisa inválida."
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 "Local"
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 "Identidade de associado"
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 "Nome do anfitrião"
@@ -129,7 +87,7 @@ msgstr "Biblioteca do Congresso (Usa)"
129
87
  msgid "British Library"
130
88
  msgstr "Biblioteca Britânica"
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 "ISBN '%s' inválido"
@@ -206,11 +164,11 @@ msgstr ""
206
164
  msgid "%<file>s pub year is not okay"
207
165
  msgstr ""
208
166
 
209
- #: ../lib/alexandria/models/library.rb:40
167
+ #: ../lib/alexandria/models/library.rb:42
210
168
  msgid "Untitled"
211
169
  msgstr "Sem Tí­tulo "
212
170
 
213
- #: ../lib/alexandria/models/library.rb:288
171
+ #: ../lib/alexandria/models/library.rb:284
214
172
  msgid "Book %<isbn>s was already deleted"
215
173
  msgstr ""
216
174
 
@@ -373,53 +331,53 @@ msgstr "não está em último"
373
331
  msgid "invalid operand klass %<klass>s"
374
332
  msgstr ""
375
333
 
376
- #: ../lib/alexandria/ui/acquire_dialog.rb:202
334
+ #: ../lib/alexandria/ui/acquire_dialog.rb:206
377
335
  msgid "There was %d duplicate"
378
336
  msgid_plural "There were %d duplicates"
379
337
  msgstr[0] ""
380
338
  msgstr[1] ""
381
339
 
382
- #: ../lib/alexandria/ui/acquire_dialog.rb:205
340
+ #: ../lib/alexandria/ui/acquire_dialog.rb:209
383
341
  #, fuzzy
384
342
  msgid "Couldn't add this book"
385
343
  msgid_plural "Couldn't add these books"
386
344
  msgstr[0] "Não consegue adicionar o livro"
387
345
  msgstr[1] "Não consegue adicionar o livro"
388
346
 
389
- #: ../lib/alexandria/ui/acquire_dialog.rb:284
390
- #: ../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
391
349
  msgid "Searching Provider '%s'..."
392
350
  msgstr ""
393
351
 
394
- #: ../lib/alexandria/ui/acquire_dialog.rb:285
395
- #: ../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
396
354
  msgid "Error while Searching Provider '%s'"
397
355
  msgstr ""
398
356
 
399
- #: ../lib/alexandria/ui/acquire_dialog.rb:286
400
- #: ../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
401
359
  msgid "Not Found at Provider '%s'"
402
360
  msgstr ""
403
361
 
404
- #: ../lib/alexandria/ui/acquire_dialog.rb:287
405
- #: ../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
406
364
  msgid "Found at Provider '%s'"
407
365
  msgstr ""
408
366
 
409
- #: ../lib/alexandria/ui/acquire_dialog.rb:406
367
+ #: ../lib/alexandria/ui/acquire_dialog.rb:403
410
368
  msgid "Ready to use %s barcode scanner"
411
369
  msgstr ""
412
370
 
413
- #: ../lib/alexandria/ui/acquire_dialog.rb:430
371
+ #: ../lib/alexandria/ui/acquire_dialog.rb:427
414
372
  msgid "Click below to scan _barcodes"
415
373
  msgstr "Clique em baixo para fazer o scanner das barras de código"
416
374
 
417
- #: ../lib/alexandria/ui/book_properties_dialog.rb:112
418
- #: ../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
419
377
  msgid "Couldn't modify the book"
420
378
  msgstr "Impossí­vel editar as propriedades do livro"
421
379
 
422
- #: ../lib/alexandria/ui/book_properties_dialog.rb:113
380
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:112
423
381
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:74
424
382
  msgid ""
425
383
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
@@ -428,39 +386,39 @@ msgstr ""
428
386
  "Impossí­vel validar o EAN/ISBN. Verifique se está escrito correctamente, e "
429
387
  "tente de novo."
430
388
 
431
- #: ../lib/alexandria/ui/book_properties_dialog.rb:123
389
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:122
432
390
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:79
433
391
  msgid "The EAN/ISBN you provided is already used in this library."
434
392
  msgstr "O EAN/ISBN fornecido já foi utilizado nesta biblioteca."
435
393
 
436
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:206
394
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:104
437
395
  msgid "Properties"
438
396
  msgstr "Propriedades"
439
397
 
440
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:208
398
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:106
441
399
  #: ../lib/alexandria/ui/smart_library_properties_dialog.rb:21
442
400
  msgid "Properties for '%s'"
443
401
  msgstr "Propriedades para %s"
444
402
 
445
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:214
403
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:112
446
404
  msgid "Author"
447
405
  msgstr "Autor"
448
406
 
449
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:263
407
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:160
450
408
  msgid "Select a cover image"
451
409
  msgstr "Seleccione uma imagem de capa"
452
410
 
453
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:267
411
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:163
454
412
  msgid "No Cover"
455
413
  msgstr "Nenhuma capa"
456
414
 
457
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:346
415
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:242
458
416
  msgid "%d day"
459
417
  msgid_plural "%d days"
460
418
  msgstr[0] "%d dia"
461
419
  msgstr[1] "%d dias"
462
420
 
463
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:372
421
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:268
464
422
  msgid "out of range"
465
423
  msgstr ""
466
424
 
@@ -774,31 +732,31 @@ msgstr "_Passar"
774
732
  msgid "If you replace the existing book, its contents will be overwritten."
775
733
  msgstr "Se substituir o livro existente, o seu conteúdo será apagado."
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 "directoria"
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 "For_mato de exportação:"
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 "A exportação falhou"
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
  "O objecto, chamado '%s', é um ficheiro regular. É necessária uma directoria "
807
765
  "para esta operação. Queira seleccionar uma directoria e tentar novamente."
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 "Directoria necessária"
812
770
 
@@ -830,11 +788,11 @@ msgstr ""
830
788
  "O formato do ficheiro que forneceu é desconhecido. Queira tentar novamente "
831
789
  "com um 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 "Não consegue carregar a ajuda do browser"
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."
@@ -869,27 +827,27 @@ msgstr "Nova Biblioteca"
869
827
  msgid "Loaned To"
870
828
  msgstr "Emprestado"
871
829
 
872
- #: ../lib/alexandria/ui/new_book_dialog.rb:153
830
+ #: ../lib/alexandria/ui/new_book_dialog.rb:155
873
831
  msgid "A problem occurred while downloading images"
874
832
  msgstr "Ocorreu um erro ao fazer o download das imagens"
875
833
 
876
- #: ../lib/alexandria/ui/new_book_dialog.rb:193
834
+ #: ../lib/alexandria/ui/new_book_dialog.rb:194
877
835
  msgid "Iter is invalid! %s"
878
836
  msgstr ""
879
837
 
880
- #: ../lib/alexandria/ui/new_book_dialog.rb:267
838
+ #: ../lib/alexandria/ui/new_book_dialog.rb:266
881
839
  msgid "Unable to find matches for your search"
882
840
  msgstr "Não consegue encontrar as correspondências para a sua pesquisa"
883
841
 
884
- #: ../lib/alexandria/ui/new_book_dialog.rb:303
842
+ #: ../lib/alexandria/ui/new_book_dialog.rb:302
885
843
  msgid "%s, by %s"
886
844
  msgstr "%s, por %s"
887
845
 
888
- #: ../lib/alexandria/ui/new_book_dialog.rb:309
846
+ #: ../lib/alexandria/ui/new_book_dialog.rb:308
889
847
  msgid "Copying %s into tree view."
890
848
  msgstr ""
891
849
 
892
- #: ../lib/alexandria/ui/new_book_dialog.rb:337
850
+ #: ../lib/alexandria/ui/new_book_dialog.rb:336
893
851
  msgid ""
894
852
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
895
853
  "correctly, and try again."
@@ -897,12 +855,12 @@ msgstr ""
897
855
  "Impossí­vel validar o EAN/ISBN fornecido. Verifique se o número está "
898
856
  "correctamente escrito e tente de novo."
899
857
 
900
- #: ../lib/alexandria/ui/new_book_dialog.rb:466
858
+ #: ../lib/alexandria/ui/new_book_dialog.rb:464
901
859
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:119
902
860
  msgid "Couldn't add the book"
903
861
  msgstr "Não consegue adicionar o livro"
904
862
 
905
- #: ../lib/alexandria/ui/new_book_dialog.rb:572
863
+ #: ../lib/alexandria/ui/new_book_dialog.rb:570
906
864
  msgid "'%s' already exists in '%s' (titled '%s')."
907
865
  msgstr "'%s' já existe em '%s' (intitulado '%s')."
908
866
 
@@ -1031,15 +989,15 @@ msgstr "Erro de importação"
1031
989
  msgid "_Continue"
1032
990
  msgstr "_Continuar"
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 "Vazio ou em estado de conflito"
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 "_Gravar, ainda assim"
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
  "ou em conflito entre elas. Isso é causado provavelmente por um livro que "
1050
1008
  "nunca terá correspondência. Tem a certeza que quer gravar esta biblioteca ?"
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 "Corresponde"
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 "todas"
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 "nenhumas"
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 "das regras seguintes:"
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 "Corresponde à regra seguinte:"
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 "Insira aqui os critérios da pesquisa"
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 "Fazer todas as correspondências "
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 "O título contém"
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 "Os autores contêm"
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 "O ISBN contém"
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 "O Editor contém"
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 "As anotações contêm"
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 "As etiquetas contêm"
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 "Altere o tipo de pesquisa"
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 "Ver como í­cones"
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 "Ver como lista"
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 "Escolha como ver os livros"
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 "Biblioteca '%s' seleccionada"
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] "Biblioteca '%s' seleccionada, %d livro não classificado"
1128
1086
  msgstr[1] "Biblioteca '%s' seleccionada, %d livros não classificados"
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] "Biblioteca '%s' seleccionada, %d livro"
1134
1092
  msgstr[1] "Biblioteca '%s' seleccionada, %d livros"
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] "Biblioteca '%s' seleccionada, %d livro, %d não classificado"
1140
1098
  msgstr[1] "Biblioteca '%s' seleccionada, %d livros, %d não classificados"
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' seleccionado"
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 livro seleccionado"
1150
1108
  msgstr[1] "%d livros seleccionados"
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 "A adicionar '%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 "
@@ -1168,15 +1126,15 @@ msgstr ""
1168
1126
  "vazios. Deseja tentar o download de nova informação para eles a partir dos "
1169
1127
  "fornecedores de livros, na internet?\n"
1170
1128
 
1171
- #: ../lib/alexandria/ui/ui_manager.rb:659
1129
+ #: ../lib/alexandria/ui/ui_manager.rb:666
1172
1130
  msgid "Added '%s' to library '%s'"
1173
1131
  msgstr "Adicionados '%s' à biblioteca '%s'"
1174
1132
 
1175
- #: ../lib/alexandria/ui/ui_manager.rb:808
1133
+ #: ../lib/alexandria/ui/ui_manager.rb:815
1176
1134
  msgid "Loading '%s'..."
1177
1135
  msgstr "A adicionar '%s'..."
1178
1136
 
1179
- #: ../lib/alexandria/ui/ui_manager.rb:1038
1137
+ #: ../lib/alexandria/ui/ui_manager.rb:1045
1180
1138
  msgid "In '_%s'"
1181
1139
  msgstr "Em '_%s'"
1182
1140
 
@@ -1428,6 +1386,13 @@ msgstr "Gestor da Colecção de Livros"
1428
1386
  msgid "Manage your book collection"
1429
1387
  msgstr "Faça a gestão da sua colecção de livros"
1430
1388
 
1389
+ #~ msgid "Locale"
1390
+ #~ msgstr "Local"
1391
+
1392
+ #, fuzzy
1393
+ #~ msgid "Associate Tag"
1394
+ #~ msgstr "Identidade de associado"
1395
+
1431
1396
  #~ msgid "Unable to launch the web browser"
1432
1397
  #~ msgstr "Não consegue ligar-se à  internet"
1433
1398