alexandria-book-collection-manager 0.7.3 → 0.7.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (155) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +28 -25
  3. data/.rubocop_todo.yml +87 -67
  4. data/CHANGELOG.md +12 -1
  5. data/Gemfile +4 -3
  6. data/README.md +16 -6
  7. data/Rakefile +71 -72
  8. data/alexandria-book-collection-manager.gemspec +44 -44
  9. data/bin/alexandria +12 -12
  10. data/lib/alexandria.rb +22 -22
  11. data/lib/alexandria/about.rb +50 -50
  12. data/lib/alexandria/book_providers.rb +50 -50
  13. data/lib/alexandria/book_providers/adlibris.rb +28 -44
  14. data/lib/alexandria/book_providers/amazon_aws.rb +64 -64
  15. data/lib/alexandria/book_providers/amazon_ecs_util.rb +52 -78
  16. data/lib/alexandria/book_providers/barnes_and_noble.rb +34 -34
  17. data/lib/alexandria/book_providers/douban.rb +21 -37
  18. data/lib/alexandria/book_providers/proxis.rb +24 -24
  19. data/lib/alexandria/book_providers/pseudomarc.rb +19 -19
  20. data/lib/alexandria/book_providers/renaud.rb +44 -57
  21. data/lib/alexandria/book_providers/siciliano.rb +39 -39
  22. data/lib/alexandria/book_providers/thalia.rb +33 -33
  23. data/lib/alexandria/book_providers/web.rb +5 -5
  24. data/lib/alexandria/book_providers/worldcat.rb +44 -69
  25. data/lib/alexandria/book_providers/z3950.rb +94 -109
  26. data/lib/alexandria/config.rb +1 -1
  27. data/lib/alexandria/console.rb +3 -3
  28. data/lib/alexandria/export_format.rb +8 -8
  29. data/lib/alexandria/export_library.rb +112 -113
  30. data/lib/alexandria/import_library.rb +45 -45
  31. data/lib/alexandria/import_library_csv.rb +30 -30
  32. data/lib/alexandria/library_collection.rb +4 -4
  33. data/lib/alexandria/library_sort_order.rb +1 -1
  34. data/lib/alexandria/library_store.rb +14 -14
  35. data/lib/alexandria/logging.rb +5 -5
  36. data/lib/alexandria/models/book.rb +1 -1
  37. data/lib/alexandria/models/library.rb +36 -36
  38. data/lib/alexandria/net.rb +5 -5
  39. data/lib/alexandria/preferences.rb +32 -32
  40. data/lib/alexandria/scanners/{cuecat.rb → cue_cat.rb} +13 -13
  41. data/lib/alexandria/scanners/keyboard.rb +5 -5
  42. data/lib/alexandria/smart_library.rb +53 -53
  43. data/lib/alexandria/ui.rb +15 -15
  44. data/lib/alexandria/ui/{dialogs/about_dialog.rb → about_dialog.rb} +1 -1
  45. data/lib/alexandria/ui/{dialogs/acquire_dialog.rb → acquire_dialog.rb} +66 -65
  46. data/lib/alexandria/ui/{dialogs/alert_dialog.rb → alert_dialog.rb} +1 -16
  47. data/lib/alexandria/ui/{dialogs/bad_isbns_dialog.rb → bad_isbns_dialog.rb} +0 -0
  48. data/lib/alexandria/ui/{dialogs/barcode_animation.rb → barcode_animation.rb} +7 -7
  49. data/lib/alexandria/ui/{dialogs/book_properties_dialog.rb → book_properties_dialog.rb} +25 -37
  50. data/lib/alexandria/ui/{dialogs/book_properties_dialog_base.rb → book_properties_dialog_base.rb} +38 -37
  51. data/lib/alexandria/ui/builder_base.rb +1 -1
  52. data/lib/alexandria/ui/callbacks.rb +95 -91
  53. data/lib/alexandria/ui/completion_models.rb +7 -21
  54. data/lib/alexandria/ui/confirm_erase_dialog.rb +33 -0
  55. data/lib/alexandria/ui/conflict_while_copying_dialog.rb +34 -0
  56. data/lib/alexandria/ui/dndable.rb +7 -7
  57. data/lib/alexandria/ui/error_dialog.rb +25 -0
  58. data/lib/alexandria/ui/{dialogs/export_dialog.rb → export_dialog.rb} +22 -42
  59. data/lib/alexandria/ui/icons.rb +6 -6
  60. data/lib/alexandria/ui/iconview.rb +7 -7
  61. data/lib/alexandria/ui/iconview_tooltips.rb +6 -6
  62. data/lib/alexandria/ui/{dialogs/import_dialog.rb → import_dialog.rb} +14 -32
  63. data/lib/alexandria/ui/init.rb +16 -29
  64. data/lib/alexandria/ui/{dialogs/keep_bad_isbn_dialog.rb → keep_bad_isbn_dialog.rb} +6 -4
  65. data/lib/alexandria/ui/libraries_combo.rb +7 -7
  66. data/lib/alexandria/ui/listview.rb +40 -40
  67. data/lib/alexandria/ui/main_app.rb +22 -24
  68. data/lib/alexandria/ui/misc_dialogs.rb +10 -0
  69. data/lib/alexandria/ui/multi_drag_treeview.rb +4 -4
  70. data/lib/alexandria/ui/{dialogs/new_book_dialog.rb → new_book_dialog.rb} +46 -45
  71. data/lib/alexandria/ui/{dialogs/new_book_dialog_manual.rb → new_book_dialog_manual.rb} +20 -19
  72. data/lib/alexandria/ui/new_provider_dialog.rb +99 -0
  73. data/lib/alexandria/ui/{dialogs/new_smart_library_dialog.rb → new_smart_library_dialog.rb} +4 -4
  74. data/lib/alexandria/ui/{dialogs/preferences_dialog.rb → preferences_dialog.rb} +44 -235
  75. data/lib/alexandria/ui/provider_preferences_base_dialog.rb +90 -0
  76. data/lib/alexandria/ui/provider_preferences_dialog.rb +35 -0
  77. data/lib/alexandria/ui/{dialogs/misc_dialogs.rb → really_delete_dialog.rb} +6 -27
  78. data/lib/alexandria/ui/{sidepane.rb → sidepane_manager.rb} +27 -25
  79. data/lib/alexandria/ui/skip_entry_dialog.rb +32 -0
  80. data/lib/alexandria/ui/{dialogs/smart_library_properties_dialog.rb → smart_library_properties_dialog.rb} +2 -2
  81. data/lib/alexandria/ui/{dialogs/smart_library_properties_dialog_base.rb → smart_library_properties_dialog_base.rb} +30 -30
  82. data/lib/alexandria/ui/sound.rb +8 -8
  83. data/lib/alexandria/ui/ui_manager.rb +136 -135
  84. data/lib/alexandria/version.rb +4 -19
  85. data/lib/alexandria/web_themes.rb +8 -8
  86. data/po/cs.po +97 -97
  87. data/po/cy.po +97 -97
  88. data/po/de.po +97 -97
  89. data/po/el.po +97 -97
  90. data/po/es.po +97 -97
  91. data/po/fr.po +97 -97
  92. data/po/ga.po +97 -97
  93. data/po/gl.po +97 -97
  94. data/po/it.po +97 -97
  95. data/po/ja.po +97 -97
  96. data/po/mk.po +97 -97
  97. data/po/nb.po +97 -97
  98. data/po/nl.po +97 -97
  99. data/po/pl.po +97 -97
  100. data/po/pt.po +97 -97
  101. data/po/pt_BR.po +97 -97
  102. data/po/ru.po +97 -97
  103. data/po/sk.po +97 -97
  104. data/po/sv.po +97 -97
  105. data/po/uk.po +97 -97
  106. data/po/zh_TW.po +97 -97
  107. data/schemas/alexandria.schemas +24 -2
  108. data/spec/alexandria/book_providers_spec.rb +65 -82
  109. data/spec/alexandria/book_spec.rb +12 -10
  110. data/spec/alexandria/console_spec.rb +9 -9
  111. data/spec/alexandria/export_library_spec.rb +31 -31
  112. data/spec/alexandria/library_spec.rb +86 -86
  113. data/spec/alexandria/library_store_spec.rb +8 -8
  114. data/spec/alexandria/preferences_spec.rb +18 -17
  115. data/spec/alexandria/scanners/cue_cat_spec.rb +52 -0
  116. data/spec/alexandria/smart_library_spec.rb +15 -15
  117. data/spec/alexandria/ui/about_dialog_spec.rb +14 -0
  118. data/spec/alexandria/ui/acquire_dialog_spec.rb +14 -0
  119. data/spec/alexandria/ui/alert_dialog_spec.rb +16 -0
  120. data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +14 -0
  121. data/spec/alexandria/ui/book_properties_dialog_spec.rb +17 -0
  122. data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +14 -0
  123. data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +16 -0
  124. data/spec/alexandria/ui/error_dialog_spec.rb +14 -0
  125. data/spec/alexandria/ui/export_dialog_spec.rb +15 -0
  126. data/spec/alexandria/ui/iconview_spec.rb +7 -21
  127. data/spec/alexandria/ui/import_dialog_spec.rb +14 -0
  128. data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +17 -0
  129. data/spec/alexandria/ui/main_app_spec.rb +6 -6
  130. data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +15 -0
  131. data/spec/alexandria/ui/{dialogs/new_book_dialog_spec.rb → new_book_dialog_spec.rb} +4 -4
  132. data/spec/alexandria/ui/new_provider_dialog_spec.rb +14 -0
  133. data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +14 -0
  134. data/spec/alexandria/ui/preferences_dialog_spec.rb +14 -0
  135. data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +19 -0
  136. data/spec/alexandria/ui/really_delete_dialog_spec.rb +15 -0
  137. data/spec/alexandria/ui/sidepane_manager_spec.rb +15 -0
  138. data/spec/alexandria/ui/skip_entry_dialog_spec.rb +14 -0
  139. data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +18 -0
  140. data/spec/alexandria/ui/sound_spec.rb +2 -2
  141. data/spec/alexandria/ui/ui_manager_spec.rb +6 -20
  142. data/spec/alexandria/ui/ui_utilities_spec.rb +9 -9
  143. data/spec/alexandria/utilities_spec.rb +6 -6
  144. data/spec/end_to_end/basic_run_spec.rb +24 -36
  145. data/spec/spec_helper.rb +9 -9
  146. data/tasks/dogtail.rake +1 -1
  147. data/tasks/setup.rb +2 -2
  148. data/tasks/spec.rake +11 -11
  149. data/util/rake/fileinstall.rb +25 -25
  150. data/util/rake/gettextgenerate.rb +7 -7
  151. data/util/rake/omfgenerate.rb +7 -7
  152. metadata +59 -33
  153. data/spec/alexandria/scanners/cuecat_spec.rb +0 -67
  154. data/spec/alexandria/ui/dialogs_spec.rb +0 -162
  155. data/spec/alexandria/ui/sidepane_spec.rb +0 -29
data/po/fr.po CHANGED
@@ -184,7 +184,7 @@ msgstr ""
184
184
  "importées:"
185
185
 
186
186
  #: ../lib/alexandria/ui/callbacks.rb:122
187
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:128
187
+ #: ../lib/alexandria/ui/export_dialog.rb:128
188
188
  msgid "Export failed"
189
189
  msgstr "L'export a echoué"
190
190
 
@@ -464,100 +464,100 @@ msgstr "Par _notation"
464
464
  msgid "At _%s"
465
465
  msgstr "Sur _%s"
466
466
 
467
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:395
467
+ #: ../lib/alexandria/ui/acquire_dialog.rb:395
468
468
  msgid "There was %d duplicate"
469
469
  msgid_plural "There were %d duplicates"
470
470
  msgstr[0] ""
471
471
  msgstr[1] ""
472
472
 
473
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:398
473
+ #: ../lib/alexandria/ui/acquire_dialog.rb:398
474
474
  #, fuzzy
475
475
  msgid "Couldn't add this book"
476
476
  msgid_plural "Couldn't add these books"
477
477
  msgstr[0] "Impossible d'ajouter le livre"
478
478
  msgstr[1] "Impossible d'ajouter le livre"
479
479
 
480
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:477
481
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:555
480
+ #: ../lib/alexandria/ui/acquire_dialog.rb:477
481
+ #: ../lib/alexandria/ui/new_book_dialog.rb:555
482
482
  msgid "Searching Provider '%s'..."
483
483
  msgstr ""
484
484
 
485
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:478
486
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:556
485
+ #: ../lib/alexandria/ui/acquire_dialog.rb:478
486
+ #: ../lib/alexandria/ui/new_book_dialog.rb:556
487
487
  msgid "Error while Searching Provider '%s'"
488
488
  msgstr ""
489
489
 
490
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:479
491
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:557
490
+ #: ../lib/alexandria/ui/acquire_dialog.rb:479
491
+ #: ../lib/alexandria/ui/new_book_dialog.rb:557
492
492
  msgid "Not Found at Provider '%s'"
493
493
  msgstr ""
494
494
 
495
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:480
496
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:558
495
+ #: ../lib/alexandria/ui/acquire_dialog.rb:480
496
+ #: ../lib/alexandria/ui/new_book_dialog.rb:558
497
497
  msgid "Found at Provider '%s'"
498
498
  msgstr ""
499
499
 
500
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:610
500
+ #: ../lib/alexandria/ui/acquire_dialog.rb:610
501
501
  msgid "Ready to use %s barcode scanner"
502
502
  msgstr ""
503
503
 
504
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:625
504
+ #: ../lib/alexandria/ui/acquire_dialog.rb:625
505
505
  #: ../data/alexandria/glade/acquire_dialog.glade:26
506
506
  msgid "_Barcode Scanner Ready"
507
507
  msgstr "_Lecteur électronique de la barre de code prêt"
508
508
 
509
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:640
509
+ #: ../lib/alexandria/ui/acquire_dialog.rb:640
510
510
  msgid "Click below to scan _barcodes"
511
511
  msgstr "Cliquez ci-dessous pour lire _la barre de code rapidement"
512
512
 
513
- #: ../lib/alexandria/ui/dialogs/bad_isbns_dialog.rb:24
513
+ #: ../lib/alexandria/ui/bad_isbns_dialog.rb:24
514
514
  msgid "There's a problem"
515
515
  msgstr "Il y a un problème"
516
516
 
517
- #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:30
517
+ #: ../lib/alexandria/ui/new_smart_library_dialog.rb:30
518
518
  msgid "New Smart Library"
519
519
  msgstr "Nouvelle bibliothèque intelligente"
520
520
 
521
- #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:49
521
+ #: ../lib/alexandria/ui/new_smart_library_dialog.rb:49
522
522
  msgid "Smart Library"
523
523
  msgstr "Bibliothèque intelligente"
524
524
 
525
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:106
525
+ #: ../lib/alexandria/ui/preferences_dialog.rb:106
526
526
  msgid "Preferences for %s"
527
527
  msgstr "Préférences pour %s"
528
528
 
529
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:131
529
+ #: ../lib/alexandria/ui/preferences_dialog.rb:131
530
530
  msgid "New Provider"
531
531
  msgstr "Nouveau fournisseur"
532
532
 
533
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:146
533
+ #: ../lib/alexandria/ui/preferences_dialog.rb:146
534
534
  msgid "_Name:"
535
535
  msgstr "_Nom:"
536
536
 
537
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:158
537
+ #: ../lib/alexandria/ui/preferences_dialog.rb:158
538
538
  msgid "_Type:"
539
539
  msgstr "_Type:"
540
540
 
541
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:316
542
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
543
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
541
+ #: ../lib/alexandria/ui/preferences_dialog.rb:316
542
+ #: ../lib/alexandria/ui/preferences_dialog.rb:339
543
+ #: ../lib/alexandria/ui/preferences_dialog.rb:359
544
544
  #, fuzzy
545
545
  msgid "Disable Provider"
546
546
  msgstr "Nouveau fournisseur"
547
547
 
548
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
549
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
548
+ #: ../lib/alexandria/ui/preferences_dialog.rb:339
549
+ #: ../lib/alexandria/ui/preferences_dialog.rb:359
550
550
  #, fuzzy
551
551
  msgid "Enable Provider"
552
552
  msgstr "Nouveau fournisseur"
553
553
 
554
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:423
554
+ #: ../lib/alexandria/ui/preferences_dialog.rb:423
555
555
  msgid "Are you sure you want to permanently delete the provider '%s'?"
556
556
  msgstr ""
557
557
  "Êtes-vous sûr de vouloir supprimer de manière permanente le fournisseur '%"
558
558
  "s' ?"
559
559
 
560
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:431
560
+ #: ../lib/alexandria/ui/preferences_dialog.rb:431
561
561
  msgid ""
562
562
  "If you continue, the provider and all of its preferences will be permanently "
563
563
  "deleted."
@@ -565,27 +565,27 @@ msgstr ""
565
565
  "Si vous continuez, le fournisseur ainsi que toutes ses préférences seront "
566
566
  "supprimés de manière permanente."
567
567
 
568
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:36
568
+ #: ../lib/alexandria/ui/import_dialog.rb:36
569
569
  msgid "Error while importing"
570
570
  msgstr "Erreur pendant l'import"
571
571
 
572
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:39
572
+ #: ../lib/alexandria/ui/import_dialog.rb:39
573
573
  msgid "_Continue"
574
574
  msgstr "_Continuer"
575
575
 
576
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:64
576
+ #: ../lib/alexandria/ui/import_dialog.rb:64
577
577
  msgid "Import a Library"
578
578
  msgstr "Importer une bibliothèque"
579
579
 
580
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:71
580
+ #: ../lib/alexandria/ui/import_dialog.rb:71
581
581
  msgid "_Import"
582
582
  msgstr "_Importer"
583
583
 
584
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:188
584
+ #: ../lib/alexandria/ui/import_dialog.rb:188
585
585
  msgid "Couldn't import the library"
586
586
  msgstr "Impossible d'importer le livre"
587
587
 
588
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:189
588
+ #: ../lib/alexandria/ui/import_dialog.rb:189
589
589
  msgid ""
590
590
  "The format of the file you provided is unknown. Please retry with another "
591
591
  "file."
@@ -593,20 +593,20 @@ msgstr ""
593
593
  "Le format du fichier que vous fournissez est inconnu. Veuillez ré-essayer "
594
594
  "avec un autre fichier."
595
595
 
596
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb:30
597
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:63
596
+ #: ../lib/alexandria/ui/smart_library_properties_dialog.rb:30
597
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:63
598
598
  msgid "Properties for '%s'"
599
599
  msgstr "Préférences pour '%s'"
600
600
 
601
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:83
601
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:83
602
602
  msgid "Empty or conflictive condition"
603
603
  msgstr "Vide ou condition générant des conflits"
604
604
 
605
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:86
605
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:86
606
606
  msgid "_Save However"
607
607
  msgstr "_Sauvegarder quand même"
608
608
 
609
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:87
609
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:87
610
610
  msgid ""
611
611
  "This smart library contains one or more conditions which are empty or "
612
612
  "conflict with each other. This is likely to result in never matching a book. "
@@ -617,38 +617,38 @@ msgstr ""
617
617
  "qui ne correspondra jamais. Êtes-vous sûr de vouloir sauvegarder cette "
618
618
  "bibliothèque ?"
619
619
 
620
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:106
620
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:106
621
621
  msgid "Match"
622
622
  msgstr "Correspond"
623
623
 
624
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
624
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:109
625
625
  msgid "all"
626
626
  msgstr "toutes"
627
627
 
628
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
628
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:109
629
629
  msgid "any"
630
630
  msgstr "aucunes"
631
631
 
632
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:119
632
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:119
633
633
  msgid "of the following rules:"
634
634
  msgstr "des règles suivantes : "
635
635
 
636
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:127
636
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:127
637
637
  msgid "Match the following rule:"
638
638
  msgstr "Correspond à la règle suivante : "
639
639
 
640
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:114
641
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:123
640
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:114
641
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:123
642
642
  msgid "Couldn't modify the book"
643
643
  msgstr "Impossible d'éditer les propriétés du livre"
644
644
 
645
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:115
646
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:88
645
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:115
646
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:88
647
647
  msgid "The EAN/ISBN you provided is already used in this library."
648
648
  msgstr "La donnée EAN/ISBN fournie est déjà utilisée dans cette bibliothèque."
649
649
 
650
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:124
651
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:94
650
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:124
651
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:94
652
652
  msgid ""
653
653
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
654
654
  "correcty, and try again."
@@ -656,68 +656,68 @@ msgstr ""
656
656
  "Impossible de valider la donnée EAN/ISBN. Vérifiez que le numéro est écrit "
657
657
  "correctement, et ré-essayez."
658
658
 
659
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:65
659
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:65
660
660
  msgid "Properties"
661
661
  msgstr "Propriétés"
662
662
 
663
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:71
663
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:71
664
664
  msgid "Author"
665
665
  msgstr "Auteur"
666
666
 
667
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:123
667
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:123
668
668
  msgid "Select a cover image"
669
669
  msgstr "Sélectionnez une image de couverture"
670
670
 
671
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:127
671
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:127
672
672
  msgid "No Cover"
673
673
  msgstr "Aucune couverture"
674
674
 
675
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:186
675
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:186
676
676
  msgid "%d day"
677
677
  msgid_plural "%d days"
678
678
  msgstr[0] "%d jour"
679
679
  msgstr[1] "%d jours"
680
680
 
681
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:58
681
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:58
682
682
  msgid "Adding '%s'"
683
683
  msgstr "Ajout de '%s'"
684
684
 
685
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:60
685
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:60
686
686
  #: ../data/alexandria/glade/new_book_dialog.glade:8
687
687
  msgid "Adding a Book"
688
688
  msgstr "Ajout d'un livre"
689
689
 
690
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:81
690
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:81
691
691
  msgid "A title must be provided."
692
692
  msgstr "Un titre doit être fourni."
693
693
 
694
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:102
694
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:102
695
695
  msgid "A publisher must be provided."
696
696
  msgstr "Un éditeur doit être fourni."
697
697
 
698
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:109
698
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:109
699
699
  msgid "A binding must be provided."
700
700
  msgstr "Une édition doit être fournie."
701
701
 
702
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:115
702
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:115
703
703
  msgid "At least one author must be provided."
704
704
  msgstr "Au moins un auteur doit être fourni."
705
705
 
706
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:142
707
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:523
706
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:142
707
+ #: ../lib/alexandria/ui/new_book_dialog.rb:523
708
708
  msgid "Couldn't add the book"
709
709
  msgstr "Impossible d'ajouter le livre"
710
710
 
711
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:25
711
+ #: ../lib/alexandria/ui/export_dialog.rb:25
712
712
  msgid "File already exists"
713
713
  msgstr "Le fichier existe déjà"
714
714
 
715
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:28
716
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:30
715
+ #: ../lib/alexandria/ui/export_dialog.rb:28
716
+ #: ../lib/alexandria/ui/misc_dialogs.rb:30
717
717
  msgid "_Replace"
718
718
  msgstr "_Remplacer"
719
719
 
720
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:29
720
+ #: ../lib/alexandria/ui/export_dialog.rb:29
721
721
  msgid ""
722
722
  "A file named '%s' already exists. Do you want to replace it with the one "
723
723
  "you are generating?"
@@ -725,27 +725,27 @@ msgstr ""
725
725
  "Un fichier nommé '%s' existe déjà sur le système. Voulez-vous le remplacer "
726
726
  "par celui que vous êtes en train de générer ?"
727
727
 
728
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:52
728
+ #: ../lib/alexandria/ui/export_dialog.rb:52
729
729
  msgid "Export '%s'"
730
730
  msgstr "Exporter '%s'"
731
731
 
732
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:58
732
+ #: ../lib/alexandria/ui/export_dialog.rb:58
733
733
  msgid "_Export"
734
734
  msgstr "_Exporter"
735
735
 
736
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:77
736
+ #: ../lib/alexandria/ui/export_dialog.rb:77
737
737
  msgid "_Theme:"
738
738
  msgstr "_Thème :"
739
739
 
740
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:87
740
+ #: ../lib/alexandria/ui/export_dialog.rb:87
741
741
  msgid "directory"
742
742
  msgstr "répertoire"
743
743
 
744
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:100
744
+ #: ../lib/alexandria/ui/export_dialog.rb:100
745
745
  msgid "Export for_mat:"
746
746
  msgstr "For_mat d'export :"
747
747
 
748
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:155
748
+ #: ../lib/alexandria/ui/export_dialog.rb:155
749
749
  msgid ""
750
750
  "The target, named '%s', is a regular file. A directory is needed for this "
751
751
  "operation. Please select a directory and try again."
@@ -753,19 +753,19 @@ msgstr ""
753
753
  "La cible, nommé '%s', est un fichier régulier. Un répertoire est nécessaire "
754
754
  "pour cette opération. Veuillez sélectionner un répertoire et ré-essayez."
755
755
 
756
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:159
756
+ #: ../lib/alexandria/ui/export_dialog.rb:159
757
757
  msgid "Not a directory"
758
758
  msgstr "Répertoire nécessaire"
759
759
 
760
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:32
760
+ #: ../lib/alexandria/ui/new_book_dialog.rb:32
761
761
  msgid "Invalid ISBN '%s'"
762
762
  msgstr "ISBN '%s' invalide"
763
763
 
764
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:35
764
+ #: ../lib/alexandria/ui/new_book_dialog.rb:35
765
765
  msgid "_Keep"
766
766
  msgstr "_Préserver"
767
767
 
768
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:36
768
+ #: ../lib/alexandria/ui/new_book_dialog.rb:36
769
769
  msgid ""
770
770
  "The book titled '%s' has an invalid ISBN, but still exists in the providers "
771
771
  "libraries. Do you want to keep the book but change the ISBN or cancel the "
@@ -775,19 +775,19 @@ msgstr ""
775
775
  "les bibliothèques des fournisseurs. Désirez-vous préserver le livre en "
776
776
  "changeant l'ISBN ou annuler l'ajout ?"
777
777
 
778
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:182
778
+ #: ../lib/alexandria/ui/new_book_dialog.rb:182
779
779
  msgid "A problem occurred while downloading images"
780
780
  msgstr "Un problème est survenu lors du téléchargement des images"
781
781
 
782
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:304
782
+ #: ../lib/alexandria/ui/new_book_dialog.rb:304
783
783
  msgid "Unable to find matches for your search"
784
784
  msgstr "Impossible de trouver des correspondances pour votre recherche"
785
785
 
786
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:310
786
+ #: ../lib/alexandria/ui/new_book_dialog.rb:310
787
787
  msgid "%s, by %s"
788
788
  msgstr "%s, par %s"
789
789
 
790
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:383
790
+ #: ../lib/alexandria/ui/new_book_dialog.rb:383
791
791
  msgid ""
792
792
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
793
793
  "correctly, and try again."
@@ -795,77 +795,77 @@ msgstr ""
795
795
  "Impossible de valider la donnée EAN/ISBN que vous avez fournie. Vérifiez "
796
796
  "qu'elle est écrite correctement, et ré-essayez."
797
797
 
798
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:630
798
+ #: ../lib/alexandria/ui/new_book_dialog.rb:630
799
799
  msgid "'%s' already exists in '%s' (titled '%s')."
800
800
  msgstr " '%s' existe déjà dans '%s' (titré '%s' )."
801
801
 
802
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:26
802
+ #: ../lib/alexandria/ui/misc_dialogs.rb:26
803
803
  msgid "The book '%s' already exists in '%s'. Would you like to replace it?"
804
804
  msgstr "Le livre '%s' existe déjà dans '%s'. Voulez-vous le remplacer ?"
805
805
 
806
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:29
806
+ #: ../lib/alexandria/ui/misc_dialogs.rb:29
807
807
  msgid "_Skip"
808
808
  msgstr "_Passer"
809
809
 
810
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:31
810
+ #: ../lib/alexandria/ui/misc_dialogs.rb:31
811
811
  msgid "If you replace the existing book, its contents will be overwritten."
812
812
  msgstr "Si vous remplacez le livre existant, son contenu sera écrasé."
813
813
 
814
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:50
814
+ #: ../lib/alexandria/ui/misc_dialogs.rb:50
815
815
  msgid "Are you sure you want to delete '%s'?"
816
816
  msgstr "Êtes-vous sûr de vouloir supprimer de manière permanente '%s' ?"
817
817
 
818
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:58
818
+ #: ../lib/alexandria/ui/misc_dialogs.rb:58
819
819
  msgid "If you continue, %d book will be deleted."
820
820
  msgid_plural "If you continue, %d books will be deleted."
821
821
  msgstr[0] "Si vous continuez, %d sera supprimé de manière permanente."
822
822
  msgstr[1] ""
823
823
  "Si vous continuez, %d livres seront supprimés de manière permanente."
824
824
 
825
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:63
825
+ #: ../lib/alexandria/ui/misc_dialogs.rb:63
826
826
  msgid "Are you sure you want to delete '%s' from '%s'?"
827
827
  msgstr "Êtes-vous sûr de vouloir supprimer de manière permanente '%s' de '%s'?"
828
828
 
829
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:66
829
+ #: ../lib/alexandria/ui/misc_dialogs.rb:66
830
830
  msgid "Are you sure you want to delete the selected books from '%s'?"
831
831
  msgstr ""
832
832
  "Êtes-vous sûr de vouloir supprimer de manière permanente les livres "
833
833
  "sélectionnés de '%s' ?"
834
834
 
835
- #: ../lib/alexandria/ui/sidepane.rb:49
835
+ #: ../lib/alexandria/ui/sidepane_manager.rb:49
836
836
  msgid "Invalid library name '%s'"
837
837
  msgstr "Nom de bibliothèque invalide '%s'"
838
838
 
839
- #: ../lib/alexandria/ui/sidepane.rb:50
839
+ #: ../lib/alexandria/ui/sidepane_manager.rb:50
840
840
  #, fuzzy
841
841
  msgid "The name provided contains the disallowed character <b>%s</b> "
842
842
  msgstr "Le nom entré contient le caractère invalide '<i>%s</i>'."
843
843
 
844
- #: ../lib/alexandria/ui/sidepane.rb:53
844
+ #: ../lib/alexandria/ui/sidepane_manager.rb:53
845
845
  #, fuzzy
846
846
  msgid "Invalid library name"
847
847
  msgstr "Nom de bibliothèque invalide '%s'"
848
848
 
849
- #: ../lib/alexandria/ui/sidepane.rb:54
849
+ #: ../lib/alexandria/ui/sidepane_manager.rb:54
850
850
  #, fuzzy
851
851
  msgid "The name provided contains invalid characters."
852
852
  msgstr "Le nom entré contient le caractère invalide '<i>%s</i>'."
853
853
 
854
- #: ../lib/alexandria/ui/sidepane.rb:60
854
+ #: ../lib/alexandria/ui/sidepane_manager.rb:60
855
855
  msgid "The library name can not be empty"
856
856
  msgstr "Le nom de la bibliothèque ne peut être blanc"
857
857
 
858
- #: ../lib/alexandria/ui/sidepane.rb:65
858
+ #: ../lib/alexandria/ui/sidepane_manager.rb:65
859
859
  msgid "The library can not be renamed"
860
860
  msgstr "La bibliothèque ne peut être renommée"
861
861
 
862
- #: ../lib/alexandria/ui/sidepane.rb:66
862
+ #: ../lib/alexandria/ui/sidepane_manager.rb:66
863
863
  msgid "There is already a library named '%s'. Please choose a different name."
864
864
  msgstr ""
865
865
  "Il existe déjà une bibliothèque portant le nom '%s'. Veuillez choisir un "
866
866
  "nom différent."
867
867
 
868
- #: ../lib/alexandria/ui/sidepane.rb:92
868
+ #: ../lib/alexandria/ui/sidepane_manager.rb:92
869
869
  msgid "Library"
870
870
  msgstr "Bibliothèque"
871
871