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,1409 @@
1
+ # Alexandria in Brazilian Portuguese
2
+ # Copyright (C) 2005 Lucas Rocha <lucasr@im.ufba.br>
3
+ # Copyright (C) 2008 Ligia Moreira <ligia.moreira@netvisao.pt>
4
+ # This file is distributed under the same license as the Alexandria package
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: alexandria 0.6.3\n"
9
+ "Report-Msgid-Bugs-To: \n"
10
+ "POT-Creation-Date: 2010-08-13 04:41+0100\n"
11
+ "PO-Revision-Date: 2008-07-30 22:21-0000\n"
12
+ "Last-Translator: Ligia Moreira <ligia.moreira@netvisao.pt >\n"
13
+ "Language-Team: Lígia Moreira <ligia.moreira@netvisao.pt>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=2; plural=n>1;\n"
18
+ "X-Poedit-Language: Portuguese_Brazilian\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 "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 gerenciar a sua coleção de livros."
48
+
49
+ #: ../lib/alexandria/ui/ui_manager.rb:135
50
+ msgid "Type here the search criterion"
51
+ msgstr "Escreva aqui os critérios da pesquisa"
52
+
53
+ #: ../lib/alexandria/ui/ui_manager.rb:148
54
+ msgid "Match everything"
55
+ msgstr "Corresponder tudo"
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 "Modifique 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 mostrar os livros"
96
+
97
+ #: ../lib/alexandria/ui/ui_manager.rb:436
98
+ msgid "Library '%s' selected"
99
+ msgstr "Biblioteca '%s' selecionada"
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' selecionada, %d livro não classificado"
105
+ msgstr[1] "Biblioteca '%s' selecionada, %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' selecionada, %d livro"
111
+ msgstr[1] "Biblioteca '%s' selecionada, %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' selecionada, %d livro"
117
+ msgstr[1] "Biblioteca '%s' selecionada, %d livros, %d não classificados"
118
+
119
+ #: ../lib/alexandria/ui/ui_manager.rb:467
120
+ msgid "'%s' selected"
121
+ msgstr "'%s' selecionado"
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 selecionado"
127
+ msgstr[1] "%d livros selecionados"
128
+
129
+ #: ../lib/alexandria/ui/ui_manager.rb:648
130
+ msgid "Unable to launch the web browser"
131
+ msgstr "Não foi possível lançar o navegador web"
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 navegador está configurado por padrão (Preferências do "
139
+ "Desktop -> 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 foi possível lançar o cliente de e-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 e-mail está configurado por padrão ((Preferências "
151
+ "do Desktop -> Aplicações preferidas) e tente novamente."
152
+
153
+ #: ../lib/alexandria/ui/ui_manager.rb:697
154
+ msgid "Repair Book Data"
155
+ msgstr "Reparar dados dos livros"
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 seguintes estão danificados ou vazios. "
164
+ "Quer tentar descarregar nova informação para eles a partir dos fornecedores "
165
+ "de livros online?\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 "Carregando '%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 seguintes não são ISBNs válidos e não foram importadas:"
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 a partir 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 novo 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 "Importar 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 a biblioteca selecionada"
243
+
244
+ #: ../lib/alexandria/ui/callbacks.rb:281
245
+ msgid "_Acquire from Scanner..."
246
+ msgstr "_Adquirir do Scanner..."
247
+
248
+ #: ../lib/alexandria/ui/callbacks.rb:281
249
+ msgid "Acquire books from a scanner"
250
+ msgstr "Adquirir livros a partir de um 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 selecionado"
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 "_Desfazer"
275
+
276
+ #: ../lib/alexandria/ui/callbacks.rb:285
277
+ msgid "Undo the last action"
278
+ msgstr "Desfazer a última ação"
279
+
280
+ #: ../lib/alexandria/ui/callbacks.rb:286
281
+ msgid "_Redo"
282
+ msgstr "_Refazer"
283
+
284
+ #: ../lib/alexandria/ui/callbacks.rb:286
285
+ msgid "Redo the undone action"
286
+ msgstr "Refazer a ação desfeita"
287
+
288
+ #: ../lib/alexandria/ui/callbacks.rb:287
289
+ msgid "_Select All"
290
+ msgstr "_Selecionar tudo"
291
+
292
+ #: ../lib/alexandria/ui/callbacks.rb:287
293
+ msgid "Select all visible books"
294
+ msgstr "Selecionar todos os livros visíveis"
295
+
296
+ #: ../lib/alexandria/ui/callbacks.rb:288
297
+ msgid "Dese_lect All"
298
+ msgstr "_Desfazer toda a seleção"
299
+
300
+ #: ../lib/alexandria/ui/callbacks.rb:288
301
+ msgid "Deselect everything"
302
+ msgstr "Desfazer toda a seleção"
303
+
304
+ #: ../lib/alexandria/ui/callbacks.rb:289
305
+ msgid "My _Rating"
306
+ msgstr "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 ou biblioteca selecionados"
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 "_Limpar resultados"
359
+
360
+ #: ../lib/alexandria/ui/callbacks.rb:300
361
+ msgid "Clear the search results"
362
+ msgstr "Limpar os resultados da pesquisa"
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 as configurações 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 "_Organizar os ícones"
379
+
380
+ #: ../lib/alexandria/ui/callbacks.rb:304
381
+ msgid "Display Online _Information"
382
+ msgstr "Mostrar as _informações em linha"
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 bug aos desenvolvedores"
395
+
396
+ #: ../lib/alexandria/ui/callbacks.rb:308
397
+ msgid "Contents"
398
+ msgstr "Conteúdos"
399
+
400
+ #: ../lib/alexandria/ui/callbacks.rb:308
401
+ msgid "View Alexandria's manual"
402
+ msgstr "Ver manual do Alexandria"
403
+
404
+ #: ../lib/alexandria/ui/callbacks.rb:309
405
+ msgid "_About"
406
+ msgstr "_Sobre"
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 "_Barra de status"
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 foi possível adicionar o livro"
475
+ msgstr[1] "Não foi possível 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 do código de barras 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 scan do código de barras"
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 por %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 todas as suas preferências 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 "Não foi possí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 arquivo escolhido é desconhecido. Tente novamente com um outro "
589
+ "arquivo."
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 "Condição e vazio ou de conflito"
599
+
600
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:86
601
+ msgid "_Save However"
602
+ msgstr "_Salvar assim mesmo"
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 mais condições vazias ou em "
611
+ "coflito umas com as outras. Isto resulta em não fazer a correspondência de "
612
+ "nenhum livro. Tem a certeza que quer salvar 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 "todos (as)"
621
+
622
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
623
+ msgid "any"
624
+ msgstr "nenhum (a)"
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 "Corresponder a seguinte regra:"
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 "Não foi possí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
+ "Não foi possível validar o EAN/ISBN. Verifique se o número está escrito "
651
+ "corretamente, e 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 "Selecione uma imagem de capa"
664
+
665
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:127
666
+ msgid "No Cover"
667
+ msgstr "Sem 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 "Adicionando '%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 "Adicionar um livro"
683
+
684
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:81
685
+ msgid "A title must be provided."
686
+ msgstr "Um título deve ser definido."
687
+
688
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:102
689
+ msgid "A publisher must be provided."
690
+ msgstr "Um editor deve ser definido."
691
+
692
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:109
693
+ msgid "A binding must be provided."
694
+ msgstr "Uma edição deve ser definida."
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 foi possível adicionar o livro"
704
+
705
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:25
706
+ msgid "File already exists"
707
+ msgstr "O arquivo 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 arquivo chamado '%s'. Quer substituí-lo pelo "
720
+ "arquivo que você está gerando?"
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 "diretório"
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 objeto, chamado '%s', é um arquivo comum. É necessário um diretório para "
748
+ "esta operação. Seleccionar um diretório e tente novamente."
749
+
750
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:159
751
+ msgid "Not a directory"
752
+ msgstr "Diretório necessário"
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 entitulado '%s' contém um ISBN inválido, mas existe nas bibliotecas "
769
+ "dos provedores. 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 problema enquanto descarregava 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 foi possível encontrar resultados 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
+ "Não foi possível validar o EAN/ISBN. Verifique se o número está escrito "
789
+ "corretamente, 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' (entitulado '%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'. Deseja substituí-lo?"
798
+
799
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:29
800
+ msgid "_Skip"
801
+ msgstr "_Pular"
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 você substituir o livro existente, o seu conteúdo será sobrescrito."
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 mesmo apagar '%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 livros serão apagados permanentemente."
815
+ msgstr[1] "Se continuar, o conteúdo da seleçã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 "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 "Quer mesmo apagar definitivamente os livros selecionados de '%s'?"
824
+
825
+ #: ../lib/alexandria/ui/sidepane.rb:49
826
+ msgid "Invalid library name '%s'"
827
+ msgstr "Nome inválido de biblioteca '%s'"
828
+
829
+ #: ../lib/alexandria/ui/sidepane.rb:50
830
+ #, fuzzy
831
+ msgid "The name provided contains the disallowed character <b>%s</b> "
832
+ msgstr "O nome inserido contém o caracter inválido '<i>%s</i>'."
833
+
834
+ #: ../lib/alexandria/ui/sidepane.rb:53
835
+ #, fuzzy
836
+ msgid "Invalid library name"
837
+ msgstr "Nome inválido de biblioteca '%s'"
838
+
839
+ #: ../lib/alexandria/ui/sidepane.rb:54
840
+ #, fuzzy
841
+ msgid "The name provided contains invalid characters."
842
+ msgstr "O nome inserido contém o caracter inválido '<i>%s</i>'."
843
+
844
+ #: ../lib/alexandria/ui/sidepane.rb:60
845
+ msgid "The library name can not be empty"
846
+ msgstr "O nome da biblioteca não pode estar vazio"
847
+
848
+ #: ../lib/alexandria/ui/sidepane.rb:65
849
+ msgid "The library can not be renamed"
850
+ msgstr "A biblioteca não pode ser renomeada"
851
+
852
+ #: ../lib/alexandria/ui/sidepane.rb:66
853
+ msgid "There is already a library named '%s'. Please choose a different name."
854
+ msgstr "Já existe uma biblioteca com o nome '%s'. Escolha um nome diferente."
855
+
856
+ #: ../lib/alexandria/ui/sidepane.rb:92
857
+ msgid "Library"
858
+ msgstr "Biblioteca"
859
+
860
+ #: ../lib/alexandria/ui/libraries_combo.rb:44
861
+ msgid "New Library"
862
+ msgstr "Nova Biblioteca"
863
+
864
+ #: ../lib/alexandria/ui/listview.rb:52 ../lib/alexandria/smart_library.rb:349
865
+ msgid "Title"
866
+ msgstr "Título"
867
+
868
+ #: ../lib/alexandria/ui/listview.rb:105 ../lib/alexandria/smart_library.rb:351
869
+ msgid "Authors"
870
+ msgstr "Autores"
871
+
872
+ #: ../lib/alexandria/ui/listview.rb:106 ../lib/alexandria/smart_library.rb:350
873
+ msgid "ISBN"
874
+ msgstr "ISBN"
875
+
876
+ #: ../lib/alexandria/ui/listview.rb:107 ../lib/alexandria/smart_library.rb:352
877
+ msgid "Publisher"
878
+ msgstr "Editor"
879
+
880
+ #: ../lib/alexandria/ui/listview.rb:108 ../lib/alexandria/smart_library.rb:353
881
+ msgid "Publish Year"
882
+ msgstr "Ano de Publicação"
883
+
884
+ #: ../lib/alexandria/ui/listview.rb:109 ../lib/alexandria/smart_library.rb:354
885
+ msgid "Binding"
886
+ msgstr "Edição"
887
+
888
+ #: ../lib/alexandria/ui/listview.rb:110
889
+ #, fuzzy
890
+ msgid "Loaned To"
891
+ msgstr "Emprestado"
892
+
893
+ #: ../lib/alexandria/ui/listview.rb:113 ../lib/alexandria/smart_library.rb:104
894
+ #: ../lib/alexandria/smart_library.rb:361
895
+ msgid "Read"
896
+ msgstr "Ler"
897
+
898
+ #: ../lib/alexandria/ui/listview.rb:114 ../lib/alexandria/smart_library.rb:363
899
+ msgid "Own"
900
+ msgstr "Proprietário"
901
+
902
+ #: ../lib/alexandria/ui/listview.rb:115 ../lib/alexandria/smart_library.rb:364
903
+ msgid "Want"
904
+ msgstr "Querer"
905
+
906
+ #: ../lib/alexandria/ui/listview.rb:141 ../lib/alexandria/smart_library.rb:357
907
+ #: ../data/alexandria/glade/preferences_dialog.glade:421
908
+ msgid "Tags"
909
+ msgstr "Etiquetas"
910
+
911
+ #: ../lib/alexandria/ui/listview.rb:166 ../lib/alexandria/smart_library.rb:355
912
+ msgid "Rating"
913
+ msgstr "Classificação"
914
+
915
+ #: ../lib/alexandria/ui/init.rb:83
916
+ msgid "Unable to launch the help browser"
917
+ msgstr "Não foi possível carregar a ajuda do navegador"
918
+
919
+ #: ../lib/alexandria/ui/init.rb:84
920
+ msgid ""
921
+ "Could not display help for Alexandria. There was an error launching the "
922
+ "system help browser."
923
+ msgstr ""
924
+ "Não pôde mostrar a ajuda para o Alexandria. Houve um erro ao carregar o "
925
+ "sistema de ajuda do navegador."
926
+
927
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:37
928
+ msgid "Locale"
929
+ msgstr "Local"
930
+
931
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:38
932
+ msgid "Access key ID"
933
+ msgstr ""
934
+
935
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:39
936
+ msgid "Secret access key"
937
+ msgstr ""
938
+
939
+ #: ../lib/alexandria/book_providers/mcu.rb:39
940
+ msgid "Spanish Culture Ministry"
941
+ msgstr "Ministério da Cultura Espanhola"
942
+
943
+ #: ../lib/alexandria/book_providers/z3950.rb:34
944
+ msgid "Hostname"
945
+ msgstr "Anfitrião"
946
+
947
+ #: ../lib/alexandria/book_providers/z3950.rb:35
948
+ msgid "Port"
949
+ msgstr "Porto"
950
+
951
+ #: ../lib/alexandria/book_providers/z3950.rb:36
952
+ msgid "Database"
953
+ msgstr "Base de dados"
954
+
955
+ #: ../lib/alexandria/book_providers/z3950.rb:37
956
+ msgid "Record syntax"
957
+ msgstr "Sintaxe de gravação"
958
+
959
+ #: ../lib/alexandria/book_providers/z3950.rb:38
960
+ msgid "Username"
961
+ msgstr "Utilizador"
962
+
963
+ #: ../lib/alexandria/book_providers/z3950.rb:39
964
+ msgid "Password"
965
+ msgstr "Palavra-passe"
966
+
967
+ #: ../lib/alexandria/book_providers/z3950.rb:40
968
+ msgid "Charset encoding"
969
+ msgstr "Codificando caratere"
970
+
971
+ #: ../lib/alexandria/book_providers/z3950.rb:221
972
+ msgid "Library of Congress (Usa)"
973
+ msgstr "Biblioteca do Congresso (Estados Unidos)"
974
+
975
+ #: ../lib/alexandria/book_providers/z3950.rb:255
976
+ msgid "British Library"
977
+ msgstr "Biblioteca Britânica"
978
+
979
+ #: ../lib/alexandria/export_library.rb:109
980
+ msgid "Archived ONIX XML"
981
+ msgstr "Arquivo ONIX XML"
982
+
983
+ #: ../lib/alexandria/export_library.rb:111
984
+ msgid "Archived Tellico XML"
985
+ msgstr "Arquivo Tellico XML"
986
+
987
+ #: ../lib/alexandria/export_library.rb:113
988
+ msgid "BibTeX"
989
+ msgstr "BibTex"
990
+
991
+ #: ../lib/alexandria/export_library.rb:114
992
+ msgid "CSV list"
993
+ msgstr "Lista CSV"
994
+
995
+ #: ../lib/alexandria/export_library.rb:115
996
+ msgid "ISBN List"
997
+ msgstr "Lista de ISBNs"
998
+
999
+ #: ../lib/alexandria/export_library.rb:116
1000
+ msgid "iPod Notes"
1001
+ msgstr "Notas do iPod"
1002
+
1003
+ #: ../lib/alexandria/export_library.rb:117
1004
+ msgid "HTML Web Page"
1005
+ msgstr "Página Web em HTML"
1006
+
1007
+ #: ../lib/alexandria/smart_library.rb:92
1008
+ msgid "Favorite"
1009
+ msgstr "Favorito"
1010
+
1011
+ #: ../lib/alexandria/smart_library.rb:98
1012
+ msgid "Loaned"
1013
+ msgstr "Emprestado"
1014
+
1015
+ #: ../lib/alexandria/smart_library.rb:110
1016
+ msgid "Owned"
1017
+ msgstr "Propriedade de"
1018
+
1019
+ #: ../lib/alexandria/smart_library.rb:119
1020
+ msgid "Wishlist"
1021
+ msgstr "Lista do pedido"
1022
+
1023
+ #: ../lib/alexandria/smart_library.rb:356
1024
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1225
1025
+ msgid "Notes"
1026
+ msgstr "Notas"
1027
+
1028
+ #: ../lib/alexandria/smart_library.rb:358
1029
+ msgid "Loaning State"
1030
+ msgstr "Estado do Empréstimo"
1031
+
1032
+ #: ../lib/alexandria/smart_library.rb:359
1033
+ msgid "Loaning Date"
1034
+ msgstr "o Data dEmpréstimo"
1035
+
1036
+ #: ../lib/alexandria/smart_library.rb:360
1037
+ msgid "Loaning Person"
1038
+ msgstr "Requisitante"
1039
+
1040
+ #: ../lib/alexandria/smart_library.rb:362
1041
+ msgid "Date Read"
1042
+ msgstr "Data de leitura"
1043
+
1044
+ #: ../lib/alexandria/smart_library.rb:371
1045
+ msgid "days"
1046
+ msgstr "dias"
1047
+
1048
+ #: ../lib/alexandria/smart_library.rb:382
1049
+ msgid "is set"
1050
+ msgstr "está configurado"
1051
+
1052
+ #: ../lib/alexandria/smart_library.rb:386
1053
+ msgid "is not set"
1054
+ msgstr "não está configurado"
1055
+
1056
+ #: ../lib/alexandria/smart_library.rb:390
1057
+ msgid "is"
1058
+ msgstr "está"
1059
+
1060
+ #: ../lib/alexandria/smart_library.rb:394
1061
+ msgid "is not"
1062
+ msgstr "não está"
1063
+
1064
+ #: ../lib/alexandria/smart_library.rb:398
1065
+ msgid "contains"
1066
+ msgstr "contém"
1067
+
1068
+ #: ../lib/alexandria/smart_library.rb:402
1069
+ msgid "does not contain"
1070
+ msgstr "não contém"
1071
+
1072
+ #: ../lib/alexandria/smart_library.rb:406
1073
+ msgid "starts with"
1074
+ msgstr "começa com"
1075
+
1076
+ #: ../lib/alexandria/smart_library.rb:410
1077
+ msgid "ends with"
1078
+ msgstr "acaba com"
1079
+
1080
+ #: ../lib/alexandria/smart_library.rb:414
1081
+ msgid "is greater than"
1082
+ msgstr "é maior do que"
1083
+
1084
+ #: ../lib/alexandria/smart_library.rb:418
1085
+ msgid "is less than"
1086
+ msgstr "é menor do que"
1087
+
1088
+ #: ../lib/alexandria/smart_library.rb:422
1089
+ msgid "is after"
1090
+ msgstr "está depois"
1091
+
1092
+ #: ../lib/alexandria/smart_library.rb:426
1093
+ msgid "is before"
1094
+ msgstr "está depois"
1095
+
1096
+ #: ../lib/alexandria/smart_library.rb:430
1097
+ msgid "is in last"
1098
+ msgstr "está em último"
1099
+
1100
+ #: ../lib/alexandria/smart_library.rb:450
1101
+ msgid "is not in last"
1102
+ msgstr "não está em último"
1103
+
1104
+ #: ../lib/alexandria/book_providers.rb:87
1105
+ msgid "Couldn't reach the provider '%s': timeout expired."
1106
+ msgstr ""
1107
+ "Não foi possível contactar o fornecedor '%s': expirou o tempo de conexão."
1108
+
1109
+ #: ../lib/alexandria/book_providers.rb:91
1110
+ msgid "Couldn't reach the provider '%s': socket error (%s)."
1111
+ msgstr "Não foi possível contactar o fornecedor '%s': erro de socket (%s)."
1112
+
1113
+ #: ../lib/alexandria/book_providers.rb:95
1114
+ #: ../lib/alexandria/book_providers.rb:100
1115
+ msgid ""
1116
+ "No results were found. Make sure your search criterion is spelled "
1117
+ "correctly, and try again."
1118
+ msgstr ""
1119
+ "Nenhum resultado encontrado. Verifique a ortografia dos critérios da "
1120
+ "pesquisa, e tente novamente."
1121
+
1122
+ #: ../lib/alexandria/book_providers.rb:105
1123
+ msgid "Too many results for that search."
1124
+ msgstr "Resultados demasiadamente numerosos para esta pesquisa."
1125
+
1126
+ #: ../lib/alexandria/book_providers.rb:108
1127
+ msgid "Invalid search type."
1128
+ msgstr "Tipo de pesquisa inválida."
1129
+
1130
+ #: ../lib/alexandria/book_providers.rb:203
1131
+ msgid "Enabled"
1132
+ msgstr ""
1133
+
1134
+ #: ../data/alexandria/glade/acquire_dialog.glade:9
1135
+ msgid "Acquire from Scanner"
1136
+ msgstr "Adquirir a partir do scanner"
1137
+
1138
+ #: ../data/alexandria/glade/acquire_dialog.glade:87
1139
+ #: ../data/alexandria/glade/new_book_dialog.glade:90
1140
+ msgid "Save _in:"
1141
+ msgstr "Salvar _em"
1142
+
1143
+ #: ../data/alexandria/glade/main_app.glade:17
1144
+ msgid "Main Window"
1145
+ msgstr "Janela principal"
1146
+
1147
+ #: ../data/alexandria/glade/main_app.glade:32
1148
+ msgid "Libraries listing."
1149
+ msgstr "Listagem de Bibliotecas."
1150
+
1151
+ #: ../data/alexandria/glade/main_app.glade:46
1152
+ msgid "_Libraries:"
1153
+ msgstr "_Bibliotecas:"
1154
+
1155
+ #: ../data/alexandria/glade/main_app.glade:111
1156
+ msgid "Book listing."
1157
+ msgstr "Listagem de livros"
1158
+
1159
+ #: ../data/alexandria/glade/main_app.glade:194
1160
+ msgid "Status messages."
1161
+ msgstr "Estado das mensagens."
1162
+
1163
+ #: ../data/alexandria/glade/new_book_dialog.glade:31
1164
+ msgid "_Keep Dialog Open after Adding Book"
1165
+ msgstr ""
1166
+
1167
+ #: ../data/alexandria/glade/new_book_dialog.glade:114
1168
+ msgid ""
1169
+ "by title\n"
1170
+ "by authors\n"
1171
+ "by keyword"
1172
+ msgstr ""
1173
+ "por título\n"
1174
+ "por autores\n"
1175
+ "por palavra-chave"
1176
+
1177
+ #: ../data/alexandria/glade/new_book_dialog.glade:201
1178
+ msgid "_Search:"
1179
+ msgstr "_Pesquisar"
1180
+
1181
+ #: ../data/alexandria/glade/new_book_dialog.glade:219
1182
+ #: ../data/alexandria/glade/book_properties_dialog.glade:187
1183
+ msgid "_ISBN:"
1184
+ msgstr "_ISBN:"
1185
+
1186
+ #: ../data/alexandria/glade/book_properties_dialog.glade:86
1187
+ msgid "_Title:"
1188
+ msgstr "_Título:"
1189
+
1190
+ #: ../data/alexandria/glade/book_properties_dialog.glade:115
1191
+ msgid "_Publisher:"
1192
+ msgstr "_Editor:"
1193
+
1194
+ #: ../data/alexandria/glade/book_properties_dialog.glade:279
1195
+ msgid "Add an author"
1196
+ msgstr "Adicionar um autor"
1197
+
1198
+ #: ../data/alexandria/glade/book_properties_dialog.glade:307
1199
+ msgid "Remove an author"
1200
+ msgstr "Remover um autor"
1201
+
1202
+ #: ../data/alexandria/glade/book_properties_dialog.glade:351
1203
+ msgid "_Authors:"
1204
+ msgstr "_Autores:"
1205
+
1206
+ #: ../data/alexandria/glade/book_properties_dialog.glade:380
1207
+ msgid "_Binding:"
1208
+ msgstr "E_dição:"
1209
+
1210
+ #: ../data/alexandria/glade/book_properties_dialog.glade:430
1211
+ msgid "Publish _year:"
1212
+ msgstr "Ano de _publicação:"
1213
+
1214
+ #: ../data/alexandria/glade/book_properties_dialog.glade:480
1215
+ msgid "Tags:"
1216
+ msgstr "Etiquetas:"
1217
+
1218
+ #: ../data/alexandria/glade/book_properties_dialog.glade:553
1219
+ msgid "_Cover:"
1220
+ msgstr "_Capa:"
1221
+
1222
+ #: ../data/alexandria/glade/book_properties_dialog.glade:579
1223
+ msgid "Click to pick a cover"
1224
+ msgstr "Clicar para escolher uma capa"
1225
+
1226
+ #: ../data/alexandria/glade/book_properties_dialog.glade:620
1227
+ msgid "Own it?"
1228
+ msgstr "É o proprietário?"
1229
+
1230
+ #: ../data/alexandria/glade/book_properties_dialog.glade:646
1231
+ msgid "Read it?"
1232
+ msgstr "Lê-o?"
1233
+
1234
+ #: ../data/alexandria/glade/book_properties_dialog.glade:695
1235
+ msgid "Want it?"
1236
+ msgstr "Quere-lo?"
1237
+
1238
+ #: ../data/alexandria/glade/book_properties_dialog.glade:721
1239
+ msgid "Click on the stars to rate the book"
1240
+ msgstr "Clicar nas estrelas para classificar o livro"
1241
+
1242
+ #: ../data/alexandria/glade/book_properties_dialog.glade:927
1243
+ msgid "Rating:"
1244
+ msgstr "Classificação:"
1245
+
1246
+ #: ../data/alexandria/glade/book_properties_dialog.glade:967
1247
+ msgid "General"
1248
+ msgstr "Geral"
1249
+
1250
+ #: ../data/alexandria/glade/book_properties_dialog.glade:998
1251
+ msgid "This book is _loaned"
1252
+ msgstr "Este livro está _emprestado"
1253
+
1254
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1076
1255
+ msgid "_To:"
1256
+ msgstr "_A:"
1257
+
1258
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1106
1259
+ msgid "_Since:"
1260
+ msgstr "_Desde:"
1261
+
1262
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1166
1263
+ msgid "Loaning"
1264
+ msgstr "Empréstimo"
1265
+
1266
+ #: ../data/alexandria/glade/preferences_dialog.glade:7
1267
+ msgid "Preferences"
1268
+ msgstr "Preferências"
1269
+
1270
+ #: ../data/alexandria/glade/preferences_dialog.glade:27
1271
+ #, fuzzy
1272
+ msgid "<b>Book Data Providers</b>"
1273
+ msgstr "<b>_Fornecedores</b>"
1274
+
1275
+ #: ../data/alexandria/glade/preferences_dialog.glade:99
1276
+ msgid "_Setup"
1277
+ msgstr "_Configurar"
1278
+
1279
+ #: ../data/alexandria/glade/preferences_dialog.glade:198
1280
+ msgid ""
1281
+ "Providers are libraries that supply information about books. Some of them "
1282
+ "can be configured to get better results. You can also customize the order "
1283
+ "in which they are queried."
1284
+ msgstr ""
1285
+ "Os provedores são bibliotecas que partilham informações sobre livros. "
1286
+ "Algumas delas podem ser configuradas a fim de obter melhores resultados. "
1287
+ "Você pode igualmente personalizar a ordem pela qual serão chamadas."
1288
+
1289
+ #: ../data/alexandria/glade/preferences_dialog.glade:209
1290
+ msgid "Custom _Z39.50 Providers"
1291
+ msgstr ""
1292
+
1293
+ #: ../data/alexandria/glade/preferences_dialog.glade:213
1294
+ msgid ""
1295
+ "Add and remove your own Z39.50 providers.\n"
1296
+ "Requires the Ruby/ZOOM software library."
1297
+ msgstr ""
1298
+
1299
+ #: ../data/alexandria/glade/preferences_dialog.glade:235
1300
+ #, fuzzy
1301
+ msgid "_Providers"
1302
+ msgstr "Fornecedores"
1303
+
1304
+ #: ../data/alexandria/glade/preferences_dialog.glade:252
1305
+ msgid "<b>Visible Columns</b>"
1306
+ msgstr "<b>Colunas visíveis</b>"
1307
+
1308
+ #: ../data/alexandria/glade/preferences_dialog.glade:270
1309
+ msgid "_Authors"
1310
+ msgstr "_Autores"
1311
+
1312
+ #: ../data/alexandria/glade/preferences_dialog.glade:285
1313
+ msgid "_ISBN"
1314
+ msgstr "_ISBN"
1315
+
1316
+ #: ../data/alexandria/glade/preferences_dialog.glade:302
1317
+ msgid "_Publisher"
1318
+ msgstr "E_ditor"
1319
+
1320
+ #: ../data/alexandria/glade/preferences_dialog.glade:319
1321
+ msgid "_Rating"
1322
+ msgstr "_Classificação"
1323
+
1324
+ #: ../data/alexandria/glade/preferences_dialog.glade:336
1325
+ msgid "_Binding"
1326
+ msgstr "E_dição"
1327
+
1328
+ #: ../data/alexandria/glade/preferences_dialog.glade:353
1329
+ msgid "Publish _year"
1330
+ msgstr "Ano de _publicação"
1331
+
1332
+ #: ../data/alexandria/glade/preferences_dialog.glade:370
1333
+ msgid "Read?"
1334
+ msgstr "Lê?"
1335
+
1336
+ #: ../data/alexandria/glade/preferences_dialog.glade:387
1337
+ msgid "Own?"
1338
+ msgstr "Pertence?"
1339
+
1340
+ #: ../data/alexandria/glade/preferences_dialog.glade:404
1341
+ msgid "Want?"
1342
+ msgstr "Quer?"
1343
+
1344
+ #: ../data/alexandria/glade/preferences_dialog.glade:438
1345
+ #, fuzzy
1346
+ msgid "Loaned to"
1347
+ msgstr "Emprestado"
1348
+
1349
+ #: ../data/alexandria/glade/preferences_dialog.glade:465
1350
+ #, fuzzy
1351
+ msgid "_List View"
1352
+ msgstr "Ver como lista"
1353
+
1354
+ #: ../alexandria.desktop.in.h:1
1355
+ msgid "Alexandria Book Collection Manager"
1356
+ msgstr "Gerenciador de coleções de livros Alexandria"
1357
+
1358
+ #: ../alexandria.desktop.in.h:2
1359
+ msgid "Book Collection Manager"
1360
+ msgstr "Gerenciador de coleções de livros"
1361
+
1362
+ #: ../alexandria.desktop.in.h:3
1363
+ msgid "Manage your book collection"
1364
+ msgstr "Gerencie a sua coleção de livros"
1365
+
1366
+ #~ msgid "Language"
1367
+ #~ msgstr "Língua"
1368
+
1369
+ #~ msgid "_Advanced Settings"
1370
+ #~ msgstr "_Configurações Avançadas"
1371
+
1372
+ #~ msgid "Development token"
1373
+ #~ msgstr "Token de desenvolvimento"
1374
+
1375
+ #, fuzzy
1376
+ #~ msgid "Couldn't add these books"
1377
+ #~ msgstr "Não foi possível adicionar o livro"
1378
+
1379
+ #~ msgid "Associate ID"
1380
+ #~ msgstr "Identidade de associado"
1381
+
1382
+ #~ msgid "_Refresh"
1383
+ #~ msgstr "_Atualizar"
1384
+
1385
+ #~ msgid "n/a"
1386
+ #~ msgstr "Desconhecido"
1387
+
1388
+ #~ msgid "Locale site to contact"
1389
+ #~ msgstr "Sítio local a contactar"
1390
+
1391
+ #~ msgid "Language of the books to search"
1392
+ #~ msgstr "Língua do livro a pesquisar"
1393
+
1394
+ #~ msgid "%d unrated"
1395
+ #~ msgid_plural "%d unrated"
1396
+ #~ msgstr[0] "%d não classificado"
1397
+ #~ msgstr[1] "%d não classificados"
1398
+
1399
+ #~ msgid "Are you sure you want to permanently delete '%s' which has %d book?"
1400
+ #~ msgid_plural ""
1401
+ #~ "Are you sure you want to permanently delete '%s' which has %d books?"
1402
+ #~ msgstr[0] "Quer mesmo apagar definitivamente '%s', que contém %d livro?"
1403
+ #~ msgstr[1] "Quer mesmo apagar definitivamente '%s', que contém %d livros?"
1404
+
1405
+ #~ msgid "_New"
1406
+ #~ msgstr "_Novo"
1407
+
1408
+ #~ msgid "Couldn't validate the scanner input"
1409
+ #~ msgstr "Não foi possível validar a entrada do scanner"