alexandria-book-collection-manager 0.6.9.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (293) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.rubocop.yml +68 -0
  4. data/.rubocop_todo.yml +200 -0
  5. data/CHANGELOG.md +23 -0
  6. data/COPYING +339 -0
  7. data/ChangeLog.0 +3598 -0
  8. data/Gemfile +9 -0
  9. data/INSTALL.rdoc +156 -0
  10. data/PACKAGING +36 -0
  11. data/README.md +88 -0
  12. data/RELEASE_CHECKLIST +18 -0
  13. data/Rakefile +264 -0
  14. data/TODO +24 -0
  15. data/alexandria-book-collection-manager.gemspec +35 -0
  16. data/alexandria.desktop.in +10 -0
  17. data/bin/alexandria +82 -0
  18. data/doc/AUTHORS +60 -0
  19. data/doc/BUGS +31 -0
  20. data/doc/FAQ +369 -0
  21. data/doc/HACKING +19 -0
  22. data/doc/NEWS +341 -0
  23. data/doc/alexandria.1 +120 -0
  24. data/doc/cuecat_support.rdoc +67 -0
  25. data/lib/alexandria.rb +85 -0
  26. data/lib/alexandria/about.rb +82 -0
  27. data/lib/alexandria/book_providers.rb +411 -0
  28. data/lib/alexandria/book_providers/adlibris.rb +235 -0
  29. data/lib/alexandria/book_providers/amazon_aws.rb +261 -0
  30. data/lib/alexandria/book_providers/amazon_ecs_util.rb +405 -0
  31. data/lib/alexandria/book_providers/barnes_and_noble.rb +229 -0
  32. data/lib/alexandria/book_providers/bol_it.rb +162 -0
  33. data/lib/alexandria/book_providers/deastore.rb +277 -0
  34. data/lib/alexandria/book_providers/douban.rb +135 -0
  35. data/lib/alexandria/book_providers/ibs_it.rb +149 -0
  36. data/lib/alexandria/book_providers/mcu.rb +177 -0
  37. data/lib/alexandria/book_providers/proxis.rb +205 -0
  38. data/lib/alexandria/book_providers/pseudomarc.rb +185 -0
  39. data/lib/alexandria/book_providers/renaud.rb +142 -0
  40. data/lib/alexandria/book_providers/siciliano.rb +271 -0
  41. data/lib/alexandria/book_providers/thalia.rb +197 -0
  42. data/lib/alexandria/book_providers/web.rb +59 -0
  43. data/lib/alexandria/book_providers/webster_it.rb +173 -0
  44. data/lib/alexandria/book_providers/worldcat.rb +251 -0
  45. data/lib/alexandria/book_providers/z3950.rb +422 -0
  46. data/lib/alexandria/config.rb +8 -0
  47. data/lib/alexandria/console.rb +31 -0
  48. data/lib/alexandria/execution_queue.rb +96 -0
  49. data/lib/alexandria/export_library.rb +536 -0
  50. data/lib/alexandria/import_library.rb +316 -0
  51. data/lib/alexandria/import_library_csv.rb +270 -0
  52. data/lib/alexandria/logging.rb +159 -0
  53. data/lib/alexandria/models/book.rb +72 -0
  54. data/lib/alexandria/models/library.rb +714 -0
  55. data/lib/alexandria/net.rb +53 -0
  56. data/lib/alexandria/preferences.rb +324 -0
  57. data/lib/alexandria/scanners.rb +42 -0
  58. data/lib/alexandria/scanners/cuecat.rb +118 -0
  59. data/lib/alexandria/scanners/keyboard.rb +57 -0
  60. data/lib/alexandria/smart_library.rb +525 -0
  61. data/lib/alexandria/ui.rb +53 -0
  62. data/lib/alexandria/ui/builder_base.rb +43 -0
  63. data/lib/alexandria/ui/callbacks.rb +389 -0
  64. data/lib/alexandria/ui/completion_models.rb +228 -0
  65. data/lib/alexandria/ui/dialogs/about_dialog.rb +59 -0
  66. data/lib/alexandria/ui/dialogs/acquire_dialog.rb +640 -0
  67. data/lib/alexandria/ui/dialogs/alert_dialog.rb +68 -0
  68. data/lib/alexandria/ui/dialogs/bad_isbns_dialog.rb +43 -0
  69. data/lib/alexandria/ui/dialogs/barcode_animation.rb +159 -0
  70. data/lib/alexandria/ui/dialogs/book_properties_dialog.rb +210 -0
  71. data/lib/alexandria/ui/dialogs/book_properties_dialog_base.rb +432 -0
  72. data/lib/alexandria/ui/dialogs/export_dialog.rb +172 -0
  73. data/lib/alexandria/ui/dialogs/import_dialog.rb +205 -0
  74. data/lib/alexandria/ui/dialogs/misc_dialogs.rb +85 -0
  75. data/lib/alexandria/ui/dialogs/new_book_dialog.rb +639 -0
  76. data/lib/alexandria/ui/dialogs/new_book_dialog_manual.rb +153 -0
  77. data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +67 -0
  78. data/lib/alexandria/ui/dialogs/preferences_dialog.rb +587 -0
  79. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +56 -0
  80. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb +432 -0
  81. data/lib/alexandria/ui/dndable.rb +81 -0
  82. data/lib/alexandria/ui/gtk_thread_help.rb +88 -0
  83. data/lib/alexandria/ui/icons.rb +100 -0
  84. data/lib/alexandria/ui/iconview.rb +91 -0
  85. data/lib/alexandria/ui/iconview_tooltips.rb +162 -0
  86. data/lib/alexandria/ui/init.rb +93 -0
  87. data/lib/alexandria/ui/libraries_combo.rb +75 -0
  88. data/lib/alexandria/ui/listview.rb +310 -0
  89. data/lib/alexandria/ui/main_app.rb +67 -0
  90. data/lib/alexandria/ui/multi_drag_treeview.rb +150 -0
  91. data/lib/alexandria/ui/sidepane.rb +194 -0
  92. data/lib/alexandria/ui/sound.rb +107 -0
  93. data/lib/alexandria/ui/ui_manager.rb +1308 -0
  94. data/lib/alexandria/undo_manager.rb +78 -0
  95. data/lib/alexandria/utils.rb +30 -0
  96. data/lib/alexandria/version.rb +24 -0
  97. data/lib/alexandria/web_themes.rb +75 -0
  98. data/misc/sounds/README +15 -0
  99. data/misc/sounds/bad_scan.csd +62 -0
  100. data/misc/sounds/good_scan.csd +61 -0
  101. data/misc/sounds/scanning.csd +46 -0
  102. data/po/ChangeLog +488 -0
  103. data/po/Makefile +44 -0
  104. data/po/README +29 -0
  105. data/po/commit-po +72 -0
  106. data/po/cs.po +1437 -0
  107. data/po/cy.po +1521 -0
  108. data/po/de.po +1400 -0
  109. data/po/el.po +1379 -0
  110. data/po/es.po +1376 -0
  111. data/po/fr.po +1420 -0
  112. data/po/ga.po +1359 -0
  113. data/po/gl.po +1397 -0
  114. data/po/it.po +1406 -0
  115. data/po/ja.po +1355 -0
  116. data/po/mk.po +1373 -0
  117. data/po/nb.po +1386 -0
  118. data/po/nl.po +1405 -0
  119. data/po/pl.po +1373 -0
  120. data/po/pt.po +1398 -0
  121. data/po/pt_BR.po +1409 -0
  122. data/po/ru.po +1372 -0
  123. data/po/sk.po +1380 -0
  124. data/po/sv.po +1402 -0
  125. data/po/uk.po +1423 -0
  126. data/po/zh_TW.po +1394 -0
  127. data/schemas/alexandria.schemas +300 -0
  128. data/share/alexandria/glade/acquire_dialog__builder.glade +201 -0
  129. data/share/alexandria/glade/book_properties_dialog__builder.glade +910 -0
  130. data/share/alexandria/glade/main_app__builder.glade +229 -0
  131. data/share/alexandria/glade/new_book_dialog__builder.glade +379 -0
  132. data/share/alexandria/glade/preferences_dialog__builder.glade +733 -0
  133. data/share/alexandria/icons/alexandria.png +0 -0
  134. data/share/alexandria/icons/alexandria_small.png +0 -0
  135. data/share/alexandria/icons/book.png +0 -0
  136. data/share/alexandria/icons/book_icon.png +0 -0
  137. data/share/alexandria/icons/book_small.png +0 -0
  138. data/share/alexandria/icons/cuecat.png +0 -0
  139. data/share/alexandria/icons/cuecat_inactive.png +0 -0
  140. data/share/alexandria/icons/favorite_tag.png +0 -0
  141. data/share/alexandria/icons/less.png +0 -0
  142. data/share/alexandria/icons/library.png +0 -0
  143. data/share/alexandria/icons/library_small.png +0 -0
  144. data/share/alexandria/icons/lookup.png +0 -0
  145. data/share/alexandria/icons/more.png +0 -0
  146. data/share/alexandria/icons/no_cover.png +0 -0
  147. data/share/alexandria/icons/smart_library.png +0 -0
  148. data/share/alexandria/icons/smart_library_small.png +0 -0
  149. data/share/alexandria/icons/star_set.png +0 -0
  150. data/share/alexandria/icons/star_unset.png +0 -0
  151. data/share/alexandria/icons/view_as_icons.png +0 -0
  152. data/share/alexandria/icons/view_as_list.png +0 -0
  153. data/share/alexandria/ui/menus.xml +91 -0
  154. data/share/alexandria/ui/popups.xml +91 -0
  155. data/share/alexandria/web-themes/clean/clean.css +85 -0
  156. data/share/alexandria/web-themes/clean/preview.jpg +0 -0
  157. data/share/alexandria/web-themes/list/list.css +105 -0
  158. data/share/alexandria/web-themes/list/preview.jpg +0 -0
  159. data/share/app-icon/16x16/alexandria.png +0 -0
  160. data/share/app-icon/16x16/alexandria.svg +263 -0
  161. data/share/app-icon/22x22/alexandria.png +0 -0
  162. data/share/app-icon/22x22/alexandria.svg +465 -0
  163. data/share/app-icon/24x24/alexandria.png +0 -0
  164. data/share/app-icon/32x32/alexandria.png +0 -0
  165. data/share/app-icon/32x32/alexandria.svg +813 -0
  166. data/share/app-icon/32x32/alexandria.xpm +241 -0
  167. data/share/app-icon/48x48/alexandria.png +0 -0
  168. data/share/app-icon/scalable/alexandria.svg +700 -0
  169. data/share/gnome/help/alexandria/C/about.xml +44 -0
  170. data/share/gnome/help/alexandria/C/adding-books.xml +339 -0
  171. data/share/gnome/help/alexandria/C/alexandria.xml +185 -0
  172. data/share/gnome/help/alexandria/C/bugs.xml +18 -0
  173. data/share/gnome/help/alexandria/C/editing-book-properties.xml +124 -0
  174. data/share/gnome/help/alexandria/C/exporting.xml +81 -0
  175. data/share/gnome/help/alexandria/C/figures/adding_books_acquire_from_scanner_process.png +0 -0
  176. data/share/gnome/help/alexandria/C/figures/adding_books_add_by_isbn.png +0 -0
  177. data/share/gnome/help/alexandria/C/figures/adding_books_isbn_import.png +0 -0
  178. data/share/gnome/help/alexandria/C/figures/adding_books_manual_details.png +0 -0
  179. data/share/gnome/help/alexandria/C/figures/adding_books_rename_library_after_import.png +0 -0
  180. data/share/gnome/help/alexandria/C/figures/adding_books_search_results.png +0 -0
  181. data/share/gnome/help/alexandria/C/figures/editing_book_properties_info.png +0 -0
  182. data/share/gnome/help/alexandria/C/figures/editing_book_properties_loaning.png +0 -0
  183. data/share/gnome/help/alexandria/C/figures/exporting_information_html.png +0 -0
  184. data/share/gnome/help/alexandria/C/figures/getting_started_first_launched.png +0 -0
  185. data/share/gnome/help/alexandria/C/figures/searching_filtering_views_list_view.png +0 -0
  186. data/share/gnome/help/alexandria/C/figures/searching_filtering_views_list_view_search.png +0 -0
  187. data/share/gnome/help/alexandria/C/figures/settings_providers_new_z3950.png +0 -0
  188. data/share/gnome/help/alexandria/C/figures/smart_libraries_new_smart_library.png +0 -0
  189. data/share/gnome/help/alexandria/C/figures/working_with_libraries_library_pane.png +0 -0
  190. data/share/gnome/help/alexandria/C/getting-started.xml +154 -0
  191. data/share/gnome/help/alexandria/C/gnu-fdl-1.2.xml +543 -0
  192. data/share/gnome/help/alexandria/C/introduction.xml +142 -0
  193. data/share/gnome/help/alexandria/C/searching.xml +90 -0
  194. data/share/gnome/help/alexandria/C/settings.xml +140 -0
  195. data/share/gnome/help/alexandria/C/smart-libraries.xml +160 -0
  196. data/share/gnome/help/alexandria/C/working-with-libraries.xml +76 -0
  197. data/share/gnome/help/alexandria/ChangeLog +99 -0
  198. data/share/gnome/help/alexandria/fr/alexandria.xml +2292 -0
  199. data/share/gnome/help/alexandria/fr/figures/alexandria_add_button.png +0 -0
  200. data/share/gnome/help/alexandria/fr/figures/alexandria_add_by_isbn_1.png +0 -0
  201. data/share/gnome/help/alexandria/fr/figures/alexandria_add_by_search_1.png +0 -0
  202. data/share/gnome/help/alexandria/fr/figures/alexandria_add_manually.png +0 -0
  203. data/share/gnome/help/alexandria/fr/figures/alexandria_add_z3950.png +0 -0
  204. data/share/gnome/help/alexandria/fr/figures/alexandria_close_button.png +0 -0
  205. data/share/gnome/help/alexandria/fr/figures/alexandria_edit_info.png +0 -0
  206. data/share/gnome/help/alexandria/fr/figures/alexandria_export_web_page.png +0 -0
  207. data/share/gnome/help/alexandria/fr/figures/alexandria_importing.png +0 -0
  208. data/share/gnome/help/alexandria/fr/figures/alexandria_library_pane.png +0 -0
  209. data/share/gnome/help/alexandria/fr/figures/alexandria_list_view.png +0 -0
  210. data/share/gnome/help/alexandria/fr/figures/alexandria_list_view_search.png +0 -0
  211. data/share/gnome/help/alexandria/fr/figures/alexandria_loaning.png +0 -0
  212. data/share/gnome/help/alexandria/fr/figures/alexandria_main_window.png +0 -0
  213. data/share/gnome/help/alexandria/fr/figures/alexandria_remove_button.png +0 -0
  214. data/share/gnome/help/alexandria/ja/about.xml +33 -0
  215. data/share/gnome/help/alexandria/ja/adding-books.xml +314 -0
  216. data/share/gnome/help/alexandria/ja/alexandria.xml +172 -0
  217. data/share/gnome/help/alexandria/ja/bugs.xml +11 -0
  218. data/share/gnome/help/alexandria/ja/editing-book-properties.xml +100 -0
  219. data/share/gnome/help/alexandria/ja/exporting.xml +98 -0
  220. data/share/gnome/help/alexandria/ja/figures/adding_books_acquire_from_scanner_process.png +0 -0
  221. data/share/gnome/help/alexandria/ja/figures/adding_books_add_by_isbn.png +0 -0
  222. data/share/gnome/help/alexandria/ja/figures/adding_books_isbn_import.png +0 -0
  223. data/share/gnome/help/alexandria/ja/figures/adding_books_manual_details.png +0 -0
  224. data/share/gnome/help/alexandria/ja/figures/adding_books_rename_library_after_import.png +0 -0
  225. data/share/gnome/help/alexandria/ja/figures/adding_books_search_results.png +0 -0
  226. data/share/gnome/help/alexandria/ja/figures/editing_book_properties_info.png +0 -0
  227. data/share/gnome/help/alexandria/ja/figures/editing_book_properties_loaning.png +0 -0
  228. data/share/gnome/help/alexandria/ja/figures/exporting_information_html.png +0 -0
  229. data/share/gnome/help/alexandria/ja/figures/getting_started_first_launched.png +0 -0
  230. data/share/gnome/help/alexandria/ja/figures/searching_filtering_views_list_view.png +0 -0
  231. data/share/gnome/help/alexandria/ja/figures/searching_filtering_views_list_view_search.png +0 -0
  232. data/share/gnome/help/alexandria/ja/figures/settings_providers_new_z3950.png +0 -0
  233. data/share/gnome/help/alexandria/ja/figures/smart_libraries_new_smart_library.png +0 -0
  234. data/share/gnome/help/alexandria/ja/figures/working_with_libraries_library_pane.png +0 -0
  235. data/share/gnome/help/alexandria/ja/getting-started.xml +144 -0
  236. data/share/gnome/help/alexandria/ja/gnu-fdl-1.2.xml +541 -0
  237. data/share/gnome/help/alexandria/ja/introduction.xml +134 -0
  238. data/share/gnome/help/alexandria/ja/searching.xml +104 -0
  239. data/share/gnome/help/alexandria/ja/settings.xml +129 -0
  240. data/share/gnome/help/alexandria/ja/smart-libraries.xml +140 -0
  241. data/share/gnome/help/alexandria/ja/working-with-libraries.xml +88 -0
  242. data/share/menu/alexandria +7 -0
  243. data/share/omf/alexandria/alexandria-C.omf.in +27 -0
  244. data/share/omf/alexandria/alexandria-fr.omf.in +30 -0
  245. data/share/sounds/alexandria/bad_scan.ogg +0 -0
  246. data/share/sounds/alexandria/bad_scan.wav +0 -0
  247. data/share/sounds/alexandria/good_scan.ogg +0 -0
  248. data/share/sounds/alexandria/good_scan.wav +0 -0
  249. data/share/sounds/alexandria/scanning.ogg +0 -0
  250. data/share/sounds/alexandria/scanning.wav +0 -0
  251. data/spec/alexandria/library_spec.rb +205 -0
  252. data/spec/alexandria/preferences_spec.rb +22 -0
  253. data/spec/alexandria/scanners/cuecat_spec.rb +68 -0
  254. data/spec/alexandria/smart_library_spec.rb +22 -0
  255. data/spec/alexandria/ui/dialogs_spec.rb +90 -0
  256. data/spec/alexandria/ui/iconview_spec.rb +27 -0
  257. data/spec/alexandria/ui/listview_spec.rb +28 -0
  258. data/spec/alexandria/ui/main_app_spec.rb +48 -0
  259. data/spec/alexandria/ui/sidepane_spec.rb +27 -0
  260. data/spec/alexandria/ui/ui_manager_spec.rb +26 -0
  261. data/spec/alexandria/ui/ui_utilities_spec.rb +60 -0
  262. data/spec/alexandria/utilities_spec.rb +50 -0
  263. data/spec/data/libraries/0.6.1-noisbn/My Library/0201398257.yaml +10 -0
  264. data/spec/data/libraries/0.6.1-noisbn/My Library/1565920007.yaml +10 -0
  265. data/spec/data/libraries/0.6.1/My Library/0192812173.yaml +9 -0
  266. data/spec/data/libraries/0.6.1/My Library/0201398257.cover +0 -0
  267. data/spec/data/libraries/0.6.1/My Library/0201398257.yaml +10 -0
  268. data/spec/data/libraries/0.6.1/My Library/1565920007.yaml +10 -0
  269. data/spec/data/libraries/0.6.2/My Library/9780140266146.cover +0 -0
  270. data/spec/data/libraries/0.6.2/My Library/9780140266146.yaml +16 -0
  271. data/spec/data/libraries/0.6.2/My Library/9780140278781.cover +0 -0
  272. data/spec/data/libraries/0.6.2/My Library/9780140278781.yaml +21 -0
  273. data/spec/data/libraries/0.6.2/My Library/9780571147168.cover +0 -0
  274. data/spec/data/libraries/0.6.2/My Library/9780571147168.yaml +20 -0
  275. data/spec/data/libraries/0.6.2/My Library/9780575079038.cover +0 -0
  276. data/spec/data/libraries/0.6.2/My Library/9780575079038.yaml +20 -0
  277. data/spec/data/libraries/0.6.2/My Library/9780755322800.cover +0 -0
  278. data/spec/data/libraries/0.6.2/My Library/9780755322800.yaml +20 -0
  279. data/spec/spec_helper.rb +46 -0
  280. data/tasks/rdoc.rake +6 -0
  281. data/tasks/setup.rb +30 -0
  282. data/tasks/spec.rake +29 -0
  283. data/tasks/test.rake +38 -0
  284. data/test/application_test.rb +39 -0
  285. data/test/book_test.rb +34 -0
  286. data/test/data/isbns.txt +3 -0
  287. data/test/isbn_test.rb +68 -0
  288. data/test/providers_test.rb +254 -0
  289. data/test/test_helper.rb +42 -0
  290. data/util/rake/fileinstall.rb +313 -0
  291. data/util/rake/gettextgenerate.rb +158 -0
  292. data/util/rake/omfgenerate.rb +79 -0
  293. metadata +452 -0
@@ -0,0 +1,76 @@
1
+ <!--
2
+ This is part of the Alexandria Manual.
3
+ Copyright (C) 2005 Liam Davison
4
+ Copyright (C) 2007 Cathal Mc Ginley
5
+ See the file alexandria.xml for copying conditions.
6
+ -->
7
+
8
+ <!-- ============= Working with Libraries Subsection ============ -->
9
+
10
+ <section id="working-with-libraries">
11
+ <title>Working with Libraries</title>
12
+ <para>Books stored in &app; can be grouped into different collections, called libraries. For instance, you may have
13
+ one library for all your novels, and other for your programming manuals. &app; allows you to create, edit, and move books
14
+ between libraries.</para>
15
+ <para>Available libraries are listed in the <guilabel>Library pane</guilabel> at the left of the main &app; window. If you cannot see the library pane, open it with <menuchoice><guimenu>View</guimenu><guimenuitem>Side Pane</guimenuitem></menuchoice>. You can close it again with the same menu option, or by clicking the <guibutton>Close</guibutton> icon in the top right of the library pane.</para>
16
+ <figure id="library-pane-fig">
17
+ <title>An &app; list of libraries</title>
18
+ <screenshot>
19
+ <mediaobject>
20
+ <imageobject>
21
+ <imagedata fileref="figures/working_with_libraries_library_pane.png" format="PNG"/>
22
+ </imageobject>
23
+ <!-- EPS versions of the figures are not required at the moment. -->
24
+ <!--
25
+ <imageobject>
26
+ <imagedata fileref="figures/image.eps" format="EPS"/>
27
+ </imageobject>
28
+ -->
29
+ <textobject>
30
+ <phrase>The &app; list of libraries.</phrase>
31
+ </textobject>
32
+ </mediaobject>
33
+ </screenshot>
34
+ </figure>
35
+ <para>
36
+ <itemizedlist>
37
+ <listitem><para><xref linkend="create-new-library"/></para></listitem>
38
+ <listitem><para><xref linkend="renaming-libraries"/></para></listitem>
39
+ <listitem><para><xref linkend="delete-library"/></para></listitem>
40
+ <listitem><para><xref linkend="moving-between-libraries"/></para></listitem>
41
+ </itemizedlist>
42
+ </para>
43
+
44
+ <!-- ======= Creating libraries ===== -->
45
+ <section id="create-new-library">
46
+ <title>Creating a new library</title>
47
+ <para>To create a new library, click on the <guibutton>New
48
+ Library</guibutton> button on the toolbar, or choose
49
+ <menuchoice><guimenu>Library</guimenu><guimenuitem>New
50
+ Library</guimenuitem></menuchoice> from the main menu. A new
51
+ library will also be automatically created when you import a list
52
+ of books from another source.</para>
53
+ </section>
54
+
55
+ <!-- ======= Renaming libraries ===== -->
56
+ <section id="renaming-libraries">
57
+ <title>Renaming a library</title>
58
+ <para>To rename a library, simply click on its name in the Library pane, and type in the new name. You can also right-click on the library name, and select <guimenuitem>Rename</guimenuitem> from the pop-up menu.</para>
59
+ </section>
60
+
61
+ <!-- ======= Deleting libraries ===== -->
62
+ <section id="delete-library">
63
+ <title>Deleting a library</title>
64
+ <para>To delete a library, select the library in the library pane, either right-click and select <guimenuitem>Delete</guimenuitem>, choose <menuchoice><guimenu>Edit</guimenu><guimenuitem>Delete</guimenuitem></menuchoice> from the main menu, or press the <source>Delete</source> key on your keyboard. &app; will ask for confirmation before deleting the library.</para>
65
+ <warning>
66
+ <para>Deleting a library deletes all the books it contains, and cannot be undone!</para>
67
+ </warning>
68
+ </section>
69
+
70
+ <!-- ====== Moving between libraries == -->
71
+ <section id="moving-between-libraries">
72
+ <title>Moving books between libraries</title>
73
+ <para>You can move books between libraries by selecting the book or books you wish to move, right-clicking and choosing <menuchoice><guimenu>Move</guimenu><guimenuitem>In Library Name</guimenuitem></menuchoice> or choosing <menuchoice><guimenu>Edit</guimenu><guimenuitem>Move</guimenuitem><guimenuitem>In Library Name</guimenuitem></menuchoice> from the main menu.
74
+ </para>
75
+ </section>
76
+ </section>
@@ -0,0 +1,99 @@
1
+ 2006-02-27 Aymeric Nys <aymeric@nnx.com>
2
+
3
+ * data/gnome/help/alexandria/fr/alexandria.xml
4
+ * fr/figures/alexandria_main_window.png,
5
+ fr/figures/alexandria_add_manually.png
6
+ fr/figures/alexandria_importing.png,
7
+ fr/figures/alexandria_edit_info.png
8
+ fr/figures/alexandria_loaning.png,
9
+ fr/figures/alexandria_library_pane.png
10
+ fr/figures/alexandria_list_view.png,
11
+ fr/figures/alexandria_export_web_page.png
12
+ fr/figures/alexandria_add_z3950.png,
13
+ fr/figures/alexandria_add_by_search_1.png
14
+
15
+ - First Commit
16
+
17
+ 2005-11-13 Liam Davison <carnegie@liamjdavison.info@liamjdavison.>
18
+
19
+ * data/gnome/help/alexandria/C/alexandria.xml:
20
+
21
+ - Rewrote Acquire from Scanner section to match new functionality;
22
+ - Added Reynaud-Bray provider;
23
+ - Added BibTeX export.
24
+
25
+ 2005-08-14 Liam Davison <carnegie@liamjdavison.info>
26
+
27
+ * alexandria.xml:
28
+
29
+ - Include link to amazon web services signup page in the amazon preferences section
30
+
31
+ * figures/alexandria_add_z3950.png
32
+
33
+ - Missing from pervious commit
34
+
35
+ 2005-08-07 Liam Davison <carnegie@liamjdavison.info>
36
+
37
+ * alexandria.xml:
38
+
39
+ - Add instructions for adding Z39.50 data providers
40
+ - Removed references to amazon.ca and .fr
41
+ - Misc. spelling and grammar fixes
42
+
43
+ * figures/alexandria_main_window.png, figures/alexandria_add_manually.png
44
+ figures/alexandria_importing.png, figures/alexandria_edit_info.png
45
+ figures/alexandria_loaning.png, figures/alexandria_library_pane.png
46
+ figures/alexandria_list_view.png, figures/alexandria_export_web_page.png
47
+ figures/alexandria_add_z3950.png, figures/alexandria_add_by_search_1.png
48
+
49
+ - Updated screenshots to better match CVS version of alexandria
50
+ - Added screenshot for the Z39.50 provider
51
+
52
+ 2005-07-03 Liam Davision <carnegie@liamjdavison.info>
53
+
54
+ * alexandria.xml:
55
+
56
+ - Updated to include book thumbnails on Adding by Search
57
+ - Misc. tiny spelling and grammar fixes
58
+
59
+ * figures/alexandria_add_by_search_1.png, figures/alexandria_main_window.png
60
+
61
+ - Updated screenshots to include thumbnails on add book dialog,
62
+ and heart icons on main window
63
+
64
+ 2005-04-18 Laurent Sansonetti <lrz@gnome.org>
65
+
66
+ * alexandria.xml:
67
+
68
+ Lists all supported Amazon locales each time we talk about the provider.
69
+
70
+ 2005-04-18 Liam Davison <liam@liamjdavison.info>
71
+
72
+ * figures/alexandria_add_by_isbn_1.png, alexandria_add_by_search_1.png,
73
+ alexandria_add_maually.png, alexandria_loaning.png,
74
+ alexandria_edit_info.png:
75
+
76
+ - Updated screenshots to include Help buttons
77
+
78
+ * alexandria.xml:
79
+
80
+ - Removed reference to starting Alexandria from the Applications menu
81
+ - Includes mention of favourite books with a heart icon
82
+
83
+ 2005-04-07 Liam Davison <liam@liamjdavison.info>
84
+
85
+ * Added Internet Bookshop Italia to the online providers list
86
+
87
+ 2005-03-26 Laurent Sansonetti <lrz@gnome.org>
88
+
89
+ * Fixed my e-mail address
90
+
91
+ 2005-03-26 Liam Davison <liam@liamjdavison.info>
92
+
93
+ * Added barcode instructions to Add Book pages
94
+
95
+ * Fixed various typos in the Add Book pages
96
+
97
+ 2005-03-17 Liam Davison <liam@liamjdavison.info>
98
+
99
+ * Initial version of documentation
@@ -0,0 +1,2292 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN" "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd" [
3
+ <!ENTITY legal SYSTEM "legal.xml">
4
+ <!ENTITY appversion "0.6">
5
+ <!ENTITY manrevision "0.0.7">
6
+ <!ENTITY date "Juin 2005">
7
+ <!ENTITY app "<application>Alexandria</application>">
8
+ <!-- Information about the entities
9
+ The legal.xml file contains legal information, there is no need to edit the file.
10
+ Use the appversion entity to specify the version of the application.
11
+ Use the manrevision entity to specify the revision number of this manual.
12
+ Use the date entity to specify the release date of this manual.
13
+ Use the app entity to specify the name of the application. -->]>
14
+
15
+ <!--
16
+ Traduction française du manuel d&#8217;Alexandria
17
+ Auteur: Aymeric Nys
18
+ Date : 30 décembre 2005
19
+ -->
20
+
21
+ <!--
22
+ (Do not remove this comment block.)
23
+ Maintained by the GNOME Documentation Project
24
+ http://developer.gnome.org/projects/gdp
25
+ Template version: 2.0 beta
26
+ Template last modified Apr 11, 2002
27
+ -->
28
+ <!-- =============Document Header ============================= -->
29
+ <article id="index" lang="fr">
30
+ <!-- please do not change the id; for translations, change lang to -->
31
+ <!-- appropriate code -->
32
+ <articleinfo>
33
+ <title>Manuel de l&#8217;utilisateur d&#8217;&app;<!--&app; Manual--></title>
34
+ <copyright>
35
+ <year>2005</year>
36
+ <holder>Liam Davison</holder>
37
+ </copyright>
38
+ <copyright>
39
+ <year>2005</year>
40
+ <holder>Aymeric Nys (pour la française)</holder>
41
+ </copyright>
42
+
43
+ <!-- An address can be added to the publisher information. If a role is
44
+ not specified, the publisher/author is the same for all versions of the
45
+ document. -->
46
+ <publisher>
47
+ <publishername> Projet GNOME </publishername>
48
+ </publisher>
49
+
50
+ <!-- An address can be added to the publisher information. If a role is
51
+ not specified, the publisher/author is the same for all versions of the
52
+ document. -->
53
+ <!-- <publisher><publishername> GNOME Documentation Project </publishername></publisher>&legal; -->
54
+ <!-- This file contains link to license for the documentation (GNU FDL), and
55
+ other legal stuff such as "NO WARRANTY" statement. Please do not change
56
+ any of this. -->
57
+ <authorgroup>
58
+ <author>
59
+ <firstname>Liam</firstname>
60
+ <surname>Davison</surname>
61
+ <affiliation>
62
+ <orgname>Écriture de la documentation de &app;</orgname>
63
+ <address><email>carnegie@liamjdavison.info</email></address>
64
+ </affiliation>
65
+ </author>
66
+ <!-- This is appropriate place for other contributors: translators,
67
+ maintainers, etc. Commented out by default.
68
+ -->
69
+ <othercredit class="translator">
70
+ <firstname>Aymeric</firstname>
71
+ <surname>Nys</surname>
72
+ <affiliation>
73
+ <orgname>Traduction de la documentation d&#8217;&app;</orgname>
74
+ <address><email>aymeric CHEZ nnx POINT com</email></address>
75
+ </affiliation>
76
+ <contrib>Traduction française</contrib>
77
+ </othercredit>
78
+ <othercredit class="translator">
79
+ <firstname>Christophe</firstname>
80
+ <surname>Bliard</surname>
81
+ <contrib>Relecture de la traduction française</contrib>
82
+ </othercredit>
83
+
84
+ </authorgroup>
85
+ <!-- According to GNU FDL, revision history is mandatory if you are -->
86
+ <!-- modifying/reusing someone else&#8217;s document. If not, you can omit it. -->
87
+ <!-- Remember to remove the &manrevision; entity from the revision entries other
88
+ -->
89
+ <!-- than the current revision. -->
90
+ <!-- The revision numbering system for GNOME manuals is as follows: -->
91
+ <!-- * the revision number consists of two components -->
92
+ <!-- * the first component of the revision number reflects the release version of the GNOME desktop. -->
93
+ <!-- * the second component of the revision number is a decimal unit that is incremented with each revision of the manual. -->
94
+ <!-- For example, if the GNOME desktop release is V2.x, the first version of the manual that -->
95
+ <!-- is written in that desktop timeframe is V2.0, the second version of the manual is V2.1, etc. -->
96
+ <!-- When the desktop release version changes to V3.x, the revision number of the manual changes -->
97
+ <!-- to V3.0, and so on. -->
98
+ <revhistory>
99
+ <revision>
100
+ <revnumber>Manuel d'Alexandria V&manrevision;</revnumber>
101
+ <date>&date;</date>
102
+ <revdescription>
103
+ <para role="author">Liam Davison
104
+ <email>carnegie@liamjdavison.info</email>
105
+ </para>
106
+ <para role="publisher">Documentation d'Alexandria</para>
107
+ </revdescription>
108
+ </revision>
109
+ <revision>
110
+ <revnumber>Manuel d&#8217;&app; V&manrevision;.fr.1.0</revnumber>
111
+ <date>2005-12-30</date>
112
+ <authorinitials>AN</authorinitials>
113
+ <revremark>Première traduction française.</revremark>
114
+ </revision>
115
+ <revision>
116
+ <revnumber>Manuel d&#8217;&app; V&manrevision;.fr.1.0.1</revnumber>
117
+ <date>2006-01-04</date>
118
+ <authorinitials>AN, CB</authorinitials>
119
+ <revremark>Diverses corrections orthographiques et améliorations syntaxiques.</revremark>
120
+ </revision>
121
+ </revhistory>
122
+
123
+ <releaseinfo>
124
+ Ce manuel documente la version &appversion; de &app;.
125
+ <!--This manual describes version &appversion; of Alexandria-->
126
+ </releaseinfo>
127
+
128
+ <abstract>
129
+ <para>
130
+ &app; vous permet de gérer votre bibliothèque.
131
+ </para>
132
+ </abstract>
133
+
134
+ <legalnotice>
135
+ <title>Votre avis</title>
136
+ <para>Pour signaler un problème ou émettre une suggestion concernant ce
137
+ programme ou ce manuel, procédez comme indiqué à la <ulink
138
+ url="ghelp:gnome-feedback" type="help">Page de réactions sur GNOME</ulink>.
139
+ </para>
140
+ <!-- Translators may also add here feedback address for translations -->
141
+ </legalnotice>
142
+
143
+ </articleinfo>
144
+
145
+ <indexterm zone="index">
146
+ <primary>Alexandria</primary>
147
+ </indexterm>
148
+ <!-- ============= Document Body ============================= -->
149
+ <!-- ============= Introduction ============================== -->
150
+ <!-- Use the Introduction section to give a brief overview of what
151
+ the application is and what it does. -->
152
+ <sect1 id="myapp-introduction">
153
+ <title>Introduction</title>
154
+ <para>
155
+ &app; vous permet de gérer votre collection de livres.
156
+ Les fonctionnalités d&#8217;&app; vous permettent&nbsp;:
157
+ <!-- The &app; application enables you to manage your collection of books.
158
+ &app; provides the following features:-->
159
+ </para>
160
+ <itemizedlist>
161
+ <listitem>
162
+ <para>de récupérer et d&#8217;afficher les informations de livres
163
+ (incluant une image de la couverture) à partir de
164
+ bibliothèques en ligne&nbsp;:
165
+ <!--retrieves and displays book information (including cover pictures) from online libraries:-->
166
+ </para>
167
+ <itemizedlist>
168
+ <listitem>
169
+ <para>
170
+ <orgname>Amazon</orgname> (.com, .co.uk, .de et .jp)&nbsp;;
171
+ </para>
172
+ </listitem>
173
+ <listitem>
174
+ <para>
175
+ <orgname>Proxis</orgname>&nbsp;;
176
+ </para>
177
+ </listitem>
178
+ <listitem>
179
+ <para>
180
+ <orgname>Barnes and Noble</orgname>&nbsp;;
181
+ </para>
182
+ </listitem>
183
+ <listitem>
184
+ <para>
185
+ <orgname>Ministère de la Culture espagnole</orgname>&nbsp;;
186
+ <!--the Spanish Ministry of Culture-->
187
+ </para>
188
+ </listitem>
189
+ <listitem>
190
+ <para>
191
+ <orgname>Amadeus Buch</orgname>&nbsp;;
192
+ </para>
193
+ </listitem>
194
+ <listitem>
195
+ <para>
196
+ <orgname>Internet Bookshop Italia</orgname>&nbsp;;
197
+ </para>
198
+ </listitem>
199
+ <listitem>
200
+ <para>
201
+ La <orgname>Bibliothèque Britannique</orgname>&nbsp;;
202
+ <!--The British Library and the US Library of Congress-->
203
+ </para>
204
+ </listitem>
205
+ <listitem>
206
+ <para>
207
+ La <orgname>Bibliothèque du Congrès</orgname> des États-Unis d&#8217;Amérique&nbsp;;
208
+ <!--The British Library and the US Library of Congress-->
209
+ </para>
210
+ </listitem>
211
+ </itemizedlist>
212
+ </listitem>
213
+ <listitem>
214
+ <para>
215
+ d&#8217;ajouter de nouveaux fournisseurs en ligne utilisant
216
+ le protocole Z39.50&nbsp;;
217
+ <!--allows you to add new online providers using the Z39.50 protocol-->
218
+ </para>
219
+ </listitem>
220
+ <listitem>
221
+ <para>
222
+ d&#8217;ajouter des livres et de les mettre à jour
223
+ manuellement&nbsp;;
224
+ <!--allows books to be added and updated by hand-->
225
+ </para>
226
+ </listitem>
227
+ <listitem>
228
+ <para>
229
+ de rechercher par <acronym>EAN</acronym>/<acronym>ISBN</acronym>, titre,
230
+ auteurs, ou mots-clés&nbsp;;
231
+ <!--enables searches either by EAN/ISBN, title, authors or keyword-->
232
+ </para>
233
+ </listitem>
234
+ <listitem>
235
+ <para>
236
+ de montrer les livres sous différentes vues
237
+ (liste standard ou
238
+ liste d&#8217;icônes) qui peuvent être filtrées ou triées&nbsp;;
239
+ <!--shows books in different views (standard list or icons list), that
240
+ can be filtered and/or sorted-->
241
+ </para>
242
+ </listitem>
243
+ <listitem>
244
+ <para>
245
+ d&#8217;enregistrer les livres empruntés, chaque livre avec sa date
246
+ d&#8217;emprunt, et le nom de l&#8217;emprunteur&nbsp;;
247
+ <!--allows marking your books as loaned, each with the loan-date
248
+ and the name of the person who has borrowed them-->
249
+ </para>
250
+ </listitem>
251
+ <listitem>
252
+ <para>
253
+ de gérer la notation des livres, les livres préférés
254
+ et des notes additionnelles&nbsp;;
255
+ <!--handles book rating, favourite books, and additional notes-->
256
+ </para>
257
+ </listitem>
258
+ <listitem>
259
+ <para>
260
+ d&#8217;importer et d&#8217;exporter les données aux formats
261
+ <acronym>ONIX</acronym>,
262
+ Tellico et sous forme de liste de
263
+ <acronym>EAN</acronym>/<acronym>ISBN</acronym>&nbsp;;
264
+ <!--can import and export data into ONIX, Tellico and
265
+ EAN/ISBN-list formats-->
266
+ </para>
267
+ </listitem>
268
+ <listitem>
269
+ <para>
270
+ de générer des pages web <acronym>XHTML</acronym> stylisées avec
271
+ <acronym>CSS</acronym> à partir de vos bibliothèques&nbsp;;
272
+ <!--generate XHTML web pages theme-able with CSS from your libraries-->
273
+ </para>
274
+ </listitem>
275
+ <listitem>
276
+ <para>
277
+ le support des lecteurs de code-barres CueCat©.
278
+ <!--supports CueCat (c) barcode readers-->
279
+ </para>
280
+ </listitem>
281
+ </itemizedlist>
282
+
283
+ <note>
284
+ <para>
285
+ &app; est continuellement en développement. De nouvelles fonctionnalités sont
286
+ régulièrement ajoutées.
287
+ <!--Alexandria is under constant development - new features are being added
288
+ regularly.-->
289
+ </para>
290
+ </note>
291
+ </sect1>
292
+
293
+ <!-- =========== Getting Started ============================== -->
294
+ <!-- Use the Getting Started section to describe the steps required
295
+ to start the application and to describe the user interface components
296
+ of the application. If there is other information that it is important
297
+ for readers to know before they start using the application, you should
298
+ also include this information here.
299
+ If the information about how to get started is very short, you can
300
+ include it in the Introduction and omit this section. -->
301
+ <sect1 id="myapp-getting-started">
302
+ <title>Initiation<!--Getting Started--></title>
303
+ <sect2 id="myapp-start">
304
+ <title>
305
+ Lancement d&#8217;&app;
306
+ <!--To Start &app;-->
307
+ </title>
308
+ <para>
309
+ Vous pouvez lancer &app; comme suit&nbsp;:
310
+ <!--You can start <application>&app;</application> in the following ways:-->
311
+ </para>
312
+ <variablelist>
313
+ <!--
314
+ <varlistentry>
315
+ <term>Menu <guimenu>Applications</guimenu></term>
316
+ <listitem>
317
+ <para>Choisissez
318
+ <menuchoice>
319
+ <guisubmenu>Office</guisubmenu>
320
+ <guimenuitem>Alexandria</guimenuitem>
321
+ </menuchoice>.
322
+ </para>
323
+ </listitem>
324
+ </varlistentry>
325
+ -->
326
+ <varlistentry>
327
+ <term>
328
+ <guimenu>Ligne de commande</guimenu>
329
+ <!--<guimenu>Command line</guimenu>--></term>
330
+ <listitem>
331
+ <para>
332
+ Pour lancer &app; à partir de la ligne de commande, saisissez
333
+ la commande suivante puis appuyez sur la touche
334
+ <keycap>Entrée</keycap>&nbsp;:
335
+ <!--To start <application>&app;</application> from a command line,
336
+ type the following command,
337
+ then press <keycap>Return</keycap>:-->
338
+ </para>
339
+ <para>
340
+ <command>alexandria</command>
341
+ </para>
342
+ <para>
343
+ &app; ouvre la dernière bibliothèque utilisée.
344
+ <!--&app; will open the most recently accessed library.-->
345
+ </para>
346
+ </listitem>
347
+ </varlistentry>
348
+ </variablelist>
349
+ </sect2>
350
+
351
+ <sect2 id="myapp-when-start">
352
+ <title>
353
+ Au lancement d&#8217;&app;
354
+ <!--When You Start &app;-->
355
+ </title>
356
+ <para>
357
+ Lorsque vous lancez &app;, la fenêtre suivante est affichée.
358
+ <!--When you start <application>&app;</application>, the following window is
359
+ displayed.-->
360
+ </para>
361
+ <!-- ==== Figure ==== -->
362
+ <figure id="mainwindow-fig">
363
+ <title>
364
+ Fenêtre principale d&#8217;&app;.
365
+ <!--&app; Start Up Window-->
366
+ </title>
367
+ <screenshot>
368
+ <mediaobject>
369
+ <imageobject>
370
+ <imagedata fileref="figures/alexandria_main_window.png" format="PNG"/>
371
+ </imageobject>
372
+ <textobject>
373
+ <phrase>
374
+ Montre la fenêtre principale d&#8217;&app;. Contient la barre de titre,
375
+ la barre de menus, la barre d&#8217;outils, la liste des bibliothèques et
376
+ la zone d&#8217;affichage des livres.
377
+ La barre de menus contient les menus Bibliothèque, Édition,
378
+ Affichage et Aide.
379
+ <!--Shows &app; main window. Contains titlebar, menubar, toolbar,
380
+ library list and book display area. Menubar contains Library,
381
+ Edit, View and Help menus.-->
382
+ </phrase>
383
+ </textobject>
384
+ </mediaobject>
385
+ </screenshot>
386
+ </figure>
387
+ <!-- ==== End of Figure ==== -->
388
+ <!-- Include any descriptions of the GUI immediately after the screenshot of the main UI, -->
389
+ <!-- for example, the items on the menubar and on the toolbar. This section is optional. -->
390
+ <para>
391
+ La fenêtre d&#8217;&app; contient les éléments suivants&nbsp;:
392
+ <!--The &app; window contains the following elements:-->
393
+ </para>
394
+ <variablelist>
395
+ <varlistentry>
396
+ <term>Barre de menus<!--Menubar:--></term>
397
+ <listitem>
398
+ <para>
399
+ La barre de menus contient toutes les commandes
400
+ dont vous avez besoin pour travailler sur des bibliothèques et
401
+ des livres dans &app;.
402
+ <!--The menus on the menubar contain all of the commands you need to work
403
+ with libraries and books in <application>&app;</application>.-->
404
+ </para>
405
+ </listitem>
406
+ </varlistentry>
407
+ <varlistentry>
408
+ <term>Barre d&#8217;outils<!--Toolbar:--></term>
409
+ <listitem>
410
+ <para>
411
+ La barre d&#8217;outils contient les boutons pour ajouter rapidement
412
+ de nouveaux livres et de nouvelles bibliothèques à &app;.
413
+ Elle contient aussi un outil de recherche pour filtrer
414
+ les livres affichés
415
+ dans la zone d&#8217;affichage principale.
416
+ <!--The toolbar contains buttons to quickly add new books and libraries
417
+ to <application>&app;</application>,
418
+ plus a search tool to filter books displayed in the main display area.-->
419
+ </para>
420
+ </listitem>
421
+ </varlistentry>
422
+ <varlistentry>
423
+ <term>Liste des bibliothèques<!--Library List:--></term>
424
+ <listitem>
425
+ <para>
426
+ Le panneau listant les bibliothèques sur le côté gauche de la fenêtre
427
+ affiche les différentes bibliothèques créées dans &app;.
428
+ <!--The library list pane at the left edge of the window displays the
429
+ different libraries which
430
+ have been set up in <application>&app;</application>.-->
431
+ </para>
432
+ </listitem>
433
+ </varlistentry>
434
+ <varlistentry>
435
+ <term>Affichage de livres<!--Book display:--></term>
436
+ <listitem>
437
+ <para>
438
+ La partie principale de l&#8217;affichage liste tous les livres de la
439
+ bibliothèque sélectionnée.
440
+ &app; peut afficher les livres dans une liste ou les afficher
441
+ sous forme d&#8217;icônes. La vue sous forme de liste, identique
442
+ à celle utilisée par le gestionnaire de fichiers
443
+ <application>Nautilus</application>, affiche des informations
444
+ détaillées pour chaque livre sur une ligne.
445
+ <!--The main part of the display lists all the books in the current library.
446
+ <application>&app;</application> can
447
+ display your books either in an Icon or List view - the List View,
448
+ similar to that used in the <application>Nautilus</application>
449
+ file manager, displays detailed information about each book on
450
+ separate lines.-->
451
+ </para>
452
+ <para>
453
+ Dans la vue en icônes, vos livres préférés &mdash; notés avec 5 étoiles
454
+ &mdash; seront affichés avec un cœur dans le coin supérieur droit.
455
+ <!--In the icon view, your favourite books - rated with five stars -
456
+ will be shown with a heart icon in the top corner.-->
457
+ </para>
458
+ </listitem>
459
+ </varlistentry>
460
+ <varlistentry>
461
+ <term>La barre d&#8217;état<!--Statusbar:--></term>
462
+ <listitem>
463
+ <para>
464
+ La barre d&#8217;état indique la bibliothèque sélectionnée
465
+ et affiche le nombre de livres et le nombre de livres
466
+ sans note de cette bibliothèque.
467
+ <!--The statusbar displays information about the current library in
468
+ <application>&app;</application>, including the number of books,
469
+ and the number of books which have not been rated.-->
470
+ </para>
471
+ <para>
472
+ Si un livre est sélectionné, la barre d&#8217;état affiche le titre de
473
+ ce livre.
474
+ </para>
475
+ </listitem>
476
+ </varlistentry>
477
+ </variablelist>
478
+ </sect2>
479
+ </sect1>
480
+ <!-- ================ Adding Books ================================ -->
481
+ <!-- Use this section to describe how to use the application to perform the tasks for
482
+ which the application is designed. -->
483
+ <sect1 id="alexandria-adding">
484
+ <title>
485
+ Ajout de livres
486
+ <!--Adding Books-->
487
+ </title>
488
+ <para>
489
+ Vous pouvez ajouter des livres dans &app; de
490
+ plusieurs manières&nbsp;:
491
+ <!--You can add books to &app; in several different ways:-->
492
+ <itemizedlist>
493
+ <listitem>
494
+ <para><xref linkend="add-book-by-isbn"/></para>
495
+ </listitem>
496
+ <listitem>
497
+ <para><xref linkend="add-book-by-search"/></para>
498
+ </listitem>
499
+ <listitem>
500
+ <para><xref linkend="add-book-by-barcode-scan"/></para>
501
+ </listitem>
502
+ <listitem>
503
+ <para><xref linkend="add-book-manually"/></para>
504
+ </listitem>
505
+ </itemizedlist>
506
+ </para>
507
+ <para>
508
+ Vous pouvez également importer une liste de livres dans &app;&nbsp;:
509
+ <!--You can also import a list of books into &app;:-->
510
+ <itemizedlist>
511
+ <listitem>
512
+ <para><xref linkend="import-library"/></para>
513
+ </listitem>
514
+ </itemizedlist>
515
+ </para>
516
+ <para>
517
+ &app; garde en mémoire votre méthode préférée et sélectionne automatiquement
518
+ la dernière méthode utilisée. Par exemple, si le dernier ajout de livre
519
+ a été réalisé par l&#8217;intermédiaire d&#8217;une recherche sur
520
+ l&#8217;auteur, &app; ouvre la fenêtre
521
+ <guilabel>Ajout d&#8217;un livre</guilabel>
522
+ avec le champ <guilabel>par auteurs</guilabel> sélectionné.
523
+ <!--&app; will remember which method you prefer, and will automatically
524
+ select the most recently used method. For instance, if you last added
525
+ a book by searching for an author, &app; will open the
526
+ <guilabel>Add Book...</guilabel> dialog with the
527
+ <guilabel>Add book by author</guilabel> field selected.-->
528
+ </para>
529
+
530
+ <!-- ================ Adding Books Subsection ================================ -->
531
+
532
+ <sect2 id="add-book-by-isbn">
533
+ <title>
534
+ Ajout d&#8217;un livre en fournissant l&#8217;<acronym>ISBN</acronym>
535
+ <!--To add a book by supplying an ISBN-->
536
+ </title>
537
+ <para>
538
+ Si vous connaissez l&#8217;<acronym>ISBN</acronym> d&#8217;un livre à ajouter
539
+ à la bibliothèque, choisissez
540
+ <menuchoice>
541
+ <shortcut><keycombo><keycap>Ctrl</keycap><keycap>N</keycap></keycombo></shortcut>
542
+ <guimenu><accel>B</accel>ibliothèque</guimenu>
543
+ <guimenuitem><accel>A</accel>jouter un livre&hellip;</guimenuitem>
544
+ </menuchoice>,
545
+ ou cliquez sur le bouton
546
+ <guibutton><inlinegraphic fileref="figures/add-button.png"/>Ajouter un livre&hellip;</guibutton>
547
+ de la barre d&#8217;outils.
548
+ La fenêtre <guilabel>Ajout d&#8217;un livre</guilabel> est affichée.
549
+ Saisissez l&#8217;<acronym>ISBN</acronym> du livre à ajouter puis cliquez sur
550
+ le bouton
551
+ <guibutton>A<accel>j</accel>outer</guibutton> pour l&#8217;intégrer
552
+ à la bibliothèque sélectionnée. Pour ajouter le livre dans une
553
+ bibliothèque différente, sélectionnez le nom de cette bibliothèque
554
+ dans le menu déroulant
555
+ <guilabel><accel>B</accel>ibliothèque</guilabel>.
556
+
557
+ <!--If you know the ISBN of the book you wish to add to a library, choose
558
+ <menuchoice>
559
+ <guimenu>Library</guimenu>
560
+ <guimenuitem>Add Book...</guimenuitem>
561
+ </menuchoice>,
562
+ or click on the <guibutton>Add</guibutton> button on the toolbar.
563
+ The <guilabel>Adding a Book</guilabel> dialog is displayed.
564
+ Type in the ISBN of the book you wish to add, then click
565
+ <guibutton>Add</guibutton>. The book will be added to the currently
566
+ selected library. To add the book to a different library, select
567
+ the library name from the <guilabel>Save in Library</guilabel>
568
+ drop-down menu.-->
569
+ </para>
570
+
571
+ <caution>
572
+ <para>
573
+ &app; valide l&#8217;<acronym>ISBN</acronym> fourni et vous avertit si le
574
+ numéro saisi n&#8217;est pas un <acronym>ISBN</acronym> valide.
575
+ <!--&app; will validate the ISBN supplied and will warn you if the number
576
+ entered is not a valid ISBN.-->
577
+ </para>
578
+ </caution>
579
+
580
+ <para>
581
+ &app; récupère automatiquement les informations au sujet d&#8217;un livre
582
+ à partir de la source d&#8217;informations en ligne sélectionnée dans
583
+ les préférences de l&#8217;application.
584
+ <!--&app; will automatically fetch the information about the book from
585
+ the online information source selected in the application preferences.-->
586
+ </para>
587
+
588
+ <figure id="add-by-isbn-fig">
589
+ <title>
590
+ Ajout d&#8217;un livre par l&#8217;<acronym>ISBN</acronym>.
591
+ </title>
592
+ <screenshot>
593
+ <mediaobject>
594
+ <imageobject>
595
+ <imagedata fileref="figures/alexandria_add_by_isbn_1.png" format="PNG"/>
596
+ </imageobject>
597
+ <textobject>
598
+ <phrase>
599
+ Fenêtre montrant l&#8217;ajout d&#8217;un livre
600
+ par l&#8217;<acronym>ISBN</acronym>.
601
+ </phrase>
602
+ </textobject>
603
+ </mediaobject>
604
+ </screenshot>
605
+ </figure>
606
+
607
+
608
+ </sect2>
609
+
610
+ <!-- ========== Adding books by searching ====== -->
611
+ <sect2 id="add-book-by-search">
612
+ <title>
613
+ Recherche d&#8217;un livre dont l&#8217;<acronym>ISBN</acronym> est inconnu
614
+ <!--To search for a book whose ISBN you do not know-->
615
+ </title>
616
+ <para>
617
+ Si vous ne connaissez pas l&#8217;<acronym>ISBN</acronym> d&#8217;un livre à
618
+ ajouter, vous pouvez rechercher par le titre,
619
+ les auteurs ou des mots clés.
620
+ &app; recherche les livres qui correspondent aux critères définis
621
+ à partir de fournisseurs d&#8217;informations en ligne tel
622
+ qu&#8217;<ulink url="http://www.amazon.fr">Amazon</ulink>.
623
+ Vous pouvez ensuite sélectionner le livre désiré à partir de la liste
624
+ affichée et cliquer sur le bouton
625
+ <guibutton>A<accel>j</accel>outer</guibutton> pour
626
+ l&#8217;intégrer à votre bibliothèque.
627
+ <!--If you do not know the ISBN of the book you wish to add, you can specify
628
+ either the Title, the Authors or the Keywords, and &app; will search
629
+ your online information provider, such as Amazon, for books that match.
630
+ You can then select the desired book from the displayed list and
631
+ click <guibutton>Add</guibutton> to the book to the selected library.-->
632
+ </para>
633
+ <para>
634
+ Avec la fenêtre <guilabel>Ajout d&#8217;un livre</guilabel> ouverte,
635
+ cliquez sur le bouton radio <guilabel><accel>R</accel>echercher</guilabel>
636
+ puis choisissez dans le menu déroulant
637
+ <guilabel>par titre</guilabel>,
638
+ <guilabel>par auteurs</guilabel> ou
639
+ <guilabel>par mot clef</guilabel>.
640
+ Saisissez les informations relatives au livre recherché puis
641
+ cliquez sur le bouton
642
+ <guibutton><accel>R</accel>echercher</guibutton>.
643
+ <!--With the <guilabel>Adding a Book</guilabel> dialog open, click on the
644
+ <guilabel>Search</guilabel> checkbox then choose either
645
+ <guilabel>by title, by authors</guilabel> or
646
+ <guilabel>by keyword</guilabel> from the drop-down menu.
647
+ Type in the details of the book you are looking for, then click on
648
+ <guibutton>Find</guibutton>.-->
649
+ </para>
650
+ <figure id="add-by-search-fig">
651
+ <title>
652
+ Fenêtre <guilabel>Ajout d&#8217;un livre</guilabel> d&#8217;&app;
653
+ utilisant une recherche.
654
+ <!--&app; Adding a book by searching-->
655
+ </title>
656
+ <screenshot>
657
+ <mediaobject>
658
+ <imageobject>
659
+ <imagedata fileref="figures/alexandria_add_by_search_1.png" format="PNG"/>
660
+ </imageobject>
661
+ <textobject>
662
+ <phrase>
663
+ Montre la fenêtre <guilabel>Ajout d&#8217;un livre</guilabel>
664
+ d&#8217;&app;, permettant d&#8217;ajouter un livre par une recherche
665
+ du titre, des auteurs ou de mots clés
666
+ chez un fournisseur d&#8217;informations en ligne.
667
+ <!--Shows the &app; Add by Search dialogue, allowing you
668
+ to add a book by searching your online information
669
+ provider for a specific Title, Author or Keyword.-->
670
+ </phrase>
671
+ </textobject>
672
+ </mediaobject>
673
+ </screenshot>
674
+ </figure>
675
+
676
+ <para>
677
+ <!-- "image réduite de la couverture" traduction pour thumbnail ???
678
+ dans le context devrait être correct
679
+ -->
680
+ Lorsque c&#8217;est possible, &app; montre une image réduite de la couverture
681
+ des livres qu&#8217;il trouve,
682
+ facilitant le choix du livre ou de l&#8217;édition qui convient.
683
+ Sélectionnez l'ouvrage désiré dans la liste puis cliquez sur le
684
+ bouton <guibutton>A<accel>j</accel>outer</guibutton>.
685
+ <!--Where possible, &app; will show thumbnails of the books it finds,
686
+ making it easier to choose the right book or edition of a book.
687
+ Select the book you want from the list, and click
688
+ <guibutton>Add</guibutton>.-->
689
+ </para>
690
+
691
+ <tip>
692
+ <para>
693
+ Vous devrez probablement essayer différents termes
694
+ de recherche pour trouver le livre convoité.
695
+ <!--You may have to try several different search terms to find
696
+ the book you want.-->
697
+ </para>
698
+ </tip>
699
+ </sect2>
700
+
701
+ <!-- ======== Adding books by scanning a barcode ====== -->
702
+ <sect2 id="add-book-by-barcode-scan">
703
+ <title>
704
+ Ajout d&#8217;un livre en numérisant son code-barres
705
+ <!--To add a book by scanning its barcode-->
706
+ </title>
707
+ <para>
708
+ &app; prend en charge les scanners de code-barres CueCat©. Si vous
709
+ avez installé un scanner de code-barres CueCat©, &app;
710
+ affiche une petite image d&#8217;un code-barres à la droite de la boîte
711
+ de texte <guilabel><accel>I</accel>SBN</guilabel>.
712
+ Si vous n&#8217;avez pas de scanner, cette image sera grisée.
713
+ <!--&app; supports CueCat (c) barcode scanners. If you have set up
714
+ a CueCat (c) barcode scanner on your computer, &app; will display
715
+ a small picture of a barcode next to the
716
+ <guilabel>ISBN</guilabel> field.
717
+ (If you don&#8217;t have a scanner, this picture will be greyed out.)-->
718
+ </para>
719
+
720
+ <para>
721
+ Pour ajouter un livre, il suffit de numériser son code-barres
722
+ et &app; remplit automatiquement la boîte de texte
723
+ <guilabel><accel>I</accel>SBN</guilabel>. Ensuite, cliquez sur le bouton
724
+ <guibutton>A<accel>j</accel>outer</guibutton>.
725
+ <!--Simply scan the barcode on the book and Alexandria will
726
+ automatically fill in the <guilabel>ISBN</guilabel> field.
727
+ Then click <guibutton>Add</guibutton> as normal.-->
728
+ </para>
729
+ </sect2>
730
+
731
+ <!-- ======== Adding a book manually ================= -->
732
+ <sect2 id="add-book-manually">
733
+ <title>
734
+ Ajout manuel d&#8217;un livre
735
+ <!--To manually add a book--></title>
736
+ <para>
737
+ Parfois vous ne pourrez pas rechercher un livre en ligne.
738
+ Le livre peut ne pas avoir
739
+ d&#8217;<acronym>ISBN</acronym> (Les numéros
740
+ <acronym>ISBN</acronym> sont devenus standard pendant les
741
+ années 1970).
742
+ Peut être que le livre est trop récent, et aucune information
743
+ n&#8217;est disponible en ligne. Ou peut-être, tout simplement, vous
744
+ n&#8217;avez pas de connexion à l&#8217;Internet.
745
+ &app; vous permet de saisir par vous-même tous les détails
746
+ d&#8217;un livre&nbsp;: le titre, les auteurs,
747
+ l&#8217;image de couverture, etc.
748
+ <!--Sometimes you will not be able to search for a book online.
749
+ The book may not not have an ISBN (ISBN numbers only became
750
+ standard in the 1970s). Perhaps the book is too new, and no
751
+ information is available online. Or perhaps you simply don&#8217;t have
752
+ an Internet connection. &app; allows you to specify all the details
753
+ of a book - the Title, Authors, cover image and so forth -
754
+ by supplying them yourself.-->
755
+ </para>
756
+
757
+ <para>
758
+ Pour ajouter manuellement un livre à une bibliothèque,
759
+ choisissez
760
+ <menuchoice>
761
+ <guimenu><accel>B</accel>ibliothèque</guimenu>
762
+ <guimenuitem>Ajouter <accel>m</accel>anuellement un livre&hellip;</guimenuitem>
763
+ </menuchoice>.
764
+ La fenêtre suivante apparaît alors&nbsp;:
765
+ <!--To manually add a book to a library, choose
766
+ <menuchoice><guimenu>Library</guimenu>
767
+ <guimenuitem>Add Book Manually</guimenuitem></menuchoice>.
768
+ The following dialog will appear:-->
769
+ </para>
770
+ <figure id="add-manually-fig">
771
+ <title>
772
+ Ajout manuel d&#8217;un livre dans &app;.
773
+ <!--&app; adding a book manually--></title>
774
+ <screenshot>
775
+ <mediaobject>
776
+ <imageobject>
777
+ <imagedata fileref="figures/alexandria_add_manually.png" format="PNG"/>
778
+ </imageobject>
779
+ <textobject>
780
+ <phrase>
781
+ Montre la fenêtre Ajout manuel d&#8217;un livre d&#8217;&app;
782
+ vous permettant de saisir vous-même les informations
783
+ d&#8217;un livre.
784
+ <!--Shows the &app; Add book manually dialogue,
785
+ allowing type in all the information for the
786
+ book yourself.-->
787
+ </phrase>
788
+ </textobject>
789
+ </mediaobject>
790
+ </screenshot>
791
+ </figure>
792
+
793
+ <para>
794
+ Cette fenêtre est identique à la fenêtre
795
+ <guilabel>Édition d&#8217;un livre</guilabel>.
796
+ Il y a trois onglets dans cette fenêtre &mdash;
797
+ <guilabel>Général</guilabel>,
798
+ <guilabel>Prêt</guilabel> et
799
+ <guilabel>Notes</guilabel>.
800
+ Les champs disponibles vous permettent de saisir
801
+ le titre du livre, les auteurs,
802
+ l&#8217;<acronym>ISBN</acronym> si vous le connaissez,
803
+ l&#8217;éditeur, le type de reliure
804
+ (tel que Broché, Cartonné, Poche, livre audio) et de noter le livre.
805
+
806
+ <!-- This dialogue is very similar to the
807
+ <guilabel>Edit Book</guilabel> dialog. There are three tabs
808
+ to this dialogue - <guilabel>General</guilabel>,
809
+ <guilabel>Loaning</guilabel> and <guilabel>Notes</guilabel>.
810
+ There is space for you to specify the book title, the ISBN
811
+ if you know it, the book publisher, the binding
812
+ (such as Paperback, Hardback, or Audiobook), and the Authors.-->
813
+ </para>
814
+
815
+ <tip>
816
+ <para>
817
+ Pour ajouter un auteur, cliquez sur le bouton
818
+ <guibutton>
819
+ <inlinemediaobject>
820
+ <imageobject>
821
+ <imagedata fileref="figures/alexandria_add_button.png" format="PNG"/>
822
+ </imageobject>
823
+ <textobject>
824
+ <phrase>
825
+ +
826
+ </phrase>
827
+ </textobject>
828
+ </inlinemediaobject>
829
+ </guibutton>, à droite de la liste des auteurs
830
+ puis saisissez le nom. Pour retirer un auteur,
831
+ sélectionnez le nom et cliquez sur
832
+ <guibutton>
833
+ <inlinemediaobject>
834
+ <imageobject>
835
+ <imagedata fileref="figures/alexandria_remove_button.png" format="PNG"/>
836
+ </imageobject>
837
+ <textobject>
838
+ <phrase>
839
+ -
840
+ </phrase>
841
+ </textobject>
842
+ </inlinemediaobject>
843
+ </guibutton>.
844
+ Pour modifier un nom, cliquez deux fois dessus.
845
+ <!--To add a author, click on the <guibutton>+</guibutton>
846
+ next to the author list, then type the name.
847
+ To remove an author, select the name and click
848
+ <guibutton>-</guibutton>. To edit a name, click twice on
849
+ the name.-->
850
+ </para>
851
+ </tip>
852
+
853
+ <para>
854
+ Pour fournir une image représentant la couverture,
855
+ cliquez sur le bouton
856
+ <guibutton><accel>C</accel>ouverture</guibutton>.
857
+ Une fenêtre standard de sélection de fichiers s&#8217;ouvre.
858
+ Sélectionnez l&#8217;image sur votre système puis cliquez sur
859
+ <guibutton><accel>O</accel>uvrir</guibutton>. L&#8217;image
860
+ sera mise à l&#8217;échelle pour tenir dans l&#8217;espace
861
+ alloué. Les formats autorisés pour les images sont
862
+ <acronym>JPEG</acronym> et <acronym>GIF</acronym>.
863
+ <!--To supply a book cover image, click on the <guibutton>Cover</guibutton>
864
+ button. A standard file selection dialogue will open. Navigate to
865
+ the cover image file on your system - which can be in JPEG or GIF format -
866
+ and click <guibutton>Open</guibutton>. The image will be scaled
867
+ to fit into the <guilabel>Edit Book</guilabel> dialogue.-->
868
+ </para>
869
+
870
+ <para>
871
+ Vous pouvez noter un livre en cliquant sur les étoiles.
872
+ Pour annuler la notation, cliquez sur l&#8217;espace situé
873
+ à gauche de la première étoile.
874
+ <!--You can rate a book by clicking on the stars. To clear the rating,
875
+ click on the space immediately to the left of the first star.-->
876
+ </para>
877
+
878
+ <para>
879
+ Lorsque toutes les informations ont été saisies, cliquez sur
880
+ le bouton <guibutton>A<accel>j</accel>outer</guibutton>.
881
+ <!--When you have filled in all the information, click on the
882
+ <guibutton>Add</guibutton> button.-->
883
+ </para>
884
+ </sect2>
885
+
886
+ <!-- =========== Importing a list of books ========== -->
887
+ <sect2 id="import-library">
888
+ <title>
889
+ Importation d&#8217;une liste de livres
890
+ <!--To import a list of books-->
891
+ </title>
892
+ <para>
893
+ &app; peut importer des fichiers Tellico utilisés par d&#8217;autres
894
+ applications comme <application>Bookcase</application>.
895
+ Il peut aussi importer une simple liste d&#8217;<acronym>ISBN</acronym>,
896
+ récupérant les informations de chaque livre,
897
+ l&#8217;un à la suite de l&#8217;autre.
898
+ Pour importer ces fichiers, choisissez
899
+ <menuchoice>
900
+ <shortcut><keycombo><keycap>Ctrl</keycap><keycap>I</keycap></keycombo></shortcut>
901
+ <guimenu><accel>B</accel>ibliothèque</guimenu>
902
+ <guimenuitem><accel>I</accel>mporter</guimenuitem>
903
+ </menuchoice>.
904
+ Sélectionnez le fichier approprié puis cliquez sur
905
+ <guibutton>Importer</guibutton>.
906
+ &app; détecte automatiquement le type de fichier importé, mais
907
+ vous pouvez aussi le sélectionner dans le menu déroulant. Les
908
+ options disponibles sont&nbsp;:
909
+ <guilabel>Détection automatique</guilabel>,
910
+ <guilabel>Archive Tellico XML (*.bc,*.tc)</guilabel> et
911
+ <guilabel>Liste d&#8217;ISBN (*.txt)</guilabel>.
912
+
913
+ <!--&app; can import Tellico files, used by applications such as
914
+ <application>Bookcase</application>. It can also import a simple list
915
+ of ISBNs, fetching the details for each book in turn. To import
916
+ either a Tellico file or a flat ISBN list, choose
917
+ <menuchoice>
918
+ <guimenu>Library</guimenu>
919
+ <guimenuitem>Import...</guimenuitem>
920
+ </menuchoice>.
921
+ Navigate to the appropriate file, and click
922
+ <guibutton>Import</guibutton>. &app; can automatically determine what
923
+ type of file is being imported; you can, of course, specify the file
924
+ format by choosing either <guimenuitem>Archived Tellico</guimenuitem>
925
+ or <guimenuitem>ISBN List</guimenuitem> from the
926
+ <guilabel>Autodetect</guilabel> drop-down menu.-->
927
+ </para>
928
+
929
+ <figure id="importing-fig">
930
+ <title>
931
+ &app; important une liste d&#8217;<acronym>ISBN</acronym>.
932
+ <!--&app; importing a list of ISBNs-->
933
+ </title>
934
+ <screenshot>
935
+ <mediaobject>
936
+ <imageobject>
937
+ <imagedata fileref="figures/alexandria_importing.png" format="PNG"/>
938
+ </imageobject>
939
+ <textobject>
940
+ <phrase>
941
+ Montre la fenêtre d&#8217;&app; important une liste
942
+ d&#8217;<acronym>ISBN</acronym>.
943
+ <!--Shows &app; importing a list of ISBNs.-->
944
+ </phrase>
945
+ </textobject>
946
+ </mediaobject>
947
+ </screenshot>
948
+ </figure>
949
+
950
+ <tip>
951
+ <para>
952
+ &app; crée une nouvelle bibliothèque à l&#8217;importation
953
+ d&#8217;un fichier. Son nom est identique à celui du fichier.
954
+ Il est possible de donner un nom à la bibliothèque
955
+ au moment de l&#8217;importation en le saisissant dans la
956
+ boîte de texte
957
+ <guilabel><accel>N</accel>om de bibliothèque</guilabel>.
958
+ La bibliothèque créée sera automatiquement sélectionnée et
959
+ mise en surbrillance dans la liste des bibliothèques.
960
+ Il est possible de renommer la bibliothèque en saisissant
961
+ un nouveau nom, ou d&#8217;accepter celui proposé en cliquant
962
+ dans la fenêtre avec le bouton
963
+ <mousebutton>gauche</mousebutton> de la souris.
964
+ <!--&app; will create a new Library when importing a library -
965
+ its name will be the same as the filename you imported.
966
+ &app; will automatically select and highlight this library in
967
+ the library pane - you can immediately rename this by typing a
968
+ new name, or accept the default by clicking the left mouse
969
+ button.-->
970
+ </para>
971
+ </tip>
972
+ </sect2>
973
+ </sect1>
974
+
975
+
976
+ <!-- ============= Editing Book Properties Subsection =========== -->
977
+
978
+ <sect1 id="editing-book-properties">
979
+ <title>
980
+ Édition des propriétés d&#8217;un livre
981
+ <!--Editing Book Properties-->
982
+ </title>
983
+ <para>
984
+ &app; peut être utilisé pour éditer et mettre à jour les informations
985
+ de vos livres&nbsp;:
986
+ <!--You can use &app; to edit and update your book information:-->
987
+ <itemizedlist>
988
+ <listitem><para><xref linkend="editing-info"/></para></listitem>
989
+ <listitem><para><xref linkend="changing-cover-image"/></para></listitem>
990
+ <listitem><para><xref linkend="loaning-books"/></para></listitem>
991
+ <listitem><para><xref linkend="editing-notes"/></para></listitem>
992
+ </itemizedlist></para>
993
+
994
+ <!-- ======== Editing information ========= -->
995
+ <sect2 id="editing-info">
996
+ <title>
997
+ Modification des informations
998
+ <!--Editing basic information-->
999
+ </title>
1000
+ <para>
1001
+ Pour modifier un livre, double cliquez sur l&#8217;image du livre
1002
+ dans la fenêtre principale, ou choisissez&nbsp;:
1003
+ <menuchoice>
1004
+ <guimenu><accel>B</accel>ibliothèque</guimenu>
1005
+ <guimenuitem><accel>P</accel>ropriétés</guimenuitem>
1006
+ </menuchoice>.
1007
+ La fenêtre qui apparaît vous permet de modifier le titre du livre,
1008
+ l&#8217;<acronym>ISBN</acronym>, les auteurs, l&#8217;éditeur, l&#8217;édition et
1009
+ la notation.
1010
+ <!--To edit a book, simply double-click on the book image in the
1011
+ main window, or choose
1012
+ <menuchoice>
1013
+ <guimenu>Library</guimenu>
1014
+ <guimenuitem>Properties</guimenuitem>
1015
+ </menuchoice>.
1016
+ The following window will appear, where you can change the
1017
+ books&#8217; Title, ISBN, Authors, Publisher, Binding and Rating.-->
1018
+ </para>
1019
+
1020
+ <figure id="editing-info-fig">
1021
+ <title>
1022
+ Modification d&#8217;un livre avec &app;.
1023
+ <!--Editing a book with &app;-->
1024
+ </title>
1025
+ <screenshot>
1026
+ <mediaobject>
1027
+ <imageobject>
1028
+ <imagedata fileref="figures/alexandria_edit_info.png" format="PNG"/>
1029
+ </imageobject>
1030
+ <textobject>
1031
+ <phrase>
1032
+ Montre &app; modifiant les informations d&#8217;un livre
1033
+ <!--Shows &app; editing a book.-->
1034
+ </phrase>
1035
+ </textobject>
1036
+ </mediaobject>
1037
+ </screenshot>
1038
+ </figure>
1039
+
1040
+ <para>
1041
+ Pour ajouter un auteur, cliquez sur le bouton
1042
+ <guibutton>
1043
+ <inlinemediaobject>
1044
+ <imageobject>
1045
+ <imagedata fileref="figures/alexandria_add_button.png" format="PNG"/>
1046
+ </imageobject>
1047
+ <textobject>
1048
+ <phrase>
1049
+ +
1050
+ </phrase>
1051
+ </textobject>
1052
+ </inlinemediaobject>
1053
+ </guibutton>, à droite de la liste des auteurs
1054
+ puis saisissez le nom. Pour retirer un auteur,
1055
+ sélectionnez le nom et cliquez sur
1056
+ <guibutton>
1057
+ <inlinemediaobject>
1058
+ <imageobject>
1059
+ <imagedata fileref="figures/alexandria_remove_button.png" format="PNG"/>
1060
+ </imageobject>
1061
+ <textobject>
1062
+ <phrase>
1063
+ -
1064
+ </phrase>
1065
+ </textobject>
1066
+ </inlinemediaobject>
1067
+ </guibutton>.
1068
+ Pour modifier un nom, cliquez deux fois dessus.
1069
+ <!--To add a author, click on the
1070
+ <guibutton>+</guibutton> next to the author list, then type
1071
+ the new name. To remove an author, select the name and click
1072
+ <guibutton>-</guibutton>. To edit a name, click twice on
1073
+ the name.-->
1074
+ </para>
1075
+
1076
+ <tip>
1077
+ <para>
1078
+ Vous pouvez noter un livre en cliquant sur les étoiles.
1079
+ Pour annuler la notation, cliquez sur l&#8217;espace situé
1080
+ à gauche de la première étoile.
1081
+ Les icônes de vos livres préférés, notés cinq étoiles,
1082
+ sont marqués d&#8217;un cœur dans la vue en tant qu&#8217;icône.
1083
+ <!--You can rate a book by clicking on the stars. To clear
1084
+ the rating, click on the space immediately to the left of
1085
+ the first star. Your favourite books - those with five
1086
+ stars - will have a small heart icon in the Icon view
1087
+ of the main window.-->
1088
+ </para>
1089
+ </tip>
1090
+ </sect2>
1091
+
1092
+ <!-- ======== Changing cover images ========= -->
1093
+ <sect2 id="changing-cover-image">
1094
+ <title>
1095
+ Changement de l&#8217;image de couverture
1096
+ <!--Changing cover images-->
1097
+ </title>
1098
+ <para>
1099
+ Pour fournir une image représentant la couverture d&#8217;un livre,
1100
+ cliquez sur l&#8217;image existante (ou l&#8217;image de livre si
1101
+ aucune couverture n&#8217;est disponible).
1102
+ Une fenêtre standard de sélection de fichiers s&#8217;ouvre.
1103
+ Sélectionnez une image sur votre système et cliquez sur
1104
+ <guibutton><accel>O</accel>uvrir</guibutton>.
1105
+ L&#8217;image est redimensionnée pour tenir dans l'espace alloué.
1106
+ Les formats autorisés pour les images sont
1107
+ <acronym>JPEG</acronym> et <acronym>GIF</acronym>.
1108
+ <!--To supply a book cover image, click on the existing cover
1109
+ image (or the image of a book if no cover is available).
1110
+ A standard file selection dialog will open. Navigate to the
1111
+ cover image file on your system - which can be in JPEG or GIF
1112
+ format - and click <guibutton>Open</guibutton>. The image will
1113
+ be scaled to fit into the <guilabel>Edit Book</guilabel>
1114
+ dialog.-->
1115
+ </para>
1116
+ </sect2>
1117
+
1118
+ <!-- ======== Loaning books ========= -->
1119
+ <sect2 id="loaning-books">
1120
+ <title>
1121
+ Prêt de livres
1122
+ <!--Loaning books-->
1123
+ </title>
1124
+ <para>
1125
+ Pour indiquer qu&#8217;un livre est prêté, ouvrez la fenêtre
1126
+ de modification d&#8217;un livre (voir
1127
+ <xref linkend="editing-info"/>).
1128
+ Ensuite cliquez sur l&#8217;onglet <guilabel>Prêt</guilabel>,
1129
+ puis sur la case à cocher
1130
+ <guilabel>Ce livre est <accel>p</accel>rêté</guilabel>.
1131
+ Dans le champ <guilabel><accel>À</accel></guilabel> indiquez
1132
+ nom de l&#8217;emprunteur et dans le menu déroulant
1133
+ <guilabel><accel>D</accel>epuis</guilabel>, indiquez la date
1134
+ de l&#8217;emprunt.
1135
+
1136
+ <!--To mark a book as loaned, firstly open the Edit Book dialog
1137
+ as in <xref linkend="editing-info"/>. Then click on the
1138
+ <guilabel>Loaning</guilabel> tab. Click on the
1139
+ <guilabel>This book is loaned</guilabel> checkbox to mark
1140
+ the book as loaned. You can fill in the
1141
+ <guilabel>To</guilabel> field to specify who the book is
1142
+ loaned to. And click on the <guilabel>Since</guilabel>
1143
+ drop-down menu to specify the date the book was loaned on.-->
1144
+ </para>
1145
+
1146
+ <figure id="loaning-fig">
1147
+ <title>
1148
+ Prêt d&#8217;un livre dans &app;.
1149
+ <!--Loaning a book in &app;-->
1150
+ </title>
1151
+ <screenshot>
1152
+ <mediaobject>
1153
+ <imageobject>
1154
+ <imagedata fileref="figures/alexandria_loaning.png" format="PNG"/>
1155
+ </imageobject>
1156
+ <textobject>
1157
+ <phrase>
1158
+ Montre le prêt de livre d&#8217;&app;
1159
+ <!--Shows &app; loaning a book.-->
1160
+ </phrase>
1161
+ </textobject>
1162
+ </mediaobject>
1163
+ </screenshot>
1164
+ </figure>
1165
+ </sect2>
1166
+
1167
+ <!-- ========== Adding notes ========== -->
1168
+ <sect2 id="editing-notes">
1169
+ <title>
1170
+ Ajout et modification de notes
1171
+ <!--Adding and editing notes-->
1172
+ </title>
1173
+ <para>
1174
+ &app; vous permet de garder des notes additionnelles au sujet
1175
+ de vos livres, peut-être un compte-rendu personnel ou
1176
+ des références de page.
1177
+ Pour ajouter ou modifier une note, ouvrez la fenêtre de modification
1178
+ d&#8217;un livre (voir <xref linkend="editing-info"/>),
1179
+ puis cliquez sur l&#8217;onglet <guilabel>Notes</guilabel>.
1180
+ Vous pouvez entrer votre note texte dans ce champ.
1181
+ <!--&app; allows you to store addition notes about your books
1182
+ - maybe a personal review, or useful page references.
1183
+ To add or edit a note, firstly open the Edit Book dialogue
1184
+ as in <xref linkend="editing-info"/>. Then click on the
1185
+ <guilabel>Notes</guilabel> tab. You can type your plain-text
1186
+ notes in this field.-->
1187
+ </para>
1188
+ </sect2>
1189
+
1190
+ </sect1>
1191
+
1192
+ <!-- ============= Working with Libraries Subsection ============ -->
1193
+
1194
+ <sect1 id="working-with-libraries">
1195
+ <title>
1196
+ Gestion de vos bibliothèques
1197
+ <!--Working with Libraries-->
1198
+ </title>
1199
+ <para>
1200
+ Les livres enregistrés dans &app; peuvent être groupés dans
1201
+ différentes collections, appelées bibliothèques.
1202
+ Par exemple, vous pouvez avoir une bibliothèque pour
1203
+ vos romans et une autre pour les livres d&#8217;informatique.
1204
+ &app; vous permet de créer, de modifier et de déplacer les livres
1205
+ entre bibliothèques.
1206
+ <!--Books stored in &app; can be grouped into different collections,
1207
+ called libraries. For instance, you may have
1208
+ one library for all your novels, and other for your programming manuals.
1209
+ &app; allows you to create, edit, and move books
1210
+ between libraries.-->
1211
+ </para>
1212
+
1213
+ <para>
1214
+ Les bibliothèques sont listées dans le panneau
1215
+ <guilabel><accel>B</accel>ibliothèques</guilabel> à la gauche
1216
+ de la fenêtre principale d&#8217;&app;. Si vous ne pouvez voir
1217
+ le panneau, ouvrez le avec
1218
+ <menuchoice>
1219
+ <shortcut><keycap>F9</keycap></shortcut>
1220
+ <guimenu><accel>A</accel>ffichage</guimenu>
1221
+ <guimenuitem><accel>P</accel>anneau latéral</guimenuitem>
1222
+ </menuchoice>.
1223
+ Vous pouvez le fermer avec la même option ou en cliquant sur
1224
+ le bouton
1225
+ <guibutton>
1226
+ <inlinemediaobject>
1227
+ <imageobject>
1228
+ <imagedata fileref="figures/alexandria_close_button.png" format="PNG"/>
1229
+ </imageobject>
1230
+ <textobject>
1231
+ <phrase>
1232
+ Fermer
1233
+ </phrase>
1234
+ </textobject>
1235
+ </inlinemediaobject>
1236
+ </guibutton>
1237
+ en haut à droite du panneau.
1238
+ <!--Available libraries are listed in the <guilabel>Library pane</guilabel>
1239
+ at the left of the main &app; window. If you cannot see the library pane,
1240
+ open it with
1241
+ <menuchoice>
1242
+ <guimenu>View</guimenu>
1243
+ <guimenuitem>Side Pane</guimenuitem>
1244
+ </menuchoice>.
1245
+ You can close it again with the same menu option, or by clicking
1246
+ the <guibutton>Close</guibutton> icon in the top right of the
1247
+ library pane.-->
1248
+ </para>
1249
+
1250
+ <figure id="library-pane-fig">
1251
+ <title>
1252
+ Liste de bibliothèques dans &app;
1253
+ <!--An &app; list of libraries-->
1254
+ </title>
1255
+ <screenshot>
1256
+ <mediaobject>
1257
+ <imageobject>
1258
+ <imagedata fileref="figures/alexandria_library_pane.png" format="PNG"/>
1259
+ </imageobject>
1260
+ <textobject>
1261
+ <phrase>
1262
+ Liste de bibliothèques dans &app;
1263
+ <!--The &app; list of libraries.-->
1264
+ </phrase>
1265
+ </textobject>
1266
+ </mediaobject>
1267
+ </screenshot>
1268
+ </figure>
1269
+
1270
+ <para>
1271
+ <itemizedlist>
1272
+ <listitem><para><xref linkend="create-new-library"/></para></listitem>
1273
+ <listitem><para><xref linkend="renaming-libraries"/></para></listitem>
1274
+ <listitem><para><xref linkend="delete-library"/></para></listitem>
1275
+ <listitem><para><xref linkend="moving-between-libraries"/></para></listitem>
1276
+ </itemizedlist>
1277
+ </para>
1278
+
1279
+ <!-- ======= Creating libraries ===== -->
1280
+ <sect2 id="create-new-library">
1281
+ <title>
1282
+ Création d&#8217;une bibliothèque
1283
+ <!--Creating a new library-->
1284
+ </title>
1285
+ <para>
1286
+ Pour créer une nouvelle bibliothèque, cliquez sur le bouton
1287
+ <guibutton>Nouveau</guibutton> de la barre d&#8217;outils,
1288
+ ou choisissez
1289
+ <menuchoice>
1290
+ <shortcut><keycombo><keycap>Ctrl</keycap><keycap>L</keycap></keycombo></shortcut>
1291
+ <guimenu><accel>B</accel>ibliothèque</guimenu>
1292
+ <guimenuitem><accel>N</accel>ouveau</guimenuitem>
1293
+ </menuchoice>.
1294
+ Une nouvelle bibliothèque est automatiquement créée lorsque
1295
+ vous importez une liste de livres à partir d&#8217;une autre source.
1296
+ <!--To create a new library, click on the <guibutton>New</guibutton>
1297
+ button on the toolbar, or choose
1298
+ <menuchoice>
1299
+ <guimenu>Library</guimenu>
1300
+ <guimenuitem>New</guimenuitem>
1301
+ </menuchoice>
1302
+ from the main menu. A new library will also be automatically
1303
+ created when you import a list of books from another source.-->
1304
+ </para>
1305
+ </sect2>
1306
+
1307
+ <!-- ======= Renaming libraries ===== -->
1308
+ <sect2 id="renaming-libraries">
1309
+ <title>
1310
+ Renommer une bibliothèque
1311
+ <!--Renaming a library-->
1312
+ </title>
1313
+ <para>
1314
+ Pour renommer une bibliothèque, cliquez sur son nom
1315
+ dans la liste des bibliothèques et saisissez le nouveau
1316
+ nom. Vous pouvez aussi cliquer avec le
1317
+ bouton <mousebutton>droit</mousebutton> de la souris
1318
+ sur le nom de la bibliothèque et sélectionner
1319
+ <guilabel><accel>R</accel>enommer</guilabel> à partir
1320
+ du menu contextuel.
1321
+ <!--To rename a library, simply click on its name in the
1322
+ Library pane, and type in the new name. You can also
1323
+ right-click on the library name, and select
1324
+ <guimenuitem>Rename</guimenuitem> from the pop-up menu.-->
1325
+ </para>
1326
+ </sect2>
1327
+
1328
+ <!-- ======= Deleting libraries ===== -->
1329
+ <sect2 id="delete-library">
1330
+ <title>
1331
+ Suppression d&#8217;une bibliothèque
1332
+ <!--Deleting a library-->
1333
+ </title>
1334
+ <para>
1335
+ Pour supprimer une bibliothèque, sélectionnez d'abord la bibliothèque
1336
+ dans la liste des bibliothèques. Vous pouvez alors soit cliquer
1337
+ avec le bouton <mousebutton>droit</mousebutton> de la souris
1338
+ sur le nom et choisir
1339
+ <guimenuitem><accel>S</accel>upprimer</guimenuitem> dans le
1340
+ menu contextuel, soit choisir
1341
+ <menuchoice>
1342
+ <guimenu><accel>É</accel>dition</guimenu>
1343
+ <guimenuitem><accel>S</accel>upprimer</guimenuitem>
1344
+ </menuchoice>,
1345
+ soit presser la touche <keycap>Suppr</keycap> de votre clavier.
1346
+ &app; demande une confirmation avant de supprimer une
1347
+ bibliothèque.
1348
+ <!--To delete a library, select the library in the library pane,
1349
+ either right-click and select <guimenuitem>Delete</guimenuitem>,
1350
+ choose
1351
+ <menuchoice>
1352
+ <guimenu>Edit</guimenu>
1353
+ <guimenuitem>Delete</guimenuitem>
1354
+ </menuchoice>
1355
+ from the main menu, or press the
1356
+ <keycap>Delete</keycap> key on your keyboard. &app; will ask
1357
+ for confirmation before deleting the library.-->
1358
+ </para>
1359
+
1360
+ <warning>
1361
+ <para>
1362
+ Supprimer une bibliothèque supprime tous les livres
1363
+ qu&#8217;elle contient.
1364
+ Il n&#8217;est pas possible d&#8217;annuler cette action&nbsp;!
1365
+ <!--Deleting a library deletes all the books it contains,
1366
+ and cannot be undone!-->
1367
+ </para>
1368
+ </warning>
1369
+ </sect2>
1370
+
1371
+ <!-- ====== Moving between libraries == -->
1372
+ <sect2 id="moving-between-libraries">
1373
+ <title>
1374
+ Déplacement de livres entre bibliothèques
1375
+ <!--Moving books between libraries-->
1376
+ </title>
1377
+ <para>
1378
+ Vous pouvez déplacer des livres entre des bibliothèques
1379
+ en sélectionnant les livres à déplacer, cliquez
1380
+ avec le bouton <mousebutton>droit</mousebutton> de la souris
1381
+ et choisissez
1382
+ <menuchoice>
1383
+ <guimenu><accel>D</accel>éplacer</guimenu>
1384
+ </menuchoice>
1385
+ puis choisissez la bibliothèque de destination.
1386
+ En passant par le menu, utilisez
1387
+ <menuchoice>
1388
+ <guimenu><accel>É</accel>dition</guimenu>
1389
+ <guimenuitem><accel>D</accel>éplacer</guimenuitem>
1390
+ </menuchoice>
1391
+ puis choisissez la bibliothèque de destination.
1392
+
1393
+ <!--You can move books between libraries by selecting the book
1394
+ or books you wish to move, right-clicking and choosing
1395
+ <menuchoice>
1396
+ <guimenu>Move</guimenu>
1397
+ <guimenuitem>In Library Name</guimenuitem>
1398
+ </menuchoice> or choosing
1399
+ <menuchoice>
1400
+ <guimenu>Edit</guimenu>
1401
+ <guimenuitem>Move</guimenuitem>
1402
+ <guimenuitem>In Library Name</guimenuitem>
1403
+ </menuchoice>
1404
+ from the main menu.-->
1405
+ </para>
1406
+ </sect2>
1407
+ </sect1>
1408
+
1409
+ <!-- ============= Searching and views subsection =============== -->
1410
+
1411
+ <sect1 id="searching">
1412
+ <title>
1413
+ Recherche, filtrage et vues
1414
+ <!--Searching, Filtering and Views-->
1415
+ </title>
1416
+ <para>
1417
+ &app; inclut des outils puissants de recherche, de filtrage
1418
+ et d&#8217;affichage des livres. Vous utilisez ces outils pour afficher
1419
+ les livres de certains auteurs ou éditeurs, ceux qui ont
1420
+ une note élevée ou ceux qui ont une note attachée.
1421
+ &app; possède une vue sous forme de liste ou sous forme d&#8217;icônes,
1422
+ et peut se connecter à des fournisseurs d&#8217;informations en ligne
1423
+ pour collecter les informations des livres.
1424
+ <!--&app; includes powerful tools for searching and filtering and
1425
+ books display. You can use these tools to display only books by
1426
+ a certain author or publisher, only those you rate highly or
1427
+ those with additional notes. &app; also contains both Icon and
1428
+ List views, and can directly link to online information providers
1429
+ to display more detailed information.-->
1430
+
1431
+ <itemizedlist>
1432
+ <listitem><para><xref linkend="searching-views"/></para></listitem>
1433
+ <listitem><para><xref linkend="searching-filtering"/></para></listitem>
1434
+ <listitem><para><xref linkend="searching-more-online"/></para></listitem>
1435
+ </itemizedlist>
1436
+ </para>
1437
+
1438
+
1439
+ <!-- ========= Icon and List views =========== -->
1440
+ <sect2 id="searching-views">
1441
+ <title>
1442
+ Vue en tant qu&#8217;icônes ou liste
1443
+ <!--Icon and List Views-->
1444
+ </title>
1445
+ <para>
1446
+ Comme le gestionnaire de fichiers
1447
+ <application>Nautilus</application>, &app; possède les
1448
+ vues sous forme d&#8217;icônes ou de liste. La vue en tant qu&#8217;icônes
1449
+ montre la couverture et le titre pour chaque livre de votre
1450
+ bibliothèque, tandis que la vue en tant que liste montre
1451
+ plus de détails avec un livre par ligne (niveau de détail
1452
+ défini dans les préférences,
1453
+ voir <xref linkend="alexandria-prefs-display"/>).
1454
+ <!--Like the <application>Nautilus</application> file manager,
1455
+ &app; has both Icon and List views. The Icon view shows the
1456
+ cover and title for every book in your library, while the
1457
+ List view shows more detailed information (as defined in the
1458
+ <xref linkend="alexandria-prefs-display"/> preferences), with
1459
+ one book per line.-->
1460
+ </para>
1461
+
1462
+ <tip>
1463
+ <para>
1464
+ Pour basculer d&#8217;une vue à l&#8217;autre,
1465
+ utilisez le menu déroulant en haut à droite de la fenêtre
1466
+ principale <guibutton>Voir en tant que&hellip;</guibutton> ou
1467
+ utilisez le menu
1468
+ <menuchoice>
1469
+ <guimenu><accel>A</accel>ffichage</guimenu>
1470
+ <guimenuitem>Voir en tant qu&#8217;<accel>i</accel>cônes</guimenuitem>
1471
+ </menuchoice>
1472
+ ou
1473
+ <menuchoice>
1474
+ <guimenu><accel>A</accel>ffichage</guimenu>
1475
+ <guimenuitem>Voir en tant que <accel>l</accel>iste</guimenuitem>
1476
+ </menuchoice>.
1477
+ Il est aussi possible de cliquer avec le bouton
1478
+ <mousebutton>droit</mousebutton> de la
1479
+ souris dans la fenêtre principale et de choisir
1480
+ l'une des deux entrées citées précédemment.
1481
+ <!--To switch between Icon and List views, either use the
1482
+ <guibutton>View as...</guibutton> button in the top right
1483
+ of the main window, or
1484
+ <menuchoice>
1485
+ <guimenu>View</guimenu>
1486
+ <guimenuitem>View As List / View as Icons</guimenuitem>
1487
+ </menuchoice>
1488
+ in the main menu and right-click menu.-->
1489
+ </para>
1490
+ </tip>
1491
+
1492
+ <para>
1493
+ Les icônes peuvent être rangées en ordre de titre, auteur,
1494
+ éditeur, édition et notation et vous pouvez inverser l&#8217;ordre.
1495
+ Pour changer l&#8217;ordre des livres dans la vue en tant qu&#8217;icônes,
1496
+ choisissez
1497
+ <menuchoice>
1498
+ <guimenu><accel>A</accel>ffichage</guimenu>
1499
+ <guimenuitem><accel>R</accel>anger les icônes</guimenuitem>
1500
+ </menuchoice>
1501
+ ou <guimenuitem><accel>R</accel>anger les icônes</guimenuitem>
1502
+ dans le menu contextuel de la fenêtre principale.
1503
+ <!--The icons can be arranged in order of Title, Author, Publishing,
1504
+ Binding or Rating, and you can reverse this order. To change
1505
+ the order of the books in the Icon view, choose
1506
+ <menuchoice>
1507
+ <guimenu>View</guimenu>
1508
+ <guimenuitem>Arrange Icons</guimenuitem>
1509
+ </menuchoice> from the main menu or
1510
+ <guimenuitem>Arrange Icons</guimenuitem> from the right-click menu.-->
1511
+ </para>
1512
+ <para>
1513
+ Pour changer l&#8217;ordre de tri des livres dans la
1514
+ vue en tant que liste,
1515
+ cliquez sur le titre de la colonne à laquelle appliquer le tri.
1516
+ <!--To change the order of the books in the List view, click on the
1517
+ appropriate column header.-->
1518
+ </para>
1519
+
1520
+ <figure id="listview-fig">
1521
+ <title>
1522
+ Vue en tant que liste montrant les livres triés en ordre
1523
+ inverse du nom d&#8217;auteur.
1524
+ <!--The list view, showing books sorted in reverse by author name-->
1525
+ </title>
1526
+ <screenshot>
1527
+ <mediaobject>
1528
+ <imageobject>
1529
+ <imagedata fileref="figures/alexandria_list_view.png" format="PNG"/>
1530
+ </imageobject>
1531
+ <textobject>
1532
+ <phrase>
1533
+ Vue en tant que liste montrant les livres triés en ordre
1534
+ inverse du nom d&#8217;auteur.
1535
+ <!--The list view, showing books sorted by author name-->
1536
+ </phrase>
1537
+ </textobject>
1538
+ </mediaobject>
1539
+ </screenshot>
1540
+ </figure>
1541
+
1542
+ </sect2>
1543
+
1544
+ <!-- ========== Searching/filtering ======== -->
1545
+ <sect2 id="searching-filtering">
1546
+ <title>
1547
+ Recherche et filtrage de l&#8217;affichage
1548
+ <!--Searching or filtering the view-->
1549
+ </title>
1550
+ <para>
1551
+ Il est très facile de chercher un livre en particulier, ou de
1552
+ limiter le nombre de livres affichés. Pour chercher un titre
1553
+ spécifique, entrez le terme dans la boîte de texte sur la
1554
+ barre d&#8217;outils. Utilisez le menu déroulant
1555
+ <guilabel>Filtre tout</guilabel> pour choisir le
1556
+ champ d&#8217;information dans lequel la recherche sera effectuée.
1557
+ La recherche peut s&#8217;effectuer sur une partie des titres,
1558
+ des auteurs,
1559
+ des <acronym>ISBN</acronym>, des éditeurs ou des notes.
1560
+ <!--It is very easy to search for a particular book, or to limit
1561
+ the number of books displayed. To search for a specific
1562
+ title, just enter its name in the entry field on the toolbar.
1563
+ Use the <guilabel>Title contains</guilabel> drop-down menu
1564
+ to choose between searching for Titles, Authors, ISBNs,
1565
+ Publishers or Notes.-->
1566
+ </para>
1567
+
1568
+ <figure id="listview-search-fig">
1569
+ <title>
1570
+ Vue sous forme de liste, affichant les livres contenant
1571
+ le nom «&nbsp;Hamme&nbsp;».
1572
+ <!--The list view, showing books only those books whose
1573
+ author name contains &#8217;banks&#8217;-->
1574
+ </title>
1575
+ <screenshot>
1576
+ <mediaobject>
1577
+ <imageobject>
1578
+ <imagedata fileref="figures/alexandria_list_view_search.png" format="PNG"/>
1579
+ </imageobject>
1580
+ <textobject>
1581
+ <phrase>
1582
+ Vue sous forme de liste, affichant les livres contenant
1583
+ le nom «&nbsp;Hamme&nbsp;».
1584
+ <!--The list view, searching for books by &#8217;banks&#8217;-->
1585
+ </phrase>
1586
+ </textobject>
1587
+ </mediaobject>
1588
+ </screenshot>
1589
+ </figure>
1590
+
1591
+ <tip>
1592
+ <para>
1593
+ À partir du clavier, vous pouvez placer le curseur
1594
+ dans le champ de recherche en pressant les touches
1595
+ <keycombo><keycap>Ctrl</keycap><keycap>F</keycap></keycombo>.
1596
+ Vous pouvez effacer les résultats de la recherche en pressant les touches
1597
+ <keycombo><keycap>Ctrl</keycap><keycap>Alt</keycap><keycap>B</keycap></keycombo>.
1598
+ <!--From the keyboard, you can move to the search field by
1599
+ pressing Ctrl-F. You can clear the search by pressing
1600
+ Ctrl-Alt-B.-->
1601
+ </para>
1602
+ </tip>
1603
+ </sect2>
1604
+
1605
+ <!-- ========= Finding out more online =========== -->
1606
+ <sect2 id="searching-more-online">
1607
+ <title>
1608
+ Recherche d&#8217;informations en ligne
1609
+ <!--Finding out more information about your books online-->
1610
+ </title>
1611
+ <para>
1612
+ Pour trouver plus d&#8217;informations au sujet de vos livres, vous
1613
+ pouvez utiliser &app; pour ouvrir une page web sur
1614
+ <orgname>Amazon</orgname>, <orgname>Barnes and Noble</orgname>
1615
+ ou chez l&#8217;un des autres fournisseurs d&#8217;informations en ligne
1616
+ et être dirigé directement à la page du livre concerné.
1617
+ Pour cela, sélectionnez le livre, cliquez dessus avec le bouton
1618
+ <mousebutton>droit</mousebutton> de la souris,
1619
+ et à partir du menu contextuel choisissez
1620
+ <guimenu>Afficher les <accel>i</accel>nformations en ligne</guimenu>
1621
+ puis sélectionnez le fournisseur dans la liste présentée.
1622
+ <!--If you want to find out more information about your book, you
1623
+ can use &app; to open the web page of Amazon, Barnes and Noble,
1624
+ or one of the other online information providers and be
1625
+ taken directly to the relevant book. Simply select the book you
1626
+ wish to know more about, right-click on it, and from the menu
1627
+ <guimenuitem>Display Online Information</guimenuitem>, choose
1628
+ from either Amazon, Barnes and Nobel, Proxis,
1629
+ Spanish Culture Ministry, Amadeus Buch, or
1630
+ Internet Bookshop Italia.-->
1631
+ </para>
1632
+ <tip>
1633
+ <para>
1634
+ Le menu
1635
+ <menuchoice>
1636
+ <guimenu>Afficher les <accel>i</accel>nformations en ligne</guimenu>
1637
+ <guimenuitem>Sur <accel>A</accel>mazon</guimenuitem>
1638
+ </menuchoice>
1639
+ vous envoie sur le site d&#8217;<orgname>Amazon</orgname> .com,
1640
+ .ca, .co.uk, .de, .fr, ou .jp en fonction de votre
1641
+ configuration pour ce fournisseur (voir
1642
+ <xref linkend="alexandria-amazon-prefs"/>).
1643
+ <!--The
1644
+ <menuchoice>
1645
+ <guimenu>Display Online Information</guimenu>
1646
+ <guimenuitem>At Amazon</guimenuitem>
1647
+ </menuchoice>
1648
+ choice will take you to the Amazon .com, .co.uk, .de, or jp
1649
+ site, as set up in the
1650
+ <xref linkend="alexandria-amazon-prefs"/>.-->
1651
+ </para>
1652
+ </tip>
1653
+ <caution>
1654
+ <para>
1655
+ Les sources d&#8217;informations en ligne n&#8217;ont pas une liste
1656
+ complète de livres et il est possible que vous deviez
1657
+ essayer plusieurs fournisseurs pour trouver
1658
+ l&#8217;information recherchée.
1659
+ <!--Not every online information source has a complete list of
1660
+ books and you may have to try several different providers
1661
+ to find the information you want.-->
1662
+ </para>
1663
+ </caution>
1664
+ </sect2>
1665
+ </sect1>
1666
+
1667
+ <!-- ============= Exporting information Subsection ============= -->
1668
+
1669
+ <sect1 id="exporting">
1670
+ <title>
1671
+ Exportation d&#8217;informations
1672
+ <!--Exporting Information-->
1673
+ </title>
1674
+ <para>
1675
+ Les informations dans &app; peuvent être exportées pour être
1676
+ utilisées dans d&#8217;autres logiciels.
1677
+ Les formats d&#8217;exportation disponibles sont&nbsp;:
1678
+ <!--Information in &app; can be exported for use in other applications.
1679
+ Information can be exported in several formats:-->
1680
+ <itemizedlist>
1681
+ <listitem>
1682
+ <para><xref linkend="exporting-as-onix"/>&nbsp;;</para>
1683
+ </listitem>
1684
+ <listitem>
1685
+ <para><xref linkend="exporting-as-Tellico"/>&nbsp;;</para>
1686
+ </listitem>
1687
+ <listitem>
1688
+ <para><xref linkend="exporting-as-plaintext"/>&nbsp;;</para>
1689
+ </listitem>
1690
+ <listitem>
1691
+ <para>
1692
+ <xref linkend="exporting-as-web-page"/>,
1693
+ utilisant <acronym>XHTML</acronym> et
1694
+ les feuilles de styles <acronym>CSS</acronym>.
1695
+ <!--<xref linkend="exporting-as-web-page"/>,
1696
+ using XHTML and CSS stylesheets-->
1697
+ </para>
1698
+ </listitem>
1699
+ </itemizedlist>
1700
+ </para>
1701
+
1702
+ <sect2 id="exporting-as-onix">
1703
+ <title>
1704
+ Exportation en archive <acronym>ONIX</acronym> compressée
1705
+ <!--Exporting as a compressed ONIX archive-->
1706
+ </title>
1707
+ <para>
1708
+ <acronym>ONIX</acronym> est un standard international utilisé
1709
+ par des éditeurs ou détaillants pour définir les informations
1710
+ de livres telles que le titre, prix, collaborateurs,
1711
+ critiques, etc. Pour plus d&#8217;informations au sujet
1712
+ d&#8217;<acronym>ONIX</acronym> et de ses utilisations,
1713
+ visitez le site
1714
+ <ulink url="http://www.editeur.org">http://www.editeur.org/</ulink>.
1715
+ <!--ONIX is an international standard used by publishers and
1716
+ retailers to define information - title, price, contributors,
1717
+ reviews and many others - about books. For more information
1718
+ about ONIX and its uses, see http://www.editeur.org/.-->
1719
+ </para>
1720
+ <para>
1721
+ &app; collecte l&#8217;information sur tous vos livres et l&#8217;exporte
1722
+ sous forme d&#8217;une collection archivée
1723
+ (<filename class="extension">.tbz2</filename>) de fichiers
1724
+ <acronym>ONIX</acronym> (appelés messages <acronym>ONIX</acronym>).
1725
+ Pour exporter votre bibliothèque comme archive
1726
+ <acronym>ONIX</acronym> choisissez
1727
+ <menuchoice>
1728
+ <shortcut><keycombo><keycap>Shift</keycap><keycap>Ctrl</keycap><keycap>E</keycap></keycombo></shortcut>
1729
+ <guimenu><accel>B</accel>ibliothèque</guimenu>
1730
+ <guimenuitem><accel>E</accel>xporter&hellip;</guimenuitem>
1731
+ </menuchoice>
1732
+ puis dans le menu déroulant
1733
+ <guilabel>For<accel>m</accel>at d&#8217;export</guilabel>
1734
+ choisissez l&#8217;option
1735
+ <guilabel>Archive ONIX XML (.onix.tbz2)</guilabel>.
1736
+ Saisissez un nom de fichier et sélectionnez un dossier
1737
+ pour enregistrer l&#8217;archive et cliquez sur
1738
+ <guibutton><accel>E</accel>xporter</guibutton>.
1739
+ <!--&app; can gather up all your book information and export it
1740
+ as an archived (.tar.bz2) collection of ONIX files
1741
+ (called ONIX messages). To export your library as an ONIX archive,
1742
+ choose
1743
+ <menuchoice>
1744
+ <guimenu>Library</guimenu>
1745
+ <guimenuitem>Export</guimenuitem>
1746
+ </menuchoice>
1747
+ from the main menu, then choose
1748
+ <guimenuitem>Archived ONIX XML (.onix.tbz2)</guimenuitem>
1749
+ from the <guilabel>Export format</guilabel> menu.
1750
+ Specify a file name and a location to save the archive, and press
1751
+ <guibutton>Export</guibutton>.-->
1752
+ </para>
1753
+ </sect2>
1754
+
1755
+ <sect2 id="exporting-as-Tellico">
1756
+ <title>
1757
+ Exportation en fichier Tellico compressé
1758
+ <!--Exporting as a compressed Tellico file-->
1759
+ </title>
1760
+ <para>
1761
+ Tellico est un format de fichier standard, basé sur
1762
+ <acronym>XML</acronym>, pour stocker les informations
1763
+ concernant des livres ou d&#8217;autres collections.
1764
+ &app; peut importer et exporter dans ce format.
1765
+ <!--Tellico is a standard file format, based on XML, for storing
1766
+ information about book and other collections. &app; can both
1767
+ import and export information in the Tellico format.-->
1768
+ </para>
1769
+ <para>
1770
+ Pour exporter votre bibliothèque dans un fichier compressé
1771
+ (<filename class="extension">.tc</filename>), choisissez
1772
+ <guilabel>Archive Tellico XML (*.tc)</guilabel> dans le
1773
+ menu déroulant <guilabel>For<accel>m</accel>at d&#8217;export</guilabel>
1774
+ de la fenêtre <guilabel>Exporter</guilabel>.
1775
+ <!--To export your library as a compressed (.tc) file, choose
1776
+ <guimenuitem>Archived Tellico XML (.tc)</guimenuitem> from the
1777
+ <guilabel>Export format</guilabel> menu in the Export dialogue.-->
1778
+ </para>
1779
+ </sect2>
1780
+
1781
+ <sect2 id="exporting-as-plaintext">
1782
+ <title>
1783
+ Exportation d&#8217;une liste d&#8217;<acronym>ISBN</acronym>
1784
+ <!--Exporting a list of ISBNs-->
1785
+ </title>
1786
+ <para>
1787
+ &app; peut exporter une liste d&#8217;<acronym>ISBN</acronym>
1788
+ au format texte, peut-être pour transférer une bibliothèque
1789
+ sur une autre machine. Pour cela, choisissez
1790
+ <guilabel>Liste d&#8217;ISBN (*.txt)</guilabel> dans le
1791
+ menu déroulant <guilabel>For<accel>m</accel>at d&#8217;export</guilabel>
1792
+ de la fenêtre <guilabel>Exporter</guilabel>.
1793
+ <!--&app; can export a plain test list of ISBNs - perhaps to
1794
+ transfer to another machine. To export a list of ISBNs, choose
1795
+ <guimenuitem>ISBN list (.txt)</guimenuitem> from the
1796
+ <guilabel>Export format</guilabel> menu in the Export dialogue.-->
1797
+ </para>
1798
+ </sect2>
1799
+
1800
+ <sect2 id="exporting-as-web-page">
1801
+ <title>
1802
+ Exportation en page web
1803
+ <!--Exporting a library as a web page-->
1804
+ </title>
1805
+ <para>
1806
+ &app; peut créer une page web à partir de votre bibliothèque,
1807
+ listant chaque livre au complet avec l&#8217;image de la couverture.
1808
+ Pour cela, &app; crée un dossier avec les images, une page
1809
+ web au format <acronym>XHTML</acronym> et une feuille de style
1810
+ <acronym>CSS</acronym>.
1811
+ Vous pouvez choisir différentes feuilles de styles pour
1812
+ personnaliser l&#8217;apparence des pages.
1813
+ <!--&app; can create a web page from your book library, listing
1814
+ each book complete with cover images. To do this, it creates a
1815
+ directory of images, an XHMTL web page, and a CSS stylesheet.
1816
+ You can choose from different stylesheets to customise the
1817
+ appearance of the web page.-->
1818
+ </para>
1819
+ <para>
1820
+ Pour exporter votre bibliothèque en page web, allez à
1821
+ <menuchoice>
1822
+ <guimenu><accel>B</accel>ibliothèque</guimenu>
1823
+ <guimenuitem><accel>E</accel>xporter</guimenuitem>
1824
+ </menuchoice>
1825
+ puis choisissez
1826
+ <guilabel>Page Web HTML (répertoire)</guilabel> dans le
1827
+ menu déroulant <guilabel>For<accel>m</accel>at d&#8217;export</guilabel>
1828
+ de la fenêtre <guilabel>Exporter</guilabel>.
1829
+ Vous pouvez choisir le style &mdash; ou thème &mdash;
1830
+ dans le menu déroulant <guilabel><accel>T</accel>hème</guilabel>.
1831
+ <!--To export your library as a web page,
1832
+ <menuchoice>
1833
+ <guimenu>Library</guimenu>
1834
+ <guimenuitem>Export</guimenuitem>
1835
+ </menuchoice>
1836
+ from the main menu, then choose
1837
+ <guimenuitem>HTML Web Page (directory)</guimenuitem> from the
1838
+ <guilabel>Export format</guilabel> menu. Choose a style
1839
+ - or theme - for the web page from the
1840
+ <guimenuitem>Theme</guimenuitem> menu.-->
1841
+ </para>
1842
+
1843
+ <figure id="export-as-web-page-fig">
1844
+ <title>
1845
+ Utilisation d&#8217;&app; pour créer une page web.
1846
+ <!--Using &app; to create a web page-->
1847
+ </title>
1848
+ <screenshot>
1849
+ <mediaobject>
1850
+ <imageobject>
1851
+ <imagedata fileref="figures/alexandria_export_web_page.png" format="PNG"/>
1852
+ </imageobject>
1853
+ <textobject>
1854
+ <phrase>
1855
+ Montre &app; exportant une bibliothèque
1856
+ en page web.
1857
+ <!--Shows &app; exporting a library as a web page.-->
1858
+ </phrase>
1859
+ </textobject>
1860
+ </mediaobject>
1861
+ </screenshot>
1862
+ </figure>
1863
+
1864
+ <para>
1865
+ Sélectionnez le dossier dans lequel la page web sera enregistrée
1866
+ puis cliquez sur <guibutton><accel>E</accel>xporter</guibutton>
1867
+ pour enregistrer les fichiers.
1868
+ <!--Type in a name for the directory the web page will be saved in,
1869
+ and press the <guibutton>Export</guibutton> to save the files.-->
1870
+ </para>
1871
+ <tip>
1872
+ <para>
1873
+ Un seul thème est disponible pour l&#8217;instant&nbsp;: Clean.
1874
+ <!--Only one theme, called Clean, is available at present.-->
1875
+ </para>
1876
+ </tip>
1877
+ </sect2>
1878
+ </sect1>
1879
+
1880
+ <!-- ============= Customization ============================= -->
1881
+ <!-- Use this section to describe how to customise the application. -->
1882
+ <sect1 id="alexandria-preferences">
1883
+ <title>
1884
+ Configuration
1885
+ <!--Settings-->
1886
+ </title>
1887
+ <para>
1888
+ Pour configurer &app;, choisissez
1889
+ <menuchoice>
1890
+ <guimenu><accel>É</accel>dition</guimenu>
1891
+ <guimenuitem><accel>P</accel>références</guimenuitem>
1892
+ </menuchoice>.
1893
+ La fenêtre <guilabel>Préférences</guilabel> contient les onglets
1894
+ suivants&nbsp;:
1895
+ <!--To configure &app;, choose
1896
+ <menuchoice>
1897
+ <guimenu>Edit</guimenu>
1898
+ <guimenuitem>Preferences</guimenuitem>
1899
+ </menuchoice>.
1900
+ The
1901
+ <guilabel>Preferences</guilabel> dialogue contains the following
1902
+ tabbed sections:-->
1903
+ </para>
1904
+ <itemizedlist>
1905
+ <listitem>
1906
+ <para>
1907
+ <xref linkend="alexandria-prefs-display"/>
1908
+ </para>
1909
+ </listitem>
1910
+ <listitem>
1911
+ <para>
1912
+ <xref linkend="myapp-prefs-providers"/>
1913
+ </para>
1914
+ </listitem>
1915
+ </itemizedlist>
1916
+
1917
+ <para>
1918
+ Vous pouvez ajouter de nouveaux fournisseurs d&#8217;informations
1919
+ en ligne à &app;&nbsp;:
1920
+ <!--You can also add new online information providers to &app;:-->
1921
+ </para>
1922
+
1923
+ <itemizedlist>
1924
+ <listitem>
1925
+ <para>
1926
+ <xref linkend="alexandria-z3950-prefs"/>
1927
+ </para>
1928
+ </listitem>
1929
+ </itemizedlist>
1930
+
1931
+ <!-- ======== Visible columns ======= -->
1932
+ <sect2 id="alexandria-prefs-display">
1933
+ <title>
1934
+ Vue en tant que liste
1935
+ <!--List View-->
1936
+ </title>
1937
+ <para>
1938
+ Vous pouvez choisir les colonnes de la liste à afficher en
1939
+ cochant ou décochant les cases.
1940
+ Les colonnes disponibles sont&nbsp;:
1941
+ <guilabel><accel>A</accel>uteurs</guilabel>,
1942
+ <guilabel><accel>I</accel>SBN</guilabel>,
1943
+ <guilabel><accel>É</accel>diteur</guilabel>,
1944
+ <guilabel>É<accel>d</accel>ition</guilabel>,
1945
+ <guilabel><accel>N</accel>otation</guilabel>.
1946
+ <!--You can choose which columns are displayed in the List view by
1947
+ selecting or deselecting the checkboxes. Possible columns
1948
+ are Authors, ISBN, Publisher, Binding and Rating.-->
1949
+ </para>
1950
+ </sect2>
1951
+
1952
+ <!-- ======== Providers ======== -->
1953
+ <sect2 id="myapp-prefs-providers">
1954
+ <title>
1955
+ Fournisseurs d&#8217;informations en ligne
1956
+ <!--Online information providers-->
1957
+ </title>
1958
+ <para>
1959
+ &app; peut télécharger des informations de différentes sources
1960
+ en ligne. Certains fournisseurs peuvent être
1961
+ configurés afin d&#8217;obtenir de meilleurs résultats.
1962
+ &app; cherche chacune de ces sources à tour de rôle, dans
1963
+ l&#8217;ordre affiché par la liste. Vous pouvez changer cet ordre
1964
+ en déplaçant chaque source en utilisant
1965
+ les boutons <guibutton><accel>V</accel>ers le haut</guibutton>
1966
+ ou <guibutton><accel>V</accel>ers le bas</guibutton>.
1967
+ <!--&app; can download information from a variety of different
1968
+ online sources; some of these sources have additional options
1969
+ to control how the information is downloaded. &app; will
1970
+ search each of the sources in turn, in the order displayed in
1971
+ the list. You can change the order in which the sources are
1972
+ searched by moving each source up or down using the
1973
+ <guibutton>Up</guibutton> and <guibutton>Down</guibutton> buttons.-->
1974
+ <itemizedlist>
1975
+ <listitem>
1976
+ <para>
1977
+ <xref linkend="alexandria-amazon-prefs"/>&nbsp;;
1978
+ </para>
1979
+ </listitem>
1980
+ <listitem>
1981
+ <para>
1982
+ <xref linkend="alexandria-proxis-prefs"/>&nbsp;;
1983
+ </para>
1984
+ </listitem>
1985
+ <listitem>
1986
+ <para>
1987
+ Ministère de la Culture espagnol&nbsp;;
1988
+ <!--The Spanish Culture Ministry-->
1989
+ </para>
1990
+ </listitem>
1991
+ <listitem>
1992
+ <para>
1993
+ Barnes and Noble&nbsp;;
1994
+ </para>
1995
+ </listitem>
1996
+ <listitem>
1997
+ <para>
1998
+ Amadeus Buch&nbsp;;
1999
+ </para>
2000
+ </listitem>
2001
+ <listitem>
2002
+ <para>
2003
+ Internet Bookshop Italia&nbsp;;
2004
+ </para>
2005
+ </listitem>
2006
+ <listitem>
2007
+ <para>
2008
+ <xref linkend="alexandria-britlib-prefs"/>&nbsp;;
2009
+ </para>
2010
+ </listitem>
2011
+ <listitem>
2012
+ <para>
2013
+ <xref linkend="alexandria-uslibcon-prefs"/>&nbsp;;
2014
+ </para>
2015
+ </listitem>
2016
+ </itemizedlist>
2017
+ </para>
2018
+ <para>
2019
+ Vous pouvez aussi ajouter ou supprimer des fournisseurs
2020
+ d&#8217;informations qui utilisent le protocole Z39.50.
2021
+ Deux fournisseurs utilisant ce protocole ont été configurés
2022
+ pour vous.
2023
+ <!-- Note du traducteur : La première phrase suivante ne reflète
2024
+ pas le logiciel.-->
2025
+ <!--You can also use the Z39.50 protocol to add and remove new
2026
+ information providers. Two providers have been set up using
2027
+ this protocol for you.-->
2028
+ <itemizedlist>
2029
+ <listitem>
2030
+ <para>
2031
+ <xref linkend="alexandria-z3950-prefs"/>
2032
+ </para>
2033
+ </listitem>
2034
+ </itemizedlist>
2035
+ </para>
2036
+
2037
+
2038
+ <sect3 id="alexandria-amazon-prefs">
2039
+ <title>
2040
+ Préférences pour <orgname>Amazon</orgname>
2041
+ <!-- Amazon preferences-->
2042
+ </title>
2043
+ <para>
2044
+ &app; peut télécharger les informations d&#8217;un livre à partir
2045
+ de différents sites web d&#8217;<orgname>Amazon</orgname>.
2046
+ Les sites actuellement supportés sont&nbsp;:
2047
+ amazon.com (us), .ca, .co.uk (uk), .de, .fr et .jp.
2048
+ Pour changer le site utilisé, sélectionnez
2049
+ <guilabel>Amazon</guilabel> à partir de la liste des
2050
+ fournisseurs et cliquez sur
2051
+ <guibutton><accel>C</accel>onfigurer</guibutton>.
2052
+ Ensuite choisissez dans le menu déroulant
2053
+ <guilabel><accel>L</accel>angue</guilabel> le site
2054
+ qui vous convient.
2055
+ <!--&app; can download book information from different amazon
2056
+ websites - currently, amazon.com, .co.uk, .de and .jp.
2057
+ To change which site to use, select Amazon from the
2058
+ Provider list, and click on <guibutton>Setup</guibutton>.
2059
+ Then choose either <guilabel>UK, DE, JP</guilabel> or
2060
+ <guilabel>US</guilabel> from the drop-down menu.-->
2061
+ </para>
2062
+
2063
+ <warning>
2064
+ <para>
2065
+ <guilabel><accel>J</accel>eton de développeur</guilabel>
2066
+ et <guilabel><accel>I</accel>dentifiant d&#8217;associé</guilabel>
2067
+ peuvent être changés si vous avez un compte de service web
2068
+ d&#8217;<orgname>Amazon</orgname>. Vous pouvez obtenir
2069
+ un compte à l&#8217;adresse
2070
+ <ulink url="https://aws-portal.amazon.com/gp/aws/developer/registration/index.html/002-9602971-5248069">aws-portal.amazon.com</ulink>.
2071
+ Si vous ne savez pas ce que cela signifie, alors vous pouvez
2072
+ laisser ces champs tels quels.
2073
+ <!--The <guilabel>Development token</guilabel> and
2074
+ <guilabel>Associate ID</guilabel> can be changed if you
2075
+ have an amazon web services account. You sign for an
2076
+ Amazon Web Services account at
2077
+ <ulink url="https://aws-portal.amazon.com/gp/aws/developer/registration/index.html/002-9602971-5248069">aws-portal.amazon.com</ulink>.
2078
+ If you don&#8217;t know what this means, then you can leave
2079
+ these values alone.-->
2080
+ </para>
2081
+ </warning>
2082
+ </sect3>
2083
+
2084
+
2085
+ <sect3 id="alexandria-proxis-prefs">
2086
+ <title>
2087
+ Préférences <orgname>Proxis</orgname>
2088
+ <!--Proxis preferences-->
2089
+ </title>
2090
+ <para>
2091
+ &app; peut chercher dans le site web de
2092
+ <orgname>Proxis</orgname> pour des livres en
2093
+ anglais (en), français (fr) ou néerlandais (nl). Pour changer
2094
+ la langue utilisée, sélectionnez <guilabel>Proxis</guilabel>
2095
+ dans la liste
2096
+ <guilabel><accel>F</accel>ournisseurs</guilabel> et cliquez
2097
+ sur <guibutton><accel>C</accel>onfigurer</guibutton>.
2098
+ Ensuite, sélectionnez la langue dans le menu déroulant
2099
+ <guilabel><accel>L</accel>angue</guilabel>.
2100
+ <!--&app; can search the Proxis website for books in either
2101
+ English, French or Dutch. To change which language to use,
2102
+ select Proxis from the Provider list, and click on
2103
+ <guibutton>Setup</guibutton>. Then chose either
2104
+ <guilabel>en, fr</guilabel> or <guilabel>nl</guilabel> from
2105
+ the drop-down menu.-->
2106
+ </para>
2107
+ </sect3>
2108
+
2109
+ <sect3 id="alexandria-britlib-prefs">
2110
+ <title>
2111
+ Préférences <orgname>Bibliothèque Britannique</orgname>
2112
+ <!--British Library preferences-->
2113
+ </title>
2114
+ <para>
2115
+ Si vous avez un compte avec la
2116
+ <orgname>Bibliothèque Britannique</orgname>,
2117
+ vous pouvez utiliser cette fenêtre pour configurer la connexion
2118
+ au service Z39.50,
2119
+ en fournissant votre nom d&#8217;utilisateur et votre mot de passe.
2120
+ Vous pouvez également choisir la base de données sur
2121
+ laquelle se connecter.
2122
+ <!--If you have an account with the British Library, you can use
2123
+ this dialogue to specify your username and password for the
2124
+ z39.50 service. You can also choose which database to connect to.-->
2125
+ </para>
2126
+ </sect3>
2127
+
2128
+ <sect3 id="alexandria-uslibcon-prefs">
2129
+ <title>
2130
+ Préférences Bibliothèque du Congrès
2131
+ <!--US Library of Congress preferences-->
2132
+ </title>
2133
+ <para>
2134
+ Si vous avez un compte avec la
2135
+ <orgname>Bibliothèque du Congrès des États-Unis d&#8217;Amérique</orgname>,
2136
+ vous pouvez utiliser cette fenêtre pour configurer la connexion
2137
+ au service Z39.50,
2138
+ en fournissant votre nom d&#8217;utilisateur et votre mot de passe.
2139
+ Vous pouvez également choisir la base de données sur
2140
+ laquelle se connecter.
2141
+ <!--If you have an account with the US Library of Congress, you can
2142
+ use this dialogue to specify your username and password for
2143
+ the z39.50 service. You can also choose which database
2144
+ to connect to.-->
2145
+ </para>
2146
+ </sect3>
2147
+
2148
+ <sect3 id="alexandria-z3950-prefs">
2149
+ <title>
2150
+ Ajout de fournisseurs Z39.50
2151
+ <!--Adding Z39.50 providers-->
2152
+ </title>
2153
+ <para>
2154
+ Pour ajouter ou supprimer des fournisseurs Z39.50, vous
2155
+ devez préalablement rendre disponible les préférences
2156
+ avancées en cliquant sur la case à cocher
2157
+ <guilabel>Paramètres <accel>a</accel>vancés</guilabel>.
2158
+ Deux boutons apparaissent&nbsp;:
2159
+ <guibutton>A<accel>j</accel>outer</guibutton> et
2160
+ <guibutton><accel>E</accel>nlever</guibutton>.
2161
+ Cliquer sur <guibutton>A<accel>j</accel>outer</guibutton>
2162
+ ouvre la fenêtre de fournisseur Z39.50 suivante&nbsp;:
2163
+ <!--To add or remove a Z39.50 provider, you must first enable
2164
+ the advanced preferences options by clicking on the
2165
+ <guilabel>Advanced Settings</guilabel> checkbox. Two new
2166
+ buttons will appear: <guibutton>Add</guibutton> and
2167
+ <guibutton>Remove</guibutton>. Clicking Add will open the
2168
+ Z39.50 provider dialogue:-->
2169
+ </para>
2170
+ <figure id="add-z3950">
2171
+ <title>
2172
+ Ajout d&#8217;un fournisseur d&#8217;informations utilisant
2173
+ le protocole Z39.50.
2174
+ <!--Adding a new Z39.50 information provider-->
2175
+ </title>
2176
+ <screenshot>
2177
+ <mediaobject>
2178
+ <imageobject>
2179
+ <imagedata fileref="figures/alexandria_add_z3950.png" format="PNG"/>
2180
+ </imageobject>
2181
+ <textobject>
2182
+ <phrase>
2183
+ Fenêtre pour ajouter un fournisseur
2184
+ d&#8217;informations utilisant
2185
+ le protocole Z39.50.
2186
+ <!--The Z39.50 information provider dialog.-->
2187
+ </phrase>
2188
+ </textobject>
2189
+ </mediaobject>
2190
+ </screenshot>
2191
+ </figure>
2192
+
2193
+ <para>
2194
+ Dans cette fenêtre vous pouvez indiquer le
2195
+ <guilabel><accel>N</accel>om</guilabel> du fournisseur,
2196
+ le <guilabel><accel>N</accel>om d&#8217;hôte</guilabel>,
2197
+ le <guilabel><accel>P</accel>ort</guilabel> Internet auquel
2198
+ se connecter,
2199
+ le nom de la <guilabel><accel>B</accel>ase de données</guilabel>,
2200
+ le <guilabel><accel>F</accel>ormat</guilabel> des données
2201
+ utilisées (&app; supporte actuellement les formats
2202
+ <acronym>USMARC</acronym>, <acronym>UNIMARC</acronym> et
2203
+ <acronym>SUTRS</acronym>) et si nécessaire
2204
+ le nom d&#8217;utilisateur et le mot de passe pour se connecter au service.
2205
+
2206
+ <!--Here you can specify the <guilabel>Name</guilabel> of the
2207
+ provider, the <guilabel>Hostname</guilabel>, the Internet
2208
+ <guilabel>Port</guilabel> to connect to, the name of the
2209
+ online <guilabel>Database</guilabel>, the
2210
+ <guilabel>Record Syntax</guilabel> used (&app; currently
2211
+ supports USMARC, UNIMARC and SUTRS formats), and, if
2212
+ relevant, a username and password to connect to the provider.-->
2213
+ </para>
2214
+
2215
+ <para>
2216
+ Pour supprimer un fournisseur, sélectionnez son nom dans
2217
+ la liste et cliquez sur
2218
+ <guibutton><accel>E</accel>nlever</guibutton>.
2219
+ Vous ne pouvez pas supprimer les fournisseurs fournis
2220
+ par &app;.
2221
+ <!--To remove a provider, select its name from the list and
2222
+ click on <guibutton>Remove</guibutton>. You cannot remove
2223
+ any of the default providers provided by &app;.-->
2224
+ </para>
2225
+ </sect3>
2226
+ </sect2>
2227
+ </sect1>
2228
+
2229
+ <!-- ============= Bugs ================================== -->
2230
+ <!-- This section is optional and is commented out by default.
2231
+ You can use it to describe known bugs and limitations of the
2232
+ program if there are any - please be frank and list all
2233
+ problems you know of.
2234
+
2235
+ <sect1 id="mayapp-bugs">
2236
+ <title>Known Bugs and Limitations</title>
2237
+ <para> </para>
2238
+ </sect1>
2239
+ -->
2240
+ <!-- ============= About ================================== -->
2241
+ <!-- This section contains info about the program (not docs), such as
2242
+ author&#8217;s name(s), web page, license, feedback address. This
2243
+ section is optional: primary place for this info is "About.." box of
2244
+ the program. However, if you do wish to include this info in the
2245
+ manual, this is the place to put it. Alternatively, you can put this information in the title page.-->
2246
+ <sect1 id="myapp-about">
2247
+ <title>À propos d&#8217;&app;<!--About &app;--></title>
2248
+ <para>
2249
+ &app; est écrit par
2250
+ <personname>
2251
+ <firstname>Laurent</firstname><surname>Sansonetti</surname>
2252
+ </personname>
2253
+ (<email>lrz@gnome.org</email>).
2254
+ </para>
2255
+ <para>
2256
+ Si vous cherchez plus d&#8217;informations sur &app;, veuillez visiter
2257
+ <ulink url="http://alexandria.rubyforge.org/" type="http">
2258
+ la page web d&#8217;&app;
2259
+ </ulink>.
2260
+ <!--&app; was written by Laurent Sansonetti
2261
+ (<email>lrz@gnome.org</email>). To find more information about
2262
+ &app;, please visit the
2263
+ <ulink url="http://alexandria.rubyforge.org/" type="http">&app; Web
2264
+ page</ulink>.-->
2265
+ </para>
2266
+ <para>
2267
+ <!-- traduction reprise du manuel de GRAMPS -->
2268
+ Si vous désirez signaler une erreur du programme, ou faire
2269
+ une suggestion à propos du programme ou du manuel,
2270
+ utilisez le menu d&#8217;aide d&#8217;&app; ou procédez comme
2271
+ indiqué à la
2272
+ <ulink url="ghelp:gnome-feedback" type="help">Page de réactions sur GNOME</ulink>.
2273
+ <!--To report a bug or make a suggestion regarding this application or
2274
+ this manual, follow the directions in this
2275
+ <ulink url="ghelp:gnome-feedback" type="help">document</ulink>.-->
2276
+ </para>
2277
+ <para>
2278
+ Ce programme est distribué selon les termes de la licence publique
2279
+ générale GNU telle qu&#8217;elle a été publiée par la Free Software Foundation,
2280
+ selon la version 2 de la licence, ou (à votre choix) n&#8217;importe quelle
2281
+ version ultérieure. Vous pouvez trouver une copie de cette licence en
2282
+ suivant ce <ulink url="ghelp:gpl" type="help">lien</ulink>, ou
2283
+ dans le fichier COPYING distribué avec le code source de ce programme.
2284
+ <!-- This program is distributed under the terms of the GNU
2285
+ General Public license as published by the Free Software
2286
+ Foundation; either version 2 of the License, or (at your option)
2287
+ any later version. A copy of this license can be found at this
2288
+ <ulink url="ghelp:gpl" type="help">link</ulink>, or in the file
2289
+ COPYING included with the source code of this program. -->
2290
+ </para>
2291
+ </sect1>
2292
+ </article>