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,1405 @@
1
+ # Dutch translation for Alexandria
2
+ # Copyright (C) 2007-2009 L.C. Karssen <lennart@karssen.org>
3
+ # This file is distributed under the same license as the Alexandria package.
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: alexandria 0.6.6\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2010-08-13 04:41+0100\n"
10
+ "PO-Revision-Date: 2009-12-23 12:55+0200\n"
11
+ "Last-Translator: L.C. Karssen <lennart@karssen.org>\n"
12
+ "Language-Team: Dutch\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=n!=1;\n"
17
+
18
+ #: ../lib/alexandria/import_library.rb:30
19
+ msgid "Autodetect"
20
+ msgstr "Automatische detectie"
21
+
22
+ #: ../lib/alexandria/import_library.rb:31
23
+ msgid "Archived Tellico XML (*.bc, *.tc)"
24
+ msgstr "Gearchiveerd Tellico XML (*.bc, *.tc)"
25
+
26
+ #: ../lib/alexandria/import_library.rb:33
27
+ msgid "ISBN List (*.txt)"
28
+ msgstr "ISBN-lijst (*.txt)"
29
+
30
+ #: ../lib/alexandria/import_library.rb:35
31
+ msgid "GoodReads CSV"
32
+ msgstr "GoodReads CSV"
33
+
34
+ #: ../lib/alexandria/models/library.rb:56
35
+ msgid "Untitled"
36
+ msgstr "Naamloos"
37
+
38
+ #: ../lib/alexandria/models/library.rb:245
39
+ msgid "My Library"
40
+ msgstr "Mijn bibliotheek"
41
+
42
+ #: ../lib/alexandria/about.rb:24
43
+ msgid "A program to help you manage your book collection."
44
+ msgstr "Een programma dat u helpt om uw boekcollectie bij te houden."
45
+
46
+ #: ../lib/alexandria/ui/ui_manager.rb:135
47
+ msgid "Type here the search criterion"
48
+ msgstr "Voer hier het zoekcriterium in"
49
+
50
+ #: ../lib/alexandria/ui/ui_manager.rb:148
51
+ msgid "Match everything"
52
+ msgstr "Toon alles"
53
+
54
+ #: ../lib/alexandria/ui/ui_manager.rb:150
55
+ msgid "Title contains"
56
+ msgstr "Titel bevat"
57
+
58
+ #: ../lib/alexandria/ui/ui_manager.rb:151
59
+ msgid "Authors contain"
60
+ msgstr "Auteurs bevat"
61
+
62
+ #: ../lib/alexandria/ui/ui_manager.rb:152
63
+ msgid "ISBN contains"
64
+ msgstr "ISBN bevat"
65
+
66
+ #: ../lib/alexandria/ui/ui_manager.rb:153
67
+ msgid "Publisher contains"
68
+ msgstr "Uitgever bevat"
69
+
70
+ #: ../lib/alexandria/ui/ui_manager.rb:154
71
+ msgid "Notes contain"
72
+ msgstr "Notities bevat"
73
+
74
+ #: ../lib/alexandria/ui/ui_manager.rb:155
75
+ msgid "Tags contain"
76
+ msgstr "Trefwoorden bevat"
77
+
78
+ #: ../lib/alexandria/ui/ui_manager.rb:170
79
+ msgid "Change the search type"
80
+ msgstr "Wijzig het zoektype"
81
+
82
+ #: ../lib/alexandria/ui/ui_manager.rb:175
83
+ msgid "View as Icons"
84
+ msgstr "Toon als iconen"
85
+
86
+ #: ../lib/alexandria/ui/ui_manager.rb:176
87
+ msgid "View as List"
88
+ msgstr "Toon als lijst"
89
+
90
+ #: ../lib/alexandria/ui/ui_manager.rb:189
91
+ msgid "Choose how to show books"
92
+ msgstr "Bepaal hoe de boeken getoond moeten worden"
93
+
94
+ #: ../lib/alexandria/ui/ui_manager.rb:436
95
+ msgid "Library '%s' selected"
96
+ msgstr "Bibliotheek '%s' is geselecteerd"
97
+
98
+ #: ../lib/alexandria/ui/ui_manager.rb:443
99
+ msgid "Library '%s' selected, %d unrated book"
100
+ msgid_plural "Library '%s' selected, %d unrated books"
101
+ msgstr[0] "Bibliotheek '%s' geselecteerd. %d ongewaardeerd boek"
102
+ msgstr[1] "Bibliotheek '%s' geselecteerd. %d ongewaardeerde boeken"
103
+
104
+ #: ../lib/alexandria/ui/ui_manager.rb:448
105
+ msgid "Library '%s' selected, %d book"
106
+ msgid_plural "Library '%s' selected, %d books"
107
+ msgstr[0] "Bibliotheek '%s' geselecteerd, %d boek"
108
+ msgstr[1] "Bibliotheek '%s' geselecteerd, %d boeken"
109
+
110
+ #: ../lib/alexandria/ui/ui_manager.rb:455
111
+ msgid "Library '%s' selected, %d book, %d unrated"
112
+ msgid_plural "Library '%s' selected, %d books, %d unrated"
113
+ msgstr[0] "Bibliotheek '%s' geselecteerd, %d boek, %d zonder waardering"
114
+ msgstr[1] "Bibliotheek '%s' geselecteerd, %d boeken, %d zonder waardering"
115
+
116
+ #: ../lib/alexandria/ui/ui_manager.rb:467
117
+ msgid "'%s' selected"
118
+ msgstr "'%s' geselecteerd"
119
+
120
+ #: ../lib/alexandria/ui/ui_manager.rb:470
121
+ msgid "%d book selected"
122
+ msgid_plural "%d books selected"
123
+ msgstr[0] "%d boek geselecteerd"
124
+ msgstr[1] "%d boeken geselecteerd"
125
+
126
+ #: ../lib/alexandria/ui/ui_manager.rb:648
127
+ msgid "Unable to launch the web browser"
128
+ msgstr "Kon geen webbrowser starten"
129
+
130
+ #: ../lib/alexandria/ui/ui_manager.rb:649
131
+ msgid ""
132
+ "Check out that a web browser is configured as default (Desktop Preferences -"
133
+ "> Advanced -> Preferred Applications) and try again."
134
+ msgstr ""
135
+ "Controleer of een standaard webbrowser is ingesteld (Systeem -> Voorkeuren -"
136
+ "> Voorkeursapplicaties) en probeer opnieuw."
137
+
138
+ #: ../lib/alexandria/ui/ui_manager.rb:661
139
+ msgid "Unable to launch the mail reader"
140
+ msgstr "Kon geen e-mailprogramma starten"
141
+
142
+ #: ../lib/alexandria/ui/ui_manager.rb:662
143
+ msgid ""
144
+ "Check out that a mail reader is configured as default (Desktop Preferences -"
145
+ "> Advanced -> Preferred Applications) and try again."
146
+ msgstr ""
147
+ "Controleer of een standaard e-mailprogramma is ingesteld (Systeem -> "
148
+ "Voorkeuren -> Voorkeursapplicaties) en probeer opnieuw."
149
+
150
+ #: ../lib/alexandria/ui/ui_manager.rb:697
151
+ msgid "Repair Book Data"
152
+ msgstr "Repareer boekgegevens"
153
+
154
+ #: ../lib/alexandria/ui/ui_manager.rb:698
155
+ msgid ""
156
+ "The data files for the following books are malformed or empty. Do you wish "
157
+ "to attempt to download new information for them from the online book "
158
+ "providers?\n"
159
+ msgstr ""
160
+ "De gegevensbestanden voor de volgende boeken zijn corrupt of leeg. Wilt u "
161
+ "proberen om de informatie voor deze boeken opnieuw te downloaden?\n"
162
+
163
+ #: ../lib/alexandria/ui/ui_manager.rb:755
164
+ msgid "Added '%s' to library '%s'"
165
+ msgstr "'%s' toegevoegd aan bibliotheek '%s'"
166
+
167
+ #: ../lib/alexandria/ui/ui_manager.rb:908
168
+ msgid "Loading '%s'..."
169
+ msgstr "'%s' wordt geladen..."
170
+
171
+ #: ../lib/alexandria/ui/ui_manager.rb:1157
172
+ msgid "In '_%s'"
173
+ msgstr "Naar '_%s'"
174
+
175
+ #: ../lib/alexandria/ui/callbacks.rb:65
176
+ msgid "The following lines are not valid ISBNs and were not imported:"
177
+ msgstr ""
178
+ "De volgende regels bevatten geen geldige ISBNs en zijn daarom niet "
179
+ "geïmporteerd:"
180
+
181
+ #: ../lib/alexandria/ui/callbacks.rb:122
182
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:128
183
+ msgid "Export failed"
184
+ msgstr "Het exporteren is mislukt"
185
+
186
+ #: ../lib/alexandria/ui/callbacks.rb:123
187
+ msgid "Try letting this library load completely before exporting."
188
+ msgstr "Probeer voor het exporteren deze bibliotheek volledig te laten laden"
189
+
190
+ #: ../lib/alexandria/ui/callbacks.rb:274
191
+ msgid "_Library"
192
+ msgstr "_Bibliotheek"
193
+
194
+ #: ../lib/alexandria/ui/callbacks.rb:275
195
+ msgid "_New Library"
196
+ msgstr "_Nieuwe bibliotheek"
197
+
198
+ #: ../lib/alexandria/ui/callbacks.rb:275
199
+ msgid "Create a new library"
200
+ msgstr "Maak een nieuwe bibliotheek aan"
201
+
202
+ #: ../lib/alexandria/ui/callbacks.rb:276
203
+ msgid "New _Smart Library..."
204
+ msgstr "Nieuwe _slimme bibliotheek..."
205
+
206
+ #: ../lib/alexandria/ui/callbacks.rb:276
207
+ msgid "Create a new smart library"
208
+ msgstr "Maak een nieuwe slimme bibliotheek aan"
209
+
210
+ #: ../lib/alexandria/ui/callbacks.rb:277
211
+ msgid "_Add Book..."
212
+ msgstr "Boek _toevoegen..."
213
+
214
+ #: ../lib/alexandria/ui/callbacks.rb:277
215
+ msgid "Add a new book from the Internet"
216
+ msgstr "Voeg een nieuw boek toe vanaf het internet"
217
+
218
+ #: ../lib/alexandria/ui/callbacks.rb:278
219
+ msgid "Add Book _Manually..."
220
+ msgstr "Boek hand_matig toevoegen..."
221
+
222
+ #: ../lib/alexandria/ui/callbacks.rb:278
223
+ msgid "Add a new book manually"
224
+ msgstr "Een nieuw boek handmatig toevoegen"
225
+
226
+ #: ../lib/alexandria/ui/callbacks.rb:279
227
+ msgid "_Import..."
228
+ msgstr "_Importeren..."
229
+
230
+ #: ../lib/alexandria/ui/callbacks.rb:279
231
+ msgid "Import a library"
232
+ msgstr "Importeer een bibliotheek"
233
+
234
+ #: ../lib/alexandria/ui/callbacks.rb:280
235
+ msgid "_Export..."
236
+ msgstr "_Exporteren..."
237
+
238
+ #: ../lib/alexandria/ui/callbacks.rb:280
239
+ msgid "Export the selected library"
240
+ msgstr "Exporteer de geselecteerde bibliotheek"
241
+
242
+ #: ../lib/alexandria/ui/callbacks.rb:281
243
+ msgid "_Acquire from Scanner..."
244
+ msgstr "_Inlezen d.m.v. scanner..."
245
+
246
+ #: ../lib/alexandria/ui/callbacks.rb:281
247
+ msgid "Acquire books from a scanner"
248
+ msgstr "Boeken inlezen d.m.v. scanner"
249
+
250
+ #: ../lib/alexandria/ui/callbacks.rb:282
251
+ msgid "_Properties"
252
+ msgstr "_Eigenschappen"
253
+
254
+ #: ../lib/alexandria/ui/callbacks.rb:282
255
+ msgid "Edit the properties of the selected book"
256
+ msgstr "Eigenschappen van het geselecteerde boek bewerken"
257
+
258
+ #: ../lib/alexandria/ui/callbacks.rb:283
259
+ msgid "_Quit"
260
+ msgstr "_Afsluiten"
261
+
262
+ #: ../lib/alexandria/ui/callbacks.rb:283
263
+ msgid "Quit the program"
264
+ msgstr "Het programma afsluiten"
265
+
266
+ #: ../lib/alexandria/ui/callbacks.rb:284
267
+ msgid "_Edit"
268
+ msgstr "_Bewerken"
269
+
270
+ #: ../lib/alexandria/ui/callbacks.rb:285
271
+ msgid "_Undo"
272
+ msgstr "_Ongedaan maken"
273
+
274
+ #: ../lib/alexandria/ui/callbacks.rb:285
275
+ msgid "Undo the last action"
276
+ msgstr "De laatste actie ongedaan maken"
277
+
278
+ #: ../lib/alexandria/ui/callbacks.rb:286
279
+ msgid "_Redo"
280
+ msgstr "_Opnieuw uitvoeren"
281
+
282
+ #: ../lib/alexandria/ui/callbacks.rb:286
283
+ msgid "Redo the undone action"
284
+ msgstr "De ongedaan gemaakte handeling toch uitvoeren"
285
+
286
+ #: ../lib/alexandria/ui/callbacks.rb:287
287
+ msgid "_Select All"
288
+ msgstr "_Alles selecteren"
289
+
290
+ #: ../lib/alexandria/ui/callbacks.rb:287
291
+ msgid "Select all visible books"
292
+ msgstr "Selecteer alle zichtbare boeken"
293
+
294
+ #: ../lib/alexandria/ui/callbacks.rb:288
295
+ msgid "Dese_lect All"
296
+ msgstr "Alles _deselecteren"
297
+
298
+ #: ../lib/alexandria/ui/callbacks.rb:288
299
+ msgid "Deselect everything"
300
+ msgstr "Alles deselecteren"
301
+
302
+ #: ../lib/alexandria/ui/callbacks.rb:289
303
+ msgid "My _Rating"
304
+ msgstr "Mijn _waardering"
305
+
306
+ #: ../lib/alexandria/ui/callbacks.rb:290
307
+ msgid "None"
308
+ msgstr "Geen"
309
+
310
+ #: ../lib/alexandria/ui/callbacks.rb:291
311
+ msgid "One Star"
312
+ msgstr "Een ster"
313
+
314
+ #: ../lib/alexandria/ui/callbacks.rb:292
315
+ msgid "Two Stars"
316
+ msgstr "Twee sterren"
317
+
318
+ #: ../lib/alexandria/ui/callbacks.rb:293
319
+ msgid "Three Stars"
320
+ msgstr "Drie sterren"
321
+
322
+ #: ../lib/alexandria/ui/callbacks.rb:294
323
+ msgid "Four Stars"
324
+ msgstr "Vier sterren"
325
+
326
+ #: ../lib/alexandria/ui/callbacks.rb:295
327
+ msgid "Five Stars"
328
+ msgstr "Vijf sterren"
329
+
330
+ #: ../lib/alexandria/ui/callbacks.rb:296
331
+ msgid "_Move"
332
+ msgstr "_Verplaatsen"
333
+
334
+ #: ../lib/alexandria/ui/callbacks.rb:297
335
+ msgid "_Rename"
336
+ msgstr "_Hernoemen"
337
+
338
+ #: ../lib/alexandria/ui/callbacks.rb:298
339
+ msgid "_Delete"
340
+ msgstr "_Verwijderen"
341
+
342
+ #: ../lib/alexandria/ui/callbacks.rb:298
343
+ msgid "Delete the selected books or library"
344
+ msgstr "De geselecteerde boeken verwijderen"
345
+
346
+ #: ../lib/alexandria/ui/callbacks.rb:299
347
+ msgid "_Search"
348
+ msgstr "_Zoeken"
349
+
350
+ #: ../lib/alexandria/ui/callbacks.rb:299
351
+ msgid "Filter books"
352
+ msgstr "Boeken filteren"
353
+
354
+ #: ../lib/alexandria/ui/callbacks.rb:300
355
+ msgid "_Clear Results"
356
+ msgstr "Resultaten _wissen"
357
+
358
+ #: ../lib/alexandria/ui/callbacks.rb:300
359
+ msgid "Clear the search results"
360
+ msgstr "Zoekresultaten wissen"
361
+
362
+ #: ../lib/alexandria/ui/callbacks.rb:301
363
+ msgid "_Preferences"
364
+ msgstr "_Voorkeuren"
365
+
366
+ #: ../lib/alexandria/ui/callbacks.rb:301
367
+ msgid "Change Alexandria's settings"
368
+ msgstr "Alexandria's instellingen wijzigen"
369
+
370
+ #: ../lib/alexandria/ui/callbacks.rb:302
371
+ msgid "_View"
372
+ msgstr "_Beeld"
373
+
374
+ #: ../lib/alexandria/ui/callbacks.rb:303
375
+ msgid "Arran_ge Icons"
376
+ msgstr "Iconen _schikken"
377
+
378
+ #: ../lib/alexandria/ui/callbacks.rb:304
379
+ msgid "Display Online _Information"
380
+ msgstr "Online _informatie tonen"
381
+
382
+ #: ../lib/alexandria/ui/callbacks.rb:306
383
+ msgid "_Help"
384
+ msgstr "_Help"
385
+
386
+ #: ../lib/alexandria/ui/callbacks.rb:307
387
+ msgid "Submit _Bug Report"
388
+ msgstr "_Foutenrapportage opsturen"
389
+
390
+ #: ../lib/alexandria/ui/callbacks.rb:307
391
+ msgid "Submit a bug report to the developers"
392
+ msgstr "Stuur de ontwikkelaars een foutenrapportage"
393
+
394
+ #: ../lib/alexandria/ui/callbacks.rb:308
395
+ msgid "Contents"
396
+ msgstr "Inhoud"
397
+
398
+ #: ../lib/alexandria/ui/callbacks.rb:308
399
+ msgid "View Alexandria's manual"
400
+ msgstr "Alexandria's handleiding inzien"
401
+
402
+ #: ../lib/alexandria/ui/callbacks.rb:309
403
+ msgid "_About"
404
+ msgstr "_Over"
405
+
406
+ #: ../lib/alexandria/ui/callbacks.rb:309
407
+ msgid "Show information about Alexandria"
408
+ msgstr "Toon informatie over Alexandria"
409
+
410
+ #: ../lib/alexandria/ui/callbacks.rb:334
411
+ msgid "Side _Pane"
412
+ msgstr "Zij_paneel"
413
+
414
+ #: ../lib/alexandria/ui/callbacks.rb:336
415
+ msgid "_Toolbar"
416
+ msgstr "_Knoppenbalk"
417
+
418
+ #: ../lib/alexandria/ui/callbacks.rb:338
419
+ msgid "_Statusbar"
420
+ msgstr "_Statusbalk"
421
+
422
+ #: ../lib/alexandria/ui/callbacks.rb:340
423
+ msgid "Re_versed Order"
424
+ msgstr "_Omgekeerde volgorde"
425
+
426
+ #: ../lib/alexandria/ui/callbacks.rb:345
427
+ msgid "View as _Icons"
428
+ msgstr "Toon als _iconen"
429
+
430
+ #: ../lib/alexandria/ui/callbacks.rb:346
431
+ msgid "View as _List"
432
+ msgstr "Toon als _lijst"
433
+
434
+ #: ../lib/alexandria/ui/callbacks.rb:350
435
+ msgid "By _Title"
436
+ msgstr "Op _titel"
437
+
438
+ #: ../lib/alexandria/ui/callbacks.rb:351
439
+ msgid "By _Authors"
440
+ msgstr "Op _auteurs"
441
+
442
+ #: ../lib/alexandria/ui/callbacks.rb:352
443
+ msgid "By _ISBN"
444
+ msgstr "Op _ISBN"
445
+
446
+ #: ../lib/alexandria/ui/callbacks.rb:353
447
+ msgid "By _Publisher"
448
+ msgstr "Op _uitgever"
449
+
450
+ #: ../lib/alexandria/ui/callbacks.rb:354
451
+ msgid "By _Binding"
452
+ msgstr "Op _band"
453
+
454
+ #: ../lib/alexandria/ui/callbacks.rb:355
455
+ msgid "By _Rating"
456
+ msgstr "Op _waardering"
457
+
458
+ #: ../lib/alexandria/ui/callbacks.rb:359
459
+ msgid "At _%s"
460
+ msgstr "Bij _%s"
461
+
462
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:395
463
+ msgid "There was %d duplicate"
464
+ msgid_plural "There were %d duplicates"
465
+ msgstr[0] "Er was %d duplikaat"
466
+ msgstr[1] "Er waren %d duplikaten"
467
+
468
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:398
469
+ msgid "Couldn't add this book"
470
+ msgid_plural "Couldn't add these books"
471
+ msgstr[0] "Kon het boek niet toevoegen"
472
+ msgstr[1] "Kon deze boeken niet toevoegen"
473
+
474
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:477
475
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:555
476
+ msgid "Searching Provider '%s'..."
477
+ msgstr "Zoeken bij bronbibliotheek '%s'..."
478
+
479
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:478
480
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:556
481
+ msgid "Error while Searching Provider '%s'"
482
+ msgstr "Fout tijdens het zoeken bij bronbibliotheek '%s'"
483
+
484
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:479
485
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:557
486
+ msgid "Not Found at Provider '%s'"
487
+ msgstr "Niet gevonden bij bronbibliotheek '%s'"
488
+
489
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:480
490
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:558
491
+ msgid "Found at Provider '%s'"
492
+ msgstr "Gevonden bij bronbibliotheek '%s'"
493
+
494
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:610
495
+ msgid "Ready to use %s barcode scanner"
496
+ msgstr "Klaar om de streepjescodescanner '%s' te gebruiken"
497
+
498
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:625
499
+ #: ../data/alexandria/glade/acquire_dialog.glade:26
500
+ msgid "_Barcode Scanner Ready"
501
+ msgstr "_Streepjescodescanner klaar"
502
+
503
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:640
504
+ msgid "Click below to scan _barcodes"
505
+ msgstr "Klik hieronder om _streepjescodes te scannen"
506
+
507
+ #: ../lib/alexandria/ui/dialogs/bad_isbns_dialog.rb:24
508
+ msgid "There's a problem"
509
+ msgstr "Er is een probleem"
510
+
511
+ #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:30
512
+ msgid "New Smart Library"
513
+ msgstr "Nieuwe slimme bibliotheek"
514
+
515
+ #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:49
516
+ msgid "Smart Library"
517
+ msgstr "Slimme bibliotheek"
518
+
519
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:106
520
+ msgid "Preferences for %s"
521
+ msgstr "Voorkeuren voor %s"
522
+
523
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:131
524
+ msgid "New Provider"
525
+ msgstr "Nieuwe bronbibliotheek"
526
+
527
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:146
528
+ msgid "_Name:"
529
+ msgstr "_Naam:"
530
+
531
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:158
532
+ msgid "_Type:"
533
+ msgstr "_Type:"
534
+
535
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:316
536
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
537
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
538
+ msgid "Disable Provider"
539
+ msgstr "Schakel bronbibliotheek uit"
540
+
541
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
542
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
543
+ msgid "Enable Provider"
544
+ msgstr "Schakel bronbibliotheek in"
545
+
546
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:423
547
+ msgid "Are you sure you want to permanently delete the provider '%s'?"
548
+ msgstr "Weet u zeker dat u bron '%s' permanent wilt verwijderen?"
549
+
550
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:431
551
+ msgid ""
552
+ "If you continue, the provider and all of its preferences will be permanently "
553
+ "deleted."
554
+ msgstr ""
555
+ "Als u doorgaat worden de bronbibliotheek en alle bijbehorende voorkeuren "
556
+ "permanent verwijderd."
557
+
558
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:36
559
+ msgid "Error while importing"
560
+ msgstr "Fout tijdens het importeren"
561
+
562
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:39
563
+ msgid "_Continue"
564
+ msgstr "_Doorgaan"
565
+
566
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:64
567
+ msgid "Import a Library"
568
+ msgstr "Importeer een bibliotheek"
569
+
570
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:71
571
+ msgid "_Import"
572
+ msgstr "_Importeren"
573
+
574
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:188
575
+ msgid "Couldn't import the library"
576
+ msgstr "Kon de bibliotheek niet importeren"
577
+
578
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:189
579
+ msgid ""
580
+ "The format of the file you provided is unknown. Please retry with another "
581
+ "file."
582
+ msgstr ""
583
+ "Het bestandsformaat is onbekend. Gelieve opnieuw te proberen met een ander "
584
+ "bestand."
585
+
586
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb:30
587
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:63
588
+ msgid "Properties for '%s'"
589
+ msgstr "Eigenschappen voor %s"
590
+
591
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:83
592
+ msgid "Empty or conflictive condition"
593
+ msgstr "Lege of conflicterende voorwaarde"
594
+
595
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:86
596
+ msgid "_Save However"
597
+ msgstr "Toch _opslaan"
598
+
599
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:87
600
+ msgid ""
601
+ "This smart library contains one or more conditions which are empty or "
602
+ "conflict with each other. This is likely to result in never matching a book. "
603
+ "Are you sure you want to save this library?"
604
+ msgstr ""
605
+ "Deze slimme bibliotheek bevat een of meer lege of conflicterende "
606
+ "voorwaarden. Er zal waarschijnlijk nooit een boek aan voldoen. Weet u zeker "
607
+ "dat u deze bibliotheek op wilt slaan?"
608
+
609
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:106
610
+ msgid "Match"
611
+ msgstr "Voldoet aan"
612
+
613
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
614
+ msgid "all"
615
+ msgstr "alle"
616
+
617
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
618
+ msgid "any"
619
+ msgstr "een"
620
+
621
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:119
622
+ msgid "of the following rules:"
623
+ msgstr "van de volgende regels:"
624
+
625
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:127
626
+ msgid "Match the following rule:"
627
+ msgstr "Voldoen aan de volgende regel:"
628
+
629
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:114
630
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:123
631
+ msgid "Couldn't modify the book"
632
+ msgstr "Kon het boek niet aanpassen"
633
+
634
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:115
635
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:88
636
+ msgid "The EAN/ISBN you provided is already used in this library."
637
+ msgstr "Het EAN/ISBN dat u invoerde wordt al gebruikt in deze bibliotheek."
638
+
639
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:124
640
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:94
641
+ msgid ""
642
+ "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
643
+ "correcty, and try again."
644
+ msgstr ""
645
+ "Kon het EAN/ISBN dat u invoerde niet valideren. Kijk of het correct "
646
+ "geschreven is en probeer het nogmaals."
647
+
648
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:65
649
+ msgid "Properties"
650
+ msgstr "Eigenschappen"
651
+
652
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:71
653
+ msgid "Author"
654
+ msgstr "Auteur"
655
+
656
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:123
657
+ msgid "Select a cover image"
658
+ msgstr "Selecteer een afbeelding voor de voorkant"
659
+
660
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:127
661
+ msgid "No Cover"
662
+ msgstr "Geen kaft"
663
+
664
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:186
665
+ msgid "%d day"
666
+ msgid_plural "%d days"
667
+ msgstr[0] "%d dag"
668
+ msgstr[1] "%d dagen"
669
+
670
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:58
671
+ msgid "Adding '%s'"
672
+ msgstr "'%s' wordt toegevoegd"
673
+
674
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:60
675
+ #: ../data/alexandria/glade/new_book_dialog.glade:8
676
+ msgid "Adding a Book"
677
+ msgstr "Een boek toevoegen"
678
+
679
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:81
680
+ msgid "A title must be provided."
681
+ msgstr "Er moet een titel opgegeven worden."
682
+
683
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:102
684
+ msgid "A publisher must be provided."
685
+ msgstr "Er moet een uitgever opgegeven worden."
686
+
687
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:109
688
+ msgid "A binding must be provided."
689
+ msgstr "Er moet een band opgegeven worden."
690
+
691
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:115
692
+ msgid "At least one author must be provided."
693
+ msgstr "Er moet minstens één auteur opgegeven worden."
694
+
695
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:142
696
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:523
697
+ msgid "Couldn't add the book"
698
+ msgstr "Kon het boek niet toevoegen"
699
+
700
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:25
701
+ msgid "File already exists"
702
+ msgstr "Bestand bestaat reeds"
703
+
704
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:28
705
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:30
706
+ msgid "_Replace"
707
+ msgstr "_Vervangen"
708
+
709
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:29
710
+ msgid ""
711
+ "A file named '%s' already exists. Do you want to replace it with the one "
712
+ "you are generating?"
713
+ msgstr ""
714
+ "Een bestand genaamd '%s' bestaat reeds. Wilt u het vervangen door datgene "
715
+ "dat u nu aanmaakt?"
716
+
717
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:52
718
+ msgid "Export '%s'"
719
+ msgstr "Export '%s'"
720
+
721
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:58
722
+ msgid "_Export"
723
+ msgstr "_Exporteren"
724
+
725
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:77
726
+ msgid "_Theme:"
727
+ msgstr "_Thema:"
728
+
729
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:87
730
+ msgid "directory"
731
+ msgstr "map"
732
+
733
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:100
734
+ msgid "Export for_mat:"
735
+ msgstr "Export for_maat:"
736
+
737
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:155
738
+ msgid ""
739
+ "The target, named '%s', is a regular file. A directory is needed for this "
740
+ "operation. Please select a directory and try again."
741
+ msgstr ""
742
+ "Het doel, genaamd '%s', is een bestand. Voor deze bewerking is een map "
743
+ "nodig. Gelieve een map te selecteren en opnieuw te proberen."
744
+
745
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:159
746
+ msgid "Not a directory"
747
+ msgstr "Geen map"
748
+
749
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:32
750
+ msgid "Invalid ISBN '%s'"
751
+ msgstr "Ongeldig ISBN '%s'"
752
+
753
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:35
754
+ msgid "_Keep"
755
+ msgstr "_Bewaar"
756
+
757
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:36
758
+ msgid ""
759
+ "The book titled '%s' has an invalid ISBN, but still exists in the providers "
760
+ "libraries. Do you want to keep the book but change the ISBN or cancel the "
761
+ "add?"
762
+ msgstr ""
763
+ "Het boek getiteld '%s' heeft een ongeldig ISBN, maar bestaat toch bij de "
764
+ "bronbibliotheken. Wilt u het boek bewaren en het ISBN veranderen, of wilt u "
765
+ "het toevoegen annuleren?"
766
+
767
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:182
768
+ msgid "A problem occurred while downloading images"
769
+ msgstr "Er trad een probleem op bij het downloaden van de afbeeldingen"
770
+
771
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:304
772
+ msgid "Unable to find matches for your search"
773
+ msgstr "Kon geen resultaten vinden voor uw zoekcriteria"
774
+
775
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:310
776
+ msgid "%s, by %s"
777
+ msgstr "%s, door %s"
778
+
779
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:383
780
+ msgid ""
781
+ "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
782
+ "correctly, and try again."
783
+ msgstr ""
784
+ "Kon het EAN/ISBN dat u invoerde niet valideren. Controleer of het goed "
785
+ "geschreven is en probeer het nogmaals."
786
+
787
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:630
788
+ msgid "'%s' already exists in '%s' (titled '%s')."
789
+ msgstr "'%s' bestaat al in '%s' (getiteld '%s')."
790
+
791
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:26
792
+ msgid "The book '%s' already exists in '%s'. Would you like to replace it?"
793
+ msgstr "Het boek '%s' bestaat reeds in '%s'. Wilt u het vervangen?"
794
+
795
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:29
796
+ msgid "_Skip"
797
+ msgstr "Over_slaan"
798
+
799
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:31
800
+ msgid "If you replace the existing book, its contents will be overwritten."
801
+ msgstr "Als u het bestaande boek vervangt zal de inhoud overschreven worden."
802
+
803
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:50
804
+ msgid "Are you sure you want to delete '%s'?"
805
+ msgstr "Weet u zeker dat u '%s' wilt verwijderen?"
806
+
807
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:58
808
+ msgid "If you continue, %d book will be deleted."
809
+ msgid_plural "If you continue, %d books will be deleted."
810
+ msgstr[0] "Als u doorgaat zal %d boek worden verwijderd."
811
+ msgstr[1] "Als u doorgaat zullen %d boeken worden verwijderd."
812
+
813
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:63
814
+ msgid "Are you sure you want to delete '%s' from '%s'?"
815
+ msgstr "Weet u zeker dat u '%s' uit '%s' wilt verwijderen?"
816
+
817
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:66
818
+ msgid "Are you sure you want to delete the selected books from '%s'?"
819
+ msgstr "Weet u zeker dat u de geselecteerde boeken uit '%s' wilt verwijderen?"
820
+
821
+ #: ../lib/alexandria/ui/sidepane.rb:49
822
+ msgid "Invalid library name '%s'"
823
+ msgstr "Ongeldige bibliotheeknaam '%s'"
824
+
825
+ #: ../lib/alexandria/ui/sidepane.rb:50
826
+ msgid "The name provided contains the disallowed character <b>%s</b> "
827
+ msgstr "De opgegeven naam bevat het ongeldige teken '<i>%s</i>'."
828
+
829
+ #: ../lib/alexandria/ui/sidepane.rb:53
830
+ msgid "Invalid library name"
831
+ msgstr "Ongeldige bibliotheeknaam"
832
+
833
+ #: ../lib/alexandria/ui/sidepane.rb:54
834
+ msgid "The name provided contains invalid characters."
835
+ msgstr "De opgegeven naam bevat ongeldige tekens."
836
+
837
+ #: ../lib/alexandria/ui/sidepane.rb:60
838
+ msgid "The library name can not be empty"
839
+ msgstr "De bibliotheeknaam mag niet leeg zijn"
840
+
841
+ #: ../lib/alexandria/ui/sidepane.rb:65
842
+ msgid "The library can not be renamed"
843
+ msgstr "De bibliotheek kan niet hernoemd worden"
844
+
845
+ #: ../lib/alexandria/ui/sidepane.rb:66
846
+ msgid "There is already a library named '%s'. Please choose a different name."
847
+ msgstr ""
848
+ "Een bibliotheek met de naam '%s' bestaat reeds. Gelieve een andere naam te "
849
+ "kiezen."
850
+
851
+ #: ../lib/alexandria/ui/sidepane.rb:92
852
+ msgid "Library"
853
+ msgstr "Bibliotheek"
854
+
855
+ #: ../lib/alexandria/ui/libraries_combo.rb:44
856
+ msgid "New Library"
857
+ msgstr "Nieuwe bibliotheek"
858
+
859
+ #: ../lib/alexandria/ui/listview.rb:52 ../lib/alexandria/smart_library.rb:349
860
+ msgid "Title"
861
+ msgstr "Titel"
862
+
863
+ #: ../lib/alexandria/ui/listview.rb:105 ../lib/alexandria/smart_library.rb:351
864
+ msgid "Authors"
865
+ msgstr "Auteurs"
866
+
867
+ #: ../lib/alexandria/ui/listview.rb:106 ../lib/alexandria/smart_library.rb:350
868
+ msgid "ISBN"
869
+ msgstr "ISBN"
870
+
871
+ #: ../lib/alexandria/ui/listview.rb:107 ../lib/alexandria/smart_library.rb:352
872
+ msgid "Publisher"
873
+ msgstr "Uitgever"
874
+
875
+ #: ../lib/alexandria/ui/listview.rb:108 ../lib/alexandria/smart_library.rb:353
876
+ msgid "Publish Year"
877
+ msgstr "Jaar van uitgifte"
878
+
879
+ #: ../lib/alexandria/ui/listview.rb:109 ../lib/alexandria/smart_library.rb:354
880
+ msgid "Binding"
881
+ msgstr "Band"
882
+
883
+ #: ../lib/alexandria/ui/listview.rb:110
884
+ #, fuzzy
885
+ msgid "Loaned To"
886
+ msgstr "Uitgeleend"
887
+
888
+ #: ../lib/alexandria/ui/listview.rb:113 ../lib/alexandria/smart_library.rb:104
889
+ #: ../lib/alexandria/smart_library.rb:361
890
+ msgid "Read"
891
+ msgstr "Gelezen"
892
+
893
+ #: ../lib/alexandria/ui/listview.rb:114 ../lib/alexandria/smart_library.rb:363
894
+ msgid "Own"
895
+ msgstr "In bezit"
896
+
897
+ #: ../lib/alexandria/ui/listview.rb:115 ../lib/alexandria/smart_library.rb:364
898
+ msgid "Want"
899
+ msgstr "Gewenst"
900
+
901
+ #: ../lib/alexandria/ui/listview.rb:141 ../lib/alexandria/smart_library.rb:357
902
+ #: ../data/alexandria/glade/preferences_dialog.glade:421
903
+ msgid "Tags"
904
+ msgstr "Trefwoorden"
905
+
906
+ #: ../lib/alexandria/ui/listview.rb:166 ../lib/alexandria/smart_library.rb:355
907
+ msgid "Rating"
908
+ msgstr "Waardering"
909
+
910
+ #: ../lib/alexandria/ui/init.rb:83
911
+ msgid "Unable to launch the help browser"
912
+ msgstr "Kon de helpbrowser niet starten"
913
+
914
+ #: ../lib/alexandria/ui/init.rb:84
915
+ msgid ""
916
+ "Could not display help for Alexandria. There was an error launching the "
917
+ "system help browser."
918
+ msgstr ""
919
+ "Kon de help voor Alexandria niet tonen omdat er een fout optrad bij het "
920
+ "starten van de systeemhelpbrowser."
921
+
922
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:37
923
+ msgid "Locale"
924
+ msgstr "Taal"
925
+
926
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:38
927
+ msgid "Access key ID"
928
+ msgstr "Toegangssleutel ID"
929
+
930
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:39
931
+ msgid "Secret access key"
932
+ msgstr "Geheime toegangssleutel"
933
+
934
+ #: ../lib/alexandria/book_providers/mcu.rb:39
935
+ msgid "Spanish Culture Ministry"
936
+ msgstr "Spaans Ministerie van Cultuur"
937
+
938
+ #: ../lib/alexandria/book_providers/z3950.rb:34
939
+ msgid "Hostname"
940
+ msgstr "Servernaam"
941
+
942
+ #: ../lib/alexandria/book_providers/z3950.rb:35
943
+ msgid "Port"
944
+ msgstr "Poort"
945
+
946
+ #: ../lib/alexandria/book_providers/z3950.rb:36
947
+ msgid "Database"
948
+ msgstr "Database"
949
+
950
+ #: ../lib/alexandria/book_providers/z3950.rb:37
951
+ msgid "Record syntax"
952
+ msgstr "Record syntax"
953
+
954
+ #: ../lib/alexandria/book_providers/z3950.rb:38
955
+ msgid "Username"
956
+ msgstr "Gebruikersnaam"
957
+
958
+ #: ../lib/alexandria/book_providers/z3950.rb:39
959
+ msgid "Password"
960
+ msgstr "Wachtwoord"
961
+
962
+ #: ../lib/alexandria/book_providers/z3950.rb:40
963
+ msgid "Charset encoding"
964
+ msgstr "Codering karakterset"
965
+
966
+ #: ../lib/alexandria/book_providers/z3950.rb:221
967
+ msgid "Library of Congress (Usa)"
968
+ msgstr "Library of Congress, V.S."
969
+
970
+ #: ../lib/alexandria/book_providers/z3950.rb:255
971
+ msgid "British Library"
972
+ msgstr "British Library, V.K."
973
+
974
+ #: ../lib/alexandria/export_library.rb:109
975
+ msgid "Archived ONIX XML"
976
+ msgstr "Gearchiveerd ONIX XML"
977
+
978
+ #: ../lib/alexandria/export_library.rb:111
979
+ msgid "Archived Tellico XML"
980
+ msgstr "Gearchiveerd Tellico XML"
981
+
982
+ #: ../lib/alexandria/export_library.rb:113
983
+ msgid "BibTeX"
984
+ msgstr "BibTeX"
985
+
986
+ #: ../lib/alexandria/export_library.rb:114
987
+ msgid "CSV list"
988
+ msgstr "CSV lijst"
989
+
990
+ #: ../lib/alexandria/export_library.rb:115
991
+ msgid "ISBN List"
992
+ msgstr "ISBN-lijst"
993
+
994
+ #: ../lib/alexandria/export_library.rb:116
995
+ msgid "iPod Notes"
996
+ msgstr "iPod notities"
997
+
998
+ #: ../lib/alexandria/export_library.rb:117
999
+ msgid "HTML Web Page"
1000
+ msgstr "HTML webpagina"
1001
+
1002
+ #: ../lib/alexandria/smart_library.rb:92
1003
+ msgid "Favorite"
1004
+ msgstr "Favoriet"
1005
+
1006
+ #: ../lib/alexandria/smart_library.rb:98
1007
+ msgid "Loaned"
1008
+ msgstr "Uitgeleend"
1009
+
1010
+ #: ../lib/alexandria/smart_library.rb:110
1011
+ msgid "Owned"
1012
+ msgstr "In bezit"
1013
+
1014
+ #: ../lib/alexandria/smart_library.rb:119
1015
+ msgid "Wishlist"
1016
+ msgstr "Verlanglijst"
1017
+
1018
+ #: ../lib/alexandria/smart_library.rb:356
1019
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1225
1020
+ msgid "Notes"
1021
+ msgstr "Notities"
1022
+
1023
+ #: ../lib/alexandria/smart_library.rb:358
1024
+ msgid "Loaning State"
1025
+ msgstr "Uitleenstatus"
1026
+
1027
+ #: ../lib/alexandria/smart_library.rb:359
1028
+ msgid "Loaning Date"
1029
+ msgstr "Uitleendatum"
1030
+
1031
+ #: ../lib/alexandria/smart_library.rb:360
1032
+ msgid "Loaning Person"
1033
+ msgstr "Uitgeleend aan"
1034
+
1035
+ #: ../lib/alexandria/smart_library.rb:362
1036
+ msgid "Date Read"
1037
+ msgstr "Leesdatum"
1038
+
1039
+ #: ../lib/alexandria/smart_library.rb:371
1040
+ msgid "days"
1041
+ msgstr "dagen"
1042
+
1043
+ #: ../lib/alexandria/smart_library.rb:382
1044
+ msgid "is set"
1045
+ msgstr "is ingesteld"
1046
+
1047
+ #: ../lib/alexandria/smart_library.rb:386
1048
+ msgid "is not set"
1049
+ msgstr "is niet ingesteld"
1050
+
1051
+ #: ../lib/alexandria/smart_library.rb:390
1052
+ msgid "is"
1053
+ msgstr "is"
1054
+
1055
+ #: ../lib/alexandria/smart_library.rb:394
1056
+ msgid "is not"
1057
+ msgstr "is niet"
1058
+
1059
+ #: ../lib/alexandria/smart_library.rb:398
1060
+ msgid "contains"
1061
+ msgstr "bevat"
1062
+
1063
+ #: ../lib/alexandria/smart_library.rb:402
1064
+ msgid "does not contain"
1065
+ msgstr "bevat niet"
1066
+
1067
+ #: ../lib/alexandria/smart_library.rb:406
1068
+ msgid "starts with"
1069
+ msgstr "begint met"
1070
+
1071
+ #: ../lib/alexandria/smart_library.rb:410
1072
+ msgid "ends with"
1073
+ msgstr "eindigt met"
1074
+
1075
+ #: ../lib/alexandria/smart_library.rb:414
1076
+ msgid "is greater than"
1077
+ msgstr "is groter dan"
1078
+
1079
+ #: ../lib/alexandria/smart_library.rb:418
1080
+ msgid "is less than"
1081
+ msgstr "is kleiner dan"
1082
+
1083
+ #: ../lib/alexandria/smart_library.rb:422
1084
+ msgid "is after"
1085
+ msgstr "komt na"
1086
+
1087
+ #: ../lib/alexandria/smart_library.rb:426
1088
+ msgid "is before"
1089
+ msgstr "komt voor"
1090
+
1091
+ #: ../lib/alexandria/smart_library.rb:430
1092
+ msgid "is in last"
1093
+ msgstr "komt in de laatste"
1094
+
1095
+ #: ../lib/alexandria/smart_library.rb:450
1096
+ msgid "is not in last"
1097
+ msgstr "komt niet in de laatste"
1098
+
1099
+ #: ../lib/alexandria/book_providers.rb:87
1100
+ msgid "Couldn't reach the provider '%s': timeout expired."
1101
+ msgstr "Kon bronbibliotheek '%s' niet bereiken: timeout verlopen."
1102
+
1103
+ #: ../lib/alexandria/book_providers.rb:91
1104
+ msgid "Couldn't reach the provider '%s': socket error (%s)."
1105
+ msgstr "Kon bronbibliotheek '%s' niet bereiken: socket fout (%s)."
1106
+
1107
+ #: ../lib/alexandria/book_providers.rb:95
1108
+ #: ../lib/alexandria/book_providers.rb:100
1109
+ msgid ""
1110
+ "No results were found. Make sure your search criterion is spelled "
1111
+ "correctly, and try again."
1112
+ msgstr ""
1113
+ "Geen resultaten gevonden. Zorg ervoor dat de zoekcriteria correct gespeld "
1114
+ "zijn en probeer het nogmaals."
1115
+
1116
+ #: ../lib/alexandria/book_providers.rb:105
1117
+ msgid "Too many results for that search."
1118
+ msgstr "Teveel resultaten voor deze zoekopdracht."
1119
+
1120
+ #: ../lib/alexandria/book_providers.rb:108
1121
+ msgid "Invalid search type."
1122
+ msgstr "Ongeldig zoektype."
1123
+
1124
+ #: ../lib/alexandria/book_providers.rb:203
1125
+ msgid "Enabled"
1126
+ msgstr "Geactiveerd"
1127
+
1128
+ #: ../data/alexandria/glade/acquire_dialog.glade:9
1129
+ msgid "Acquire from Scanner"
1130
+ msgstr "Inlezen d.m.v. scanner"
1131
+
1132
+ #: ../data/alexandria/glade/acquire_dialog.glade:87
1133
+ #: ../data/alexandria/glade/new_book_dialog.glade:90
1134
+ msgid "Save _in:"
1135
+ msgstr "Opslaan _in:"
1136
+
1137
+ #: ../data/alexandria/glade/main_app.glade:17
1138
+ msgid "Main Window"
1139
+ msgstr "Hoofdvenster"
1140
+
1141
+ #: ../data/alexandria/glade/main_app.glade:32
1142
+ msgid "Libraries listing."
1143
+ msgstr "Lijst met bibliotheken"
1144
+
1145
+ #: ../data/alexandria/glade/main_app.glade:46
1146
+ msgid "_Libraries:"
1147
+ msgstr "_Bibliotheken:"
1148
+
1149
+ #: ../data/alexandria/glade/main_app.glade:111
1150
+ msgid "Book listing."
1151
+ msgstr "Boekenlijst."
1152
+
1153
+ #: ../data/alexandria/glade/main_app.glade:194
1154
+ msgid "Status messages."
1155
+ msgstr "Statusmeldingen."
1156
+
1157
+ #: ../data/alexandria/glade/new_book_dialog.glade:31
1158
+ msgid "_Keep Dialog Open after Adding Book"
1159
+ msgstr "_Houd dialoogvenster open na het toevoegen van een boek"
1160
+
1161
+ #: ../data/alexandria/glade/new_book_dialog.glade:114
1162
+ msgid ""
1163
+ "by title\n"
1164
+ "by authors\n"
1165
+ "by keyword"
1166
+ msgstr ""
1167
+ "op titel\n"
1168
+ "op auteurs\n"
1169
+ "op sleutelwoord"
1170
+
1171
+ #: ../data/alexandria/glade/new_book_dialog.glade:201
1172
+ msgid "_Search:"
1173
+ msgstr "_Zoeken:"
1174
+
1175
+ #: ../data/alexandria/glade/new_book_dialog.glade:219
1176
+ #: ../data/alexandria/glade/book_properties_dialog.glade:187
1177
+ msgid "_ISBN:"
1178
+ msgstr "_ISBN:"
1179
+
1180
+ #: ../data/alexandria/glade/book_properties_dialog.glade:86
1181
+ msgid "_Title:"
1182
+ msgstr "_Titel:"
1183
+
1184
+ #: ../data/alexandria/glade/book_properties_dialog.glade:115
1185
+ msgid "_Publisher:"
1186
+ msgstr "_Uitgever:"
1187
+
1188
+ #: ../data/alexandria/glade/book_properties_dialog.glade:279
1189
+ msgid "Add an author"
1190
+ msgstr "Een auteur toevoegen"
1191
+
1192
+ #: ../data/alexandria/glade/book_properties_dialog.glade:307
1193
+ msgid "Remove an author"
1194
+ msgstr "Een auteur verwijderen"
1195
+
1196
+ #: ../data/alexandria/glade/book_properties_dialog.glade:351
1197
+ msgid "_Authors:"
1198
+ msgstr "_Auteurs:"
1199
+
1200
+ #: ../data/alexandria/glade/book_properties_dialog.glade:380
1201
+ msgid "_Binding:"
1202
+ msgstr "_Band:"
1203
+
1204
+ #: ../data/alexandria/glade/book_properties_dialog.glade:430
1205
+ msgid "Publish _year:"
1206
+ msgstr "_Jaar van uitgifte:"
1207
+
1208
+ #: ../data/alexandria/glade/book_properties_dialog.glade:480
1209
+ msgid "Tags:"
1210
+ msgstr "Trefwoorden:"
1211
+
1212
+ #: ../data/alexandria/glade/book_properties_dialog.glade:553
1213
+ msgid "_Cover:"
1214
+ msgstr "_Kaft:"
1215
+
1216
+ #: ../data/alexandria/glade/book_properties_dialog.glade:579
1217
+ msgid "Click to pick a cover"
1218
+ msgstr "Klik om een kaft te selecteren"
1219
+
1220
+ #: ../data/alexandria/glade/book_properties_dialog.glade:620
1221
+ msgid "Own it?"
1222
+ msgstr "In bezit?"
1223
+
1224
+ #: ../data/alexandria/glade/book_properties_dialog.glade:646
1225
+ msgid "Read it?"
1226
+ msgstr "Gelezen?"
1227
+
1228
+ #: ../data/alexandria/glade/book_properties_dialog.glade:695
1229
+ msgid "Want it?"
1230
+ msgstr "Gewenst?"
1231
+
1232
+ #: ../data/alexandria/glade/book_properties_dialog.glade:721
1233
+ msgid "Click on the stars to rate the book"
1234
+ msgstr "Klik op de sterren om het boek van een waardering te voorzien"
1235
+
1236
+ #: ../data/alexandria/glade/book_properties_dialog.glade:927
1237
+ msgid "Rating:"
1238
+ msgstr "Waardering:"
1239
+
1240
+ #: ../data/alexandria/glade/book_properties_dialog.glade:967
1241
+ msgid "General"
1242
+ msgstr "Algemeen"
1243
+
1244
+ #: ../data/alexandria/glade/book_properties_dialog.glade:998
1245
+ msgid "This book is _loaned"
1246
+ msgstr "Dit boek is _uitgeleend"
1247
+
1248
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1076
1249
+ msgid "_To:"
1250
+ msgstr "_Aan:"
1251
+
1252
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1106
1253
+ msgid "_Since:"
1254
+ msgstr "_Sinds:"
1255
+
1256
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1166
1257
+ msgid "Loaning"
1258
+ msgstr "Uitlenen"
1259
+
1260
+ #: ../data/alexandria/glade/preferences_dialog.glade:7
1261
+ msgid "Preferences"
1262
+ msgstr "Voorkeuren"
1263
+
1264
+ #: ../data/alexandria/glade/preferences_dialog.glade:27
1265
+ msgid "<b>Book Data Providers</b>"
1266
+ msgstr "<b>_Bronbibliotheek van boekgegevens</b>"
1267
+
1268
+ #: ../data/alexandria/glade/preferences_dialog.glade:99
1269
+ msgid "_Setup"
1270
+ msgstr "_Instellingen"
1271
+
1272
+ #: ../data/alexandria/glade/preferences_dialog.glade:198
1273
+ msgid ""
1274
+ "Providers are libraries that supply information about books. Some of them "
1275
+ "can be configured to get better results. You can also customize the order "
1276
+ "in which they are queried."
1277
+ msgstr ""
1278
+ "Bronbibliotheken zijn bibliotheken die informatie over boeken verschaffen. "
1279
+ "Sommigen kunnen geconfigureerd worden om betere resultaten te geven. U kunt "
1280
+ "ook de volgorde waarin ze geraadpleegd worden aanpassen."
1281
+
1282
+ #: ../data/alexandria/glade/preferences_dialog.glade:209
1283
+ msgid "Custom _Z39.50 Providers"
1284
+ msgstr "Eigen _Z39.50 aanbieders"
1285
+
1286
+ #: ../data/alexandria/glade/preferences_dialog.glade:213
1287
+ msgid ""
1288
+ "Add and remove your own Z39.50 providers.\n"
1289
+ "Requires the Ruby/ZOOM software library."
1290
+ msgstr ""
1291
+
1292
+ #: ../data/alexandria/glade/preferences_dialog.glade:235
1293
+ msgid "_Providers"
1294
+ msgstr "Bronbibliotheken"
1295
+
1296
+ #: ../data/alexandria/glade/preferences_dialog.glade:252
1297
+ msgid "<b>Visible Columns</b>"
1298
+ msgstr "<b>Zichtbare Kolommen</b>"
1299
+
1300
+ #: ../data/alexandria/glade/preferences_dialog.glade:270
1301
+ msgid "_Authors"
1302
+ msgstr "_Auteurs"
1303
+
1304
+ #: ../data/alexandria/glade/preferences_dialog.glade:285
1305
+ msgid "_ISBN"
1306
+ msgstr "_ISBN"
1307
+
1308
+ #: ../data/alexandria/glade/preferences_dialog.glade:302
1309
+ msgid "_Publisher"
1310
+ msgstr "_Uitgever"
1311
+
1312
+ #: ../data/alexandria/glade/preferences_dialog.glade:319
1313
+ msgid "_Rating"
1314
+ msgstr "_Waardering"
1315
+
1316
+ #: ../data/alexandria/glade/preferences_dialog.glade:336
1317
+ msgid "_Binding"
1318
+ msgstr "_Band"
1319
+
1320
+ #: ../data/alexandria/glade/preferences_dialog.glade:353
1321
+ msgid "Publish _year"
1322
+ msgstr "_Jaar van uitgifte"
1323
+
1324
+ #: ../data/alexandria/glade/preferences_dialog.glade:370
1325
+ msgid "Read?"
1326
+ msgstr "Gelezen?"
1327
+
1328
+ #: ../data/alexandria/glade/preferences_dialog.glade:387
1329
+ msgid "Own?"
1330
+ msgstr "In bezit?"
1331
+
1332
+ #: ../data/alexandria/glade/preferences_dialog.glade:404
1333
+ msgid "Want?"
1334
+ msgstr "Gewenst?"
1335
+
1336
+ #: ../data/alexandria/glade/preferences_dialog.glade:438
1337
+ #, fuzzy
1338
+ msgid "Loaned to"
1339
+ msgstr "Uitgeleend"
1340
+
1341
+ #: ../data/alexandria/glade/preferences_dialog.glade:465
1342
+ msgid "_List View"
1343
+ msgstr "Toon _Lijst"
1344
+
1345
+ #: ../alexandria.desktop.in.h:1
1346
+ msgid "Alexandria Book Collection Manager"
1347
+ msgstr "Alexandria Boekcollectiebeheerder"
1348
+
1349
+ #: ../alexandria.desktop.in.h:2
1350
+ msgid "Book Collection Manager"
1351
+ msgstr "Boekcollectiebeheerder"
1352
+
1353
+ #: ../alexandria.desktop.in.h:3
1354
+ msgid "Manage your book collection"
1355
+ msgstr "Beheer uw boekcollectie"
1356
+
1357
+ #~ msgid "Language"
1358
+ #~ msgstr "Taal"
1359
+
1360
+ #~ msgid "_Advanced Settings"
1361
+ #~ msgstr "_Gevorderde Instellingen"
1362
+
1363
+ #~ msgid "Development token"
1364
+ #~ msgstr "Ontwikkelaarssleutel"
1365
+
1366
+ #~ msgid "Couldn't add these books"
1367
+ #~ msgstr "Kon deze boeken niet toevoegen"
1368
+
1369
+ #~ msgid "Associate ID"
1370
+ #~ msgstr "Geassocieerd ID"
1371
+
1372
+ #~ msgid ""
1373
+ #~ "These books do not conform to the ISBN-13 standard. We will attempt to "
1374
+ #~ "replace them from the book providers. Otherwise, we will turn them into "
1375
+ #~ "manual entries.\n"
1376
+ #~ msgstr ""
1377
+ #~ "Deze boeken voldoen niet aan de ISBN-13 standaard. Er zal geprobeerd "
1378
+ #~ "worden om ze te vervangen door gebruik te maken van de bronnen. Als dat "
1379
+ #~ "niet lukt converteren we ze naar handmatige invoer.\n"
1380
+
1381
+ #~ msgid "_Refresh"
1382
+ #~ msgstr "_Verversen"
1383
+
1384
+ #~ msgid "Reload the selected library"
1385
+ #~ msgstr "De geselecteerde bibliotheek opnieuw laden"
1386
+
1387
+ #~ msgid "n/a"
1388
+ #~ msgstr "n.v.t."
1389
+
1390
+ #~ msgid "Library _name:"
1391
+ #~ msgstr "Bibliotheek_naam:"
1392
+
1393
+ #~ msgid "Are you sure you want to permanently delete '%s' which has %d book?"
1394
+ #~ msgid_plural ""
1395
+ #~ "Are you sure you want to permanently delete '%s' which has %d books?"
1396
+ #~ msgstr[0] ""
1397
+ #~ "Weet u zeker dat u '%s', met %d boek, permanent wilt verwijderen?"
1398
+ #~ msgstr[1] ""
1399
+ #~ "Weet u zeker dat u '%s', met %d boeken, permanent wilt verwijderen?"
1400
+
1401
+ #~ msgid "_New"
1402
+ #~ msgstr "_Nieuw"
1403
+
1404
+ #~ msgid "Couldn't validate the scanner input"
1405
+ #~ msgstr "Kon de scannerinput niet valideren"