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,1376 @@
1
+ # translation of es.po to
2
+ # Alexandria en Español.
3
+ # Copyright (C) 2004-2007 Miguel Ángel García <miguelangel.garcia@gmail.com>
4
+ # This file is distributed under the same license as Alexandria.
5
+ #
6
+ # Special thanks to Javier Fernandez-Sanguino for his Spanish translation patchs
7
+ #
8
+ msgid ""
9
+ msgstr ""
10
+ "Project-Id-Version: alexandria 0.6.4\n"
11
+ "Report-Msgid-Bugs-To: \n"
12
+ "POT-Creation-Date: 2010-08-13 04:41+0100\n"
13
+ "PO-Revision-Date: 2009-12-16 10:33+0100\n"
14
+ "Last-Translator: Miguel Ángel García <miguelangel.garcia@gmail.com>\n"
15
+ "Language-Team: es <alexandria-i18n-list@rubyforge.org>\n"
16
+ "MIME-Version: 1.0\n"
17
+ "Content-Type: text/plain; charset=UTF-8\n"
18
+ "Content-Transfer-Encoding: 8bit\n"
19
+ "Plural-Forms: nplurals=2; plural=n != 1;\n"
20
+ "X-Generator: KBabel 1.11.4\n"
21
+
22
+ #: ../lib/alexandria/import_library.rb:30
23
+ msgid "Autodetect"
24
+ msgstr "Autodetectar"
25
+
26
+ #: ../lib/alexandria/import_library.rb:31
27
+ msgid "Archived Tellico XML (*.bc, *.tc)"
28
+ msgstr "Archivo Tellico XML (*.bc *.tc)"
29
+
30
+ #: ../lib/alexandria/import_library.rb:33
31
+ msgid "ISBN List (*.txt)"
32
+ msgstr "Lista ISBN (*.txt)"
33
+
34
+ #: ../lib/alexandria/import_library.rb:35
35
+ msgid "GoodReads CSV"
36
+ msgstr "CVS GoodReads"
37
+
38
+ #: ../lib/alexandria/models/library.rb:56
39
+ msgid "Untitled"
40
+ msgstr "Sin Título"
41
+
42
+ #: ../lib/alexandria/models/library.rb:245
43
+ msgid "My Library"
44
+ msgstr "Mi biblioteca"
45
+
46
+ #: ../lib/alexandria/about.rb:24
47
+ msgid "A program to help you manage your book collection."
48
+ msgstr "Un programa para ayudarle a organizar su colección de libros"
49
+
50
+ #: ../lib/alexandria/ui/ui_manager.rb:135
51
+ msgid "Type here the search criterion"
52
+ msgstr "Escriba aquí el criterio de búsqueda"
53
+
54
+ #: ../lib/alexandria/ui/ui_manager.rb:148
55
+ msgid "Match everything"
56
+ msgstr "Todas las correspondencias"
57
+
58
+ #: ../lib/alexandria/ui/ui_manager.rb:150
59
+ msgid "Title contains"
60
+ msgstr "El título contiene"
61
+
62
+ #: ../lib/alexandria/ui/ui_manager.rb:151
63
+ msgid "Authors contain"
64
+ msgstr "Los autores contienen"
65
+
66
+ #: ../lib/alexandria/ui/ui_manager.rb:152
67
+ msgid "ISBN contains"
68
+ msgstr "El ISBN contiene"
69
+
70
+ #: ../lib/alexandria/ui/ui_manager.rb:153
71
+ msgid "Publisher contains"
72
+ msgstr "El editor contiene"
73
+
74
+ #: ../lib/alexandria/ui/ui_manager.rb:154
75
+ msgid "Notes contain"
76
+ msgstr "Las notas contienen"
77
+
78
+ #: ../lib/alexandria/ui/ui_manager.rb:155
79
+ msgid "Tags contain"
80
+ msgstr "Las etiquetas contienen"
81
+
82
+ #: ../lib/alexandria/ui/ui_manager.rb:170
83
+ msgid "Change the search type"
84
+ msgstr "Cambiar el tipo de búsqueda."
85
+
86
+ #: ../lib/alexandria/ui/ui_manager.rb:175
87
+ msgid "View as Icons"
88
+ msgstr "Ver como iconos"
89
+
90
+ #: ../lib/alexandria/ui/ui_manager.rb:176
91
+ msgid "View as List"
92
+ msgstr "Ver como lista"
93
+
94
+ #: ../lib/alexandria/ui/ui_manager.rb:189
95
+ msgid "Choose how to show books"
96
+ msgstr "Seleccionar cómo mostrar los libros"
97
+
98
+ #: ../lib/alexandria/ui/ui_manager.rb:436
99
+ msgid "Library '%s' selected"
100
+ msgstr "Biblioteca '%s' seleccionada"
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] "Biblioteca '%s' seleccionada, %d libro no valorado"
106
+ msgstr[1] "Biblioteca '%s' seleccionada, %d libros no valorados"
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] "Biblioteca '%s' seleccionada, %d libro"
112
+ msgstr[1] "Biblioteca '%s' seleccionada, %d libros"
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] "Biblioteca '%s' seleccionada, %d libro, %d no valorado"
118
+ msgstr[1] "Biblioteca '%s' seleccionada, %d libros, %d no valorados"
119
+
120
+ #: ../lib/alexandria/ui/ui_manager.rb:467
121
+ msgid "'%s' selected"
122
+ msgstr "'%s' seleccionado"
123
+
124
+ #: ../lib/alexandria/ui/ui_manager.rb:470
125
+ msgid "%d book selected"
126
+ msgid_plural "%d books selected"
127
+ msgstr[0] "%d libro seleccionado"
128
+ msgstr[1] "%d libros seleccionados"
129
+
130
+ #: ../lib/alexandria/ui/ui_manager.rb:648
131
+ msgid "Unable to launch the web browser"
132
+ msgstr "No es posible lanzar el navegador web"
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
+ "Compruebe que existe un navegador web configurado por defecto (Escritorio -> "
140
+ "Preferencias -> Aplicaciones Preferidas) y pruebe de nuevo."
141
+
142
+ #: ../lib/alexandria/ui/ui_manager.rb:661
143
+ msgid "Unable to launch the mail reader"
144
+ msgstr "No es posible lanzar el lector de correo"
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
+ "Compruebe que existe un lector de correo configurado por omisión "
152
+ "(Aplicaciones -> Preferencias de escritorio -> Avanzadas -> Aplicaciones "
153
+ "preferidas) y pruebe de nuevo."
154
+
155
+ #: ../lib/alexandria/ui/ui_manager.rb:697
156
+ msgid "Repair Book Data"
157
+ msgstr "Reparar información de libros"
158
+
159
+ #: ../lib/alexandria/ui/ui_manager.rb:698
160
+ msgid ""
161
+ "The data files for the following books are malformed or empty. Do you wish "
162
+ "to attempt to download new information for them from the online book "
163
+ "providers?\n"
164
+ msgstr ""
165
+ "Los fichecheros de datos de los libros siguientes se encuentra corrupta o "
166
+ "errónea. ¿Desea tratar de descargar nueva información sobre ellos de los "
167
+ "proveedores de libros en línea?\n"
168
+
169
+ #: ../lib/alexandria/ui/ui_manager.rb:755
170
+ msgid "Added '%s' to library '%s'"
171
+ msgstr "Añadidos '%s' a la biblioteca '%s'"
172
+
173
+ #: ../lib/alexandria/ui/ui_manager.rb:908
174
+ msgid "Loading '%s'..."
175
+ msgstr "Cargando '%s'..."
176
+
177
+ #: ../lib/alexandria/ui/ui_manager.rb:1157
178
+ msgid "In '_%s'"
179
+ msgstr "A '_%s'"
180
+
181
+ #: ../lib/alexandria/ui/callbacks.rb:65
182
+ msgid "The following lines are not valid ISBNs and were not imported:"
183
+ msgstr "Las líneas siguientes no son ISBN válidos y no pudieron importarse:"
184
+
185
+ #: ../lib/alexandria/ui/callbacks.rb:122
186
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:128
187
+ msgid "Export failed"
188
+ msgstr "Falló la exportación"
189
+
190
+ #: ../lib/alexandria/ui/callbacks.rb:123
191
+ msgid "Try letting this library load completely before exporting."
192
+ msgstr ""
193
+ "Intente dejar que esta biblioteca cargue completamente antes de exportar."
194
+
195
+ #: ../lib/alexandria/ui/callbacks.rb:274
196
+ msgid "_Library"
197
+ msgstr "_Biblioteca"
198
+
199
+ #: ../lib/alexandria/ui/callbacks.rb:275
200
+ msgid "_New Library"
201
+ msgstr "_Nueva biblioteca"
202
+
203
+ #: ../lib/alexandria/ui/callbacks.rb:275
204
+ msgid "Create a new library"
205
+ msgstr "Crear una biblioteca nueva"
206
+
207
+ #: ../lib/alexandria/ui/callbacks.rb:276
208
+ msgid "New _Smart Library..."
209
+ msgstr "Nueva biblioteca inteligente"
210
+
211
+ #: ../lib/alexandria/ui/callbacks.rb:276
212
+ msgid "Create a new smart library"
213
+ msgstr "Crear una nueva biblioteca inteligente"
214
+
215
+ #: ../lib/alexandria/ui/callbacks.rb:277
216
+ msgid "_Add Book..."
217
+ msgstr "_Añadir libro..."
218
+
219
+ #: ../lib/alexandria/ui/callbacks.rb:277
220
+ msgid "Add a new book from the Internet"
221
+ msgstr "Añadir un libro nuevo mediante Internet"
222
+
223
+ #: ../lib/alexandria/ui/callbacks.rb:278
224
+ msgid "Add Book _Manually..."
225
+ msgstr "Añadir libro _manualmente..."
226
+
227
+ #: ../lib/alexandria/ui/callbacks.rb:278
228
+ msgid "Add a new book manually"
229
+ msgstr "Añadir un libro manualmente"
230
+
231
+ #: ../lib/alexandria/ui/callbacks.rb:279
232
+ msgid "_Import..."
233
+ msgstr "_Importar..."
234
+
235
+ #: ../lib/alexandria/ui/callbacks.rb:279
236
+ msgid "Import a library"
237
+ msgstr "Importar una biblioteca"
238
+
239
+ #: ../lib/alexandria/ui/callbacks.rb:280
240
+ msgid "_Export..."
241
+ msgstr "_Exportar..."
242
+
243
+ #: ../lib/alexandria/ui/callbacks.rb:280
244
+ msgid "Export the selected library"
245
+ msgstr "Exportar la biblioteca seleccionada"
246
+
247
+ #: ../lib/alexandria/ui/callbacks.rb:281
248
+ msgid "_Acquire from Scanner..."
249
+ msgstr "A_dquirir mediante escaner"
250
+
251
+ #: ../lib/alexandria/ui/callbacks.rb:281
252
+ msgid "Acquire books from a scanner"
253
+ msgstr "Adquirir libros mediante un escaner"
254
+
255
+ #: ../lib/alexandria/ui/callbacks.rb:282
256
+ msgid "_Properties"
257
+ msgstr "_Propiedades"
258
+
259
+ #: ../lib/alexandria/ui/callbacks.rb:282
260
+ msgid "Edit the properties of the selected book"
261
+ msgstr "Editar las propiedades del libro seleccionado."
262
+
263
+ #: ../lib/alexandria/ui/callbacks.rb:283
264
+ msgid "_Quit"
265
+ msgstr "_Salir"
266
+
267
+ #: ../lib/alexandria/ui/callbacks.rb:283
268
+ msgid "Quit the program"
269
+ msgstr "Salir del programa"
270
+
271
+ #: ../lib/alexandria/ui/callbacks.rb:284
272
+ msgid "_Edit"
273
+ msgstr "_Editar"
274
+
275
+ #: ../lib/alexandria/ui/callbacks.rb:285
276
+ msgid "_Undo"
277
+ msgstr "_Deshacer"
278
+
279
+ #: ../lib/alexandria/ui/callbacks.rb:285
280
+ msgid "Undo the last action"
281
+ msgstr "Deshacer la última acción"
282
+
283
+ #: ../lib/alexandria/ui/callbacks.rb:286
284
+ msgid "_Redo"
285
+ msgstr "_Rehacer"
286
+
287
+ #: ../lib/alexandria/ui/callbacks.rb:286
288
+ msgid "Redo the undone action"
289
+ msgstr "Rehacer la acción deshecha."
290
+
291
+ #: ../lib/alexandria/ui/callbacks.rb:287
292
+ msgid "_Select All"
293
+ msgstr "Seleccion_ar todo"
294
+
295
+ #: ../lib/alexandria/ui/callbacks.rb:287
296
+ msgid "Select all visible books"
297
+ msgstr "Seleccionar todos los libros visibles"
298
+
299
+ #: ../lib/alexandria/ui/callbacks.rb:288
300
+ msgid "Dese_lect All"
301
+ msgstr "Dese_leccionar todo"
302
+
303
+ #: ../lib/alexandria/ui/callbacks.rb:288
304
+ msgid "Deselect everything"
305
+ msgstr "Deseleccionar todo."
306
+
307
+ #: ../lib/alexandria/ui/callbacks.rb:289
308
+ msgid "My _Rating"
309
+ msgstr "Mi valoración"
310
+
311
+ #: ../lib/alexandria/ui/callbacks.rb:290
312
+ msgid "None"
313
+ msgstr "Ninguno"
314
+
315
+ #: ../lib/alexandria/ui/callbacks.rb:291
316
+ msgid "One Star"
317
+ msgstr "Una estrella"
318
+
319
+ #: ../lib/alexandria/ui/callbacks.rb:292
320
+ msgid "Two Stars"
321
+ msgstr "Dos estrellas"
322
+
323
+ #: ../lib/alexandria/ui/callbacks.rb:293
324
+ msgid "Three Stars"
325
+ msgstr "Tres estrellas"
326
+
327
+ #: ../lib/alexandria/ui/callbacks.rb:294
328
+ msgid "Four Stars"
329
+ msgstr "Cuatro estrellas"
330
+
331
+ #: ../lib/alexandria/ui/callbacks.rb:295
332
+ msgid "Five Stars"
333
+ msgstr "Cinco estrellas"
334
+
335
+ #: ../lib/alexandria/ui/callbacks.rb:296
336
+ msgid "_Move"
337
+ msgstr "_Mover"
338
+
339
+ #: ../lib/alexandria/ui/callbacks.rb:297
340
+ msgid "_Rename"
341
+ msgstr "_Renombrar"
342
+
343
+ #: ../lib/alexandria/ui/callbacks.rb:298
344
+ msgid "_Delete"
345
+ msgstr "_Eliminar"
346
+
347
+ #: ../lib/alexandria/ui/callbacks.rb:298
348
+ msgid "Delete the selected books or library"
349
+ msgstr "Borrar los libros o bibliotecas seleccionados"
350
+
351
+ #: ../lib/alexandria/ui/callbacks.rb:299
352
+ msgid "_Search"
353
+ msgstr "Bu_scar"
354
+
355
+ #: ../lib/alexandria/ui/callbacks.rb:299
356
+ msgid "Filter books"
357
+ msgstr "Filtrar libros"
358
+
359
+ #: ../lib/alexandria/ui/callbacks.rb:300
360
+ msgid "_Clear Results"
361
+ msgstr "L_impiar Resultados"
362
+
363
+ #: ../lib/alexandria/ui/callbacks.rb:300
364
+ msgid "Clear the search results"
365
+ msgstr "Limpiar los resultados de búsqueda"
366
+
367
+ #: ../lib/alexandria/ui/callbacks.rb:301
368
+ msgid "_Preferences"
369
+ msgstr "_Preferencias"
370
+
371
+ #: ../lib/alexandria/ui/callbacks.rb:301
372
+ msgid "Change Alexandria's settings"
373
+ msgstr "Cambiar las preferencias de Alexandria"
374
+
375
+ #: ../lib/alexandria/ui/callbacks.rb:302
376
+ msgid "_View"
377
+ msgstr "_Ver"
378
+
379
+ #: ../lib/alexandria/ui/callbacks.rb:303
380
+ msgid "Arran_ge Icons"
381
+ msgstr "Or_ganizar Iconos"
382
+
383
+ #: ../lib/alexandria/ui/callbacks.rb:304
384
+ msgid "Display Online _Information"
385
+ msgstr "_Mostrar Información en Línea"
386
+
387
+ #: ../lib/alexandria/ui/callbacks.rb:306
388
+ msgid "_Help"
389
+ msgstr "_Ayuda"
390
+
391
+ #: ../lib/alexandria/ui/callbacks.rb:307
392
+ msgid "Submit _Bug Report"
393
+ msgstr "Enviar Informe de _Fallos"
394
+
395
+ #: ../lib/alexandria/ui/callbacks.rb:307
396
+ msgid "Submit a bug report to the developers"
397
+ msgstr "Enviar un informe de fallo a los desarrolladores"
398
+
399
+ #: ../lib/alexandria/ui/callbacks.rb:308
400
+ msgid "Contents"
401
+ msgstr "Contenido"
402
+
403
+ #: ../lib/alexandria/ui/callbacks.rb:308
404
+ msgid "View Alexandria's manual"
405
+ msgstr "Ver el manual de alexandria"
406
+
407
+ #: ../lib/alexandria/ui/callbacks.rb:309
408
+ msgid "_About"
409
+ msgstr "_Acerca de"
410
+
411
+ #: ../lib/alexandria/ui/callbacks.rb:309
412
+ msgid "Show information about Alexandria"
413
+ msgstr "Mostrar información sobre Alexandria"
414
+
415
+ #: ../lib/alexandria/ui/callbacks.rb:334
416
+ msgid "Side _Pane"
417
+ msgstr "_Panel lateral"
418
+
419
+ #: ../lib/alexandria/ui/callbacks.rb:336
420
+ msgid "_Toolbar"
421
+ msgstr "Barra de herramien_tas"
422
+
423
+ #: ../lib/alexandria/ui/callbacks.rb:338
424
+ msgid "_Statusbar"
425
+ msgstr "Barra de e_stado"
426
+
427
+ #: ../lib/alexandria/ui/callbacks.rb:340
428
+ msgid "Re_versed Order"
429
+ msgstr "Orden _inverso"
430
+
431
+ #: ../lib/alexandria/ui/callbacks.rb:345
432
+ msgid "View as _Icons"
433
+ msgstr "Ver como _iconos"
434
+
435
+ #: ../lib/alexandria/ui/callbacks.rb:346
436
+ msgid "View as _List"
437
+ msgstr "Ver como _Lista"
438
+
439
+ #: ../lib/alexandria/ui/callbacks.rb:350
440
+ msgid "By _Title"
441
+ msgstr "Por _título"
442
+
443
+ #: ../lib/alexandria/ui/callbacks.rb:351
444
+ msgid "By _Authors"
445
+ msgstr "Por _autores"
446
+
447
+ #: ../lib/alexandria/ui/callbacks.rb:352
448
+ msgid "By _ISBN"
449
+ msgstr "Por _ISBN"
450
+
451
+ #: ../lib/alexandria/ui/callbacks.rb:353
452
+ msgid "By _Publisher"
453
+ msgstr "Por _editor"
454
+
455
+ #: ../lib/alexandria/ui/callbacks.rb:354
456
+ msgid "By _Binding"
457
+ msgstr "Por e_ncuadernación"
458
+
459
+ #: ../lib/alexandria/ui/callbacks.rb:355
460
+ msgid "By _Rating"
461
+ msgstr "Por _valoración"
462
+
463
+ #: ../lib/alexandria/ui/callbacks.rb:359
464
+ msgid "At _%s"
465
+ msgstr "En _%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] "Había %d duplicado"
471
+ msgstr[1] "Había %d duplicados"
472
+
473
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:398
474
+ msgid "Couldn't add this book"
475
+ msgid_plural "Couldn't add these books"
476
+ msgstr[0] "No se pudo añadir este libro"
477
+ msgstr[1] "No se pudieron añadir estos libros"
478
+
479
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:477
480
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:555
481
+ msgid "Searching Provider '%s'..."
482
+ msgstr "Buscando en el proveedor '%s'"
483
+
484
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:478
485
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:556
486
+ msgid "Error while Searching Provider '%s'"
487
+ msgstr "Error al buscar en el proveedor '%s'"
488
+
489
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:479
490
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:557
491
+ msgid "Not Found at Provider '%s'"
492
+ msgstr "No se ha encontrado en el proveedor '%s'"
493
+
494
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:480
495
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:558
496
+ msgid "Found at Provider '%s'"
497
+ msgstr "Encontrado en el proveedor '%s'"
498
+
499
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:610
500
+ msgid "Ready to use %s barcode scanner"
501
+ msgstr "Preparado para usar el lector de códigos de barras %s"
502
+
503
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:625
504
+ #: ../data/alexandria/glade/acquire_dialog.glade:26
505
+ msgid "_Barcode Scanner Ready"
506
+ msgstr "Scanner de códigos de _barras preparado"
507
+
508
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:640
509
+ msgid "Click below to scan _barcodes"
510
+ msgstr "Pulse para adquirir códigos de _barras"
511
+
512
+ #: ../lib/alexandria/ui/dialogs/bad_isbns_dialog.rb:24
513
+ msgid "There's a problem"
514
+ msgstr "Hay un problema"
515
+
516
+ #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:30
517
+ msgid "New Smart Library"
518
+ msgstr "Nueva biblioteca inteligente"
519
+
520
+ #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:49
521
+ msgid "Smart Library"
522
+ msgstr "Biblioteca inteligente"
523
+
524
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:106
525
+ msgid "Preferences for %s"
526
+ msgstr "Preferencias para %s"
527
+
528
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:131
529
+ msgid "New Provider"
530
+ msgstr "Nuevo proveedor"
531
+
532
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:146
533
+ msgid "_Name:"
534
+ msgstr "_Nombre:"
535
+
536
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:158
537
+ msgid "_Type:"
538
+ msgstr "_Tipo:"
539
+
540
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:316
541
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
542
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
543
+ msgid "Disable Provider"
544
+ msgstr "Deshabilitar proveedor"
545
+
546
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
547
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
548
+ msgid "Enable Provider"
549
+ msgstr "Habilitar proveedor"
550
+
551
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:423
552
+ msgid "Are you sure you want to permanently delete the provider '%s'?"
553
+ msgstr "¿Está seguro de que desea eliminar permanentemente el proveedor '%s'?"
554
+
555
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:431
556
+ msgid ""
557
+ "If you continue, the provider and all of its preferences will be permanently "
558
+ "deleted."
559
+ msgstr ""
560
+ "Si continúa, el proveedor y todas sus preferencias serán borrados de forma "
561
+ "permanente."
562
+
563
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:36
564
+ msgid "Error while importing"
565
+ msgstr "Error de importación"
566
+
567
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:39
568
+ msgid "_Continue"
569
+ msgstr "_Continuar"
570
+
571
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:64
572
+ msgid "Import a Library"
573
+ msgstr "Importar una biblioteca"
574
+
575
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:71
576
+ msgid "_Import"
577
+ msgstr "_Importar"
578
+
579
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:188
580
+ msgid "Couldn't import the library"
581
+ msgstr "No se pudo importar la biblioteca"
582
+
583
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:189
584
+ msgid ""
585
+ "The format of the file you provided is unknown. Please retry with another "
586
+ "file."
587
+ msgstr ""
588
+ "Se desconoce el formato del fichero proporcionado. Por favor, reintente con "
589
+ "otro fichero."
590
+
591
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb:30
592
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:63
593
+ msgid "Properties for '%s'"
594
+ msgstr "Propieadades para '%s'"
595
+
596
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:83
597
+ msgid "Empty or conflictive condition"
598
+ msgstr "Condición vacía o errónea"
599
+
600
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:86
601
+ msgid "_Save However"
602
+ msgstr "Guardar a pesar de los errores"
603
+
604
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:87
605
+ msgid ""
606
+ "This smart library contains one or more conditions which are empty or "
607
+ "conflict with each other. This is likely to result in never matching a book. "
608
+ "Are you sure you want to save this library?"
609
+ msgstr ""
610
+ "Esta biblioteca inteligente contiene una o más condiciones vacías o "
611
+ "conflictivas entre sí. Debido a esto, no coincidirá ningún libro. ¿Está "
612
+ "usted seguro de que desea guardar esta biblioteca?"
613
+
614
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:106
615
+ msgid "Match"
616
+ msgstr "Coincide con"
617
+
618
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
619
+ msgid "all"
620
+ msgstr "todas"
621
+
622
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
623
+ msgid "any"
624
+ msgstr "al menos una de"
625
+
626
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:119
627
+ msgid "of the following rules:"
628
+ msgstr "las siguientes reglas:"
629
+
630
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:127
631
+ msgid "Match the following rule:"
632
+ msgstr "Coincide con la regla siguiente:"
633
+
634
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:114
635
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:123
636
+ msgid "Couldn't modify the book"
637
+ msgstr "No se pudo modificar el libro"
638
+
639
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:115
640
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:88
641
+ msgid "The EAN/ISBN you provided is already used in this library."
642
+ msgstr "Ya se está utilizando el EAN/ISBN que proporcionó en esta biblioteca."
643
+
644
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:124
645
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:94
646
+ msgid ""
647
+ "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
648
+ "correcty, and try again."
649
+ msgstr ""
650
+ "No se puede validar el EAN/ISBN proporcionado. Asegúrese de que está "
651
+ "escrito correctamente y pruebe de nuevo."
652
+
653
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:65
654
+ msgid "Properties"
655
+ msgstr "Propiedades"
656
+
657
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:71
658
+ msgid "Author"
659
+ msgstr "Autor"
660
+
661
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:123
662
+ msgid "Select a cover image"
663
+ msgstr "Seleccione una imagen de portada"
664
+
665
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:127
666
+ msgid "No Cover"
667
+ msgstr "Sin portada"
668
+
669
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:186
670
+ msgid "%d day"
671
+ msgid_plural "%d days"
672
+ msgstr[0] "%d día"
673
+ msgstr[1] "%d días"
674
+
675
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:58
676
+ msgid "Adding '%s'"
677
+ msgstr "Añadiendo '_%s'"
678
+
679
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:60
680
+ #: ../data/alexandria/glade/new_book_dialog.glade:8
681
+ msgid "Adding a Book"
682
+ msgstr "Añadiendo un Libro"
683
+
684
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:81
685
+ msgid "A title must be provided."
686
+ msgstr "Debe proporcionar un título."
687
+
688
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:102
689
+ msgid "A publisher must be provided."
690
+ msgstr "Debe proporcionar un editor."
691
+
692
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:109
693
+ msgid "A binding must be provided."
694
+ msgstr "Debe proporcionar un tipo de encuadernación."
695
+
696
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:115
697
+ msgid "At least one author must be provided."
698
+ msgstr "Se debe proporcionar al menos un autor."
699
+
700
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:142
701
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:523
702
+ msgid "Couldn't add the book"
703
+ msgstr "No se pudo añadir el libro"
704
+
705
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:25
706
+ msgid "File already exists"
707
+ msgstr "El fichero ya existe"
708
+
709
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:28
710
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:30
711
+ msgid "_Replace"
712
+ msgstr "_Reemplazar"
713
+
714
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:29
715
+ msgid ""
716
+ "A file named '%s' already exists. Do you want to replace it with the one "
717
+ "you are generating?"
718
+ msgstr ""
719
+ "El fichero '%s' ya existe. ¿Desea reemplazarlo con el que está generando?"
720
+
721
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:52
722
+ msgid "Export '%s'"
723
+ msgstr "Exportar '%s'"
724
+
725
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:58
726
+ msgid "_Export"
727
+ msgstr "_Exportar"
728
+
729
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:77
730
+ msgid "_Theme:"
731
+ msgstr "_Tema:"
732
+
733
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:87
734
+ msgid "directory"
735
+ msgstr "directorio"
736
+
737
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:100
738
+ msgid "Export for_mat:"
739
+ msgstr "For_mato de exportación:"
740
+
741
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:155
742
+ msgid ""
743
+ "The target, named '%s', is a regular file. A directory is needed for this "
744
+ "operation. Please select a directory and try again."
745
+ msgstr ""
746
+ "El objetivo, llamado '%s', es un fichero. Esta operación requiere un "
747
+ "directorio. Por favor, seleccione un directorio y pruebe de nuevo."
748
+
749
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:159
750
+ msgid "Not a directory"
751
+ msgstr "No es un directorio"
752
+
753
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:32
754
+ msgid "Invalid ISBN '%s'"
755
+ msgstr "ISBN no válido: '%s'"
756
+
757
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:35
758
+ msgid "_Keep"
759
+ msgstr "_Mantener"
760
+
761
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:36
762
+ msgid ""
763
+ "The book titled '%s' has an invalid ISBN, but still exists in the providers "
764
+ "libraries. Do you want to keep the book but change the ISBN or cancel the "
765
+ "add?"
766
+ msgstr ""
767
+ "El libro titulado '%s' no posee un ISBN válido, pero aún existe en las "
768
+ "libreríasde los proveedores.¿Desea mantener el libro pero cambiando el ISBNo "
769
+ "prefiere cancelar y no añadir?"
770
+
771
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:182
772
+ msgid "A problem occurred while downloading images"
773
+ msgstr "Ha ocurrido un problema al descargar las imágenes"
774
+
775
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:304
776
+ msgid "Unable to find matches for your search"
777
+ msgstr "No se encontraron coincidencias para la búsqueda"
778
+
779
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:310
780
+ msgid "%s, by %s"
781
+ msgstr "%s, por %s"
782
+
783
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:383
784
+ msgid ""
785
+ "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
786
+ "correctly, and try again."
787
+ msgstr ""
788
+ "No se puede validar el EAN/ISBN proporcionado. Asegúrese de que está "
789
+ "escrito correctamente y pruebe de nuevo."
790
+
791
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:630
792
+ msgid "'%s' already exists in '%s' (titled '%s')."
793
+ msgstr "'%s' ya existe en '%s' (titulado '%s')."
794
+
795
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:26
796
+ msgid "The book '%s' already exists in '%s'. Would you like to replace it?"
797
+ msgstr "El libro '%s' ya existe en '%s'. ¿Desea reemplazarlo?"
798
+
799
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:29
800
+ msgid "_Skip"
801
+ msgstr "_Saltar"
802
+
803
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:31
804
+ msgid "If you replace the existing book, its contents will be overwritten."
805
+ msgstr "Su contenido se sobreescribirá si reemplaza el libro existente."
806
+
807
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:50
808
+ msgid "Are you sure you want to delete '%s'?"
809
+ msgstr "¿Está seguro de que desea eliminar '%s'?"
810
+
811
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:58
812
+ msgid "If you continue, %d book will be deleted."
813
+ msgid_plural "If you continue, %d books will be deleted."
814
+ msgstr[0] "Si continúa, el libro %d será borrado."
815
+ msgstr[1] "Si continúa, %d libros se borrarán."
816
+
817
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:63
818
+ msgid "Are you sure you want to delete '%s' from '%s'?"
819
+ msgstr "¿Está seguro de que desea eliminar '%s' de '%s'?"
820
+
821
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:66
822
+ msgid "Are you sure you want to delete the selected books from '%s'?"
823
+ msgstr "¿Está seguro que desea eliminar los libros seleccionados de '%s'?"
824
+
825
+ #: ../lib/alexandria/ui/sidepane.rb:49
826
+ msgid "Invalid library name '%s'"
827
+ msgstr "Nombre de biblioteca no válido: '%s'"
828
+
829
+ #: ../lib/alexandria/ui/sidepane.rb:50
830
+ msgid "The name provided contains the disallowed character <b>%s</b> "
831
+ msgstr "El nombre utilizado contiene el caracter no permitido '<b>%s</b>'."
832
+
833
+ #: ../lib/alexandria/ui/sidepane.rb:53
834
+ msgid "Invalid library name"
835
+ msgstr "Nombre de biblioteca no válido"
836
+
837
+ #: ../lib/alexandria/ui/sidepane.rb:54
838
+ msgid "The name provided contains invalid characters."
839
+ msgstr "El nombre utilizado contiene caracteres no válidos."
840
+
841
+ #: ../lib/alexandria/ui/sidepane.rb:60
842
+ msgid "The library name can not be empty"
843
+ msgstr "El nombre de la biblioteca no puede estar vacío"
844
+
845
+ #: ../lib/alexandria/ui/sidepane.rb:65
846
+ msgid "The library can not be renamed"
847
+ msgstr "La biblioteca no puede renombrarse"
848
+
849
+ #: ../lib/alexandria/ui/sidepane.rb:66
850
+ msgid "There is already a library named '%s'. Please choose a different name."
851
+ msgstr ""
852
+ "Ya existe una biblioteca llamada '%s'. Por favor, elija un nombre diferente."
853
+
854
+ #: ../lib/alexandria/ui/sidepane.rb:92
855
+ msgid "Library"
856
+ msgstr "Biblioteca"
857
+
858
+ #: ../lib/alexandria/ui/libraries_combo.rb:44
859
+ msgid "New Library"
860
+ msgstr "Nueva biblioteca"
861
+
862
+ #: ../lib/alexandria/ui/listview.rb:52 ../lib/alexandria/smart_library.rb:349
863
+ msgid "Title"
864
+ msgstr "Título"
865
+
866
+ #: ../lib/alexandria/ui/listview.rb:105 ../lib/alexandria/smart_library.rb:351
867
+ msgid "Authors"
868
+ msgstr "Autores"
869
+
870
+ #: ../lib/alexandria/ui/listview.rb:106 ../lib/alexandria/smart_library.rb:350
871
+ msgid "ISBN"
872
+ msgstr "ISBN"
873
+
874
+ #: ../lib/alexandria/ui/listview.rb:107 ../lib/alexandria/smart_library.rb:352
875
+ msgid "Publisher"
876
+ msgstr "Editor"
877
+
878
+ #: ../lib/alexandria/ui/listview.rb:108 ../lib/alexandria/smart_library.rb:353
879
+ msgid "Publish Year"
880
+ msgstr "Año de publicación"
881
+
882
+ #: ../lib/alexandria/ui/listview.rb:109 ../lib/alexandria/smart_library.rb:354
883
+ msgid "Binding"
884
+ msgstr "Encuadernación"
885
+
886
+ #: ../lib/alexandria/ui/listview.rb:110
887
+ #, fuzzy
888
+ msgid "Loaned To"
889
+ msgstr "Prestado"
890
+
891
+ #: ../lib/alexandria/ui/listview.rb:113 ../lib/alexandria/smart_library.rb:104
892
+ #: ../lib/alexandria/smart_library.rb:361
893
+ msgid "Read"
894
+ msgstr "Leído"
895
+
896
+ #: ../lib/alexandria/ui/listview.rb:114 ../lib/alexandria/smart_library.rb:363
897
+ msgid "Own"
898
+ msgstr "Propio"
899
+
900
+ #: ../lib/alexandria/ui/listview.rb:115 ../lib/alexandria/smart_library.rb:364
901
+ msgid "Want"
902
+ msgstr "Deseado"
903
+
904
+ #: ../lib/alexandria/ui/listview.rb:141 ../lib/alexandria/smart_library.rb:357
905
+ #: ../data/alexandria/glade/preferences_dialog.glade:421
906
+ msgid "Tags"
907
+ msgstr "Etiquetas"
908
+
909
+ #: ../lib/alexandria/ui/listview.rb:166 ../lib/alexandria/smart_library.rb:355
910
+ msgid "Rating"
911
+ msgstr "Valoración"
912
+
913
+ #: ../lib/alexandria/ui/init.rb:83
914
+ msgid "Unable to launch the help browser"
915
+ msgstr "No es posible lanzar el navegador de ayuda"
916
+
917
+ #: ../lib/alexandria/ui/init.rb:84
918
+ msgid ""
919
+ "Could not display help for Alexandria. There was an error launching the "
920
+ "system help browser."
921
+ msgstr ""
922
+ "No se pudo mostrar la ayuda de Alexandria. Ocurrió un error lanzando el "
923
+ "sistema de navegación de ayuda."
924
+
925
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:37
926
+ msgid "Locale"
927
+ msgstr "Locale"
928
+
929
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:38
930
+ msgid "Access key ID"
931
+ msgstr "ID de la clave de acceso"
932
+
933
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:39
934
+ msgid "Secret access key"
935
+ msgstr "Clave de acceso secreta"
936
+
937
+ #: ../lib/alexandria/book_providers/mcu.rb:39
938
+ msgid "Spanish Culture Ministry"
939
+ msgstr "Ministerio de Cultura Español"
940
+
941
+ #: ../lib/alexandria/book_providers/z3950.rb:34
942
+ msgid "Hostname"
943
+ msgstr "Nombre del equipo"
944
+
945
+ #: ../lib/alexandria/book_providers/z3950.rb:35
946
+ msgid "Port"
947
+ msgstr "Puerto"
948
+
949
+ #: ../lib/alexandria/book_providers/z3950.rb:36
950
+ msgid "Database"
951
+ msgstr "Base de datos"
952
+
953
+ #: ../lib/alexandria/book_providers/z3950.rb:37
954
+ msgid "Record syntax"
955
+ msgstr "Sintaxis de registro"
956
+
957
+ #: ../lib/alexandria/book_providers/z3950.rb:38
958
+ msgid "Username"
959
+ msgstr "Nombre de usuario"
960
+
961
+ #: ../lib/alexandria/book_providers/z3950.rb:39
962
+ msgid "Password"
963
+ msgstr "Contraseña"
964
+
965
+ #: ../lib/alexandria/book_providers/z3950.rb:40
966
+ msgid "Charset encoding"
967
+ msgstr "Codificación de caracteres"
968
+
969
+ #: ../lib/alexandria/book_providers/z3950.rb:221
970
+ msgid "Library of Congress (Usa)"
971
+ msgstr "Biblioteca del congreso (EEUU)"
972
+
973
+ #: ../lib/alexandria/book_providers/z3950.rb:255
974
+ msgid "British Library"
975
+ msgstr "Biblioteca Británica"
976
+
977
+ #: ../lib/alexandria/export_library.rb:109
978
+ msgid "Archived ONIX XML"
979
+ msgstr "Archivo ONIX XML"
980
+
981
+ #: ../lib/alexandria/export_library.rb:111
982
+ msgid "Archived Tellico XML"
983
+ msgstr "Archivo Tellico XML"
984
+
985
+ #: ../lib/alexandria/export_library.rb:113
986
+ msgid "BibTeX"
987
+ msgstr "BibTeX"
988
+
989
+ #: ../lib/alexandria/export_library.rb:114
990
+ msgid "CSV list"
991
+ msgstr "Lista CSV"
992
+
993
+ #: ../lib/alexandria/export_library.rb:115
994
+ msgid "ISBN List"
995
+ msgstr "Lista ISBN"
996
+
997
+ #: ../lib/alexandria/export_library.rb:116
998
+ msgid "iPod Notes"
999
+ msgstr "Notas iPod"
1000
+
1001
+ #: ../lib/alexandria/export_library.rb:117
1002
+ msgid "HTML Web Page"
1003
+ msgstr "Página Web HTML"
1004
+
1005
+ #: ../lib/alexandria/smart_library.rb:92
1006
+ msgid "Favorite"
1007
+ msgstr "Favorito"
1008
+
1009
+ #: ../lib/alexandria/smart_library.rb:98
1010
+ msgid "Loaned"
1011
+ msgstr "Prestado"
1012
+
1013
+ #: ../lib/alexandria/smart_library.rb:110
1014
+ msgid "Owned"
1015
+ msgstr "Propio"
1016
+
1017
+ #: ../lib/alexandria/smart_library.rb:119
1018
+ msgid "Wishlist"
1019
+ msgstr "Lista de los deseos"
1020
+
1021
+ #: ../lib/alexandria/smart_library.rb:356
1022
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1225
1023
+ msgid "Notes"
1024
+ msgstr "Notas"
1025
+
1026
+ #: ../lib/alexandria/smart_library.rb:358
1027
+ msgid "Loaning State"
1028
+ msgstr "Estado de prestado"
1029
+
1030
+ #: ../lib/alexandria/smart_library.rb:359
1031
+ msgid "Loaning Date"
1032
+ msgstr "Fecha de préstamo"
1033
+
1034
+ #: ../lib/alexandria/smart_library.rb:360
1035
+ msgid "Loaning Person"
1036
+ msgstr "Prestado a"
1037
+
1038
+ #: ../lib/alexandria/smart_library.rb:362
1039
+ msgid "Date Read"
1040
+ msgstr "Leer fecha"
1041
+
1042
+ #: ../lib/alexandria/smart_library.rb:371
1043
+ msgid "days"
1044
+ msgstr "días"
1045
+
1046
+ #: ../lib/alexandria/smart_library.rb:382
1047
+ msgid "is set"
1048
+ msgstr "está activo"
1049
+
1050
+ #: ../lib/alexandria/smart_library.rb:386
1051
+ msgid "is not set"
1052
+ msgstr "no está activo"
1053
+
1054
+ #: ../lib/alexandria/smart_library.rb:390
1055
+ msgid "is"
1056
+ msgstr "es"
1057
+
1058
+ #: ../lib/alexandria/smart_library.rb:394
1059
+ msgid "is not"
1060
+ msgstr "no es"
1061
+
1062
+ #: ../lib/alexandria/smart_library.rb:398
1063
+ msgid "contains"
1064
+ msgstr "contiene"
1065
+
1066
+ #: ../lib/alexandria/smart_library.rb:402
1067
+ msgid "does not contain"
1068
+ msgstr "no contiene"
1069
+
1070
+ #: ../lib/alexandria/smart_library.rb:406
1071
+ msgid "starts with"
1072
+ msgstr "comienza por"
1073
+
1074
+ #: ../lib/alexandria/smart_library.rb:410
1075
+ msgid "ends with"
1076
+ msgstr "termina por"
1077
+
1078
+ #: ../lib/alexandria/smart_library.rb:414
1079
+ msgid "is greater than"
1080
+ msgstr "es mayor que"
1081
+
1082
+ #: ../lib/alexandria/smart_library.rb:418
1083
+ msgid "is less than"
1084
+ msgstr "es menor que"
1085
+
1086
+ #: ../lib/alexandria/smart_library.rb:422
1087
+ msgid "is after"
1088
+ msgstr "es posterior"
1089
+
1090
+ #: ../lib/alexandria/smart_library.rb:426
1091
+ msgid "is before"
1092
+ msgstr "es anterior"
1093
+
1094
+ #: ../lib/alexandria/smart_library.rb:430
1095
+ msgid "is in last"
1096
+ msgstr "es el último"
1097
+
1098
+ #: ../lib/alexandria/smart_library.rb:450
1099
+ msgid "is not in last"
1100
+ msgstr "no es el último"
1101
+
1102
+ #: ../lib/alexandria/book_providers.rb:87
1103
+ msgid "Couldn't reach the provider '%s': timeout expired."
1104
+ msgstr "No se pudo acceder al proveedor '%s': tiempo de espera excedido."
1105
+
1106
+ #: ../lib/alexandria/book_providers.rb:91
1107
+ msgid "Couldn't reach the provider '%s': socket error (%s)."
1108
+ msgstr "No se pudo acceder al proveedor '%s': error al abrir el socket (%s)."
1109
+
1110
+ #: ../lib/alexandria/book_providers.rb:95
1111
+ #: ../lib/alexandria/book_providers.rb:100
1112
+ msgid ""
1113
+ "No results were found. Make sure your search criterion is spelled "
1114
+ "correctly, and try again."
1115
+ msgstr ""
1116
+ "No se encontraron resultados. Asegúrese de que su criterio de búsqueda está "
1117
+ "escrito correctamente y pruebe de nuevo."
1118
+
1119
+ #: ../lib/alexandria/book_providers.rb:105
1120
+ msgid "Too many results for that search."
1121
+ msgstr "Demasiados resultados para esa búsqueda."
1122
+
1123
+ #: ../lib/alexandria/book_providers.rb:108
1124
+ msgid "Invalid search type."
1125
+ msgstr "Tipo de búsqueda no válido."
1126
+
1127
+ #: ../lib/alexandria/book_providers.rb:203
1128
+ msgid "Enabled"
1129
+ msgstr "Habilitado"
1130
+
1131
+ #: ../data/alexandria/glade/acquire_dialog.glade:9
1132
+ msgid "Acquire from Scanner"
1133
+ msgstr "Adquirir mediante escaner"
1134
+
1135
+ #: ../data/alexandria/glade/acquire_dialog.glade:87
1136
+ #: ../data/alexandria/glade/new_book_dialog.glade:90
1137
+ msgid "Save _in:"
1138
+ msgstr "Guardar _en:"
1139
+
1140
+ #: ../data/alexandria/glade/main_app.glade:17
1141
+ msgid "Main Window"
1142
+ msgstr "Ventana principal"
1143
+
1144
+ #: ../data/alexandria/glade/main_app.glade:32
1145
+ msgid "Libraries listing."
1146
+ msgstr "Listado de bibliotecas"
1147
+
1148
+ #: ../data/alexandria/glade/main_app.glade:46
1149
+ msgid "_Libraries:"
1150
+ msgstr "Bib_liotecas:"
1151
+
1152
+ #: ../data/alexandria/glade/main_app.glade:111
1153
+ msgid "Book listing."
1154
+ msgstr "Listado de libros."
1155
+
1156
+ #: ../data/alexandria/glade/main_app.glade:194
1157
+ msgid "Status messages."
1158
+ msgstr "Mensajes de estado."
1159
+
1160
+ #: ../data/alexandria/glade/new_book_dialog.glade:31
1161
+ msgid "_Keep Dialog Open after Adding Book"
1162
+ msgstr "_Mantener el diálogo abierto tras añadir un libro"
1163
+
1164
+ #: ../data/alexandria/glade/new_book_dialog.glade:114
1165
+ msgid ""
1166
+ "by title\n"
1167
+ "by authors\n"
1168
+ "by keyword"
1169
+ msgstr ""
1170
+ "por título\n"
1171
+ "por autores\n"
1172
+ "por palabra clave"
1173
+
1174
+ #: ../data/alexandria/glade/new_book_dialog.glade:201
1175
+ msgid "_Search:"
1176
+ msgstr "Bu_scar:"
1177
+
1178
+ #: ../data/alexandria/glade/new_book_dialog.glade:219
1179
+ #: ../data/alexandria/glade/book_properties_dialog.glade:187
1180
+ msgid "_ISBN:"
1181
+ msgstr "_ISBN:"
1182
+
1183
+ #: ../data/alexandria/glade/book_properties_dialog.glade:86
1184
+ msgid "_Title:"
1185
+ msgstr "_Título:"
1186
+
1187
+ #: ../data/alexandria/glade/book_properties_dialog.glade:115
1188
+ msgid "_Publisher:"
1189
+ msgstr "_Editor:"
1190
+
1191
+ #: ../data/alexandria/glade/book_properties_dialog.glade:279
1192
+ msgid "Add an author"
1193
+ msgstr "Añadir un autor"
1194
+
1195
+ #: ../data/alexandria/glade/book_properties_dialog.glade:307
1196
+ msgid "Remove an author"
1197
+ msgstr "Eliminar un autor"
1198
+
1199
+ #: ../data/alexandria/glade/book_properties_dialog.glade:351
1200
+ msgid "_Authors:"
1201
+ msgstr "_Autores:"
1202
+
1203
+ #: ../data/alexandria/glade/book_properties_dialog.glade:380
1204
+ msgid "_Binding:"
1205
+ msgstr "E_ncuadernación:"
1206
+
1207
+ #: ../data/alexandria/glade/book_properties_dialog.glade:430
1208
+ msgid "Publish _year:"
1209
+ msgstr "Año de _publicación:"
1210
+
1211
+ #: ../data/alexandria/glade/book_properties_dialog.glade:480
1212
+ msgid "Tags:"
1213
+ msgstr "Palabras clave:"
1214
+
1215
+ #: ../data/alexandria/glade/book_properties_dialog.glade:553
1216
+ msgid "_Cover:"
1217
+ msgstr "_Portada:"
1218
+
1219
+ #: ../data/alexandria/glade/book_properties_dialog.glade:579
1220
+ msgid "Click to pick a cover"
1221
+ msgstr "Pulse para seleccionar una portada"
1222
+
1223
+ #: ../data/alexandria/glade/book_properties_dialog.glade:620
1224
+ msgid "Own it?"
1225
+ msgstr "¿Lo tiene?"
1226
+
1227
+ #: ../data/alexandria/glade/book_properties_dialog.glade:646
1228
+ msgid "Read it?"
1229
+ msgstr "¿Leído?"
1230
+
1231
+ #: ../data/alexandria/glade/book_properties_dialog.glade:695
1232
+ msgid "Want it?"
1233
+ msgstr "¿Lo quiere?"
1234
+
1235
+ #: ../data/alexandria/glade/book_properties_dialog.glade:721
1236
+ msgid "Click on the stars to rate the book"
1237
+ msgstr "Pulse sobre las estrellas para valorar el libro"
1238
+
1239
+ #: ../data/alexandria/glade/book_properties_dialog.glade:927
1240
+ msgid "Rating:"
1241
+ msgstr "Valoración:"
1242
+
1243
+ #: ../data/alexandria/glade/book_properties_dialog.glade:967
1244
+ msgid "General"
1245
+ msgstr "General"
1246
+
1247
+ #: ../data/alexandria/glade/book_properties_dialog.glade:998
1248
+ msgid "This book is _loaned"
1249
+ msgstr "Este _libro está prestado"
1250
+
1251
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1076
1252
+ msgid "_To:"
1253
+ msgstr "_A:"
1254
+
1255
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1106
1256
+ msgid "_Since:"
1257
+ msgstr "_Desde:"
1258
+
1259
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1166
1260
+ msgid "Loaning"
1261
+ msgstr "Prestado"
1262
+
1263
+ #: ../data/alexandria/glade/preferences_dialog.glade:7
1264
+ msgid "Preferences"
1265
+ msgstr "Preferencias"
1266
+
1267
+ #: ../data/alexandria/glade/preferences_dialog.glade:27
1268
+ msgid "<b>Book Data Providers</b>"
1269
+ msgstr "<b>Proveedores de datos de libros</b>"
1270
+
1271
+ #: ../data/alexandria/glade/preferences_dialog.glade:99
1272
+ msgid "_Setup"
1273
+ msgstr "C_onfiguración"
1274
+
1275
+ #: ../data/alexandria/glade/preferences_dialog.glade:198
1276
+ msgid ""
1277
+ "Providers are libraries that supply information about books. Some of them "
1278
+ "can be configured to get better results. You can also customize the order "
1279
+ "in which they are queried."
1280
+ msgstr ""
1281
+ "Los proveedores son bibliotecas que proporcionan información de libros. "
1282
+ "Algunos de ellos pueden configurarse para obtener mejores resultados. "
1283
+ "También se puede personalizar el orden en que son consultados."
1284
+
1285
+ #: ../data/alexandria/glade/preferences_dialog.glade:209
1286
+ msgid "Custom _Z39.50 Providers"
1287
+ msgstr "Proveedor _Z39.50 personalizado"
1288
+
1289
+ #: ../data/alexandria/glade/preferences_dialog.glade:213
1290
+ msgid ""
1291
+ "Add and remove your own Z39.50 providers.\n"
1292
+ "Requires the Ruby/ZOOM software library."
1293
+ msgstr ""
1294
+ "Añadir o eliminar sus propios proveedores Z39.50.\n"
1295
+ "Requiere la librería de software Ruby/ZOOM."
1296
+
1297
+ #: ../data/alexandria/glade/preferences_dialog.glade:235
1298
+ msgid "_Providers"
1299
+ msgstr "_Proveedores"
1300
+
1301
+ #: ../data/alexandria/glade/preferences_dialog.glade:252
1302
+ msgid "<b>Visible Columns</b>"
1303
+ msgstr "<b>Columnas visibles</b>"
1304
+
1305
+ #: ../data/alexandria/glade/preferences_dialog.glade:270
1306
+ msgid "_Authors"
1307
+ msgstr "_Autores"
1308
+
1309
+ #: ../data/alexandria/glade/preferences_dialog.glade:285
1310
+ msgid "_ISBN"
1311
+ msgstr "_ISBN"
1312
+
1313
+ #: ../data/alexandria/glade/preferences_dialog.glade:302
1314
+ msgid "_Publisher"
1315
+ msgstr "_Editor"
1316
+
1317
+ #: ../data/alexandria/glade/preferences_dialog.glade:319
1318
+ msgid "_Rating"
1319
+ msgstr "_Valoración"
1320
+
1321
+ #: ../data/alexandria/glade/preferences_dialog.glade:336
1322
+ msgid "_Binding"
1323
+ msgstr "E_ncuadernación"
1324
+
1325
+ #: ../data/alexandria/glade/preferences_dialog.glade:353
1326
+ msgid "Publish _year"
1327
+ msgstr "Año de publicación"
1328
+
1329
+ #: ../data/alexandria/glade/preferences_dialog.glade:370
1330
+ msgid "Read?"
1331
+ msgstr "¿Leer?"
1332
+
1333
+ #: ../data/alexandria/glade/preferences_dialog.glade:387
1334
+ msgid "Own?"
1335
+ msgstr "¿Propietario?"
1336
+
1337
+ #: ../data/alexandria/glade/preferences_dialog.glade:404
1338
+ msgid "Want?"
1339
+ msgstr "¿Quiere?"
1340
+
1341
+ #: ../data/alexandria/glade/preferences_dialog.glade:438
1342
+ #, fuzzy
1343
+ msgid "Loaned to"
1344
+ msgstr "Prestado"
1345
+
1346
+ #: ../data/alexandria/glade/preferences_dialog.glade:465
1347
+ msgid "_List View"
1348
+ msgstr "Ver como _lista"
1349
+
1350
+ #: ../alexandria.desktop.in.h:1
1351
+ msgid "Alexandria Book Collection Manager"
1352
+ msgstr "Alexandria: gestor de colecciones de libros"
1353
+
1354
+ #: ../alexandria.desktop.in.h:2
1355
+ msgid "Book Collection Manager"
1356
+ msgstr "Gestor de colecciones de libros"
1357
+
1358
+ #: ../alexandria.desktop.in.h:3
1359
+ msgid "Manage your book collection"
1360
+ msgstr "Organiza tu colección de libros"
1361
+
1362
+ #~ msgid "Language"
1363
+ #~ msgstr "Idioma"
1364
+
1365
+ #~ msgid "_Advanced Settings"
1366
+ #~ msgstr "Opciones _Avanzadas"
1367
+
1368
+ #~ msgid "Development token"
1369
+ #~ msgstr "Marca de desarrollo"
1370
+
1371
+ #, fuzzy
1372
+ #~ msgid "Couldn't add these books"
1373
+ #~ msgstr "No se pudo añadir el libro"
1374
+
1375
+ #~ msgid "Associate ID"
1376
+ #~ msgstr "ID asociado"