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.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +48 -53
- data/.rubocop.yml +18 -5
- data/.rubocop_todo.yml +31 -37
- data/.simplecov +2 -2
- data/CHANGELOG.md +37 -0
- data/ChangeLog.0 +19 -19
- data/INSTALL.md +3 -5
- data/README.md +0 -5
- data/Rakefile +14 -14
- data/alexandria-book-collection-manager.gemspec +35 -34
- data/doc/FAQ +2 -2
- data/lib/alexandria/about.rb +1 -1
- data/lib/alexandria/book_providers/bl_provider.rb +88 -0
- data/lib/alexandria/book_providers/loc_provider.rb +38 -0
- data/lib/alexandria/book_providers/sbn_provider.rb +108 -0
- data/lib/alexandria/book_providers/thalia_provider.rb +1 -1
- data/lib/alexandria/book_providers/web.rb +2 -2
- data/lib/alexandria/book_providers/worldcat.rb +9 -7
- data/lib/alexandria/book_providers/z3950_provider.rb +199 -0
- data/lib/alexandria/book_providers.rb +10 -25
- data/lib/alexandria/console.rb +2 -2
- data/lib/alexandria/default_preferences.rb +1 -1
- data/lib/alexandria/export_library.rb +14 -14
- data/lib/alexandria/image_fetcher.rb +25 -0
- data/lib/alexandria/import_library.rb +10 -10
- data/lib/alexandria/library_store.rb +4 -5
- data/lib/alexandria/models/book.rb +13 -0
- data/lib/alexandria/models/library.rb +15 -23
- data/lib/alexandria/preferences.rb +4 -6
- data/lib/alexandria/{book_providers/pseudomarc.rb → pseudo_marc_parser.rb} +2 -2
- data/lib/alexandria/scanners/cue_cat.rb +1 -1
- data/lib/alexandria/smart_library.rb +2 -2
- data/lib/alexandria/ui/about_dialog.rb +1 -1
- data/lib/alexandria/ui/acquire_dialog.rb +6 -9
- data/lib/alexandria/ui/alert_dialog.rb +2 -2
- data/lib/alexandria/ui/barcode_animation.rb +1 -1
- data/lib/alexandria/ui/book_properties_dialog_base.rb +5 -9
- data/lib/alexandria/ui/completion_models.rb +1 -5
- data/lib/alexandria/ui/conflict_while_copying_dialog.rb +1 -1
- data/lib/alexandria/ui/icons.rb +2 -2
- data/lib/alexandria/ui/init.rb +10 -4
- data/lib/alexandria/ui/listview.rb +1 -1
- data/lib/alexandria/ui/multi_drag_treeview.rb +1 -1
- data/lib/alexandria/ui/new_book_dialog.rb +11 -13
- data/lib/alexandria/ui/new_book_dialog_manual.rb +1 -1
- data/lib/alexandria/ui/preferences_dialog.rb +2 -2
- data/lib/alexandria/ui/provider_preferences_base_dialog.rb +1 -1
- data/lib/alexandria/ui/really_delete_dialog.rb +1 -1
- data/lib/alexandria/ui/ui_manager.rb +17 -25
- data/lib/alexandria/version.rb +1 -1
- data/lib/alexandria/web_themes.rb +1 -1
- data/lib/alexandria.rb +6 -5
- data/po/cs.po +90 -125
- data/po/cy.po +87 -125
- data/po/de.po +96 -125
- data/po/el.po +96 -125
- data/po/es.po +96 -125
- data/po/fr.po +90 -125
- data/po/ga.po +83 -124
- data/po/gl.po +90 -125
- data/po/it.po +90 -125
- data/po/ja.po +90 -125
- data/po/mk.po +96 -125
- data/po/nb.po +90 -125
- data/po/nl.po +107 -124
- data/po/pl.po +113 -124
- data/po/pt.po +90 -125
- data/po/pt_BR.po +90 -125
- data/po/ru.po +92 -124
- data/po/sk.po +90 -125
- data/po/sv.po +90 -125
- data/po/uk.po +90 -125
- data/po/zh_TW.po +90 -125
- data/schemas/alexandria.schemas +1 -1
- data/share/gnome/help/alexandria/C/adding-books.xml +3 -4
- data/share/gnome/help/alexandria/C/introduction.xml +0 -16
- data/share/gnome/help/alexandria/C/searching.xml +1 -4
- data/share/gnome/help/alexandria/C/settings.xml +0 -30
- data/share/gnome/help/alexandria/fr/alexandria.xml +4 -159
- data/share/gnome/help/alexandria/ja/adding-books.xml +1 -1
- data/share/gnome/help/alexandria/ja/introduction.xml +0 -15
- data/share/gnome/help/alexandria/ja/searching.xml +3 -7
- data/share/gnome/help/alexandria/ja/settings.xml +0 -27
- data/spec/alexandria/book_providers/bl_provider_spec.rb +13 -0
- data/spec/alexandria/book_providers/loc_provider_spec.rb +17 -0
- data/spec/alexandria/book_providers/sbn_provider_spec.rb +13 -0
- data/spec/alexandria/book_providers/thalia_provider_spec.rb +1 -1
- data/spec/alexandria/book_providers/world_cat_provider_spec.rb +22 -10
- data/spec/alexandria/book_providers_spec.rb +0 -81
- data/spec/alexandria/book_spec.rb +5 -3
- data/spec/alexandria/export_library_spec.rb +8 -8
- data/spec/alexandria/library_spec.rb +83 -51
- data/spec/alexandria/library_store_spec.rb +1 -1
- data/spec/alexandria/preferences_spec.rb +7 -7
- data/spec/alexandria/pseudo_marc_parser_spec.rb +71 -0
- data/spec/alexandria/scanners/cue_cat_spec.rb +11 -4
- data/spec/alexandria/smart_library_spec.rb +7 -5
- data/spec/alexandria/ui/about_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/acquire_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/alert_dialog_spec.rb +5 -3
- data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/book_properties_dialog_spec.rb +4 -4
- data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +18 -2
- data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/error_dialog_spec.rb +13 -2
- data/spec/alexandria/ui/export_dialog_spec.rb +3 -3
- data/spec/alexandria/ui/iconview_spec.rb +1 -1
- data/spec/alexandria/ui/import_dialog_spec.rb +3 -3
- data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +4 -4
- data/spec/alexandria/ui/new_book_dialog_spec.rb +2 -2
- data/spec/alexandria/ui/new_provider_dialog_spec.rb +3 -3
- data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +9 -7
- data/spec/alexandria/ui/preferences_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +2 -2
- data/spec/alexandria/ui/really_delete_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/sidepane_manager_spec.rb +1 -1
- data/spec/alexandria/ui/skip_entry_dialog_spec.rb +18 -2
- data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +2 -2
- data/spec/alexandria/ui/ui_manager_spec.rb +83 -5
- data/spec/data/libraries/0.6.2/My Library/9780571147168.yaml +2 -0
- data/spec/spec_helper.rb +23 -32
- data/util/rake/fileinstall.rb +12 -12
- data/util/rake/gettextgenerate.rb +1 -1
- data/util/rake/omfgenerate.rb +1 -1
- metadata +73 -58
- data/lib/alexandria/book_providers/adlibris.rb +0 -191
- data/lib/alexandria/book_providers/amazon_aws.rb +0 -239
- data/lib/alexandria/book_providers/amazon_ecs_util.rb +0 -373
- data/lib/alexandria/book_providers/barnes_and_noble.rb +0 -209
- data/lib/alexandria/book_providers/proxis.rb +0 -176
- data/lib/alexandria/book_providers/siciliano.rb +0 -256
- data/lib/alexandria/book_providers/z3950.rb +0 -408
data/po/pt_BR.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-
|
10
|
+
"POT-Creation-Date: 2020-12-26 12:17+0100\n"
|
11
11
|
"PO-Revision-Date: 2008-07-30 22:21-0000\n"
|
12
12
|
"Last-Translator: Ligia Moreira <ligia.moreira@netvisao.pt >\n"
|
13
13
|
"Language-Team: Lígia Moreira <ligia.moreira@netvisao.pt>\n"
|
@@ -23,17 +23,16 @@ msgstr ""
|
|
23
23
|
msgid "A program to help you manage your book collection."
|
24
24
|
msgstr "Um programa para o ajudar a gerenciar a sua coleção de livros."
|
25
25
|
|
26
|
-
#: ../lib/alexandria/book_providers.rb:
|
26
|
+
#: ../lib/alexandria/book_providers.rb:95
|
27
27
|
msgid "Couldn't reach the provider '%s': timeout expired."
|
28
28
|
msgstr ""
|
29
29
|
"Não foi possível contactar o fornecedor '%s': expirou o tempo de conexão."
|
30
30
|
|
31
|
-
#: ../lib/alexandria/book_providers.rb:
|
31
|
+
#: ../lib/alexandria/book_providers.rb:99
|
32
32
|
msgid "Couldn't reach the provider '%s': socket error (%s)."
|
33
33
|
msgstr "Não foi possível contactar o fornecedor '%s': erro de socket (%s)."
|
34
34
|
|
35
|
-
#: ../lib/alexandria/book_providers.rb:
|
36
|
-
#: ../lib/alexandria/book_providers.rb:104
|
35
|
+
#: ../lib/alexandria/book_providers.rb:103
|
37
36
|
msgid ""
|
38
37
|
"No results were found. Make sure your search criterion is spelled "
|
39
38
|
"correctly, and try again."
|
@@ -41,59 +40,18 @@ msgstr ""
|
|
41
40
|
"Nenhum resultado encontrado. Verifique a ortografia dos critérios da "
|
42
41
|
"pesquisa, e tente novamente."
|
43
42
|
|
44
|
-
#: ../lib/alexandria/book_providers.rb:
|
43
|
+
#: ../lib/alexandria/book_providers.rb:108
|
45
44
|
msgid "Too many results for that search."
|
46
45
|
msgstr "Resultados demasiadamente numerosos para esta pesquisa."
|
47
46
|
|
48
|
-
#: ../lib/alexandria/book_providers.rb:
|
47
|
+
#: ../lib/alexandria/book_providers.rb:111
|
49
48
|
msgid "Invalid search type."
|
50
49
|
msgstr "Tipo de pesquisa inválida."
|
51
50
|
|
52
|
-
#: ../lib/alexandria/book_providers.rb:
|
51
|
+
#: ../lib/alexandria/book_providers.rb:205
|
53
52
|
msgid "Enabled"
|
54
53
|
msgstr ""
|
55
54
|
|
56
|
-
#: ../lib/alexandria/book_providers/adlibris.rb:111
|
57
|
-
msgid "title not found on page"
|
58
|
-
msgstr ""
|
59
|
-
|
60
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:26
|
61
|
-
msgid "Locale"
|
62
|
-
msgstr "Local"
|
63
|
-
|
64
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:27
|
65
|
-
msgid "Access key ID"
|
66
|
-
msgstr ""
|
67
|
-
|
68
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:28
|
69
|
-
msgid "Secret access key"
|
70
|
-
msgstr ""
|
71
|
-
|
72
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:29
|
73
|
-
#, fuzzy
|
74
|
-
msgid "Associate Tag"
|
75
|
-
msgstr "Identidade de associado"
|
76
|
-
|
77
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:59
|
78
|
-
msgid "Provide secret key for your Amazon AWS account."
|
79
|
-
msgstr ""
|
80
|
-
|
81
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:149
|
82
|
-
msgid "No products"
|
83
|
-
msgstr ""
|
84
|
-
|
85
|
-
#: ../lib/alexandria/book_providers/amazon_ecs_util.rb:102
|
86
|
-
msgid "HTTP Response: %<code>s %<message>s"
|
87
|
-
msgstr ""
|
88
|
-
|
89
|
-
#: ../lib/alexandria/book_providers/amazon_ecs_util.rb:170
|
90
|
-
msgid "Invalid country '%<country>s'"
|
91
|
-
msgstr ""
|
92
|
-
|
93
|
-
#: ../lib/alexandria/book_providers/barnes_and_noble.rb:59
|
94
|
-
msgid "HTTP redirect too deep"
|
95
|
-
msgstr ""
|
96
|
-
|
97
55
|
#: ../lib/alexandria/book_providers/z3950.rb:22
|
98
56
|
msgid "Hostname"
|
99
57
|
msgstr "Anfitrião"
|
@@ -130,7 +88,7 @@ msgstr "Biblioteca do Congresso (Estados Unidos)"
|
|
130
88
|
msgid "British Library"
|
131
89
|
msgstr "Biblioteca Britânica"
|
132
90
|
|
133
|
-
#: ../lib/alexandria/book_providers/z3950.rb:
|
91
|
+
#: ../lib/alexandria/book_providers/z3950.rb:374
|
134
92
|
#, fuzzy
|
135
93
|
msgid "Invalid ISBN"
|
136
94
|
msgstr "ISBN '%s' inválido"
|
@@ -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:
|
168
|
+
#: ../lib/alexandria/models/library.rb:42
|
211
169
|
msgid "Untitled"
|
212
170
|
msgstr "Sem Título"
|
213
171
|
|
214
|
-
#: ../lib/alexandria/models/library.rb:
|
172
|
+
#: ../lib/alexandria/models/library.rb:284
|
215
173
|
msgid "Book %<isbn>s was already deleted"
|
216
174
|
msgstr ""
|
217
175
|
|
@@ -374,53 +332,53 @@ msgstr "não está em último"
|
|
374
332
|
msgid "invalid operand klass %<klass>s"
|
375
333
|
msgstr ""
|
376
334
|
|
377
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
335
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:206
|
378
336
|
msgid "There was %d duplicate"
|
379
337
|
msgid_plural "There were %d duplicates"
|
380
338
|
msgstr[0] ""
|
381
339
|
msgstr[1] ""
|
382
340
|
|
383
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
341
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:209
|
384
342
|
#, fuzzy
|
385
343
|
msgid "Couldn't add this book"
|
386
344
|
msgid_plural "Couldn't add these books"
|
387
345
|
msgstr[0] "Não foi possível adicionar o livro"
|
388
346
|
msgstr[1] "Não foi possível adicionar o livro"
|
389
347
|
|
390
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
391
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
348
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:288
|
349
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:498
|
392
350
|
msgid "Searching Provider '%s'..."
|
393
351
|
msgstr ""
|
394
352
|
|
395
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
396
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
353
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:289
|
354
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:499
|
397
355
|
msgid "Error while Searching Provider '%s'"
|
398
356
|
msgstr ""
|
399
357
|
|
400
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
401
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
358
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:290
|
359
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:500
|
402
360
|
msgid "Not Found at Provider '%s'"
|
403
361
|
msgstr ""
|
404
362
|
|
405
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
406
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
363
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:291
|
364
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:501
|
407
365
|
msgid "Found at Provider '%s'"
|
408
366
|
msgstr ""
|
409
367
|
|
410
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
368
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:403
|
411
369
|
msgid "Ready to use %s barcode scanner"
|
412
370
|
msgstr ""
|
413
371
|
|
414
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
372
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:427
|
415
373
|
msgid "Click below to scan _barcodes"
|
416
374
|
msgstr "Clique em baixo para fazer o scan do código de barras"
|
417
375
|
|
418
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
419
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
376
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:111
|
377
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:121
|
420
378
|
msgid "Couldn't modify the book"
|
421
379
|
msgstr "Não foi possível editar as propriedades do livro"
|
422
380
|
|
423
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
381
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:112
|
424
382
|
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:74
|
425
383
|
msgid ""
|
426
384
|
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
@@ -429,39 +387,39 @@ msgstr ""
|
|
429
387
|
"Não foi possível validar o EAN/ISBN. Verifique se o número está escrito "
|
430
388
|
"corretamente, e tente de novo."
|
431
389
|
|
432
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
390
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:122
|
433
391
|
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:79
|
434
392
|
msgid "The EAN/ISBN you provided is already used in this library."
|
435
393
|
msgstr "O EAN/ISBN fornecido já foi utilizado nesta biblioteca."
|
436
394
|
|
437
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
395
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:104
|
438
396
|
msgid "Properties"
|
439
397
|
msgstr "Propriedades"
|
440
398
|
|
441
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
399
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:106
|
442
400
|
#: ../lib/alexandria/ui/smart_library_properties_dialog.rb:21
|
443
401
|
msgid "Properties for '%s'"
|
444
402
|
msgstr "Propriedades para %s"
|
445
403
|
|
446
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
404
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:112
|
447
405
|
msgid "Author"
|
448
406
|
msgstr "Autor"
|
449
407
|
|
450
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
408
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:160
|
451
409
|
msgid "Select a cover image"
|
452
410
|
msgstr "Selecione uma imagem de capa"
|
453
411
|
|
454
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
412
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:163
|
455
413
|
msgid "No Cover"
|
456
414
|
msgstr "Sem Capa:"
|
457
415
|
|
458
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
416
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:242
|
459
417
|
msgid "%d day"
|
460
418
|
msgid_plural "%d days"
|
461
419
|
msgstr[0] "%d dia"
|
462
420
|
msgstr[1] "%d dias"
|
463
421
|
|
464
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
422
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:268
|
465
423
|
msgid "out of range"
|
466
424
|
msgstr ""
|
467
425
|
|
@@ -775,31 +733,31 @@ msgstr "_Pular"
|
|
775
733
|
msgid "If you replace the existing book, its contents will be overwritten."
|
776
734
|
msgstr "Se você substituir o livro existente, o seu conteúdo será sobrescrito."
|
777
735
|
|
778
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
736
|
+
#: ../lib/alexandria/ui/export_dialog.rb:24
|
779
737
|
msgid "Export '%s'"
|
780
738
|
msgstr "Exportar '%s'"
|
781
739
|
|
782
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
740
|
+
#: ../lib/alexandria/ui/export_dialog.rb:29
|
783
741
|
msgid "_Export"
|
784
742
|
msgstr "_Exportar"
|
785
743
|
|
786
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
744
|
+
#: ../lib/alexandria/ui/export_dialog.rb:50
|
787
745
|
msgid "_Theme:"
|
788
746
|
msgstr "_Tema:"
|
789
747
|
|
790
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
748
|
+
#: ../lib/alexandria/ui/export_dialog.rb:62
|
791
749
|
msgid "directory"
|
792
750
|
msgstr "diretório"
|
793
751
|
|
794
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
752
|
+
#: ../lib/alexandria/ui/export_dialog.rb:74
|
795
753
|
msgid "Export for_mat:"
|
796
754
|
msgstr "For_mato de exportação:"
|
797
755
|
|
798
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
756
|
+
#: ../lib/alexandria/ui/export_dialog.rb:101
|
799
757
|
msgid "Export failed"
|
800
758
|
msgstr "A exportação falhou"
|
801
759
|
|
802
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
760
|
+
#: ../lib/alexandria/ui/export_dialog.rb:125
|
803
761
|
msgid ""
|
804
762
|
"The target, named '%s', is a regular file. A directory is needed for this "
|
805
763
|
"operation. Please select a directory and try again."
|
@@ -807,7 +765,7 @@ msgstr ""
|
|
807
765
|
"O objeto, chamado '%s', é um arquivo comum. É necessário um diretório para "
|
808
766
|
"esta operação. Seleccionar um diretório e tente novamente."
|
809
767
|
|
810
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
768
|
+
#: ../lib/alexandria/ui/export_dialog.rb:129
|
811
769
|
msgid "Not a directory"
|
812
770
|
msgstr "Diretório necessário"
|
813
771
|
|
@@ -831,11 +789,11 @@ msgstr ""
|
|
831
789
|
"O formato do arquivo escolhido é desconhecido. Tente novamente com um outro "
|
832
790
|
"arquivo."
|
833
791
|
|
834
|
-
#: ../lib/alexandria/ui/init.rb:
|
792
|
+
#: ../lib/alexandria/ui/init.rb:70
|
835
793
|
msgid "Unable to launch the help browser"
|
836
794
|
msgstr "Não foi possível carregar a ajuda do navegador"
|
837
795
|
|
838
|
-
#: ../lib/alexandria/ui/init.rb:
|
796
|
+
#: ../lib/alexandria/ui/init.rb:71
|
839
797
|
msgid ""
|
840
798
|
"Could not display help for Alexandria. There was an error launching the "
|
841
799
|
"system help browser."
|
@@ -870,27 +828,27 @@ msgstr "Nova Biblioteca"
|
|
870
828
|
msgid "Loaned To"
|
871
829
|
msgstr "Emprestado"
|
872
830
|
|
873
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
831
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:155
|
874
832
|
msgid "A problem occurred while downloading images"
|
875
833
|
msgstr "Ocorreu um problema enquanto descarregava imagens"
|
876
834
|
|
877
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
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:
|
839
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:266
|
882
840
|
msgid "Unable to find matches for your search"
|
883
841
|
msgstr "Não foi possível encontrar resultados para a sua pesquisa"
|
884
842
|
|
885
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
843
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:302
|
886
844
|
msgid "%s, by %s"
|
887
845
|
msgstr "%s, por %s"
|
888
846
|
|
889
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
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:
|
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
|
"Não foi possível validar o EAN/ISBN. Verifique se o número está escrito "
|
899
857
|
"corretamente, e tente de novo."
|
900
858
|
|
901
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
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 "Não foi possível adicionar o livro"
|
905
863
|
|
906
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
864
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:570
|
907
865
|
msgid "'%s' already exists in '%s' (titled '%s')."
|
908
866
|
msgstr "'%s' já existe em '%s' (entitulado '%s')."
|
909
867
|
|
@@ -1029,15 +987,15 @@ msgstr "Erro de importação"
|
|
1029
987
|
msgid "_Continue"
|
1030
988
|
msgstr "_Continuar"
|
1031
989
|
|
1032
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
990
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:97
|
1033
991
|
msgid "Empty or conflictive condition"
|
1034
992
|
msgstr "Condição e vazio ou de conflito"
|
1035
993
|
|
1036
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
994
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
|
1037
995
|
msgid "_Save However"
|
1038
996
|
msgstr "_Salvar assim mesmo"
|
1039
997
|
|
1040
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
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
|
"coflito umas com as outras. Isto resulta em não fazer a correspondência de "
|
1048
1006
|
"nenhum livro. Tem a certeza que quer salvar esta biblioteca?"
|
1049
1007
|
|
1050
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1008
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:118
|
1051
1009
|
msgid "Match"
|
1052
1010
|
msgstr "Corresponde"
|
1053
1011
|
|
1054
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1012
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
|
1055
1013
|
msgid "all"
|
1056
1014
|
msgstr "todos (as)"
|
1057
1015
|
|
1058
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1016
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
|
1059
1017
|
msgid "any"
|
1060
1018
|
msgstr "nenhum (a)"
|
1061
1019
|
|
1062
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1020
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:131
|
1063
1021
|
msgid "of the following rules:"
|
1064
1022
|
msgstr "das regras seguintes:"
|
1065
1023
|
|
1066
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1024
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:139
|
1067
1025
|
msgid "Match the following rule:"
|
1068
1026
|
msgstr "Corresponder a seguinte regra:"
|
1069
1027
|
|
1070
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1028
|
+
#: ../lib/alexandria/ui/ui_manager.rb:132
|
1071
1029
|
msgid "Type here the search criterion"
|
1072
1030
|
msgstr "Escreva aqui os critérios da pesquisa"
|
1073
1031
|
|
1074
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1032
|
+
#: ../lib/alexandria/ui/ui_manager.rb:143
|
1075
1033
|
msgid "Match everything"
|
1076
1034
|
msgstr "Corresponder tudo"
|
1077
1035
|
|
1078
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1036
|
+
#: ../lib/alexandria/ui/ui_manager.rb:145
|
1079
1037
|
msgid "Title contains"
|
1080
1038
|
msgstr "O título contém"
|
1081
1039
|
|
1082
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1040
|
+
#: ../lib/alexandria/ui/ui_manager.rb:146
|
1083
1041
|
msgid "Authors contain"
|
1084
1042
|
msgstr "Os autores contêm"
|
1085
1043
|
|
1086
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1044
|
+
#: ../lib/alexandria/ui/ui_manager.rb:147
|
1087
1045
|
msgid "ISBN contains"
|
1088
1046
|
msgstr "O ISBN contém"
|
1089
1047
|
|
1090
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1048
|
+
#: ../lib/alexandria/ui/ui_manager.rb:148
|
1091
1049
|
msgid "Publisher contains"
|
1092
1050
|
msgstr "O editor contém"
|
1093
1051
|
|
1094
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1052
|
+
#: ../lib/alexandria/ui/ui_manager.rb:149
|
1095
1053
|
msgid "Notes contain"
|
1096
1054
|
msgstr "As anotações contêm"
|
1097
1055
|
|
1098
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1056
|
+
#: ../lib/alexandria/ui/ui_manager.rb:150
|
1099
1057
|
msgid "Tags contain"
|
1100
1058
|
msgstr "As etiquetas contêm"
|
1101
1059
|
|
1102
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1060
|
+
#: ../lib/alexandria/ui/ui_manager.rb:164
|
1103
1061
|
msgid "Change the search type"
|
1104
1062
|
msgstr "Modifique o tipo de pesquisa."
|
1105
1063
|
|
1106
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1064
|
+
#: ../lib/alexandria/ui/ui_manager.rb:169
|
1107
1065
|
msgid "View as Icons"
|
1108
1066
|
msgstr "Ver como ícones"
|
1109
1067
|
|
1110
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1068
|
+
#: ../lib/alexandria/ui/ui_manager.rb:170
|
1111
1069
|
msgid "View as List"
|
1112
1070
|
msgstr "Ver como lista"
|
1113
1071
|
|
1114
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1072
|
+
#: ../lib/alexandria/ui/ui_manager.rb:184
|
1115
1073
|
msgid "Choose how to show books"
|
1116
1074
|
msgstr "Escolha como mostrar os livros"
|
1117
1075
|
|
1118
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1076
|
+
#: ../lib/alexandria/ui/ui_manager.rb:407
|
1119
1077
|
msgid "Library '%s' selected"
|
1120
1078
|
msgstr "Biblioteca '%s' selecionada"
|
1121
1079
|
|
1122
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
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] "Biblioteca '%s' selecionada, %d livro não classificado"
|
1126
1084
|
msgstr[1] "Biblioteca '%s' selecionada, %d livros não classificados"
|
1127
1085
|
|
1128
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
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] "Biblioteca '%s' selecionada, %d livro"
|
1132
1090
|
msgstr[1] "Biblioteca '%s' selecionada, %d livros"
|
1133
1091
|
|
1134
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
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] "Biblioteca '%s' selecionada, %d livro"
|
1138
1096
|
msgstr[1] "Biblioteca '%s' selecionada, %d livros, %d não classificados"
|
1139
1097
|
|
1140
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1098
|
+
#: ../lib/alexandria/ui/ui_manager.rb:434
|
1141
1099
|
msgid "'%s' selected"
|
1142
1100
|
msgstr "'%s' selecionado"
|
1143
1101
|
|
1144
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
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] "%d livro selecionado"
|
1148
1106
|
msgstr[1] "%d livros selecionados"
|
1149
1107
|
|
1150
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
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:
|
1112
|
+
#: ../lib/alexandria/ui/ui_manager.rb:597
|
1155
1113
|
#, fuzzy
|
1156
1114
|
msgid "Loading libraries..."
|
1157
1115
|
msgstr "Carregando '%s'..."
|
1158
1116
|
|
1159
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
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
|
"Quer tentar descarregar nova informação para eles a partir dos fornecedores "
|
1167
1125
|
"de livros online?\n"
|
1168
1126
|
|
1169
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1127
|
+
#: ../lib/alexandria/ui/ui_manager.rb:666
|
1170
1128
|
msgid "Added '%s' to library '%s'"
|
1171
1129
|
msgstr "Adicionados '%s' à biblioteca '%s'"
|
1172
1130
|
|
1173
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1131
|
+
#: ../lib/alexandria/ui/ui_manager.rb:815
|
1174
1132
|
msgid "Loading '%s'..."
|
1175
1133
|
msgstr "Carregando '%s'..."
|
1176
1134
|
|
1177
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1135
|
+
#: ../lib/alexandria/ui/ui_manager.rb:1045
|
1178
1136
|
msgid "In '_%s'"
|
1179
1137
|
msgstr "Em '_%s'"
|
1180
1138
|
|
@@ -1424,6 +1382,13 @@ msgstr "Gerenciador de coleções de livros"
|
|
1424
1382
|
msgid "Manage your book collection"
|
1425
1383
|
msgstr "Gerencie a sua coleção de livros"
|
1426
1384
|
|
1385
|
+
#~ msgid "Locale"
|
1386
|
+
#~ msgstr "Local"
|
1387
|
+
|
1388
|
+
#, fuzzy
|
1389
|
+
#~ msgid "Associate Tag"
|
1390
|
+
#~ msgstr "Identidade de associado"
|
1391
|
+
|
1427
1392
|
#~ msgid "Unable to launch the web browser"
|
1428
1393
|
#~ msgstr "Não foi possível lançar o navegador web"
|
1429
1394
|
|