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.
Files changed (134) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +48 -53
  3. data/.rubocop.yml +18 -5
  4. data/.rubocop_todo.yml +31 -37
  5. data/.simplecov +2 -2
  6. data/CHANGELOG.md +37 -0
  7. data/ChangeLog.0 +19 -19
  8. data/INSTALL.md +3 -5
  9. data/README.md +0 -5
  10. data/Rakefile +14 -14
  11. data/alexandria-book-collection-manager.gemspec +35 -34
  12. data/doc/FAQ +2 -2
  13. data/lib/alexandria/about.rb +1 -1
  14. data/lib/alexandria/book_providers/bl_provider.rb +88 -0
  15. data/lib/alexandria/book_providers/loc_provider.rb +38 -0
  16. data/lib/alexandria/book_providers/sbn_provider.rb +108 -0
  17. data/lib/alexandria/book_providers/thalia_provider.rb +1 -1
  18. data/lib/alexandria/book_providers/web.rb +2 -2
  19. data/lib/alexandria/book_providers/worldcat.rb +9 -7
  20. data/lib/alexandria/book_providers/z3950_provider.rb +199 -0
  21. data/lib/alexandria/book_providers.rb +10 -25
  22. data/lib/alexandria/console.rb +2 -2
  23. data/lib/alexandria/default_preferences.rb +1 -1
  24. data/lib/alexandria/export_library.rb +14 -14
  25. data/lib/alexandria/image_fetcher.rb +25 -0
  26. data/lib/alexandria/import_library.rb +10 -10
  27. data/lib/alexandria/library_store.rb +4 -5
  28. data/lib/alexandria/models/book.rb +13 -0
  29. data/lib/alexandria/models/library.rb +15 -23
  30. data/lib/alexandria/preferences.rb +4 -6
  31. data/lib/alexandria/{book_providers/pseudomarc.rb → pseudo_marc_parser.rb} +2 -2
  32. data/lib/alexandria/scanners/cue_cat.rb +1 -1
  33. data/lib/alexandria/smart_library.rb +2 -2
  34. data/lib/alexandria/ui/about_dialog.rb +1 -1
  35. data/lib/alexandria/ui/acquire_dialog.rb +6 -9
  36. data/lib/alexandria/ui/alert_dialog.rb +2 -2
  37. data/lib/alexandria/ui/barcode_animation.rb +1 -1
  38. data/lib/alexandria/ui/book_properties_dialog_base.rb +5 -9
  39. data/lib/alexandria/ui/completion_models.rb +1 -5
  40. data/lib/alexandria/ui/conflict_while_copying_dialog.rb +1 -1
  41. data/lib/alexandria/ui/icons.rb +2 -2
  42. data/lib/alexandria/ui/init.rb +10 -4
  43. data/lib/alexandria/ui/listview.rb +1 -1
  44. data/lib/alexandria/ui/multi_drag_treeview.rb +1 -1
  45. data/lib/alexandria/ui/new_book_dialog.rb +11 -13
  46. data/lib/alexandria/ui/new_book_dialog_manual.rb +1 -1
  47. data/lib/alexandria/ui/preferences_dialog.rb +2 -2
  48. data/lib/alexandria/ui/provider_preferences_base_dialog.rb +1 -1
  49. data/lib/alexandria/ui/really_delete_dialog.rb +1 -1
  50. data/lib/alexandria/ui/ui_manager.rb +17 -25
  51. data/lib/alexandria/version.rb +1 -1
  52. data/lib/alexandria/web_themes.rb +1 -1
  53. data/lib/alexandria.rb +6 -5
  54. data/po/cs.po +90 -125
  55. data/po/cy.po +87 -125
  56. data/po/de.po +96 -125
  57. data/po/el.po +96 -125
  58. data/po/es.po +96 -125
  59. data/po/fr.po +90 -125
  60. data/po/ga.po +83 -124
  61. data/po/gl.po +90 -125
  62. data/po/it.po +90 -125
  63. data/po/ja.po +90 -125
  64. data/po/mk.po +96 -125
  65. data/po/nb.po +90 -125
  66. data/po/nl.po +107 -124
  67. data/po/pl.po +113 -124
  68. data/po/pt.po +90 -125
  69. data/po/pt_BR.po +90 -125
  70. data/po/ru.po +92 -124
  71. data/po/sk.po +90 -125
  72. data/po/sv.po +90 -125
  73. data/po/uk.po +90 -125
  74. data/po/zh_TW.po +90 -125
  75. data/schemas/alexandria.schemas +1 -1
  76. data/share/gnome/help/alexandria/C/adding-books.xml +3 -4
  77. data/share/gnome/help/alexandria/C/introduction.xml +0 -16
  78. data/share/gnome/help/alexandria/C/searching.xml +1 -4
  79. data/share/gnome/help/alexandria/C/settings.xml +0 -30
  80. data/share/gnome/help/alexandria/fr/alexandria.xml +4 -159
  81. data/share/gnome/help/alexandria/ja/adding-books.xml +1 -1
  82. data/share/gnome/help/alexandria/ja/introduction.xml +0 -15
  83. data/share/gnome/help/alexandria/ja/searching.xml +3 -7
  84. data/share/gnome/help/alexandria/ja/settings.xml +0 -27
  85. data/spec/alexandria/book_providers/bl_provider_spec.rb +13 -0
  86. data/spec/alexandria/book_providers/loc_provider_spec.rb +17 -0
  87. data/spec/alexandria/book_providers/sbn_provider_spec.rb +13 -0
  88. data/spec/alexandria/book_providers/thalia_provider_spec.rb +1 -1
  89. data/spec/alexandria/book_providers/world_cat_provider_spec.rb +22 -10
  90. data/spec/alexandria/book_providers_spec.rb +0 -81
  91. data/spec/alexandria/book_spec.rb +5 -3
  92. data/spec/alexandria/export_library_spec.rb +8 -8
  93. data/spec/alexandria/library_spec.rb +83 -51
  94. data/spec/alexandria/library_store_spec.rb +1 -1
  95. data/spec/alexandria/preferences_spec.rb +7 -7
  96. data/spec/alexandria/pseudo_marc_parser_spec.rb +71 -0
  97. data/spec/alexandria/scanners/cue_cat_spec.rb +11 -4
  98. data/spec/alexandria/smart_library_spec.rb +7 -5
  99. data/spec/alexandria/ui/about_dialog_spec.rb +1 -1
  100. data/spec/alexandria/ui/acquire_dialog_spec.rb +1 -1
  101. data/spec/alexandria/ui/alert_dialog_spec.rb +5 -3
  102. data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +1 -1
  103. data/spec/alexandria/ui/book_properties_dialog_spec.rb +4 -4
  104. data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +18 -2
  105. data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +1 -1
  106. data/spec/alexandria/ui/error_dialog_spec.rb +13 -2
  107. data/spec/alexandria/ui/export_dialog_spec.rb +3 -3
  108. data/spec/alexandria/ui/iconview_spec.rb +1 -1
  109. data/spec/alexandria/ui/import_dialog_spec.rb +3 -3
  110. data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +1 -1
  111. data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +4 -4
  112. data/spec/alexandria/ui/new_book_dialog_spec.rb +2 -2
  113. data/spec/alexandria/ui/new_provider_dialog_spec.rb +3 -3
  114. data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +9 -7
  115. data/spec/alexandria/ui/preferences_dialog_spec.rb +1 -1
  116. data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +2 -2
  117. data/spec/alexandria/ui/really_delete_dialog_spec.rb +1 -1
  118. data/spec/alexandria/ui/sidepane_manager_spec.rb +1 -1
  119. data/spec/alexandria/ui/skip_entry_dialog_spec.rb +18 -2
  120. data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +2 -2
  121. data/spec/alexandria/ui/ui_manager_spec.rb +83 -5
  122. data/spec/data/libraries/0.6.2/My Library/9780571147168.yaml +2 -0
  123. data/spec/spec_helper.rb +23 -32
  124. data/util/rake/fileinstall.rb +12 -12
  125. data/util/rake/gettextgenerate.rb +1 -1
  126. data/util/rake/omfgenerate.rb +1 -1
  127. metadata +73 -58
  128. data/lib/alexandria/book_providers/adlibris.rb +0 -191
  129. data/lib/alexandria/book_providers/amazon_aws.rb +0 -239
  130. data/lib/alexandria/book_providers/amazon_ecs_util.rb +0 -373
  131. data/lib/alexandria/book_providers/barnes_and_noble.rb +0 -209
  132. data/lib/alexandria/book_providers/proxis.rb +0 -176
  133. data/lib/alexandria/book_providers/siciliano.rb +0 -256
  134. data/lib/alexandria/book_providers/z3950.rb +0 -408
data/po/ja.po CHANGED
@@ -7,7 +7,7 @@ msgid ""
7
7
  msgstr ""
8
8
  "Project-Id-Version: alexandria 0.6.3\n"
9
9
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2020-09-13 14:52+0200\n"
10
+ "POT-Creation-Date: 2020-12-26 12:17+0100\n"
11
11
  "PO-Revision-Date: 2008-02-19 21:34-0900\n"
12
12
  "Last-Translator: CHIKAMA Masaki <masaki.chikama@gmail.com>\n"
13
13
  "Language-Team: Japanese Translators\n"
@@ -21,74 +21,32 @@ msgstr ""
21
21
  msgid "A program to help you manage your book collection."
22
22
  msgstr "本のコレクション管理お手伝いプログラム"
23
23
 
24
- #: ../lib/alexandria/book_providers.rb:91
24
+ #: ../lib/alexandria/book_providers.rb:95
25
25
  msgid "Couldn't reach the provider '%s': timeout expired."
26
26
  msgstr "'%s'に接続できませんでした: タイムアウトです。"
27
27
 
28
- #: ../lib/alexandria/book_providers.rb:95
28
+ #: ../lib/alexandria/book_providers.rb:99
29
29
  msgid "Couldn't reach the provider '%s': socket error (%s)."
30
30
  msgstr "'%s'に接続できませんでした: ソケットエラー(%s)。"
31
31
 
32
- #: ../lib/alexandria/book_providers.rb:99
33
- #: ../lib/alexandria/book_providers.rb:104
32
+ #: ../lib/alexandria/book_providers.rb:103
34
33
  msgid ""
35
34
  "No results were found. Make sure your search criterion is spelled "
36
35
  "correctly, and try again."
37
36
  msgstr "結果がみつかりませんでした。入力文字を確認して再度トライしてください。"
38
37
 
39
- #: ../lib/alexandria/book_providers.rb:109
38
+ #: ../lib/alexandria/book_providers.rb:108
40
39
  msgid "Too many results for that search."
41
40
  msgstr "検索結果が多すぎます。"
42
41
 
43
- #: ../lib/alexandria/book_providers.rb:112
42
+ #: ../lib/alexandria/book_providers.rb:111
44
43
  msgid "Invalid search type."
45
44
  msgstr "検索種別が不正です。"
46
45
 
47
- #: ../lib/alexandria/book_providers.rb:206
46
+ #: ../lib/alexandria/book_providers.rb:205
48
47
  msgid "Enabled"
49
48
  msgstr ""
50
49
 
51
- #: ../lib/alexandria/book_providers/adlibris.rb:111
52
- msgid "title not found on page"
53
- msgstr ""
54
-
55
- #: ../lib/alexandria/book_providers/amazon_aws.rb:26
56
- msgid "Locale"
57
- msgstr "ロケール"
58
-
59
- #: ../lib/alexandria/book_providers/amazon_aws.rb:27
60
- msgid "Access key ID"
61
- msgstr ""
62
-
63
- #: ../lib/alexandria/book_providers/amazon_aws.rb:28
64
- msgid "Secret access key"
65
- msgstr ""
66
-
67
- #: ../lib/alexandria/book_providers/amazon_aws.rb:29
68
- #, fuzzy
69
- msgid "Associate Tag"
70
- msgstr "アソシエイトID"
71
-
72
- #: ../lib/alexandria/book_providers/amazon_aws.rb:59
73
- msgid "Provide secret key for your Amazon AWS account."
74
- msgstr ""
75
-
76
- #: ../lib/alexandria/book_providers/amazon_aws.rb:149
77
- msgid "No products"
78
- msgstr ""
79
-
80
- #: ../lib/alexandria/book_providers/amazon_ecs_util.rb:102
81
- msgid "HTTP Response: %<code>s %<message>s"
82
- msgstr ""
83
-
84
- #: ../lib/alexandria/book_providers/amazon_ecs_util.rb:170
85
- msgid "Invalid country '%<country>s'"
86
- msgstr ""
87
-
88
- #: ../lib/alexandria/book_providers/barnes_and_noble.rb:59
89
- msgid "HTTP redirect too deep"
90
- msgstr ""
91
-
92
50
  #: ../lib/alexandria/book_providers/z3950.rb:22
93
51
  msgid "Hostname"
94
52
  msgstr "ホスト名"
@@ -125,7 +83,7 @@ msgstr "米国国会図書館"
125
83
  msgid "British Library"
126
84
  msgstr "大英図書館"
127
85
 
128
- #: ../lib/alexandria/book_providers/z3950.rb:376
86
+ #: ../lib/alexandria/book_providers/z3950.rb:374
129
87
  #, fuzzy
130
88
  msgid "Invalid ISBN"
131
89
  msgstr "ISBNが不正です '%s'"
@@ -202,11 +160,11 @@ msgstr ""
202
160
  msgid "%<file>s pub year is not okay"
203
161
  msgstr ""
204
162
 
205
- #: ../lib/alexandria/models/library.rb:40
163
+ #: ../lib/alexandria/models/library.rb:42
206
164
  msgid "Untitled"
207
165
  msgstr "タイトル未設定"
208
166
 
209
- #: ../lib/alexandria/models/library.rb:288
167
+ #: ../lib/alexandria/models/library.rb:284
210
168
  msgid "Book %<isbn>s was already deleted"
211
169
  msgstr ""
212
170
 
@@ -369,89 +327,89 @@ msgstr "が以下の期間以上のもの"
369
327
  msgid "invalid operand klass %<klass>s"
370
328
  msgstr ""
371
329
 
372
- #: ../lib/alexandria/ui/acquire_dialog.rb:202
330
+ #: ../lib/alexandria/ui/acquire_dialog.rb:206
373
331
  msgid "There was %d duplicate"
374
332
  msgid_plural "There were %d duplicates"
375
333
  msgstr[0] ""
376
334
 
377
- #: ../lib/alexandria/ui/acquire_dialog.rb:205
335
+ #: ../lib/alexandria/ui/acquire_dialog.rb:209
378
336
  #, fuzzy
379
337
  msgid "Couldn't add this book"
380
338
  msgid_plural "Couldn't add these books"
381
339
  msgstr[0] "本を追加できません"
382
340
 
383
- #: ../lib/alexandria/ui/acquire_dialog.rb:284
384
- #: ../lib/alexandria/ui/new_book_dialog.rb:500
341
+ #: ../lib/alexandria/ui/acquire_dialog.rb:288
342
+ #: ../lib/alexandria/ui/new_book_dialog.rb:498
385
343
  msgid "Searching Provider '%s'..."
386
344
  msgstr ""
387
345
 
388
- #: ../lib/alexandria/ui/acquire_dialog.rb:285
389
- #: ../lib/alexandria/ui/new_book_dialog.rb:501
346
+ #: ../lib/alexandria/ui/acquire_dialog.rb:289
347
+ #: ../lib/alexandria/ui/new_book_dialog.rb:499
390
348
  msgid "Error while Searching Provider '%s'"
391
349
  msgstr ""
392
350
 
393
- #: ../lib/alexandria/ui/acquire_dialog.rb:286
394
- #: ../lib/alexandria/ui/new_book_dialog.rb:502
351
+ #: ../lib/alexandria/ui/acquire_dialog.rb:290
352
+ #: ../lib/alexandria/ui/new_book_dialog.rb:500
395
353
  msgid "Not Found at Provider '%s'"
396
354
  msgstr ""
397
355
 
398
- #: ../lib/alexandria/ui/acquire_dialog.rb:287
399
- #: ../lib/alexandria/ui/new_book_dialog.rb:503
356
+ #: ../lib/alexandria/ui/acquire_dialog.rb:291
357
+ #: ../lib/alexandria/ui/new_book_dialog.rb:501
400
358
  msgid "Found at Provider '%s'"
401
359
  msgstr ""
402
360
 
403
- #: ../lib/alexandria/ui/acquire_dialog.rb:406
361
+ #: ../lib/alexandria/ui/acquire_dialog.rb:403
404
362
  msgid "Ready to use %s barcode scanner"
405
363
  msgstr ""
406
364
 
407
- #: ../lib/alexandria/ui/acquire_dialog.rb:430
365
+ #: ../lib/alexandria/ui/acquire_dialog.rb:427
408
366
  msgid "Click below to scan _barcodes"
409
367
  msgstr "バーコードをスキャンするには以下をクリックしてください(_b)"
410
368
 
411
- #: ../lib/alexandria/ui/book_properties_dialog.rb:112
412
- #: ../lib/alexandria/ui/book_properties_dialog.rb:122
369
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:111
370
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:121
413
371
  msgid "Couldn't modify the book"
414
372
  msgstr "本を修正できません"
415
373
 
416
- #: ../lib/alexandria/ui/book_properties_dialog.rb:113
374
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:112
417
375
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:74
418
376
  msgid ""
419
377
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
420
378
  "correcty, and try again."
421
379
  msgstr "指定したEAN/ISBNプロバイダを有効にできません。再度確認してください。"
422
380
 
423
- #: ../lib/alexandria/ui/book_properties_dialog.rb:123
381
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:122
424
382
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:79
425
383
  msgid "The EAN/ISBN you provided is already used in this library."
426
384
  msgstr "そのEAN/ISBNはすでにこのライブラリで使用されています。"
427
385
 
428
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:206
386
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:104
429
387
  msgid "Properties"
430
388
  msgstr "プロパティ"
431
389
 
432
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:208
390
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:106
433
391
  #: ../lib/alexandria/ui/smart_library_properties_dialog.rb:21
434
392
  msgid "Properties for '%s'"
435
393
  msgstr "'%s'の設定"
436
394
 
437
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:214
395
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:112
438
396
  msgid "Author"
439
397
  msgstr "作者"
440
398
 
441
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:263
399
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:160
442
400
  msgid "Select a cover image"
443
401
  msgstr "表紙画像の選択"
444
402
 
445
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:267
403
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:163
446
404
  msgid "No Cover"
447
405
  msgstr "表紙なし"
448
406
 
449
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:346
407
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:242
450
408
  msgid "%d day"
451
409
  msgid_plural "%d days"
452
410
  msgstr[0] "%d 日"
453
411
 
454
- #: ../lib/alexandria/ui/book_properties_dialog_base.rb:372
412
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:268
455
413
  msgid "out of range"
456
414
  msgstr ""
457
415
 
@@ -763,37 +721,37 @@ msgstr "スキップ(_S)"
763
721
  msgid "If you replace the existing book, its contents will be overwritten."
764
722
  msgstr "存在する本を置換する場合、その内容は上書きされます。"
765
723
 
766
- #: ../lib/alexandria/ui/export_dialog.rb:22
724
+ #: ../lib/alexandria/ui/export_dialog.rb:24
767
725
  msgid "Export '%s'"
768
726
  msgstr "エクスポート '%s'"
769
727
 
770
- #: ../lib/alexandria/ui/export_dialog.rb:27
728
+ #: ../lib/alexandria/ui/export_dialog.rb:29
771
729
  msgid "_Export"
772
730
  msgstr "エクスポート(_E)"
773
731
 
774
- #: ../lib/alexandria/ui/export_dialog.rb:48
732
+ #: ../lib/alexandria/ui/export_dialog.rb:50
775
733
  msgid "_Theme:"
776
734
  msgstr "テーマ(_T):"
777
735
 
778
- #: ../lib/alexandria/ui/export_dialog.rb:60
736
+ #: ../lib/alexandria/ui/export_dialog.rb:62
779
737
  msgid "directory"
780
738
  msgstr "ディレクトリ"
781
739
 
782
- #: ../lib/alexandria/ui/export_dialog.rb:72
740
+ #: ../lib/alexandria/ui/export_dialog.rb:74
783
741
  msgid "Export for_mat:"
784
742
  msgstr "エクスポートフォーマット(_m):"
785
743
 
786
- #: ../lib/alexandria/ui/export_dialog.rb:99
744
+ #: ../lib/alexandria/ui/export_dialog.rb:101
787
745
  msgid "Export failed"
788
746
  msgstr "エクスポートに失敗しました"
789
747
 
790
- #: ../lib/alexandria/ui/export_dialog.rb:122
748
+ #: ../lib/alexandria/ui/export_dialog.rb:125
791
749
  msgid ""
792
750
  "The target, named '%s', is a regular file. A directory is needed for this "
793
751
  "operation. Please select a directory and try again."
794
752
  msgstr "'%s'はファイルです。ディレクトリを選択して再度実行してください。"
795
753
 
796
- #: ../lib/alexandria/ui/export_dialog.rb:126
754
+ #: ../lib/alexandria/ui/export_dialog.rb:129
797
755
  msgid "Not a directory"
798
756
  msgstr "ディレクトリではありません"
799
757
 
@@ -815,11 +773,11 @@ msgid ""
815
773
  "file."
816
774
  msgstr "ファイルフォーマットが不正です。他のファイルでリトライしてください。"
817
775
 
818
- #: ../lib/alexandria/ui/init.rb:69
776
+ #: ../lib/alexandria/ui/init.rb:70
819
777
  msgid "Unable to launch the help browser"
820
778
  msgstr "ヘルプブラウザを起動できません"
821
779
 
822
- #: ../lib/alexandria/ui/init.rb:70
780
+ #: ../lib/alexandria/ui/init.rb:71
823
781
  msgid ""
824
782
  "Could not display help for Alexandria. There was an error launching the "
825
783
  "system help browser."
@@ -854,38 +812,38 @@ msgstr "新規ライブラリ"
854
812
  msgid "Loaned To"
855
813
  msgstr "貸し出し中"
856
814
 
857
- #: ../lib/alexandria/ui/new_book_dialog.rb:153
815
+ #: ../lib/alexandria/ui/new_book_dialog.rb:155
858
816
  msgid "A problem occurred while downloading images"
859
817
  msgstr "イメージのダウンロード中に問題が発生しました"
860
818
 
861
- #: ../lib/alexandria/ui/new_book_dialog.rb:193
819
+ #: ../lib/alexandria/ui/new_book_dialog.rb:194
862
820
  msgid "Iter is invalid! %s"
863
821
  msgstr ""
864
822
 
865
- #: ../lib/alexandria/ui/new_book_dialog.rb:267
823
+ #: ../lib/alexandria/ui/new_book_dialog.rb:266
866
824
  msgid "Unable to find matches for your search"
867
825
  msgstr "検索結果がありませんでした。"
868
826
 
869
- #: ../lib/alexandria/ui/new_book_dialog.rb:303
827
+ #: ../lib/alexandria/ui/new_book_dialog.rb:302
870
828
  msgid "%s, by %s"
871
829
  msgstr "%s, %s 著"
872
830
 
873
- #: ../lib/alexandria/ui/new_book_dialog.rb:309
831
+ #: ../lib/alexandria/ui/new_book_dialog.rb:308
874
832
  msgid "Copying %s into tree view."
875
833
  msgstr ""
876
834
 
877
- #: ../lib/alexandria/ui/new_book_dialog.rb:337
835
+ #: ../lib/alexandria/ui/new_book_dialog.rb:336
878
836
  msgid ""
879
837
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
880
838
  "correctly, and try again."
881
839
  msgstr "指定したEAN/ISBNプロバイダを有効にできません。再度確認してください。"
882
840
 
883
- #: ../lib/alexandria/ui/new_book_dialog.rb:466
841
+ #: ../lib/alexandria/ui/new_book_dialog.rb:464
884
842
  #: ../lib/alexandria/ui/new_book_dialog_manual.rb:119
885
843
  msgid "Couldn't add the book"
886
844
  msgstr "本を追加できません"
887
845
 
888
- #: ../lib/alexandria/ui/new_book_dialog.rb:572
846
+ #: ../lib/alexandria/ui/new_book_dialog.rb:570
889
847
  msgid "'%s' already exists in '%s' (titled '%s')."
890
848
  msgstr "'%s'はすでに'%s' (タイトル: '%s')に存在します。"
891
849
 
@@ -1008,15 +966,15 @@ msgstr "インポート中にエラーが発生しました"
1008
966
  msgid "_Continue"
1009
967
  msgstr "続ける(_C)"
1010
968
 
1011
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:96
969
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:97
1012
970
  msgid "Empty or conflictive condition"
1013
971
  msgstr "条件が空か、あるいは矛盾する条件が指定されています"
1014
972
 
1015
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:99
973
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
1016
974
  msgid "_Save However"
1017
975
  msgstr "強制的に保存(_S)"
1018
976
 
1019
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
977
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:101
1020
978
  msgid ""
1021
979
  "This smart library contains one or more conditions which are empty or "
1022
980
  "conflict with each other. This is likely to result in never matching a book. "
@@ -1026,114 +984,114 @@ msgstr ""
1026
984
  "か、もしくはお互いに矛盾する条件が設定されています。従ってこの条件を満たす本"
1027
985
  "はおそらく見つかりません。それでもこの高機能ライブラリを保存しますか?"
1028
986
 
1029
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:117
987
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:118
1030
988
  msgid "Match"
1031
989
  msgstr "以下の"
1032
990
 
1033
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
991
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
1034
992
  msgid "all"
1035
993
  msgstr "すべて"
1036
994
 
1037
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
995
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
1038
996
  msgid "any"
1039
997
  msgstr "いずれか"
1040
998
 
1041
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:130
999
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:131
1042
1000
  msgid "of the following rules:"
1043
1001
  msgstr "の条件にあう本:"
1044
1002
 
1045
- #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:138
1003
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:139
1046
1004
  msgid "Match the following rule:"
1047
1005
  msgstr "以下の条件にあう本:"
1048
1006
 
1049
- #: ../lib/alexandria/ui/ui_manager.rb:130
1007
+ #: ../lib/alexandria/ui/ui_manager.rb:132
1050
1008
  msgid "Type here the search criterion"
1051
1009
  msgstr "検索する内容をここに入力してください"
1052
1010
 
1053
- #: ../lib/alexandria/ui/ui_manager.rb:141
1011
+ #: ../lib/alexandria/ui/ui_manager.rb:143
1054
1012
  msgid "Match everything"
1055
1013
  msgstr "全検索"
1056
1014
 
1057
- #: ../lib/alexandria/ui/ui_manager.rb:143
1015
+ #: ../lib/alexandria/ui/ui_manager.rb:145
1058
1016
  msgid "Title contains"
1059
1017
  msgstr "タイトル検索"
1060
1018
 
1061
- #: ../lib/alexandria/ui/ui_manager.rb:144
1019
+ #: ../lib/alexandria/ui/ui_manager.rb:146
1062
1020
  msgid "Authors contain"
1063
1021
  msgstr "作者検索"
1064
1022
 
1065
- #: ../lib/alexandria/ui/ui_manager.rb:145
1023
+ #: ../lib/alexandria/ui/ui_manager.rb:147
1066
1024
  msgid "ISBN contains"
1067
1025
  msgstr "ISBN検索"
1068
1026
 
1069
- #: ../lib/alexandria/ui/ui_manager.rb:146
1027
+ #: ../lib/alexandria/ui/ui_manager.rb:148
1070
1028
  msgid "Publisher contains"
1071
1029
  msgstr "出版社検索"
1072
1030
 
1073
- #: ../lib/alexandria/ui/ui_manager.rb:147
1031
+ #: ../lib/alexandria/ui/ui_manager.rb:149
1074
1032
  msgid "Notes contain"
1075
1033
  msgstr "ノート検索"
1076
1034
 
1077
- #: ../lib/alexandria/ui/ui_manager.rb:148
1035
+ #: ../lib/alexandria/ui/ui_manager.rb:150
1078
1036
  msgid "Tags contain"
1079
1037
  msgstr "タグ検索"
1080
1038
 
1081
- #: ../lib/alexandria/ui/ui_manager.rb:162
1039
+ #: ../lib/alexandria/ui/ui_manager.rb:164
1082
1040
  msgid "Change the search type"
1083
1041
  msgstr "検索タイプを変更します"
1084
1042
 
1085
- #: ../lib/alexandria/ui/ui_manager.rb:167
1043
+ #: ../lib/alexandria/ui/ui_manager.rb:169
1086
1044
  msgid "View as Icons"
1087
1045
  msgstr "アイコン表示"
1088
1046
 
1089
- #: ../lib/alexandria/ui/ui_manager.rb:168
1047
+ #: ../lib/alexandria/ui/ui_manager.rb:170
1090
1048
  msgid "View as List"
1091
1049
  msgstr "リスト表示"
1092
1050
 
1093
- #: ../lib/alexandria/ui/ui_manager.rb:181
1051
+ #: ../lib/alexandria/ui/ui_manager.rb:184
1094
1052
  msgid "Choose how to show books"
1095
1053
  msgstr "本を表示する方法を選択してください"
1096
1054
 
1097
- #: ../lib/alexandria/ui/ui_manager.rb:400
1055
+ #: ../lib/alexandria/ui/ui_manager.rb:407
1098
1056
  msgid "Library '%s' selected"
1099
1057
  msgstr "ライブラリ'%s'が選択されています。"
1100
1058
 
1101
- #: ../lib/alexandria/ui/ui_manager.rb:405
1059
+ #: ../lib/alexandria/ui/ui_manager.rb:412
1102
1060
  msgid "Library '%s' selected, %d unrated book"
1103
1061
  msgid_plural "Library '%s' selected, %d unrated books"
1104
1062
  msgstr[0] "ライブラリ'%s'が選択されています。評価なしの本が%d冊あります。"
1105
1063
 
1106
- #: ../lib/alexandria/ui/ui_manager.rb:409
1064
+ #: ../lib/alexandria/ui/ui_manager.rb:416
1107
1065
  msgid "Library '%s' selected, %d book"
1108
1066
  msgid_plural "Library '%s' selected, %d books"
1109
1067
  msgstr[0] "ライブラリ'%s'が選択されています。%d冊の本があります。"
1110
1068
 
1111
- #: ../lib/alexandria/ui/ui_manager.rb:413
1069
+ #: ../lib/alexandria/ui/ui_manager.rb:420
1112
1070
  msgid "Library '%s' selected, %d book, %d unrated"
1113
1071
  msgid_plural "Library '%s' selected, %d books, %d unrated"
1114
1072
  msgstr[0] ""
1115
1073
  "ライブラリ'%s'が選択されています。%d冊の本があり、そのうち%d冊に評価がありま"
1116
1074
  "せん。"
1117
1075
 
1118
- #: ../lib/alexandria/ui/ui_manager.rb:427
1076
+ #: ../lib/alexandria/ui/ui_manager.rb:434
1119
1077
  msgid "'%s' selected"
1120
1078
  msgstr "'%s'が選択されています"
1121
1079
 
1122
- #: ../lib/alexandria/ui/ui_manager.rb:429
1080
+ #: ../lib/alexandria/ui/ui_manager.rb:436
1123
1081
  msgid "%d book selected"
1124
1082
  msgid_plural "%d books selected"
1125
1083
  msgstr[0] "%d冊の本が選択されています"
1126
1084
 
1127
- #: ../lib/alexandria/ui/ui_manager.rb:545
1085
+ #: ../lib/alexandria/ui/ui_manager.rb:552
1128
1086
  msgid "unrecognized update event"
1129
1087
  msgstr ""
1130
1088
 
1131
- #: ../lib/alexandria/ui/ui_manager.rb:590
1089
+ #: ../lib/alexandria/ui/ui_manager.rb:597
1132
1090
  #, fuzzy
1133
1091
  msgid "Loading libraries..."
1134
1092
  msgstr "'%s'を読み込んでいます..."
1135
1093
 
1136
- #: ../lib/alexandria/ui/ui_manager.rb:607
1094
+ #: ../lib/alexandria/ui/ui_manager.rb:614
1137
1095
  msgid ""
1138
1096
  "The data files for the following books are malformed or empty. Do you wish "
1139
1097
  "to attempt to download new information for them from the online book "
@@ -1142,15 +1100,15 @@ msgstr ""
1142
1100
  "以下の本のデータファイルは壊れているかもしくは空っぽです。新しいデータをオン"
1143
1101
  "ラインプロバイダーからダウンロードしますか?\n"
1144
1102
 
1145
- #: ../lib/alexandria/ui/ui_manager.rb:659
1103
+ #: ../lib/alexandria/ui/ui_manager.rb:666
1146
1104
  msgid "Added '%s' to library '%s'"
1147
1105
  msgstr "ライブラリ'%2$s'に'%1$s'を追加しました"
1148
1106
 
1149
- #: ../lib/alexandria/ui/ui_manager.rb:808
1107
+ #: ../lib/alexandria/ui/ui_manager.rb:815
1150
1108
  msgid "Loading '%s'..."
1151
1109
  msgstr "'%s'を読み込んでいます..."
1152
1110
 
1153
- #: ../lib/alexandria/ui/ui_manager.rb:1038
1111
+ #: ../lib/alexandria/ui/ui_manager.rb:1045
1154
1112
  msgid "In '_%s'"
1155
1113
  msgstr "'_%s'へ"
1156
1114
 
@@ -1399,6 +1357,13 @@ msgstr "ブック・コレクション・マネージャ"
1399
1357
  msgid "Manage your book collection"
1400
1358
  msgstr "ブック・コレクション管理お手伝いプログラム"
1401
1359
 
1360
+ #~ msgid "Locale"
1361
+ #~ msgstr "ロケール"
1362
+
1363
+ #, fuzzy
1364
+ #~ msgid "Associate Tag"
1365
+ #~ msgstr "アソシエイトID"
1366
+
1402
1367
  #~ msgid "Unable to launch the web browser"
1403
1368
  #~ msgstr "Webブラウザを起動できませんでした"
1404
1369