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,1406 @@
1
+ # Alexandria italian translation
2
+ # Copyright (C) 2005 Mirko Maischberger <mirko@lilik.it>
3
+ # Copyright (C) 2007 Marco Costantini <costanti@science.unitn.it>
4
+ # Copyright (C) 2008 Giacomo Margarito <giacomomargarito@gmail.com>
5
+ # This file is distributed under the same license as the Alexandria package.
6
+ #
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: 0.6.3\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2010-08-13 04:41+0100\n"
12
+ "PO-Revision-Date: 2008-11-04 23:32+0100\n"
13
+ "Last-Translator: Giacomo Margarito <giacomomargarito@gmail.com>\n"
14
+ "Language-Team: Alexandria\n"
15
+ "MIME-Version: 1.0\n"
16
+ "Content-Type: text/plain; charset=UTF-8\n"
17
+ "Content-Transfer-Encoding: 8bit\n"
18
+ "Plural-Forms: nplurals=2; plural=n>1;\n"
19
+
20
+ #: ../lib/alexandria/import_library.rb:30
21
+ msgid "Autodetect"
22
+ msgstr "Rileva automaticamente"
23
+
24
+ #: ../lib/alexandria/import_library.rb:31
25
+ msgid "Archived Tellico XML (*.bc, *.tc)"
26
+ msgstr "Archivio XML Tellico (*.bc, *.tc)"
27
+
28
+ #: ../lib/alexandria/import_library.rb:33
29
+ msgid "ISBN List (*.txt)"
30
+ msgstr "Elenco di ISBN (*.txt)"
31
+
32
+ #: ../lib/alexandria/import_library.rb:35
33
+ msgid "GoodReads CSV"
34
+ msgstr ""
35
+
36
+ #: ../lib/alexandria/models/library.rb:56
37
+ msgid "Untitled"
38
+ msgstr "Senza titolo"
39
+
40
+ #: ../lib/alexandria/models/library.rb:245
41
+ msgid "My Library"
42
+ msgstr "Biblioteca personale"
43
+
44
+ #: ../lib/alexandria/about.rb:24
45
+ msgid "A program to help you manage your book collection."
46
+ msgstr "Un programma per gestire la vostra collezione di libri."
47
+
48
+ #: ../lib/alexandria/ui/ui_manager.rb:135
49
+ msgid "Type here the search criterion"
50
+ msgstr "Scrivi qui il criterio di ricerca"
51
+
52
+ #: ../lib/alexandria/ui/ui_manager.rb:148
53
+ msgid "Match everything"
54
+ msgstr "Trova tutto"
55
+
56
+ #: ../lib/alexandria/ui/ui_manager.rb:150
57
+ msgid "Title contains"
58
+ msgstr "Il Titolo contiene"
59
+
60
+ #: ../lib/alexandria/ui/ui_manager.rb:151
61
+ msgid "Authors contain"
62
+ msgstr "L'Autore contiene"
63
+
64
+ #: ../lib/alexandria/ui/ui_manager.rb:152
65
+ msgid "ISBN contains"
66
+ msgstr "L'ISBN contiene"
67
+
68
+ #: ../lib/alexandria/ui/ui_manager.rb:153
69
+ msgid "Publisher contains"
70
+ msgstr "L'Editore contiene"
71
+
72
+ #: ../lib/alexandria/ui/ui_manager.rb:154
73
+ msgid "Notes contain"
74
+ msgstr "Le Note contengono"
75
+
76
+ #: ../lib/alexandria/ui/ui_manager.rb:155
77
+ msgid "Tags contain"
78
+ msgstr "I tags contengono"
79
+
80
+ #: ../lib/alexandria/ui/ui_manager.rb:170
81
+ msgid "Change the search type"
82
+ msgstr "Cambia il tipo di ricerca"
83
+
84
+ #: ../lib/alexandria/ui/ui_manager.rb:175
85
+ msgid "View as Icons"
86
+ msgstr "Visualizza come Icone"
87
+
88
+ #: ../lib/alexandria/ui/ui_manager.rb:176
89
+ msgid "View as List"
90
+ msgstr "Visualizza come Lista"
91
+
92
+ #: ../lib/alexandria/ui/ui_manager.rb:189
93
+ msgid "Choose how to show books"
94
+ msgstr "Scegli come mostrare i libri"
95
+
96
+ #: ../lib/alexandria/ui/ui_manager.rb:436
97
+ msgid "Library '%s' selected"
98
+ msgstr "Biblioteca '%s' selezionata"
99
+
100
+ #: ../lib/alexandria/ui/ui_manager.rb:443
101
+ msgid "Library '%s' selected, %d unrated book"
102
+ msgid_plural "Library '%s' selected, %d unrated books"
103
+ msgstr[0] "Selezionata la biblioteca '%s', %d libro non valutato"
104
+ msgstr[1] "Selezionata la biblioteca '%s', %d libri non valutati"
105
+
106
+ #: ../lib/alexandria/ui/ui_manager.rb:448
107
+ msgid "Library '%s' selected, %d book"
108
+ msgid_plural "Library '%s' selected, %d books"
109
+ msgstr[0] "Selezionata la biblioteca '%s', %d libro"
110
+ msgstr[1] "Selezionata la biblioteca '%s', %d libri"
111
+
112
+ #: ../lib/alexandria/ui/ui_manager.rb:455
113
+ msgid "Library '%s' selected, %d book, %d unrated"
114
+ msgid_plural "Library '%s' selected, %d books, %d unrated"
115
+ msgstr[0] "Selezionata la biblioteca '%s', %d libro, %d non valutato"
116
+ msgstr[1] "Selezionata la biblioteca '%s', %d libri, %d non valutati"
117
+
118
+ #: ../lib/alexandria/ui/ui_manager.rb:467
119
+ msgid "'%s' selected"
120
+ msgstr "'%s' selezionato"
121
+
122
+ #: ../lib/alexandria/ui/ui_manager.rb:470
123
+ msgid "%d book selected"
124
+ msgid_plural "%d books selected"
125
+ msgstr[0] "%d libro selezionato"
126
+ msgstr[1] "%d libri selezionati"
127
+
128
+ #: ../lib/alexandria/ui/ui_manager.rb:648
129
+ msgid "Unable to launch the web browser"
130
+ msgstr "Impossibile avviare il navigatore web"
131
+
132
+ #: ../lib/alexandria/ui/ui_manager.rb:649
133
+ msgid ""
134
+ "Check out that a web browser is configured as default (Desktop Preferences -"
135
+ "> Advanced -> Preferred Applications) and try again."
136
+ msgstr ""
137
+ "Assicurarsi che un navigatore web sia configurato come predefinito "
138
+ "(Preferenze del Desktop -> Avanzate -> Applicazioni preferite) e riprovare."
139
+
140
+ #: ../lib/alexandria/ui/ui_manager.rb:661
141
+ msgid "Unable to launch the mail reader"
142
+ msgstr "Impossibile avviare il programma di posta"
143
+
144
+ #: ../lib/alexandria/ui/ui_manager.rb:662
145
+ msgid ""
146
+ "Check out that a mail reader is configured as default (Desktop Preferences -"
147
+ "> Advanced -> Preferred Applications) and try again."
148
+ msgstr ""
149
+ "Assicurarsi che un programma di posta sia configurato come predefinito "
150
+ "(Preferenze del Desktop -> Avanzate -> Applicazioni preferite) e riprovare."
151
+
152
+ #: ../lib/alexandria/ui/ui_manager.rb:697
153
+ msgid "Repair Book Data"
154
+ msgstr "Ripara i dati dei libri"
155
+
156
+ #: ../lib/alexandria/ui/ui_manager.rb:698
157
+ msgid ""
158
+ "The data files for the following books are malformed or empty. Do you wish "
159
+ "to attempt to download new information for them from the online book "
160
+ "providers?\n"
161
+ msgstr ""
162
+ "I file dei dati per i seguenti libri non sono corretti o sono vuoti. "
163
+ "Desiderate tentare di scaricare le nuove informazioni dai provider dei libri "
164
+ "onlines?\n"
165
+
166
+ #: ../lib/alexandria/ui/ui_manager.rb:755
167
+ msgid "Added '%s' to library '%s'"
168
+ msgstr "Aggiunto '%s' alla bblioteca '%s'"
169
+
170
+ #: ../lib/alexandria/ui/ui_manager.rb:908
171
+ msgid "Loading '%s'..."
172
+ msgstr "Caricamento di '%s'..."
173
+
174
+ #: ../lib/alexandria/ui/ui_manager.rb:1157
175
+ msgid "In '_%s'"
176
+ msgstr "In '_%s'"
177
+
178
+ #: ../lib/alexandria/ui/callbacks.rb:65
179
+ msgid "The following lines are not valid ISBNs and were not imported:"
180
+ msgstr ""
181
+ "Le seguenti righe non sono codici ISBN validi e non sono stati importate"
182
+
183
+ #: ../lib/alexandria/ui/callbacks.rb:122
184
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:128
185
+ msgid "Export failed"
186
+ msgstr "Esportazione fallita"
187
+
188
+ #: ../lib/alexandria/ui/callbacks.rb:123
189
+ msgid "Try letting this library load completely before exporting."
190
+ msgstr ""
191
+
192
+ #: ../lib/alexandria/ui/callbacks.rb:274
193
+ msgid "_Library"
194
+ msgstr "Bib_lioteca"
195
+
196
+ #: ../lib/alexandria/ui/callbacks.rb:275
197
+ msgid "_New Library"
198
+ msgstr "_Nuova Biblioteca"
199
+
200
+ #: ../lib/alexandria/ui/callbacks.rb:275
201
+ msgid "Create a new library"
202
+ msgstr "Crea una nuova biblioteca"
203
+
204
+ #: ../lib/alexandria/ui/callbacks.rb:276
205
+ msgid "New _Smart Library..."
206
+ msgstr "Nuova _biblioteca intelligente..."
207
+
208
+ #: ../lib/alexandria/ui/callbacks.rb:276
209
+ msgid "Create a new smart library"
210
+ msgstr "Crea una nuova biblioteca intelligente"
211
+
212
+ #: ../lib/alexandria/ui/callbacks.rb:277
213
+ msgid "_Add Book..."
214
+ msgstr "_Aggiungi un Libro..."
215
+
216
+ #: ../lib/alexandria/ui/callbacks.rb:277
217
+ msgid "Add a new book from the Internet"
218
+ msgstr "Aggiungi un nuovo libro da internet"
219
+
220
+ #: ../lib/alexandria/ui/callbacks.rb:278
221
+ msgid "Add Book _Manually..."
222
+ msgstr "Aggiungi un Libro _Manualmente"
223
+
224
+ #: ../lib/alexandria/ui/callbacks.rb:278
225
+ msgid "Add a new book manually"
226
+ msgstr "Aggiungi un nuovo libro manualmente"
227
+
228
+ #: ../lib/alexandria/ui/callbacks.rb:279
229
+ msgid "_Import..."
230
+ msgstr "_Importa..."
231
+
232
+ #: ../lib/alexandria/ui/callbacks.rb:279
233
+ msgid "Import a library"
234
+ msgstr "Importa una biblioteca"
235
+
236
+ #: ../lib/alexandria/ui/callbacks.rb:280
237
+ msgid "_Export..."
238
+ msgstr "_Esporta..."
239
+
240
+ #: ../lib/alexandria/ui/callbacks.rb:280
241
+ msgid "Export the selected library"
242
+ msgstr "Esporta la biblioteca selezionata"
243
+
244
+ #: ../lib/alexandria/ui/callbacks.rb:281
245
+ msgid "_Acquire from Scanner..."
246
+ msgstr "_Acquisici con lo scanner..."
247
+
248
+ #: ../lib/alexandria/ui/callbacks.rb:281
249
+ msgid "Acquire books from a scanner"
250
+ msgstr "Acquisisci libri con lo scanner"
251
+
252
+ #: ../lib/alexandria/ui/callbacks.rb:282
253
+ msgid "_Properties"
254
+ msgstr "_Proprietà"
255
+
256
+ #: ../lib/alexandria/ui/callbacks.rb:282
257
+ msgid "Edit the properties of the selected book"
258
+ msgstr "Modifica le proprietà del libro selezionato"
259
+
260
+ #: ../lib/alexandria/ui/callbacks.rb:283
261
+ msgid "_Quit"
262
+ msgstr "_Esci"
263
+
264
+ #: ../lib/alexandria/ui/callbacks.rb:283
265
+ msgid "Quit the program"
266
+ msgstr "Esci dal programma"
267
+
268
+ #: ../lib/alexandria/ui/callbacks.rb:284
269
+ msgid "_Edit"
270
+ msgstr "_Modifica"
271
+
272
+ #: ../lib/alexandria/ui/callbacks.rb:285
273
+ msgid "_Undo"
274
+ msgstr "_Annulla"
275
+
276
+ #: ../lib/alexandria/ui/callbacks.rb:285
277
+ msgid "Undo the last action"
278
+ msgstr "Annulla l'ultima azione"
279
+
280
+ #: ../lib/alexandria/ui/callbacks.rb:286
281
+ msgid "_Redo"
282
+ msgstr "_Ripristina"
283
+
284
+ #: ../lib/alexandria/ui/callbacks.rb:286
285
+ msgid "Redo the undone action"
286
+ msgstr "Ripristina l'azione annullata"
287
+
288
+ #: ../lib/alexandria/ui/callbacks.rb:287
289
+ msgid "_Select All"
290
+ msgstr "_Seleziona tutto"
291
+
292
+ #: ../lib/alexandria/ui/callbacks.rb:287
293
+ msgid "Select all visible books"
294
+ msgstr "Seleziona tutti i libri visibili"
295
+
296
+ #: ../lib/alexandria/ui/callbacks.rb:288
297
+ msgid "Dese_lect All"
298
+ msgstr "Dese_leziona tutto"
299
+
300
+ #: ../lib/alexandria/ui/callbacks.rb:288
301
+ msgid "Deselect everything"
302
+ msgstr "Deseleziona tutto"
303
+
304
+ #: ../lib/alexandria/ui/callbacks.rb:289
305
+ msgid "My _Rating"
306
+ msgstr "La mia _valutazione"
307
+
308
+ #: ../lib/alexandria/ui/callbacks.rb:290
309
+ msgid "None"
310
+ msgstr "Nessuno"
311
+
312
+ #: ../lib/alexandria/ui/callbacks.rb:291
313
+ msgid "One Star"
314
+ msgstr "Una Stella"
315
+
316
+ #: ../lib/alexandria/ui/callbacks.rb:292
317
+ msgid "Two Stars"
318
+ msgstr "Due Stelle"
319
+
320
+ #: ../lib/alexandria/ui/callbacks.rb:293
321
+ msgid "Three Stars"
322
+ msgstr "Tre Stelle"
323
+
324
+ #: ../lib/alexandria/ui/callbacks.rb:294
325
+ msgid "Four Stars"
326
+ msgstr "Quattro Stelle"
327
+
328
+ #: ../lib/alexandria/ui/callbacks.rb:295
329
+ msgid "Five Stars"
330
+ msgstr "Cinque Stelle"
331
+
332
+ #: ../lib/alexandria/ui/callbacks.rb:296
333
+ msgid "_Move"
334
+ msgstr "_Sposta"
335
+
336
+ #: ../lib/alexandria/ui/callbacks.rb:297
337
+ msgid "_Rename"
338
+ msgstr "_Rinomina"
339
+
340
+ #: ../lib/alexandria/ui/callbacks.rb:298
341
+ msgid "_Delete"
342
+ msgstr "_Elimina"
343
+
344
+ #: ../lib/alexandria/ui/callbacks.rb:298
345
+ msgid "Delete the selected books or library"
346
+ msgstr "Elimina i libri o la biblioteca selezionati"
347
+
348
+ #: ../lib/alexandria/ui/callbacks.rb:299
349
+ msgid "_Search"
350
+ msgstr "_Cerca"
351
+
352
+ #: ../lib/alexandria/ui/callbacks.rb:299
353
+ msgid "Filter books"
354
+ msgstr "Filtra i libri"
355
+
356
+ #: ../lib/alexandria/ui/callbacks.rb:300
357
+ msgid "_Clear Results"
358
+ msgstr "_Elimina risultati"
359
+
360
+ #: ../lib/alexandria/ui/callbacks.rb:300
361
+ msgid "Clear the search results"
362
+ msgstr "Elimina i risultati della ricerca"
363
+
364
+ #: ../lib/alexandria/ui/callbacks.rb:301
365
+ msgid "_Preferences"
366
+ msgstr "_Preferenze"
367
+
368
+ #: ../lib/alexandria/ui/callbacks.rb:301
369
+ msgid "Change Alexandria's settings"
370
+ msgstr "Modifica le impostazioni di Alexandria"
371
+
372
+ #: ../lib/alexandria/ui/callbacks.rb:302
373
+ msgid "_View"
374
+ msgstr "_Visualizza"
375
+
376
+ #: ../lib/alexandria/ui/callbacks.rb:303
377
+ msgid "Arran_ge Icons"
378
+ msgstr "Dispo_ni icone"
379
+
380
+ #: ../lib/alexandria/ui/callbacks.rb:304
381
+ msgid "Display Online _Information"
382
+ msgstr "Mostra le _Informazioni Online"
383
+
384
+ #: ../lib/alexandria/ui/callbacks.rb:306
385
+ msgid "_Help"
386
+ msgstr "_Aiuto"
387
+
388
+ #: ../lib/alexandria/ui/callbacks.rb:307
389
+ msgid "Submit _Bug Report"
390
+ msgstr "Segnala un _Bug"
391
+
392
+ #: ../lib/alexandria/ui/callbacks.rb:307
393
+ msgid "Submit a bug report to the developers"
394
+ msgstr "Segnala un bug agli autori"
395
+
396
+ #: ../lib/alexandria/ui/callbacks.rb:308
397
+ msgid "Contents"
398
+ msgstr "Contenuti"
399
+
400
+ #: ../lib/alexandria/ui/callbacks.rb:308
401
+ msgid "View Alexandria's manual"
402
+ msgstr "Visualizza il manuale di Alexandria"
403
+
404
+ #: ../lib/alexandria/ui/callbacks.rb:309
405
+ msgid "_About"
406
+ msgstr "_Informazioni"
407
+
408
+ #: ../lib/alexandria/ui/callbacks.rb:309
409
+ msgid "Show information about Alexandria"
410
+ msgstr "Visualizza informazioni su Alexandria."
411
+
412
+ #: ../lib/alexandria/ui/callbacks.rb:334
413
+ msgid "Side _Pane"
414
+ msgstr "_Pannello Laterale"
415
+
416
+ #: ../lib/alexandria/ui/callbacks.rb:336
417
+ msgid "_Toolbar"
418
+ msgstr "Barra degli S_trumenti"
419
+
420
+ #: ../lib/alexandria/ui/callbacks.rb:338
421
+ msgid "_Statusbar"
422
+ msgstr "Barra di _Stato"
423
+
424
+ #: ../lib/alexandria/ui/callbacks.rb:340
425
+ msgid "Re_versed Order"
426
+ msgstr "Ordine In_verso"
427
+
428
+ #: ../lib/alexandria/ui/callbacks.rb:345
429
+ msgid "View as _Icons"
430
+ msgstr "Visualizza come _Icone"
431
+
432
+ #: ../lib/alexandria/ui/callbacks.rb:346
433
+ msgid "View as _List"
434
+ msgstr "Visualizza come _Lista"
435
+
436
+ #: ../lib/alexandria/ui/callbacks.rb:350
437
+ msgid "By _Title"
438
+ msgstr "Per _Titolo"
439
+
440
+ #: ../lib/alexandria/ui/callbacks.rb:351
441
+ msgid "By _Authors"
442
+ msgstr "Per _Autore"
443
+
444
+ #: ../lib/alexandria/ui/callbacks.rb:352
445
+ msgid "By _ISBN"
446
+ msgstr "Per _ISBN"
447
+
448
+ #: ../lib/alexandria/ui/callbacks.rb:353
449
+ msgid "By _Publisher"
450
+ msgstr "Per _Editore"
451
+
452
+ #: ../lib/alexandria/ui/callbacks.rb:354
453
+ msgid "By _Binding"
454
+ msgstr "Per _Rilegatura"
455
+
456
+ #: ../lib/alexandria/ui/callbacks.rb:355
457
+ msgid "By _Rating"
458
+ msgstr "Per _Valutazione"
459
+
460
+ #: ../lib/alexandria/ui/callbacks.rb:359
461
+ msgid "At _%s"
462
+ msgstr "A _%s"
463
+
464
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:395
465
+ msgid "There was %d duplicate"
466
+ msgid_plural "There were %d duplicates"
467
+ msgstr[0] ""
468
+ msgstr[1] ""
469
+
470
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:398
471
+ #, fuzzy
472
+ msgid "Couldn't add this book"
473
+ msgid_plural "Couldn't add these books"
474
+ msgstr[0] "Impossibile aggiungere il libro"
475
+ msgstr[1] "Impossibile aggiungere il libro"
476
+
477
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:477
478
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:555
479
+ msgid "Searching Provider '%s'..."
480
+ msgstr ""
481
+
482
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:478
483
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:556
484
+ msgid "Error while Searching Provider '%s'"
485
+ msgstr ""
486
+
487
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:479
488
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:557
489
+ msgid "Not Found at Provider '%s'"
490
+ msgstr ""
491
+
492
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:480
493
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:558
494
+ msgid "Found at Provider '%s'"
495
+ msgstr ""
496
+
497
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:610
498
+ msgid "Ready to use %s barcode scanner"
499
+ msgstr ""
500
+
501
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:625
502
+ #: ../data/alexandria/glade/acquire_dialog.glade:26
503
+ msgid "_Barcode Scanner Ready"
504
+ msgstr "_Lettore dei codici a barre pronto"
505
+
506
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:640
507
+ msgid "Click below to scan _barcodes"
508
+ msgstr "Clicca qui sotto per esaminare i _codici a barre"
509
+
510
+ #: ../lib/alexandria/ui/dialogs/bad_isbns_dialog.rb:24
511
+ msgid "There's a problem"
512
+ msgstr "Si è verificato un problema"
513
+
514
+ #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:30
515
+ msgid "New Smart Library"
516
+ msgstr "Nuova biblioteca intelligente"
517
+
518
+ #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:49
519
+ msgid "Smart Library"
520
+ msgstr "Biblioteca intelligente"
521
+
522
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:106
523
+ msgid "Preferences for %s"
524
+ msgstr "Preferenze per %s"
525
+
526
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:131
527
+ msgid "New Provider"
528
+ msgstr "Nuovo Provider"
529
+
530
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:146
531
+ msgid "_Name:"
532
+ msgstr "_Nome:"
533
+
534
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:158
535
+ msgid "_Type:"
536
+ msgstr "_Tipo:"
537
+
538
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:316
539
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
540
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
541
+ #, fuzzy
542
+ msgid "Disable Provider"
543
+ msgstr "Nuovo Provider"
544
+
545
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
546
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
547
+ #, fuzzy
548
+ msgid "Enable Provider"
549
+ msgstr "Nuovo Provider"
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 "Si è sicuri di voler cancellare definitivamente il provider '%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
+ "Il provider e tutte le sue preferenze verranno cancellati definitivamente."
561
+
562
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:36
563
+ msgid "Error while importing"
564
+ msgstr "Errore durante l'importazione"
565
+
566
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:39
567
+ msgid "_Continue"
568
+ msgstr "_Continua"
569
+
570
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:64
571
+ msgid "Import a Library"
572
+ msgstr "Importa una Biblioteca"
573
+
574
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:71
575
+ msgid "_Import"
576
+ msgstr "_Importa"
577
+
578
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:188
579
+ msgid "Couldn't import the library"
580
+ msgstr "Impossibile importare la biblioteca"
581
+
582
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:189
583
+ msgid ""
584
+ "The format of the file you provided is unknown. Please retry with another "
585
+ "file."
586
+ msgstr ""
587
+ "Il formato del file selezionato è sconosciuto. Si prega di provare con un "
588
+ "altro file."
589
+
590
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb:30
591
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:63
592
+ msgid "Properties for '%s'"
593
+ msgstr "Proprietà per %s"
594
+
595
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:83
596
+ msgid "Empty or conflictive condition"
597
+ msgstr "Condizione vuota o conflittuale "
598
+
599
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:86
600
+ msgid "_Save However"
601
+ msgstr "_Salva comunque"
602
+
603
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:87
604
+ msgid ""
605
+ "This smart library contains one or more conditions which are empty or "
606
+ "conflict with each other. This is likely to result in never matching a book. "
607
+ "Are you sure you want to save this library?"
608
+ msgstr ""
609
+ "Questa libreria intelligente contiene una o più condizioni vuote o in "
610
+ "conflitto con altre. Questo di solito succede quando non si è mai trovato un "
611
+ "riscontro per il libro. Siete sicuri di voler salvare questa biblioteca?"
612
+
613
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:106
614
+ msgid "Match"
615
+ msgstr "Corrisponde"
616
+
617
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
618
+ msgid "all"
619
+ msgstr "tutto"
620
+
621
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
622
+ msgid "any"
623
+ msgstr "niente"
624
+
625
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:119
626
+ msgid "of the following rules:"
627
+ msgstr "della seguente regola:"
628
+
629
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:127
630
+ msgid "Match the following rule:"
631
+ msgstr "Corrisponde alla seguente regola:"
632
+
633
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:114
634
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:123
635
+ msgid "Couldn't modify the book"
636
+ msgstr "Impossibile modificare il libro"
637
+
638
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:115
639
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:88
640
+ msgid "The EAN/ISBN you provided is already used in this library."
641
+ msgstr "Il codice EAN/ISBN fornito è già in uso in questa biblioteca."
642
+
643
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:124
644
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:94
645
+ msgid ""
646
+ "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
647
+ "correcty, and try again."
648
+ msgstr ""
649
+ "Impossibile convalidare il codice EAN/ISBN fornito. Assicurarsi di averlo "
650
+ "scritto correttamente e riprovare."
651
+
652
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:65
653
+ msgid "Properties"
654
+ msgstr "Proprietà"
655
+
656
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:71
657
+ msgid "Author"
658
+ msgstr "Autore"
659
+
660
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:123
661
+ msgid "Select a cover image"
662
+ msgstr "Seleziona un'immagine di copertina"
663
+
664
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:127
665
+ msgid "No Cover"
666
+ msgstr "Nessuna copertina"
667
+
668
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:186
669
+ msgid "%d day"
670
+ msgid_plural "%d days"
671
+ msgstr[0] "%d giorno"
672
+ msgstr[1] "%d giorni"
673
+
674
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:58
675
+ msgid "Adding '%s'"
676
+ msgstr "Aggiunta di '%s'"
677
+
678
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:60
679
+ #: ../data/alexandria/glade/new_book_dialog.glade:8
680
+ msgid "Adding a Book"
681
+ msgstr "Aggiungere un Libro"
682
+
683
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:81
684
+ msgid "A title must be provided."
685
+ msgstr "È obbligatorio fornire un titolo."
686
+
687
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:102
688
+ msgid "A publisher must be provided."
689
+ msgstr "È obbligatorio fornire un editore."
690
+
691
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:109
692
+ msgid "A binding must be provided."
693
+ msgstr "È obbligatorio specificare il tipo di rilegatura."
694
+
695
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:115
696
+ msgid "At least one author must be provided."
697
+ msgstr "È obbligatorio fornire almeno un autore."
698
+
699
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:142
700
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:523
701
+ msgid "Couldn't add the book"
702
+ msgstr "Impossibile aggiungere il libro"
703
+
704
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:25
705
+ msgid "File already exists"
706
+ msgstr "Il file esiste già"
707
+
708
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:28
709
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:30
710
+ msgid "_Replace"
711
+ msgstr "_Rimpiazza"
712
+
713
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:29
714
+ msgid ""
715
+ "A file named '%s' already exists. Do you want to replace it with the one "
716
+ "you are generating?"
717
+ msgstr ""
718
+ "Un file dal nome '%s' esiste già. Si desidera rimpiazzarlo con il nuovo file "
719
+ "generato?"
720
+
721
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:52
722
+ msgid "Export '%s'"
723
+ msgstr "Esporta '%s'"
724
+
725
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:58
726
+ msgid "_Export"
727
+ msgstr "_Esporta"
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 "cartella"
736
+
737
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:100
738
+ msgid "Export for_mat:"
739
+ msgstr "For_mato di esportazione:"
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
+ "La destinazione, chiamata '%s', è un file. Per questa operazione è "
747
+ "necessario specificare una cartella. Selezionare una cartella e riprovare. "
748
+
749
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:159
750
+ msgid "Not a directory"
751
+ msgstr "Non è una cartella"
752
+
753
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:32
754
+ msgid "Invalid ISBN '%s'"
755
+ msgstr "Codice ISBN '%s' non valido"
756
+
757
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:35
758
+ msgid "_Keep"
759
+ msgstr "_Conserva"
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
+ "Il libro dal titolo '%s' ha un codice ISBN non valido, ma esiste ancora "
768
+ "nella biblioteca del provider. Si desidera mantenere il libro, ma cambiare "
769
+ "il codice ISBN o cancellare l'operazione di aggiunta?"
770
+
771
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:182
772
+ msgid "A problem occurred while downloading images"
773
+ msgstr "Ci sono stati problemi durante lo scaricamento delle immagini"
774
+
775
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:304
776
+ msgid "Unable to find matches for your search"
777
+ msgstr "Impossibile trovare una corrispondenza per la ricerca"
778
+
779
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:310
780
+ msgid "%s, by %s"
781
+ msgstr "%s, di %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
+ "Impossibile convalidare il codice EAN/ISBN fornito. Assicurarsi di averlo "
789
+ "scritto correttamente e riprovare."
790
+
791
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:630
792
+ msgid "'%s' already exists in '%s' (titled '%s')."
793
+ msgstr "'%s' esiste già in '%s' (con il titolo '%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 "Il libro '%s' esiste già in '%s'. Si desidera rimpiazzarlo?"
798
+
799
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:29
800
+ msgid "_Skip"
801
+ msgstr "_Salta"
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 ""
806
+ "Rimpiazzando il libro esistente i suoi contenuti verranno sovrascritti."
807
+
808
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:50
809
+ msgid "Are you sure you want to delete '%s'?"
810
+ msgstr "Si è sicuri di voler eliminare definitivamente '%s'?"
811
+
812
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:58
813
+ msgid "If you continue, %d book will be deleted."
814
+ msgid_plural "If you continue, %d books will be deleted."
815
+ msgstr[0] "Se continuate, il libro %d verrà eliminato."
816
+ msgstr[1] "Se continuate, i libri %d verranno eliminati."
817
+
818
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:63
819
+ msgid "Are you sure you want to delete '%s' from '%s'?"
820
+ msgstr "Si è sicuri di voler cancellare definitivamente '%s' da '%s'?"
821
+
822
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:66
823
+ msgid "Are you sure you want to delete the selected books from '%s'?"
824
+ msgstr ""
825
+ "Si è sicuri di voler cancellare definitivamente i libri selezionati da '%s??"
826
+
827
+ #: ../lib/alexandria/ui/sidepane.rb:49
828
+ msgid "Invalid library name '%s'"
829
+ msgstr "Nome della biblioteca '%s' non valido"
830
+
831
+ #: ../lib/alexandria/ui/sidepane.rb:50
832
+ #, fuzzy
833
+ msgid "The name provided contains the disallowed character <b>%s</b> "
834
+ msgstr "Il nome fornito contiene il carattere non legale '<i>%s</i>'."
835
+
836
+ #: ../lib/alexandria/ui/sidepane.rb:53
837
+ #, fuzzy
838
+ msgid "Invalid library name"
839
+ msgstr "Nome della biblioteca '%s' non valido"
840
+
841
+ #: ../lib/alexandria/ui/sidepane.rb:54
842
+ #, fuzzy
843
+ msgid "The name provided contains invalid characters."
844
+ msgstr "Il nome fornito contiene il carattere non legale '<i>%s</i>'."
845
+
846
+ #: ../lib/alexandria/ui/sidepane.rb:60
847
+ msgid "The library name can not be empty"
848
+ msgstr "Il nome della biblioteca non può essere vuoto"
849
+
850
+ #: ../lib/alexandria/ui/sidepane.rb:65
851
+ msgid "The library can not be renamed"
852
+ msgstr "La bibliteca non può essere rinominata"
853
+
854
+ #: ../lib/alexandria/ui/sidepane.rb:66
855
+ msgid "There is already a library named '%s'. Please choose a different name."
856
+ msgstr "C'è già una bibloteca chiamata '%s'. Scegliere un nome diverso."
857
+
858
+ #: ../lib/alexandria/ui/sidepane.rb:92
859
+ msgid "Library"
860
+ msgstr "Biblioteca"
861
+
862
+ #: ../lib/alexandria/ui/libraries_combo.rb:44
863
+ msgid "New Library"
864
+ msgstr "Nuova Biblioteca"
865
+
866
+ #: ../lib/alexandria/ui/listview.rb:52 ../lib/alexandria/smart_library.rb:349
867
+ msgid "Title"
868
+ msgstr "Titolo"
869
+
870
+ #: ../lib/alexandria/ui/listview.rb:105 ../lib/alexandria/smart_library.rb:351
871
+ msgid "Authors"
872
+ msgstr "Autori"
873
+
874
+ #: ../lib/alexandria/ui/listview.rb:106 ../lib/alexandria/smart_library.rb:350
875
+ msgid "ISBN"
876
+ msgstr "ISBN"
877
+
878
+ #: ../lib/alexandria/ui/listview.rb:107 ../lib/alexandria/smart_library.rb:352
879
+ msgid "Publisher"
880
+ msgstr "Editore"
881
+
882
+ #: ../lib/alexandria/ui/listview.rb:108 ../lib/alexandria/smart_library.rb:353
883
+ msgid "Publish Year"
884
+ msgstr "Anno di pubblicazione"
885
+
886
+ #: ../lib/alexandria/ui/listview.rb:109 ../lib/alexandria/smart_library.rb:354
887
+ msgid "Binding"
888
+ msgstr "Rilegatura"
889
+
890
+ #: ../lib/alexandria/ui/listview.rb:110
891
+ #, fuzzy
892
+ msgid "Loaned To"
893
+ msgstr "Prestato"
894
+
895
+ #: ../lib/alexandria/ui/listview.rb:113 ../lib/alexandria/smart_library.rb:104
896
+ #: ../lib/alexandria/smart_library.rb:361
897
+ msgid "Read"
898
+ msgstr "Leggi"
899
+
900
+ #: ../lib/alexandria/ui/listview.rb:114 ../lib/alexandria/smart_library.rb:363
901
+ msgid "Own"
902
+ msgstr "Possiedi"
903
+
904
+ #: ../lib/alexandria/ui/listview.rb:115 ../lib/alexandria/smart_library.rb:364
905
+ msgid "Want"
906
+ msgstr "Vuoi"
907
+
908
+ #: ../lib/alexandria/ui/listview.rb:141 ../lib/alexandria/smart_library.rb:357
909
+ #: ../data/alexandria/glade/preferences_dialog.glade:421
910
+ msgid "Tags"
911
+ msgstr "Tags"
912
+
913
+ #: ../lib/alexandria/ui/listview.rb:166 ../lib/alexandria/smart_library.rb:355
914
+ msgid "Rating"
915
+ msgstr "Valutazione"
916
+
917
+ #: ../lib/alexandria/ui/init.rb:83
918
+ msgid "Unable to launch the help browser"
919
+ msgstr "Impossibile avviare il navigatore della guida"
920
+
921
+ #: ../lib/alexandria/ui/init.rb:84
922
+ msgid ""
923
+ "Could not display help for Alexandria. There was an error launching the "
924
+ "system help browser."
925
+ msgstr ""
926
+ "Impossibile visualizzare la guida di Alexandria. Si è verificato un errore "
927
+ "nell'avvio del browser della guida di sistema."
928
+
929
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:37
930
+ msgid "Locale"
931
+ msgstr "Lingua"
932
+
933
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:38
934
+ msgid "Access key ID"
935
+ msgstr ""
936
+
937
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:39
938
+ msgid "Secret access key"
939
+ msgstr ""
940
+
941
+ #: ../lib/alexandria/book_providers/mcu.rb:39
942
+ msgid "Spanish Culture Ministry"
943
+ msgstr "Ministero della Cultura spagnolo"
944
+
945
+ #: ../lib/alexandria/book_providers/z3950.rb:34
946
+ msgid "Hostname"
947
+ msgstr "Nome host"
948
+
949
+ #: ../lib/alexandria/book_providers/z3950.rb:35
950
+ msgid "Port"
951
+ msgstr "Porta"
952
+
953
+ #: ../lib/alexandria/book_providers/z3950.rb:36
954
+ msgid "Database"
955
+ msgstr "Database"
956
+
957
+ #: ../lib/alexandria/book_providers/z3950.rb:37
958
+ msgid "Record syntax"
959
+ msgstr "Formato del record"
960
+
961
+ #: ../lib/alexandria/book_providers/z3950.rb:38
962
+ msgid "Username"
963
+ msgstr "Nome utente"
964
+
965
+ #: ../lib/alexandria/book_providers/z3950.rb:39
966
+ msgid "Password"
967
+ msgstr "Password"
968
+
969
+ #: ../lib/alexandria/book_providers/z3950.rb:40
970
+ msgid "Charset encoding"
971
+ msgstr "Codifica caratteri"
972
+
973
+ #: ../lib/alexandria/book_providers/z3950.rb:221
974
+ msgid "Library of Congress (Usa)"
975
+ msgstr "Library of Congress (USA)"
976
+
977
+ #: ../lib/alexandria/book_providers/z3950.rb:255
978
+ msgid "British Library"
979
+ msgstr "British Library"
980
+
981
+ #: ../lib/alexandria/export_library.rb:109
982
+ msgid "Archived ONIX XML"
983
+ msgstr "Archivio ONIX XML"
984
+
985
+ #: ../lib/alexandria/export_library.rb:111
986
+ msgid "Archived Tellico XML"
987
+ msgstr "Archivio Tellico XML"
988
+
989
+ #: ../lib/alexandria/export_library.rb:113
990
+ msgid "BibTeX"
991
+ msgstr "BibTeX"
992
+
993
+ #: ../lib/alexandria/export_library.rb:114
994
+ msgid "CSV list"
995
+ msgstr "Lista CSV"
996
+
997
+ #: ../lib/alexandria/export_library.rb:115
998
+ msgid "ISBN List"
999
+ msgstr "Elenco di ISBN"
1000
+
1001
+ #: ../lib/alexandria/export_library.rb:116
1002
+ msgid "iPod Notes"
1003
+ msgstr "Note dell'iPod"
1004
+
1005
+ #: ../lib/alexandria/export_library.rb:117
1006
+ msgid "HTML Web Page"
1007
+ msgstr "Pagina Web HTML"
1008
+
1009
+ #: ../lib/alexandria/smart_library.rb:92
1010
+ msgid "Favorite"
1011
+ msgstr "Preferiti"
1012
+
1013
+ #: ../lib/alexandria/smart_library.rb:98
1014
+ msgid "Loaned"
1015
+ msgstr "Prestato"
1016
+
1017
+ #: ../lib/alexandria/smart_library.rb:110
1018
+ msgid "Owned"
1019
+ msgstr "Posseduto"
1020
+
1021
+ #: ../lib/alexandria/smart_library.rb:119
1022
+ msgid "Wishlist"
1023
+ msgstr "Lista dei desideri"
1024
+
1025
+ #: ../lib/alexandria/smart_library.rb:356
1026
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1225
1027
+ msgid "Notes"
1028
+ msgstr "Note"
1029
+
1030
+ #: ../lib/alexandria/smart_library.rb:358
1031
+ msgid "Loaning State"
1032
+ msgstr "Stato del prestito"
1033
+
1034
+ #: ../lib/alexandria/smart_library.rb:359
1035
+ msgid "Loaning Date"
1036
+ msgstr "Data del prestito"
1037
+
1038
+ #: ../lib/alexandria/smart_library.rb:360
1039
+ msgid "Loaning Person"
1040
+ msgstr "Persona del prestito"
1041
+
1042
+ #: ../lib/alexandria/smart_library.rb:362
1043
+ msgid "Date Read"
1044
+ msgstr "Data di lettura"
1045
+
1046
+ #: ../lib/alexandria/smart_library.rb:371
1047
+ msgid "days"
1048
+ msgstr "giorni"
1049
+
1050
+ #: ../lib/alexandria/smart_library.rb:382
1051
+ msgid "is set"
1052
+ msgstr "è impostato"
1053
+
1054
+ #: ../lib/alexandria/smart_library.rb:386
1055
+ msgid "is not set"
1056
+ msgstr "non è impostato"
1057
+
1058
+ #: ../lib/alexandria/smart_library.rb:390
1059
+ msgid "is"
1060
+ msgstr "è"
1061
+
1062
+ #: ../lib/alexandria/smart_library.rb:394
1063
+ msgid "is not"
1064
+ msgstr "non è"
1065
+
1066
+ #: ../lib/alexandria/smart_library.rb:398
1067
+ msgid "contains"
1068
+ msgstr "contiene"
1069
+
1070
+ #: ../lib/alexandria/smart_library.rb:402
1071
+ msgid "does not contain"
1072
+ msgstr "non contiene"
1073
+
1074
+ #: ../lib/alexandria/smart_library.rb:406
1075
+ msgid "starts with"
1076
+ msgstr "inizia con"
1077
+
1078
+ #: ../lib/alexandria/smart_library.rb:410
1079
+ msgid "ends with"
1080
+ msgstr "finisce con"
1081
+
1082
+ #: ../lib/alexandria/smart_library.rb:414
1083
+ msgid "is greater than"
1084
+ msgstr "è più grande di"
1085
+
1086
+ #: ../lib/alexandria/smart_library.rb:418
1087
+ msgid "is less than"
1088
+ msgstr "è meno di"
1089
+
1090
+ #: ../lib/alexandria/smart_library.rb:422
1091
+ msgid "is after"
1092
+ msgstr "è dopo"
1093
+
1094
+ #: ../lib/alexandria/smart_library.rb:426
1095
+ msgid "is before"
1096
+ msgstr "è prima"
1097
+
1098
+ #: ../lib/alexandria/smart_library.rb:430
1099
+ msgid "is in last"
1100
+ msgstr "è nell'ultimo"
1101
+
1102
+ #: ../lib/alexandria/smart_library.rb:450
1103
+ msgid "is not in last"
1104
+ msgstr "non è nell'ultimo"
1105
+
1106
+ #: ../lib/alexandria/book_providers.rb:87
1107
+ msgid "Couldn't reach the provider '%s': timeout expired."
1108
+ msgstr "Impossibile raggiungere il provider '%s': tempo scaduto."
1109
+
1110
+ #: ../lib/alexandria/book_providers.rb:91
1111
+ msgid "Couldn't reach the provider '%s': socket error (%s)."
1112
+ msgstr "Impossibile raggiungere il provider '%s': errore del socket (%s)."
1113
+
1114
+ #: ../lib/alexandria/book_providers.rb:95
1115
+ #: ../lib/alexandria/book_providers.rb:100
1116
+ msgid ""
1117
+ "No results were found. Make sure your search criterion is spelled "
1118
+ "correctly, and try again."
1119
+ msgstr ""
1120
+ "Nessun risultato. Controllare di aver scritto correttamente il criterio di "
1121
+ "ricerca e riprovare."
1122
+
1123
+ #: ../lib/alexandria/book_providers.rb:105
1124
+ msgid "Too many results for that search."
1125
+ msgstr "Troppi risultati per questa ricerca."
1126
+
1127
+ #: ../lib/alexandria/book_providers.rb:108
1128
+ msgid "Invalid search type."
1129
+ msgstr "Tipo di ricerca non valido."
1130
+
1131
+ #: ../lib/alexandria/book_providers.rb:203
1132
+ msgid "Enabled"
1133
+ msgstr ""
1134
+
1135
+ #: ../data/alexandria/glade/acquire_dialog.glade:9
1136
+ msgid "Acquire from Scanner"
1137
+ msgstr "Acquisici con lo scanner"
1138
+
1139
+ #: ../data/alexandria/glade/acquire_dialog.glade:87
1140
+ #: ../data/alexandria/glade/new_book_dialog.glade:90
1141
+ msgid "Save _in:"
1142
+ msgstr "Salva _in:"
1143
+
1144
+ #: ../data/alexandria/glade/main_app.glade:17
1145
+ msgid "Main Window"
1146
+ msgstr "Finestra principale"
1147
+
1148
+ #: ../data/alexandria/glade/main_app.glade:32
1149
+ msgid "Libraries listing."
1150
+ msgstr "Elenco bliblioteche in corso."
1151
+
1152
+ #: ../data/alexandria/glade/main_app.glade:46
1153
+ msgid "_Libraries:"
1154
+ msgstr "Bib_lioteche:"
1155
+
1156
+ #: ../data/alexandria/glade/main_app.glade:111
1157
+ msgid "Book listing."
1158
+ msgstr "Elenco libri in corso."
1159
+
1160
+ #: ../data/alexandria/glade/main_app.glade:194
1161
+ msgid "Status messages."
1162
+ msgstr "Messaggi di stato."
1163
+
1164
+ #: ../data/alexandria/glade/new_book_dialog.glade:31
1165
+ msgid "_Keep Dialog Open after Adding Book"
1166
+ msgstr ""
1167
+
1168
+ #: ../data/alexandria/glade/new_book_dialog.glade:114
1169
+ msgid ""
1170
+ "by title\n"
1171
+ "by authors\n"
1172
+ "by keyword"
1173
+ msgstr ""
1174
+ "per titolo\n"
1175
+ "per autore\n"
1176
+ "per parola chiave"
1177
+
1178
+ #: ../data/alexandria/glade/new_book_dialog.glade:201
1179
+ msgid "_Search:"
1180
+ msgstr "_Cerca:"
1181
+
1182
+ #: ../data/alexandria/glade/new_book_dialog.glade:219
1183
+ #: ../data/alexandria/glade/book_properties_dialog.glade:187
1184
+ msgid "_ISBN:"
1185
+ msgstr "_ISBN:"
1186
+
1187
+ #: ../data/alexandria/glade/book_properties_dialog.glade:86
1188
+ msgid "_Title:"
1189
+ msgstr "_Titolo:"
1190
+
1191
+ #: ../data/alexandria/glade/book_properties_dialog.glade:115
1192
+ msgid "_Publisher:"
1193
+ msgstr "_Editore:"
1194
+
1195
+ #: ../data/alexandria/glade/book_properties_dialog.glade:279
1196
+ msgid "Add an author"
1197
+ msgstr "Aggiungi un autore"
1198
+
1199
+ #: ../data/alexandria/glade/book_properties_dialog.glade:307
1200
+ msgid "Remove an author"
1201
+ msgstr "Togli un autore"
1202
+
1203
+ #: ../data/alexandria/glade/book_properties_dialog.glade:351
1204
+ msgid "_Authors:"
1205
+ msgstr "_Autori:"
1206
+
1207
+ #: ../data/alexandria/glade/book_properties_dialog.glade:380
1208
+ msgid "_Binding:"
1209
+ msgstr "_Rilegatura:"
1210
+
1211
+ #: ../data/alexandria/glade/book_properties_dialog.glade:430
1212
+ msgid "Publish _year:"
1213
+ msgstr "Anno di _pubblicazione:"
1214
+
1215
+ #: ../data/alexandria/glade/book_properties_dialog.glade:480
1216
+ msgid "Tags:"
1217
+ msgstr "Tags:"
1218
+
1219
+ #: ../data/alexandria/glade/book_properties_dialog.glade:553
1220
+ msgid "_Cover:"
1221
+ msgstr "_Copertina:"
1222
+
1223
+ #: ../data/alexandria/glade/book_properties_dialog.glade:579
1224
+ msgid "Click to pick a cover"
1225
+ msgstr "Clicca per selezionare una copertina"
1226
+
1227
+ #: ../data/alexandria/glade/book_properties_dialog.glade:620
1228
+ msgid "Own it?"
1229
+ msgstr "Possederlo?"
1230
+
1231
+ #: ../data/alexandria/glade/book_properties_dialog.glade:646
1232
+ msgid "Read it?"
1233
+ msgstr "Leggerlo?"
1234
+
1235
+ #: ../data/alexandria/glade/book_properties_dialog.glade:695
1236
+ msgid "Want it?"
1237
+ msgstr "Lo vuoi?"
1238
+
1239
+ #: ../data/alexandria/glade/book_properties_dialog.glade:721
1240
+ msgid "Click on the stars to rate the book"
1241
+ msgstr "Clicca sulle stelle per valutare il libro"
1242
+
1243
+ #: ../data/alexandria/glade/book_properties_dialog.glade:927
1244
+ msgid "Rating:"
1245
+ msgstr "Valutazione:"
1246
+
1247
+ #: ../data/alexandria/glade/book_properties_dialog.glade:967
1248
+ msgid "General"
1249
+ msgstr "Generale"
1250
+
1251
+ #: ../data/alexandria/glade/book_properties_dialog.glade:998
1252
+ msgid "This book is _loaned"
1253
+ msgstr "Questo libro è in prestito"
1254
+
1255
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1076
1256
+ msgid "_To:"
1257
+ msgstr "_A:"
1258
+
1259
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1106
1260
+ msgid "_Since:"
1261
+ msgstr "_Dal:"
1262
+
1263
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1166
1264
+ msgid "Loaning"
1265
+ msgstr "Prestito"
1266
+
1267
+ #: ../data/alexandria/glade/preferences_dialog.glade:7
1268
+ msgid "Preferences"
1269
+ msgstr "Preferenze"
1270
+
1271
+ #: ../data/alexandria/glade/preferences_dialog.glade:27
1272
+ #, fuzzy
1273
+ msgid "<b>Book Data Providers</b>"
1274
+ msgstr "<b>_Provider</b>"
1275
+
1276
+ #: ../data/alexandria/glade/preferences_dialog.glade:99
1277
+ msgid "_Setup"
1278
+ msgstr "_Configurazione"
1279
+
1280
+ #: ../data/alexandria/glade/preferences_dialog.glade:198
1281
+ msgid ""
1282
+ "Providers are libraries that supply information about books. Some of them "
1283
+ "can be configured to get better results. You can also customize the order "
1284
+ "in which they are queried."
1285
+ msgstr ""
1286
+ "I Provider sono biblioteche e librerie che forniscono informazioni sui "
1287
+ "libri. Alcuni possono essere configurati per ottenere risultati migliori. È "
1288
+ "anche possibile personalizzare l'ordine in cui vengono interrogati."
1289
+
1290
+ #: ../data/alexandria/glade/preferences_dialog.glade:209
1291
+ msgid "Custom _Z39.50 Providers"
1292
+ msgstr ""
1293
+
1294
+ #: ../data/alexandria/glade/preferences_dialog.glade:213
1295
+ msgid ""
1296
+ "Add and remove your own Z39.50 providers.\n"
1297
+ "Requires the Ruby/ZOOM software library."
1298
+ msgstr ""
1299
+
1300
+ #: ../data/alexandria/glade/preferences_dialog.glade:235
1301
+ #, fuzzy
1302
+ msgid "_Providers"
1303
+ msgstr "Provider"
1304
+
1305
+ #: ../data/alexandria/glade/preferences_dialog.glade:252
1306
+ msgid "<b>Visible Columns</b>"
1307
+ msgstr "<b>Colonne Visibili</b>"
1308
+
1309
+ #: ../data/alexandria/glade/preferences_dialog.glade:270
1310
+ msgid "_Authors"
1311
+ msgstr "_Autori"
1312
+
1313
+ #: ../data/alexandria/glade/preferences_dialog.glade:285
1314
+ msgid "_ISBN"
1315
+ msgstr "_ISBN"
1316
+
1317
+ #: ../data/alexandria/glade/preferences_dialog.glade:302
1318
+ msgid "_Publisher"
1319
+ msgstr "_Editore"
1320
+
1321
+ #: ../data/alexandria/glade/preferences_dialog.glade:319
1322
+ msgid "_Rating"
1323
+ msgstr "_Valutazione"
1324
+
1325
+ #: ../data/alexandria/glade/preferences_dialog.glade:336
1326
+ msgid "_Binding"
1327
+ msgstr "_Rilegatura"
1328
+
1329
+ #: ../data/alexandria/glade/preferences_dialog.glade:353
1330
+ msgid "Publish _year"
1331
+ msgstr "Anno di _pubblicazione"
1332
+
1333
+ #: ../data/alexandria/glade/preferences_dialog.glade:370
1334
+ msgid "Read?"
1335
+ msgstr "Leggere?"
1336
+
1337
+ #: ../data/alexandria/glade/preferences_dialog.glade:387
1338
+ msgid "Own?"
1339
+ msgstr "Possiedi?"
1340
+
1341
+ #: ../data/alexandria/glade/preferences_dialog.glade:404
1342
+ msgid "Want?"
1343
+ msgstr "Vuoi?"
1344
+
1345
+ #: ../data/alexandria/glade/preferences_dialog.glade:438
1346
+ #, fuzzy
1347
+ msgid "Loaned to"
1348
+ msgstr "Prestato"
1349
+
1350
+ #: ../data/alexandria/glade/preferences_dialog.glade:465
1351
+ #, fuzzy
1352
+ msgid "_List View"
1353
+ msgstr "Vista ad elenco"
1354
+
1355
+ #: ../alexandria.desktop.in.h:1
1356
+ msgid "Alexandria Book Collection Manager"
1357
+ msgstr "Alexandria - Gestione biblioteca"
1358
+
1359
+ #: ../alexandria.desktop.in.h:2
1360
+ msgid "Book Collection Manager"
1361
+ msgstr "Gestore biblioteca"
1362
+
1363
+ #: ../alexandria.desktop.in.h:3
1364
+ msgid "Manage your book collection"
1365
+ msgstr "Gestisce la vostra biblioteca"
1366
+
1367
+ #~ msgid "Language"
1368
+ #~ msgstr "Lingua"
1369
+
1370
+ #~ msgid "_Advanced Settings"
1371
+ #~ msgstr "Impostazioni _avanzate"
1372
+
1373
+ #~ msgid "Development token"
1374
+ #~ msgstr "Token di sviluppo"
1375
+
1376
+ #, fuzzy
1377
+ #~ msgid "Couldn't add these books"
1378
+ #~ msgstr "Impossibile aggiungere il libro"
1379
+
1380
+ #~ msgid "Associate ID"
1381
+ #~ msgstr "ID associato"
1382
+
1383
+ #~ msgid "_Refresh"
1384
+ #~ msgstr "_Aggiorna"
1385
+
1386
+ #~ msgid "n/a"
1387
+ #~ msgstr "n.d."
1388
+
1389
+ #~ msgid "Library _name:"
1390
+ #~ msgstr "_Nome della biblioteca:"
1391
+
1392
+ #~ msgid "Are you sure you want to permanently delete '%s' which has %d book?"
1393
+ #~ msgid_plural ""
1394
+ #~ "Are you sure you want to permanently delete '%s' which has %d books?"
1395
+ #~ msgstr[0] ""
1396
+ #~ "Si è sicuri di voler cancellare definitivamente '%s' che contiene %d "
1397
+ #~ "libro?"
1398
+ #~ msgstr[1] ""
1399
+ #~ "Si è sicuri di voler cancellare definitivamente '%s' che contiene %d "
1400
+ #~ "libri?"
1401
+
1402
+ #~ msgid "_New"
1403
+ #~ msgstr "_Nuovo"
1404
+
1405
+ #~ msgid "Couldn't validate the scanner input"
1406
+ #~ msgstr "Impossibile validare l'input dello scanner"