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/fr.po
CHANGED
@@ -8,7 +8,7 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: alexandria 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-07-31 00:16+0100\n"
|
13
13
|
"Last-Translator: Ligia Moreira <ligia.moreira@netvisao.pt >\n"
|
14
14
|
"Language-Team: Lígia Moreira <ligia.moreira@netvisao.pt>\n"
|
@@ -24,16 +24,15 @@ msgstr ""
|
|
24
24
|
msgid "A program to help you manage your book collection."
|
25
25
|
msgstr "Un programme pour vous aider à gérer votre collection de livres."
|
26
26
|
|
27
|
-
#: ../lib/alexandria/book_providers.rb:
|
27
|
+
#: ../lib/alexandria/book_providers.rb:95
|
28
28
|
msgid "Couldn't reach the provider '%s': timeout expired."
|
29
29
|
msgstr "Impossible de joindre le fournisseur '%s': durée maximale dépassée."
|
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 "Impossible de joindre le fournisseur '%s': erreur 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
|
"Aucun résultat trouvé. Vérifiez l'orthographe des critères de la recherche, "
|
42
41
|
"et ré-essayez encore."
|
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 "Trop de résultats pour cette recherche."
|
47
46
|
|
48
|
-
#: ../lib/alexandria/book_providers.rb:
|
47
|
+
#: ../lib/alexandria/book_providers.rb:111
|
49
48
|
msgid "Invalid search type."
|
50
49
|
msgstr "Type de recherche invalide."
|
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 "Langue"
|
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 "Identifiant d'associé"
|
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 "Nom d'hôte"
|
@@ -130,7 +88,7 @@ msgstr "Bibliothèque du Congrès (États-Unis)"
|
|
130
88
|
msgid "British Library"
|
131
89
|
msgstr "Bibliothèque britannique"
|
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' invalide"
|
@@ -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 "Sans Titre"
|
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 "ne se situe pas en fin"
|
|
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] "Impossible d'ajouter le livre"
|
388
346
|
msgstr[1] "Impossible d'ajouter le livre"
|
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 "Cliquez ci-dessous pour lire _la barre de code rapidement"
|
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 "Impossible d'éditer les propriétés du livre"
|
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
|
"Impossible de valider la donnée EAN/ISBN. Vérifiez que le numéro est écrit "
|
430
388
|
"correctement, et ré-essayez."
|
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 "La donnée EAN/ISBN fournie est déjà utilisée dans cette bibliothèque."
|
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 "Propriétés"
|
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 "Préférences pour '%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 "Auteur"
|
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 "Sélectionnez une image de couverture"
|
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 "Aucune couverture"
|
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 jour"
|
462
420
|
msgstr[1] "%d jours"
|
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
|
|
@@ -777,31 +735,31 @@ msgstr "_Passer"
|
|
777
735
|
msgid "If you replace the existing book, its contents will be overwritten."
|
778
736
|
msgstr "Si vous remplacez le livre existant, son contenu sera écrasé."
|
779
737
|
|
780
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
738
|
+
#: ../lib/alexandria/ui/export_dialog.rb:24
|
781
739
|
msgid "Export '%s'"
|
782
740
|
msgstr "Exporter '%s'"
|
783
741
|
|
784
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
742
|
+
#: ../lib/alexandria/ui/export_dialog.rb:29
|
785
743
|
msgid "_Export"
|
786
744
|
msgstr "_Exporter"
|
787
745
|
|
788
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
746
|
+
#: ../lib/alexandria/ui/export_dialog.rb:50
|
789
747
|
msgid "_Theme:"
|
790
748
|
msgstr "_Thème :"
|
791
749
|
|
792
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
750
|
+
#: ../lib/alexandria/ui/export_dialog.rb:62
|
793
751
|
msgid "directory"
|
794
752
|
msgstr "répertoire"
|
795
753
|
|
796
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
754
|
+
#: ../lib/alexandria/ui/export_dialog.rb:74
|
797
755
|
msgid "Export for_mat:"
|
798
756
|
msgstr "For_mat d'export :"
|
799
757
|
|
800
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
758
|
+
#: ../lib/alexandria/ui/export_dialog.rb:101
|
801
759
|
msgid "Export failed"
|
802
760
|
msgstr "L'export a echoué"
|
803
761
|
|
804
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
762
|
+
#: ../lib/alexandria/ui/export_dialog.rb:125
|
805
763
|
msgid ""
|
806
764
|
"The target, named '%s', is a regular file. A directory is needed for this "
|
807
765
|
"operation. Please select a directory and try again."
|
@@ -809,7 +767,7 @@ msgstr ""
|
|
809
767
|
"La cible, nommé '%s', est un fichier régulier. Un répertoire est nécessaire "
|
810
768
|
"pour cette opération. Veuillez sélectionner un répertoire et ré-essayez."
|
811
769
|
|
812
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
770
|
+
#: ../lib/alexandria/ui/export_dialog.rb:129
|
813
771
|
msgid "Not a directory"
|
814
772
|
msgstr "Répertoire nécessaire"
|
815
773
|
|
@@ -833,11 +791,11 @@ msgstr ""
|
|
833
791
|
"Le format du fichier que vous fournissez est inconnu. Veuillez ré-essayer "
|
834
792
|
"avec un autre fichier."
|
835
793
|
|
836
|
-
#: ../lib/alexandria/ui/init.rb:
|
794
|
+
#: ../lib/alexandria/ui/init.rb:70
|
837
795
|
msgid "Unable to launch the help browser"
|
838
796
|
msgstr "Impossible de démarrer l' aide du navigateur "
|
839
797
|
|
840
|
-
#: ../lib/alexandria/ui/init.rb:
|
798
|
+
#: ../lib/alexandria/ui/init.rb:71
|
841
799
|
msgid ""
|
842
800
|
"Could not display help for Alexandria. There was an error launching the "
|
843
801
|
"system help browser."
|
@@ -873,27 +831,27 @@ msgstr "Nouvelle bibliothèque"
|
|
873
831
|
msgid "Loaned To"
|
874
832
|
msgstr "Prêts"
|
875
833
|
|
876
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
834
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:155
|
877
835
|
msgid "A problem occurred while downloading images"
|
878
836
|
msgstr "Un problème est survenu lors du téléchargement des images"
|
879
837
|
|
880
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
838
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:194
|
881
839
|
msgid "Iter is invalid! %s"
|
882
840
|
msgstr ""
|
883
841
|
|
884
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
842
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:266
|
885
843
|
msgid "Unable to find matches for your search"
|
886
844
|
msgstr "Impossible de trouver des correspondances pour votre recherche"
|
887
845
|
|
888
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
846
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:302
|
889
847
|
msgid "%s, by %s"
|
890
848
|
msgstr "%s, par %s"
|
891
849
|
|
892
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
850
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:308
|
893
851
|
msgid "Copying %s into tree view."
|
894
852
|
msgstr ""
|
895
853
|
|
896
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
854
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:336
|
897
855
|
msgid ""
|
898
856
|
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
899
857
|
"correctly, and try again."
|
@@ -901,12 +859,12 @@ msgstr ""
|
|
901
859
|
"Impossible de valider la donnée EAN/ISBN que vous avez fournie. Vérifiez "
|
902
860
|
"qu'elle est écrite correctement, et ré-essayez."
|
903
861
|
|
904
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
862
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:464
|
905
863
|
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:119
|
906
864
|
msgid "Couldn't add the book"
|
907
865
|
msgstr "Impossible d'ajouter le livre"
|
908
866
|
|
909
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
867
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:570
|
910
868
|
msgid "'%s' already exists in '%s' (titled '%s')."
|
911
869
|
msgstr " '%s' existe déjà dans '%s' (titré '%s' )."
|
912
870
|
|
@@ -1039,15 +997,15 @@ msgstr "Erreur pendant l'import"
|
|
1039
997
|
msgid "_Continue"
|
1040
998
|
msgstr "_Continuer"
|
1041
999
|
|
1042
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1000
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:97
|
1043
1001
|
msgid "Empty or conflictive condition"
|
1044
1002
|
msgstr "Vide ou condition générant des conflits"
|
1045
1003
|
|
1046
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1004
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
|
1047
1005
|
msgid "_Save However"
|
1048
1006
|
msgstr "_Sauvegarder quand même"
|
1049
1007
|
|
1050
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1008
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:101
|
1051
1009
|
msgid ""
|
1052
1010
|
"This smart library contains one or more conditions which are empty or "
|
1053
1011
|
"conflict with each other. This is likely to result in never matching a book. "
|
@@ -1058,116 +1016,116 @@ msgstr ""
|
|
1058
1016
|
"qui ne correspondra jamais. Êtes-vous sûr de vouloir sauvegarder cette "
|
1059
1017
|
"bibliothèque ?"
|
1060
1018
|
|
1061
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1019
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:118
|
1062
1020
|
msgid "Match"
|
1063
1021
|
msgstr "Correspond"
|
1064
1022
|
|
1065
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1023
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
|
1066
1024
|
msgid "all"
|
1067
1025
|
msgstr "toutes"
|
1068
1026
|
|
1069
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1027
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
|
1070
1028
|
msgid "any"
|
1071
1029
|
msgstr "aucunes"
|
1072
1030
|
|
1073
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1031
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:131
|
1074
1032
|
msgid "of the following rules:"
|
1075
1033
|
msgstr "des règles suivantes : "
|
1076
1034
|
|
1077
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1035
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:139
|
1078
1036
|
msgid "Match the following rule:"
|
1079
1037
|
msgstr "Correspond à la règle suivante : "
|
1080
1038
|
|
1081
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1039
|
+
#: ../lib/alexandria/ui/ui_manager.rb:132
|
1082
1040
|
msgid "Type here the search criterion"
|
1083
1041
|
msgstr "Tapez ici le critère de recherche"
|
1084
1042
|
|
1085
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1043
|
+
#: ../lib/alexandria/ui/ui_manager.rb:143
|
1086
1044
|
msgid "Match everything"
|
1087
1045
|
msgstr "Filtre tout"
|
1088
1046
|
|
1089
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1047
|
+
#: ../lib/alexandria/ui/ui_manager.rb:145
|
1090
1048
|
msgid "Title contains"
|
1091
1049
|
msgstr "Le titre contient"
|
1092
1050
|
|
1093
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1051
|
+
#: ../lib/alexandria/ui/ui_manager.rb:146
|
1094
1052
|
msgid "Authors contain"
|
1095
1053
|
msgstr "Les auteurs contiennent"
|
1096
1054
|
|
1097
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1055
|
+
#: ../lib/alexandria/ui/ui_manager.rb:147
|
1098
1056
|
msgid "ISBN contains"
|
1099
1057
|
msgstr "L'ISBN contient"
|
1100
1058
|
|
1101
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1059
|
+
#: ../lib/alexandria/ui/ui_manager.rb:148
|
1102
1060
|
msgid "Publisher contains"
|
1103
1061
|
msgstr "L'éditeur contient"
|
1104
1062
|
|
1105
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1063
|
+
#: ../lib/alexandria/ui/ui_manager.rb:149
|
1106
1064
|
msgid "Notes contain"
|
1107
1065
|
msgstr "Les notes contiennent"
|
1108
1066
|
|
1109
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1067
|
+
#: ../lib/alexandria/ui/ui_manager.rb:150
|
1110
1068
|
msgid "Tags contain"
|
1111
1069
|
msgstr "Les étiquettes contiennent"
|
1112
1070
|
|
1113
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1071
|
+
#: ../lib/alexandria/ui/ui_manager.rb:164
|
1114
1072
|
msgid "Change the search type"
|
1115
1073
|
msgstr "Change le type de recherche."
|
1116
1074
|
|
1117
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1075
|
+
#: ../lib/alexandria/ui/ui_manager.rb:169
|
1118
1076
|
msgid "View as Icons"
|
1119
1077
|
msgstr "Voir en tant qu'icônes"
|
1120
1078
|
|
1121
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1079
|
+
#: ../lib/alexandria/ui/ui_manager.rb:170
|
1122
1080
|
msgid "View as List"
|
1123
1081
|
msgstr "Voir en tant que liste"
|
1124
1082
|
|
1125
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1083
|
+
#: ../lib/alexandria/ui/ui_manager.rb:184
|
1126
1084
|
msgid "Choose how to show books"
|
1127
1085
|
msgstr "Choix de la méthode d'affichage des livres"
|
1128
1086
|
|
1129
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1087
|
+
#: ../lib/alexandria/ui/ui_manager.rb:407
|
1130
1088
|
msgid "Library '%s' selected"
|
1131
1089
|
msgstr "Bibliothèque '%s' sélectionnée"
|
1132
1090
|
|
1133
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1091
|
+
#: ../lib/alexandria/ui/ui_manager.rb:412
|
1134
1092
|
msgid "Library '%s' selected, %d unrated book"
|
1135
1093
|
msgid_plural "Library '%s' selected, %d unrated books"
|
1136
1094
|
msgstr[0] "Bibliothèque '%s' sélectionnée, %d livre non-noté"
|
1137
1095
|
msgstr[1] "Bibliothèque '%s' sélectionnée, %d livres non-notés"
|
1138
1096
|
|
1139
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1097
|
+
#: ../lib/alexandria/ui/ui_manager.rb:416
|
1140
1098
|
msgid "Library '%s' selected, %d book"
|
1141
1099
|
msgid_plural "Library '%s' selected, %d books"
|
1142
1100
|
msgstr[0] "Bibliothèque '%s' sélectionnée, %d livre"
|
1143
1101
|
msgstr[1] "Bibliothèque '%s' sélectionnée, %d livres"
|
1144
1102
|
|
1145
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1103
|
+
#: ../lib/alexandria/ui/ui_manager.rb:420
|
1146
1104
|
msgid "Library '%s' selected, %d book, %d unrated"
|
1147
1105
|
msgid_plural "Library '%s' selected, %d books, %d unrated"
|
1148
1106
|
msgstr[0] "Bibliothèque '%s' sélectionnée, %d livre, %d non-noté"
|
1149
1107
|
msgstr[1] "Bibliothèque « %s » sélectionnée, %d livres, %d non-notés"
|
1150
1108
|
|
1151
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1109
|
+
#: ../lib/alexandria/ui/ui_manager.rb:434
|
1152
1110
|
msgid "'%s' selected"
|
1153
1111
|
msgstr " '%s' sélectionné"
|
1154
1112
|
|
1155
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1113
|
+
#: ../lib/alexandria/ui/ui_manager.rb:436
|
1156
1114
|
msgid "%d book selected"
|
1157
1115
|
msgid_plural "%d books selected"
|
1158
1116
|
msgstr[0] "%d livre sélectionné"
|
1159
1117
|
msgstr[1] "%d livres sélectionnés"
|
1160
1118
|
|
1161
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1119
|
+
#: ../lib/alexandria/ui/ui_manager.rb:552
|
1162
1120
|
msgid "unrecognized update event"
|
1163
1121
|
msgstr ""
|
1164
1122
|
|
1165
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1123
|
+
#: ../lib/alexandria/ui/ui_manager.rb:597
|
1166
1124
|
#, fuzzy
|
1167
1125
|
msgid "Loading libraries..."
|
1168
1126
|
msgstr "À télécharger '%s' ..."
|
1169
1127
|
|
1170
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1128
|
+
#: ../lib/alexandria/ui/ui_manager.rb:614
|
1171
1129
|
msgid ""
|
1172
1130
|
"The data files for the following books are malformed or empty. Do you wish "
|
1173
1131
|
"to attempt to download new information for them from the online book "
|
@@ -1177,15 +1135,15 @@ msgstr ""
|
|
1177
1135
|
"Voulez-vous essayer le téléchargement d'une nouvelle information pour eux à "
|
1178
1136
|
"partir des fournisseurs de livres chez internet?\n"
|
1179
1137
|
|
1180
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1138
|
+
#: ../lib/alexandria/ui/ui_manager.rb:666
|
1181
1139
|
msgid "Added '%s' to library '%s'"
|
1182
1140
|
msgstr "Ajouté '%s' à la bibliothèque '%s'"
|
1183
1141
|
|
1184
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1142
|
+
#: ../lib/alexandria/ui/ui_manager.rb:815
|
1185
1143
|
msgid "Loading '%s'..."
|
1186
1144
|
msgstr "À télécharger '%s' ..."
|
1187
1145
|
|
1188
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1146
|
+
#: ../lib/alexandria/ui/ui_manager.rb:1045
|
1189
1147
|
msgid "In '_%s'"
|
1190
1148
|
msgstr "Dans '_%s'"
|
1191
1149
|
|
@@ -1436,6 +1394,13 @@ msgstr "Gestionnaire de collection de livres"
|
|
1436
1394
|
msgid "Manage your book collection"
|
1437
1395
|
msgstr "Gérez votre collection de livres"
|
1438
1396
|
|
1397
|
+
#~ msgid "Locale"
|
1398
|
+
#~ msgstr "Langue"
|
1399
|
+
|
1400
|
+
#, fuzzy
|
1401
|
+
#~ msgid "Associate Tag"
|
1402
|
+
#~ msgstr "Identifiant d'associé"
|
1403
|
+
|
1439
1404
|
#~ msgid "Unable to launch the web browser"
|
1440
1405
|
#~ msgstr "Impossible de démarrer le navigateur Internet"
|
1441
1406
|
|