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,1386 @@
1
+ # Norwegian (Bokmål) translation of Alexandria.
2
+ # Copyright (C) 2008 Jack Myrseh <jack@enkom.no>
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-02-27 21:35+0100\n"
11
+ "Last-Translator: Jack Myrseh <jack@enkom.no>\n"
12
+ "Language-Team: Norwegian\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+
18
+ #: ../lib/alexandria/import_library.rb:30
19
+ msgid "Autodetect"
20
+ msgstr "Automatisk detektering"
21
+
22
+ #: ../lib/alexandria/import_library.rb:31
23
+ msgid "Archived Tellico XML (*.bc, *.tc)"
24
+ msgstr "Arkivert Tellico-XML (*.bc, *.tc)"
25
+
26
+ #: ../lib/alexandria/import_library.rb:33
27
+ msgid "ISBN List (*.txt)"
28
+ msgstr "ISBN-liste (*.txt)"
29
+
30
+ #: ../lib/alexandria/import_library.rb:35
31
+ msgid "GoodReads CSV"
32
+ msgstr ""
33
+
34
+ #: ../lib/alexandria/models/library.rb:56
35
+ msgid "Untitled"
36
+ msgstr "Uten tittel"
37
+
38
+ #: ../lib/alexandria/models/library.rb:245
39
+ msgid "My Library"
40
+ msgstr "Mitt bibliotek"
41
+
42
+ #: ../lib/alexandria/about.rb:24
43
+ msgid "A program to help you manage your book collection."
44
+ msgstr "Ett program for å ordne boksamlinger"
45
+
46
+ #: ../lib/alexandria/ui/ui_manager.rb:135
47
+ msgid "Type here the search criterion"
48
+ msgstr "Tast inn søkekriteriet"
49
+
50
+ #: ../lib/alexandria/ui/ui_manager.rb:148
51
+ msgid "Match everything"
52
+ msgstr "Match alt."
53
+
54
+ #: ../lib/alexandria/ui/ui_manager.rb:150
55
+ msgid "Title contains"
56
+ msgstr "Tittel inneholder"
57
+
58
+ #: ../lib/alexandria/ui/ui_manager.rb:151
59
+ msgid "Authors contain"
60
+ msgstr "Forfatter(e) inneholder"
61
+
62
+ #: ../lib/alexandria/ui/ui_manager.rb:152
63
+ msgid "ISBN contains"
64
+ msgstr "ISBN inneholder"
65
+
66
+ #: ../lib/alexandria/ui/ui_manager.rb:153
67
+ msgid "Publisher contains"
68
+ msgstr "Utgiver inneholder"
69
+
70
+ #: ../lib/alexandria/ui/ui_manager.rb:154
71
+ msgid "Notes contain"
72
+ msgstr "Notater inneholder"
73
+
74
+ #: ../lib/alexandria/ui/ui_manager.rb:155
75
+ msgid "Tags contain"
76
+ msgstr "Merknader inneholder"
77
+
78
+ #: ../lib/alexandria/ui/ui_manager.rb:170
79
+ msgid "Change the search type"
80
+ msgstr "Vennligst endre søkemåten"
81
+
82
+ #: ../lib/alexandria/ui/ui_manager.rb:175
83
+ msgid "View as Icons"
84
+ msgstr "Vis som ikoner"
85
+
86
+ #: ../lib/alexandria/ui/ui_manager.rb:176
87
+ msgid "View as List"
88
+ msgstr "Vis som liste"
89
+
90
+ #: ../lib/alexandria/ui/ui_manager.rb:189
91
+ msgid "Choose how to show books"
92
+ msgstr "Velg hvordan du vil vise bøkene"
93
+
94
+ #: ../lib/alexandria/ui/ui_manager.rb:436
95
+ msgid "Library '%s' selected"
96
+ msgstr "Biblioteket \"%s\" valgt"
97
+
98
+ #: ../lib/alexandria/ui/ui_manager.rb:443
99
+ msgid "Library '%s' selected, %d unrated book"
100
+ msgid_plural "Library '%s' selected, %d unrated books"
101
+ msgstr[0] "Biblioteket \"%s\" valgt, %d bok uten rating"
102
+ msgstr[1] "Biblioteket \"%s\" valgt, %d bøker uten rating"
103
+
104
+ #: ../lib/alexandria/ui/ui_manager.rb:448
105
+ msgid "Library '%s' selected, %d book"
106
+ msgid_plural "Library '%s' selected, %d books"
107
+ msgstr[0] "Biblioteket \"%s\" valgt, %d bok"
108
+ msgstr[1] "Biblioteket \"%s\" valgt, %d bøker"
109
+
110
+ #: ../lib/alexandria/ui/ui_manager.rb:455
111
+ msgid "Library '%s' selected, %d book, %d unrated"
112
+ msgid_plural "Library '%s' selected, %d books, %d unrated"
113
+ msgstr[0] "Biblioteket \"%s\" valgt, %d bok, %d uten rating"
114
+ msgstr[1] "Biblioteket \"%s\" valt, %d bøker, %d uten rating"
115
+
116
+ #: ../lib/alexandria/ui/ui_manager.rb:467
117
+ msgid "'%s' selected"
118
+ msgstr "\"%s\" valgt"
119
+
120
+ #: ../lib/alexandria/ui/ui_manager.rb:470
121
+ msgid "%d book selected"
122
+ msgid_plural "%d books selected"
123
+ msgstr[0] "%d bok valgt"
124
+ msgstr[1] "%d bøker valgt"
125
+
126
+ #: ../lib/alexandria/ui/ui_manager.rb:648
127
+ msgid "Unable to launch the web browser"
128
+ msgstr "Kunde ikke starte nettleseren"
129
+
130
+ #: ../lib/alexandria/ui/ui_manager.rb:649
131
+ msgid ""
132
+ "Check out that a web browser is configured as default (Desktop Preferences -"
133
+ "> Advanced -> Preferred Applications) and try again."
134
+ msgstr "Kontroller et en nettleser er satt som standard og forsøk igjen."
135
+
136
+ #: ../lib/alexandria/ui/ui_manager.rb:661
137
+ msgid "Unable to launch the mail reader"
138
+ msgstr "Kunde ikke starte e-postleseren."
139
+
140
+ #: ../lib/alexandria/ui/ui_manager.rb:662
141
+ msgid ""
142
+ "Check out that a mail reader is configured as default (Desktop Preferences -"
143
+ "> Advanced -> Preferred Applications) and try again."
144
+ msgstr "Kontroller at det er satt opp en e-postleser og forsøk igjen ."
145
+
146
+ #: ../lib/alexandria/ui/ui_manager.rb:697
147
+ msgid "Repair Book Data"
148
+ msgstr "Reparer bok-data"
149
+
150
+ #: ../lib/alexandria/ui/ui_manager.rb:698
151
+ msgid ""
152
+ "The data files for the following books are malformed or empty. Do you wish "
153
+ "to attempt to download new information for them from the online book "
154
+ "providers?\n"
155
+ msgstr ""
156
+ "Datafilene for de følgende bøkene er ødelagt eller tomme. Ønsker du å laste "
157
+ "ned ny informasjon for dem fra de tilbyderne som er online?\n"
158
+
159
+ #: ../lib/alexandria/ui/ui_manager.rb:755
160
+ msgid "Added '%s' to library '%s'"
161
+ msgstr "Lagt '%s' til bibliotek '%s'"
162
+
163
+ #: ../lib/alexandria/ui/ui_manager.rb:908
164
+ msgid "Loading '%s'..."
165
+ msgstr "Laster \"_%s\""
166
+
167
+ #: ../lib/alexandria/ui/ui_manager.rb:1157
168
+ msgid "In '_%s'"
169
+ msgstr "I \"_%s\""
170
+
171
+ #: ../lib/alexandria/ui/callbacks.rb:65
172
+ msgid "The following lines are not valid ISBNs and were not imported:"
173
+ msgstr "Følgende linjer er ikke gyldige ISBN-nummer og ble ikke importert:"
174
+
175
+ #: ../lib/alexandria/ui/callbacks.rb:122
176
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:128
177
+ msgid "Export failed"
178
+ msgstr "Eksporten mislyktes"
179
+
180
+ #: ../lib/alexandria/ui/callbacks.rb:123
181
+ msgid "Try letting this library load completely before exporting."
182
+ msgstr ""
183
+
184
+ #: ../lib/alexandria/ui/callbacks.rb:274
185
+ msgid "_Library"
186
+ msgstr "Bib_liotek"
187
+
188
+ #: ../lib/alexandria/ui/callbacks.rb:275
189
+ msgid "_New Library"
190
+ msgstr "_Nytt bibliotek"
191
+
192
+ #: ../lib/alexandria/ui/callbacks.rb:275
193
+ msgid "Create a new library"
194
+ msgstr "Opprett ett nytt bibliotek"
195
+
196
+ #: ../lib/alexandria/ui/callbacks.rb:276
197
+ msgid "New _Smart Library..."
198
+ msgstr "Nytt _smart bibliotek..."
199
+
200
+ #: ../lib/alexandria/ui/callbacks.rb:276
201
+ msgid "Create a new smart library"
202
+ msgstr "Opprett nytt smart bibliotek"
203
+
204
+ #: ../lib/alexandria/ui/callbacks.rb:277
205
+ msgid "_Add Book..."
206
+ msgstr "Legg til bok..."
207
+
208
+ #: ../lib/alexandria/ui/callbacks.rb:277
209
+ msgid "Add a new book from the Internet"
210
+ msgstr "Legg til en ny bok fra internett"
211
+
212
+ #: ../lib/alexandria/ui/callbacks.rb:278
213
+ msgid "Add Book _Manually..."
214
+ msgstr "Legg til bok _manuelt..."
215
+
216
+ #: ../lib/alexandria/ui/callbacks.rb:278
217
+ msgid "Add a new book manually"
218
+ msgstr "Legg til bok manuelt"
219
+
220
+ #: ../lib/alexandria/ui/callbacks.rb:279
221
+ msgid "_Import..."
222
+ msgstr "_Importer..."
223
+
224
+ #: ../lib/alexandria/ui/callbacks.rb:279
225
+ msgid "Import a library"
226
+ msgstr "Importer et bibliotek"
227
+
228
+ #: ../lib/alexandria/ui/callbacks.rb:280
229
+ msgid "_Export..."
230
+ msgstr "_Eksporter..."
231
+
232
+ #: ../lib/alexandria/ui/callbacks.rb:280
233
+ msgid "Export the selected library"
234
+ msgstr "Eksporter det valgte biblioteket"
235
+
236
+ #: ../lib/alexandria/ui/callbacks.rb:281
237
+ msgid "_Acquire from Scanner..."
238
+ msgstr "Legg inn fra sk_anner..."
239
+
240
+ #: ../lib/alexandria/ui/callbacks.rb:281
241
+ msgid "Acquire books from a scanner"
242
+ msgstr "Legg inn bøker fra en skanner"
243
+
244
+ #: ../lib/alexandria/ui/callbacks.rb:282
245
+ msgid "_Properties"
246
+ msgstr "Egenskaper"
247
+
248
+ #: ../lib/alexandria/ui/callbacks.rb:282
249
+ msgid "Edit the properties of the selected book"
250
+ msgstr "Rediger egenskapene for den valgte boken"
251
+
252
+ #: ../lib/alexandria/ui/callbacks.rb:283
253
+ msgid "_Quit"
254
+ msgstr "Avslutt"
255
+
256
+ #: ../lib/alexandria/ui/callbacks.rb:283
257
+ msgid "Quit the program"
258
+ msgstr "Avslutt programmet"
259
+
260
+ #: ../lib/alexandria/ui/callbacks.rb:284
261
+ msgid "_Edit"
262
+ msgstr "Rediger"
263
+
264
+ #: ../lib/alexandria/ui/callbacks.rb:285
265
+ msgid "_Undo"
266
+ msgstr "Angre"
267
+
268
+ #: ../lib/alexandria/ui/callbacks.rb:285
269
+ msgid "Undo the last action"
270
+ msgstr "Angre siste handling"
271
+
272
+ #: ../lib/alexandria/ui/callbacks.rb:286
273
+ msgid "_Redo"
274
+ msgstr "Gjø_r om igjen"
275
+
276
+ #: ../lib/alexandria/ui/callbacks.rb:286
277
+ msgid "Redo the undone action"
278
+ msgstr "Gjør om siste angrede handling"
279
+
280
+ #: ../lib/alexandria/ui/callbacks.rb:287
281
+ msgid "_Select All"
282
+ msgstr "Marker alle"
283
+
284
+ #: ../lib/alexandria/ui/callbacks.rb:287
285
+ msgid "Select all visible books"
286
+ msgstr "Velg alle bøker som vises"
287
+
288
+ #: ../lib/alexandria/ui/callbacks.rb:288
289
+ msgid "Dese_lect All"
290
+ msgstr "Fjern all markering"
291
+
292
+ #: ../lib/alexandria/ui/callbacks.rb:288
293
+ msgid "Deselect everything"
294
+ msgstr "Fjern all markering"
295
+
296
+ #: ../lib/alexandria/ui/callbacks.rb:289
297
+ msgid "My _Rating"
298
+ msgstr "Min _rangering"
299
+
300
+ #: ../lib/alexandria/ui/callbacks.rb:290
301
+ msgid "None"
302
+ msgstr "Ingen"
303
+
304
+ #: ../lib/alexandria/ui/callbacks.rb:291
305
+ msgid "One Star"
306
+ msgstr "En stjerne"
307
+
308
+ #: ../lib/alexandria/ui/callbacks.rb:292
309
+ msgid "Two Stars"
310
+ msgstr "To stjerner"
311
+
312
+ #: ../lib/alexandria/ui/callbacks.rb:293
313
+ msgid "Three Stars"
314
+ msgstr "Tre stjerner"
315
+
316
+ #: ../lib/alexandria/ui/callbacks.rb:294
317
+ msgid "Four Stars"
318
+ msgstr "Fire stjerner"
319
+
320
+ #: ../lib/alexandria/ui/callbacks.rb:295
321
+ msgid "Five Stars"
322
+ msgstr "Fem stjerner"
323
+
324
+ #: ../lib/alexandria/ui/callbacks.rb:296
325
+ msgid "_Move"
326
+ msgstr "_Flytt"
327
+
328
+ #: ../lib/alexandria/ui/callbacks.rb:297
329
+ msgid "_Rename"
330
+ msgstr "Gi nytt navn"
331
+
332
+ #: ../lib/alexandria/ui/callbacks.rb:298
333
+ msgid "_Delete"
334
+ msgstr "Fjern"
335
+
336
+ #: ../lib/alexandria/ui/callbacks.rb:298
337
+ msgid "Delete the selected books or library"
338
+ msgstr "Slett valgte bøker eller bibliotek"
339
+
340
+ #: ../lib/alexandria/ui/callbacks.rb:299
341
+ msgid "_Search"
342
+ msgstr "_Søk"
343
+
344
+ #: ../lib/alexandria/ui/callbacks.rb:299
345
+ msgid "Filter books"
346
+ msgstr "Filtrer bøker"
347
+
348
+ #: ../lib/alexandria/ui/callbacks.rb:300
349
+ msgid "_Clear Results"
350
+ msgstr "Tøm resultat"
351
+
352
+ #: ../lib/alexandria/ui/callbacks.rb:300
353
+ msgid "Clear the search results"
354
+ msgstr "Fjern resultatet av søket"
355
+
356
+ #: ../lib/alexandria/ui/callbacks.rb:301
357
+ msgid "_Preferences"
358
+ msgstr "Innstillinger"
359
+
360
+ #: ../lib/alexandria/ui/callbacks.rb:301
361
+ msgid "Change Alexandria's settings"
362
+ msgstr "Endre innstillinger for Alexandria"
363
+
364
+ #: ../lib/alexandria/ui/callbacks.rb:302
365
+ msgid "_View"
366
+ msgstr "_Vis"
367
+
368
+ #: ../lib/alexandria/ui/callbacks.rb:303
369
+ msgid "Arran_ge Icons"
370
+ msgstr "Ordne ikoner"
371
+
372
+ #: ../lib/alexandria/ui/callbacks.rb:304
373
+ msgid "Display Online _Information"
374
+ msgstr "Visa _informasjon fra nettet"
375
+
376
+ #: ../lib/alexandria/ui/callbacks.rb:306
377
+ msgid "_Help"
378
+ msgstr "_Hjelp"
379
+
380
+ #: ../lib/alexandria/ui/callbacks.rb:307
381
+ msgid "Submit _Bug Report"
382
+ msgstr "Send feilmelding"
383
+
384
+ #: ../lib/alexandria/ui/callbacks.rb:307
385
+ msgid "Submit a bug report to the developers"
386
+ msgstr "Send en feilmelding til utviklerne"
387
+
388
+ #: ../lib/alexandria/ui/callbacks.rb:308
389
+ msgid "Contents"
390
+ msgstr "Innhold"
391
+
392
+ #: ../lib/alexandria/ui/callbacks.rb:308
393
+ msgid "View Alexandria's manual"
394
+ msgstr "Les manualen for Alexandria"
395
+
396
+ #: ../lib/alexandria/ui/callbacks.rb:309
397
+ msgid "_About"
398
+ msgstr "Om"
399
+
400
+ #: ../lib/alexandria/ui/callbacks.rb:309
401
+ msgid "Show information about Alexandria"
402
+ msgstr "Vis informasjon om Alexandria"
403
+
404
+ #: ../lib/alexandria/ui/callbacks.rb:334
405
+ msgid "Side _Pane"
406
+ msgstr "Side_panel"
407
+
408
+ #: ../lib/alexandria/ui/callbacks.rb:336
409
+ msgid "_Toolbar"
410
+ msgstr "Verk_tøylinje"
411
+
412
+ #: ../lib/alexandria/ui/callbacks.rb:338
413
+ msgid "_Statusbar"
414
+ msgstr "_Statuslinje"
415
+
416
+ #: ../lib/alexandria/ui/callbacks.rb:340
417
+ msgid "Re_versed Order"
418
+ msgstr "Om_vendt rekkefølge"
419
+
420
+ #: ../lib/alexandria/ui/callbacks.rb:345
421
+ msgid "View as _Icons"
422
+ msgstr "Vis som _ikoner"
423
+
424
+ #: ../lib/alexandria/ui/callbacks.rb:346
425
+ msgid "View as _List"
426
+ msgstr "Vis som _liste"
427
+
428
+ #: ../lib/alexandria/ui/callbacks.rb:350
429
+ msgid "By _Title"
430
+ msgstr "Efter _tittel"
431
+
432
+ #: ../lib/alexandria/ui/callbacks.rb:351
433
+ msgid "By _Authors"
434
+ msgstr "Etter forfatter"
435
+
436
+ #: ../lib/alexandria/ui/callbacks.rb:352
437
+ msgid "By _ISBN"
438
+ msgstr "Efter _ISBN"
439
+
440
+ #: ../lib/alexandria/ui/callbacks.rb:353
441
+ msgid "By _Publisher"
442
+ msgstr "Efter utgiver"
443
+
444
+ #: ../lib/alexandria/ui/callbacks.rb:354
445
+ msgid "By _Binding"
446
+ msgstr "Efter innbinding"
447
+
448
+ #: ../lib/alexandria/ui/callbacks.rb:355
449
+ msgid "By _Rating"
450
+ msgstr "Etter _rating"
451
+
452
+ #: ../lib/alexandria/ui/callbacks.rb:359
453
+ msgid "At _%s"
454
+ msgstr "hos _%s"
455
+
456
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:395
457
+ msgid "There was %d duplicate"
458
+ msgid_plural "There were %d duplicates"
459
+ msgstr[0] ""
460
+ msgstr[1] ""
461
+
462
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:398
463
+ #, fuzzy
464
+ msgid "Couldn't add this book"
465
+ msgid_plural "Couldn't add these books"
466
+ msgstr[0] "Kunne ikke legge til boken"
467
+ msgstr[1] "Kunne ikke legge til boken"
468
+
469
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:477
470
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:555
471
+ msgid "Searching Provider '%s'..."
472
+ msgstr ""
473
+
474
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:478
475
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:556
476
+ msgid "Error while Searching Provider '%s'"
477
+ msgstr ""
478
+
479
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:479
480
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:557
481
+ msgid "Not Found at Provider '%s'"
482
+ msgstr ""
483
+
484
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:480
485
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:558
486
+ msgid "Found at Provider '%s'"
487
+ msgstr ""
488
+
489
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:610
490
+ msgid "Ready to use %s barcode scanner"
491
+ msgstr ""
492
+
493
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:625
494
+ #: ../data/alexandria/glade/acquire_dialog.glade:26
495
+ msgid "_Barcode Scanner Ready"
496
+ msgstr "Strekkodeleser klar"
497
+
498
+ #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:640
499
+ msgid "Click below to scan _barcodes"
500
+ msgstr "Klikk nedenunder for å skanne strekkoder"
501
+
502
+ #: ../lib/alexandria/ui/dialogs/bad_isbns_dialog.rb:24
503
+ msgid "There's a problem"
504
+ msgstr "Det har oppstått et problem"
505
+
506
+ #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:30
507
+ msgid "New Smart Library"
508
+ msgstr "Importer et bibliotek"
509
+
510
+ #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:49
511
+ msgid "Smart Library"
512
+ msgstr "Importer et bibliotek"
513
+
514
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:106
515
+ msgid "Preferences for %s"
516
+ msgstr "Innstillinger for %s"
517
+
518
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:131
519
+ msgid "New Provider"
520
+ msgstr "Ny tilbyder"
521
+
522
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:146
523
+ msgid "_Name:"
524
+ msgstr "_Navn:"
525
+
526
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:158
527
+ msgid "_Type:"
528
+ msgstr "_Type:"
529
+
530
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:316
531
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
532
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
533
+ #, fuzzy
534
+ msgid "Disable Provider"
535
+ msgstr "Ny tilbyder"
536
+
537
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
538
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
539
+ #, fuzzy
540
+ msgid "Enable Provider"
541
+ msgstr "Ny tilbyder"
542
+
543
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:423
544
+ msgid "Are you sure you want to permanently delete the provider '%s'?"
545
+ msgstr "Er du sikker på at du ønsker å slette tilbyder \"%s\" for godt?"
546
+
547
+ #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:431
548
+ msgid ""
549
+ "If you continue, the provider and all of its preferences will be permanently "
550
+ "deleted."
551
+ msgstr ""
552
+ "Om du fortsetter kommer tilbyder og alle innstillingene for denne å bli "
553
+ "slettet permanent."
554
+
555
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:36
556
+ msgid "Error while importing"
557
+ msgstr "Feil under import"
558
+
559
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:39
560
+ msgid "_Continue"
561
+ msgstr "Fortsett"
562
+
563
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:64
564
+ msgid "Import a Library"
565
+ msgstr "Importer et bibliotek"
566
+
567
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:71
568
+ msgid "_Import"
569
+ msgstr "_Importer"
570
+
571
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:188
572
+ msgid "Couldn't import the library"
573
+ msgstr "Kunne ikke importere biblioteket"
574
+
575
+ #: ../lib/alexandria/ui/dialogs/import_dialog.rb:189
576
+ msgid ""
577
+ "The format of the file you provided is unknown. Please retry with another "
578
+ "file."
579
+ msgstr ""
580
+ "Formatet på filen du brukte er ukjent. Vennligst forsøk igjen med en annen "
581
+ "fil."
582
+
583
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb:30
584
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:63
585
+ msgid "Properties for '%s'"
586
+ msgstr "Innstillinger for '%s'"
587
+
588
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:83
589
+ msgid "Empty or conflictive condition"
590
+ msgstr "Tom eller selvmotsigende betingelse"
591
+
592
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:86
593
+ msgid "_Save However"
594
+ msgstr "_Lagre imidlertid"
595
+
596
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:87
597
+ msgid ""
598
+ "This smart library contains one or more conditions which are empty or "
599
+ "conflict with each other. This is likely to result in never matching a book. "
600
+ "Are you sure you want to save this library?"
601
+ msgstr ""
602
+ "Dette smart_biblioteket inneholder en eller flere betingelser som enten en "
603
+ "tomme, eller er i konflikt med hverandre. Sannsynligvis vil dette føre til "
604
+ "at en bok ikke kan gjenfinnes."
605
+
606
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:106
607
+ msgid "Match"
608
+ msgstr "Treff"
609
+
610
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
611
+ msgid "all"
612
+ msgstr "alle"
613
+
614
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
615
+ msgid "any"
616
+ msgstr "hvilken som helst"
617
+
618
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:119
619
+ msgid "of the following rules:"
620
+ msgstr "av de følgende reglene:"
621
+
622
+ #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:127
623
+ msgid "Match the following rule:"
624
+ msgstr "Match følgende regel:"
625
+
626
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:114
627
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:123
628
+ msgid "Couldn't modify the book"
629
+ msgstr "Kunne ikke endre boken"
630
+
631
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:115
632
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:88
633
+ msgid "The EAN/ISBN you provided is already used in this library."
634
+ msgstr "Det EAN/ISBN du anga finnes allerede i dette biblioteket."
635
+
636
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:124
637
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:94
638
+ msgid ""
639
+ "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
640
+ "correcty, and try again."
641
+ msgstr ""
642
+ "Kunde ikke bekrefte det EAN/ISBN du anga. Kontroller at det er korrekt "
643
+ "angitt og forsøk igjen"
644
+
645
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:65
646
+ msgid "Properties"
647
+ msgstr "Egenskaper"
648
+
649
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:71
650
+ msgid "Author"
651
+ msgstr "Forfatter"
652
+
653
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:123
654
+ msgid "Select a cover image"
655
+ msgstr "Velg et omslagsbilde"
656
+
657
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:127
658
+ msgid "No Cover"
659
+ msgstr "Ikke noe omslag"
660
+
661
+ #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:186
662
+ msgid "%d day"
663
+ msgid_plural "%d days"
664
+ msgstr[0] "%d dag"
665
+ msgstr[1] "%d dager"
666
+
667
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:58
668
+ msgid "Adding '%s'"
669
+ msgstr "Legger til \"_%s\""
670
+
671
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:60
672
+ #: ../data/alexandria/glade/new_book_dialog.glade:8
673
+ msgid "Adding a Book"
674
+ msgstr "Legger til en bok"
675
+
676
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:81
677
+ msgid "A title must be provided."
678
+ msgstr "Det må angis en tittel."
679
+
680
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:102
681
+ msgid "A publisher must be provided."
682
+ msgstr "Det må angis en utgiver."
683
+
684
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:109
685
+ msgid "A binding must be provided."
686
+ msgstr "Det må angis en innbinding."
687
+
688
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:115
689
+ msgid "At least one author must be provided."
690
+ msgstr "Minst en forfatter må angis."
691
+
692
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:142
693
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:523
694
+ msgid "Couldn't add the book"
695
+ msgstr "Kunne ikke legge til boken"
696
+
697
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:25
698
+ msgid "File already exists"
699
+ msgstr "Filen finnes allerede"
700
+
701
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:28
702
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:30
703
+ msgid "_Replace"
704
+ msgstr "E_rstatt"
705
+
706
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:29
707
+ msgid ""
708
+ "A file named '%s' already exists. Do you want to replace it with the one "
709
+ "you are generating?"
710
+ msgstr ""
711
+ "En fil med navnet \"%s\" finnes allerede. Vill du erstatte den med den du "
712
+ "genererer?"
713
+
714
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:52
715
+ msgid "Export '%s'"
716
+ msgstr "Eksporter \"%s\""
717
+
718
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:58
719
+ msgid "_Export"
720
+ msgstr "_Eksporter"
721
+
722
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:77
723
+ msgid "_Theme:"
724
+ msgstr "_Tema:"
725
+
726
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:87
727
+ msgid "directory"
728
+ msgstr "katalog"
729
+
730
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:100
731
+ msgid "Export for_mat:"
732
+ msgstr "Eksportfor_mat:"
733
+
734
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:155
735
+ msgid ""
736
+ "The target, named '%s', is a regular file. A directory is needed for this "
737
+ "operation. Please select a directory and try again."
738
+ msgstr ""
739
+ "Målfilen, med navnet \"%s\", er en vanlig fil. En katalog er nødvendig for "
740
+ "denne operasjonen. Vennligst velg en katalog og forsøk igjen."
741
+
742
+ #: ../lib/alexandria/ui/dialogs/export_dialog.rb:159
743
+ msgid "Not a directory"
744
+ msgstr "Ikke en katalog"
745
+
746
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:32
747
+ msgid "Invalid ISBN '%s'"
748
+ msgstr "Ugyldig ISBN '%s'"
749
+
750
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:35
751
+ msgid "_Keep"
752
+ msgstr "Behold"
753
+
754
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:36
755
+ msgid ""
756
+ "The book titled '%s' has an invalid ISBN, but still exists in the providers "
757
+ "libraries. Do you want to keep the book but change the ISBN or cancel the "
758
+ "add?"
759
+ msgstr ""
760
+ "Boken med tittel '%s' har ugyldig ISBN, men eksisterer hos tilbyder-"
761
+ "bibliotekene. Ønsker du å beholde boken, men endre ISBN-nummeret eller "
762
+ "kansellere oppdateringen?"
763
+
764
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:182
765
+ msgid "A problem occurred while downloading images"
766
+ msgstr "Det oppsto et problem ved nedlastingen av bilder"
767
+
768
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:304
769
+ msgid "Unable to find matches for your search"
770
+ msgstr "Søket ga ingen treff"
771
+
772
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:310
773
+ msgid "%s, by %s"
774
+ msgstr "%s, av %s"
775
+
776
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:383
777
+ msgid ""
778
+ "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
779
+ "correctly, and try again."
780
+ msgstr ""
781
+ "Kunne ikke bekrefte det EAN/ISBN du anga. Kontroller at det er angitt riktig "
782
+ "og forsøk igjen."
783
+
784
+ #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:630
785
+ msgid "'%s' already exists in '%s' (titled '%s')."
786
+ msgstr "\"%s\" eksisterer allerede i \"%s\" (med tittel \"%s\")."
787
+
788
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:26
789
+ msgid "The book '%s' already exists in '%s'. Would you like to replace it?"
790
+ msgstr "Boken \"%s\" eksisterer allerede i \"%s\". Vil du erstatte den?"
791
+
792
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:29
793
+ msgid "_Skip"
794
+ msgstr "Hopp over"
795
+
796
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:31
797
+ msgid "If you replace the existing book, its contents will be overwritten."
798
+ msgstr ""
799
+ "Om du erstatter den eksisterende boken, kommer innholdet til å bli "
800
+ "overskrevet."
801
+
802
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:50
803
+ msgid "Are you sure you want to delete '%s'?"
804
+ msgstr "Er du sikker på at du vil slette \"%s\"?"
805
+
806
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:58
807
+ msgid "If you continue, %d book will be deleted."
808
+ msgid_plural "If you continue, %d books will be deleted."
809
+ msgstr[0] "Om du fortsetter kommer utvalget til å slettes permanent."
810
+ msgstr[1] "Om du fortsetter kommer utvalget til å slettes permanent."
811
+
812
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:63
813
+ msgid "Are you sure you want to delete '%s' from '%s'?"
814
+ msgstr "Er du sikker på at du ønsker å slette \"%s\" fra \"%s\"?"
815
+
816
+ #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:66
817
+ msgid "Are you sure you want to delete the selected books from '%s'?"
818
+ msgstr "Er du sikker på at du vil slette de valgte bøkene fra \"%s\"?"
819
+
820
+ #: ../lib/alexandria/ui/sidepane.rb:49
821
+ msgid "Invalid library name '%s'"
822
+ msgstr "Ugyldig biblioteksnavn \"%s\""
823
+
824
+ #: ../lib/alexandria/ui/sidepane.rb:50
825
+ #, fuzzy
826
+ msgid "The name provided contains the disallowed character <b>%s</b> "
827
+ msgstr "Navnet inneholder det ugyldige tegnet \"<i>%s</i>\"."
828
+
829
+ #: ../lib/alexandria/ui/sidepane.rb:53
830
+ #, fuzzy
831
+ msgid "Invalid library name"
832
+ msgstr "Ugyldig biblioteksnavn \"%s\""
833
+
834
+ #: ../lib/alexandria/ui/sidepane.rb:54
835
+ #, fuzzy
836
+ msgid "The name provided contains invalid characters."
837
+ msgstr "Navnet inneholder det ugyldige tegnet \"<i>%s</i>\"."
838
+
839
+ #: ../lib/alexandria/ui/sidepane.rb:60
840
+ msgid "The library name can not be empty"
841
+ msgstr "Navnet på biblioteket kan ikke være tomt"
842
+
843
+ #: ../lib/alexandria/ui/sidepane.rb:65
844
+ msgid "The library can not be renamed"
845
+ msgstr "Biblioteket kan ikke gis nytt navn"
846
+
847
+ #: ../lib/alexandria/ui/sidepane.rb:66
848
+ msgid "There is already a library named '%s'. Please choose a different name."
849
+ msgstr ""
850
+ "Det finnes allerede et bibliotek med navnetg \"%s\". Vennligst velg et annet "
851
+ "navn."
852
+
853
+ #: ../lib/alexandria/ui/sidepane.rb:92
854
+ msgid "Library"
855
+ msgstr "Bibliotek"
856
+
857
+ #: ../lib/alexandria/ui/libraries_combo.rb:44
858
+ msgid "New Library"
859
+ msgstr "Nytt bibliotek"
860
+
861
+ #: ../lib/alexandria/ui/listview.rb:52 ../lib/alexandria/smart_library.rb:349
862
+ msgid "Title"
863
+ msgstr "Tittel"
864
+
865
+ #: ../lib/alexandria/ui/listview.rb:105 ../lib/alexandria/smart_library.rb:351
866
+ msgid "Authors"
867
+ msgstr "Forfattere"
868
+
869
+ #: ../lib/alexandria/ui/listview.rb:106 ../lib/alexandria/smart_library.rb:350
870
+ msgid "ISBN"
871
+ msgstr "ISBN"
872
+
873
+ #: ../lib/alexandria/ui/listview.rb:107 ../lib/alexandria/smart_library.rb:352
874
+ msgid "Publisher"
875
+ msgstr "Utgiver"
876
+
877
+ #: ../lib/alexandria/ui/listview.rb:108 ../lib/alexandria/smart_library.rb:353
878
+ msgid "Publish Year"
879
+ msgstr "Utgitt år"
880
+
881
+ #: ../lib/alexandria/ui/listview.rb:109 ../lib/alexandria/smart_library.rb:354
882
+ msgid "Binding"
883
+ msgstr "Innbinding"
884
+
885
+ #: ../lib/alexandria/ui/listview.rb:110
886
+ #, fuzzy
887
+ msgid "Loaned To"
888
+ msgstr "Utlånt"
889
+
890
+ #: ../lib/alexandria/ui/listview.rb:113 ../lib/alexandria/smart_library.rb:104
891
+ #: ../lib/alexandria/smart_library.rb:361
892
+ msgid "Read"
893
+ msgstr "Lest"
894
+
895
+ #: ../lib/alexandria/ui/listview.rb:114 ../lib/alexandria/smart_library.rb:363
896
+ msgid "Own"
897
+ msgstr "Egne"
898
+
899
+ #: ../lib/alexandria/ui/listview.rb:115 ../lib/alexandria/smart_library.rb:364
900
+ msgid "Want"
901
+ msgstr "Ønsket"
902
+
903
+ #: ../lib/alexandria/ui/listview.rb:141 ../lib/alexandria/smart_library.rb:357
904
+ #: ../data/alexandria/glade/preferences_dialog.glade:421
905
+ msgid "Tags"
906
+ msgstr "Merknader"
907
+
908
+ #: ../lib/alexandria/ui/listview.rb:166 ../lib/alexandria/smart_library.rb:355
909
+ msgid "Rating"
910
+ msgstr "Rating"
911
+
912
+ #: ../lib/alexandria/ui/init.rb:83
913
+ msgid "Unable to launch the help browser"
914
+ msgstr "Kunne ikke åpne hjelpeteksten"
915
+
916
+ #: ../lib/alexandria/ui/init.rb:84
917
+ msgid ""
918
+ "Could not display help for Alexandria. There was an error launching the "
919
+ "system help browser."
920
+ msgstr ""
921
+ "Kunne ikke vise hjelpetekst for Alexandria. Det oppsto en feil i "
922
+ "hjelpesystemet"
923
+
924
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:37
925
+ msgid "Locale"
926
+ msgstr "Lokal språkinnstilling"
927
+
928
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:38
929
+ msgid "Access key ID"
930
+ msgstr ""
931
+
932
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:39
933
+ msgid "Secret access key"
934
+ msgstr ""
935
+
936
+ #: ../lib/alexandria/book_providers/mcu.rb:39
937
+ msgid "Spanish Culture Ministry"
938
+ msgstr "Det spanske kulturministeriet"
939
+
940
+ #: ../lib/alexandria/book_providers/z3950.rb:34
941
+ msgid "Hostname"
942
+ msgstr "Vertsnavn"
943
+
944
+ #: ../lib/alexandria/book_providers/z3950.rb:35
945
+ msgid "Port"
946
+ msgstr "Port"
947
+
948
+ #: ../lib/alexandria/book_providers/z3950.rb:36
949
+ msgid "Database"
950
+ msgstr "Database"
951
+
952
+ #: ../lib/alexandria/book_providers/z3950.rb:37
953
+ msgid "Record syntax"
954
+ msgstr "Syntaks"
955
+
956
+ #: ../lib/alexandria/book_providers/z3950.rb:38
957
+ msgid "Username"
958
+ msgstr "Brukernavn"
959
+
960
+ #: ../lib/alexandria/book_providers/z3950.rb:39
961
+ msgid "Password"
962
+ msgstr "Passord"
963
+
964
+ #: ../lib/alexandria/book_providers/z3950.rb:40
965
+ msgid "Charset encoding"
966
+ msgstr "Tegnsett"
967
+
968
+ #: ../lib/alexandria/book_providers/z3950.rb:221
969
+ msgid "Library of Congress (Usa)"
970
+ msgstr "Library of Congress (USA)"
971
+
972
+ #: ../lib/alexandria/book_providers/z3950.rb:255
973
+ msgid "British Library"
974
+ msgstr "British Library"
975
+
976
+ #: ../lib/alexandria/export_library.rb:109
977
+ msgid "Archived ONIX XML"
978
+ msgstr "Arkivert ONIX-XML"
979
+
980
+ #: ../lib/alexandria/export_library.rb:111
981
+ msgid "Archived Tellico XML"
982
+ msgstr "Arkivert Tellico-XML"
983
+
984
+ #: ../lib/alexandria/export_library.rb:113
985
+ msgid "BibTeX"
986
+ msgstr "BibTeX"
987
+
988
+ #: ../lib/alexandria/export_library.rb:114
989
+ msgid "CSV list"
990
+ msgstr "CSV-liste"
991
+
992
+ #: ../lib/alexandria/export_library.rb:115
993
+ msgid "ISBN List"
994
+ msgstr "ISBN-liste"
995
+
996
+ #: ../lib/alexandria/export_library.rb:116
997
+ msgid "iPod Notes"
998
+ msgstr "iPod-notater"
999
+
1000
+ #: ../lib/alexandria/export_library.rb:117
1001
+ msgid "HTML Web Page"
1002
+ msgstr "HTML-webside"
1003
+
1004
+ #: ../lib/alexandria/smart_library.rb:92
1005
+ msgid "Favorite"
1006
+ msgstr "Favoritter"
1007
+
1008
+ #: ../lib/alexandria/smart_library.rb:98
1009
+ msgid "Loaned"
1010
+ msgstr "Utlånt"
1011
+
1012
+ #: ../lib/alexandria/smart_library.rb:110
1013
+ msgid "Owned"
1014
+ msgstr "Egne bøker"
1015
+
1016
+ #: ../lib/alexandria/smart_library.rb:119
1017
+ msgid "Wishlist"
1018
+ msgstr "Ønskeliste"
1019
+
1020
+ #: ../lib/alexandria/smart_library.rb:356
1021
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1225
1022
+ msgid "Notes"
1023
+ msgstr "Notater"
1024
+
1025
+ #: ../lib/alexandria/smart_library.rb:358
1026
+ msgid "Loaning State"
1027
+ msgstr "Status utlån"
1028
+
1029
+ #: ../lib/alexandria/smart_library.rb:359
1030
+ msgid "Loaning Date"
1031
+ msgstr "Dato utlånt"
1032
+
1033
+ #: ../lib/alexandria/smart_library.rb:360
1034
+ msgid "Loaning Person"
1035
+ msgstr "Låntaker"
1036
+
1037
+ #: ../lib/alexandria/smart_library.rb:362
1038
+ msgid "Date Read"
1039
+ msgstr "Dato lest"
1040
+
1041
+ #: ../lib/alexandria/smart_library.rb:371
1042
+ msgid "days"
1043
+ msgstr "dager"
1044
+
1045
+ #: ../lib/alexandria/smart_library.rb:382
1046
+ msgid "is set"
1047
+ msgstr "er angitt"
1048
+
1049
+ #: ../lib/alexandria/smart_library.rb:386
1050
+ msgid "is not set"
1051
+ msgstr "er ikke angitt"
1052
+
1053
+ #: ../lib/alexandria/smart_library.rb:390
1054
+ msgid "is"
1055
+ msgstr "er"
1056
+
1057
+ #: ../lib/alexandria/smart_library.rb:394
1058
+ msgid "is not"
1059
+ msgstr "er ikke"
1060
+
1061
+ #: ../lib/alexandria/smart_library.rb:398
1062
+ msgid "contains"
1063
+ msgstr "inneholder"
1064
+
1065
+ #: ../lib/alexandria/smart_library.rb:402
1066
+ msgid "does not contain"
1067
+ msgstr "inneholder ikke"
1068
+
1069
+ #: ../lib/alexandria/smart_library.rb:406
1070
+ msgid "starts with"
1071
+ msgstr "begynner med"
1072
+
1073
+ #: ../lib/alexandria/smart_library.rb:410
1074
+ msgid "ends with"
1075
+ msgstr "slutter med"
1076
+
1077
+ #: ../lib/alexandria/smart_library.rb:414
1078
+ msgid "is greater than"
1079
+ msgstr "er større enn"
1080
+
1081
+ #: ../lib/alexandria/smart_library.rb:418
1082
+ msgid "is less than"
1083
+ msgstr "er mindre enn"
1084
+
1085
+ #: ../lib/alexandria/smart_library.rb:422
1086
+ msgid "is after"
1087
+ msgstr "kommer etter"
1088
+
1089
+ #: ../lib/alexandria/smart_library.rb:426
1090
+ msgid "is before"
1091
+ msgstr "kommer før"
1092
+
1093
+ #: ../lib/alexandria/smart_library.rb:430
1094
+ msgid "is in last"
1095
+ msgstr "er i siste"
1096
+
1097
+ #: ../lib/alexandria/smart_library.rb:450
1098
+ msgid "is not in last"
1099
+ msgstr "er ikke i siste"
1100
+
1101
+ #: ../lib/alexandria/book_providers.rb:87
1102
+ msgid "Couldn't reach the provider '%s': timeout expired."
1103
+ msgstr ""
1104
+ "Oppnådde ikke kontakt med tilbyder \"%s\": overskred tidsbegrensningen."
1105
+
1106
+ #: ../lib/alexandria/book_providers.rb:91
1107
+ msgid "Couldn't reach the provider '%s': socket error (%s)."
1108
+ msgstr "Oppnådde ikke kontakt med tilbyder \"%s\": (socket error) (%s)."
1109
+
1110
+ #: ../lib/alexandria/book_providers.rb:95
1111
+ #: ../lib/alexandria/book_providers.rb:100
1112
+ msgid ""
1113
+ "No results were found. Make sure your search criterion is spelled "
1114
+ "correctly, and try again."
1115
+ msgstr ""
1116
+ "Ingen resultat funnet, Sjekk at søkekriteriet er skrevet korrekt, og forsøk "
1117
+ "igjen."
1118
+
1119
+ #: ../lib/alexandria/book_providers.rb:105
1120
+ msgid "Too many results for that search."
1121
+ msgstr "Søket ga for mange treff."
1122
+
1123
+ #: ../lib/alexandria/book_providers.rb:108
1124
+ msgid "Invalid search type."
1125
+ msgstr "Ugyldig søkemetode."
1126
+
1127
+ #: ../lib/alexandria/book_providers.rb:203
1128
+ msgid "Enabled"
1129
+ msgstr ""
1130
+
1131
+ #: ../data/alexandria/glade/acquire_dialog.glade:9
1132
+ msgid "Acquire from Scanner"
1133
+ msgstr "Les inn fra skanner"
1134
+
1135
+ #: ../data/alexandria/glade/acquire_dialog.glade:87
1136
+ #: ../data/alexandria/glade/new_book_dialog.glade:90
1137
+ msgid "Save _in:"
1138
+ msgstr "Lagre _i bibliotek:"
1139
+
1140
+ #: ../data/alexandria/glade/main_app.glade:17
1141
+ msgid "Main Window"
1142
+ msgstr "Hovedvindu"
1143
+
1144
+ #: ../data/alexandria/glade/main_app.glade:32
1145
+ msgid "Libraries listing."
1146
+ msgstr "Bibliotek:"
1147
+
1148
+ #: ../data/alexandria/glade/main_app.glade:46
1149
+ msgid "_Libraries:"
1150
+ msgstr "Bib_liotek:"
1151
+
1152
+ #: ../data/alexandria/glade/main_app.glade:111
1153
+ msgid "Book listing."
1154
+ msgstr "Liste over bøker."
1155
+
1156
+ #: ../data/alexandria/glade/main_app.glade:194
1157
+ msgid "Status messages."
1158
+ msgstr "Statusmeldinger"
1159
+
1160
+ #: ../data/alexandria/glade/new_book_dialog.glade:31
1161
+ msgid "_Keep Dialog Open after Adding Book"
1162
+ msgstr ""
1163
+
1164
+ #: ../data/alexandria/glade/new_book_dialog.glade:114
1165
+ msgid ""
1166
+ "by title\n"
1167
+ "by authors\n"
1168
+ "by keyword"
1169
+ msgstr ""
1170
+ "efter tittel\n"
1171
+ "efter forfatter(e)\n"
1172
+ "efter nøkkelord"
1173
+
1174
+ #: ../data/alexandria/glade/new_book_dialog.glade:201
1175
+ msgid "_Search:"
1176
+ msgstr "_Søk:"
1177
+
1178
+ #: ../data/alexandria/glade/new_book_dialog.glade:219
1179
+ #: ../data/alexandria/glade/book_properties_dialog.glade:187
1180
+ msgid "_ISBN:"
1181
+ msgstr "_ISBN:"
1182
+
1183
+ #: ../data/alexandria/glade/book_properties_dialog.glade:86
1184
+ msgid "_Title:"
1185
+ msgstr "_Tittel:"
1186
+
1187
+ #: ../data/alexandria/glade/book_properties_dialog.glade:115
1188
+ msgid "_Publisher:"
1189
+ msgstr "Utgiver:"
1190
+
1191
+ #: ../data/alexandria/glade/book_properties_dialog.glade:279
1192
+ msgid "Add an author"
1193
+ msgstr "Legg til forfatter"
1194
+
1195
+ #: ../data/alexandria/glade/book_properties_dialog.glade:307
1196
+ msgid "Remove an author"
1197
+ msgstr "Slett en forfatter"
1198
+
1199
+ #: ../data/alexandria/glade/book_properties_dialog.glade:351
1200
+ msgid "_Authors:"
1201
+ msgstr "Forf_attere:"
1202
+
1203
+ #: ../data/alexandria/glade/book_properties_dialog.glade:380
1204
+ msgid "_Binding:"
1205
+ msgstr "Innbinding"
1206
+
1207
+ #: ../data/alexandria/glade/book_properties_dialog.glade:430
1208
+ msgid "Publish _year:"
1209
+ msgstr "Utgivelsesår:"
1210
+
1211
+ #: ../data/alexandria/glade/book_properties_dialog.glade:480
1212
+ msgid "Tags:"
1213
+ msgstr "Anmerkninger"
1214
+
1215
+ #: ../data/alexandria/glade/book_properties_dialog.glade:553
1216
+ msgid "_Cover:"
1217
+ msgstr "Omslag"
1218
+
1219
+ #: ../data/alexandria/glade/book_properties_dialog.glade:579
1220
+ msgid "Click to pick a cover"
1221
+ msgstr "Klikk for å vege et omslag"
1222
+
1223
+ #: ../data/alexandria/glade/book_properties_dialog.glade:620
1224
+ msgid "Own it?"
1225
+ msgstr "Egne"
1226
+
1227
+ #: ../data/alexandria/glade/book_properties_dialog.glade:646
1228
+ msgid "Read it?"
1229
+ msgstr "Lest den?"
1230
+
1231
+ #: ../data/alexandria/glade/book_properties_dialog.glade:695
1232
+ msgid "Want it?"
1233
+ msgstr "Ønsker den?"
1234
+
1235
+ #: ../data/alexandria/glade/book_properties_dialog.glade:721
1236
+ msgid "Click on the stars to rate the book"
1237
+ msgstr "Klikk på stjernene for å rangere boken"
1238
+
1239
+ #: ../data/alexandria/glade/book_properties_dialog.glade:927
1240
+ msgid "Rating:"
1241
+ msgstr "Rating:"
1242
+
1243
+ #: ../data/alexandria/glade/book_properties_dialog.glade:967
1244
+ msgid "General"
1245
+ msgstr "Generelt"
1246
+
1247
+ #: ../data/alexandria/glade/book_properties_dialog.glade:998
1248
+ msgid "This book is _loaned"
1249
+ msgstr "Denne boken er ut_lånt"
1250
+
1251
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1076
1252
+ msgid "_To:"
1253
+ msgstr "_Til:"
1254
+
1255
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1106
1256
+ msgid "_Since:"
1257
+ msgstr "_siden:"
1258
+
1259
+ #: ../data/alexandria/glade/book_properties_dialog.glade:1166
1260
+ msgid "Loaning"
1261
+ msgstr "Utlån"
1262
+
1263
+ #: ../data/alexandria/glade/preferences_dialog.glade:7
1264
+ msgid "Preferences"
1265
+ msgstr "Innstillinger"
1266
+
1267
+ #: ../data/alexandria/glade/preferences_dialog.glade:27
1268
+ #, fuzzy
1269
+ msgid "<b>Book Data Providers</b>"
1270
+ msgstr "<b>_Tilbydere</b>"
1271
+
1272
+ #: ../data/alexandria/glade/preferences_dialog.glade:99
1273
+ msgid "_Setup"
1274
+ msgstr "Opp_sett"
1275
+
1276
+ #: ../data/alexandria/glade/preferences_dialog.glade:198
1277
+ msgid ""
1278
+ "Providers are libraries that supply information about books. Some of them "
1279
+ "can be configured to get better results. You can also customize the order "
1280
+ "in which they are queried."
1281
+ msgstr ""
1282
+ "Tilbydere er bibliotek som inneholder informasjon om bøker. Tilgangen til "
1283
+ "enkelte kan tilpasses for bedre resultat. Du kan også tilpasse i hvilken "
1284
+ "rekkefølge de skal avsøkes."
1285
+
1286
+ #: ../data/alexandria/glade/preferences_dialog.glade:209
1287
+ msgid "Custom _Z39.50 Providers"
1288
+ msgstr ""
1289
+
1290
+ #: ../data/alexandria/glade/preferences_dialog.glade:213
1291
+ msgid ""
1292
+ "Add and remove your own Z39.50 providers.\n"
1293
+ "Requires the Ruby/ZOOM software library."
1294
+ msgstr ""
1295
+
1296
+ #: ../data/alexandria/glade/preferences_dialog.glade:235
1297
+ #, fuzzy
1298
+ msgid "_Providers"
1299
+ msgstr "Tilbydere"
1300
+
1301
+ #: ../data/alexandria/glade/preferences_dialog.glade:252
1302
+ msgid "<b>Visible Columns</b>"
1303
+ msgstr "<b>Synlige kolonner</b>"
1304
+
1305
+ #: ../data/alexandria/glade/preferences_dialog.glade:270
1306
+ msgid "_Authors"
1307
+ msgstr "Forf_attere"
1308
+
1309
+ #: ../data/alexandria/glade/preferences_dialog.glade:285
1310
+ msgid "_ISBN"
1311
+ msgstr "_ISBN"
1312
+
1313
+ #: ../data/alexandria/glade/preferences_dialog.glade:302
1314
+ msgid "_Publisher"
1315
+ msgstr "Utgiver"
1316
+
1317
+ #: ../data/alexandria/glade/preferences_dialog.glade:319
1318
+ msgid "_Rating"
1319
+ msgstr "_Rating"
1320
+
1321
+ #: ../data/alexandria/glade/preferences_dialog.glade:336
1322
+ msgid "_Binding"
1323
+ msgstr "Inn_binding"
1324
+
1325
+ #: ../data/alexandria/glade/preferences_dialog.glade:353
1326
+ msgid "Publish _year"
1327
+ msgstr "Utgivelsesår"
1328
+
1329
+ #: ../data/alexandria/glade/preferences_dialog.glade:370
1330
+ msgid "Read?"
1331
+ msgstr "Lest?"
1332
+
1333
+ #: ../data/alexandria/glade/preferences_dialog.glade:387
1334
+ msgid "Own?"
1335
+ msgstr "Egen?"
1336
+
1337
+ #: ../data/alexandria/glade/preferences_dialog.glade:404
1338
+ msgid "Want?"
1339
+ msgstr "Ønsket?"
1340
+
1341
+ #: ../data/alexandria/glade/preferences_dialog.glade:438
1342
+ #, fuzzy
1343
+ msgid "Loaned to"
1344
+ msgstr "Utlånt"
1345
+
1346
+ #: ../data/alexandria/glade/preferences_dialog.glade:465
1347
+ #, fuzzy
1348
+ msgid "_List View"
1349
+ msgstr "Vis som liste"
1350
+
1351
+ #: ../alexandria.desktop.in.h:1
1352
+ msgid "Alexandria Book Collection Manager"
1353
+ msgstr "Boksamlingsverktøyet Alexandria"
1354
+
1355
+ #: ../alexandria.desktop.in.h:2
1356
+ msgid "Book Collection Manager"
1357
+ msgstr "Boksamlingsverktøy"
1358
+
1359
+ #: ../alexandria.desktop.in.h:3
1360
+ msgid "Manage your book collection"
1361
+ msgstr "Ordne boksamlingen din"
1362
+
1363
+ #~ msgid "Language"
1364
+ #~ msgstr "Språk"
1365
+
1366
+ #~ msgid "_Advanced Settings"
1367
+ #~ msgstr "_Avanserte innstillinger"
1368
+
1369
+ #~ msgid "Development token"
1370
+ #~ msgstr "Utviklingselement"
1371
+
1372
+ #, fuzzy
1373
+ #~ msgid "Couldn't add these books"
1374
+ #~ msgstr "Kunne ikke legge til boken"
1375
+
1376
+ #~ msgid "Associate ID"
1377
+ #~ msgstr "Assosiert id"
1378
+
1379
+ #~ msgid "Pref_erences"
1380
+ #~ msgstr "Instilling_er"
1381
+
1382
+ #~ msgid "Publ_isher"
1383
+ #~ msgstr "Utg_iver"
1384
+
1385
+ #~ msgid "B_inding:"
1386
+ #~ msgstr "_Innbindng:"