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/it.po
CHANGED
@@ -8,7 +8,7 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: 0.6.3\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"POT-Creation-Date: 2020-
|
11
|
+
"POT-Creation-Date: 2020-12-26 12:17+0100\n"
|
12
12
|
"PO-Revision-Date: 2008-11-04 23:32+0100\n"
|
13
13
|
"Last-Translator: Giacomo Margarito <giacomomargarito@gmail.com>\n"
|
14
14
|
"Language-Team: Alexandria\n"
|
@@ -22,16 +22,15 @@ msgstr ""
|
|
22
22
|
msgid "A program to help you manage your book collection."
|
23
23
|
msgstr "Un programma per gestire la vostra collezione di libri."
|
24
24
|
|
25
|
-
#: ../lib/alexandria/book_providers.rb:
|
25
|
+
#: ../lib/alexandria/book_providers.rb:95
|
26
26
|
msgid "Couldn't reach the provider '%s': timeout expired."
|
27
27
|
msgstr "Impossibile raggiungere il provider '%s': tempo scaduto."
|
28
28
|
|
29
|
-
#: ../lib/alexandria/book_providers.rb:
|
29
|
+
#: ../lib/alexandria/book_providers.rb:99
|
30
30
|
msgid "Couldn't reach the provider '%s': socket error (%s)."
|
31
31
|
msgstr "Impossibile raggiungere il provider '%s': errore del socket (%s)."
|
32
32
|
|
33
|
-
#: ../lib/alexandria/book_providers.rb:
|
34
|
-
#: ../lib/alexandria/book_providers.rb:104
|
33
|
+
#: ../lib/alexandria/book_providers.rb:103
|
35
34
|
msgid ""
|
36
35
|
"No results were found. Make sure your search criterion is spelled "
|
37
36
|
"correctly, and try again."
|
@@ -39,59 +38,18 @@ msgstr ""
|
|
39
38
|
"Nessun risultato. Controllare di aver scritto correttamente il criterio di "
|
40
39
|
"ricerca e riprovare."
|
41
40
|
|
42
|
-
#: ../lib/alexandria/book_providers.rb:
|
41
|
+
#: ../lib/alexandria/book_providers.rb:108
|
43
42
|
msgid "Too many results for that search."
|
44
43
|
msgstr "Troppi risultati per questa ricerca."
|
45
44
|
|
46
|
-
#: ../lib/alexandria/book_providers.rb:
|
45
|
+
#: ../lib/alexandria/book_providers.rb:111
|
47
46
|
msgid "Invalid search type."
|
48
47
|
msgstr "Tipo di ricerca non valido."
|
49
48
|
|
50
|
-
#: ../lib/alexandria/book_providers.rb:
|
49
|
+
#: ../lib/alexandria/book_providers.rb:205
|
51
50
|
msgid "Enabled"
|
52
51
|
msgstr ""
|
53
52
|
|
54
|
-
#: ../lib/alexandria/book_providers/adlibris.rb:111
|
55
|
-
msgid "title not found on page"
|
56
|
-
msgstr ""
|
57
|
-
|
58
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:26
|
59
|
-
msgid "Locale"
|
60
|
-
msgstr "Lingua"
|
61
|
-
|
62
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:27
|
63
|
-
msgid "Access key ID"
|
64
|
-
msgstr ""
|
65
|
-
|
66
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:28
|
67
|
-
msgid "Secret access key"
|
68
|
-
msgstr ""
|
69
|
-
|
70
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:29
|
71
|
-
#, fuzzy
|
72
|
-
msgid "Associate Tag"
|
73
|
-
msgstr "ID associato"
|
74
|
-
|
75
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:59
|
76
|
-
msgid "Provide secret key for your Amazon AWS account."
|
77
|
-
msgstr ""
|
78
|
-
|
79
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:149
|
80
|
-
msgid "No products"
|
81
|
-
msgstr ""
|
82
|
-
|
83
|
-
#: ../lib/alexandria/book_providers/amazon_ecs_util.rb:102
|
84
|
-
msgid "HTTP Response: %<code>s %<message>s"
|
85
|
-
msgstr ""
|
86
|
-
|
87
|
-
#: ../lib/alexandria/book_providers/amazon_ecs_util.rb:170
|
88
|
-
msgid "Invalid country '%<country>s'"
|
89
|
-
msgstr ""
|
90
|
-
|
91
|
-
#: ../lib/alexandria/book_providers/barnes_and_noble.rb:59
|
92
|
-
msgid "HTTP redirect too deep"
|
93
|
-
msgstr ""
|
94
|
-
|
95
53
|
#: ../lib/alexandria/book_providers/z3950.rb:22
|
96
54
|
msgid "Hostname"
|
97
55
|
msgstr "Nome host"
|
@@ -128,7 +86,7 @@ msgstr "Library of Congress (USA)"
|
|
128
86
|
msgid "British Library"
|
129
87
|
msgstr "British Library"
|
130
88
|
|
131
|
-
#: ../lib/alexandria/book_providers/z3950.rb:
|
89
|
+
#: ../lib/alexandria/book_providers/z3950.rb:374
|
132
90
|
#, fuzzy
|
133
91
|
msgid "Invalid ISBN"
|
134
92
|
msgstr "Codice ISBN '%s' non valido"
|
@@ -205,11 +163,11 @@ msgstr ""
|
|
205
163
|
msgid "%<file>s pub year is not okay"
|
206
164
|
msgstr ""
|
207
165
|
|
208
|
-
#: ../lib/alexandria/models/library.rb:
|
166
|
+
#: ../lib/alexandria/models/library.rb:42
|
209
167
|
msgid "Untitled"
|
210
168
|
msgstr "Senza titolo"
|
211
169
|
|
212
|
-
#: ../lib/alexandria/models/library.rb:
|
170
|
+
#: ../lib/alexandria/models/library.rb:284
|
213
171
|
msgid "Book %<isbn>s was already deleted"
|
214
172
|
msgstr ""
|
215
173
|
|
@@ -372,53 +330,53 @@ msgstr "non è nell'ultimo"
|
|
372
330
|
msgid "invalid operand klass %<klass>s"
|
373
331
|
msgstr ""
|
374
332
|
|
375
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
333
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:206
|
376
334
|
msgid "There was %d duplicate"
|
377
335
|
msgid_plural "There were %d duplicates"
|
378
336
|
msgstr[0] ""
|
379
337
|
msgstr[1] ""
|
380
338
|
|
381
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
339
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:209
|
382
340
|
#, fuzzy
|
383
341
|
msgid "Couldn't add this book"
|
384
342
|
msgid_plural "Couldn't add these books"
|
385
343
|
msgstr[0] "Impossibile aggiungere il libro"
|
386
344
|
msgstr[1] "Impossibile aggiungere il libro"
|
387
345
|
|
388
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
389
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
346
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:288
|
347
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:498
|
390
348
|
msgid "Searching Provider '%s'..."
|
391
349
|
msgstr ""
|
392
350
|
|
393
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
394
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
351
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:289
|
352
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:499
|
395
353
|
msgid "Error while Searching Provider '%s'"
|
396
354
|
msgstr ""
|
397
355
|
|
398
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
399
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
356
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:290
|
357
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:500
|
400
358
|
msgid "Not Found at Provider '%s'"
|
401
359
|
msgstr ""
|
402
360
|
|
403
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
404
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
361
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:291
|
362
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:501
|
405
363
|
msgid "Found at Provider '%s'"
|
406
364
|
msgstr ""
|
407
365
|
|
408
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
366
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:403
|
409
367
|
msgid "Ready to use %s barcode scanner"
|
410
368
|
msgstr ""
|
411
369
|
|
412
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
370
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:427
|
413
371
|
msgid "Click below to scan _barcodes"
|
414
372
|
msgstr "Clicca qui sotto per esaminare i _codici a barre"
|
415
373
|
|
416
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
417
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
374
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:111
|
375
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:121
|
418
376
|
msgid "Couldn't modify the book"
|
419
377
|
msgstr "Impossibile modificare il libro"
|
420
378
|
|
421
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
379
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:112
|
422
380
|
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:74
|
423
381
|
msgid ""
|
424
382
|
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
@@ -427,39 +385,39 @@ msgstr ""
|
|
427
385
|
"Impossibile convalidare il codice EAN/ISBN fornito. Assicurarsi di averlo "
|
428
386
|
"scritto correttamente e riprovare."
|
429
387
|
|
430
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
388
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:122
|
431
389
|
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:79
|
432
390
|
msgid "The EAN/ISBN you provided is already used in this library."
|
433
391
|
msgstr "Il codice EAN/ISBN fornito è già in uso in questa biblioteca."
|
434
392
|
|
435
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
393
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:104
|
436
394
|
msgid "Properties"
|
437
395
|
msgstr "Proprietà"
|
438
396
|
|
439
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
397
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:106
|
440
398
|
#: ../lib/alexandria/ui/smart_library_properties_dialog.rb:21
|
441
399
|
msgid "Properties for '%s'"
|
442
400
|
msgstr "Proprietà per %s"
|
443
401
|
|
444
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
402
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:112
|
445
403
|
msgid "Author"
|
446
404
|
msgstr "Autore"
|
447
405
|
|
448
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
406
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:160
|
449
407
|
msgid "Select a cover image"
|
450
408
|
msgstr "Seleziona un'immagine di copertina"
|
451
409
|
|
452
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
410
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:163
|
453
411
|
msgid "No Cover"
|
454
412
|
msgstr "Nessuna copertina"
|
455
413
|
|
456
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
414
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:242
|
457
415
|
msgid "%d day"
|
458
416
|
msgid_plural "%d days"
|
459
417
|
msgstr[0] "%d giorno"
|
460
418
|
msgstr[1] "%d giorni"
|
461
419
|
|
462
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
420
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:268
|
463
421
|
msgid "out of range"
|
464
422
|
msgstr ""
|
465
423
|
|
@@ -775,31 +733,31 @@ msgid "If you replace the existing book, its contents will be overwritten."
|
|
775
733
|
msgstr ""
|
776
734
|
"Rimpiazzando il libro esistente i suoi contenuti verranno sovrascritti."
|
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 "Esporta '%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 "_Esporta"
|
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 "cartella"
|
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 di esportazione:"
|
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 "Esportazione fallita"
|
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
|
"La destinazione, chiamata '%s', è un file. Per questa operazione è "
|
808
766
|
"necessario specificare una cartella. Selezionare una cartella e riprovare. "
|
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 "Non è una cartella"
|
813
771
|
|
@@ -831,11 +789,11 @@ msgstr ""
|
|
831
789
|
"Il formato del file selezionato è sconosciuto. Si prega di provare con un "
|
832
790
|
"altro file."
|
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 "Impossibile avviare il navigatore della guida"
|
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."
|
@@ -871,27 +829,27 @@ msgstr "Nuova Biblioteca"
|
|
871
829
|
msgid "Loaned To"
|
872
830
|
msgstr "Prestato"
|
873
831
|
|
874
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
832
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:155
|
875
833
|
msgid "A problem occurred while downloading images"
|
876
834
|
msgstr "Ci sono stati problemi durante lo scaricamento delle immagini"
|
877
835
|
|
878
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
836
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:194
|
879
837
|
msgid "Iter is invalid! %s"
|
880
838
|
msgstr ""
|
881
839
|
|
882
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
840
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:266
|
883
841
|
msgid "Unable to find matches for your search"
|
884
842
|
msgstr "Impossibile trovare una corrispondenza per la ricerca"
|
885
843
|
|
886
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
844
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:302
|
887
845
|
msgid "%s, by %s"
|
888
846
|
msgstr "%s, di %s"
|
889
847
|
|
890
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
848
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:308
|
891
849
|
msgid "Copying %s into tree view."
|
892
850
|
msgstr ""
|
893
851
|
|
894
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
852
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:336
|
895
853
|
msgid ""
|
896
854
|
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
897
855
|
"correctly, and try again."
|
@@ -899,12 +857,12 @@ msgstr ""
|
|
899
857
|
"Impossibile convalidare il codice EAN/ISBN fornito. Assicurarsi di averlo "
|
900
858
|
"scritto correttamente e riprovare."
|
901
859
|
|
902
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
860
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:464
|
903
861
|
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:119
|
904
862
|
msgid "Couldn't add the book"
|
905
863
|
msgstr "Impossibile aggiungere il libro"
|
906
864
|
|
907
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
865
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:570
|
908
866
|
msgid "'%s' already exists in '%s' (titled '%s')."
|
909
867
|
msgstr "'%s' esiste già in '%s' (con il titolo '%s')."
|
910
868
|
|
@@ -1030,15 +988,15 @@ msgstr "Errore durante l'importazione"
|
|
1030
988
|
msgid "_Continue"
|
1031
989
|
msgstr "_Continua"
|
1032
990
|
|
1033
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
991
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:97
|
1034
992
|
msgid "Empty or conflictive condition"
|
1035
993
|
msgstr "Condizione vuota o conflittuale "
|
1036
994
|
|
1037
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
995
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
|
1038
996
|
msgid "_Save However"
|
1039
997
|
msgstr "_Salva comunque"
|
1040
998
|
|
1041
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
999
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:101
|
1042
1000
|
msgid ""
|
1043
1001
|
"This smart library contains one or more conditions which are empty or "
|
1044
1002
|
"conflict with each other. This is likely to result in never matching a book. "
|
@@ -1048,116 +1006,116 @@ msgstr ""
|
|
1048
1006
|
"conflitto con altre. Questo di solito succede quando non si è mai trovato un "
|
1049
1007
|
"riscontro per il libro. Siete sicuri di voler salvare questa biblioteca?"
|
1050
1008
|
|
1051
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1009
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:118
|
1052
1010
|
msgid "Match"
|
1053
1011
|
msgstr "Corrisponde"
|
1054
1012
|
|
1055
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1013
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
|
1056
1014
|
msgid "all"
|
1057
1015
|
msgstr "tutto"
|
1058
1016
|
|
1059
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1017
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
|
1060
1018
|
msgid "any"
|
1061
1019
|
msgstr "niente"
|
1062
1020
|
|
1063
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1021
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:131
|
1064
1022
|
msgid "of the following rules:"
|
1065
1023
|
msgstr "della seguente regola:"
|
1066
1024
|
|
1067
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1025
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:139
|
1068
1026
|
msgid "Match the following rule:"
|
1069
1027
|
msgstr "Corrisponde alla seguente regola:"
|
1070
1028
|
|
1071
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1029
|
+
#: ../lib/alexandria/ui/ui_manager.rb:132
|
1072
1030
|
msgid "Type here the search criterion"
|
1073
1031
|
msgstr "Scrivi qui il criterio di ricerca"
|
1074
1032
|
|
1075
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1033
|
+
#: ../lib/alexandria/ui/ui_manager.rb:143
|
1076
1034
|
msgid "Match everything"
|
1077
1035
|
msgstr "Trova tutto"
|
1078
1036
|
|
1079
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1037
|
+
#: ../lib/alexandria/ui/ui_manager.rb:145
|
1080
1038
|
msgid "Title contains"
|
1081
1039
|
msgstr "Il Titolo contiene"
|
1082
1040
|
|
1083
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1041
|
+
#: ../lib/alexandria/ui/ui_manager.rb:146
|
1084
1042
|
msgid "Authors contain"
|
1085
1043
|
msgstr "L'Autore contiene"
|
1086
1044
|
|
1087
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1045
|
+
#: ../lib/alexandria/ui/ui_manager.rb:147
|
1088
1046
|
msgid "ISBN contains"
|
1089
1047
|
msgstr "L'ISBN contiene"
|
1090
1048
|
|
1091
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1049
|
+
#: ../lib/alexandria/ui/ui_manager.rb:148
|
1092
1050
|
msgid "Publisher contains"
|
1093
1051
|
msgstr "L'Editore contiene"
|
1094
1052
|
|
1095
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1053
|
+
#: ../lib/alexandria/ui/ui_manager.rb:149
|
1096
1054
|
msgid "Notes contain"
|
1097
1055
|
msgstr "Le Note contengono"
|
1098
1056
|
|
1099
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1057
|
+
#: ../lib/alexandria/ui/ui_manager.rb:150
|
1100
1058
|
msgid "Tags contain"
|
1101
1059
|
msgstr "I tags contengono"
|
1102
1060
|
|
1103
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1061
|
+
#: ../lib/alexandria/ui/ui_manager.rb:164
|
1104
1062
|
msgid "Change the search type"
|
1105
1063
|
msgstr "Cambia il tipo di ricerca"
|
1106
1064
|
|
1107
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1065
|
+
#: ../lib/alexandria/ui/ui_manager.rb:169
|
1108
1066
|
msgid "View as Icons"
|
1109
1067
|
msgstr "Visualizza come Icone"
|
1110
1068
|
|
1111
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1069
|
+
#: ../lib/alexandria/ui/ui_manager.rb:170
|
1112
1070
|
msgid "View as List"
|
1113
1071
|
msgstr "Visualizza come Lista"
|
1114
1072
|
|
1115
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1073
|
+
#: ../lib/alexandria/ui/ui_manager.rb:184
|
1116
1074
|
msgid "Choose how to show books"
|
1117
1075
|
msgstr "Scegli come mostrare i libri"
|
1118
1076
|
|
1119
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1077
|
+
#: ../lib/alexandria/ui/ui_manager.rb:407
|
1120
1078
|
msgid "Library '%s' selected"
|
1121
1079
|
msgstr "Biblioteca '%s' selezionata"
|
1122
1080
|
|
1123
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1081
|
+
#: ../lib/alexandria/ui/ui_manager.rb:412
|
1124
1082
|
msgid "Library '%s' selected, %d unrated book"
|
1125
1083
|
msgid_plural "Library '%s' selected, %d unrated books"
|
1126
1084
|
msgstr[0] "Selezionata la biblioteca '%s', %d libro non valutato"
|
1127
1085
|
msgstr[1] "Selezionata la biblioteca '%s', %d libri non valutati"
|
1128
1086
|
|
1129
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1087
|
+
#: ../lib/alexandria/ui/ui_manager.rb:416
|
1130
1088
|
msgid "Library '%s' selected, %d book"
|
1131
1089
|
msgid_plural "Library '%s' selected, %d books"
|
1132
1090
|
msgstr[0] "Selezionata la biblioteca '%s', %d libro"
|
1133
1091
|
msgstr[1] "Selezionata la biblioteca '%s', %d libri"
|
1134
1092
|
|
1135
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1093
|
+
#: ../lib/alexandria/ui/ui_manager.rb:420
|
1136
1094
|
msgid "Library '%s' selected, %d book, %d unrated"
|
1137
1095
|
msgid_plural "Library '%s' selected, %d books, %d unrated"
|
1138
1096
|
msgstr[0] "Selezionata la biblioteca '%s', %d libro, %d non valutato"
|
1139
1097
|
msgstr[1] "Selezionata la biblioteca '%s', %d libri, %d non valutati"
|
1140
1098
|
|
1141
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1099
|
+
#: ../lib/alexandria/ui/ui_manager.rb:434
|
1142
1100
|
msgid "'%s' selected"
|
1143
1101
|
msgstr "'%s' selezionato"
|
1144
1102
|
|
1145
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1103
|
+
#: ../lib/alexandria/ui/ui_manager.rb:436
|
1146
1104
|
msgid "%d book selected"
|
1147
1105
|
msgid_plural "%d books selected"
|
1148
1106
|
msgstr[0] "%d libro selezionato"
|
1149
1107
|
msgstr[1] "%d libri selezionati"
|
1150
1108
|
|
1151
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1109
|
+
#: ../lib/alexandria/ui/ui_manager.rb:552
|
1152
1110
|
msgid "unrecognized update event"
|
1153
1111
|
msgstr ""
|
1154
1112
|
|
1155
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1113
|
+
#: ../lib/alexandria/ui/ui_manager.rb:597
|
1156
1114
|
#, fuzzy
|
1157
1115
|
msgid "Loading libraries..."
|
1158
1116
|
msgstr "Caricamento di '%s'..."
|
1159
1117
|
|
1160
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1118
|
+
#: ../lib/alexandria/ui/ui_manager.rb:614
|
1161
1119
|
msgid ""
|
1162
1120
|
"The data files for the following books are malformed or empty. Do you wish "
|
1163
1121
|
"to attempt to download new information for them from the online book "
|
@@ -1167,15 +1125,15 @@ msgstr ""
|
|
1167
1125
|
"Desiderate tentare di scaricare le nuove informazioni dai provider dei libri "
|
1168
1126
|
"onlines?\n"
|
1169
1127
|
|
1170
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1128
|
+
#: ../lib/alexandria/ui/ui_manager.rb:666
|
1171
1129
|
msgid "Added '%s' to library '%s'"
|
1172
1130
|
msgstr "Aggiunto '%s' alla bblioteca '%s'"
|
1173
1131
|
|
1174
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1132
|
+
#: ../lib/alexandria/ui/ui_manager.rb:815
|
1175
1133
|
msgid "Loading '%s'..."
|
1176
1134
|
msgstr "Caricamento di '%s'..."
|
1177
1135
|
|
1178
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1136
|
+
#: ../lib/alexandria/ui/ui_manager.rb:1045
|
1179
1137
|
msgid "In '_%s'"
|
1180
1138
|
msgstr "In '_%s'"
|
1181
1139
|
|
@@ -1425,6 +1383,13 @@ msgstr "Gestore biblioteca"
|
|
1425
1383
|
msgid "Manage your book collection"
|
1426
1384
|
msgstr "Gestisce la vostra biblioteca"
|
1427
1385
|
|
1386
|
+
#~ msgid "Locale"
|
1387
|
+
#~ msgstr "Lingua"
|
1388
|
+
|
1389
|
+
#, fuzzy
|
1390
|
+
#~ msgid "Associate Tag"
|
1391
|
+
#~ msgstr "ID associato"
|
1392
|
+
|
1428
1393
|
#~ msgid "Unable to launch the web browser"
|
1429
1394
|
#~ msgstr "Impossibile avviare il navigatore web"
|
1430
1395
|
|