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,1398 @@
1
+ # Alexandria in Portuguese
2
+ # Copyright (C) 2005, 2007, 2008 Ligia Moreira <ligia.moreira@netvisao.pt>
3
+ # This file is distributed under the same license as the Alexandria package
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: alexandria 0.6.3\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "POT-Creation-Date: 2010-08-13 04:41+0100\n"
10
+ "PO-Revision-Date: 2008-07-30 22:20-0000\n"
11
+ "Last-Translator: Ligia Moreira <ligia.moreira@netvisao.pt >\n"
12
+ "Language-Team: Lígia Moreira <ligia.moreira@netvisao.pt>\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=n>1;\n"
17
+ "X-Generator: KBabel 1.11.4\n"
18
+ "X-Poedit-Language: Portuguese\n"
19
+ "X-Poedit-Country: PORTUGAL\n"
20
+
21
+ #: ../lib/alexandria/import_library.rb:30
22
+ msgid "Autodetect"
23
+ msgstr "Detecção automática"
24
+
25
+ #: ../lib/alexandria/import_library.rb:31
26
+ msgid "Archived Tellico XML (*.bc, *.tc)"
27
+ msgstr "Arquivo Tellico XML (*.bc, *.tc)"
28
+
29
+ #: ../lib/alexandria/import_library.rb:33
30
+ msgid "ISBN List (*.txt)"
31
+ msgstr "Lista de ISBNs (*.txt)"
32
+
33
+ #: ../lib/alexandria/import_library.rb:35
34
+ msgid "GoodReads CSV"
35
+ msgstr ""
36
+
37
+ #: ../lib/alexandria/models/library.rb:56
38
+ msgid "Untitled"
39
+ msgstr "Sem Tí­tulo "
40
+
41
+ #: ../lib/alexandria/models/library.rb:245
42
+ msgid "My Library"
43
+ msgstr "A minha Biblioteca"
44
+
45
+ #: ../lib/alexandria/about.rb:24
46
+ msgid "A program to help you manage your book collection."
47
+ msgstr "Um programa para o ajudar a gerir a sua colecção de livros."
48
+
49
+ #: ../lib/alexandria/ui/ui_manager.rb:135
50
+ msgid "Type here the search criterion"
51
+ msgstr "Insira aqui os critérios da pesquisa"
52
+
53
+ #: ../lib/alexandria/ui/ui_manager.rb:148
54
+ msgid "Match everything"
55
+ msgstr "Fazer todas as correspondências "
56
+
57
+ #: ../lib/alexandria/ui/ui_manager.rb:150
58
+ msgid "Title contains"
59
+ msgstr "O título contém"
60
+
61
+ #: ../lib/alexandria/ui/ui_manager.rb:151
62
+ msgid "Authors contain"
63
+ msgstr "Os autores contêm"
64
+
65
+ #: ../lib/alexandria/ui/ui_manager.rb:152
66
+ msgid "ISBN contains"
67
+ msgstr "O ISBN contém"
68
+
69
+ #: ../lib/alexandria/ui/ui_manager.rb:153
70
+ msgid "Publisher contains"
71
+ msgstr "O Editor contém"
72
+
73
+ #: ../lib/alexandria/ui/ui_manager.rb:154
74
+ msgid "Notes contain"
75
+ msgstr "As anotações contêm"
76
+
77
+ #: ../lib/alexandria/ui/ui_manager.rb:155
78
+ msgid "Tags contain"
79
+ msgstr "As etiquetas contêm"
80
+
81
+ #: ../lib/alexandria/ui/ui_manager.rb:170
82
+ msgid "Change the search type"
83
+ msgstr "Altere o tipo de pesquisa"
84
+
85
+ #: ../lib/alexandria/ui/ui_manager.rb:175
86
+ msgid "View as Icons"
87
+ msgstr "Ver como í­cones"
88
+
89
+ #: ../lib/alexandria/ui/ui_manager.rb:176
90
+ msgid "View as List"
91
+ msgstr "Ver como lista"
92
+
93
+ #: ../lib/alexandria/ui/ui_manager.rb:189
94
+ msgid "Choose how to show books"
95
+ msgstr "Escolha como ver os livros"
96
+
97
+ #: ../lib/alexandria/ui/ui_manager.rb:436
98
+ msgid "Library '%s' selected"
99
+ msgstr "Biblioteca '%s' seleccionada"
100
+
101
+ #: ../lib/alexandria/ui/ui_manager.rb:443
102
+ msgid "Library '%s' selected, %d unrated book"
103
+ msgid_plural "Library '%s' selected, %d unrated books"
104
+ msgstr[0] "Biblioteca '%s' seleccionada, %d livro não classificado"
105
+ msgstr[1] "Biblioteca '%s' seleccionada, %d livros não classificados"
106
+
107
+ #: ../lib/alexandria/ui/ui_manager.rb:448
108
+ msgid "Library '%s' selected, %d book"
109
+ msgid_plural "Library '%s' selected, %d books"
110
+ msgstr[0] "Biblioteca '%s' seleccionada, %d livro"
111
+ msgstr[1] "Biblioteca '%s' seleccionada, %d livros"
112
+
113
+ #: ../lib/alexandria/ui/ui_manager.rb:455
114
+ msgid "Library '%s' selected, %d book, %d unrated"
115
+ msgid_plural "Library '%s' selected, %d books, %d unrated"
116
+ msgstr[0] "Biblioteca '%s' seleccionada, %d livro, %d não classificado"
117
+ msgstr[1] "Biblioteca '%s' seleccionada, %d livros, %d não classificados"
118
+
119
+ #: ../lib/alexandria/ui/ui_manager.rb:467
120
+ msgid "'%s' selected"
121
+ msgstr "'%s' seleccionado"
122
+
123
+ #: ../lib/alexandria/ui/ui_manager.rb:470
124
+ msgid "%d book selected"
125
+ msgid_plural "%d books selected"
126
+ msgstr[0] "%d livro seleccionado"
127
+ msgstr[1] "%d livros seleccionados"
128
+
129
+ #: ../lib/alexandria/ui/ui_manager.rb:648
130
+ msgid "Unable to launch the web browser"
131
+ msgstr "Não consegue ligar-se à  internet"
132
+
133
+ #: ../lib/alexandria/ui/ui_manager.rb:649
134
+ msgid ""
135
+ "Check out that a web browser is configured as default (Desktop Preferences -"
136
+ "> Advanced -> Preferred Applications) and try again."
137
+ msgstr ""
138
+ "Verifique se o browser está configurado por omissão (Preferências do Desktop "
139
+ "- > Avançadas -> Aplicações preferidas) e tente novamente."
140
+
141
+ #: ../lib/alexandria/ui/ui_manager.rb:661
142
+ msgid "Unable to launch the mail reader"
143
+ msgstr "Não consegue iniciar o cliente de mail"
144
+
145
+ #: ../lib/alexandria/ui/ui_manager.rb:662
146
+ msgid ""
147
+ "Check out that a mail reader is configured as default (Desktop Preferences -"
148
+ "> Advanced -> Preferred Applications) and try again."
149
+ msgstr ""
150
+ "Verifique se o cliente de mail está configurado por omissão (Preferências do "
151
+ "Desktop - > Avançadas -> Aplicações preferidas) e tente novamente."
152
+
153
+ #: ../lib/alexandria/ui/ui_manager.rb:697
154
+ msgid "Repair Book Data"
155
+ msgstr "Reparar os dados do Livro"
156
+
157
+ #: ../lib/alexandria/ui/ui_manager.rb:698
158
+ msgid ""
159
+ "The data files for the following books are malformed or empty. Do you wish "
160
+ "to attempt to download new information for them from the online book "
161
+ "providers?\n"
162
+ msgstr ""
163
+ "Os ficheiros de dados para os livros que se seguem estão danificados ou "
164
+ "vazios. Deseja tentar o download de nova informação para eles a partir dos "
165
+ "fornecedores de livros, na internet?\n"
166
+
167
+ #: ../lib/alexandria/ui/ui_manager.rb:755
168
+ msgid "Added '%s' to library '%s'"
169
+ msgstr "Adicionados '%s' à biblioteca '%s'"
170
+
171
+ #: ../lib/alexandria/ui/ui_manager.rb:908
172
+ msgid "Loading '%s'..."
173
+ msgstr "A adicionar '%s'..."
174
+
175
+ #: ../lib/alexandria/ui/ui_manager.rb:1157
176
+ msgid "In '_%s'"
177
+ msgstr "Em '_%s'"
178
+
179
+ #: ../lib/alexandria/ui/callbacks.rb:65
180
+ msgid "The following lines are not valid ISBNs and were not imported:"
181
+ msgstr "As linhas que se seguem não são ISBN válidos e não foram imortados:"
182
+
183
+ #: ../lib/alexandria/ui/callbacks.rb:122
184
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:128
185
+ msgid "Export failed"
186
+ msgstr "A exportação falhou"
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 "_Biblioteca"
195
+
196
+ #: ../lib/alexandria/ui/callbacks.rb:275
197
+ msgid "_New Library"
198
+ msgstr "_Nova biblioteca"
199
+
200
+ #: ../lib/alexandria/ui/callbacks.rb:275
201
+ msgid "Create a new library"
202
+ msgstr "Criar uma nova biblioteca"
203
+
204
+ #: ../lib/alexandria/ui/callbacks.rb:276
205
+ msgid "New _Smart Library..."
206
+ msgstr "Nova_biblioteca inteligente..."
207
+
208
+ #: ../lib/alexandria/ui/callbacks.rb:276
209
+ msgid "Create a new smart library"
210
+ msgstr "Criar uma nova biblioteca inteligente"
211
+
212
+ #: ../lib/alexandria/ui/callbacks.rb:277
213
+ msgid "_Add Book..."
214
+ msgstr "_Adicionar um livro..."
215
+
216
+ #: ../lib/alexandria/ui/callbacks.rb:277
217
+ msgid "Add a new book from the Internet"
218
+ msgstr "Adicionar um novo livro tirado da internet"
219
+
220
+ #: ../lib/alexandria/ui/callbacks.rb:278
221
+ msgid "Add Book _Manually..."
222
+ msgstr "Adicionar _manualmente um livro..."
223
+
224
+ #: ../lib/alexandria/ui/callbacks.rb:278
225
+ msgid "Add a new book manually"
226
+ msgstr "Adicionar manualmente um livro"
227
+
228
+ #: ../lib/alexandria/ui/callbacks.rb:279
229
+ msgid "_Import..."
230
+ msgstr "_Importar..."
231
+
232
+ #: ../lib/alexandria/ui/callbacks.rb:279
233
+ msgid "Import a library"
234
+ msgstr "Fazer a importação de uma biblioteca"
235
+
236
+ #: ../lib/alexandria/ui/callbacks.rb:280
237
+ msgid "_Export..."
238
+ msgstr "_Exportar..."
239
+
240
+ #: ../lib/alexandria/ui/callbacks.rb:280
241
+ msgid "Export the selected library"
242
+ msgstr "Exportar uma biblioteca seleccionada"
243
+
244
+ #: ../lib/alexandria/ui/callbacks.rb:281
245
+ msgid "_Acquire from Scanner..."
246
+ msgstr "_Utilizar o scanner..."
247
+
248
+ #: ../lib/alexandria/ui/callbacks.rb:281
249
+ msgid "Acquire books from a scanner"
250
+ msgstr "Utilização de scanner"
251
+
252
+ #: ../lib/alexandria/ui/callbacks.rb:282
253
+ msgid "_Properties"
254
+ msgstr "_Propriedades"
255
+
256
+ #: ../lib/alexandria/ui/callbacks.rb:282
257
+ msgid "Edit the properties of the selected book"
258
+ msgstr "Editar as propriedades do livro seleccionado"
259
+
260
+ #: ../lib/alexandria/ui/callbacks.rb:283
261
+ msgid "_Quit"
262
+ msgstr "_Sair"
263
+
264
+ #: ../lib/alexandria/ui/callbacks.rb:283
265
+ msgid "Quit the program"
266
+ msgstr "Sair do programa"
267
+
268
+ #: ../lib/alexandria/ui/callbacks.rb:284
269
+ msgid "_Edit"
270
+ msgstr "_Editar"
271
+
272
+ #: ../lib/alexandria/ui/callbacks.rb:285
273
+ msgid "_Undo"
274
+ msgstr "_Anular"
275
+
276
+ #: ../lib/alexandria/ui/callbacks.rb:285
277
+ msgid "Undo the last action"
278
+ msgstr "Anular a última acção"
279
+
280
+ #: ../lib/alexandria/ui/callbacks.rb:286
281
+ msgid "_Redo"
282
+ msgstr "_Repetir"
283
+
284
+ #: ../lib/alexandria/ui/callbacks.rb:286
285
+ msgid "Redo the undone action"
286
+ msgstr "Repetir a acção anulada"
287
+
288
+ #: ../lib/alexandria/ui/callbacks.rb:287
289
+ msgid "_Select All"
290
+ msgstr "_Seleccionar tudo"
291
+
292
+ #: ../lib/alexandria/ui/callbacks.rb:287
293
+ msgid "Select all visible books"
294
+ msgstr "Seleccionar todos os livros visíveis"
295
+
296
+ #: ../lib/alexandria/ui/callbacks.rb:288
297
+ msgid "Dese_lect All"
298
+ msgstr "_Apagar toda a selecção"
299
+
300
+ #: ../lib/alexandria/ui/callbacks.rb:288
301
+ msgid "Deselect everything"
302
+ msgstr "Apagar tudo"
303
+
304
+ #: ../lib/alexandria/ui/callbacks.rb:289
305
+ msgid "My _Rating"
306
+ msgstr "A minha _Classificação"
307
+
308
+ #: ../lib/alexandria/ui/callbacks.rb:290
309
+ msgid "None"
310
+ msgstr "Nenhuma"
311
+
312
+ #: ../lib/alexandria/ui/callbacks.rb:291
313
+ msgid "One Star"
314
+ msgstr "Uma estrela"
315
+
316
+ #: ../lib/alexandria/ui/callbacks.rb:292
317
+ msgid "Two Stars"
318
+ msgstr "Duas estrelas"
319
+
320
+ #: ../lib/alexandria/ui/callbacks.rb:293
321
+ msgid "Three Stars"
322
+ msgstr "Três estrelas"
323
+
324
+ #: ../lib/alexandria/ui/callbacks.rb:294
325
+ msgid "Four Stars"
326
+ msgstr "Quatro estrelas"
327
+
328
+ #: ../lib/alexandria/ui/callbacks.rb:295
329
+ msgid "Five Stars"
330
+ msgstr "Cinco estrelas"
331
+
332
+ #: ../lib/alexandria/ui/callbacks.rb:296
333
+ msgid "_Move"
334
+ msgstr "_Mudar para"
335
+
336
+ #: ../lib/alexandria/ui/callbacks.rb:297
337
+ msgid "_Rename"
338
+ msgstr "_Renomear"
339
+
340
+ #: ../lib/alexandria/ui/callbacks.rb:298
341
+ msgid "_Delete"
342
+ msgstr "_Apagar"
343
+
344
+ #: ../lib/alexandria/ui/callbacks.rb:298
345
+ msgid "Delete the selected books or library"
346
+ msgstr "Apagar os livros seleccionados ou a biblioteca"
347
+
348
+ #: ../lib/alexandria/ui/callbacks.rb:299
349
+ msgid "_Search"
350
+ msgstr "_Pesquisar"
351
+
352
+ #: ../lib/alexandria/ui/callbacks.rb:299
353
+ msgid "Filter books"
354
+ msgstr "Filtrar livros"
355
+
356
+ #: ../lib/alexandria/ui/callbacks.rb:300
357
+ msgid "_Clear Results"
358
+ msgstr "_Apagar os resultados"
359
+
360
+ #: ../lib/alexandria/ui/callbacks.rb:300
361
+ msgid "Clear the search results"
362
+ msgstr "Apagar os resultados"
363
+
364
+ #: ../lib/alexandria/ui/callbacks.rb:301
365
+ msgid "_Preferences"
366
+ msgstr "_Preferências"
367
+
368
+ #: ../lib/alexandria/ui/callbacks.rb:301
369
+ msgid "Change Alexandria's settings"
370
+ msgstr "Alterar os parâmetros do Alexandria"
371
+
372
+ #: ../lib/alexandria/ui/callbacks.rb:302
373
+ msgid "_View"
374
+ msgstr "_Ver"
375
+
376
+ #: ../lib/alexandria/ui/callbacks.rb:303
377
+ msgid "Arran_ge Icons"
378
+ msgstr "_Ordenar os ícones"
379
+
380
+ #: ../lib/alexandria/ui/callbacks.rb:304
381
+ msgid "Display Online _Information"
382
+ msgstr "Mostrar a _informação Online"
383
+
384
+ #: ../lib/alexandria/ui/callbacks.rb:306
385
+ msgid "_Help"
386
+ msgstr "_Ajuda"
387
+
388
+ #: ../lib/alexandria/ui/callbacks.rb:307
389
+ msgid "Submit _Bug Report"
390
+ msgstr "Enviar _relatório de erro"
391
+
392
+ #: ../lib/alexandria/ui/callbacks.rb:307
393
+ msgid "Submit a bug report to the developers"
394
+ msgstr "Enviar relatório de erro aos desenvolvedores"
395
+
396
+ #: ../lib/alexandria/ui/callbacks.rb:308
397
+ msgid "Contents"
398
+ msgstr "Notas"
399
+
400
+ #: ../lib/alexandria/ui/callbacks.rb:308
401
+ msgid "View Alexandria's manual"
402
+ msgstr "Ver o manual do Alexandria"
403
+
404
+ #: ../lib/alexandria/ui/callbacks.rb:309
405
+ msgid "_About"
406
+ msgstr "A _propósito"
407
+
408
+ #: ../lib/alexandria/ui/callbacks.rb:309
409
+ msgid "Show information about Alexandria"
410
+ msgstr "Mostrar informação sobre o Alexandria"
411
+
412
+ #: ../lib/alexandria/ui/callbacks.rb:334
413
+ msgid "Side _Pane"
414
+ msgstr "_Painel lateral"
415
+
416
+ #: ../lib/alexandria/ui/callbacks.rb:336
417
+ msgid "_Toolbar"
418
+ msgstr "_Barra de Ferramentas"
419
+
420
+ #: ../lib/alexandria/ui/callbacks.rb:338
421
+ msgid "_Statusbar"
422
+ msgstr "_Statusbar"
423
+
424
+ #: ../lib/alexandria/ui/callbacks.rb:340
425
+ msgid "Re_versed Order"
426
+ msgstr "_Ordem inversa"
427
+
428
+ #: ../lib/alexandria/ui/callbacks.rb:345
429
+ msgid "View as _Icons"
430
+ msgstr "Ver como _ícones"
431
+
432
+ #: ../lib/alexandria/ui/callbacks.rb:346
433
+ msgid "View as _List"
434
+ msgstr "Ver como _lista"
435
+
436
+ #: ../lib/alexandria/ui/callbacks.rb:350
437
+ msgid "By _Title"
438
+ msgstr "Por _Título"
439
+
440
+ #: ../lib/alexandria/ui/callbacks.rb:351
441
+ msgid "By _Authors"
442
+ msgstr "Por _Autores"
443
+
444
+ #: ../lib/alexandria/ui/callbacks.rb:352
445
+ msgid "By _ISBN"
446
+ msgstr "Por _ISBN"
447
+
448
+ #: ../lib/alexandria/ui/callbacks.rb:353
449
+ msgid "By _Publisher"
450
+ msgstr "Por _Editor"
451
+
452
+ #: ../lib/alexandria/ui/callbacks.rb:354
453
+ msgid "By _Binding"
454
+ msgstr "Por _Edição"
455
+
456
+ #: ../lib/alexandria/ui/callbacks.rb:355
457
+ msgid "By _Rating"
458
+ msgstr "Por _Classificação"
459
+
460
+ #: ../lib/alexandria/ui/callbacks.rb:359
461
+ msgid "At _%s"
462
+ msgstr "Sobre _%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] "Não consegue adicionar o livro"
475
+ msgstr[1] "Não consegue adicionar o livro"
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 "_Scanner de barra de códigos pronto"
505
+
506
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:640
507
+ msgid "Click below to scan _barcodes"
508
+ msgstr "Clique em baixo para fazer o scanner das barras de código"
509
+
510
+ #: ../lib/alexandria/ui/dialogs/bad_isbns_dialog.rb:24
511
+ msgid "There's a problem"
512
+ msgstr "Há um problema"
513
+
514
+ #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:30
515
+ msgid "New Smart Library"
516
+ msgstr "Nova biblioteca inteligente"
517
+
518
+ #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:49
519
+ msgid "Smart Library"
520
+ msgstr "Biblioteca inteligente"
521
+
522
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:106
523
+ msgid "Preferences for %s"
524
+ msgstr "Preferências para %s"
525
+
526
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:131
527
+ msgid "New Provider"
528
+ msgstr "Novo Fornecedor"
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 "Novo Fornecedor"
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 "Novo Fornecedor"
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 "Quer mesmo apagar definitivamente o fornecedor '%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
+ "Se continuar, o fornecedor e o conteúdo da selecção serão apagados "
561
+ "permanentemente."
562
+
563
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:36
564
+ msgid "Error while importing"
565
+ msgstr "Erro de importação"
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 uma 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 "Impossí­vel importar o livro"
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
+ "O formato do ficheiro que forneceu é desconhecido. Queira tentar novamente "
589
+ "com um outro ficheiro."
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 "Propriedades para %s"
595
+
596
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:83
597
+ msgid "Empty or conflictive condition"
598
+ msgstr "Vazio ou em estado de conflito"
599
+
600
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:86
601
+ msgid "_Save However"
602
+ msgstr "_Gravar, ainda assim"
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 contém uma ou várias condições que estão vazias "
611
+ "ou em conflito entre elas. Isso é causado provavelmente por um livro que "
612
+ "nunca terá correspondência. Tem a certeza que quer gravar esta biblioteca ?"
613
+
614
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:106
615
+ msgid "Match"
616
+ msgstr "Corresponde"
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 "nenhumas"
625
+
626
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:119
627
+ msgid "of the following rules:"
628
+ msgstr "das regras seguintes:"
629
+
630
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:127
631
+ msgid "Match the following rule:"
632
+ msgstr "Corresponde à regra seguinte:"
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 "Impossí­vel editar as propriedades do livro"
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 "O EAN/ISBN fornecido já foi utilizado nesta 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
+ "Impossí­vel validar o EAN/ISBN. Verifique se está escrito correctamente, e "
651
+ "tente de novo."
652
+
653
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:65
654
+ msgid "Properties"
655
+ msgstr "Propriedades"
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 uma imagem de capa"
664
+
665
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:127
666
+ msgid "No Cover"
667
+ msgstr "Nenhuma capa"
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 dia"
673
+ msgstr[1] "%d dias"
674
+
675
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:58
676
+ msgid "Adding '%s'"
677
+ msgstr "A adicionar '%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 "Entrada de um livro"
683
+
684
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:81
685
+ msgid "A title must be provided."
686
+ msgstr "Deve ser dado um tí­tulo."
687
+
688
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:102
689
+ msgid "A publisher must be provided."
690
+ msgstr "Deve ser indicado um editor."
691
+
692
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:109
693
+ msgid "A binding must be provided."
694
+ msgstr "Deve ser indicada uma edição."
695
+
696
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:115
697
+ msgid "At least one author must be provided."
698
+ msgstr "Deve ser indicado pelo menos, um 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 "Não consegue adicionar o livro"
704
+
705
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:25
706
+ msgid "File already exists"
707
+ msgstr "O ficheiro já 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 "_Substituir"
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
+ "Já existe no sistema um ficheiro chamado '%s'. Quer substituí­-lo pelo que "
720
+ "está a criar?"
721
+
722
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:52
723
+ msgid "Export '%s'"
724
+ msgstr "Exportar '%s'"
725
+
726
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:58
727
+ msgid "_Export"
728
+ msgstr "_Exportar"
729
+
730
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:77
731
+ msgid "_Theme:"
732
+ msgstr "_Tema:"
733
+
734
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:87
735
+ msgid "directory"
736
+ msgstr "directoria"
737
+
738
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:100
739
+ msgid "Export for_mat:"
740
+ msgstr "For_mato de exportação:"
741
+
742
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:155
743
+ msgid ""
744
+ "The target, named '%s', is a regular file. A directory is needed for this "
745
+ "operation. Please select a directory and try again."
746
+ msgstr ""
747
+ "O objecto, chamado '%s', é um ficheiro regular. É necessária uma directoria "
748
+ "para esta operação. Queira seleccionar uma directoria e tentar novamente."
749
+
750
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:159
751
+ msgid "Not a directory"
752
+ msgstr "Directoria necessária"
753
+
754
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:32
755
+ msgid "Invalid ISBN '%s'"
756
+ msgstr "ISBN '%s' inválido"
757
+
758
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:35
759
+ msgid "_Keep"
760
+ msgstr "_Manter"
761
+
762
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:36
763
+ msgid ""
764
+ "The book titled '%s' has an invalid ISBN, but still exists in the providers "
765
+ "libraries. Do you want to keep the book but change the ISBN or cancel the "
766
+ "add?"
767
+ msgstr ""
768
+ "O livro chamado '%s' tem um ISBN inválido, mas existe nas bibliotecas dos "
769
+ "fornecedores. Deseja manter o livro, modificando o ISBN ou anular a entrada?"
770
+
771
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:182
772
+ msgid "A problem occurred while downloading images"
773
+ msgstr "Ocorreu um erro ao fazer o download das imagens"
774
+
775
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:304
776
+ msgid "Unable to find matches for your search"
777
+ msgstr "Não consegue encontrar as correspondências para a sua pesquisa"
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
+ "Impossí­vel validar o EAN/ISBN fornecido. Verifique se o número está "
789
+ "correctamente escrito e tente de novo."
790
+
791
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:630
792
+ msgid "'%s' already exists in '%s' (titled '%s')."
793
+ msgstr "'%s' já existe em '%s' (intitulado '%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 "O livro '%s' já existe em '%s'. Quer substituí­-lo?"
798
+
799
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:29
800
+ msgid "_Skip"
801
+ msgstr "_Passar"
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 "Se substituir o livro existente, o seu conteúdo será apagado."
806
+
807
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:50
808
+ msgid "Are you sure you want to delete '%s'?"
809
+ msgstr "Tem a certeza que quer apagar definitivamente'%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] "Se continuar, %d será apagado definitivamente."
815
+ msgstr[1] "Se continuar, o conteúdo da selecção será apagado permanentemente."
816
+
817
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:63
818
+ msgid "Are you sure you want to delete '%s' from '%s'?"
819
+ msgstr "Tem a certeza que quer mesmo apagar definitivamente '%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 ""
824
+ "Tem a certeza que quer mesmo apagar definitivamente os livros seleccionados "
825
+ "de '%s'?"
826
+
827
+ #: ../lib/alexandria/ui/sidepane.rb:49
828
+ msgid "Invalid library name '%s'"
829
+ msgstr "Nome de biblioteca inválido '%s'"
830
+
831
+ #: ../lib/alexandria/ui/sidepane.rb:50
832
+ #, fuzzy
833
+ msgid "The name provided contains the disallowed character <b>%s</b> "
834
+ msgstr "O nome inserido contem o caractere inválido '<i>%s</i>'."
835
+
836
+ #: ../lib/alexandria/ui/sidepane.rb:53
837
+ #, fuzzy
838
+ msgid "Invalid library name"
839
+ msgstr "Nome de biblioteca inválido '%s'"
840
+
841
+ #: ../lib/alexandria/ui/sidepane.rb:54
842
+ #, fuzzy
843
+ msgid "The name provided contains invalid characters."
844
+ msgstr "O nome inserido contem o caractere inválido '<i>%s</i>'."
845
+
846
+ #: ../lib/alexandria/ui/sidepane.rb:60
847
+ msgid "The library name can not be empty"
848
+ msgstr "O nome da biblioteca não pode estar em branco"
849
+
850
+ #: ../lib/alexandria/ui/sidepane.rb:65
851
+ msgid "The library can not be renamed"
852
+ msgstr "A biblioteca não pode ser renomeada"
853
+
854
+ #: ../lib/alexandria/ui/sidepane.rb:66
855
+ msgid "There is already a library named '%s'. Please choose a different name."
856
+ msgstr ""
857
+ "Já existe uma biblioteca com o nome '%s'. Queira escolher um nome diferente."
858
+
859
+ #: ../lib/alexandria/ui/sidepane.rb:92
860
+ msgid "Library"
861
+ msgstr "Biblioteca"
862
+
863
+ #: ../lib/alexandria/ui/libraries_combo.rb:44
864
+ msgid "New Library"
865
+ msgstr "Nova Biblioteca"
866
+
867
+ #: ../lib/alexandria/ui/listview.rb:52 ../lib/alexandria/smart_library.rb:349
868
+ msgid "Title"
869
+ msgstr "Tí­tulo"
870
+
871
+ #: ../lib/alexandria/ui/listview.rb:105 ../lib/alexandria/smart_library.rb:351
872
+ msgid "Authors"
873
+ msgstr "Autores"
874
+
875
+ #: ../lib/alexandria/ui/listview.rb:106 ../lib/alexandria/smart_library.rb:350
876
+ msgid "ISBN"
877
+ msgstr "ISBN"
878
+
879
+ #: ../lib/alexandria/ui/listview.rb:107 ../lib/alexandria/smart_library.rb:352
880
+ msgid "Publisher"
881
+ msgstr "Editor"
882
+
883
+ #: ../lib/alexandria/ui/listview.rb:108 ../lib/alexandria/smart_library.rb:353
884
+ msgid "Publish Year"
885
+ msgstr "Ano de publicação"
886
+
887
+ #: ../lib/alexandria/ui/listview.rb:109 ../lib/alexandria/smart_library.rb:354
888
+ msgid "Binding"
889
+ msgstr "Edição"
890
+
891
+ #: ../lib/alexandria/ui/listview.rb:110
892
+ #, fuzzy
893
+ msgid "Loaned To"
894
+ msgstr "Emprestado"
895
+
896
+ #: ../lib/alexandria/ui/listview.rb:113 ../lib/alexandria/smart_library.rb:104
897
+ #: ../lib/alexandria/smart_library.rb:361
898
+ msgid "Read"
899
+ msgstr "Lido"
900
+
901
+ #: ../lib/alexandria/ui/listview.rb:114 ../lib/alexandria/smart_library.rb:363
902
+ msgid "Own"
903
+ msgstr "Proprietário"
904
+
905
+ #: ../lib/alexandria/ui/listview.rb:115 ../lib/alexandria/smart_library.rb:364
906
+ msgid "Want"
907
+ msgstr "Procurado"
908
+
909
+ #: ../lib/alexandria/ui/listview.rb:141 ../lib/alexandria/smart_library.rb:357
910
+ #: ../data/alexandria/glade/preferences_dialog.glade:421
911
+ msgid "Tags"
912
+ msgstr "Etiquetas"
913
+
914
+ #: ../lib/alexandria/ui/listview.rb:166 ../lib/alexandria/smart_library.rb:355
915
+ msgid "Rating"
916
+ msgstr "Classificação"
917
+
918
+ #: ../lib/alexandria/ui/init.rb:83
919
+ msgid "Unable to launch the help browser"
920
+ msgstr "Não consegue carregar a ajuda do browser"
921
+
922
+ #: ../lib/alexandria/ui/init.rb:84
923
+ msgid ""
924
+ "Could not display help for Alexandria. There was an error launching the "
925
+ "system help browser."
926
+ msgstr ""
927
+ "Não consegue disponibilizar ajuda para o Alexandria. Há um erro ao carregar "
928
+ "o sistema de ajuda do browser."
929
+
930
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:37
931
+ msgid "Locale"
932
+ msgstr "Local"
933
+
934
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:38
935
+ msgid "Access key ID"
936
+ msgstr ""
937
+
938
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:39
939
+ msgid "Secret access key"
940
+ msgstr ""
941
+
942
+ #: ../lib/alexandria/book_providers/mcu.rb:39
943
+ msgid "Spanish Culture Ministry"
944
+ msgstr "Ministério da Cultura Espanhola"
945
+
946
+ #: ../lib/alexandria/book_providers/z3950.rb:34
947
+ msgid "Hostname"
948
+ msgstr "Nome do anfitrião"
949
+
950
+ #: ../lib/alexandria/book_providers/z3950.rb:35
951
+ msgid "Port"
952
+ msgstr "Porto"
953
+
954
+ #: ../lib/alexandria/book_providers/z3950.rb:36
955
+ msgid "Database"
956
+ msgstr "Base de dados"
957
+
958
+ #: ../lib/alexandria/book_providers/z3950.rb:37
959
+ msgid "Record syntax"
960
+ msgstr "Registo de sintaxe"
961
+
962
+ #: ../lib/alexandria/book_providers/z3950.rb:38
963
+ msgid "Username"
964
+ msgstr "Utilizador"
965
+
966
+ #: ../lib/alexandria/book_providers/z3950.rb:39
967
+ msgid "Password"
968
+ msgstr "Palavra-passe"
969
+
970
+ #: ../lib/alexandria/book_providers/z3950.rb:40
971
+ msgid "Charset encoding"
972
+ msgstr "Caracteres de codificação"
973
+
974
+ #: ../lib/alexandria/book_providers/z3950.rb:221
975
+ msgid "Library of Congress (Usa)"
976
+ msgstr "Biblioteca do Congresso (Usa)"
977
+
978
+ #: ../lib/alexandria/book_providers/z3950.rb:255
979
+ msgid "British Library"
980
+ msgstr "Biblioteca Britânica"
981
+
982
+ #: ../lib/alexandria/export_library.rb:109
983
+ msgid "Archived ONIX XML"
984
+ msgstr "Arquivo ONIX XML"
985
+
986
+ #: ../lib/alexandria/export_library.rb:111
987
+ msgid "Archived Tellico XML"
988
+ msgstr "Arquivo Tellico XML"
989
+
990
+ #: ../lib/alexandria/export_library.rb:113
991
+ msgid "BibTeX"
992
+ msgstr "BibTeX"
993
+
994
+ #: ../lib/alexandria/export_library.rb:114
995
+ msgid "CSV list"
996
+ msgstr "Lista CVS"
997
+
998
+ #: ../lib/alexandria/export_library.rb:115
999
+ msgid "ISBN List"
1000
+ msgstr "Lista de ISBNs"
1001
+
1002
+ #: ../lib/alexandria/export_library.rb:116
1003
+ msgid "iPod Notes"
1004
+ msgstr "Notas do iPod"
1005
+
1006
+ #: ../lib/alexandria/export_library.rb:117
1007
+ msgid "HTML Web Page"
1008
+ msgstr "Página Web HTML"
1009
+
1010
+ #: ../lib/alexandria/smart_library.rb:92
1011
+ msgid "Favorite"
1012
+ msgstr "Favoritos"
1013
+
1014
+ #: ../lib/alexandria/smart_library.rb:98
1015
+ msgid "Loaned"
1016
+ msgstr "Emprestado"
1017
+
1018
+ #: ../lib/alexandria/smart_library.rb:110
1019
+ msgid "Owned"
1020
+ msgstr "Propriedade de"
1021
+
1022
+ #: ../lib/alexandria/smart_library.rb:119
1023
+ msgid "Wishlist"
1024
+ msgstr "Lista requisitada"
1025
+
1026
+ #: ../lib/alexandria/smart_library.rb:356
1027
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1225
1028
+ msgid "Notes"
1029
+ msgstr "Notas"
1030
+
1031
+ #: ../lib/alexandria/smart_library.rb:358
1032
+ msgid "Loaning State"
1033
+ msgstr "Situação do empréstimo"
1034
+
1035
+ #: ../lib/alexandria/smart_library.rb:359
1036
+ msgid "Loaning Date"
1037
+ msgstr "Data do empréstimo"
1038
+
1039
+ #: ../lib/alexandria/smart_library.rb:360
1040
+ msgid "Loaning Person"
1041
+ msgstr "Requisitante"
1042
+
1043
+ #: ../lib/alexandria/smart_library.rb:362
1044
+ msgid "Date Read"
1045
+ msgstr "Data da Leitura"
1046
+
1047
+ #: ../lib/alexandria/smart_library.rb:371
1048
+ msgid "days"
1049
+ msgstr "dias"
1050
+
1051
+ #: ../lib/alexandria/smart_library.rb:382
1052
+ msgid "is set"
1053
+ msgstr "está definido"
1054
+
1055
+ #: ../lib/alexandria/smart_library.rb:386
1056
+ msgid "is not set"
1057
+ msgstr "não está definido"
1058
+
1059
+ #: ../lib/alexandria/smart_library.rb:390
1060
+ msgid "is"
1061
+ msgstr "está"
1062
+
1063
+ #: ../lib/alexandria/smart_library.rb:394
1064
+ msgid "is not"
1065
+ msgstr "não está"
1066
+
1067
+ #: ../lib/alexandria/smart_library.rb:398
1068
+ msgid "contains"
1069
+ msgstr "contém"
1070
+
1071
+ #: ../lib/alexandria/smart_library.rb:402
1072
+ msgid "does not contain"
1073
+ msgstr "não contém"
1074
+
1075
+ #: ../lib/alexandria/smart_library.rb:406
1076
+ msgid "starts with"
1077
+ msgstr "começa por"
1078
+
1079
+ #: ../lib/alexandria/smart_library.rb:410
1080
+ msgid "ends with"
1081
+ msgstr "acaba por"
1082
+
1083
+ #: ../lib/alexandria/smart_library.rb:414
1084
+ msgid "is greater than"
1085
+ msgstr "é maior do que"
1086
+
1087
+ #: ../lib/alexandria/smart_library.rb:418
1088
+ msgid "is less than"
1089
+ msgstr "é menos do que"
1090
+
1091
+ #: ../lib/alexandria/smart_library.rb:422
1092
+ msgid "is after"
1093
+ msgstr "está depois de"
1094
+
1095
+ #: ../lib/alexandria/smart_library.rb:426
1096
+ msgid "is before"
1097
+ msgstr "está antes de"
1098
+
1099
+ #: ../lib/alexandria/smart_library.rb:430
1100
+ msgid "is in last"
1101
+ msgstr "está em último"
1102
+
1103
+ #: ../lib/alexandria/smart_library.rb:450
1104
+ msgid "is not in last"
1105
+ msgstr "não está em último"
1106
+
1107
+ #: ../lib/alexandria/book_providers.rb:87
1108
+ msgid "Couldn't reach the provider '%s': timeout expired."
1109
+ msgstr "Não consegue contactar o fornecedor '%s': Expirou o tempo de ligação."
1110
+
1111
+ #: ../lib/alexandria/book_providers.rb:91
1112
+ msgid "Couldn't reach the provider '%s': socket error (%s)."
1113
+ msgstr "Não consegue contactar o fornecedor '%s': erro socket (%s)."
1114
+
1115
+ #: ../lib/alexandria/book_providers.rb:95
1116
+ #: ../lib/alexandria/book_providers.rb:100
1117
+ msgid ""
1118
+ "No results were found. Make sure your search criterion is spelled "
1119
+ "correctly, and try again."
1120
+ msgstr ""
1121
+ "Nenhum resultado encontrado. Verifique a ortografia dos critérios da "
1122
+ "pesquisa, e tente novamente."
1123
+
1124
+ #: ../lib/alexandria/book_providers.rb:105
1125
+ msgid "Too many results for that search."
1126
+ msgstr "Demasiados resultados para esta pesquisa."
1127
+
1128
+ #: ../lib/alexandria/book_providers.rb:108
1129
+ msgid "Invalid search type."
1130
+ msgstr "Tipo de pesquisa inválida."
1131
+
1132
+ #: ../lib/alexandria/book_providers.rb:203
1133
+ msgid "Enabled"
1134
+ msgstr ""
1135
+
1136
+ #: ../data/alexandria/glade/acquire_dialog.glade:9
1137
+ msgid "Acquire from Scanner"
1138
+ msgstr "Utilizar o scanner"
1139
+
1140
+ #: ../data/alexandria/glade/acquire_dialog.glade:87
1141
+ #: ../data/alexandria/glade/new_book_dialog.glade:90
1142
+ msgid "Save _in:"
1143
+ msgstr "Gravar em:"
1144
+
1145
+ #: ../data/alexandria/glade/main_app.glade:17
1146
+ msgid "Main Window"
1147
+ msgstr "Janela principal"
1148
+
1149
+ #: ../data/alexandria/glade/main_app.glade:32
1150
+ msgid "Libraries listing."
1151
+ msgstr "Lista de bibliotecas."
1152
+
1153
+ #: ../data/alexandria/glade/main_app.glade:46
1154
+ msgid "_Libraries:"
1155
+ msgstr "_Bibliotecas:"
1156
+
1157
+ #: ../data/alexandria/glade/main_app.glade:111
1158
+ msgid "Book listing."
1159
+ msgstr "Lista de livros."
1160
+
1161
+ #: ../data/alexandria/glade/main_app.glade:194
1162
+ msgid "Status messages."
1163
+ msgstr "Estatuto das mensagens."
1164
+
1165
+ #: ../data/alexandria/glade/new_book_dialog.glade:31
1166
+ msgid "_Keep Dialog Open after Adding Book"
1167
+ msgstr ""
1168
+
1169
+ #: ../data/alexandria/glade/new_book_dialog.glade:114
1170
+ #, fuzzy
1171
+ msgid ""
1172
+ "by title\n"
1173
+ "by authors\n"
1174
+ "by keyword"
1175
+ msgstr ""
1176
+ "por título\n"
1177
+ "por autores\n"
1178
+ "por palavra-chave"
1179
+
1180
+ #: ../data/alexandria/glade/new_book_dialog.glade:201
1181
+ msgid "_Search:"
1182
+ msgstr "_Pesquisar"
1183
+
1184
+ #: ../data/alexandria/glade/new_book_dialog.glade:219
1185
+ #: ../data/alexandria/glade/book_properties_dialog.glade:187
1186
+ msgid "_ISBN:"
1187
+ msgstr "_ISBN:"
1188
+
1189
+ #: ../data/alexandria/glade/book_properties_dialog.glade:86
1190
+ msgid "_Title:"
1191
+ msgstr "_Título:"
1192
+
1193
+ #: ../data/alexandria/glade/book_properties_dialog.glade:115
1194
+ msgid "_Publisher:"
1195
+ msgstr "_Editor:"
1196
+
1197
+ #: ../data/alexandria/glade/book_properties_dialog.glade:279
1198
+ msgid "Add an author"
1199
+ msgstr "Adicionar um autor"
1200
+
1201
+ #: ../data/alexandria/glade/book_properties_dialog.glade:307
1202
+ msgid "Remove an author"
1203
+ msgstr "Apagar um autor"
1204
+
1205
+ #: ../data/alexandria/glade/book_properties_dialog.glade:351
1206
+ msgid "_Authors:"
1207
+ msgstr "_Autores:"
1208
+
1209
+ #: ../data/alexandria/glade/book_properties_dialog.glade:380
1210
+ msgid "_Binding:"
1211
+ msgstr "_Edição:"
1212
+
1213
+ #: ../data/alexandria/glade/book_properties_dialog.glade:430
1214
+ msgid "Publish _year:"
1215
+ msgstr "Ano de_publicação:"
1216
+
1217
+ #: ../data/alexandria/glade/book_properties_dialog.glade:480
1218
+ msgid "Tags:"
1219
+ msgstr "Etiquetas:"
1220
+
1221
+ #: ../data/alexandria/glade/book_properties_dialog.glade:553
1222
+ msgid "_Cover:"
1223
+ msgstr "_Capa:"
1224
+
1225
+ #: ../data/alexandria/glade/book_properties_dialog.glade:579
1226
+ msgid "Click to pick a cover"
1227
+ msgstr "Clicar para obter uma capa"
1228
+
1229
+ #: ../data/alexandria/glade/book_properties_dialog.glade:620
1230
+ msgid "Own it?"
1231
+ msgstr "É seu proprietário?"
1232
+
1233
+ #: ../data/alexandria/glade/book_properties_dialog.glade:646
1234
+ msgid "Read it?"
1235
+ msgstr "Lê-o?"
1236
+
1237
+ #: ../data/alexandria/glade/book_properties_dialog.glade:695
1238
+ msgid "Want it?"
1239
+ msgstr "Quere-lo?"
1240
+
1241
+ #: ../data/alexandria/glade/book_properties_dialog.glade:721
1242
+ msgid "Click on the stars to rate the book"
1243
+ msgstr "Clique nas estrelas para classificar o livro"
1244
+
1245
+ #: ../data/alexandria/glade/book_properties_dialog.glade:927
1246
+ msgid "Rating:"
1247
+ msgstr "Classificação:"
1248
+
1249
+ #: ../data/alexandria/glade/book_properties_dialog.glade:967
1250
+ msgid "General"
1251
+ msgstr "Geral"
1252
+
1253
+ #: ../data/alexandria/glade/book_properties_dialog.glade:998
1254
+ msgid "This book is _loaned"
1255
+ msgstr "Este livro está _emprestado"
1256
+
1257
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1076
1258
+ msgid "_To:"
1259
+ msgstr "_A:"
1260
+
1261
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1106
1262
+ msgid "_Since:"
1263
+ msgstr "_Desde:"
1264
+
1265
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1166
1266
+ msgid "Loaning"
1267
+ msgstr "Empréstimo"
1268
+
1269
+ #: ../data/alexandria/glade/preferences_dialog.glade:7
1270
+ msgid "Preferences"
1271
+ msgstr "Preferências"
1272
+
1273
+ #: ../data/alexandria/glade/preferences_dialog.glade:27
1274
+ #, fuzzy
1275
+ msgid "<b>Book Data Providers</b>"
1276
+ msgstr "<b>_Fornecedores</b>"
1277
+
1278
+ #: ../data/alexandria/glade/preferences_dialog.glade:99
1279
+ msgid "_Setup"
1280
+ msgstr "_Configurar"
1281
+
1282
+ #: ../data/alexandria/glade/preferences_dialog.glade:198
1283
+ msgid ""
1284
+ "Providers are libraries that supply information about books. Some of them "
1285
+ "can be configured to get better results. You can also customize the order "
1286
+ "in which they are queried."
1287
+ msgstr ""
1288
+ "Os fornecedores são bibliotecas que partilham informações sobre livros. "
1289
+ "Algumas delas podem ser configuradas para se obter melhores resultados. "
1290
+ "Pode igualmente personalizar a ordem pela qual são chamadas."
1291
+
1292
+ #: ../data/alexandria/glade/preferences_dialog.glade:209
1293
+ msgid "Custom _Z39.50 Providers"
1294
+ msgstr ""
1295
+
1296
+ #: ../data/alexandria/glade/preferences_dialog.glade:213
1297
+ msgid ""
1298
+ "Add and remove your own Z39.50 providers.\n"
1299
+ "Requires the Ruby/ZOOM software library."
1300
+ msgstr ""
1301
+
1302
+ #: ../data/alexandria/glade/preferences_dialog.glade:235
1303
+ #, fuzzy
1304
+ msgid "_Providers"
1305
+ msgstr "Fornecedores"
1306
+
1307
+ #: ../data/alexandria/glade/preferences_dialog.glade:252
1308
+ msgid "<b>Visible Columns</b>"
1309
+ msgstr "<b>Colunas visí­veis</b>"
1310
+
1311
+ #: ../data/alexandria/glade/preferences_dialog.glade:270
1312
+ msgid "_Authors"
1313
+ msgstr "_Autores"
1314
+
1315
+ #: ../data/alexandria/glade/preferences_dialog.glade:285
1316
+ msgid "_ISBN"
1317
+ msgstr "_ISBN"
1318
+
1319
+ #: ../data/alexandria/glade/preferences_dialog.glade:302
1320
+ msgid "_Publisher"
1321
+ msgstr "_Editor"
1322
+
1323
+ #: ../data/alexandria/glade/preferences_dialog.glade:319
1324
+ msgid "_Rating"
1325
+ msgstr "_Classificação"
1326
+
1327
+ #: ../data/alexandria/glade/preferences_dialog.glade:336
1328
+ msgid "_Binding"
1329
+ msgstr "_Edição"
1330
+
1331
+ #: ../data/alexandria/glade/preferences_dialog.glade:353
1332
+ msgid "Publish _year"
1333
+ msgstr "Ano de _publicação"
1334
+
1335
+ #: ../data/alexandria/glade/preferences_dialog.glade:370
1336
+ msgid "Read?"
1337
+ msgstr "Lê?"
1338
+
1339
+ #: ../data/alexandria/glade/preferences_dialog.glade:387
1340
+ msgid "Own?"
1341
+ msgstr "Possui?"
1342
+
1343
+ #: ../data/alexandria/glade/preferences_dialog.glade:404
1344
+ msgid "Want?"
1345
+ msgstr "Quer?"
1346
+
1347
+ #: ../data/alexandria/glade/preferences_dialog.glade:438
1348
+ #, fuzzy
1349
+ msgid "Loaned to"
1350
+ msgstr "Emprestado"
1351
+
1352
+ #: ../data/alexandria/glade/preferences_dialog.glade:465
1353
+ #, fuzzy
1354
+ msgid "_List View"
1355
+ msgstr "Ver como lista"
1356
+
1357
+ #: ../alexandria.desktop.in.h:1
1358
+ msgid "Alexandria Book Collection Manager"
1359
+ msgstr "Gestor da Colecção de Livros Alexandria"
1360
+
1361
+ #: ../alexandria.desktop.in.h:2
1362
+ msgid "Book Collection Manager"
1363
+ msgstr "Gestor da Colecção de Livros"
1364
+
1365
+ #: ../alexandria.desktop.in.h:3
1366
+ msgid "Manage your book collection"
1367
+ msgstr "Faça a gestão da sua colecção de livros"
1368
+
1369
+ #~ msgid "Language"
1370
+ #~ msgstr "Língua"
1371
+
1372
+ #~ msgid "_Advanced Settings"
1373
+ #~ msgstr "_Configuração Avançada"
1374
+
1375
+ #~ msgid "Development token"
1376
+ #~ msgstr "Token de desenvolvimento"
1377
+
1378
+ #, fuzzy
1379
+ #~ msgid "Couldn't add these books"
1380
+ #~ msgstr "Não consegue adicionar o livro"
1381
+
1382
+ #~ msgid "Associate ID"
1383
+ #~ msgstr "Identidade de associado"
1384
+
1385
+ #~ msgid ""
1386
+ #~ "These books do not conform to the ISBN-13 standard. We will attempt to "
1387
+ #~ "replace them from the book providers. Otherwise, we will turn them into "
1388
+ #~ "manual entries.\n"
1389
+ #~ msgstr ""
1390
+ #~ "Estes livros não estão em conformidade com o ISBN-13 normalizado. "
1391
+ #~ "Tentaremos substituí-los através dos fornecedores. De outra forma, "
1392
+ #~ "transformá-los-emos em entradas manuais.\n"
1393
+
1394
+ #~ msgid "_Refresh"
1395
+ #~ msgstr "_Renovar"
1396
+
1397
+ #~ msgid "Reload the selected library"
1398
+ #~ msgstr "Renovar a biblioteca seleccionada"