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,1420 @@
1
+ # Alexandria en Français
2
+ # Copyright (C) 2004, 2005 Laurent Sansonetti <lrz@gnome.org>
3
+ # Copyright (C) 2006 Laurent Richard <laurent@dotbar.be>
4
+ # Copyright (C) 2008 Ligia Moreira <ligia.moreira@netvisao.pt>
5
+ # This file is distributed under the same license as the Alexandria package.
6
+ #
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: alexandria 0.6.3\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2010-08-13 04:41+0100\n"
12
+ "PO-Revision-Date: 2008-07-31 00:16+0100\n"
13
+ "Last-Translator: Ligia Moreira <ligia.moreira@netvisao.pt >\n"
14
+ "Language-Team: Lígia Moreira <ligia.moreira@netvisao.pt>\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Plural-Forms: nplurals=2; plural=n>1;\n"
19
+ "X-Poedit-Language: French\n"
20
+ "X-Poedit-Country: PORTUGAL\n"
21
+
22
+ #: ../lib/alexandria/import_library.rb:30
23
+ msgid "Autodetect"
24
+ msgstr "Détection automatique"
25
+
26
+ #: ../lib/alexandria/import_library.rb:31
27
+ msgid "Archived Tellico XML (*.bc, *.tc)"
28
+ msgstr "Archive Tellico XML (*.bc, *.tc)"
29
+
30
+ #: ../lib/alexandria/import_library.rb:33
31
+ msgid "ISBN List (*.txt)"
32
+ msgstr "Liste d'ISBNs (*.txt)"
33
+
34
+ #: ../lib/alexandria/import_library.rb:35
35
+ msgid "GoodReads CSV"
36
+ msgstr ""
37
+
38
+ #: ../lib/alexandria/models/library.rb:56
39
+ msgid "Untitled"
40
+ msgstr "Sans Titre"
41
+
42
+ #: ../lib/alexandria/models/library.rb:245
43
+ msgid "My Library"
44
+ msgstr "Ma bibliothèque"
45
+
46
+ #: ../lib/alexandria/about.rb:24
47
+ msgid "A program to help you manage your book collection."
48
+ msgstr "Un programme pour vous aider à gérer votre collection de livres."
49
+
50
+ #: ../lib/alexandria/ui/ui_manager.rb:135
51
+ msgid "Type here the search criterion"
52
+ msgstr "Tapez ici le critère de recherche"
53
+
54
+ #: ../lib/alexandria/ui/ui_manager.rb:148
55
+ msgid "Match everything"
56
+ msgstr "Filtre tout"
57
+
58
+ #: ../lib/alexandria/ui/ui_manager.rb:150
59
+ msgid "Title contains"
60
+ msgstr "Le titre contient"
61
+
62
+ #: ../lib/alexandria/ui/ui_manager.rb:151
63
+ msgid "Authors contain"
64
+ msgstr "Les auteurs contiennent"
65
+
66
+ #: ../lib/alexandria/ui/ui_manager.rb:152
67
+ msgid "ISBN contains"
68
+ msgstr "L'ISBN contient"
69
+
70
+ #: ../lib/alexandria/ui/ui_manager.rb:153
71
+ msgid "Publisher contains"
72
+ msgstr "L'éditeur contient"
73
+
74
+ #: ../lib/alexandria/ui/ui_manager.rb:154
75
+ msgid "Notes contain"
76
+ msgstr "Les notes contiennent"
77
+
78
+ #: ../lib/alexandria/ui/ui_manager.rb:155
79
+ msgid "Tags contain"
80
+ msgstr "Les étiquettes contiennent"
81
+
82
+ #: ../lib/alexandria/ui/ui_manager.rb:170
83
+ msgid "Change the search type"
84
+ msgstr "Change le type de recherche."
85
+
86
+ #: ../lib/alexandria/ui/ui_manager.rb:175
87
+ msgid "View as Icons"
88
+ msgstr "Voir en tant qu'icônes"
89
+
90
+ #: ../lib/alexandria/ui/ui_manager.rb:176
91
+ msgid "View as List"
92
+ msgstr "Voir en tant que liste"
93
+
94
+ #: ../lib/alexandria/ui/ui_manager.rb:189
95
+ msgid "Choose how to show books"
96
+ msgstr "Choix de la méthode d'affichage des livres"
97
+
98
+ #: ../lib/alexandria/ui/ui_manager.rb:436
99
+ msgid "Library '%s' selected"
100
+ msgstr "Bibliothèque '%s' sélectionnée"
101
+
102
+ #: ../lib/alexandria/ui/ui_manager.rb:443
103
+ msgid "Library '%s' selected, %d unrated book"
104
+ msgid_plural "Library '%s' selected, %d unrated books"
105
+ msgstr[0] "Bibliothèque '%s' sélectionnée, %d livre non-noté"
106
+ msgstr[1] "Bibliothèque '%s' sélectionnée, %d livres non-notés"
107
+
108
+ #: ../lib/alexandria/ui/ui_manager.rb:448
109
+ msgid "Library '%s' selected, %d book"
110
+ msgid_plural "Library '%s' selected, %d books"
111
+ msgstr[0] "Bibliothèque '%s' sélectionnée, %d livre"
112
+ msgstr[1] "Bibliothèque '%s' sélectionnée, %d livres"
113
+
114
+ #: ../lib/alexandria/ui/ui_manager.rb:455
115
+ msgid "Library '%s' selected, %d book, %d unrated"
116
+ msgid_plural "Library '%s' selected, %d books, %d unrated"
117
+ msgstr[0] "Bibliothèque '%s' sélectionnée, %d livre, %d non-noté"
118
+ msgstr[1] "Bibliothèque « %s » sélectionnée, %d livres, %d non-notés"
119
+
120
+ #: ../lib/alexandria/ui/ui_manager.rb:467
121
+ msgid "'%s' selected"
122
+ msgstr " '%s' sélectionné"
123
+
124
+ #: ../lib/alexandria/ui/ui_manager.rb:470
125
+ msgid "%d book selected"
126
+ msgid_plural "%d books selected"
127
+ msgstr[0] "%d livre sélectionné"
128
+ msgstr[1] "%d livres sélectionnés"
129
+
130
+ #: ../lib/alexandria/ui/ui_manager.rb:648
131
+ msgid "Unable to launch the web browser"
132
+ msgstr "Impossible de démarrer le navigateur Internet"
133
+
134
+ #: ../lib/alexandria/ui/ui_manager.rb:649
135
+ msgid ""
136
+ "Check out that a web browser is configured as default (Desktop Preferences -"
137
+ "> Advanced -> Preferred Applications) and try again."
138
+ msgstr ""
139
+ "Vérifiez qu'un nativateur Internet est configuré par défaut (Préférences du "
140
+ "bureau -> Applications préférées) et ré-essayez encore."
141
+
142
+ #: ../lib/alexandria/ui/ui_manager.rb:661
143
+ msgid "Unable to launch the mail reader"
144
+ msgstr "Impossible de démarrer le client de messagerie"
145
+
146
+ #: ../lib/alexandria/ui/ui_manager.rb:662
147
+ msgid ""
148
+ "Check out that a mail reader is configured as default (Desktop Preferences -"
149
+ "> Advanced -> Preferred Applications) and try again."
150
+ msgstr ""
151
+ "Vérifiez qu'un client de messagerie est configuré par défaut (Préférences du "
152
+ "bureau -> Applications préférées) et ré-essayez encore."
153
+
154
+ #: ../lib/alexandria/ui/ui_manager.rb:697
155
+ msgid "Repair Book Data"
156
+ msgstr "Répérer les données du livre"
157
+
158
+ #: ../lib/alexandria/ui/ui_manager.rb:698
159
+ msgid ""
160
+ "The data files for the following books are malformed or empty. Do you wish "
161
+ "to attempt to download new information for them from the online book "
162
+ "providers?\n"
163
+ msgstr ""
164
+ "Les fichiers de données pour les livres suivants sont endommagés ou vides. "
165
+ "Voulez-vous essayer le téléchargement d'une nouvelle information pour eux à "
166
+ "partir des fournisseurs de livres chez internet?\n"
167
+
168
+ #: ../lib/alexandria/ui/ui_manager.rb:755
169
+ msgid "Added '%s' to library '%s'"
170
+ msgstr "Ajouté '%s' à la bibliothèque '%s'"
171
+
172
+ #: ../lib/alexandria/ui/ui_manager.rb:908
173
+ msgid "Loading '%s'..."
174
+ msgstr "À télécharger '%s' ..."
175
+
176
+ #: ../lib/alexandria/ui/ui_manager.rb:1157
177
+ msgid "In '_%s'"
178
+ msgstr "Dans '_%s'"
179
+
180
+ #: ../lib/alexandria/ui/callbacks.rb:65
181
+ msgid "The following lines are not valid ISBNs and were not imported:"
182
+ msgstr ""
183
+ "Les lignes suivantes ne sont pas des ISBN corrects et elles n'ont pas été "
184
+ "importées:"
185
+
186
+ #: ../lib/alexandria/ui/callbacks.rb:122
187
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:128
188
+ msgid "Export failed"
189
+ msgstr "L'export a echoué"
190
+
191
+ #: ../lib/alexandria/ui/callbacks.rb:123
192
+ msgid "Try letting this library load completely before exporting."
193
+ msgstr ""
194
+
195
+ #: ../lib/alexandria/ui/callbacks.rb:274
196
+ msgid "_Library"
197
+ msgstr "_Bibliothèque"
198
+
199
+ #: ../lib/alexandria/ui/callbacks.rb:275
200
+ msgid "_New Library"
201
+ msgstr "_Nouvelle bibliothèque"
202
+
203
+ #: ../lib/alexandria/ui/callbacks.rb:275
204
+ msgid "Create a new library"
205
+ msgstr "Crée une nouvelle bibliothèque"
206
+
207
+ #: ../lib/alexandria/ui/callbacks.rb:276
208
+ msgid "New _Smart Library..."
209
+ msgstr "Nouvelle bibliothèque intelli_gente..."
210
+
211
+ #: ../lib/alexandria/ui/callbacks.rb:276
212
+ msgid "Create a new smart library"
213
+ msgstr "Crée une nouvelle bibliothèque intelligente"
214
+
215
+ #: ../lib/alexandria/ui/callbacks.rb:277
216
+ msgid "_Add Book..."
217
+ msgstr "_Ajouter un livre..."
218
+
219
+ #: ../lib/alexandria/ui/callbacks.rb:277
220
+ msgid "Add a new book from the Internet"
221
+ msgstr "Ajouter un nouveau livre depuis Internet"
222
+
223
+ #: ../lib/alexandria/ui/callbacks.rb:278
224
+ msgid "Add Book _Manually..."
225
+ msgstr "Ajouter _manuellement un livre..."
226
+
227
+ #: ../lib/alexandria/ui/callbacks.rb:278
228
+ msgid "Add a new book manually"
229
+ msgstr "Ajoute un nouveau livre manuellement"
230
+
231
+ #: ../lib/alexandria/ui/callbacks.rb:279
232
+ msgid "_Import..."
233
+ msgstr "_Importer..."
234
+
235
+ #: ../lib/alexandria/ui/callbacks.rb:279
236
+ msgid "Import a library"
237
+ msgstr "Import d'une bibliothèque"
238
+
239
+ #: ../lib/alexandria/ui/callbacks.rb:280
240
+ msgid "_Export..."
241
+ msgstr "_Exporter..."
242
+
243
+ #: ../lib/alexandria/ui/callbacks.rb:280
244
+ msgid "Export the selected library"
245
+ msgstr "Export de la bibliothèque sélectionnée"
246
+
247
+ #: ../lib/alexandria/ui/callbacks.rb:281
248
+ msgid "_Acquire from Scanner..."
249
+ msgstr "_Utiliser le scanner ..."
250
+
251
+ #: ../lib/alexandria/ui/callbacks.rb:281
252
+ msgid "Acquire books from a scanner"
253
+ msgstr "Permet d'ajouter des livres en utilisant le scanner"
254
+
255
+ #: ../lib/alexandria/ui/callbacks.rb:282
256
+ msgid "_Properties"
257
+ msgstr "_Propriétés"
258
+
259
+ #: ../lib/alexandria/ui/callbacks.rb:282
260
+ msgid "Edit the properties of the selected book"
261
+ msgstr "Edite les propriétés du livre sélectionné"
262
+
263
+ #: ../lib/alexandria/ui/callbacks.rb:283
264
+ msgid "_Quit"
265
+ msgstr "_Quitter"
266
+
267
+ #: ../lib/alexandria/ui/callbacks.rb:283
268
+ msgid "Quit the program"
269
+ msgstr "Quitte le programme"
270
+
271
+ #: ../lib/alexandria/ui/callbacks.rb:284
272
+ msgid "_Edit"
273
+ msgstr "_Édition"
274
+
275
+ #: ../lib/alexandria/ui/callbacks.rb:285
276
+ msgid "_Undo"
277
+ msgstr "_Annuler"
278
+
279
+ #: ../lib/alexandria/ui/callbacks.rb:285
280
+ msgid "Undo the last action"
281
+ msgstr "Annule la dernière action"
282
+
283
+ #: ../lib/alexandria/ui/callbacks.rb:286
284
+ msgid "_Redo"
285
+ msgstr "_Répéter"
286
+
287
+ #: ../lib/alexandria/ui/callbacks.rb:286
288
+ msgid "Redo the undone action"
289
+ msgstr "Répète l'action annulée"
290
+
291
+ #: ../lib/alexandria/ui/callbacks.rb:287
292
+ msgid "_Select All"
293
+ msgstr "_Tout sélectionner"
294
+
295
+ #: ../lib/alexandria/ui/callbacks.rb:287
296
+ msgid "Select all visible books"
297
+ msgstr "Sélectionne tous les livres visibles"
298
+
299
+ #: ../lib/alexandria/ui/callbacks.rb:288
300
+ msgid "Dese_lect All"
301
+ msgstr "Tout _déselectionner"
302
+
303
+ #: ../lib/alexandria/ui/callbacks.rb:288
304
+ msgid "Deselect everything"
305
+ msgstr "Déselectionne tout"
306
+
307
+ #: ../lib/alexandria/ui/callbacks.rb:289
308
+ msgid "My _Rating"
309
+ msgstr "Mes _notations"
310
+
311
+ #: ../lib/alexandria/ui/callbacks.rb:290
312
+ msgid "None"
313
+ msgstr "Aucune"
314
+
315
+ #: ../lib/alexandria/ui/callbacks.rb:291
316
+ msgid "One Star"
317
+ msgstr "Une étoile"
318
+
319
+ #: ../lib/alexandria/ui/callbacks.rb:292
320
+ msgid "Two Stars"
321
+ msgstr "Deux étoiles"
322
+
323
+ #: ../lib/alexandria/ui/callbacks.rb:293
324
+ msgid "Three Stars"
325
+ msgstr "Trois étoiles"
326
+
327
+ #: ../lib/alexandria/ui/callbacks.rb:294
328
+ msgid "Four Stars"
329
+ msgstr "Quatre étoiles"
330
+
331
+ #: ../lib/alexandria/ui/callbacks.rb:295
332
+ msgid "Five Stars"
333
+ msgstr "Cinq étoiles"
334
+
335
+ #: ../lib/alexandria/ui/callbacks.rb:296
336
+ msgid "_Move"
337
+ msgstr "_Déplacer"
338
+
339
+ #: ../lib/alexandria/ui/callbacks.rb:297
340
+ msgid "_Rename"
341
+ msgstr "_Renommer"
342
+
343
+ #: ../lib/alexandria/ui/callbacks.rb:298
344
+ msgid "_Delete"
345
+ msgstr "_Supprimer"
346
+
347
+ #: ../lib/alexandria/ui/callbacks.rb:298
348
+ msgid "Delete the selected books or library"
349
+ msgstr "Supprime les livres sélectionnés ou la bibliothèque"
350
+
351
+ #: ../lib/alexandria/ui/callbacks.rb:299
352
+ msgid "_Search"
353
+ msgstr "_Rechercher"
354
+
355
+ #: ../lib/alexandria/ui/callbacks.rb:299
356
+ msgid "Filter books"
357
+ msgstr "Filtre les livres"
358
+
359
+ #: ../lib/alexandria/ui/callbacks.rb:300
360
+ msgid "_Clear Results"
361
+ msgstr "_Effacer les résultats"
362
+
363
+ #: ../lib/alexandria/ui/callbacks.rb:300
364
+ msgid "Clear the search results"
365
+ msgstr "Efface les résultats des recherches"
366
+
367
+ #: ../lib/alexandria/ui/callbacks.rb:301
368
+ msgid "_Preferences"
369
+ msgstr "_Préférences"
370
+
371
+ #: ../lib/alexandria/ui/callbacks.rb:301
372
+ msgid "Change Alexandria's settings"
373
+ msgstr "Change les paramètres d'Alexandria"
374
+
375
+ #: ../lib/alexandria/ui/callbacks.rb:302
376
+ msgid "_View"
377
+ msgstr "_Affichage"
378
+
379
+ #: ../lib/alexandria/ui/callbacks.rb:303
380
+ msgid "Arran_ge Icons"
381
+ msgstr "_Ranger les icônes"
382
+
383
+ #: ../lib/alexandria/ui/callbacks.rb:304
384
+ msgid "Display Online _Information"
385
+ msgstr "Afficher les _informations en ligne"
386
+
387
+ #: ../lib/alexandria/ui/callbacks.rb:306
388
+ msgid "_Help"
389
+ msgstr "_Aide"
390
+
391
+ #: ../lib/alexandria/ui/callbacks.rb:307
392
+ msgid "Submit _Bug Report"
393
+ msgstr "Soumettre un rapport de _bug"
394
+
395
+ #: ../lib/alexandria/ui/callbacks.rb:307
396
+ msgid "Submit a bug report to the developers"
397
+ msgstr "Soumettre un rapport de bug aux développeurs"
398
+
399
+ #: ../lib/alexandria/ui/callbacks.rb:308
400
+ msgid "Contents"
401
+ msgstr "Contenu"
402
+
403
+ #: ../lib/alexandria/ui/callbacks.rb:308
404
+ msgid "View Alexandria's manual"
405
+ msgstr "Voir le manuel d'Alexandria"
406
+
407
+ #: ../lib/alexandria/ui/callbacks.rb:309
408
+ msgid "_About"
409
+ msgstr "À _propos"
410
+
411
+ #: ../lib/alexandria/ui/callbacks.rb:309
412
+ msgid "Show information about Alexandria"
413
+ msgstr "Affiche les informations à propos d'Alexandria"
414
+
415
+ #: ../lib/alexandria/ui/callbacks.rb:334
416
+ msgid "Side _Pane"
417
+ msgstr "_Panneau latéral"
418
+
419
+ #: ../lib/alexandria/ui/callbacks.rb:336
420
+ msgid "_Toolbar"
421
+ msgstr "Barre d'_outils"
422
+
423
+ #: ../lib/alexandria/ui/callbacks.rb:338
424
+ msgid "_Statusbar"
425
+ msgstr "Barre d'é_tat"
426
+
427
+ #: ../lib/alexandria/ui/callbacks.rb:340
428
+ msgid "Re_versed Order"
429
+ msgstr "_Ordre inversé"
430
+
431
+ #: ../lib/alexandria/ui/callbacks.rb:345
432
+ msgid "View as _Icons"
433
+ msgstr "Voir en tant qu'_icônes"
434
+
435
+ #: ../lib/alexandria/ui/callbacks.rb:346
436
+ msgid "View as _List"
437
+ msgstr "Voir en tant que _liste"
438
+
439
+ #: ../lib/alexandria/ui/callbacks.rb:350
440
+ msgid "By _Title"
441
+ msgstr "Par _titre"
442
+
443
+ #: ../lib/alexandria/ui/callbacks.rb:351
444
+ msgid "By _Authors"
445
+ msgstr "Par _auteurs"
446
+
447
+ #: ../lib/alexandria/ui/callbacks.rb:352
448
+ msgid "By _ISBN"
449
+ msgstr "Par _ISBN"
450
+
451
+ #: ../lib/alexandria/ui/callbacks.rb:353
452
+ msgid "By _Publisher"
453
+ msgstr "Par _éditeur"
454
+
455
+ #: ../lib/alexandria/ui/callbacks.rb:354
456
+ msgid "By _Binding"
457
+ msgstr "Par _édition"
458
+
459
+ #: ../lib/alexandria/ui/callbacks.rb:355
460
+ msgid "By _Rating"
461
+ msgstr "Par _notation"
462
+
463
+ #: ../lib/alexandria/ui/callbacks.rb:359
464
+ msgid "At _%s"
465
+ msgstr "Sur _%s"
466
+
467
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:395
468
+ msgid "There was %d duplicate"
469
+ msgid_plural "There were %d duplicates"
470
+ msgstr[0] ""
471
+ msgstr[1] ""
472
+
473
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:398
474
+ #, fuzzy
475
+ msgid "Couldn't add this book"
476
+ msgid_plural "Couldn't add these books"
477
+ msgstr[0] "Impossible d'ajouter le livre"
478
+ msgstr[1] "Impossible d'ajouter le livre"
479
+
480
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:477
481
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:555
482
+ msgid "Searching Provider '%s'..."
483
+ msgstr ""
484
+
485
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:478
486
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:556
487
+ msgid "Error while Searching Provider '%s'"
488
+ msgstr ""
489
+
490
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:479
491
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:557
492
+ msgid "Not Found at Provider '%s'"
493
+ msgstr ""
494
+
495
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:480
496
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:558
497
+ msgid "Found at Provider '%s'"
498
+ msgstr ""
499
+
500
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:610
501
+ msgid "Ready to use %s barcode scanner"
502
+ msgstr ""
503
+
504
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:625
505
+ #: ../data/alexandria/glade/acquire_dialog.glade:26
506
+ msgid "_Barcode Scanner Ready"
507
+ msgstr "_Lecteur électronique de la barre de code prêt"
508
+
509
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:640
510
+ msgid "Click below to scan _barcodes"
511
+ msgstr "Cliquez ci-dessous pour lire _la barre de code rapidement"
512
+
513
+ #: ../lib/alexandria/ui/dialogs/bad_isbns_dialog.rb:24
514
+ msgid "There's a problem"
515
+ msgstr "Il y a un problème"
516
+
517
+ #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:30
518
+ msgid "New Smart Library"
519
+ msgstr "Nouvelle bibliothèque intelligente"
520
+
521
+ #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:49
522
+ msgid "Smart Library"
523
+ msgstr "Bibliothèque intelligente"
524
+
525
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:106
526
+ msgid "Preferences for %s"
527
+ msgstr "Préférences pour %s"
528
+
529
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:131
530
+ msgid "New Provider"
531
+ msgstr "Nouveau fournisseur"
532
+
533
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:146
534
+ msgid "_Name:"
535
+ msgstr "_Nom:"
536
+
537
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:158
538
+ msgid "_Type:"
539
+ msgstr "_Type:"
540
+
541
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:316
542
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
543
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
544
+ #, fuzzy
545
+ msgid "Disable Provider"
546
+ msgstr "Nouveau fournisseur"
547
+
548
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
549
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
550
+ #, fuzzy
551
+ msgid "Enable Provider"
552
+ msgstr "Nouveau fournisseur"
553
+
554
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:423
555
+ msgid "Are you sure you want to permanently delete the provider '%s'?"
556
+ msgstr ""
557
+ "Êtes-vous sûr de vouloir supprimer de manière permanente le fournisseur '%"
558
+ "s' ?"
559
+
560
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:431
561
+ msgid ""
562
+ "If you continue, the provider and all of its preferences will be permanently "
563
+ "deleted."
564
+ msgstr ""
565
+ "Si vous continuez, le fournisseur ainsi que toutes ses préférences seront "
566
+ "supprimés de manière permanente."
567
+
568
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:36
569
+ msgid "Error while importing"
570
+ msgstr "Erreur pendant l'import"
571
+
572
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:39
573
+ msgid "_Continue"
574
+ msgstr "_Continuer"
575
+
576
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:64
577
+ msgid "Import a Library"
578
+ msgstr "Importer une bibliothèque"
579
+
580
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:71
581
+ msgid "_Import"
582
+ msgstr "_Importer"
583
+
584
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:188
585
+ msgid "Couldn't import the library"
586
+ msgstr "Impossible d'importer le livre"
587
+
588
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:189
589
+ msgid ""
590
+ "The format of the file you provided is unknown. Please retry with another "
591
+ "file."
592
+ msgstr ""
593
+ "Le format du fichier que vous fournissez est inconnu. Veuillez ré-essayer "
594
+ "avec un autre fichier."
595
+
596
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb:30
597
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:63
598
+ msgid "Properties for '%s'"
599
+ msgstr "Préférences pour '%s'"
600
+
601
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:83
602
+ msgid "Empty or conflictive condition"
603
+ msgstr "Vide ou condition générant des conflits"
604
+
605
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:86
606
+ msgid "_Save However"
607
+ msgstr "_Sauvegarder quand même"
608
+
609
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:87
610
+ msgid ""
611
+ "This smart library contains one or more conditions which are empty or "
612
+ "conflict with each other. This is likely to result in never matching a book. "
613
+ "Are you sure you want to save this library?"
614
+ msgstr ""
615
+ "Cette bibliothèque intelligente contient une ou plusieurs conditions qui "
616
+ "sont vides ou en conflits entre elles. Cela provient probablement d'un livre "
617
+ "qui ne correspondra jamais. Êtes-vous sûr de vouloir sauvegarder cette "
618
+ "bibliothèque ?"
619
+
620
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:106
621
+ msgid "Match"
622
+ msgstr "Correspond"
623
+
624
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
625
+ msgid "all"
626
+ msgstr "toutes"
627
+
628
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
629
+ msgid "any"
630
+ msgstr "aucunes"
631
+
632
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:119
633
+ msgid "of the following rules:"
634
+ msgstr "des règles suivantes : "
635
+
636
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:127
637
+ msgid "Match the following rule:"
638
+ msgstr "Correspond à la règle suivante : "
639
+
640
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:114
641
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:123
642
+ msgid "Couldn't modify the book"
643
+ msgstr "Impossible d'éditer les propriétés du livre"
644
+
645
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:115
646
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:88
647
+ msgid "The EAN/ISBN you provided is already used in this library."
648
+ msgstr "La donnée EAN/ISBN fournie est déjà utilisée dans cette bibliothèque."
649
+
650
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:124
651
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:94
652
+ msgid ""
653
+ "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
654
+ "correcty, and try again."
655
+ msgstr ""
656
+ "Impossible de valider la donnée EAN/ISBN. Vérifiez que le numéro est écrit "
657
+ "correctement, et ré-essayez."
658
+
659
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:65
660
+ msgid "Properties"
661
+ msgstr "Propriétés"
662
+
663
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:71
664
+ msgid "Author"
665
+ msgstr "Auteur"
666
+
667
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:123
668
+ msgid "Select a cover image"
669
+ msgstr "Sélectionnez une image de couverture"
670
+
671
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:127
672
+ msgid "No Cover"
673
+ msgstr "Aucune couverture"
674
+
675
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:186
676
+ msgid "%d day"
677
+ msgid_plural "%d days"
678
+ msgstr[0] "%d jour"
679
+ msgstr[1] "%d jours"
680
+
681
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:58
682
+ msgid "Adding '%s'"
683
+ msgstr "Ajout de '%s'"
684
+
685
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:60
686
+ #: ../data/alexandria/glade/new_book_dialog.glade:8
687
+ msgid "Adding a Book"
688
+ msgstr "Ajout d'un livre"
689
+
690
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:81
691
+ msgid "A title must be provided."
692
+ msgstr "Un titre doit être fourni."
693
+
694
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:102
695
+ msgid "A publisher must be provided."
696
+ msgstr "Un éditeur doit être fourni."
697
+
698
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:109
699
+ msgid "A binding must be provided."
700
+ msgstr "Une édition doit être fournie."
701
+
702
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:115
703
+ msgid "At least one author must be provided."
704
+ msgstr "Au moins un auteur doit être fourni."
705
+
706
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:142
707
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:523
708
+ msgid "Couldn't add the book"
709
+ msgstr "Impossible d'ajouter le livre"
710
+
711
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:25
712
+ msgid "File already exists"
713
+ msgstr "Le fichier existe déjà"
714
+
715
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:28
716
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:30
717
+ msgid "_Replace"
718
+ msgstr "_Remplacer"
719
+
720
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:29
721
+ msgid ""
722
+ "A file named '%s' already exists. Do you want to replace it with the one "
723
+ "you are generating?"
724
+ msgstr ""
725
+ "Un fichier nommé '%s' existe déjà sur le système. Voulez-vous le remplacer "
726
+ "par celui que vous êtes en train de générer ?"
727
+
728
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:52
729
+ msgid "Export '%s'"
730
+ msgstr "Exporter '%s'"
731
+
732
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:58
733
+ msgid "_Export"
734
+ msgstr "_Exporter"
735
+
736
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:77
737
+ msgid "_Theme:"
738
+ msgstr "_Thème :"
739
+
740
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:87
741
+ msgid "directory"
742
+ msgstr "répertoire"
743
+
744
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:100
745
+ msgid "Export for_mat:"
746
+ msgstr "For_mat d'export :"
747
+
748
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:155
749
+ msgid ""
750
+ "The target, named '%s', is a regular file. A directory is needed for this "
751
+ "operation. Please select a directory and try again."
752
+ msgstr ""
753
+ "La cible, nommé '%s', est un fichier régulier. Un répertoire est nécessaire "
754
+ "pour cette opération. Veuillez sélectionner un répertoire et ré-essayez."
755
+
756
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:159
757
+ msgid "Not a directory"
758
+ msgstr "Répertoire nécessaire"
759
+
760
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:32
761
+ msgid "Invalid ISBN '%s'"
762
+ msgstr "ISBN '%s' invalide"
763
+
764
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:35
765
+ msgid "_Keep"
766
+ msgstr "_Préserver"
767
+
768
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:36
769
+ msgid ""
770
+ "The book titled '%s' has an invalid ISBN, but still exists in the providers "
771
+ "libraries. Do you want to keep the book but change the ISBN or cancel the "
772
+ "add?"
773
+ msgstr ""
774
+ "Le livre nommé '%s' contient un ISBN invalide, mais existe néanmoins dans "
775
+ "les bibliothèques des fournisseurs. Désirez-vous préserver le livre en "
776
+ "changeant l'ISBN ou annuler l'ajout ?"
777
+
778
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:182
779
+ msgid "A problem occurred while downloading images"
780
+ msgstr "Un problème est survenu lors du téléchargement des images"
781
+
782
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:304
783
+ msgid "Unable to find matches for your search"
784
+ msgstr "Impossible de trouver des correspondances pour votre recherche"
785
+
786
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:310
787
+ msgid "%s, by %s"
788
+ msgstr "%s, par %s"
789
+
790
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:383
791
+ msgid ""
792
+ "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
793
+ "correctly, and try again."
794
+ msgstr ""
795
+ "Impossible de valider la donnée EAN/ISBN que vous avez fournie. Vérifiez "
796
+ "qu'elle est écrite correctement, et ré-essayez."
797
+
798
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:630
799
+ msgid "'%s' already exists in '%s' (titled '%s')."
800
+ msgstr " '%s' existe déjà dans '%s' (titré '%s' )."
801
+
802
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:26
803
+ msgid "The book '%s' already exists in '%s'. Would you like to replace it?"
804
+ msgstr "Le livre '%s' existe déjà dans '%s'. Voulez-vous le remplacer ?"
805
+
806
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:29
807
+ msgid "_Skip"
808
+ msgstr "_Passer"
809
+
810
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:31
811
+ msgid "If you replace the existing book, its contents will be overwritten."
812
+ msgstr "Si vous remplacez le livre existant, son contenu sera écrasé."
813
+
814
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:50
815
+ msgid "Are you sure you want to delete '%s'?"
816
+ msgstr "Êtes-vous sûr de vouloir supprimer de manière permanente '%s' ?"
817
+
818
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:58
819
+ msgid "If you continue, %d book will be deleted."
820
+ msgid_plural "If you continue, %d books will be deleted."
821
+ msgstr[0] "Si vous continuez, %d sera supprimé de manière permanente."
822
+ msgstr[1] ""
823
+ "Si vous continuez, %d livres seront supprimés de manière permanente."
824
+
825
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:63
826
+ msgid "Are you sure you want to delete '%s' from '%s'?"
827
+ msgstr "Êtes-vous sûr de vouloir supprimer de manière permanente '%s' de '%s'?"
828
+
829
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:66
830
+ msgid "Are you sure you want to delete the selected books from '%s'?"
831
+ msgstr ""
832
+ "Êtes-vous sûr de vouloir supprimer de manière permanente les livres "
833
+ "sélectionnés de '%s' ?"
834
+
835
+ #: ../lib/alexandria/ui/sidepane.rb:49
836
+ msgid "Invalid library name '%s'"
837
+ msgstr "Nom de bibliothèque invalide '%s'"
838
+
839
+ #: ../lib/alexandria/ui/sidepane.rb:50
840
+ #, fuzzy
841
+ msgid "The name provided contains the disallowed character <b>%s</b> "
842
+ msgstr "Le nom entré contient le caractère invalide '<i>%s</i>'."
843
+
844
+ #: ../lib/alexandria/ui/sidepane.rb:53
845
+ #, fuzzy
846
+ msgid "Invalid library name"
847
+ msgstr "Nom de bibliothèque invalide '%s'"
848
+
849
+ #: ../lib/alexandria/ui/sidepane.rb:54
850
+ #, fuzzy
851
+ msgid "The name provided contains invalid characters."
852
+ msgstr "Le nom entré contient le caractère invalide '<i>%s</i>'."
853
+
854
+ #: ../lib/alexandria/ui/sidepane.rb:60
855
+ msgid "The library name can not be empty"
856
+ msgstr "Le nom de la bibliothèque ne peut être blanc"
857
+
858
+ #: ../lib/alexandria/ui/sidepane.rb:65
859
+ msgid "The library can not be renamed"
860
+ msgstr "La bibliothèque ne peut être renommée"
861
+
862
+ #: ../lib/alexandria/ui/sidepane.rb:66
863
+ msgid "There is already a library named '%s'. Please choose a different name."
864
+ msgstr ""
865
+ "Il existe déjà une bibliothèque portant le nom '%s'. Veuillez choisir un "
866
+ "nom différent."
867
+
868
+ #: ../lib/alexandria/ui/sidepane.rb:92
869
+ msgid "Library"
870
+ msgstr "Bibliothèque"
871
+
872
+ #: ../lib/alexandria/ui/libraries_combo.rb:44
873
+ msgid "New Library"
874
+ msgstr "Nouvelle bibliothèque"
875
+
876
+ #: ../lib/alexandria/ui/listview.rb:52 ../lib/alexandria/smart_library.rb:349
877
+ msgid "Title"
878
+ msgstr "Titre"
879
+
880
+ #: ../lib/alexandria/ui/listview.rb:105 ../lib/alexandria/smart_library.rb:351
881
+ msgid "Authors"
882
+ msgstr "Auteurs"
883
+
884
+ #: ../lib/alexandria/ui/listview.rb:106 ../lib/alexandria/smart_library.rb:350
885
+ msgid "ISBN"
886
+ msgstr "ISBN"
887
+
888
+ #: ../lib/alexandria/ui/listview.rb:107 ../lib/alexandria/smart_library.rb:352
889
+ msgid "Publisher"
890
+ msgstr "Éditeur"
891
+
892
+ #: ../lib/alexandria/ui/listview.rb:108 ../lib/alexandria/smart_library.rb:353
893
+ msgid "Publish Year"
894
+ msgstr "Année de publication"
895
+
896
+ #: ../lib/alexandria/ui/listview.rb:109 ../lib/alexandria/smart_library.rb:354
897
+ msgid "Binding"
898
+ msgstr "Édition"
899
+
900
+ #: ../lib/alexandria/ui/listview.rb:110
901
+ #, fuzzy
902
+ msgid "Loaned To"
903
+ msgstr "Prêts"
904
+
905
+ #: ../lib/alexandria/ui/listview.rb:113 ../lib/alexandria/smart_library.rb:104
906
+ #: ../lib/alexandria/smart_library.rb:361
907
+ msgid "Read"
908
+ msgstr "Lire"
909
+
910
+ #: ../lib/alexandria/ui/listview.rb:114 ../lib/alexandria/smart_library.rb:363
911
+ msgid "Own"
912
+ msgstr "Propriétaire"
913
+
914
+ #: ../lib/alexandria/ui/listview.rb:115 ../lib/alexandria/smart_library.rb:364
915
+ msgid "Want"
916
+ msgstr "Veut"
917
+
918
+ #: ../lib/alexandria/ui/listview.rb:141 ../lib/alexandria/smart_library.rb:357
919
+ #: ../data/alexandria/glade/preferences_dialog.glade:421
920
+ msgid "Tags"
921
+ msgstr "Étiquettes"
922
+
923
+ #: ../lib/alexandria/ui/listview.rb:166 ../lib/alexandria/smart_library.rb:355
924
+ msgid "Rating"
925
+ msgstr "Notation"
926
+
927
+ #: ../lib/alexandria/ui/init.rb:83
928
+ msgid "Unable to launch the help browser"
929
+ msgstr "Impossible de démarrer l' aide du navigateur "
930
+
931
+ #: ../lib/alexandria/ui/init.rb:84
932
+ msgid ""
933
+ "Could not display help for Alexandria. There was an error launching the "
934
+ "system help browser."
935
+ msgstr ""
936
+ "On n'a pas pu afficher de l'aide pour Alexandria. Une erreur est apparue "
937
+ "lors du chargement du système aide du navigateur."
938
+
939
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:37
940
+ msgid "Locale"
941
+ msgstr "Langue"
942
+
943
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:38
944
+ msgid "Access key ID"
945
+ msgstr ""
946
+
947
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:39
948
+ msgid "Secret access key"
949
+ msgstr ""
950
+
951
+ #: ../lib/alexandria/book_providers/mcu.rb:39
952
+ msgid "Spanish Culture Ministry"
953
+ msgstr "Ministère de la culture espagnole"
954
+
955
+ #: ../lib/alexandria/book_providers/z3950.rb:34
956
+ msgid "Hostname"
957
+ msgstr "Nom d'hôte"
958
+
959
+ #: ../lib/alexandria/book_providers/z3950.rb:35
960
+ msgid "Port"
961
+ msgstr "Port"
962
+
963
+ #: ../lib/alexandria/book_providers/z3950.rb:36
964
+ msgid "Database"
965
+ msgstr "Base de données"
966
+
967
+ #: ../lib/alexandria/book_providers/z3950.rb:37
968
+ msgid "Record syntax"
969
+ msgstr "Format"
970
+
971
+ #: ../lib/alexandria/book_providers/z3950.rb:38
972
+ msgid "Username"
973
+ msgstr "Utilisateur"
974
+
975
+ #: ../lib/alexandria/book_providers/z3950.rb:39
976
+ msgid "Password"
977
+ msgstr "Mot de passe"
978
+
979
+ #: ../lib/alexandria/book_providers/z3950.rb:40
980
+ msgid "Charset encoding"
981
+ msgstr "Charset encodant"
982
+
983
+ #: ../lib/alexandria/book_providers/z3950.rb:221
984
+ msgid "Library of Congress (Usa)"
985
+ msgstr "Bibliothèque du Congrès (États-Unis)"
986
+
987
+ #: ../lib/alexandria/book_providers/z3950.rb:255
988
+ msgid "British Library"
989
+ msgstr "Bibliothèque britannique"
990
+
991
+ #: ../lib/alexandria/export_library.rb:109
992
+ msgid "Archived ONIX XML"
993
+ msgstr "Archive ONIX XML"
994
+
995
+ #: ../lib/alexandria/export_library.rb:111
996
+ msgid "Archived Tellico XML"
997
+ msgstr "Archive Tellico XML"
998
+
999
+ #: ../lib/alexandria/export_library.rb:113
1000
+ msgid "BibTeX"
1001
+ msgstr "BibTex"
1002
+
1003
+ #: ../lib/alexandria/export_library.rb:114
1004
+ msgid "CSV list"
1005
+ msgstr "Liste CSV"
1006
+
1007
+ #: ../lib/alexandria/export_library.rb:115
1008
+ msgid "ISBN List"
1009
+ msgstr "Liste d'ISBNs"
1010
+
1011
+ #: ../lib/alexandria/export_library.rb:116
1012
+ msgid "iPod Notes"
1013
+ msgstr "Notes de l' iPod"
1014
+
1015
+ #: ../lib/alexandria/export_library.rb:117
1016
+ msgid "HTML Web Page"
1017
+ msgstr "Page Web HTML"
1018
+
1019
+ #: ../lib/alexandria/smart_library.rb:92
1020
+ msgid "Favorite"
1021
+ msgstr "Favoris"
1022
+
1023
+ #: ../lib/alexandria/smart_library.rb:98
1024
+ msgid "Loaned"
1025
+ msgstr "Prêts"
1026
+
1027
+ #: ../lib/alexandria/smart_library.rb:110
1028
+ msgid "Owned"
1029
+ msgstr "Acquis"
1030
+
1031
+ #: ../lib/alexandria/smart_library.rb:119
1032
+ msgid "Wishlist"
1033
+ msgstr "Liste de demande"
1034
+
1035
+ #: ../lib/alexandria/smart_library.rb:356
1036
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1225
1037
+ msgid "Notes"
1038
+ msgstr "Notes"
1039
+
1040
+ #: ../lib/alexandria/smart_library.rb:358
1041
+ msgid "Loaning State"
1042
+ msgstr "Etat du prêt"
1043
+
1044
+ #: ../lib/alexandria/smart_library.rb:359
1045
+ msgid "Loaning Date"
1046
+ msgstr "Date du prêt"
1047
+
1048
+ #: ../lib/alexandria/smart_library.rb:360
1049
+ msgid "Loaning Person"
1050
+ msgstr "Emprunteur"
1051
+
1052
+ #: ../lib/alexandria/smart_library.rb:362
1053
+ msgid "Date Read"
1054
+ msgstr "Date de lecture"
1055
+
1056
+ #: ../lib/alexandria/smart_library.rb:371
1057
+ msgid "days"
1058
+ msgstr "jours"
1059
+
1060
+ #: ../lib/alexandria/smart_library.rb:382
1061
+ msgid "is set"
1062
+ msgstr "est défini"
1063
+
1064
+ #: ../lib/alexandria/smart_library.rb:386
1065
+ msgid "is not set"
1066
+ msgstr "n'est pas défini"
1067
+
1068
+ #: ../lib/alexandria/smart_library.rb:390
1069
+ msgid "is"
1070
+ msgstr "est"
1071
+
1072
+ #: ../lib/alexandria/smart_library.rb:394
1073
+ msgid "is not"
1074
+ msgstr "n'est pas"
1075
+
1076
+ #: ../lib/alexandria/smart_library.rb:398
1077
+ msgid "contains"
1078
+ msgstr "contient"
1079
+
1080
+ #: ../lib/alexandria/smart_library.rb:402
1081
+ msgid "does not contain"
1082
+ msgstr "ne contient pas"
1083
+
1084
+ #: ../lib/alexandria/smart_library.rb:406
1085
+ msgid "starts with"
1086
+ msgstr "commence par"
1087
+
1088
+ #: ../lib/alexandria/smart_library.rb:410
1089
+ msgid "ends with"
1090
+ msgstr "finit par"
1091
+
1092
+ #: ../lib/alexandria/smart_library.rb:414
1093
+ msgid "is greater than"
1094
+ msgstr "est supérieur à"
1095
+
1096
+ #: ../lib/alexandria/smart_library.rb:418
1097
+ msgid "is less than"
1098
+ msgstr "est inférieur à"
1099
+
1100
+ #: ../lib/alexandria/smart_library.rb:422
1101
+ msgid "is after"
1102
+ msgstr "se situe après"
1103
+
1104
+ #: ../lib/alexandria/smart_library.rb:426
1105
+ msgid "is before"
1106
+ msgstr "se situe avant"
1107
+
1108
+ #: ../lib/alexandria/smart_library.rb:430
1109
+ msgid "is in last"
1110
+ msgstr "se situe en fin"
1111
+
1112
+ #: ../lib/alexandria/smart_library.rb:450
1113
+ msgid "is not in last"
1114
+ msgstr "ne se situe pas en fin"
1115
+
1116
+ #: ../lib/alexandria/book_providers.rb:87
1117
+ msgid "Couldn't reach the provider '%s': timeout expired."
1118
+ msgstr "Impossible de joindre le fournisseur '%s': durée maximale dépassée."
1119
+
1120
+ #: ../lib/alexandria/book_providers.rb:91
1121
+ msgid "Couldn't reach the provider '%s': socket error (%s)."
1122
+ msgstr "Impossible de joindre le fournisseur '%s': erreur socket (%s)."
1123
+
1124
+ #: ../lib/alexandria/book_providers.rb:95
1125
+ #: ../lib/alexandria/book_providers.rb:100
1126
+ msgid ""
1127
+ "No results were found. Make sure your search criterion is spelled "
1128
+ "correctly, and try again."
1129
+ msgstr ""
1130
+ "Aucun résultat trouvé. Vérifiez l'orthographe des critères de la recherche, "
1131
+ "et ré-essayez encore."
1132
+
1133
+ #: ../lib/alexandria/book_providers.rb:105
1134
+ msgid "Too many results for that search."
1135
+ msgstr "Trop de résultats pour cette recherche."
1136
+
1137
+ #: ../lib/alexandria/book_providers.rb:108
1138
+ msgid "Invalid search type."
1139
+ msgstr "Type de recherche invalide."
1140
+
1141
+ #: ../lib/alexandria/book_providers.rb:203
1142
+ msgid "Enabled"
1143
+ msgstr ""
1144
+
1145
+ #: ../data/alexandria/glade/acquire_dialog.glade:9
1146
+ msgid "Acquire from Scanner"
1147
+ msgstr "Utilisation de scanner"
1148
+
1149
+ #: ../data/alexandria/glade/acquire_dialog.glade:87
1150
+ #: ../data/alexandria/glade/new_book_dialog.glade:90
1151
+ msgid "Save _in:"
1152
+ msgstr "Sauvegarder _dans :"
1153
+
1154
+ #: ../data/alexandria/glade/main_app.glade:17
1155
+ msgid "Main Window"
1156
+ msgstr "Fenêtre Principale"
1157
+
1158
+ #: ../data/alexandria/glade/main_app.glade:32
1159
+ msgid "Libraries listing."
1160
+ msgstr "Liste des bibliothèques."
1161
+
1162
+ #: ../data/alexandria/glade/main_app.glade:46
1163
+ msgid "_Libraries:"
1164
+ msgstr "_Bibliothèques:"
1165
+
1166
+ #: ../data/alexandria/glade/main_app.glade:111
1167
+ msgid "Book listing."
1168
+ msgstr "Liste des livres."
1169
+
1170
+ #: ../data/alexandria/glade/main_app.glade:194
1171
+ msgid "Status messages."
1172
+ msgstr "État des messages."
1173
+
1174
+ #: ../data/alexandria/glade/new_book_dialog.glade:31
1175
+ msgid "_Keep Dialog Open after Adding Book"
1176
+ msgstr ""
1177
+
1178
+ #: ../data/alexandria/glade/new_book_dialog.glade:114
1179
+ msgid ""
1180
+ "by title\n"
1181
+ "by authors\n"
1182
+ "by keyword"
1183
+ msgstr ""
1184
+ "par titre\n"
1185
+ "par auteurs\n"
1186
+ "par mot clef"
1187
+
1188
+ #: ../data/alexandria/glade/new_book_dialog.glade:201
1189
+ msgid "_Search:"
1190
+ msgstr "_Rechercher"
1191
+
1192
+ #: ../data/alexandria/glade/new_book_dialog.glade:219
1193
+ #: ../data/alexandria/glade/book_properties_dialog.glade:187
1194
+ msgid "_ISBN:"
1195
+ msgstr "_ISBN:"
1196
+
1197
+ #: ../data/alexandria/glade/book_properties_dialog.glade:86
1198
+ msgid "_Title:"
1199
+ msgstr "_Titre:"
1200
+
1201
+ #: ../data/alexandria/glade/book_properties_dialog.glade:115
1202
+ msgid "_Publisher:"
1203
+ msgstr "_Éditeur:"
1204
+
1205
+ #: ../data/alexandria/glade/book_properties_dialog.glade:279
1206
+ msgid "Add an author"
1207
+ msgstr "Ajoute un auteur"
1208
+
1209
+ #: ../data/alexandria/glade/book_properties_dialog.glade:307
1210
+ msgid "Remove an author"
1211
+ msgstr "Supprime un auteur"
1212
+
1213
+ #: ../data/alexandria/glade/book_properties_dialog.glade:351
1214
+ msgid "_Authors:"
1215
+ msgstr "_Auteurs:"
1216
+
1217
+ #: ../data/alexandria/glade/book_properties_dialog.glade:380
1218
+ msgid "_Binding:"
1219
+ msgstr "É_dition:"
1220
+
1221
+ #: ../data/alexandria/glade/book_properties_dialog.glade:430
1222
+ msgid "Publish _year:"
1223
+ msgstr "_Année de publication :"
1224
+
1225
+ #: ../data/alexandria/glade/book_properties_dialog.glade:480
1226
+ msgid "Tags:"
1227
+ msgstr "Étiquettes:"
1228
+
1229
+ #: ../data/alexandria/glade/book_properties_dialog.glade:553
1230
+ msgid "_Cover:"
1231
+ msgstr "_Couverture:"
1232
+
1233
+ #: ../data/alexandria/glade/book_properties_dialog.glade:579
1234
+ msgid "Click to pick a cover"
1235
+ msgstr "Cliquez pour choisir une couverture"
1236
+
1237
+ #: ../data/alexandria/glade/book_properties_dialog.glade:620
1238
+ msgid "Own it?"
1239
+ msgstr "C'est à vous?"
1240
+
1241
+ #: ../data/alexandria/glade/book_properties_dialog.glade:646
1242
+ msgid "Read it?"
1243
+ msgstr "Lisez-le?"
1244
+
1245
+ #: ../data/alexandria/glade/book_properties_dialog.glade:695
1246
+ msgid "Want it?"
1247
+ msgstr "Le voulez-vous?"
1248
+
1249
+ #: ../data/alexandria/glade/book_properties_dialog.glade:721
1250
+ msgid "Click on the stars to rate the book"
1251
+ msgstr "Cliquer sur les étoiles pour noter le livre"
1252
+
1253
+ #: ../data/alexandria/glade/book_properties_dialog.glade:927
1254
+ msgid "Rating:"
1255
+ msgstr "Notation :"
1256
+
1257
+ #: ../data/alexandria/glade/book_properties_dialog.glade:967
1258
+ msgid "General"
1259
+ msgstr "Général"
1260
+
1261
+ #: ../data/alexandria/glade/book_properties_dialog.glade:998
1262
+ msgid "This book is _loaned"
1263
+ msgstr "Ce livre est _prêté"
1264
+
1265
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1076
1266
+ msgid "_To:"
1267
+ msgstr "_À :"
1268
+
1269
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1106
1270
+ msgid "_Since:"
1271
+ msgstr "_Depuis :"
1272
+
1273
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1166
1274
+ msgid "Loaning"
1275
+ msgstr "Prêt"
1276
+
1277
+ #: ../data/alexandria/glade/preferences_dialog.glade:7
1278
+ msgid "Preferences"
1279
+ msgstr "Préférences"
1280
+
1281
+ #: ../data/alexandria/glade/preferences_dialog.glade:27
1282
+ #, fuzzy
1283
+ msgid "<b>Book Data Providers</b>"
1284
+ msgstr "<b>_Fournisseurs</b>"
1285
+
1286
+ #: ../data/alexandria/glade/preferences_dialog.glade:99
1287
+ msgid "_Setup"
1288
+ msgstr "_Configurer"
1289
+
1290
+ #: ../data/alexandria/glade/preferences_dialog.glade:198
1291
+ msgid ""
1292
+ "Providers are libraries that supply information about books. Some of them "
1293
+ "can be configured to get better results. You can also customize the order "
1294
+ "in which they are queried."
1295
+ msgstr ""
1296
+ "Les fournisseurs sont des bibliothèques partageant des informations sur des "
1297
+ "livres. Certains d'entre eux peuvent-être configurés afin d'obtenir de "
1298
+ "meilleurs résultats. Vous pouvez également personnaliser l'ordre dans "
1299
+ "lequel ils seront interrogés."
1300
+
1301
+ #: ../data/alexandria/glade/preferences_dialog.glade:209
1302
+ msgid "Custom _Z39.50 Providers"
1303
+ msgstr ""
1304
+
1305
+ #: ../data/alexandria/glade/preferences_dialog.glade:213
1306
+ msgid ""
1307
+ "Add and remove your own Z39.50 providers.\n"
1308
+ "Requires the Ruby/ZOOM software library."
1309
+ msgstr ""
1310
+
1311
+ #: ../data/alexandria/glade/preferences_dialog.glade:235
1312
+ #, fuzzy
1313
+ msgid "_Providers"
1314
+ msgstr "Fournisseurs"
1315
+
1316
+ #: ../data/alexandria/glade/preferences_dialog.glade:252
1317
+ msgid "<b>Visible Columns</b>"
1318
+ msgstr "<b>Colonnes visibles</b>"
1319
+
1320
+ #: ../data/alexandria/glade/preferences_dialog.glade:270
1321
+ msgid "_Authors"
1322
+ msgstr "_Auteurs"
1323
+
1324
+ #: ../data/alexandria/glade/preferences_dialog.glade:285
1325
+ msgid "_ISBN"
1326
+ msgstr "_ISBN"
1327
+
1328
+ #: ../data/alexandria/glade/preferences_dialog.glade:302
1329
+ msgid "_Publisher"
1330
+ msgstr "É_diteur"
1331
+
1332
+ #: ../data/alexandria/glade/preferences_dialog.glade:319
1333
+ msgid "_Rating"
1334
+ msgstr "_Notation"
1335
+
1336
+ #: ../data/alexandria/glade/preferences_dialog.glade:336
1337
+ msgid "_Binding"
1338
+ msgstr "É_dition"
1339
+
1340
+ #: ../data/alexandria/glade/preferences_dialog.glade:353
1341
+ msgid "Publish _year"
1342
+ msgstr "_Année de publication"
1343
+
1344
+ #: ../data/alexandria/glade/preferences_dialog.glade:370
1345
+ msgid "Read?"
1346
+ msgstr "Lire?"
1347
+
1348
+ #: ../data/alexandria/glade/preferences_dialog.glade:387
1349
+ msgid "Own?"
1350
+ msgstr "Possédez-vous?"
1351
+
1352
+ #: ../data/alexandria/glade/preferences_dialog.glade:404
1353
+ msgid "Want?"
1354
+ msgstr "Voulez-vous?"
1355
+
1356
+ #: ../data/alexandria/glade/preferences_dialog.glade:438
1357
+ #, fuzzy
1358
+ msgid "Loaned to"
1359
+ msgstr "Prêts"
1360
+
1361
+ #: ../data/alexandria/glade/preferences_dialog.glade:465
1362
+ #, fuzzy
1363
+ msgid "_List View"
1364
+ msgstr "Vue en liste"
1365
+
1366
+ #: ../alexandria.desktop.in.h:1
1367
+ msgid "Alexandria Book Collection Manager"
1368
+ msgstr "Gestionnaire de collection de livres Alexandria"
1369
+
1370
+ #: ../alexandria.desktop.in.h:2
1371
+ msgid "Book Collection Manager"
1372
+ msgstr "Gestionnaire de collection de livres"
1373
+
1374
+ #: ../alexandria.desktop.in.h:3
1375
+ msgid "Manage your book collection"
1376
+ msgstr "Gérez votre collection de livres"
1377
+
1378
+ #~ msgid "Language"
1379
+ #~ msgstr "Langue"
1380
+
1381
+ #~ msgid "_Advanced Settings"
1382
+ #~ msgstr "Paramêtres _avancés"
1383
+
1384
+ #~ msgid "Development token"
1385
+ #~ msgstr "Jeton de développeur"
1386
+
1387
+ #, fuzzy
1388
+ #~ msgid "Couldn't add these books"
1389
+ #~ msgstr "Impossible d'ajouter le livre"
1390
+
1391
+ #~ msgid "Associate ID"
1392
+ #~ msgstr "Identifiant d'associé"
1393
+
1394
+ #~ msgid "_Refresh"
1395
+ #~ msgstr "_Rafraîchir"
1396
+
1397
+ #~ msgid "Reload the selected library"
1398
+ #~ msgstr "Recharge la bibliothèque sélectionnée"
1399
+
1400
+ #~ msgid "n/a"
1401
+ #~ msgstr "Inconnu"
1402
+
1403
+ #~ msgid "Library _name:"
1404
+ #~ msgstr "_Nom de bibliothèque :"
1405
+
1406
+ #~ msgid "Are you sure you want to permanently delete '%s' which has %d book?"
1407
+ #~ msgid_plural ""
1408
+ #~ "Are you sure you want to permanently delete '%s' which has %d books?"
1409
+ #~ msgstr[0] ""
1410
+ #~ "Êtes-vous sûr de vouloir supprimer de manière permanente '%s', qui "
1411
+ #~ "contient %d livre ?"
1412
+ #~ msgstr[1] ""
1413
+ #~ "Êtes-vous sûr de vouloir supprimer de manière permanente '%s', qui "
1414
+ #~ "contient %d livres ?"
1415
+
1416
+ #~ msgid "_New"
1417
+ #~ msgstr "_Nouveau"
1418
+
1419
+ #~ msgid "Couldn't validate the scanner input"
1420
+ #~ msgstr "Impossible de valider l'entrée du numérisateur"