alexandria-book-collection-manager 0.7.2 → 0.7.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +9 -0
- data/.github/workflows/ruby.yml +77 -0
- data/.gitignore +5 -1
- data/.hound.yml +2 -0
- data/.rubocop.yml +87 -37
- data/.rubocop_todo.yml +62 -191
- data/.simplecov +5 -2
- data/CHANGELOG.md +63 -0
- data/Gemfile +4 -3
- data/INSTALL.md +26 -14
- data/README.md +52 -42
- data/Rakefile +93 -109
- data/TODO.md +9 -1
- data/alexandria-book-collection-manager.gemspec +50 -43
- data/bin/alexandria +30 -53
- data/doc/FAQ +2 -6
- data/doc/dependency_decisions.yml +27 -8
- data/lib/alexandria.rb +27 -37
- data/lib/alexandria/about.rb +50 -50
- data/lib/alexandria/book_providers.rb +90 -97
- data/lib/alexandria/book_providers/adlibris.rb +41 -76
- data/lib/alexandria/book_providers/amazon_aws.rb +96 -100
- data/lib/alexandria/book_providers/amazon_ecs_util.rb +295 -322
- data/lib/alexandria/book_providers/barnes_and_noble.rb +48 -45
- data/lib/alexandria/book_providers/douban.rb +26 -42
- data/lib/alexandria/book_providers/proxis.rb +44 -55
- data/lib/alexandria/book_providers/pseudomarc.rb +77 -85
- data/lib/alexandria/book_providers/siciliano.rb +64 -65
- data/lib/alexandria/book_providers/thalia.rb +42 -41
- data/lib/alexandria/book_providers/web.rb +15 -33
- data/lib/alexandria/book_providers/worldcat.rb +70 -97
- data/lib/alexandria/book_providers/z3950.rb +160 -173
- data/lib/alexandria/config.rb +1 -1
- data/lib/alexandria/console.rb +8 -21
- data/lib/alexandria/default_preferences.rb +37 -0
- data/lib/alexandria/execution_queue.rb +15 -13
- data/lib/alexandria/export_format.rb +47 -0
- data/lib/alexandria/export_library.rb +193 -300
- data/lib/alexandria/import_library.rb +108 -141
- data/lib/alexandria/import_library_csv.rb +43 -46
- data/lib/alexandria/library_collection.rb +79 -0
- data/lib/alexandria/library_sort_order.rb +45 -0
- data/lib/alexandria/library_store.rb +233 -0
- data/lib/alexandria/logging.rb +11 -13
- data/lib/alexandria/models/book.rb +13 -20
- data/lib/alexandria/models/library.rb +81 -353
- data/lib/alexandria/net.rb +5 -6
- data/lib/alexandria/preferences.rb +73 -87
- data/lib/alexandria/scanners.rb +2 -2
- data/lib/alexandria/scanners/{cuecat.rb → cue_cat.rb} +20 -18
- data/lib/alexandria/scanners/keyboard.rb +8 -8
- data/lib/alexandria/smart_library.rb +133 -170
- data/lib/alexandria/ui.rb +15 -15
- data/lib/alexandria/ui/about_dialog.rb +49 -0
- data/lib/alexandria/ui/{dialogs/acquire_dialog.rb → acquire_dialog.rb} +119 -136
- data/lib/alexandria/ui/alert_dialog.rb +64 -0
- data/lib/alexandria/ui/bad_isbns_dialog.rb +41 -0
- data/lib/alexandria/ui/{dialogs/barcode_animation.rb → barcode_animation.rb} +16 -15
- data/lib/alexandria/ui/{dialogs/book_properties_dialog.rb → book_properties_dialog.rb} +39 -52
- data/lib/alexandria/ui/book_properties_dialog_base.rb +318 -0
- data/lib/alexandria/ui/builder_base.rb +7 -27
- data/lib/alexandria/ui/calendar_popup.rb +58 -0
- data/lib/alexandria/ui/callbacks.rb +189 -183
- data/lib/alexandria/ui/completion_models.rb +10 -23
- data/lib/alexandria/ui/confirm_erase_dialog.rb +33 -0
- data/lib/alexandria/ui/conflict_while_copying_dialog.rb +34 -0
- data/lib/alexandria/ui/dndable.rb +7 -7
- data/lib/alexandria/ui/error_dialog.rb +25 -0
- data/lib/alexandria/ui/export_dialog.rb +142 -0
- data/lib/alexandria/ui/icons.rb +47 -63
- data/lib/alexandria/ui/iconview.rb +12 -10
- data/lib/alexandria/ui/iconview_tooltips.rb +41 -54
- data/lib/alexandria/ui/import_dialog.rb +157 -0
- data/lib/alexandria/ui/init.rb +21 -33
- data/lib/alexandria/ui/keep_bad_isbn_dialog.rb +36 -0
- data/lib/alexandria/ui/libraries_combo.rb +16 -14
- data/lib/alexandria/ui/listview.rb +73 -87
- data/lib/alexandria/ui/main_app.rb +24 -26
- data/lib/alexandria/ui/misc_dialogs.rb +10 -0
- data/lib/alexandria/ui/multi_drag_treeview.rb +28 -41
- data/lib/alexandria/ui/{dialogs/new_book_dialog.rb → new_book_dialog.rb} +156 -194
- data/lib/alexandria/ui/new_book_dialog_manual.rb +139 -0
- data/lib/alexandria/ui/new_provider_dialog.rb +100 -0
- data/lib/alexandria/ui/new_smart_library_dialog.rb +74 -0
- data/lib/alexandria/ui/preferences_dialog.rb +313 -0
- data/lib/alexandria/ui/provider_preferences_base_dialog.rb +95 -0
- data/lib/alexandria/ui/provider_preferences_dialog.rb +35 -0
- data/lib/alexandria/ui/really_delete_dialog.rb +53 -0
- data/lib/alexandria/ui/{sidepane.rb → sidepane_manager.rb} +56 -68
- data/lib/alexandria/ui/skip_entry_dialog.rb +33 -0
- data/lib/alexandria/ui/smart_library_properties_dialog.rb +60 -0
- data/lib/alexandria/ui/smart_library_properties_dialog_base.rb +242 -0
- data/lib/alexandria/ui/smart_library_rule_box.rb +119 -0
- data/lib/alexandria/ui/sound.rb +11 -13
- data/lib/alexandria/ui/ui_manager.rb +236 -251
- data/lib/alexandria/undo_manager.rb +1 -0
- data/lib/alexandria/version.rb +4 -19
- data/lib/alexandria/web_themes.rb +22 -21
- data/po/Makefile +2 -2
- data/po/cs.po +993 -880
- data/po/cy.po +957 -874
- data/po/de.po +990 -869
- data/po/el.po +989 -869
- data/po/es.po +985 -865
- data/po/fr.po +986 -870
- data/po/ga.po +907 -823
- data/po/gl.po +981 -865
- data/po/it.po +986 -868
- data/po/ja.po +969 -853
- data/po/mk.po +983 -863
- data/po/nb.po +979 -863
- data/po/nl.po +983 -864
- data/po/pl.po +1017 -974
- data/po/pt.po +988 -861
- data/po/pt_BR.po +984 -868
- data/po/ru.po +992 -873
- data/po/sk.po +987 -869
- data/po/sv.po +977 -861
- data/po/uk.po +975 -865
- data/po/zh_TW.po +976 -860
- data/schemas/alexandria.schemas +25 -3
- data/share/alexandria/glade/acquire_dialog__builder.glade +15 -12
- data/share/alexandria/glade/book_properties_dialog__builder.glade +171 -299
- data/share/alexandria/glade/main_app__builder.glade +24 -33
- data/share/alexandria/glade/new_book_dialog__builder.glade +27 -59
- data/share/alexandria/glade/preferences_dialog__builder.glade +250 -290
- data/share/gnome/help/alexandria/C/introduction.xml +0 -8
- data/share/gnome/help/alexandria/C/searching.xml +1 -1
- data/share/gnome/help/alexandria/C/smart-libraries.xml +2 -2
- data/share/gnome/help/alexandria/C/working-with-libraries.xml +1 -1
- data/share/gnome/help/alexandria/fr/alexandria.xml +1 -1
- data/share/gnome/help/alexandria/ja/introduction.xml +0 -8
- data/share/gnome/help/alexandria/ja/smart-libraries.xml +1 -1
- data/spec/alexandria/book_providers/world_cat_provider_spec.rb +160 -0
- data/spec/alexandria/book_providers_spec.rb +75 -171
- data/spec/alexandria/book_spec.rb +12 -10
- data/spec/alexandria/console_spec.rb +27 -0
- data/spec/alexandria/export_library_spec.rb +130 -0
- data/spec/alexandria/library_spec.rb +128 -172
- data/spec/alexandria/library_store_spec.rb +37 -0
- data/spec/alexandria/preferences_spec.rb +44 -17
- data/spec/alexandria/scanners/cue_cat_spec.rb +52 -0
- data/spec/alexandria/smart_library_spec.rb +30 -25
- data/spec/alexandria/ui/about_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/acquire_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/alert_dialog_spec.rb +16 -0
- data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/book_properties_dialog_spec.rb +17 -0
- data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +16 -0
- data/spec/alexandria/ui/error_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/export_dialog_spec.rb +36 -0
- data/spec/alexandria/ui/icons_spec.rb +26 -0
- data/spec/alexandria/ui/iconview_spec.rb +7 -21
- data/spec/alexandria/ui/import_dialog_spec.rb +46 -0
- data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +17 -0
- data/spec/alexandria/ui/main_app_spec.rb +7 -34
- data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +15 -0
- data/spec/alexandria/ui/new_book_dialog_spec.rb +22 -0
- data/spec/alexandria/ui/new_provider_dialog_spec.rb +30 -0
- data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +39 -0
- data/spec/alexandria/ui/preferences_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +34 -0
- data/spec/alexandria/ui/really_delete_dialog_spec.rb +16 -0
- data/spec/alexandria/ui/sidepane_manager_spec.rb +15 -0
- data/spec/alexandria/ui/skip_entry_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +49 -0
- data/spec/alexandria/ui/sound_spec.rb +2 -2
- data/spec/alexandria/ui/ui_manager_spec.rb +43 -20
- data/spec/end_to_end/basic_run_spec.rb +52 -0
- data/spec/spec_helper.rb +65 -33
- data/tasks/setup.rb +2 -2
- data/tasks/spec.rake +16 -3
- data/util/rake/fileinstall.rb +39 -35
- data/util/rake/gettextgenerate.rb +7 -7
- data/util/rake/omfgenerate.rb +7 -7
- metadata +178 -45
- data/dogtail/basic_run_test.py +0 -9
- data/lib/alexandria/book_providers/deastore.rb +0 -265
- data/lib/alexandria/book_providers/mcu.rb +0 -182
- data/lib/alexandria/book_providers/renaud.rb +0 -149
- data/lib/alexandria/ui/dialogs/about_dialog.rb +0 -61
- data/lib/alexandria/ui/dialogs/alert_dialog.rb +0 -72
- data/lib/alexandria/ui/dialogs/bad_isbns_dialog.rb +0 -51
- data/lib/alexandria/ui/dialogs/book_properties_dialog_base.rb +0 -426
- data/lib/alexandria/ui/dialogs/export_dialog.rb +0 -171
- data/lib/alexandria/ui/dialogs/import_dialog.rb +0 -196
- data/lib/alexandria/ui/dialogs/misc_dialogs.rb +0 -87
- data/lib/alexandria/ui/dialogs/new_book_dialog_manual.rb +0 -154
- data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +0 -74
- data/lib/alexandria/ui/dialogs/preferences_dialog.rb +0 -568
- data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +0 -59
- data/lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb +0 -420
- data/spec/alexandria/scanners/cuecat_spec.rb +0 -67
- data/spec/alexandria/ui/dialogs_spec.rb +0 -96
- data/spec/alexandria/ui/sidepane_spec.rb +0 -29
- data/spec/alexandria/ui/ui_utilities_spec.rb +0 -62
- data/spec/alexandria/utilities_spec.rb +0 -52
- data/tasks/dogtail.rake +0 -6
data/po/nl.po
CHANGED
@@ -6,707 +6,751 @@ msgid ""
|
|
6
6
|
msgstr ""
|
7
7
|
"Project-Id-Version: alexandria 0.6.6\n"
|
8
8
|
"Report-Msgid-Bugs-To: \n"
|
9
|
-
"POT-Creation-Date:
|
10
|
-
"PO-Revision-Date:
|
9
|
+
"POT-Creation-Date: 2020-09-13 11:53+0200\n"
|
10
|
+
"PO-Revision-Date: 2020-09-13 11:55+0200\n"
|
11
11
|
"Last-Translator: L.C. Karssen <lennart@karssen.org>\n"
|
12
12
|
"Language-Team: Dutch\n"
|
13
|
+
"Language: nl\n"
|
13
14
|
"MIME-Version: 1.0\n"
|
14
15
|
"Content-Type: text/plain; charset=UTF-8\n"
|
15
16
|
"Content-Transfer-Encoding: 8bit\n"
|
16
17
|
"Plural-Forms: nplurals=2; plural=n!=1;\n"
|
18
|
+
"X-Generator: Poedit 2.4.1\n"
|
17
19
|
|
18
|
-
#: ../lib/alexandria/
|
20
|
+
#: ../lib/alexandria/about.rb:27
|
21
|
+
msgid "A program to help you manage your book collection."
|
22
|
+
msgstr "Een programma dat u helpt om uw boekcollectie bij te houden."
|
23
|
+
|
24
|
+
#: ../lib/alexandria/book_providers.rb:91
|
25
|
+
msgid "Couldn't reach the provider '%s': timeout expired."
|
26
|
+
msgstr "Kon bronbibliotheek '%s' niet bereiken: timeout verlopen."
|
27
|
+
|
28
|
+
#: ../lib/alexandria/book_providers.rb:95
|
29
|
+
msgid "Couldn't reach the provider '%s': socket error (%s)."
|
30
|
+
msgstr "Kon bronbibliotheek '%s' niet bereiken: socket fout (%s)."
|
31
|
+
|
32
|
+
#: ../lib/alexandria/book_providers.rb:99
|
33
|
+
#: ../lib/alexandria/book_providers.rb:104
|
34
|
+
msgid ""
|
35
|
+
"No results were found. Make sure your search criterion is spelled "
|
36
|
+
"correctly, and try again."
|
37
|
+
msgstr ""
|
38
|
+
"Geen resultaten gevonden. Zorg ervoor dat de zoekcriteria correct gespeld "
|
39
|
+
"zijn en probeer het nogmaals."
|
40
|
+
|
41
|
+
#: ../lib/alexandria/book_providers.rb:109
|
42
|
+
msgid "Too many results for that search."
|
43
|
+
msgstr "Teveel resultaten voor deze zoekopdracht."
|
44
|
+
|
45
|
+
#: ../lib/alexandria/book_providers.rb:112
|
46
|
+
msgid "Invalid search type."
|
47
|
+
msgstr "Ongeldig zoektype."
|
48
|
+
|
49
|
+
#: ../lib/alexandria/book_providers.rb:206
|
50
|
+
msgid "Enabled"
|
51
|
+
msgstr "Geactiveerd"
|
52
|
+
|
53
|
+
#: ../lib/alexandria/book_providers/adlibris.rb:111
|
54
|
+
msgid "title not found on page"
|
55
|
+
msgstr "titel niet gevonden op de pagina"
|
56
|
+
|
57
|
+
#: ../lib/alexandria/book_providers/amazon_aws.rb:26
|
58
|
+
msgid "Locale"
|
59
|
+
msgstr "Taal"
|
60
|
+
|
61
|
+
#: ../lib/alexandria/book_providers/amazon_aws.rb:27
|
62
|
+
msgid "Access key ID"
|
63
|
+
msgstr "Toegangssleutel ID"
|
64
|
+
|
65
|
+
#: ../lib/alexandria/book_providers/amazon_aws.rb:28
|
66
|
+
msgid "Secret access key"
|
67
|
+
msgstr "Geheime toegangssleutel"
|
68
|
+
|
69
|
+
#: ../lib/alexandria/book_providers/amazon_aws.rb:29
|
70
|
+
msgid "Associate Tag"
|
71
|
+
msgstr "Geassocieerd ID"
|
72
|
+
|
73
|
+
#: ../lib/alexandria/book_providers/amazon_aws.rb:59
|
74
|
+
msgid "Provide secret key for your Amazon AWS account."
|
75
|
+
msgstr "Stel een sleutel in voor uw Amazon AWS account."
|
76
|
+
|
77
|
+
#: ../lib/alexandria/book_providers/amazon_aws.rb:149
|
78
|
+
msgid "No products"
|
79
|
+
msgstr "Geen producten"
|
80
|
+
|
81
|
+
#: ../lib/alexandria/book_providers/amazon_ecs_util.rb:102
|
82
|
+
msgid "HTTP Response: %<code>s %<message>s"
|
83
|
+
msgstr ""
|
84
|
+
|
85
|
+
#: ../lib/alexandria/book_providers/amazon_ecs_util.rb:170
|
86
|
+
msgid "Invalid country '%<country>s'"
|
87
|
+
msgstr "Ongeldig land '%<country>s'"
|
88
|
+
|
89
|
+
#: ../lib/alexandria/book_providers/barnes_and_noble.rb:59
|
90
|
+
msgid "HTTP redirect too deep"
|
91
|
+
msgstr ""
|
92
|
+
|
93
|
+
#: ../lib/alexandria/book_providers/z3950.rb:22
|
94
|
+
msgid "Hostname"
|
95
|
+
msgstr "Servernaam"
|
96
|
+
|
97
|
+
#: ../lib/alexandria/book_providers/z3950.rb:23
|
98
|
+
msgid "Port"
|
99
|
+
msgstr "Poort"
|
100
|
+
|
101
|
+
#: ../lib/alexandria/book_providers/z3950.rb:24
|
102
|
+
msgid "Database"
|
103
|
+
msgstr "Database"
|
104
|
+
|
105
|
+
#: ../lib/alexandria/book_providers/z3950.rb:25
|
106
|
+
msgid "Record syntax"
|
107
|
+
msgstr "Record syntax"
|
108
|
+
|
109
|
+
#: ../lib/alexandria/book_providers/z3950.rb:27
|
110
|
+
msgid "Username"
|
111
|
+
msgstr "Gebruikersnaam"
|
112
|
+
|
113
|
+
#: ../lib/alexandria/book_providers/z3950.rb:28
|
114
|
+
msgid "Password"
|
115
|
+
msgstr "Wachtwoord"
|
116
|
+
|
117
|
+
#: ../lib/alexandria/book_providers/z3950.rb:29
|
118
|
+
msgid "Charset encoding"
|
119
|
+
msgstr "Codering karakterset"
|
120
|
+
|
121
|
+
#: ../lib/alexandria/book_providers/z3950.rb:213
|
122
|
+
msgid "Library of Congress (Usa)"
|
123
|
+
msgstr "Library of Congress, V.S."
|
124
|
+
|
125
|
+
#: ../lib/alexandria/book_providers/z3950.rb:249
|
126
|
+
msgid "British Library"
|
127
|
+
msgstr "British Library"
|
128
|
+
|
129
|
+
#: ../lib/alexandria/book_providers/z3950.rb:376
|
130
|
+
msgid "Invalid ISBN"
|
131
|
+
msgstr "Ongeldig ISBN"
|
132
|
+
|
133
|
+
#: ../lib/alexandria/export_format.rb:18
|
134
|
+
msgid "Archived ONIX XML"
|
135
|
+
msgstr "Gearchiveerd ONIX XML"
|
136
|
+
|
137
|
+
#: ../lib/alexandria/export_format.rb:19
|
138
|
+
msgid "Archived Tellico XML"
|
139
|
+
msgstr "Gearchiveerd Tellico XML"
|
140
|
+
|
141
|
+
#: ../lib/alexandria/export_format.rb:20
|
142
|
+
msgid "BibTeX"
|
143
|
+
msgstr "BibTeX"
|
144
|
+
|
145
|
+
#: ../lib/alexandria/export_format.rb:21
|
146
|
+
msgid "CSV list"
|
147
|
+
msgstr "CSV lijst"
|
148
|
+
|
149
|
+
#: ../lib/alexandria/export_format.rb:22
|
150
|
+
msgid "ISBN List"
|
151
|
+
msgstr "ISBN-lijst"
|
152
|
+
|
153
|
+
#: ../lib/alexandria/export_format.rb:23
|
154
|
+
msgid "iPod Notes"
|
155
|
+
msgstr "iPod notities"
|
156
|
+
|
157
|
+
#: ../lib/alexandria/export_format.rb:24
|
158
|
+
msgid "HTML Web Page"
|
159
|
+
msgstr "HTML webpagina"
|
160
|
+
|
161
|
+
#: ../lib/alexandria/import_library.rb:21
|
19
162
|
msgid "Autodetect"
|
20
163
|
msgstr "Automatische detectie"
|
21
164
|
|
22
|
-
#: ../lib/alexandria/import_library.rb:
|
165
|
+
#: ../lib/alexandria/import_library.rb:22
|
23
166
|
msgid "Archived Tellico XML (*.bc, *.tc)"
|
24
167
|
msgstr "Gearchiveerd Tellico XML (*.bc, *.tc)"
|
25
168
|
|
26
|
-
#: ../lib/alexandria/import_library.rb:
|
169
|
+
#: ../lib/alexandria/import_library.rb:24
|
27
170
|
msgid "ISBN List (*.txt)"
|
28
171
|
msgstr "ISBN-lijst (*.txt)"
|
29
172
|
|
30
|
-
#: ../lib/alexandria/import_library.rb:
|
173
|
+
#: ../lib/alexandria/import_library.rb:25
|
31
174
|
msgid "GoodReads CSV"
|
32
175
|
msgstr "GoodReads CSV"
|
33
176
|
|
34
|
-
#: ../lib/alexandria/
|
35
|
-
msgid "
|
36
|
-
msgstr "
|
177
|
+
#: ../lib/alexandria/import_library.rb:65
|
178
|
+
msgid "Unsupported type"
|
179
|
+
msgstr ""
|
180
|
+
|
181
|
+
#: ../lib/alexandria/import_library_csv.rb:199
|
182
|
+
msgid "Not Recognized"
|
183
|
+
msgstr "Niet herkend"
|
37
184
|
|
38
|
-
#: ../lib/alexandria/
|
185
|
+
#: ../lib/alexandria/library_store.rb:37
|
39
186
|
msgid "My Library"
|
40
187
|
msgstr "Mijn bibliotheek"
|
41
188
|
|
42
|
-
#: ../lib/alexandria/
|
43
|
-
msgid "
|
44
|
-
msgstr "
|
189
|
+
#: ../lib/alexandria/library_store.rb:67
|
190
|
+
msgid "Not a book: %<book>s"
|
191
|
+
msgstr ""
|
45
192
|
|
46
|
-
#: ../lib/alexandria/
|
47
|
-
msgid "
|
48
|
-
msgstr "
|
193
|
+
#: ../lib/alexandria/library_store.rb:78
|
194
|
+
msgid "%<file>s isbn is not okay"
|
195
|
+
msgstr ""
|
49
196
|
|
50
|
-
#: ../lib/alexandria/
|
51
|
-
msgid "
|
52
|
-
msgstr "
|
197
|
+
#: ../lib/alexandria/library_store.rb:83
|
198
|
+
msgid "%<file>s version is not okay"
|
199
|
+
msgstr ""
|
53
200
|
|
54
|
-
#: ../lib/alexandria/
|
55
|
-
msgid "
|
56
|
-
msgstr "
|
201
|
+
#: ../lib/alexandria/library_store.rb:88
|
202
|
+
msgid "%<file>s pub year is not okay"
|
203
|
+
msgstr ""
|
57
204
|
|
58
|
-
#: ../lib/alexandria/
|
59
|
-
msgid "
|
60
|
-
msgstr "
|
205
|
+
#: ../lib/alexandria/models/library.rb:40
|
206
|
+
msgid "Untitled"
|
207
|
+
msgstr "Naamloos"
|
61
208
|
|
62
|
-
#: ../lib/alexandria/
|
63
|
-
msgid "
|
64
|
-
msgstr "
|
209
|
+
#: ../lib/alexandria/models/library.rb:288
|
210
|
+
msgid "Book %<isbn>s was already deleted"
|
211
|
+
msgstr "Boek %<isbn>s is al verwijderd"
|
65
212
|
|
66
|
-
#: ../lib/alexandria/
|
67
|
-
msgid "
|
68
|
-
msgstr "
|
213
|
+
#: ../lib/alexandria/scanners/cue_cat.rb:75
|
214
|
+
msgid "Don't know how to handle type %<type>s (barcode: %<code>s)"
|
215
|
+
msgstr ""
|
69
216
|
|
70
|
-
#: ../lib/alexandria/
|
71
|
-
msgid "
|
72
|
-
msgstr "
|
217
|
+
#: ../lib/alexandria/scanners/cue_cat.rb:109
|
218
|
+
msgid "Error parsing CueCat input"
|
219
|
+
msgstr ""
|
73
220
|
|
74
|
-
#: ../lib/alexandria/
|
75
|
-
msgid "
|
76
|
-
msgstr "
|
221
|
+
#: ../lib/alexandria/scanners/keyboard.rb:51
|
222
|
+
msgid "Unknown scan data %s<data>"
|
223
|
+
msgstr ""
|
77
224
|
|
78
|
-
#: ../lib/alexandria/
|
79
|
-
msgid "
|
80
|
-
msgstr "
|
225
|
+
#: ../lib/alexandria/smart_library.rb:49
|
226
|
+
msgid "Favorite"
|
227
|
+
msgstr "Favoriet"
|
81
228
|
|
82
|
-
#: ../lib/alexandria/
|
83
|
-
msgid "
|
84
|
-
msgstr "
|
229
|
+
#: ../lib/alexandria/smart_library.rb:55
|
230
|
+
msgid "Loaned"
|
231
|
+
msgstr "Uitgeleend"
|
85
232
|
|
86
|
-
#: ../lib/alexandria/
|
87
|
-
|
88
|
-
|
233
|
+
#: ../lib/alexandria/smart_library.rb:61 ../lib/alexandria/smart_library.rb:307
|
234
|
+
#: ../lib/alexandria/ui/listview.rb:59
|
235
|
+
msgid "Read"
|
236
|
+
msgstr "Gelezen"
|
89
237
|
|
90
|
-
#: ../lib/alexandria/
|
91
|
-
msgid "
|
92
|
-
msgstr "
|
238
|
+
#: ../lib/alexandria/smart_library.rb:67
|
239
|
+
msgid "Owned"
|
240
|
+
msgstr "In bezit"
|
93
241
|
|
94
|
-
#: ../lib/alexandria/
|
95
|
-
msgid "
|
96
|
-
msgstr "
|
242
|
+
#: ../lib/alexandria/smart_library.rb:76
|
243
|
+
msgid "Wishlist"
|
244
|
+
msgstr "Verlanglijst"
|
97
245
|
|
98
|
-
#: ../lib/alexandria/ui/
|
99
|
-
msgid "
|
100
|
-
|
101
|
-
msgstr[0] "Bibliotheek '%s' geselecteerd. %d ongewaardeerd boek"
|
102
|
-
msgstr[1] "Bibliotheek '%s' geselecteerd. %d ongewaardeerde boeken"
|
246
|
+
#: ../lib/alexandria/smart_library.rb:295 ../lib/alexandria/ui/listview.rb:32
|
247
|
+
msgid "Title"
|
248
|
+
msgstr "Titel"
|
103
249
|
|
104
|
-
#: ../lib/alexandria/ui/
|
105
|
-
msgid "
|
106
|
-
|
107
|
-
msgstr[0] "Bibliotheek '%s' geselecteerd, %d boek"
|
108
|
-
msgstr[1] "Bibliotheek '%s' geselecteerd, %d boeken"
|
250
|
+
#: ../lib/alexandria/smart_library.rb:296 ../lib/alexandria/ui/listview.rb:52
|
251
|
+
msgid "ISBN"
|
252
|
+
msgstr "ISBN"
|
109
253
|
|
110
|
-
#: ../lib/alexandria/ui/
|
111
|
-
msgid "
|
112
|
-
|
113
|
-
msgstr[0] "Bibliotheek '%s' geselecteerd, %d boek, %d zonder waardering"
|
114
|
-
msgstr[1] "Bibliotheek '%s' geselecteerd, %d boeken, %d zonder waardering"
|
254
|
+
#: ../lib/alexandria/smart_library.rb:297 ../lib/alexandria/ui/listview.rb:51
|
255
|
+
msgid "Authors"
|
256
|
+
msgstr "Auteurs"
|
115
257
|
|
116
|
-
#: ../lib/alexandria/ui/
|
117
|
-
msgid "
|
118
|
-
msgstr "
|
258
|
+
#: ../lib/alexandria/smart_library.rb:298 ../lib/alexandria/ui/listview.rb:53
|
259
|
+
msgid "Publisher"
|
260
|
+
msgstr "Uitgever"
|
119
261
|
|
120
|
-
#: ../lib/alexandria/ui/
|
121
|
-
msgid "
|
122
|
-
|
123
|
-
msgstr[0] "%d boek geselecteerd"
|
124
|
-
msgstr[1] "%d boeken geselecteerd"
|
262
|
+
#: ../lib/alexandria/smart_library.rb:299 ../lib/alexandria/ui/listview.rb:54
|
263
|
+
msgid "Publish Year"
|
264
|
+
msgstr "Jaar van uitgifte"
|
125
265
|
|
126
|
-
#: ../lib/alexandria/ui/
|
127
|
-
msgid "
|
128
|
-
msgstr "
|
266
|
+
#: ../lib/alexandria/smart_library.rb:300 ../lib/alexandria/ui/listview.rb:55
|
267
|
+
msgid "Binding"
|
268
|
+
msgstr "Band"
|
129
269
|
|
130
|
-
#: ../lib/alexandria/ui/
|
131
|
-
msgid ""
|
132
|
-
|
133
|
-
"> Advanced -> Preferred Applications) and try again."
|
134
|
-
msgstr ""
|
135
|
-
"Controleer of een standaard webbrowser is ingesteld (Systeem -> Voorkeuren -"
|
136
|
-
"> Voorkeursapplicaties) en probeer opnieuw."
|
270
|
+
#: ../lib/alexandria/smart_library.rb:301 ../lib/alexandria/ui/listview.rb:106
|
271
|
+
msgid "Rating"
|
272
|
+
msgstr "Waardering"
|
137
273
|
|
138
|
-
#: ../lib/alexandria/
|
139
|
-
|
140
|
-
|
274
|
+
#: ../lib/alexandria/smart_library.rb:302
|
275
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:762
|
276
|
+
msgid "Notes"
|
277
|
+
msgstr "Notities"
|
141
278
|
|
142
|
-
#: ../lib/alexandria/ui/
|
143
|
-
|
144
|
-
|
145
|
-
|
279
|
+
#: ../lib/alexandria/smart_library.rb:303 ../lib/alexandria/ui/listview.rb:86
|
280
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:230
|
281
|
+
msgid "Tags"
|
282
|
+
msgstr "Trefwoorden"
|
283
|
+
|
284
|
+
#: ../lib/alexandria/smart_library.rb:304
|
285
|
+
msgid "Loaning State"
|
286
|
+
msgstr "Uitleenstatus"
|
287
|
+
|
288
|
+
#: ../lib/alexandria/smart_library.rb:305
|
289
|
+
msgid "Loaning Date"
|
290
|
+
msgstr "Uitleendatum"
|
291
|
+
|
292
|
+
#: ../lib/alexandria/smart_library.rb:306
|
293
|
+
msgid "Loaning Person"
|
294
|
+
msgstr "Uitgeleend aan"
|
295
|
+
|
296
|
+
#: ../lib/alexandria/smart_library.rb:308
|
297
|
+
msgid "Date Read"
|
298
|
+
msgstr "Leesdatum"
|
299
|
+
|
300
|
+
#: ../lib/alexandria/smart_library.rb:309 ../lib/alexandria/ui/listview.rb:60
|
301
|
+
msgid "Own"
|
302
|
+
msgstr "In bezit"
|
303
|
+
|
304
|
+
#: ../lib/alexandria/smart_library.rb:310 ../lib/alexandria/ui/listview.rb:61
|
305
|
+
msgid "Want"
|
306
|
+
msgstr "Gewenst"
|
307
|
+
|
308
|
+
#: ../lib/alexandria/smart_library.rb:317
|
309
|
+
msgid "days"
|
310
|
+
msgstr "dagen"
|
311
|
+
|
312
|
+
#: ../lib/alexandria/smart_library.rb:327
|
313
|
+
msgid "is set"
|
314
|
+
msgstr "is ingesteld"
|
315
|
+
|
316
|
+
#: ../lib/alexandria/smart_library.rb:330
|
317
|
+
msgid "is not set"
|
318
|
+
msgstr "is niet ingesteld"
|
319
|
+
|
320
|
+
#: ../lib/alexandria/smart_library.rb:333
|
321
|
+
msgid "is"
|
322
|
+
msgstr "is"
|
323
|
+
|
324
|
+
#: ../lib/alexandria/smart_library.rb:336
|
325
|
+
msgid "is not"
|
326
|
+
msgstr "is niet"
|
327
|
+
|
328
|
+
#: ../lib/alexandria/smart_library.rb:339
|
329
|
+
msgid "contains"
|
330
|
+
msgstr "bevat"
|
331
|
+
|
332
|
+
#: ../lib/alexandria/smart_library.rb:342
|
333
|
+
msgid "does not contain"
|
334
|
+
msgstr "bevat niet"
|
335
|
+
|
336
|
+
#: ../lib/alexandria/smart_library.rb:345
|
337
|
+
msgid "starts with"
|
338
|
+
msgstr "begint met"
|
339
|
+
|
340
|
+
#: ../lib/alexandria/smart_library.rb:348
|
341
|
+
msgid "ends with"
|
342
|
+
msgstr "eindigt met"
|
343
|
+
|
344
|
+
#: ../lib/alexandria/smart_library.rb:351
|
345
|
+
msgid "is greater than"
|
346
|
+
msgstr "is groter dan"
|
347
|
+
|
348
|
+
#: ../lib/alexandria/smart_library.rb:354
|
349
|
+
msgid "is less than"
|
350
|
+
msgstr "is kleiner dan"
|
351
|
+
|
352
|
+
#: ../lib/alexandria/smart_library.rb:357
|
353
|
+
msgid "is after"
|
354
|
+
msgstr "komt na"
|
355
|
+
|
356
|
+
#: ../lib/alexandria/smart_library.rb:360
|
357
|
+
msgid "is before"
|
358
|
+
msgstr "komt voor"
|
359
|
+
|
360
|
+
#: ../lib/alexandria/smart_library.rb:364
|
361
|
+
msgid "is in last"
|
362
|
+
msgstr "komt in de laatste"
|
363
|
+
|
364
|
+
#: ../lib/alexandria/smart_library.rb:384
|
365
|
+
msgid "is not in last"
|
366
|
+
msgstr "komt niet in de laatste"
|
367
|
+
|
368
|
+
#: ../lib/alexandria/smart_library.rb:465
|
369
|
+
msgid "invalid operand klass %<klass>s"
|
146
370
|
msgstr ""
|
147
|
-
"Controleer of een standaard e-mailprogramma is ingesteld (Systeem -> "
|
148
|
-
"Voorkeuren -> Voorkeursapplicaties) en probeer opnieuw."
|
149
371
|
|
150
|
-
#: ../lib/alexandria/ui/
|
151
|
-
msgid "
|
152
|
-
|
372
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:202
|
373
|
+
msgid "There was %d duplicate"
|
374
|
+
msgid_plural "There were %d duplicates"
|
375
|
+
msgstr[0] "Er was %d duplikaat"
|
376
|
+
msgstr[1] "Er waren %d duplikaten"
|
377
|
+
|
378
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:205
|
379
|
+
msgid "Couldn't add this book"
|
380
|
+
msgid_plural "Couldn't add these books"
|
381
|
+
msgstr[0] "Kon het boek niet toevoegen"
|
382
|
+
msgstr[1] "Kon deze boeken niet toevoegen"
|
383
|
+
|
384
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:284
|
385
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:500
|
386
|
+
msgid "Searching Provider '%s'..."
|
387
|
+
msgstr "Zoeken bij bronbibliotheek '%s'..."
|
388
|
+
|
389
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:285
|
390
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:501
|
391
|
+
msgid "Error while Searching Provider '%s'"
|
392
|
+
msgstr "Fout tijdens het zoeken bij bronbibliotheek '%s'"
|
393
|
+
|
394
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:286
|
395
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:502
|
396
|
+
msgid "Not Found at Provider '%s'"
|
397
|
+
msgstr "Niet gevonden bij bronbibliotheek '%s'"
|
398
|
+
|
399
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:287
|
400
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:503
|
401
|
+
msgid "Found at Provider '%s'"
|
402
|
+
msgstr "Gevonden bij bronbibliotheek '%s'"
|
403
|
+
|
404
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:406
|
405
|
+
msgid "Ready to use %s barcode scanner"
|
406
|
+
msgstr "Klaar om de streepjescodescanner '%s' te gebruiken"
|
407
|
+
|
408
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:430
|
409
|
+
msgid "Click below to scan _barcodes"
|
410
|
+
msgstr "Klik hieronder om _streepjescodes te scannen"
|
411
|
+
|
412
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:112
|
413
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:122
|
414
|
+
msgid "Couldn't modify the book"
|
415
|
+
msgstr "Kon het boek niet aanpassen"
|
153
416
|
|
154
|
-
#: ../lib/alexandria/ui/
|
417
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:113
|
418
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:74
|
155
419
|
msgid ""
|
156
|
-
"
|
157
|
-
"
|
158
|
-
"providers?\n"
|
420
|
+
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
421
|
+
"correcty, and try again."
|
159
422
|
msgstr ""
|
160
|
-
"
|
161
|
-
"
|
423
|
+
"Kon het EAN/ISBN dat u invoerde niet valideren. Kijk of het correct "
|
424
|
+
"geschreven is en probeer het nogmaals."
|
162
425
|
|
163
|
-
#: ../lib/alexandria/ui/
|
164
|
-
|
165
|
-
|
426
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:123
|
427
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:79
|
428
|
+
msgid "The EAN/ISBN you provided is already used in this library."
|
429
|
+
msgstr "Het EAN/ISBN dat u invoerde wordt al gebruikt in deze bibliotheek."
|
166
430
|
|
167
|
-
#: ../lib/alexandria/ui/
|
168
|
-
msgid "
|
169
|
-
msgstr "
|
431
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:206
|
432
|
+
msgid "Properties"
|
433
|
+
msgstr "Eigenschappen"
|
170
434
|
|
171
|
-
#: ../lib/alexandria/ui/
|
172
|
-
|
173
|
-
|
435
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:208
|
436
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog.rb:21
|
437
|
+
msgid "Properties for '%s'"
|
438
|
+
msgstr "Eigenschappen voor %s"
|
439
|
+
|
440
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:214
|
441
|
+
msgid "Author"
|
442
|
+
msgstr "Auteur"
|
443
|
+
|
444
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:263
|
445
|
+
msgid "Select a cover image"
|
446
|
+
msgstr "Selecteer een afbeelding voor de voorkant"
|
447
|
+
|
448
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:267
|
449
|
+
msgid "No Cover"
|
450
|
+
msgstr "Geen kaft"
|
451
|
+
|
452
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:346
|
453
|
+
msgid "%d day"
|
454
|
+
msgid_plural "%d days"
|
455
|
+
msgstr[0] "%d dag"
|
456
|
+
msgstr[1] "%d dagen"
|
174
457
|
|
175
|
-
#: ../lib/alexandria/ui/
|
458
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:372
|
459
|
+
msgid "out of range"
|
460
|
+
msgstr "buiten bereik"
|
461
|
+
|
462
|
+
#: ../lib/alexandria/ui/callbacks.rb:57
|
176
463
|
msgid "The following lines are not valid ISBNs and were not imported:"
|
177
464
|
msgstr ""
|
178
465
|
"De volgende regels bevatten geen geldige ISBNs en zijn daarom niet "
|
179
466
|
"geïmporteerd:"
|
180
467
|
|
181
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
182
|
-
|
183
|
-
|
184
|
-
msgstr "Het exporteren is mislukt"
|
185
|
-
|
186
|
-
#: ../lib/alexandria/ui/callbacks.rb:123
|
187
|
-
msgid "Try letting this library load completely before exporting."
|
188
|
-
msgstr "Probeer voor het exporteren deze bibliotheek volledig te laten laden"
|
468
|
+
#: ../lib/alexandria/ui/callbacks.rb:62
|
469
|
+
msgid "Books could not be found for the following ISBNs:"
|
470
|
+
msgstr "Geen boeken gevonden voor de volgende ISBNs:"
|
189
471
|
|
190
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
472
|
+
#: ../lib/alexandria/ui/callbacks.rb:362
|
191
473
|
msgid "_Library"
|
192
474
|
msgstr "_Bibliotheek"
|
193
475
|
|
194
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
476
|
+
#: ../lib/alexandria/ui/callbacks.rb:363
|
195
477
|
msgid "_New Library"
|
196
478
|
msgstr "_Nieuwe bibliotheek"
|
197
479
|
|
198
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
480
|
+
#: ../lib/alexandria/ui/callbacks.rb:363
|
199
481
|
msgid "Create a new library"
|
200
482
|
msgstr "Maak een nieuwe bibliotheek aan"
|
201
483
|
|
202
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
484
|
+
#: ../lib/alexandria/ui/callbacks.rb:364
|
203
485
|
msgid "New _Smart Library..."
|
204
486
|
msgstr "Nieuwe _slimme bibliotheek..."
|
205
487
|
|
206
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
488
|
+
#: ../lib/alexandria/ui/callbacks.rb:364
|
207
489
|
msgid "Create a new smart library"
|
208
490
|
msgstr "Maak een nieuwe slimme bibliotheek aan"
|
209
491
|
|
210
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
492
|
+
#: ../lib/alexandria/ui/callbacks.rb:365
|
211
493
|
msgid "_Add Book..."
|
212
494
|
msgstr "Boek _toevoegen..."
|
213
495
|
|
214
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
496
|
+
#: ../lib/alexandria/ui/callbacks.rb:365
|
215
497
|
msgid "Add a new book from the Internet"
|
216
498
|
msgstr "Voeg een nieuw boek toe vanaf het internet"
|
217
499
|
|
218
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
500
|
+
#: ../lib/alexandria/ui/callbacks.rb:366
|
219
501
|
msgid "Add Book _Manually..."
|
220
502
|
msgstr "Boek hand_matig toevoegen..."
|
221
503
|
|
222
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
504
|
+
#: ../lib/alexandria/ui/callbacks.rb:366
|
223
505
|
msgid "Add a new book manually"
|
224
506
|
msgstr "Een nieuw boek handmatig toevoegen"
|
225
507
|
|
226
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
508
|
+
#: ../lib/alexandria/ui/callbacks.rb:367
|
227
509
|
msgid "_Import..."
|
228
510
|
msgstr "_Importeren..."
|
229
511
|
|
230
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
512
|
+
#: ../lib/alexandria/ui/callbacks.rb:367
|
231
513
|
msgid "Import a library"
|
232
514
|
msgstr "Importeer een bibliotheek"
|
233
515
|
|
234
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
516
|
+
#: ../lib/alexandria/ui/callbacks.rb:368
|
235
517
|
msgid "_Export..."
|
236
518
|
msgstr "_Exporteren..."
|
237
519
|
|
238
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
520
|
+
#: ../lib/alexandria/ui/callbacks.rb:368
|
239
521
|
msgid "Export the selected library"
|
240
522
|
msgstr "Exporteer de geselecteerde bibliotheek"
|
241
523
|
|
242
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
243
|
-
msgid "
|
524
|
+
#: ../lib/alexandria/ui/callbacks.rb:369
|
525
|
+
msgid "A_cquire from Scanner..."
|
244
526
|
msgstr "_Inlezen d.m.v. scanner..."
|
245
527
|
|
246
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
528
|
+
#: ../lib/alexandria/ui/callbacks.rb:369
|
247
529
|
msgid "Acquire books from a scanner"
|
248
530
|
msgstr "Boeken inlezen d.m.v. scanner"
|
249
531
|
|
250
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
532
|
+
#: ../lib/alexandria/ui/callbacks.rb:370
|
251
533
|
msgid "_Properties"
|
252
534
|
msgstr "_Eigenschappen"
|
253
535
|
|
254
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
536
|
+
#: ../lib/alexandria/ui/callbacks.rb:370
|
255
537
|
msgid "Edit the properties of the selected book"
|
256
538
|
msgstr "Eigenschappen van het geselecteerde boek bewerken"
|
257
539
|
|
258
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
540
|
+
#: ../lib/alexandria/ui/callbacks.rb:371
|
259
541
|
msgid "_Quit"
|
260
542
|
msgstr "_Afsluiten"
|
261
543
|
|
262
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
544
|
+
#: ../lib/alexandria/ui/callbacks.rb:371
|
263
545
|
msgid "Quit the program"
|
264
546
|
msgstr "Het programma afsluiten"
|
265
547
|
|
266
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
548
|
+
#: ../lib/alexandria/ui/callbacks.rb:372
|
267
549
|
msgid "_Edit"
|
268
550
|
msgstr "_Bewerken"
|
269
551
|
|
270
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
552
|
+
#: ../lib/alexandria/ui/callbacks.rb:373
|
271
553
|
msgid "_Undo"
|
272
554
|
msgstr "_Ongedaan maken"
|
273
555
|
|
274
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
556
|
+
#: ../lib/alexandria/ui/callbacks.rb:373
|
275
557
|
msgid "Undo the last action"
|
276
558
|
msgstr "De laatste actie ongedaan maken"
|
277
559
|
|
278
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
560
|
+
#: ../lib/alexandria/ui/callbacks.rb:374
|
279
561
|
msgid "_Redo"
|
280
562
|
msgstr "_Opnieuw uitvoeren"
|
281
563
|
|
282
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
564
|
+
#: ../lib/alexandria/ui/callbacks.rb:374
|
283
565
|
msgid "Redo the undone action"
|
284
566
|
msgstr "De ongedaan gemaakte handeling toch uitvoeren"
|
285
567
|
|
286
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
568
|
+
#: ../lib/alexandria/ui/callbacks.rb:375
|
287
569
|
msgid "_Select All"
|
288
570
|
msgstr "_Alles selecteren"
|
289
571
|
|
290
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
572
|
+
#: ../lib/alexandria/ui/callbacks.rb:375
|
291
573
|
msgid "Select all visible books"
|
292
574
|
msgstr "Selecteer alle zichtbare boeken"
|
293
575
|
|
294
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
576
|
+
#: ../lib/alexandria/ui/callbacks.rb:376
|
295
577
|
msgid "Dese_lect All"
|
296
578
|
msgstr "Alles _deselecteren"
|
297
579
|
|
298
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
580
|
+
#: ../lib/alexandria/ui/callbacks.rb:376
|
299
581
|
msgid "Deselect everything"
|
300
582
|
msgstr "Alles deselecteren"
|
301
583
|
|
302
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
584
|
+
#: ../lib/alexandria/ui/callbacks.rb:377
|
303
585
|
msgid "My _Rating"
|
304
586
|
msgstr "Mijn _waardering"
|
305
587
|
|
306
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
588
|
+
#: ../lib/alexandria/ui/callbacks.rb:378
|
307
589
|
msgid "None"
|
308
590
|
msgstr "Geen"
|
309
591
|
|
310
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
592
|
+
#: ../lib/alexandria/ui/callbacks.rb:379
|
311
593
|
msgid "One Star"
|
312
594
|
msgstr "Een ster"
|
313
595
|
|
314
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
596
|
+
#: ../lib/alexandria/ui/callbacks.rb:380
|
315
597
|
msgid "Two Stars"
|
316
598
|
msgstr "Twee sterren"
|
317
599
|
|
318
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
600
|
+
#: ../lib/alexandria/ui/callbacks.rb:381
|
319
601
|
msgid "Three Stars"
|
320
602
|
msgstr "Drie sterren"
|
321
603
|
|
322
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
604
|
+
#: ../lib/alexandria/ui/callbacks.rb:382
|
323
605
|
msgid "Four Stars"
|
324
606
|
msgstr "Vier sterren"
|
325
607
|
|
326
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
608
|
+
#: ../lib/alexandria/ui/callbacks.rb:383
|
327
609
|
msgid "Five Stars"
|
328
610
|
msgstr "Vijf sterren"
|
329
611
|
|
330
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
612
|
+
#: ../lib/alexandria/ui/callbacks.rb:384
|
331
613
|
msgid "_Move"
|
332
614
|
msgstr "_Verplaatsen"
|
333
615
|
|
334
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
616
|
+
#: ../lib/alexandria/ui/callbacks.rb:385
|
335
617
|
msgid "_Rename"
|
336
618
|
msgstr "_Hernoemen"
|
337
619
|
|
338
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
620
|
+
#: ../lib/alexandria/ui/callbacks.rb:386
|
339
621
|
msgid "_Delete"
|
340
622
|
msgstr "_Verwijderen"
|
341
623
|
|
342
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
624
|
+
#: ../lib/alexandria/ui/callbacks.rb:386
|
343
625
|
msgid "Delete the selected books or library"
|
344
626
|
msgstr "De geselecteerde boeken verwijderen"
|
345
627
|
|
346
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
628
|
+
#: ../lib/alexandria/ui/callbacks.rb:387
|
347
629
|
msgid "_Search"
|
348
630
|
msgstr "_Zoeken"
|
349
631
|
|
350
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
632
|
+
#: ../lib/alexandria/ui/callbacks.rb:387
|
351
633
|
msgid "Filter books"
|
352
634
|
msgstr "Boeken filteren"
|
353
635
|
|
354
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
636
|
+
#: ../lib/alexandria/ui/callbacks.rb:388
|
355
637
|
msgid "_Clear Results"
|
356
638
|
msgstr "Resultaten _wissen"
|
357
639
|
|
358
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
640
|
+
#: ../lib/alexandria/ui/callbacks.rb:388
|
359
641
|
msgid "Clear the search results"
|
360
642
|
msgstr "Zoekresultaten wissen"
|
361
643
|
|
362
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
644
|
+
#: ../lib/alexandria/ui/callbacks.rb:389
|
363
645
|
msgid "_Preferences"
|
364
646
|
msgstr "_Voorkeuren"
|
365
647
|
|
366
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
648
|
+
#: ../lib/alexandria/ui/callbacks.rb:389
|
367
649
|
msgid "Change Alexandria's settings"
|
368
650
|
msgstr "Alexandria's instellingen wijzigen"
|
369
651
|
|
370
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
652
|
+
#: ../lib/alexandria/ui/callbacks.rb:390
|
371
653
|
msgid "_View"
|
372
654
|
msgstr "_Beeld"
|
373
655
|
|
374
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
656
|
+
#: ../lib/alexandria/ui/callbacks.rb:391
|
375
657
|
msgid "Arran_ge Icons"
|
376
658
|
msgstr "Iconen _schikken"
|
377
659
|
|
378
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
660
|
+
#: ../lib/alexandria/ui/callbacks.rb:392
|
379
661
|
msgid "Display Online _Information"
|
380
662
|
msgstr "Online _informatie tonen"
|
381
663
|
|
382
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
664
|
+
#: ../lib/alexandria/ui/callbacks.rb:394
|
383
665
|
msgid "_Help"
|
384
666
|
msgstr "_Help"
|
385
667
|
|
386
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
668
|
+
#: ../lib/alexandria/ui/callbacks.rb:395
|
387
669
|
msgid "Submit _Bug Report"
|
388
670
|
msgstr "_Foutenrapportage opsturen"
|
389
671
|
|
390
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
672
|
+
#: ../lib/alexandria/ui/callbacks.rb:395
|
391
673
|
msgid "Submit a bug report to the developers"
|
392
674
|
msgstr "Stuur de ontwikkelaars een foutenrapportage"
|
393
675
|
|
394
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
676
|
+
#: ../lib/alexandria/ui/callbacks.rb:396
|
395
677
|
msgid "Contents"
|
396
678
|
msgstr "Inhoud"
|
397
679
|
|
398
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
680
|
+
#: ../lib/alexandria/ui/callbacks.rb:396
|
399
681
|
msgid "View Alexandria's manual"
|
400
682
|
msgstr "Alexandria's handleiding inzien"
|
401
683
|
|
402
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
684
|
+
#: ../lib/alexandria/ui/callbacks.rb:397
|
403
685
|
msgid "_About"
|
404
686
|
msgstr "_Over"
|
405
687
|
|
406
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
688
|
+
#: ../lib/alexandria/ui/callbacks.rb:397
|
407
689
|
msgid "Show information about Alexandria"
|
408
690
|
msgstr "Toon informatie over Alexandria"
|
409
691
|
|
410
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
411
|
-
msgid "
|
692
|
+
#: ../lib/alexandria/ui/callbacks.rb:404
|
693
|
+
msgid "At _%s"
|
694
|
+
msgstr "Bij _%s"
|
695
|
+
|
696
|
+
#: ../lib/alexandria/ui/callbacks.rb:410
|
697
|
+
msgid "Side_pane"
|
412
698
|
msgstr "Zij_paneel"
|
413
699
|
|
414
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
700
|
+
#: ../lib/alexandria/ui/callbacks.rb:411
|
415
701
|
msgid "_Toolbar"
|
416
702
|
msgstr "_Knoppenbalk"
|
417
703
|
|
418
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
704
|
+
#: ../lib/alexandria/ui/callbacks.rb:412
|
419
705
|
msgid "_Statusbar"
|
420
706
|
msgstr "_Statusbalk"
|
421
707
|
|
422
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
708
|
+
#: ../lib/alexandria/ui/callbacks.rb:413
|
423
709
|
msgid "Re_versed Order"
|
424
710
|
msgstr "_Omgekeerde volgorde"
|
425
711
|
|
426
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
712
|
+
#: ../lib/alexandria/ui/callbacks.rb:418
|
427
713
|
msgid "View as _Icons"
|
428
714
|
msgstr "Toon als _iconen"
|
429
715
|
|
430
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
716
|
+
#: ../lib/alexandria/ui/callbacks.rb:419
|
431
717
|
msgid "View as _List"
|
432
718
|
msgstr "Toon als _lijst"
|
433
719
|
|
434
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
720
|
+
#: ../lib/alexandria/ui/callbacks.rb:423
|
435
721
|
msgid "By _Title"
|
436
722
|
msgstr "Op _titel"
|
437
723
|
|
438
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
724
|
+
#: ../lib/alexandria/ui/callbacks.rb:424
|
439
725
|
msgid "By _Authors"
|
440
726
|
msgstr "Op _auteurs"
|
441
727
|
|
442
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
728
|
+
#: ../lib/alexandria/ui/callbacks.rb:425
|
443
729
|
msgid "By _ISBN"
|
444
730
|
msgstr "Op _ISBN"
|
445
731
|
|
446
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
732
|
+
#: ../lib/alexandria/ui/callbacks.rb:426
|
447
733
|
msgid "By _Publisher"
|
448
734
|
msgstr "Op _uitgever"
|
449
735
|
|
450
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
736
|
+
#: ../lib/alexandria/ui/callbacks.rb:427
|
451
737
|
msgid "By _Binding"
|
452
738
|
msgstr "Op _band"
|
453
739
|
|
454
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
740
|
+
#: ../lib/alexandria/ui/callbacks.rb:428
|
455
741
|
msgid "By _Rating"
|
456
742
|
msgstr "Op _waardering"
|
457
743
|
|
458
|
-
#: ../lib/alexandria/ui/
|
459
|
-
msgid "At _%s"
|
460
|
-
msgstr "Bij _%s"
|
461
|
-
|
462
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:395
|
463
|
-
msgid "There was %d duplicate"
|
464
|
-
msgid_plural "There were %d duplicates"
|
465
|
-
msgstr[0] "Er was %d duplikaat"
|
466
|
-
msgstr[1] "Er waren %d duplikaten"
|
467
|
-
|
468
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:398
|
469
|
-
msgid "Couldn't add this book"
|
470
|
-
msgid_plural "Couldn't add these books"
|
471
|
-
msgstr[0] "Kon het boek niet toevoegen"
|
472
|
-
msgstr[1] "Kon deze boeken niet toevoegen"
|
473
|
-
|
474
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:477
|
475
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:555
|
476
|
-
msgid "Searching Provider '%s'..."
|
477
|
-
msgstr "Zoeken bij bronbibliotheek '%s'..."
|
478
|
-
|
479
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:478
|
480
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:556
|
481
|
-
msgid "Error while Searching Provider '%s'"
|
482
|
-
msgstr "Fout tijdens het zoeken bij bronbibliotheek '%s'"
|
483
|
-
|
484
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:479
|
485
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:557
|
486
|
-
msgid "Not Found at Provider '%s'"
|
487
|
-
msgstr "Niet gevonden bij bronbibliotheek '%s'"
|
488
|
-
|
489
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:480
|
490
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:558
|
491
|
-
msgid "Found at Provider '%s'"
|
492
|
-
msgstr "Gevonden bij bronbibliotheek '%s'"
|
493
|
-
|
494
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:610
|
495
|
-
msgid "Ready to use %s barcode scanner"
|
496
|
-
msgstr "Klaar om de streepjescodescanner '%s' te gebruiken"
|
497
|
-
|
498
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:625
|
499
|
-
#: ../data/alexandria/glade/acquire_dialog.glade:26
|
500
|
-
msgid "_Barcode Scanner Ready"
|
501
|
-
msgstr "_Streepjescodescanner klaar"
|
502
|
-
|
503
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:640
|
504
|
-
msgid "Click below to scan _barcodes"
|
505
|
-
msgstr "Klik hieronder om _streepjescodes te scannen"
|
506
|
-
|
507
|
-
#: ../lib/alexandria/ui/dialogs/bad_isbns_dialog.rb:24
|
508
|
-
msgid "There's a problem"
|
509
|
-
msgstr "Er is een probleem"
|
510
|
-
|
511
|
-
#: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:30
|
512
|
-
msgid "New Smart Library"
|
513
|
-
msgstr "Nieuwe slimme bibliotheek"
|
514
|
-
|
515
|
-
#: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:49
|
516
|
-
msgid "Smart Library"
|
517
|
-
msgstr "Slimme bibliotheek"
|
518
|
-
|
519
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:106
|
520
|
-
msgid "Preferences for %s"
|
521
|
-
msgstr "Voorkeuren voor %s"
|
522
|
-
|
523
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:131
|
524
|
-
msgid "New Provider"
|
525
|
-
msgstr "Nieuwe bronbibliotheek"
|
526
|
-
|
527
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:146
|
528
|
-
msgid "_Name:"
|
529
|
-
msgstr "_Naam:"
|
530
|
-
|
531
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:158
|
532
|
-
msgid "_Type:"
|
533
|
-
msgstr "_Type:"
|
534
|
-
|
535
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:316
|
536
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
|
537
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
|
538
|
-
msgid "Disable Provider"
|
539
|
-
msgstr "Schakel bronbibliotheek uit"
|
540
|
-
|
541
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
|
542
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
|
543
|
-
msgid "Enable Provider"
|
544
|
-
msgstr "Schakel bronbibliotheek in"
|
545
|
-
|
546
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:423
|
547
|
-
msgid "Are you sure you want to permanently delete the provider '%s'?"
|
548
|
-
msgstr "Weet u zeker dat u bron '%s' permanent wilt verwijderen?"
|
549
|
-
|
550
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:431
|
551
|
-
msgid ""
|
552
|
-
"If you continue, the provider and all of its preferences will be permanently "
|
553
|
-
"deleted."
|
554
|
-
msgstr ""
|
555
|
-
"Als u doorgaat worden de bronbibliotheek en alle bijbehorende voorkeuren "
|
556
|
-
"permanent verwijderd."
|
557
|
-
|
558
|
-
#: ../lib/alexandria/ui/dialogs/import_dialog.rb:36
|
559
|
-
msgid "Error while importing"
|
560
|
-
msgstr "Fout tijdens het importeren"
|
561
|
-
|
562
|
-
#: ../lib/alexandria/ui/dialogs/import_dialog.rb:39
|
563
|
-
msgid "_Continue"
|
564
|
-
msgstr "_Doorgaan"
|
565
|
-
|
566
|
-
#: ../lib/alexandria/ui/dialogs/import_dialog.rb:64
|
567
|
-
msgid "Import a Library"
|
568
|
-
msgstr "Importeer een bibliotheek"
|
569
|
-
|
570
|
-
#: ../lib/alexandria/ui/dialogs/import_dialog.rb:71
|
571
|
-
msgid "_Import"
|
572
|
-
msgstr "_Importeren"
|
573
|
-
|
574
|
-
#: ../lib/alexandria/ui/dialogs/import_dialog.rb:188
|
575
|
-
msgid "Couldn't import the library"
|
576
|
-
msgstr "Kon de bibliotheek niet importeren"
|
577
|
-
|
578
|
-
#: ../lib/alexandria/ui/dialogs/import_dialog.rb:189
|
579
|
-
msgid ""
|
580
|
-
"The format of the file you provided is unknown. Please retry with another "
|
581
|
-
"file."
|
582
|
-
msgstr ""
|
583
|
-
"Het bestandsformaat is onbekend. Gelieve opnieuw te proberen met een ander "
|
584
|
-
"bestand."
|
585
|
-
|
586
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb:30
|
587
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:63
|
588
|
-
msgid "Properties for '%s'"
|
589
|
-
msgstr "Eigenschappen voor %s"
|
590
|
-
|
591
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:83
|
592
|
-
msgid "Empty or conflictive condition"
|
593
|
-
msgstr "Lege of conflicterende voorwaarde"
|
594
|
-
|
595
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:86
|
596
|
-
msgid "_Save However"
|
597
|
-
msgstr "Toch _opslaan"
|
598
|
-
|
599
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:87
|
600
|
-
msgid ""
|
601
|
-
"This smart library contains one or more conditions which are empty or "
|
602
|
-
"conflict with each other. This is likely to result in never matching a book. "
|
603
|
-
"Are you sure you want to save this library?"
|
604
|
-
msgstr ""
|
605
|
-
"Deze slimme bibliotheek bevat een of meer lege of conflicterende "
|
606
|
-
"voorwaarden. Er zal waarschijnlijk nooit een boek aan voldoen. Weet u zeker "
|
607
|
-
"dat u deze bibliotheek op wilt slaan?"
|
608
|
-
|
609
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:106
|
610
|
-
msgid "Match"
|
611
|
-
msgstr "Voldoet aan"
|
612
|
-
|
613
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
|
614
|
-
msgid "all"
|
615
|
-
msgstr "alle"
|
616
|
-
|
617
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
|
618
|
-
msgid "any"
|
619
|
-
msgstr "een"
|
620
|
-
|
621
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:119
|
622
|
-
msgid "of the following rules:"
|
623
|
-
msgstr "van de volgende regels:"
|
624
|
-
|
625
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:127
|
626
|
-
msgid "Match the following rule:"
|
627
|
-
msgstr "Voldoen aan de volgende regel:"
|
628
|
-
|
629
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:114
|
630
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:123
|
631
|
-
msgid "Couldn't modify the book"
|
632
|
-
msgstr "Kon het boek niet aanpassen"
|
633
|
-
|
634
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:115
|
635
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:88
|
636
|
-
msgid "The EAN/ISBN you provided is already used in this library."
|
637
|
-
msgstr "Het EAN/ISBN dat u invoerde wordt al gebruikt in deze bibliotheek."
|
638
|
-
|
639
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:124
|
640
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:94
|
641
|
-
msgid ""
|
642
|
-
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
643
|
-
"correcty, and try again."
|
644
|
-
msgstr ""
|
645
|
-
"Kon het EAN/ISBN dat u invoerde niet valideren. Kijk of het correct "
|
646
|
-
"geschreven is en probeer het nogmaals."
|
647
|
-
|
648
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:65
|
649
|
-
msgid "Properties"
|
650
|
-
msgstr "Eigenschappen"
|
651
|
-
|
652
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:71
|
653
|
-
msgid "Author"
|
654
|
-
msgstr "Auteur"
|
655
|
-
|
656
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:123
|
657
|
-
msgid "Select a cover image"
|
658
|
-
msgstr "Selecteer een afbeelding voor de voorkant"
|
659
|
-
|
660
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:127
|
661
|
-
msgid "No Cover"
|
662
|
-
msgstr "Geen kaft"
|
663
|
-
|
664
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:186
|
665
|
-
msgid "%d day"
|
666
|
-
msgid_plural "%d days"
|
667
|
-
msgstr[0] "%d dag"
|
668
|
-
msgstr[1] "%d dagen"
|
669
|
-
|
670
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:58
|
671
|
-
msgid "Adding '%s'"
|
672
|
-
msgstr "'%s' wordt toegevoegd"
|
673
|
-
|
674
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:60
|
675
|
-
#: ../data/alexandria/glade/new_book_dialog.glade:8
|
676
|
-
msgid "Adding a Book"
|
677
|
-
msgstr "Een boek toevoegen"
|
678
|
-
|
679
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:81
|
680
|
-
msgid "A title must be provided."
|
681
|
-
msgstr "Er moet een titel opgegeven worden."
|
682
|
-
|
683
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:102
|
684
|
-
msgid "A publisher must be provided."
|
685
|
-
msgstr "Er moet een uitgever opgegeven worden."
|
686
|
-
|
687
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:109
|
688
|
-
msgid "A binding must be provided."
|
689
|
-
msgstr "Er moet een band opgegeven worden."
|
690
|
-
|
691
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:115
|
692
|
-
msgid "At least one author must be provided."
|
693
|
-
msgstr "Er moet minstens één auteur opgegeven worden."
|
694
|
-
|
695
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:142
|
696
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:523
|
697
|
-
msgid "Couldn't add the book"
|
698
|
-
msgstr "Kon het boek niet toevoegen"
|
699
|
-
|
700
|
-
#: ../lib/alexandria/ui/dialogs/export_dialog.rb:25
|
744
|
+
#: ../lib/alexandria/ui/confirm_erase_dialog.rb:16
|
701
745
|
msgid "File already exists"
|
702
746
|
msgstr "Bestand bestaat reeds"
|
703
747
|
|
704
|
-
#: ../lib/alexandria/ui/
|
705
|
-
#: ../lib/alexandria/ui/
|
748
|
+
#: ../lib/alexandria/ui/confirm_erase_dialog.rb:19
|
749
|
+
#: ../lib/alexandria/ui/conflict_while_copying_dialog.rb:21
|
706
750
|
msgid "_Replace"
|
707
751
|
msgstr "_Vervangen"
|
708
752
|
|
709
|
-
#: ../lib/alexandria/ui/
|
753
|
+
#: ../lib/alexandria/ui/confirm_erase_dialog.rb:20
|
710
754
|
msgid ""
|
711
755
|
"A file named '%s' already exists. Do you want to replace it with the one "
|
712
756
|
"you are generating?"
|
@@ -714,27 +758,43 @@ msgstr ""
|
|
714
758
|
"Een bestand genaamd '%s' bestaat reeds. Wilt u het vervangen door datgene "
|
715
759
|
"dat u nu aanmaakt?"
|
716
760
|
|
717
|
-
#: ../lib/alexandria/ui/
|
761
|
+
#: ../lib/alexandria/ui/conflict_while_copying_dialog.rb:17
|
762
|
+
msgid "The book '%s' already exists in '%s'. Would you like to replace it?"
|
763
|
+
msgstr "Het boek '%s' bestaat reeds in '%s'. Wilt u het vervangen?"
|
764
|
+
|
765
|
+
#: ../lib/alexandria/ui/conflict_while_copying_dialog.rb:20
|
766
|
+
msgid "_Skip"
|
767
|
+
msgstr "Over_slaan"
|
768
|
+
|
769
|
+
#: ../lib/alexandria/ui/conflict_while_copying_dialog.rb:22
|
770
|
+
msgid "If you replace the existing book, its contents will be overwritten."
|
771
|
+
msgstr "Als u het bestaande boek vervangt zal de inhoud overschreven worden."
|
772
|
+
|
773
|
+
#: ../lib/alexandria/ui/export_dialog.rb:22
|
718
774
|
msgid "Export '%s'"
|
719
775
|
msgstr "Export '%s'"
|
720
776
|
|
721
|
-
#: ../lib/alexandria/ui/
|
777
|
+
#: ../lib/alexandria/ui/export_dialog.rb:27
|
722
778
|
msgid "_Export"
|
723
779
|
msgstr "_Exporteren"
|
724
780
|
|
725
|
-
#: ../lib/alexandria/ui/
|
781
|
+
#: ../lib/alexandria/ui/export_dialog.rb:48
|
726
782
|
msgid "_Theme:"
|
727
783
|
msgstr "_Thema:"
|
728
784
|
|
729
|
-
#: ../lib/alexandria/ui/
|
785
|
+
#: ../lib/alexandria/ui/export_dialog.rb:60
|
730
786
|
msgid "directory"
|
731
787
|
msgstr "map"
|
732
788
|
|
733
|
-
#: ../lib/alexandria/ui/
|
789
|
+
#: ../lib/alexandria/ui/export_dialog.rb:72
|
734
790
|
msgid "Export for_mat:"
|
735
791
|
msgstr "Export for_maat:"
|
736
792
|
|
737
|
-
#: ../lib/alexandria/ui/
|
793
|
+
#: ../lib/alexandria/ui/export_dialog.rb:99
|
794
|
+
msgid "Export failed"
|
795
|
+
msgstr "Het exporteren is mislukt"
|
796
|
+
|
797
|
+
#: ../lib/alexandria/ui/export_dialog.rb:122
|
738
798
|
msgid ""
|
739
799
|
"The target, named '%s', is a regular file. A directory is needed for this "
|
740
800
|
"operation. Please select a directory and try again."
|
@@ -742,41 +802,89 @@ msgstr ""
|
|
742
802
|
"Het doel, genaamd '%s', is een bestand. Voor deze bewerking is een map "
|
743
803
|
"nodig. Gelieve een map te selecteren en opnieuw te proberen."
|
744
804
|
|
745
|
-
#: ../lib/alexandria/ui/
|
805
|
+
#: ../lib/alexandria/ui/export_dialog.rb:126
|
746
806
|
msgid "Not a directory"
|
747
807
|
msgstr "Geen map"
|
748
808
|
|
749
|
-
#: ../lib/alexandria/ui/
|
809
|
+
#: ../lib/alexandria/ui/import_dialog.rb:23
|
810
|
+
msgid "Import a Library"
|
811
|
+
msgstr "Importeer een bibliotheek"
|
812
|
+
|
813
|
+
#: ../lib/alexandria/ui/import_dialog.rb:30
|
814
|
+
msgid "_Import"
|
815
|
+
msgstr "_Importeren"
|
816
|
+
|
817
|
+
#: ../lib/alexandria/ui/import_dialog.rb:134
|
818
|
+
msgid "Couldn't import the library"
|
819
|
+
msgstr "Kon de bibliotheek niet importeren"
|
820
|
+
|
821
|
+
#: ../lib/alexandria/ui/import_dialog.rb:135
|
822
|
+
msgid ""
|
823
|
+
"The format of the file you provided is unknown. Please retry with another "
|
824
|
+
"file."
|
825
|
+
msgstr ""
|
826
|
+
"Het bestandsformaat is onbekend. Gelieve opnieuw te proberen met een ander "
|
827
|
+
"bestand."
|
828
|
+
|
829
|
+
#: ../lib/alexandria/ui/init.rb:69
|
830
|
+
msgid "Unable to launch the help browser"
|
831
|
+
msgstr "Kon de helpbrowser niet starten"
|
832
|
+
|
833
|
+
#: ../lib/alexandria/ui/init.rb:70
|
834
|
+
msgid ""
|
835
|
+
"Could not display help for Alexandria. There was an error launching the "
|
836
|
+
"system help browser."
|
837
|
+
msgstr ""
|
838
|
+
"Kon de help voor Alexandria niet tonen omdat er een fout optrad bij het "
|
839
|
+
"starten van de systeemhelpbrowser."
|
840
|
+
|
841
|
+
#: ../lib/alexandria/ui/keep_bad_isbn_dialog.rb:16
|
750
842
|
msgid "Invalid ISBN '%s'"
|
751
843
|
msgstr "Ongeldig ISBN '%s'"
|
752
844
|
|
753
|
-
#: ../lib/alexandria/ui/
|
754
|
-
msgid "_Keep"
|
755
|
-
msgstr "_Bewaar"
|
756
|
-
|
757
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:36
|
845
|
+
#: ../lib/alexandria/ui/keep_bad_isbn_dialog.rb:18
|
758
846
|
msgid ""
|
759
847
|
"The book titled '%s' has an invalid ISBN, but still exists in the providers "
|
760
|
-
"libraries.
|
761
|
-
"
|
848
|
+
"libraries. Do you want to keep the book but change the ISBN or cancel the "
|
849
|
+
"addition?"
|
762
850
|
msgstr ""
|
763
|
-
"Het boek getiteld '%s' heeft een ongeldig ISBN, maar bestaat
|
851
|
+
"Het boek getiteld '%s' heeft een ongeldig ISBN, maar bestaat nog bij de "
|
764
852
|
"bronbibliotheken. Wilt u het boek bewaren en het ISBN veranderen, of wilt u "
|
765
853
|
"het toevoegen annuleren?"
|
766
854
|
|
767
|
-
#: ../lib/alexandria/ui/
|
855
|
+
#: ../lib/alexandria/ui/keep_bad_isbn_dialog.rb:24
|
856
|
+
msgid "_Keep"
|
857
|
+
msgstr "_Bewaar"
|
858
|
+
|
859
|
+
#: ../lib/alexandria/ui/libraries_combo.rb:41
|
860
|
+
msgid "New Library"
|
861
|
+
msgstr "Nieuwe bibliotheek"
|
862
|
+
|
863
|
+
#: ../lib/alexandria/ui/listview.rb:56
|
864
|
+
msgid "Loaned To"
|
865
|
+
msgstr "Uitgeleend aan"
|
866
|
+
|
867
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:153
|
768
868
|
msgid "A problem occurred while downloading images"
|
769
|
-
msgstr "Er
|
869
|
+
msgstr "Er is een probleem opgetreden bij het downloaden van de afbeeldingen"
|
770
870
|
|
771
|
-
#: ../lib/alexandria/ui/
|
871
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:193
|
872
|
+
msgid "Iter is invalid! %s"
|
873
|
+
msgstr ""
|
874
|
+
|
875
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:267
|
772
876
|
msgid "Unable to find matches for your search"
|
773
877
|
msgstr "Kon geen resultaten vinden voor uw zoekcriteria"
|
774
878
|
|
775
|
-
#: ../lib/alexandria/ui/
|
879
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:303
|
776
880
|
msgid "%s, by %s"
|
777
881
|
msgstr "%s, door %s"
|
778
882
|
|
779
|
-
#: ../lib/alexandria/ui/
|
883
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:309
|
884
|
+
msgid "Copying %s into tree view."
|
885
|
+
msgstr ""
|
886
|
+
|
887
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:337
|
780
888
|
msgid ""
|
781
889
|
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
782
890
|
"correctly, and try again."
|
@@ -784,492 +892,386 @@ msgstr ""
|
|
784
892
|
"Kon het EAN/ISBN dat u invoerde niet valideren. Controleer of het goed "
|
785
893
|
"geschreven is en probeer het nogmaals."
|
786
894
|
|
787
|
-
#: ../lib/alexandria/ui/
|
895
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:466
|
896
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:119
|
897
|
+
msgid "Couldn't add the book"
|
898
|
+
msgstr "Kon het boek niet toevoegen"
|
899
|
+
|
900
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:572
|
788
901
|
msgid "'%s' already exists in '%s' (titled '%s')."
|
789
902
|
msgstr "'%s' bestaat al in '%s' (getiteld '%s')."
|
790
903
|
|
791
|
-
#: ../lib/alexandria/ui/
|
792
|
-
|
793
|
-
|
904
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:50
|
905
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:32
|
906
|
+
msgid "Adding a Book"
|
907
|
+
msgstr "Een boek toevoegen"
|
794
908
|
|
795
|
-
#: ../lib/alexandria/ui/
|
796
|
-
msgid "
|
797
|
-
msgstr "
|
909
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:52
|
910
|
+
msgid "Adding '%s'"
|
911
|
+
msgstr "'%s' wordt toegevoegd"
|
798
912
|
|
799
|
-
#: ../lib/alexandria/ui/
|
800
|
-
msgid "
|
801
|
-
msgstr "
|
913
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:67
|
914
|
+
msgid "A title must be provided."
|
915
|
+
msgstr "Er moet een titel opgegeven worden."
|
916
|
+
|
917
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:83
|
918
|
+
msgid "A publisher must be provided."
|
919
|
+
msgstr "Er moet een uitgever opgegeven worden."
|
920
|
+
|
921
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:89
|
922
|
+
msgid "A binding must be provided."
|
923
|
+
msgstr "Er moet een band opgegeven worden."
|
924
|
+
|
925
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:95
|
926
|
+
msgid "At least one author must be provided."
|
927
|
+
msgstr "Er moet minstens één auteur opgegeven worden."
|
928
|
+
|
929
|
+
#: ../lib/alexandria/ui/new_provider_dialog.rb:16
|
930
|
+
msgid "New Provider"
|
931
|
+
msgstr "Nieuwe bronbibliotheek"
|
932
|
+
|
933
|
+
#: ../lib/alexandria/ui/new_provider_dialog.rb:31
|
934
|
+
msgid "_Name:"
|
935
|
+
msgstr "_Naam:"
|
936
|
+
|
937
|
+
#: ../lib/alexandria/ui/new_provider_dialog.rb:43
|
938
|
+
msgid "_Type:"
|
939
|
+
msgstr "_Type:"
|
940
|
+
|
941
|
+
#: ../lib/alexandria/ui/new_smart_library_dialog.rb:19
|
942
|
+
msgid "New Smart Library"
|
943
|
+
msgstr "Nieuwe slimme bibliotheek"
|
944
|
+
|
945
|
+
#: ../lib/alexandria/ui/new_smart_library_dialog.rb:55
|
946
|
+
msgid "Smart Library"
|
947
|
+
msgstr "Slimme bibliotheek"
|
948
|
+
|
949
|
+
#: ../lib/alexandria/ui/preferences_dialog.rb:207
|
950
|
+
msgid "Are you sure you want to permanently delete the provider '%s'?"
|
951
|
+
msgstr "Weet u zeker dat u bron '%s' permanent wilt verwijderen?"
|
952
|
+
|
953
|
+
#: ../lib/alexandria/ui/preferences_dialog.rb:215
|
954
|
+
msgid ""
|
955
|
+
"If you continue, the provider and all of its preferences will be permanently "
|
956
|
+
"deleted."
|
957
|
+
msgstr ""
|
958
|
+
"Als u doorgaat worden de bronbibliotheek en alle bijbehorende voorkeuren "
|
959
|
+
"permanent verwijderd."
|
960
|
+
|
961
|
+
#: ../lib/alexandria/ui/provider_preferences_dialog.rb:16
|
962
|
+
msgid "Preferences for %s"
|
963
|
+
msgstr "Voorkeuren voor %s"
|
802
964
|
|
803
|
-
#: ../lib/alexandria/ui/
|
965
|
+
#: ../lib/alexandria/ui/really_delete_dialog.rb:18
|
804
966
|
msgid "Are you sure you want to delete '%s'?"
|
805
967
|
msgstr "Weet u zeker dat u '%s' wilt verwijderen?"
|
806
968
|
|
807
|
-
#: ../lib/alexandria/ui/
|
969
|
+
#: ../lib/alexandria/ui/really_delete_dialog.rb:22
|
808
970
|
msgid "If you continue, %d book will be deleted."
|
809
971
|
msgid_plural "If you continue, %d books will be deleted."
|
810
972
|
msgstr[0] "Als u doorgaat zal %d boek worden verwijderd."
|
811
973
|
msgstr[1] "Als u doorgaat zullen %d boeken worden verwijderd."
|
812
974
|
|
813
|
-
#: ../lib/alexandria/ui/
|
975
|
+
#: ../lib/alexandria/ui/really_delete_dialog.rb:29
|
814
976
|
msgid "Are you sure you want to delete '%s' from '%s'?"
|
815
977
|
msgstr "Weet u zeker dat u '%s' uit '%s' wilt verwijderen?"
|
816
978
|
|
817
|
-
#: ../lib/alexandria/ui/
|
979
|
+
#: ../lib/alexandria/ui/really_delete_dialog.rb:32
|
818
980
|
msgid "Are you sure you want to delete the selected books from '%s'?"
|
819
981
|
msgstr "Weet u zeker dat u de geselecteerde boeken uit '%s' wilt verwijderen?"
|
820
982
|
|
821
|
-
#: ../lib/alexandria/ui/
|
983
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:54
|
822
984
|
msgid "Invalid library name '%s'"
|
823
985
|
msgstr "Ongeldige bibliotheeknaam '%s'"
|
824
986
|
|
825
|
-
#: ../lib/alexandria/ui/
|
826
|
-
msgid "The name provided contains the disallowed character <b>%s</b>
|
827
|
-
msgstr "De opgegeven naam bevat het ongeldige teken
|
987
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:55
|
988
|
+
msgid "The name provided contains the disallowed character <b>%s</b>"
|
989
|
+
msgstr "De opgegeven naam bevat het ongeldige teken <b>%s</b>"
|
828
990
|
|
829
|
-
#: ../lib/alexandria/ui/
|
991
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:58
|
830
992
|
msgid "Invalid library name"
|
831
993
|
msgstr "Ongeldige bibliotheeknaam"
|
832
994
|
|
833
|
-
#: ../lib/alexandria/ui/
|
995
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:59
|
834
996
|
msgid "The name provided contains invalid characters."
|
835
997
|
msgstr "De opgegeven naam bevat ongeldige tekens."
|
836
998
|
|
837
|
-
#: ../lib/alexandria/ui/
|
999
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:65
|
838
1000
|
msgid "The library name can not be empty"
|
839
1001
|
msgstr "De bibliotheeknaam mag niet leeg zijn"
|
840
1002
|
|
841
|
-
#: ../lib/alexandria/ui/
|
1003
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:70
|
842
1004
|
msgid "The library can not be renamed"
|
843
1005
|
msgstr "De bibliotheek kan niet hernoemd worden"
|
844
1006
|
|
845
|
-
#: ../lib/alexandria/ui/
|
1007
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:71
|
846
1008
|
msgid "There is already a library named '%s'. Please choose a different name."
|
847
1009
|
msgstr ""
|
848
1010
|
"Een bibliotheek met de naam '%s' bestaat reeds. Gelieve een andere naam te "
|
849
1011
|
"kiezen."
|
850
1012
|
|
851
|
-
#: ../lib/alexandria/ui/
|
1013
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:96
|
852
1014
|
msgid "Library"
|
853
1015
|
msgstr "Bibliotheek"
|
854
1016
|
|
855
|
-
#: ../lib/alexandria/ui/
|
856
|
-
msgid "
|
857
|
-
msgstr "
|
858
|
-
|
859
|
-
#: ../lib/alexandria/ui/listview.rb:52 ../lib/alexandria/smart_library.rb:349
|
860
|
-
msgid "Title"
|
861
|
-
msgstr "Titel"
|
862
|
-
|
863
|
-
#: ../lib/alexandria/ui/listview.rb:105 ../lib/alexandria/smart_library.rb:351
|
864
|
-
msgid "Authors"
|
865
|
-
msgstr "Auteurs"
|
866
|
-
|
867
|
-
#: ../lib/alexandria/ui/listview.rb:106 ../lib/alexandria/smart_library.rb:350
|
868
|
-
msgid "ISBN"
|
869
|
-
msgstr "ISBN"
|
870
|
-
|
871
|
-
#: ../lib/alexandria/ui/listview.rb:107 ../lib/alexandria/smart_library.rb:352
|
872
|
-
msgid "Publisher"
|
873
|
-
msgstr "Uitgever"
|
874
|
-
|
875
|
-
#: ../lib/alexandria/ui/listview.rb:108 ../lib/alexandria/smart_library.rb:353
|
876
|
-
msgid "Publish Year"
|
877
|
-
msgstr "Jaar van uitgifte"
|
878
|
-
|
879
|
-
#: ../lib/alexandria/ui/listview.rb:109 ../lib/alexandria/smart_library.rb:354
|
880
|
-
msgid "Binding"
|
881
|
-
msgstr "Band"
|
882
|
-
|
883
|
-
#: ../lib/alexandria/ui/listview.rb:110
|
884
|
-
#, fuzzy
|
885
|
-
msgid "Loaned To"
|
886
|
-
msgstr "Uitgeleend"
|
887
|
-
|
888
|
-
#: ../lib/alexandria/ui/listview.rb:113 ../lib/alexandria/smart_library.rb:104
|
889
|
-
#: ../lib/alexandria/smart_library.rb:361
|
890
|
-
msgid "Read"
|
891
|
-
msgstr "Gelezen"
|
892
|
-
|
893
|
-
#: ../lib/alexandria/ui/listview.rb:114 ../lib/alexandria/smart_library.rb:363
|
894
|
-
msgid "Own"
|
895
|
-
msgstr "In bezit"
|
896
|
-
|
897
|
-
#: ../lib/alexandria/ui/listview.rb:115 ../lib/alexandria/smart_library.rb:364
|
898
|
-
msgid "Want"
|
899
|
-
msgstr "Gewenst"
|
1017
|
+
#: ../lib/alexandria/ui/skip_entry_dialog.rb:17
|
1018
|
+
msgid "Error while importing"
|
1019
|
+
msgstr "Fout tijdens het importeren"
|
900
1020
|
|
901
|
-
#: ../lib/alexandria/ui/
|
902
|
-
|
903
|
-
|
904
|
-
msgstr "Trefwoorden"
|
1021
|
+
#: ../lib/alexandria/ui/skip_entry_dialog.rb:20
|
1022
|
+
msgid "_Continue"
|
1023
|
+
msgstr "_Doorgaan"
|
905
1024
|
|
906
|
-
#: ../lib/alexandria/ui/
|
907
|
-
msgid "
|
908
|
-
msgstr "
|
1025
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:96
|
1026
|
+
msgid "Empty or conflictive condition"
|
1027
|
+
msgstr "Lege of conflicterende voorwaarde"
|
909
1028
|
|
910
|
-
#: ../lib/alexandria/ui/
|
911
|
-
msgid "
|
912
|
-
msgstr "
|
1029
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:99
|
1030
|
+
msgid "_Save However"
|
1031
|
+
msgstr "Toch _opslaan"
|
913
1032
|
|
914
|
-
#: ../lib/alexandria/ui/
|
1033
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
|
915
1034
|
msgid ""
|
916
|
-
"
|
917
|
-
"
|
1035
|
+
"This smart library contains one or more conditions which are empty or "
|
1036
|
+
"conflict with each other. This is likely to result in never matching a book. "
|
1037
|
+
"Are you sure you want to save this library?"
|
918
1038
|
msgstr ""
|
919
|
-
"
|
920
|
-
"
|
921
|
-
|
922
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:37
|
923
|
-
msgid "Locale"
|
924
|
-
msgstr "Taal"
|
925
|
-
|
926
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:38
|
927
|
-
msgid "Access key ID"
|
928
|
-
msgstr "Toegangssleutel ID"
|
929
|
-
|
930
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:39
|
931
|
-
msgid "Secret access key"
|
932
|
-
msgstr "Geheime toegangssleutel"
|
933
|
-
|
934
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
935
|
-
msgid "Spanish Culture Ministry"
|
936
|
-
msgstr "Spaans Ministerie van Cultuur"
|
937
|
-
|
938
|
-
#: ../lib/alexandria/book_providers/z3950.rb:34
|
939
|
-
msgid "Hostname"
|
940
|
-
msgstr "Servernaam"
|
941
|
-
|
942
|
-
#: ../lib/alexandria/book_providers/z3950.rb:35
|
943
|
-
msgid "Port"
|
944
|
-
msgstr "Poort"
|
945
|
-
|
946
|
-
#: ../lib/alexandria/book_providers/z3950.rb:36
|
947
|
-
msgid "Database"
|
948
|
-
msgstr "Database"
|
949
|
-
|
950
|
-
#: ../lib/alexandria/book_providers/z3950.rb:37
|
951
|
-
msgid "Record syntax"
|
952
|
-
msgstr "Record syntax"
|
953
|
-
|
954
|
-
#: ../lib/alexandria/book_providers/z3950.rb:38
|
955
|
-
msgid "Username"
|
956
|
-
msgstr "Gebruikersnaam"
|
957
|
-
|
958
|
-
#: ../lib/alexandria/book_providers/z3950.rb:39
|
959
|
-
msgid "Password"
|
960
|
-
msgstr "Wachtwoord"
|
961
|
-
|
962
|
-
#: ../lib/alexandria/book_providers/z3950.rb:40
|
963
|
-
msgid "Charset encoding"
|
964
|
-
msgstr "Codering karakterset"
|
965
|
-
|
966
|
-
#: ../lib/alexandria/book_providers/z3950.rb:221
|
967
|
-
msgid "Library of Congress (Usa)"
|
968
|
-
msgstr "Library of Congress, V.S."
|
969
|
-
|
970
|
-
#: ../lib/alexandria/book_providers/z3950.rb:255
|
971
|
-
msgid "British Library"
|
972
|
-
msgstr "British Library, V.K."
|
973
|
-
|
974
|
-
#: ../lib/alexandria/export_library.rb:109
|
975
|
-
msgid "Archived ONIX XML"
|
976
|
-
msgstr "Gearchiveerd ONIX XML"
|
977
|
-
|
978
|
-
#: ../lib/alexandria/export_library.rb:111
|
979
|
-
msgid "Archived Tellico XML"
|
980
|
-
msgstr "Gearchiveerd Tellico XML"
|
981
|
-
|
982
|
-
#: ../lib/alexandria/export_library.rb:113
|
983
|
-
msgid "BibTeX"
|
984
|
-
msgstr "BibTeX"
|
985
|
-
|
986
|
-
#: ../lib/alexandria/export_library.rb:114
|
987
|
-
msgid "CSV list"
|
988
|
-
msgstr "CSV lijst"
|
989
|
-
|
990
|
-
#: ../lib/alexandria/export_library.rb:115
|
991
|
-
msgid "ISBN List"
|
992
|
-
msgstr "ISBN-lijst"
|
993
|
-
|
994
|
-
#: ../lib/alexandria/export_library.rb:116
|
995
|
-
msgid "iPod Notes"
|
996
|
-
msgstr "iPod notities"
|
997
|
-
|
998
|
-
#: ../lib/alexandria/export_library.rb:117
|
999
|
-
msgid "HTML Web Page"
|
1000
|
-
msgstr "HTML webpagina"
|
1001
|
-
|
1002
|
-
#: ../lib/alexandria/smart_library.rb:92
|
1003
|
-
msgid "Favorite"
|
1004
|
-
msgstr "Favoriet"
|
1005
|
-
|
1006
|
-
#: ../lib/alexandria/smart_library.rb:98
|
1007
|
-
msgid "Loaned"
|
1008
|
-
msgstr "Uitgeleend"
|
1039
|
+
"Deze slimme bibliotheek bevat een of meer lege of conflicterende "
|
1040
|
+
"voorwaarden. Er zal waarschijnlijk nooit een boek aan voldoen. Weet u zeker "
|
1041
|
+
"dat u deze bibliotheek op wilt slaan?"
|
1009
1042
|
|
1010
|
-
#: ../lib/alexandria/
|
1011
|
-
msgid "
|
1012
|
-
msgstr "
|
1043
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:117
|
1044
|
+
msgid "Match"
|
1045
|
+
msgstr "Voldoet aan"
|
1013
1046
|
|
1014
|
-
#: ../lib/alexandria/
|
1015
|
-
msgid "
|
1016
|
-
msgstr "
|
1047
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
|
1048
|
+
msgid "all"
|
1049
|
+
msgstr "alle"
|
1017
1050
|
|
1018
|
-
#: ../lib/alexandria/
|
1019
|
-
|
1020
|
-
|
1021
|
-
msgstr "Notities"
|
1051
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
|
1052
|
+
msgid "any"
|
1053
|
+
msgstr "een"
|
1022
1054
|
|
1023
|
-
#: ../lib/alexandria/
|
1024
|
-
msgid "
|
1025
|
-
msgstr "
|
1055
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:130
|
1056
|
+
msgid "of the following rules:"
|
1057
|
+
msgstr "van de volgende regels:"
|
1026
1058
|
|
1027
|
-
#: ../lib/alexandria/
|
1028
|
-
msgid "
|
1029
|
-
msgstr "
|
1059
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:138
|
1060
|
+
msgid "Match the following rule:"
|
1061
|
+
msgstr "Voldoen aan de volgende regel:"
|
1030
1062
|
|
1031
|
-
#: ../lib/alexandria/
|
1032
|
-
msgid "
|
1033
|
-
msgstr "
|
1063
|
+
#: ../lib/alexandria/ui/ui_manager.rb:130
|
1064
|
+
msgid "Type here the search criterion"
|
1065
|
+
msgstr "Voer hier het zoekcriterium in"
|
1034
1066
|
|
1035
|
-
#: ../lib/alexandria/
|
1036
|
-
msgid "
|
1037
|
-
msgstr "
|
1067
|
+
#: ../lib/alexandria/ui/ui_manager.rb:141
|
1068
|
+
msgid "Match everything"
|
1069
|
+
msgstr "Toon alles"
|
1038
1070
|
|
1039
|
-
#: ../lib/alexandria/
|
1040
|
-
msgid "
|
1041
|
-
msgstr "
|
1071
|
+
#: ../lib/alexandria/ui/ui_manager.rb:143
|
1072
|
+
msgid "Title contains"
|
1073
|
+
msgstr "Titel bevat"
|
1042
1074
|
|
1043
|
-
#: ../lib/alexandria/
|
1044
|
-
msgid "
|
1045
|
-
msgstr "
|
1075
|
+
#: ../lib/alexandria/ui/ui_manager.rb:144
|
1076
|
+
msgid "Authors contain"
|
1077
|
+
msgstr "Auteurs bevat"
|
1046
1078
|
|
1047
|
-
#: ../lib/alexandria/
|
1048
|
-
msgid "
|
1049
|
-
msgstr "
|
1079
|
+
#: ../lib/alexandria/ui/ui_manager.rb:145
|
1080
|
+
msgid "ISBN contains"
|
1081
|
+
msgstr "ISBN bevat"
|
1050
1082
|
|
1051
|
-
#: ../lib/alexandria/
|
1052
|
-
msgid "
|
1053
|
-
msgstr "
|
1083
|
+
#: ../lib/alexandria/ui/ui_manager.rb:146
|
1084
|
+
msgid "Publisher contains"
|
1085
|
+
msgstr "Uitgever bevat"
|
1054
1086
|
|
1055
|
-
#: ../lib/alexandria/
|
1056
|
-
msgid "
|
1057
|
-
msgstr "
|
1087
|
+
#: ../lib/alexandria/ui/ui_manager.rb:147
|
1088
|
+
msgid "Notes contain"
|
1089
|
+
msgstr "Notities bevat"
|
1058
1090
|
|
1059
|
-
#: ../lib/alexandria/
|
1060
|
-
msgid "
|
1061
|
-
msgstr "bevat"
|
1091
|
+
#: ../lib/alexandria/ui/ui_manager.rb:148
|
1092
|
+
msgid "Tags contain"
|
1093
|
+
msgstr "Trefwoorden bevat"
|
1062
1094
|
|
1063
|
-
#: ../lib/alexandria/
|
1064
|
-
msgid "
|
1065
|
-
msgstr "
|
1095
|
+
#: ../lib/alexandria/ui/ui_manager.rb:162
|
1096
|
+
msgid "Change the search type"
|
1097
|
+
msgstr "Wijzig het zoektype"
|
1066
1098
|
|
1067
|
-
#: ../lib/alexandria/
|
1068
|
-
msgid "
|
1069
|
-
msgstr "
|
1099
|
+
#: ../lib/alexandria/ui/ui_manager.rb:167
|
1100
|
+
msgid "View as Icons"
|
1101
|
+
msgstr "Toon als iconen"
|
1070
1102
|
|
1071
|
-
#: ../lib/alexandria/
|
1072
|
-
msgid "
|
1073
|
-
msgstr "
|
1103
|
+
#: ../lib/alexandria/ui/ui_manager.rb:168
|
1104
|
+
msgid "View as List"
|
1105
|
+
msgstr "Toon als lijst"
|
1074
1106
|
|
1075
|
-
#: ../lib/alexandria/
|
1076
|
-
msgid "
|
1077
|
-
msgstr "
|
1107
|
+
#: ../lib/alexandria/ui/ui_manager.rb:181
|
1108
|
+
msgid "Choose how to show books"
|
1109
|
+
msgstr "Bepaal hoe de boeken getoond moeten worden"
|
1078
1110
|
|
1079
|
-
#: ../lib/alexandria/
|
1080
|
-
msgid "
|
1081
|
-
msgstr "is
|
1111
|
+
#: ../lib/alexandria/ui/ui_manager.rb:400
|
1112
|
+
msgid "Library '%s' selected"
|
1113
|
+
msgstr "Bibliotheek '%s' is geselecteerd"
|
1082
1114
|
|
1083
|
-
#: ../lib/alexandria/
|
1084
|
-
msgid "
|
1085
|
-
|
1115
|
+
#: ../lib/alexandria/ui/ui_manager.rb:405
|
1116
|
+
msgid "Library '%s' selected, %d unrated book"
|
1117
|
+
msgid_plural "Library '%s' selected, %d unrated books"
|
1118
|
+
msgstr[0] "Bibliotheek '%s' geselecteerd. %d ongewaardeerd boek"
|
1119
|
+
msgstr[1] "Bibliotheek '%s' geselecteerd. %d ongewaardeerde boeken"
|
1086
1120
|
|
1087
|
-
#: ../lib/alexandria/
|
1088
|
-
msgid "
|
1089
|
-
|
1121
|
+
#: ../lib/alexandria/ui/ui_manager.rb:409
|
1122
|
+
msgid "Library '%s' selected, %d book"
|
1123
|
+
msgid_plural "Library '%s' selected, %d books"
|
1124
|
+
msgstr[0] "Bibliotheek '%s' geselecteerd, %d boek"
|
1125
|
+
msgstr[1] "Bibliotheek '%s' geselecteerd, %d boeken"
|
1090
1126
|
|
1091
|
-
#: ../lib/alexandria/
|
1092
|
-
msgid "
|
1093
|
-
|
1127
|
+
#: ../lib/alexandria/ui/ui_manager.rb:413
|
1128
|
+
msgid "Library '%s' selected, %d book, %d unrated"
|
1129
|
+
msgid_plural "Library '%s' selected, %d books, %d unrated"
|
1130
|
+
msgstr[0] "Bibliotheek '%s' geselecteerd, %d boek, %d zonder waardering"
|
1131
|
+
msgstr[1] "Bibliotheek '%s' geselecteerd, %d boeken, %d zonder waardering"
|
1094
1132
|
|
1095
|
-
#: ../lib/alexandria/
|
1096
|
-
msgid "
|
1097
|
-
msgstr "
|
1133
|
+
#: ../lib/alexandria/ui/ui_manager.rb:427
|
1134
|
+
msgid "'%s' selected"
|
1135
|
+
msgstr "'%s' geselecteerd"
|
1098
1136
|
|
1099
|
-
#: ../lib/alexandria/
|
1100
|
-
msgid "
|
1101
|
-
|
1137
|
+
#: ../lib/alexandria/ui/ui_manager.rb:429
|
1138
|
+
msgid "%d book selected"
|
1139
|
+
msgid_plural "%d books selected"
|
1140
|
+
msgstr[0] "%d boek geselecteerd"
|
1141
|
+
msgstr[1] "%d boeken geselecteerd"
|
1102
1142
|
|
1103
|
-
#: ../lib/alexandria/
|
1104
|
-
msgid "
|
1105
|
-
msgstr "
|
1143
|
+
#: ../lib/alexandria/ui/ui_manager.rb:545
|
1144
|
+
msgid "unrecognized update event"
|
1145
|
+
msgstr ""
|
1106
1146
|
|
1107
|
-
#: ../lib/alexandria/
|
1108
|
-
|
1147
|
+
#: ../lib/alexandria/ui/ui_manager.rb:590
|
1148
|
+
msgid "Loading libraries..."
|
1149
|
+
msgstr "Bibliotheken worden geladen..."
|
1150
|
+
|
1151
|
+
#: ../lib/alexandria/ui/ui_manager.rb:607
|
1109
1152
|
msgid ""
|
1110
|
-
"
|
1111
|
-
"
|
1153
|
+
"The data files for the following books are malformed or empty. Do you wish "
|
1154
|
+
"to attempt to download new information for them from the online book "
|
1155
|
+
"providers?\n"
|
1112
1156
|
msgstr ""
|
1113
|
-
"
|
1114
|
-
"
|
1157
|
+
"De gegevensbestanden voor de volgende boeken zijn corrupt of leeg. Wilt u "
|
1158
|
+
"proberen om de informatie voor deze boeken opnieuw te downloaden?\n"
|
1115
1159
|
|
1116
|
-
#: ../lib/alexandria/
|
1117
|
-
msgid "
|
1118
|
-
msgstr "
|
1160
|
+
#: ../lib/alexandria/ui/ui_manager.rb:659
|
1161
|
+
msgid "Added '%s' to library '%s'"
|
1162
|
+
msgstr "'%s' toegevoegd aan bibliotheek '%s'"
|
1119
1163
|
|
1120
|
-
#: ../lib/alexandria/
|
1121
|
-
msgid "
|
1122
|
-
msgstr "
|
1164
|
+
#: ../lib/alexandria/ui/ui_manager.rb:808
|
1165
|
+
msgid "Loading '%s'..."
|
1166
|
+
msgstr "'%s' wordt geladen..."
|
1123
1167
|
|
1124
|
-
#: ../lib/alexandria/
|
1125
|
-
msgid "
|
1126
|
-
msgstr "
|
1168
|
+
#: ../lib/alexandria/ui/ui_manager.rb:1038
|
1169
|
+
msgid "In '_%s'"
|
1170
|
+
msgstr "Naar '_%s'"
|
1127
1171
|
|
1128
|
-
#: ../
|
1172
|
+
#: ../lib/alexandria/web_themes.rb:64
|
1173
|
+
msgid "File %<file>s not found"
|
1174
|
+
msgstr "Bestand %<file>s niet gevonden"
|
1175
|
+
|
1176
|
+
#: ../share/alexandria/glade/acquire_dialog__builder.glade:9
|
1129
1177
|
msgid "Acquire from Scanner"
|
1130
1178
|
msgstr "Inlezen d.m.v. scanner"
|
1131
1179
|
|
1132
|
-
#: ../
|
1133
|
-
|
1180
|
+
#: ../share/alexandria/glade/acquire_dialog__builder.glade:91
|
1181
|
+
msgid "_Barcode Scanner Ready"
|
1182
|
+
msgstr "_Streepjescodescanner klaar"
|
1183
|
+
|
1184
|
+
#: ../share/alexandria/glade/acquire_dialog__builder.glade:159
|
1185
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:171
|
1134
1186
|
msgid "Save _in:"
|
1135
1187
|
msgstr "Opslaan _in:"
|
1136
1188
|
|
1137
|
-
#: ../
|
1138
|
-
msgid "
|
1139
|
-
msgstr "
|
1140
|
-
|
1141
|
-
#: ../data/alexandria/glade/main_app.glade:32
|
1142
|
-
msgid "Libraries listing."
|
1143
|
-
msgstr "Lijst met bibliotheken"
|
1144
|
-
|
1145
|
-
#: ../data/alexandria/glade/main_app.glade:46
|
1146
|
-
msgid "_Libraries:"
|
1147
|
-
msgstr "_Bibliotheken:"
|
1189
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:18
|
1190
|
+
msgid "by title"
|
1191
|
+
msgstr "op titel"
|
1148
1192
|
|
1149
|
-
#: ../
|
1150
|
-
msgid "
|
1151
|
-
msgstr "
|
1193
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:21
|
1194
|
+
msgid "by authors"
|
1195
|
+
msgstr "op auteurs"
|
1152
1196
|
|
1153
|
-
#: ../
|
1154
|
-
msgid "
|
1155
|
-
msgstr "
|
1197
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:24
|
1198
|
+
msgid "by keyword"
|
1199
|
+
msgstr "op sleutelwoord"
|
1156
1200
|
|
1157
|
-
#: ../
|
1201
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:115
|
1158
1202
|
msgid "_Keep Dialog Open after Adding Book"
|
1159
1203
|
msgstr "_Houd dialoogvenster open na het toevoegen van een boek"
|
1160
1204
|
|
1161
|
-
#: ../
|
1162
|
-
msgid ""
|
1163
|
-
"by title\n"
|
1164
|
-
"by authors\n"
|
1165
|
-
"by keyword"
|
1166
|
-
msgstr ""
|
1167
|
-
"op titel\n"
|
1168
|
-
"op auteurs\n"
|
1169
|
-
"op sleutelwoord"
|
1170
|
-
|
1171
|
-
#: ../data/alexandria/glade/new_book_dialog.glade:201
|
1205
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:285
|
1172
1206
|
msgid "_Search:"
|
1173
1207
|
msgstr "_Zoeken:"
|
1174
1208
|
|
1175
|
-
#: ../
|
1176
|
-
#: ../
|
1209
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:301
|
1210
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:85
|
1177
1211
|
msgid "_ISBN:"
|
1178
1212
|
msgstr "_ISBN:"
|
1179
1213
|
|
1180
|
-
#: ../
|
1181
|
-
msgid "
|
1182
|
-
msgstr "
|
1183
|
-
|
1184
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:115
|
1185
|
-
msgid "_Publisher:"
|
1186
|
-
msgstr "_Uitgever:"
|
1214
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:8
|
1215
|
+
msgid "Preferences"
|
1216
|
+
msgstr "Voorkeuren"
|
1187
1217
|
|
1188
|
-
#: ../
|
1189
|
-
msgid "
|
1190
|
-
msgstr "
|
1218
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:76
|
1219
|
+
msgid "<b>Visible Columns</b>"
|
1220
|
+
msgstr "<b>Zichtbare Kolommen</b>"
|
1191
1221
|
|
1192
|
-
#: ../
|
1193
|
-
msgid "
|
1194
|
-
msgstr "
|
1222
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:95
|
1223
|
+
msgid "_Authors"
|
1224
|
+
msgstr "_Auteurs"
|
1195
1225
|
|
1196
|
-
#: ../
|
1197
|
-
msgid "
|
1198
|
-
msgstr "
|
1226
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:110
|
1227
|
+
msgid "_ISBN"
|
1228
|
+
msgstr "_ISBN"
|
1199
1229
|
|
1200
|
-
#: ../
|
1201
|
-
msgid "
|
1202
|
-
msgstr "
|
1230
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:125
|
1231
|
+
msgid "_Publisher"
|
1232
|
+
msgstr "_Uitgever"
|
1203
1233
|
|
1204
|
-
#: ../
|
1205
|
-
msgid "
|
1206
|
-
msgstr "
|
1234
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:140
|
1235
|
+
msgid "_Rating"
|
1236
|
+
msgstr "_Waardering"
|
1207
1237
|
|
1208
|
-
#: ../
|
1209
|
-
msgid "
|
1210
|
-
msgstr "
|
1238
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:155
|
1239
|
+
msgid "_Binding"
|
1240
|
+
msgstr "_Band"
|
1211
1241
|
|
1212
|
-
#: ../
|
1213
|
-
msgid "
|
1214
|
-
msgstr "
|
1242
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:170
|
1243
|
+
msgid "Publish _year"
|
1244
|
+
msgstr "_Jaar van uitgifte"
|
1215
1245
|
|
1216
|
-
#: ../
|
1217
|
-
msgid "
|
1218
|
-
msgstr "
|
1246
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:185
|
1247
|
+
msgid "Read?"
|
1248
|
+
msgstr "Gelezen?"
|
1219
1249
|
|
1220
|
-
#: ../
|
1221
|
-
msgid "Own
|
1250
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:200
|
1251
|
+
msgid "Own?"
|
1222
1252
|
msgstr "In bezit?"
|
1223
1253
|
|
1224
|
-
#: ../
|
1225
|
-
msgid "
|
1226
|
-
msgstr "Gelezen?"
|
1227
|
-
|
1228
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:695
|
1229
|
-
msgid "Want it?"
|
1254
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:215
|
1255
|
+
msgid "Want?"
|
1230
1256
|
msgstr "Gewenst?"
|
1231
1257
|
|
1232
|
-
#: ../
|
1233
|
-
msgid "
|
1234
|
-
msgstr "
|
1235
|
-
|
1236
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:927
|
1237
|
-
msgid "Rating:"
|
1238
|
-
msgstr "Waardering:"
|
1239
|
-
|
1240
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:967
|
1241
|
-
msgid "General"
|
1242
|
-
msgstr "Algemeen"
|
1243
|
-
|
1244
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:998
|
1245
|
-
msgid "This book is _loaned"
|
1246
|
-
msgstr "Dit boek is _uitgeleend"
|
1247
|
-
|
1248
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:1076
|
1249
|
-
msgid "_To:"
|
1250
|
-
msgstr "_Aan:"
|
1251
|
-
|
1252
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:1106
|
1253
|
-
msgid "_Since:"
|
1254
|
-
msgstr "_Sinds:"
|
1255
|
-
|
1256
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:1166
|
1257
|
-
msgid "Loaning"
|
1258
|
-
msgstr "Uitlenen"
|
1258
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:245
|
1259
|
+
msgid "Loaned to"
|
1260
|
+
msgstr "Uitgeleend aan"
|
1259
1261
|
|
1260
|
-
#: ../
|
1261
|
-
msgid "
|
1262
|
-
msgstr "
|
1262
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:271
|
1263
|
+
msgid "_List View"
|
1264
|
+
msgstr "Toon _Lijst"
|
1263
1265
|
|
1264
|
-
#: ../
|
1266
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:290
|
1265
1267
|
msgid "<b>Book Data Providers</b>"
|
1266
1268
|
msgstr "<b>_Bronbibliotheek van boekgegevens</b>"
|
1267
1269
|
|
1268
|
-
#: ../
|
1270
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:372
|
1269
1271
|
msgid "_Setup"
|
1270
1272
|
msgstr "_Instellingen"
|
1271
1273
|
|
1272
|
-
#: ../
|
1274
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:474
|
1273
1275
|
msgid ""
|
1274
1276
|
"Providers are libraries that supply information about books. Some of them "
|
1275
1277
|
"can be configured to get better results. You can also customize the order "
|
@@ -1279,68 +1281,119 @@ msgstr ""
|
|
1279
1281
|
"Sommigen kunnen geconfigureerd worden om betere resultaten te geven. U kunt "
|
1280
1282
|
"ook de volgorde waarin ze geraadpleegd worden aanpassen."
|
1281
1283
|
|
1282
|
-
#: ../
|
1284
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:486
|
1283
1285
|
msgid "Custom _Z39.50 Providers"
|
1284
1286
|
msgstr "Eigen _Z39.50 aanbieders"
|
1285
1287
|
|
1286
|
-
#: ../
|
1288
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:490
|
1287
1289
|
msgid ""
|
1288
1290
|
"Add and remove your own Z39.50 providers.\n"
|
1289
1291
|
"Requires the Ruby/ZOOM software library."
|
1290
1292
|
msgstr ""
|
1291
1293
|
|
1292
|
-
#: ../
|
1294
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:511
|
1293
1295
|
msgid "_Providers"
|
1294
1296
|
msgstr "Bronbibliotheken"
|
1295
1297
|
|
1296
|
-
#: ../
|
1297
|
-
msgid "<b>
|
1298
|
-
msgstr "<b>
|
1298
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:537
|
1299
|
+
msgid "<b>Barcode Scanner Device</b>"
|
1300
|
+
msgstr "<b>Streepjescodescanner</b>"
|
1299
1301
|
|
1300
|
-
#: ../
|
1301
|
-
msgid "
|
1302
|
-
msgstr "
|
1302
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:556
|
1303
|
+
msgid "_Device type:"
|
1304
|
+
msgstr "Type apparaat:"
|
1303
1305
|
|
1304
|
-
#: ../
|
1305
|
-
msgid "
|
1306
|
-
msgstr "
|
1306
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:602
|
1307
|
+
msgid "<b>Sound Effects</b>"
|
1308
|
+
msgstr "<b>Geluidsffecten</b>"
|
1307
1309
|
|
1308
|
-
#: ../
|
1309
|
-
msgid "
|
1310
|
-
msgstr "
|
1310
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:618
|
1311
|
+
msgid "Scanning"
|
1312
|
+
msgstr "Bezig met scannen"
|
1311
1313
|
|
1312
|
-
#: ../
|
1313
|
-
msgid "
|
1314
|
-
msgstr "
|
1314
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:632
|
1315
|
+
msgid "Good Scan / Bad Scan"
|
1316
|
+
msgstr "Goede scan / Slechte scan"
|
1315
1317
|
|
1316
|
-
#: ../
|
1317
|
-
msgid "
|
1318
|
-
msgstr "
|
1318
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:667
|
1319
|
+
msgid "_Barcode Scanner"
|
1320
|
+
msgstr "_Streepjescodescanner"
|
1319
1321
|
|
1320
|
-
#: ../
|
1321
|
-
msgid "
|
1322
|
-
msgstr "
|
1322
|
+
#: ../share/alexandria/glade/main_app__builder.glade:48
|
1323
|
+
msgid "_Libraries:"
|
1324
|
+
msgstr "_Bibliotheken:"
|
1323
1325
|
|
1324
|
-
#: ../
|
1325
|
-
msgid "
|
1326
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:60
|
1327
|
+
msgid "_Title:"
|
1328
|
+
msgstr "_Titel:"
|
1329
|
+
|
1330
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:199
|
1331
|
+
msgid "_Authors:"
|
1332
|
+
msgstr "_Auteurs:"
|
1333
|
+
|
1334
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:213
|
1335
|
+
msgid "Tags:"
|
1336
|
+
msgstr "Trefwoorden:"
|
1337
|
+
|
1338
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:245
|
1339
|
+
msgid "_Binding:"
|
1340
|
+
msgstr "_Band:"
|
1341
|
+
|
1342
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:258
|
1343
|
+
msgid "Publish _year:"
|
1344
|
+
msgstr "_Jaar van uitgifte:"
|
1345
|
+
|
1346
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:292
|
1347
|
+
msgid "_Publisher:"
|
1348
|
+
msgstr "_Uitgever:"
|
1349
|
+
|
1350
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:333
|
1351
|
+
msgid "_Cover:"
|
1352
|
+
msgstr "_Kaft:"
|
1353
|
+
|
1354
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:526
|
1355
|
+
msgid "Rating:"
|
1356
|
+
msgstr "Waardering:"
|
1357
|
+
|
1358
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:539
|
1359
|
+
msgid "Want it?"
|
1360
|
+
msgstr "Gewenst?"
|
1361
|
+
|
1362
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:555
|
1363
|
+
msgid "Read it?"
|
1326
1364
|
msgstr "Gelezen?"
|
1327
1365
|
|
1328
|
-
#: ../
|
1329
|
-
msgid "
|
1366
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:576
|
1367
|
+
msgid "Select Date"
|
1368
|
+
msgstr "Datum selecteren"
|
1369
|
+
|
1370
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:577
|
1371
|
+
msgid "Clear Date"
|
1372
|
+
msgstr "Datum wissen"
|
1373
|
+
|
1374
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:587
|
1375
|
+
msgid "Own it?"
|
1330
1376
|
msgstr "In bezit?"
|
1331
1377
|
|
1332
|
-
#: ../
|
1333
|
-
msgid "
|
1334
|
-
msgstr "
|
1378
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:615
|
1379
|
+
msgid "General"
|
1380
|
+
msgstr "Algemeen"
|
1335
1381
|
|
1336
|
-
#: ../
|
1337
|
-
|
1338
|
-
|
1339
|
-
msgstr "Uitgeleend"
|
1382
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:630
|
1383
|
+
msgid "This book is _loaned"
|
1384
|
+
msgstr "Dit boek is _uitgeleend"
|
1340
1385
|
|
1341
|
-
#: ../
|
1342
|
-
msgid "
|
1343
|
-
msgstr "
|
1386
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:679
|
1387
|
+
msgid "_To:"
|
1388
|
+
msgstr "_Aan:"
|
1389
|
+
|
1390
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:693
|
1391
|
+
msgid "_Since:"
|
1392
|
+
msgstr "_Sinds:"
|
1393
|
+
|
1394
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:735
|
1395
|
+
msgid "Loaning"
|
1396
|
+
msgstr "Uitlenen"
|
1344
1397
|
|
1345
1398
|
#: ../alexandria.desktop.in.h:1
|
1346
1399
|
msgid "Alexandria Book Collection Manager"
|
@@ -1354,6 +1407,75 @@ msgstr "Boekcollectiebeheerder"
|
|
1354
1407
|
msgid "Manage your book collection"
|
1355
1408
|
msgstr "Beheer uw boekcollectie"
|
1356
1409
|
|
1410
|
+
#~ msgid "Unable to launch the web browser"
|
1411
|
+
#~ msgstr "Kon geen webbrowser starten"
|
1412
|
+
|
1413
|
+
#~ msgid ""
|
1414
|
+
#~ "Check out that a web browser is configured as default (Desktop "
|
1415
|
+
#~ "Preferences -> Advanced -> Preferred Applications) and try again."
|
1416
|
+
#~ msgstr ""
|
1417
|
+
#~ "Controleer of een standaard webbrowser is ingesteld (Systeem -> "
|
1418
|
+
#~ "Voorkeuren -> Voorkeursapplicaties) en probeer opnieuw."
|
1419
|
+
|
1420
|
+
#~ msgid "Unable to launch the mail reader"
|
1421
|
+
#~ msgstr "Kon geen e-mailprogramma starten"
|
1422
|
+
|
1423
|
+
#~ msgid ""
|
1424
|
+
#~ "Check out that a mail reader is configured as default (Desktop "
|
1425
|
+
#~ "Preferences -> Advanced -> Preferred Applications) and try again."
|
1426
|
+
#~ msgstr ""
|
1427
|
+
#~ "Controleer of een standaard e-mailprogramma is ingesteld (Systeem -> "
|
1428
|
+
#~ "Voorkeuren -> Voorkeursapplicaties) en probeer opnieuw."
|
1429
|
+
|
1430
|
+
#~ msgid "Repair Book Data"
|
1431
|
+
#~ msgstr "Repareer boekgegevens"
|
1432
|
+
|
1433
|
+
#~ msgid "Try letting this library load completely before exporting."
|
1434
|
+
#~ msgstr ""
|
1435
|
+
#~ "Probeer voor het exporteren deze bibliotheek volledig te laten laden"
|
1436
|
+
|
1437
|
+
#~ msgid "There's a problem"
|
1438
|
+
#~ msgstr "Er is een probleem"
|
1439
|
+
|
1440
|
+
#~ msgid "Disable Provider"
|
1441
|
+
#~ msgstr "Schakel bronbibliotheek uit"
|
1442
|
+
|
1443
|
+
#~ msgid "Enable Provider"
|
1444
|
+
#~ msgstr "Schakel bronbibliotheek in"
|
1445
|
+
|
1446
|
+
#~ msgid "Main Window"
|
1447
|
+
#~ msgstr "Hoofdvenster"
|
1448
|
+
|
1449
|
+
#~ msgid "Libraries listing."
|
1450
|
+
#~ msgstr "Lijst met bibliotheken"
|
1451
|
+
|
1452
|
+
#~ msgid "Book listing."
|
1453
|
+
#~ msgstr "Boekenlijst."
|
1454
|
+
|
1455
|
+
#~ msgid "Status messages."
|
1456
|
+
#~ msgstr "Statusmeldingen."
|
1457
|
+
|
1458
|
+
#~ msgid ""
|
1459
|
+
#~ "by title\n"
|
1460
|
+
#~ "by authors\n"
|
1461
|
+
#~ "by keyword"
|
1462
|
+
#~ msgstr ""
|
1463
|
+
#~ "op titel\n"
|
1464
|
+
#~ "op auteurs\n"
|
1465
|
+
#~ "op sleutelwoord"
|
1466
|
+
|
1467
|
+
#~ msgid "Add an author"
|
1468
|
+
#~ msgstr "Een auteur toevoegen"
|
1469
|
+
|
1470
|
+
#~ msgid "Remove an author"
|
1471
|
+
#~ msgstr "Een auteur verwijderen"
|
1472
|
+
|
1473
|
+
#~ msgid "Click to pick a cover"
|
1474
|
+
#~ msgstr "Klik om een kaft te selecteren"
|
1475
|
+
|
1476
|
+
#~ msgid "Click on the stars to rate the book"
|
1477
|
+
#~ msgstr "Klik op de sterren om het boek van een waardering te voorzien"
|
1478
|
+
|
1357
1479
|
#~ msgid "Language"
|
1358
1480
|
#~ msgstr "Taal"
|
1359
1481
|
|
@@ -1366,9 +1488,6 @@ msgstr "Beheer uw boekcollectie"
|
|
1366
1488
|
#~ msgid "Couldn't add these books"
|
1367
1489
|
#~ msgstr "Kon deze boeken niet toevoegen"
|
1368
1490
|
|
1369
|
-
#~ msgid "Associate ID"
|
1370
|
-
#~ msgstr "Geassocieerd ID"
|
1371
|
-
|
1372
1491
|
#~ msgid ""
|
1373
1492
|
#~ "These books do not conform to the ISBN-13 standard. We will attempt to "
|
1374
1493
|
#~ "replace them from the book providers. Otherwise, we will turn them into "
|