alexandria-book-collection-manager 0.7.8 → 0.7.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +48 -53
- data/.rubocop.yml +18 -5
- data/.rubocop_todo.yml +31 -37
- data/.simplecov +2 -2
- data/CHANGELOG.md +37 -0
- data/ChangeLog.0 +19 -19
- data/INSTALL.md +3 -5
- data/README.md +0 -5
- data/Rakefile +14 -14
- data/alexandria-book-collection-manager.gemspec +35 -34
- data/doc/FAQ +2 -2
- data/lib/alexandria/about.rb +1 -1
- data/lib/alexandria/book_providers/bl_provider.rb +88 -0
- data/lib/alexandria/book_providers/loc_provider.rb +38 -0
- data/lib/alexandria/book_providers/sbn_provider.rb +108 -0
- data/lib/alexandria/book_providers/thalia_provider.rb +1 -1
- data/lib/alexandria/book_providers/web.rb +2 -2
- data/lib/alexandria/book_providers/worldcat.rb +9 -7
- data/lib/alexandria/book_providers/z3950_provider.rb +199 -0
- data/lib/alexandria/book_providers.rb +10 -25
- data/lib/alexandria/console.rb +2 -2
- data/lib/alexandria/default_preferences.rb +1 -1
- data/lib/alexandria/export_library.rb +14 -14
- data/lib/alexandria/image_fetcher.rb +25 -0
- data/lib/alexandria/import_library.rb +10 -10
- data/lib/alexandria/library_store.rb +4 -5
- data/lib/alexandria/models/book.rb +13 -0
- data/lib/alexandria/models/library.rb +15 -23
- data/lib/alexandria/preferences.rb +4 -6
- data/lib/alexandria/{book_providers/pseudomarc.rb → pseudo_marc_parser.rb} +2 -2
- data/lib/alexandria/scanners/cue_cat.rb +1 -1
- data/lib/alexandria/smart_library.rb +2 -2
- data/lib/alexandria/ui/about_dialog.rb +1 -1
- data/lib/alexandria/ui/acquire_dialog.rb +6 -9
- data/lib/alexandria/ui/alert_dialog.rb +2 -2
- data/lib/alexandria/ui/barcode_animation.rb +1 -1
- data/lib/alexandria/ui/book_properties_dialog_base.rb +5 -9
- data/lib/alexandria/ui/completion_models.rb +1 -5
- data/lib/alexandria/ui/conflict_while_copying_dialog.rb +1 -1
- data/lib/alexandria/ui/icons.rb +2 -2
- data/lib/alexandria/ui/init.rb +10 -4
- data/lib/alexandria/ui/listview.rb +1 -1
- data/lib/alexandria/ui/multi_drag_treeview.rb +1 -1
- data/lib/alexandria/ui/new_book_dialog.rb +11 -13
- data/lib/alexandria/ui/new_book_dialog_manual.rb +1 -1
- data/lib/alexandria/ui/preferences_dialog.rb +2 -2
- data/lib/alexandria/ui/provider_preferences_base_dialog.rb +1 -1
- data/lib/alexandria/ui/really_delete_dialog.rb +1 -1
- data/lib/alexandria/ui/ui_manager.rb +17 -25
- data/lib/alexandria/version.rb +1 -1
- data/lib/alexandria/web_themes.rb +1 -1
- data/lib/alexandria.rb +6 -5
- data/po/cs.po +90 -125
- data/po/cy.po +87 -125
- data/po/de.po +96 -125
- data/po/el.po +96 -125
- data/po/es.po +96 -125
- data/po/fr.po +90 -125
- data/po/ga.po +83 -124
- data/po/gl.po +90 -125
- data/po/it.po +90 -125
- data/po/ja.po +90 -125
- data/po/mk.po +96 -125
- data/po/nb.po +90 -125
- data/po/nl.po +107 -124
- data/po/pl.po +113 -124
- data/po/pt.po +90 -125
- data/po/pt_BR.po +90 -125
- data/po/ru.po +92 -124
- data/po/sk.po +90 -125
- data/po/sv.po +90 -125
- data/po/uk.po +90 -125
- data/po/zh_TW.po +90 -125
- data/schemas/alexandria.schemas +1 -1
- data/share/gnome/help/alexandria/C/adding-books.xml +3 -4
- data/share/gnome/help/alexandria/C/introduction.xml +0 -16
- data/share/gnome/help/alexandria/C/searching.xml +1 -4
- data/share/gnome/help/alexandria/C/settings.xml +0 -30
- data/share/gnome/help/alexandria/fr/alexandria.xml +4 -159
- data/share/gnome/help/alexandria/ja/adding-books.xml +1 -1
- data/share/gnome/help/alexandria/ja/introduction.xml +0 -15
- data/share/gnome/help/alexandria/ja/searching.xml +3 -7
- data/share/gnome/help/alexandria/ja/settings.xml +0 -27
- data/spec/alexandria/book_providers/bl_provider_spec.rb +13 -0
- data/spec/alexandria/book_providers/loc_provider_spec.rb +17 -0
- data/spec/alexandria/book_providers/sbn_provider_spec.rb +13 -0
- data/spec/alexandria/book_providers/thalia_provider_spec.rb +1 -1
- data/spec/alexandria/book_providers/world_cat_provider_spec.rb +22 -10
- data/spec/alexandria/book_providers_spec.rb +0 -81
- data/spec/alexandria/book_spec.rb +5 -3
- data/spec/alexandria/export_library_spec.rb +8 -8
- data/spec/alexandria/library_spec.rb +83 -51
- data/spec/alexandria/library_store_spec.rb +1 -1
- data/spec/alexandria/preferences_spec.rb +7 -7
- data/spec/alexandria/pseudo_marc_parser_spec.rb +71 -0
- data/spec/alexandria/scanners/cue_cat_spec.rb +11 -4
- data/spec/alexandria/smart_library_spec.rb +7 -5
- data/spec/alexandria/ui/about_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/acquire_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/alert_dialog_spec.rb +5 -3
- data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/book_properties_dialog_spec.rb +4 -4
- data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +18 -2
- data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/error_dialog_spec.rb +13 -2
- data/spec/alexandria/ui/export_dialog_spec.rb +3 -3
- data/spec/alexandria/ui/iconview_spec.rb +1 -1
- data/spec/alexandria/ui/import_dialog_spec.rb +3 -3
- data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +4 -4
- data/spec/alexandria/ui/new_book_dialog_spec.rb +2 -2
- data/spec/alexandria/ui/new_provider_dialog_spec.rb +3 -3
- data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +9 -7
- data/spec/alexandria/ui/preferences_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +2 -2
- data/spec/alexandria/ui/really_delete_dialog_spec.rb +1 -1
- data/spec/alexandria/ui/sidepane_manager_spec.rb +1 -1
- data/spec/alexandria/ui/skip_entry_dialog_spec.rb +18 -2
- data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +2 -2
- data/spec/alexandria/ui/ui_manager_spec.rb +83 -5
- data/spec/data/libraries/0.6.2/My Library/9780571147168.yaml +2 -0
- data/spec/spec_helper.rb +23 -32
- data/util/rake/fileinstall.rb +12 -12
- data/util/rake/gettextgenerate.rb +1 -1
- data/util/rake/omfgenerate.rb +1 -1
- metadata +73 -58
- data/lib/alexandria/book_providers/adlibris.rb +0 -191
- data/lib/alexandria/book_providers/amazon_aws.rb +0 -239
- data/lib/alexandria/book_providers/amazon_ecs_util.rb +0 -373
- data/lib/alexandria/book_providers/barnes_and_noble.rb +0 -209
- data/lib/alexandria/book_providers/proxis.rb +0 -176
- data/lib/alexandria/book_providers/siciliano.rb +0 -256
- data/lib/alexandria/book_providers/z3950.rb +0 -408
data/po/cy.po
CHANGED
@@ -6,7 +6,7 @@ msgid ""
|
|
6
6
|
msgstr ""
|
7
7
|
"Project-Id-Version: alexandria\n"
|
8
8
|
"Report-Msgid-Bugs-To: \n"
|
9
|
-
"POT-Creation-Date: 2020-
|
9
|
+
"POT-Creation-Date: 2020-12-26 12:17+0100\n"
|
10
10
|
"PO-Revision-Date: 2005-03-25 18:52+0100\n"
|
11
11
|
"Last-Translator: Dafydd Harries <daf@muse.19inch.net>\n"
|
12
12
|
"Language-Team: Welsh <cy@pengwyn.linux.org.uk>\n"
|
@@ -20,16 +20,15 @@ msgstr ""
|
|
20
20
|
msgid "A program to help you manage your book collection."
|
21
21
|
msgstr "Rhaglen i'ch helpu chi drefnu eich casgliad llyfrau."
|
22
22
|
|
23
|
-
#: ../lib/alexandria/book_providers.rb:
|
23
|
+
#: ../lib/alexandria/book_providers.rb:95
|
24
24
|
msgid "Couldn't reach the provider '%s': timeout expired."
|
25
25
|
msgstr "Methwyd cyrraedd y darparwr '%s': terfyn aros."
|
26
26
|
|
27
|
-
#: ../lib/alexandria/book_providers.rb:
|
27
|
+
#: ../lib/alexandria/book_providers.rb:99
|
28
28
|
msgid "Couldn't reach the provider '%s': socket error (%s)."
|
29
29
|
msgstr "Methwyd cyrraedd y darparwr '%s': gwall soced (%s)."
|
30
30
|
|
31
|
-
#: ../lib/alexandria/book_providers.rb:
|
32
|
-
#: ../lib/alexandria/book_providers.rb:104
|
31
|
+
#: ../lib/alexandria/book_providers.rb:103
|
33
32
|
msgid ""
|
34
33
|
"No results were found. Make sure your search criterion is spelled "
|
35
34
|
"correctly, and try again."
|
@@ -37,59 +36,18 @@ msgstr ""
|
|
37
36
|
"Ni chanfuwyd unrhyw ganlyniadau. Sicrhewch fod eich termau chwilio wedi eu "
|
38
37
|
"sillafu'n gywir, a ceisiwch eto."
|
39
38
|
|
40
|
-
#: ../lib/alexandria/book_providers.rb:
|
39
|
+
#: ../lib/alexandria/book_providers.rb:108
|
41
40
|
msgid "Too many results for that search."
|
42
41
|
msgstr "Gormod o ganlyniadau ar gyfer yr ymholiad hwnnw."
|
43
42
|
|
44
|
-
#: ../lib/alexandria/book_providers.rb:
|
43
|
+
#: ../lib/alexandria/book_providers.rb:111
|
45
44
|
msgid "Invalid search type."
|
46
45
|
msgstr "Math chwilio annilys."
|
47
46
|
|
48
|
-
#: ../lib/alexandria/book_providers.rb:
|
47
|
+
#: ../lib/alexandria/book_providers.rb:205
|
49
48
|
msgid "Enabled"
|
50
49
|
msgstr ""
|
51
50
|
|
52
|
-
#: ../lib/alexandria/book_providers/adlibris.rb:111
|
53
|
-
msgid "title not found on page"
|
54
|
-
msgstr ""
|
55
|
-
|
56
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:26
|
57
|
-
msgid "Locale"
|
58
|
-
msgstr ""
|
59
|
-
|
60
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:27
|
61
|
-
msgid "Access key ID"
|
62
|
-
msgstr ""
|
63
|
-
|
64
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:28
|
65
|
-
msgid "Secret access key"
|
66
|
-
msgstr ""
|
67
|
-
|
68
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:29
|
69
|
-
#, fuzzy
|
70
|
-
msgid "Associate Tag"
|
71
|
-
msgstr "ID Partner"
|
72
|
-
|
73
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:59
|
74
|
-
msgid "Provide secret key for your Amazon AWS account."
|
75
|
-
msgstr ""
|
76
|
-
|
77
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:149
|
78
|
-
msgid "No products"
|
79
|
-
msgstr ""
|
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 ""
|
88
|
-
|
89
|
-
#: ../lib/alexandria/book_providers/barnes_and_noble.rb:59
|
90
|
-
msgid "HTTP redirect too deep"
|
91
|
-
msgstr ""
|
92
|
-
|
93
51
|
#: ../lib/alexandria/book_providers/z3950.rb:22
|
94
52
|
msgid "Hostname"
|
95
53
|
msgstr ""
|
@@ -130,7 +88,7 @@ msgstr "_Enw llyfrgell"
|
|
130
88
|
msgid "British Library"
|
131
89
|
msgstr "Mewnforio Llyfrgell"
|
132
90
|
|
133
|
-
#: ../lib/alexandria/book_providers/z3950.rb:
|
91
|
+
#: ../lib/alexandria/book_providers/z3950.rb:374
|
134
92
|
#, fuzzy
|
135
93
|
msgid "Invalid ISBN"
|
136
94
|
msgstr "ISBN annilys '%s'"
|
@@ -208,12 +166,12 @@ msgstr ""
|
|
208
166
|
msgid "%<file>s pub year is not okay"
|
209
167
|
msgstr ""
|
210
168
|
|
211
|
-
#: ../lib/alexandria/models/library.rb:
|
169
|
+
#: ../lib/alexandria/models/library.rb:42
|
212
170
|
#, fuzzy
|
213
171
|
msgid "Untitled"
|
214
172
|
msgstr "Dideitl %d"
|
215
173
|
|
216
|
-
#: ../lib/alexandria/models/library.rb:
|
174
|
+
#: ../lib/alexandria/models/library.rb:284
|
217
175
|
msgid "Book %<isbn>s was already deleted"
|
218
176
|
msgstr ""
|
219
177
|
|
@@ -384,53 +342,53 @@ msgstr ""
|
|
384
342
|
msgid "invalid operand klass %<klass>s"
|
385
343
|
msgstr ""
|
386
344
|
|
387
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
345
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:206
|
388
346
|
msgid "There was %d duplicate"
|
389
347
|
msgid_plural "There were %d duplicates"
|
390
348
|
msgstr[0] ""
|
391
349
|
msgstr[1] ""
|
392
350
|
|
393
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
351
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:209
|
394
352
|
#, fuzzy
|
395
353
|
msgid "Couldn't add this book"
|
396
354
|
msgid_plural "Couldn't add these books"
|
397
355
|
msgstr[0] "Methwyd ychwanegu'r llyfr"
|
398
356
|
msgstr[1] "Methwyd ychwanegu'r llyfr"
|
399
357
|
|
400
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
401
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
358
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:288
|
359
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:498
|
402
360
|
msgid "Searching Provider '%s'..."
|
403
361
|
msgstr ""
|
404
362
|
|
405
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
406
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
363
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:289
|
364
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:499
|
407
365
|
msgid "Error while Searching Provider '%s'"
|
408
366
|
msgstr ""
|
409
367
|
|
410
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
411
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
368
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:290
|
369
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:500
|
412
370
|
msgid "Not Found at Provider '%s'"
|
413
371
|
msgstr ""
|
414
372
|
|
415
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
416
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
373
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:291
|
374
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:501
|
417
375
|
msgid "Found at Provider '%s'"
|
418
376
|
msgstr ""
|
419
377
|
|
420
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
378
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:403
|
421
379
|
msgid "Ready to use %s barcode scanner"
|
422
380
|
msgstr ""
|
423
381
|
|
424
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
382
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:427
|
425
383
|
msgid "Click below to scan _barcodes"
|
426
384
|
msgstr ""
|
427
385
|
|
428
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
429
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
386
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:111
|
387
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:121
|
430
388
|
msgid "Couldn't modify the book"
|
431
389
|
msgstr "Methwyd newid y llyfr"
|
432
390
|
|
433
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
391
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:112
|
434
392
|
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:74
|
435
393
|
msgid ""
|
436
394
|
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
@@ -439,43 +397,43 @@ msgstr ""
|
|
439
397
|
"Methwyd dilysu yr EAN/ISBN a rhoddwyd. Sicrhewch ei fod wedi ei ysgrifennu'n "
|
440
398
|
"gywir, a ceisiwch eto."
|
441
399
|
|
442
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
400
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:122
|
443
401
|
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:79
|
444
402
|
msgid "The EAN/ISBN you provided is already used in this library."
|
445
403
|
msgstr ""
|
446
404
|
"Mae llyfr a'r EAN/ISBN a rhoddoch yn bodoli yn y llyfrgell hwn eisioes."
|
447
405
|
|
448
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
406
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:104
|
449
407
|
#, fuzzy
|
450
408
|
msgid "Properties"
|
451
409
|
msgstr "_Priodweddau"
|
452
410
|
|
453
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
411
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:106
|
454
412
|
#: ../lib/alexandria/ui/smart_library_properties_dialog.rb:21
|
455
413
|
#, fuzzy
|
456
414
|
msgid "Properties for '%s'"
|
457
415
|
msgstr "Hoffteray ar gyfer %s"
|
458
416
|
|
459
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
417
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:112
|
460
418
|
msgid "Author"
|
461
419
|
msgstr "Awdur"
|
462
420
|
|
463
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
421
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:160
|
464
422
|
msgid "Select a cover image"
|
465
423
|
msgstr "Dewis delwedd gorchydd"
|
466
424
|
|
467
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
425
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:163
|
468
426
|
#, fuzzy
|
469
427
|
msgid "No Cover"
|
470
428
|
msgstr "_Gorchydd:"
|
471
429
|
|
472
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
430
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:242
|
473
431
|
msgid "%d day"
|
474
432
|
msgid_plural "%d days"
|
475
433
|
msgstr[0] "%d diwrnod"
|
476
434
|
msgstr[1] "%d ddiwrnod"
|
477
435
|
|
478
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
436
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:268
|
479
437
|
msgid "out of range"
|
480
438
|
msgstr ""
|
481
439
|
|
@@ -797,31 +755,31 @@ msgid "If you replace the existing book, its contents will be overwritten."
|
|
797
755
|
msgstr ""
|
798
756
|
"Os ydych chi'n amnewid y llyfr sy'n bodoli, caiff ei gynnwys eu trosysgrifo."
|
799
757
|
|
800
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
758
|
+
#: ../lib/alexandria/ui/export_dialog.rb:24
|
801
759
|
msgid "Export '%s'"
|
802
760
|
msgstr "Allforio '%s'"
|
803
761
|
|
804
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
762
|
+
#: ../lib/alexandria/ui/export_dialog.rb:29
|
805
763
|
msgid "_Export"
|
806
764
|
msgstr "_Allforio"
|
807
765
|
|
808
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
766
|
+
#: ../lib/alexandria/ui/export_dialog.rb:50
|
809
767
|
msgid "_Theme:"
|
810
768
|
msgstr "_Thema:"
|
811
769
|
|
812
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
770
|
+
#: ../lib/alexandria/ui/export_dialog.rb:62
|
813
771
|
msgid "directory"
|
814
772
|
msgstr "cyfeiriadur"
|
815
773
|
|
816
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
774
|
+
#: ../lib/alexandria/ui/export_dialog.rb:74
|
817
775
|
msgid "Export for_mat:"
|
818
776
|
msgstr "_Fformat allforio:"
|
819
777
|
|
820
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
778
|
+
#: ../lib/alexandria/ui/export_dialog.rb:101
|
821
779
|
msgid "Export failed"
|
822
780
|
msgstr "Methwyd allforio"
|
823
781
|
|
824
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
782
|
+
#: ../lib/alexandria/ui/export_dialog.rb:125
|
825
783
|
msgid ""
|
826
784
|
"The target, named '%s', is a regular file. A directory is needed for this "
|
827
785
|
"operation. Please select a directory and try again."
|
@@ -829,7 +787,7 @@ msgstr ""
|
|
829
787
|
"Mae'r targed, a enwir '%s', yn ffeil. Mynnir cyfeiriadur ar gyfer y weithred "
|
830
788
|
"hon. Dewiswch gyfeiriadur a cheisiwch eto."
|
831
789
|
|
832
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
790
|
+
#: ../lib/alexandria/ui/export_dialog.rb:129
|
833
791
|
msgid "Not a directory"
|
834
792
|
msgstr "Nid yw'n gyfeiriadur"
|
835
793
|
|
@@ -853,12 +811,12 @@ msgid ""
|
|
853
811
|
msgstr ""
|
854
812
|
"Mae fformat y ffeil fe rhoddoch yn anhysbys. Ceisiwch eto gyda ffeil arall."
|
855
813
|
|
856
|
-
#: ../lib/alexandria/ui/init.rb:
|
814
|
+
#: ../lib/alexandria/ui/init.rb:70
|
857
815
|
#, fuzzy
|
858
816
|
msgid "Unable to launch the help browser"
|
859
817
|
msgstr "Ni ellir lansio'r porwr gwe"
|
860
818
|
|
861
|
-
#: ../lib/alexandria/ui/init.rb:
|
819
|
+
#: ../lib/alexandria/ui/init.rb:71
|
862
820
|
msgid ""
|
863
821
|
"Could not display help for Alexandria. There was an error launching the "
|
864
822
|
"system help browser."
|
@@ -893,27 +851,27 @@ msgstr "Llyfrgell"
|
|
893
851
|
msgid "Loaned To"
|
894
852
|
msgstr "Benthyg"
|
895
853
|
|
896
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
854
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:155
|
897
855
|
msgid "A problem occurred while downloading images"
|
898
856
|
msgstr ""
|
899
857
|
|
900
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
858
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:194
|
901
859
|
msgid "Iter is invalid! %s"
|
902
860
|
msgstr ""
|
903
861
|
|
904
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
862
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:266
|
905
863
|
msgid "Unable to find matches for your search"
|
906
864
|
msgstr "Methwyd canfod canlyniadau ar gyfer eich ymchwil"
|
907
865
|
|
908
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
866
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:302
|
909
867
|
msgid "%s, by %s"
|
910
868
|
msgstr "%s, gan %s"
|
911
869
|
|
912
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
870
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:308
|
913
871
|
msgid "Copying %s into tree view."
|
914
872
|
msgstr ""
|
915
873
|
|
916
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
874
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:336
|
917
875
|
#, fuzzy
|
918
876
|
msgid ""
|
919
877
|
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
@@ -922,12 +880,12 @@ msgstr ""
|
|
922
880
|
"Methwyd dilysu yr EAN/ISBN a rhoddwyd. Sicrhewch ei fod wedi ei ysgrifennu'n "
|
923
881
|
"gywir, a ceisiwch eto."
|
924
882
|
|
925
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
883
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:464
|
926
884
|
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:119
|
927
885
|
msgid "Couldn't add the book"
|
928
886
|
msgstr "Methwyd ychwanegu'r llyfr"
|
929
887
|
|
930
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
888
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:570
|
931
889
|
msgid "'%s' already exists in '%s' (titled '%s')."
|
932
890
|
msgstr "Mae '%s' yn bodoli yn '%s' eisioes (gyda'r teitl '%s')."
|
933
891
|
|
@@ -1063,151 +1021,151 @@ msgstr "Gwall wrth fewnforio"
|
|
1063
1021
|
msgid "_Continue"
|
1064
1022
|
msgstr "_Mynd Ymlaen"
|
1065
1023
|
|
1066
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1024
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:97
|
1067
1025
|
msgid "Empty or conflictive condition"
|
1068
1026
|
msgstr ""
|
1069
1027
|
|
1070
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1028
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
|
1071
1029
|
msgid "_Save However"
|
1072
1030
|
msgstr ""
|
1073
1031
|
|
1074
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1032
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:101
|
1075
1033
|
msgid ""
|
1076
1034
|
"This smart library contains one or more conditions which are empty or "
|
1077
1035
|
"conflict with each other. This is likely to result in never matching a book. "
|
1078
1036
|
"Are you sure you want to save this library?"
|
1079
1037
|
msgstr ""
|
1080
1038
|
|
1081
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1039
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:118
|
1082
1040
|
msgid "Match"
|
1083
1041
|
msgstr ""
|
1084
1042
|
|
1085
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1043
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
|
1086
1044
|
msgid "all"
|
1087
1045
|
msgstr ""
|
1088
1046
|
|
1089
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1047
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
|
1090
1048
|
msgid "any"
|
1091
1049
|
msgstr ""
|
1092
1050
|
|
1093
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1051
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:131
|
1094
1052
|
msgid "of the following rules:"
|
1095
1053
|
msgstr ""
|
1096
1054
|
|
1097
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1055
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:139
|
1098
1056
|
msgid "Match the following rule:"
|
1099
1057
|
msgstr ""
|
1100
1058
|
|
1101
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1059
|
+
#: ../lib/alexandria/ui/ui_manager.rb:132
|
1102
1060
|
msgid "Type here the search criterion"
|
1103
1061
|
msgstr ""
|
1104
1062
|
|
1105
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1063
|
+
#: ../lib/alexandria/ui/ui_manager.rb:143
|
1106
1064
|
msgid "Match everything"
|
1107
1065
|
msgstr ""
|
1108
1066
|
|
1109
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1067
|
+
#: ../lib/alexandria/ui/ui_manager.rb:145
|
1110
1068
|
msgid "Title contains"
|
1111
1069
|
msgstr "Mae'r teitl yn cynnwys"
|
1112
1070
|
|
1113
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1071
|
+
#: ../lib/alexandria/ui/ui_manager.rb:146
|
1114
1072
|
msgid "Authors contain"
|
1115
1073
|
msgstr "Mae'r awduron yn cynnwys"
|
1116
1074
|
|
1117
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1075
|
+
#: ../lib/alexandria/ui/ui_manager.rb:147
|
1118
1076
|
msgid "ISBN contains"
|
1119
1077
|
msgstr "Mae'r ISBN yn cynnwys"
|
1120
1078
|
|
1121
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1079
|
+
#: ../lib/alexandria/ui/ui_manager.rb:148
|
1122
1080
|
msgid "Publisher contains"
|
1123
1081
|
msgstr "Mae'r cyhoeddwr yn cynnwys"
|
1124
1082
|
|
1125
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1083
|
+
#: ../lib/alexandria/ui/ui_manager.rb:149
|
1126
1084
|
msgid "Notes contain"
|
1127
1085
|
msgstr "Mae'r nodiadau yn cynnwys"
|
1128
1086
|
|
1129
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1087
|
+
#: ../lib/alexandria/ui/ui_manager.rb:150
|
1130
1088
|
#, fuzzy
|
1131
1089
|
msgid "Tags contain"
|
1132
1090
|
msgstr "Mae'r nodiadau yn cynnwys"
|
1133
1091
|
|
1134
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1092
|
+
#: ../lib/alexandria/ui/ui_manager.rb:164
|
1135
1093
|
#, fuzzy
|
1136
1094
|
msgid "Change the search type"
|
1137
1095
|
msgstr "Math chwilio annilys."
|
1138
1096
|
|
1139
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1097
|
+
#: ../lib/alexandria/ui/ui_manager.rb:169
|
1140
1098
|
msgid "View as Icons"
|
1141
1099
|
msgstr "Gweld fel Eiconau"
|
1142
1100
|
|
1143
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1101
|
+
#: ../lib/alexandria/ui/ui_manager.rb:170
|
1144
1102
|
msgid "View as List"
|
1145
1103
|
msgstr "Gweld fel Rhestr"
|
1146
1104
|
|
1147
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1105
|
+
#: ../lib/alexandria/ui/ui_manager.rb:184
|
1148
1106
|
msgid "Choose how to show books"
|
1149
1107
|
msgstr ""
|
1150
1108
|
|
1151
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1109
|
+
#: ../lib/alexandria/ui/ui_manager.rb:407
|
1152
1110
|
msgid "Library '%s' selected"
|
1153
1111
|
msgstr "Dewiswyd y llyfrgell '%s'"
|
1154
1112
|
|
1155
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1113
|
+
#: ../lib/alexandria/ui/ui_manager.rb:412
|
1156
1114
|
#, fuzzy
|
1157
1115
|
msgid "Library '%s' selected, %d unrated book"
|
1158
1116
|
msgid_plural "Library '%s' selected, %d unrated books"
|
1159
1117
|
msgstr[0] "Dewiswyd y llyfrgell '%s', %d llyfr"
|
1160
1118
|
msgstr[1] "Dewiswyd y llyfrgell '%s', %d lyfr"
|
1161
1119
|
|
1162
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1120
|
+
#: ../lib/alexandria/ui/ui_manager.rb:416
|
1163
1121
|
msgid "Library '%s' selected, %d book"
|
1164
1122
|
msgid_plural "Library '%s' selected, %d books"
|
1165
1123
|
msgstr[0] "Dewiswyd y llyfrgell '%s', %d llyfr"
|
1166
1124
|
msgstr[1] "Dewiswyd y llyfrgell '%s', %d lyfr"
|
1167
1125
|
|
1168
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1126
|
+
#: ../lib/alexandria/ui/ui_manager.rb:420
|
1169
1127
|
#, fuzzy
|
1170
1128
|
msgid "Library '%s' selected, %d book, %d unrated"
|
1171
1129
|
msgid_plural "Library '%s' selected, %d books, %d unrated"
|
1172
1130
|
msgstr[0] "Dewiswyd y llyfrgell '%s', %d llyfr"
|
1173
1131
|
msgstr[1] "Dewiswyd y llyfrgell '%s', %d lyfr"
|
1174
1132
|
|
1175
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1133
|
+
#: ../lib/alexandria/ui/ui_manager.rb:434
|
1176
1134
|
msgid "'%s' selected"
|
1177
1135
|
msgstr "Dewiswyd '%s'"
|
1178
1136
|
|
1179
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1137
|
+
#: ../lib/alexandria/ui/ui_manager.rb:436
|
1180
1138
|
msgid "%d book selected"
|
1181
1139
|
msgid_plural "%d books selected"
|
1182
1140
|
msgstr[0] "%d llyfr wedi eu dewis"
|
1183
1141
|
msgstr[1] "%d lyfr wedi eu dewis"
|
1184
1142
|
|
1185
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1143
|
+
#: ../lib/alexandria/ui/ui_manager.rb:552
|
1186
1144
|
msgid "unrecognized update event"
|
1187
1145
|
msgstr ""
|
1188
1146
|
|
1189
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1147
|
+
#: ../lib/alexandria/ui/ui_manager.rb:597
|
1190
1148
|
#, fuzzy
|
1191
1149
|
msgid "Loading libraries..."
|
1192
1150
|
msgstr "Yn '_%s'"
|
1193
1151
|
|
1194
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1152
|
+
#: ../lib/alexandria/ui/ui_manager.rb:614
|
1195
1153
|
msgid ""
|
1196
1154
|
"The data files for the following books are malformed or empty. Do you wish "
|
1197
1155
|
"to attempt to download new information for them from the online book "
|
1198
1156
|
"providers?\n"
|
1199
1157
|
msgstr ""
|
1200
1158
|
|
1201
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1159
|
+
#: ../lib/alexandria/ui/ui_manager.rb:666
|
1202
1160
|
msgid "Added '%s' to library '%s'"
|
1203
1161
|
msgstr ""
|
1204
1162
|
|
1205
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1163
|
+
#: ../lib/alexandria/ui/ui_manager.rb:815
|
1206
1164
|
#, fuzzy
|
1207
1165
|
msgid "Loading '%s'..."
|
1208
1166
|
msgstr "Yn '_%s'"
|
1209
1167
|
|
1210
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1168
|
+
#: ../lib/alexandria/ui/ui_manager.rb:1045
|
1211
1169
|
msgid "In '_%s'"
|
1212
1170
|
msgstr "Yn '_%s'"
|
1213
1171
|
|
@@ -1458,6 +1416,10 @@ msgstr "Trefnydd Casgliad Llyfrau"
|
|
1458
1416
|
msgid "Manage your book collection"
|
1459
1417
|
msgstr "Trefnu eich casgliad llyfrau"
|
1460
1418
|
|
1419
|
+
#, fuzzy
|
1420
|
+
#~ msgid "Associate Tag"
|
1421
|
+
#~ msgstr "ID Partner"
|
1422
|
+
|
1461
1423
|
#~ msgid "Unable to launch the web browser"
|
1462
1424
|
#~ msgstr "Ni ellir lansio'r porwr gwe"
|
1463
1425
|
|