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/el.po
CHANGED
@@ -6,7 +6,7 @@ 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: 2020-
|
9
|
+
"POT-Creation-Date: 2020-12-26 12:17+0100\n"
|
10
10
|
"PO-Revision-Date: 2009-12-20 12:06+0200\n"
|
11
11
|
"Last-Translator: Michael Kotsarinis <mk73628@hotmail.com>\n"
|
12
12
|
"Language-Team: Greek\n"
|
@@ -22,16 +22,15 @@ msgid "A program to help you manage your book collection."
|
|
22
22
|
msgstr ""
|
23
23
|
"Ένα πρόγραμμα για να σας βοηθήσει να οργανώσετε τη συλλογή βιβλίων σας."
|
24
24
|
|
25
|
-
#: ../lib/alexandria/book_providers.rb:
|
25
|
+
#: ../lib/alexandria/book_providers.rb:95
|
26
26
|
msgid "Couldn't reach the provider '%s': timeout expired."
|
27
27
|
msgstr "Δεν προσεγγίσθηκε ο πάροχος '%s': έληξε ο χρόνος."
|
28
28
|
|
29
|
-
#: ../lib/alexandria/book_providers.rb:
|
29
|
+
#: ../lib/alexandria/book_providers.rb:99
|
30
30
|
msgid "Couldn't reach the provider '%s': socket error (%s)."
|
31
31
|
msgstr "Δεν προσεγγίσθηκε ο πάροχος '%s': σφάλμα υποδοχής (socket) (%s)."
|
32
32
|
|
33
|
-
#: ../lib/alexandria/book_providers.rb:
|
34
|
-
#: ../lib/alexandria/book_providers.rb:104
|
33
|
+
#: ../lib/alexandria/book_providers.rb:103
|
35
34
|
msgid ""
|
36
35
|
"No results were found. Make sure your search criterion is spelled "
|
37
36
|
"correctly, and try again."
|
@@ -39,59 +38,18 @@ msgstr ""
|
|
39
38
|
"Δεν βρέθηκαν αποτελέσματα. Βεβαιωθείτε ότι το κριτήριο αναζήτησης έχει σωστή "
|
40
39
|
"ορθογραφία και δοκιμάστε ξανά."
|
41
40
|
|
42
|
-
#: ../lib/alexandria/book_providers.rb:
|
41
|
+
#: ../lib/alexandria/book_providers.rb:108
|
43
42
|
msgid "Too many results for that search."
|
44
43
|
msgstr "Πάρα πολλά αποτελέσματα για αυτή την αναζήτηση."
|
45
44
|
|
46
|
-
#: ../lib/alexandria/book_providers.rb:
|
45
|
+
#: ../lib/alexandria/book_providers.rb:111
|
47
46
|
msgid "Invalid search type."
|
48
47
|
msgstr "Μη έγκυρος τύπος αναζήτησης."
|
49
48
|
|
50
|
-
#: ../lib/alexandria/book_providers.rb:
|
49
|
+
#: ../lib/alexandria/book_providers.rb:205
|
51
50
|
msgid "Enabled"
|
52
51
|
msgstr "Ενεργό"
|
53
52
|
|
54
|
-
#: ../lib/alexandria/book_providers/adlibris.rb:111
|
55
|
-
msgid "title not found on page"
|
56
|
-
msgstr ""
|
57
|
-
|
58
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:26
|
59
|
-
msgid "Locale"
|
60
|
-
msgstr "Τοποθεσία"
|
61
|
-
|
62
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:27
|
63
|
-
msgid "Access key ID"
|
64
|
-
msgstr "ID του κλειδιού πρόσβασης"
|
65
|
-
|
66
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:28
|
67
|
-
msgid "Secret access key"
|
68
|
-
msgstr "Κρυφό κλειδί πρόσαβασης"
|
69
|
-
|
70
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:29
|
71
|
-
#, fuzzy
|
72
|
-
msgid "Associate Tag"
|
73
|
-
msgstr "ID Συνεργάτη"
|
74
|
-
|
75
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:59
|
76
|
-
msgid "Provide secret key for your Amazon AWS account."
|
77
|
-
msgstr ""
|
78
|
-
|
79
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:149
|
80
|
-
msgid "No products"
|
81
|
-
msgstr ""
|
82
|
-
|
83
|
-
#: ../lib/alexandria/book_providers/amazon_ecs_util.rb:102
|
84
|
-
msgid "HTTP Response: %<code>s %<message>s"
|
85
|
-
msgstr ""
|
86
|
-
|
87
|
-
#: ../lib/alexandria/book_providers/amazon_ecs_util.rb:170
|
88
|
-
msgid "Invalid country '%<country>s'"
|
89
|
-
msgstr ""
|
90
|
-
|
91
|
-
#: ../lib/alexandria/book_providers/barnes_and_noble.rb:59
|
92
|
-
msgid "HTTP redirect too deep"
|
93
|
-
msgstr ""
|
94
|
-
|
95
53
|
#: ../lib/alexandria/book_providers/z3950.rb:22
|
96
54
|
msgid "Hostname"
|
97
55
|
msgstr "Όνομα Host"
|
@@ -128,7 +86,7 @@ msgstr "Library of Congress (ΗΠΑ)"
|
|
128
86
|
msgid "British Library"
|
129
87
|
msgstr "British Library"
|
130
88
|
|
131
|
-
#: ../lib/alexandria/book_providers/z3950.rb:
|
89
|
+
#: ../lib/alexandria/book_providers/z3950.rb:374
|
132
90
|
#, fuzzy
|
133
91
|
msgid "Invalid ISBN"
|
134
92
|
msgstr "Μη έγκυρο ISBN '%s'"
|
@@ -205,11 +163,11 @@ msgstr ""
|
|
205
163
|
msgid "%<file>s pub year is not okay"
|
206
164
|
msgstr ""
|
207
165
|
|
208
|
-
#: ../lib/alexandria/models/library.rb:
|
166
|
+
#: ../lib/alexandria/models/library.rb:42
|
209
167
|
msgid "Untitled"
|
210
168
|
msgstr "Χωρίς τίτλο"
|
211
169
|
|
212
|
-
#: ../lib/alexandria/models/library.rb:
|
170
|
+
#: ../lib/alexandria/models/library.rb:284
|
213
171
|
msgid "Book %<isbn>s was already deleted"
|
214
172
|
msgstr ""
|
215
173
|
|
@@ -372,52 +330,52 @@ msgstr "δεν είναι στα τελευταία"
|
|
372
330
|
msgid "invalid operand klass %<klass>s"
|
373
331
|
msgstr ""
|
374
332
|
|
375
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
333
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:206
|
376
334
|
msgid "There was %d duplicate"
|
377
335
|
msgid_plural "There were %d duplicates"
|
378
336
|
msgstr[0] "Υπήρχε %d αντίγραφο"
|
379
337
|
msgstr[1] "Υπήρχαν %d αντίγραφα"
|
380
338
|
|
381
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
339
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:209
|
382
340
|
msgid "Couldn't add this book"
|
383
341
|
msgid_plural "Couldn't add these books"
|
384
342
|
msgstr[0] "Δεν ήταν δυνατή η προσθήκη του βιβλίου."
|
385
343
|
msgstr[1] "Δεν ήταν δυνατή η προσθήκη των βιβλίων."
|
386
344
|
|
387
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
388
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
345
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:288
|
346
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:498
|
389
347
|
msgid "Searching Provider '%s'..."
|
390
348
|
msgstr "Αναζήτηση παρόχου '%s'..."
|
391
349
|
|
392
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
393
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
350
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:289
|
351
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:499
|
394
352
|
msgid "Error while Searching Provider '%s'"
|
395
353
|
msgstr "Σφάλμα κατά την αναζήτηση του παρόχου '%s'"
|
396
354
|
|
397
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
398
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
355
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:290
|
356
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:500
|
399
357
|
msgid "Not Found at Provider '%s'"
|
400
358
|
msgstr "Δεν βρέθηκε στον πάροχο '%s'"
|
401
359
|
|
402
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
403
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
360
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:291
|
361
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:501
|
404
362
|
msgid "Found at Provider '%s'"
|
405
363
|
msgstr "Βρέθηκε στον πάροχο '%s'"
|
406
364
|
|
407
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
365
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:403
|
408
366
|
msgid "Ready to use %s barcode scanner"
|
409
367
|
msgstr "Έτοιμο για χρήση του %s σαρωτή γραμμωτού κώδικα"
|
410
368
|
|
411
|
-
#: ../lib/alexandria/ui/acquire_dialog.rb:
|
369
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:427
|
412
370
|
msgid "Click below to scan _barcodes"
|
413
371
|
msgstr "Κάντε κλικ παρακάτω για να σαρώσετε _γραμμωτό κώδικα"
|
414
372
|
|
415
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
416
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
373
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:111
|
374
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:121
|
417
375
|
msgid "Couldn't modify the book"
|
418
376
|
msgstr "Δεν ήταν δυνατή η τροποποίηση του βιβλίου"
|
419
377
|
|
420
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
378
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:112
|
421
379
|
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:74
|
422
380
|
msgid ""
|
423
381
|
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
@@ -426,39 +384,39 @@ msgstr ""
|
|
426
384
|
"Δεν ήταν δυνατή η επικύρωση του EAN/ISBN που δώσατε. Επαληθεύστε ότι είναι "
|
427
385
|
"γραμμένο σωστά και προσπαθήστε ξανά."
|
428
386
|
|
429
|
-
#: ../lib/alexandria/ui/book_properties_dialog.rb:
|
387
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:122
|
430
388
|
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:79
|
431
389
|
msgid "The EAN/ISBN you provided is already used in this library."
|
432
390
|
msgstr "Το EAN/ISBN που δώσατε χρησιμοποείται ήδη σε αυτή τη βιβλιοθήκη."
|
433
391
|
|
434
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
392
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:104
|
435
393
|
msgid "Properties"
|
436
394
|
msgstr "Ιδιότητες"
|
437
395
|
|
438
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
396
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:106
|
439
397
|
#: ../lib/alexandria/ui/smart_library_properties_dialog.rb:21
|
440
398
|
msgid "Properties for '%s'"
|
441
399
|
msgstr "Ιδιότητες του '%s'"
|
442
400
|
|
443
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
401
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:112
|
444
402
|
msgid "Author"
|
445
403
|
msgstr "Συγγραφέας"
|
446
404
|
|
447
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
405
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:160
|
448
406
|
msgid "Select a cover image"
|
449
407
|
msgstr "Επιλέξτε εικόνα εξώφυλλου"
|
450
408
|
|
451
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
409
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:163
|
452
410
|
msgid "No Cover"
|
453
411
|
msgstr "Χωρίς εξώφυλλο"
|
454
412
|
|
455
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
413
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:242
|
456
414
|
msgid "%d day"
|
457
415
|
msgid_plural "%d days"
|
458
416
|
msgstr[0] "%d ημέρα"
|
459
417
|
msgstr[1] "%d ημέρες"
|
460
418
|
|
461
|
-
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:
|
419
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:268
|
462
420
|
msgid "out of range"
|
463
421
|
msgstr ""
|
464
422
|
|
@@ -773,31 +731,31 @@ msgid "If you replace the existing book, its contents will be overwritten."
|
|
773
731
|
msgstr ""
|
774
732
|
"Αν αντικαταστήσετε το υπάρχον βιβλίο, τα περιεχόμενά του θα διαγραφούν."
|
775
733
|
|
776
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
734
|
+
#: ../lib/alexandria/ui/export_dialog.rb:24
|
777
735
|
msgid "Export '%s'"
|
778
736
|
msgstr "Εξαγωγή '%s'"
|
779
737
|
|
780
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
738
|
+
#: ../lib/alexandria/ui/export_dialog.rb:29
|
781
739
|
msgid "_Export"
|
782
740
|
msgstr "_Εξαγωγή"
|
783
741
|
|
784
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
742
|
+
#: ../lib/alexandria/ui/export_dialog.rb:50
|
785
743
|
msgid "_Theme:"
|
786
744
|
msgstr "_Θέμα:"
|
787
745
|
|
788
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
746
|
+
#: ../lib/alexandria/ui/export_dialog.rb:62
|
789
747
|
msgid "directory"
|
790
748
|
msgstr "κατάλογος"
|
791
749
|
|
792
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
750
|
+
#: ../lib/alexandria/ui/export_dialog.rb:74
|
793
751
|
msgid "Export for_mat:"
|
794
752
|
msgstr "_Μορφή εξαγωγής:"
|
795
753
|
|
796
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
754
|
+
#: ../lib/alexandria/ui/export_dialog.rb:101
|
797
755
|
msgid "Export failed"
|
798
756
|
msgstr "Αποτυχία εξαγωγής"
|
799
757
|
|
800
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
758
|
+
#: ../lib/alexandria/ui/export_dialog.rb:125
|
801
759
|
msgid ""
|
802
760
|
"The target, named '%s', is a regular file. A directory is needed for this "
|
803
761
|
"operation. Please select a directory and try again."
|
@@ -805,7 +763,7 @@ msgstr ""
|
|
805
763
|
"Ο στόχος με το όνομα '%s' είναι κανονικό αρχείο. Χρειάζεται ένας κατάλογος "
|
806
764
|
"για αυτή την ενέργεια. Παρακαλώ επιλέξτε ένα κατάλογο και δοκιμάστε ξανά."
|
807
765
|
|
808
|
-
#: ../lib/alexandria/ui/export_dialog.rb:
|
766
|
+
#: ../lib/alexandria/ui/export_dialog.rb:129
|
809
767
|
msgid "Not a directory"
|
810
768
|
msgstr "Δεν είναι κατάλογος"
|
811
769
|
|
@@ -828,11 +786,11 @@ msgid ""
|
|
828
786
|
msgstr ""
|
829
787
|
"Η μορφή του αρχείου είναι άγνωστη. Παρακαλώ προσπαθήστε ξανά με άλλο αρχείο."
|
830
788
|
|
831
|
-
#: ../lib/alexandria/ui/init.rb:
|
789
|
+
#: ../lib/alexandria/ui/init.rb:70
|
832
790
|
msgid "Unable to launch the help browser"
|
833
791
|
msgstr "Δεν ήταν δυνατή η εκκίνηση της Βοήθειας"
|
834
792
|
|
835
|
-
#: ../lib/alexandria/ui/init.rb:
|
793
|
+
#: ../lib/alexandria/ui/init.rb:71
|
836
794
|
msgid ""
|
837
795
|
"Could not display help for Alexandria. There was an error launching the "
|
838
796
|
"system help browser."
|
@@ -868,27 +826,27 @@ msgstr "Νέα Βιβλιοθήκη"
|
|
868
826
|
msgid "Loaned To"
|
869
827
|
msgstr "Δανεισμένο"
|
870
828
|
|
871
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
829
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:155
|
872
830
|
msgid "A problem occurred while downloading images"
|
873
831
|
msgstr "Υπήρξε ένα πρόβλημα κατά τη λήψη των εικόνων."
|
874
832
|
|
875
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
833
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:194
|
876
834
|
msgid "Iter is invalid! %s"
|
877
835
|
msgstr ""
|
878
836
|
|
879
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
837
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:266
|
880
838
|
msgid "Unable to find matches for your search"
|
881
839
|
msgstr "Δεν ήταν δυνατό να βρεθούν αντιστοιχίσεις για την αναζήτησή σας."
|
882
840
|
|
883
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
841
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:302
|
884
842
|
msgid "%s, by %s"
|
885
843
|
msgstr "%s, κατά %s"
|
886
844
|
|
887
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
845
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:308
|
888
846
|
msgid "Copying %s into tree view."
|
889
847
|
msgstr ""
|
890
848
|
|
891
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
849
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:336
|
892
850
|
msgid ""
|
893
851
|
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
894
852
|
"correctly, and try again."
|
@@ -896,12 +854,12 @@ msgstr ""
|
|
896
854
|
"Δεν ήταν δυνατή η επικύρωση του EAN/ISBN που δώσατε. Ελέγξτε ότι είναι "
|
897
855
|
"γραμμένο σωστά και προσπαθήστε ξανά."
|
898
856
|
|
899
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
857
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:464
|
900
858
|
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:119
|
901
859
|
msgid "Couldn't add the book"
|
902
860
|
msgstr "Δεν ήταν δυνατή η προσθήκη του βιβλίου."
|
903
861
|
|
904
|
-
#: ../lib/alexandria/ui/new_book_dialog.rb:
|
862
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:570
|
905
863
|
msgid "'%s' already exists in '%s' (titled '%s')."
|
906
864
|
msgstr "Το '%s' υπάρχει ήδη στη '%s' (με τίτλο '%s')."
|
907
865
|
|
@@ -1027,15 +985,15 @@ msgstr "Σφάλμα κατά την εισαγωγή"
|
|
1027
985
|
msgid "_Continue"
|
1028
986
|
msgstr "_Συνέχεια"
|
1029
987
|
|
1030
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
988
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:97
|
1031
989
|
msgid "Empty or conflictive condition"
|
1032
990
|
msgstr "Κενή συνθήκη ή διένεξη"
|
1033
991
|
|
1034
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
992
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
|
1035
993
|
msgid "_Save However"
|
1036
994
|
msgstr "_Αποθήκευση οπωσδήποτε"
|
1037
995
|
|
1038
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
996
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:101
|
1039
997
|
msgid ""
|
1040
998
|
"This smart library contains one or more conditions which are empty or "
|
1041
999
|
"conflict with each other. This is likely to result in never matching a book. "
|
@@ -1046,116 +1004,116 @@ msgstr ""
|
|
1046
1004
|
"αποτέλεσμα να μη βρεθεί ποτέ βιβλιό που να τις ικανοποιεί. Είστε σίγουροι "
|
1047
1005
|
"ότι θέλετε να αποθηκεύσετε αυτή τη βιβλιοθήκη;"
|
1048
1006
|
|
1049
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1007
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:118
|
1050
1008
|
msgid "Match"
|
1051
1009
|
msgstr "Ταίριασμα"
|
1052
1010
|
|
1053
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1011
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
|
1054
1012
|
msgid "all"
|
1055
1013
|
msgstr "όλων"
|
1056
1014
|
|
1057
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1015
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:121
|
1058
1016
|
msgid "any"
|
1059
1017
|
msgstr "οποιωνδήποτε"
|
1060
1018
|
|
1061
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1019
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:131
|
1062
1020
|
msgid "of the following rules:"
|
1063
1021
|
msgstr "από τους ακόλουθους κανόνες:"
|
1064
1022
|
|
1065
|
-
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:
|
1023
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:139
|
1066
1024
|
msgid "Match the following rule:"
|
1067
1025
|
msgstr "Ταίριασμα του ακόλουθου κανόνα:"
|
1068
1026
|
|
1069
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1027
|
+
#: ../lib/alexandria/ui/ui_manager.rb:132
|
1070
1028
|
msgid "Type here the search criterion"
|
1071
1029
|
msgstr "Πληκτρολογήστε εδώ το κριτήριο αναζήτησης"
|
1072
1030
|
|
1073
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1031
|
+
#: ../lib/alexandria/ui/ui_manager.rb:143
|
1074
1032
|
msgid "Match everything"
|
1075
1033
|
msgstr "Ταίριασμα όλων"
|
1076
1034
|
|
1077
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1035
|
+
#: ../lib/alexandria/ui/ui_manager.rb:145
|
1078
1036
|
msgid "Title contains"
|
1079
1037
|
msgstr "Τίτλος περιέχει"
|
1080
1038
|
|
1081
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1039
|
+
#: ../lib/alexandria/ui/ui_manager.rb:146
|
1082
1040
|
msgid "Authors contain"
|
1083
1041
|
msgstr "Συγγραφείς περιέχουν"
|
1084
1042
|
|
1085
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1043
|
+
#: ../lib/alexandria/ui/ui_manager.rb:147
|
1086
1044
|
msgid "ISBN contains"
|
1087
1045
|
msgstr "ISBN περιέχει"
|
1088
1046
|
|
1089
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1047
|
+
#: ../lib/alexandria/ui/ui_manager.rb:148
|
1090
1048
|
msgid "Publisher contains"
|
1091
1049
|
msgstr "Εκδότης περιέχει"
|
1092
1050
|
|
1093
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1051
|
+
#: ../lib/alexandria/ui/ui_manager.rb:149
|
1094
1052
|
msgid "Notes contain"
|
1095
1053
|
msgstr "Σημειώσεις περιέχουν"
|
1096
1054
|
|
1097
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1055
|
+
#: ../lib/alexandria/ui/ui_manager.rb:150
|
1098
1056
|
msgid "Tags contain"
|
1099
1057
|
msgstr "Ετικέτες περιέχουν"
|
1100
1058
|
|
1101
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1059
|
+
#: ../lib/alexandria/ui/ui_manager.rb:164
|
1102
1060
|
msgid "Change the search type"
|
1103
1061
|
msgstr "Αλλαγή του τύπου αναζήτησης"
|
1104
1062
|
|
1105
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1063
|
+
#: ../lib/alexandria/ui/ui_manager.rb:169
|
1106
1064
|
msgid "View as Icons"
|
1107
1065
|
msgstr "Προβολή ως Εικονίδια"
|
1108
1066
|
|
1109
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1067
|
+
#: ../lib/alexandria/ui/ui_manager.rb:170
|
1110
1068
|
msgid "View as List"
|
1111
1069
|
msgstr "Προβολή ως Λίστα"
|
1112
1070
|
|
1113
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1071
|
+
#: ../lib/alexandria/ui/ui_manager.rb:184
|
1114
1072
|
msgid "Choose how to show books"
|
1115
1073
|
msgstr "Επιλέξτε πως θα εμφανισθούν τα βιβλία"
|
1116
1074
|
|
1117
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1075
|
+
#: ../lib/alexandria/ui/ui_manager.rb:407
|
1118
1076
|
msgid "Library '%s' selected"
|
1119
1077
|
msgstr "Επιλεγμένη βιβλιοθήκη '%s'"
|
1120
1078
|
|
1121
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1079
|
+
#: ../lib/alexandria/ui/ui_manager.rb:412
|
1122
1080
|
msgid "Library '%s' selected, %d unrated book"
|
1123
1081
|
msgid_plural "Library '%s' selected, %d unrated books"
|
1124
1082
|
msgstr[0] "Επιλεγμένη βιβλιοθήκη '%s', %d μη βαθμολογημένο βιβλίο"
|
1125
1083
|
msgstr[1] "Επιλεγμένη βιβλιοθήκη '%s', %d μη βαθμολογημένα βιβλία"
|
1126
1084
|
|
1127
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1085
|
+
#: ../lib/alexandria/ui/ui_manager.rb:416
|
1128
1086
|
msgid "Library '%s' selected, %d book"
|
1129
1087
|
msgid_plural "Library '%s' selected, %d books"
|
1130
1088
|
msgstr[0] "Επιλεγμένη βιβλιοθήκη '%s', %d βιβλίο"
|
1131
1089
|
msgstr[1] "Επιλεγμένη βιβλιοθήκη '%s', %d βιβλία"
|
1132
1090
|
|
1133
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1091
|
+
#: ../lib/alexandria/ui/ui_manager.rb:420
|
1134
1092
|
msgid "Library '%s' selected, %d book, %d unrated"
|
1135
1093
|
msgid_plural "Library '%s' selected, %d books, %d unrated"
|
1136
1094
|
msgstr[0] "Επιλεγμένη βιβλιοθήκη '%s', %d βιβλίο, %d μη βαθμολογημένο"
|
1137
1095
|
msgstr[1] "Επιλεγμένη βιβλιοθήκη '%s', %d βιβλία, %d μη βαθμολογημένα"
|
1138
1096
|
|
1139
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1097
|
+
#: ../lib/alexandria/ui/ui_manager.rb:434
|
1140
1098
|
msgid "'%s' selected"
|
1141
1099
|
msgstr "'%s' επιλέχθηκε"
|
1142
1100
|
|
1143
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1101
|
+
#: ../lib/alexandria/ui/ui_manager.rb:436
|
1144
1102
|
msgid "%d book selected"
|
1145
1103
|
msgid_plural "%d books selected"
|
1146
1104
|
msgstr[0] "%d βιβλίο επιλεγμένο"
|
1147
1105
|
msgstr[1] "%d βιβλία επιλεγμένα"
|
1148
1106
|
|
1149
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1107
|
+
#: ../lib/alexandria/ui/ui_manager.rb:552
|
1150
1108
|
msgid "unrecognized update event"
|
1151
1109
|
msgstr ""
|
1152
1110
|
|
1153
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1111
|
+
#: ../lib/alexandria/ui/ui_manager.rb:597
|
1154
1112
|
#, fuzzy
|
1155
1113
|
msgid "Loading libraries..."
|
1156
1114
|
msgstr "Φόρτωση '%s'..."
|
1157
1115
|
|
1158
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1116
|
+
#: ../lib/alexandria/ui/ui_manager.rb:614
|
1159
1117
|
msgid ""
|
1160
1118
|
"The data files for the following books are malformed or empty. Do you wish "
|
1161
1119
|
"to attempt to download new information for them from the online book "
|
@@ -1165,15 +1123,15 @@ msgstr ""
|
|
1165
1123
|
"προσπαθήσετε να λάβετε καινούριες πληροφορίες για αυτά από τους "
|
1166
1124
|
"διαδικτυακούς παροχείς βιβλίων;\n"
|
1167
1125
|
|
1168
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1126
|
+
#: ../lib/alexandria/ui/ui_manager.rb:666
|
1169
1127
|
msgid "Added '%s' to library '%s'"
|
1170
1128
|
msgstr "Το '%s' προστέθηκε στη βιβλιοθήκη '%s'"
|
1171
1129
|
|
1172
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1130
|
+
#: ../lib/alexandria/ui/ui_manager.rb:815
|
1173
1131
|
msgid "Loading '%s'..."
|
1174
1132
|
msgstr "Φόρτωση '%s'..."
|
1175
1133
|
|
1176
|
-
#: ../lib/alexandria/ui/ui_manager.rb:
|
1134
|
+
#: ../lib/alexandria/ui/ui_manager.rb:1045
|
1177
1135
|
msgid "In '_%s'"
|
1178
1136
|
msgstr "Σε '_%s'"
|
1179
1137
|
|
@@ -1422,6 +1380,19 @@ msgstr "Διαχειριστής Συλλογής Βιβλίων"
|
|
1422
1380
|
msgid "Manage your book collection"
|
1423
1381
|
msgstr "Διαχειριστείτε τη συλλογή βιβλίων σας"
|
1424
1382
|
|
1383
|
+
#~ msgid "Locale"
|
1384
|
+
#~ msgstr "Τοποθεσία"
|
1385
|
+
|
1386
|
+
#~ msgid "Access key ID"
|
1387
|
+
#~ msgstr "ID του κλειδιού πρόσβασης"
|
1388
|
+
|
1389
|
+
#~ msgid "Secret access key"
|
1390
|
+
#~ msgstr "Κρυφό κλειδί πρόσαβασης"
|
1391
|
+
|
1392
|
+
#, fuzzy
|
1393
|
+
#~ msgid "Associate Tag"
|
1394
|
+
#~ msgstr "ID Συνεργάτη"
|
1395
|
+
|
1425
1396
|
#~ msgid "Unable to launch the web browser"
|
1426
1397
|
#~ msgstr "Δεν ήταν δυνατή η εκκίνηση του περιηγητή ιστοσελίδων"
|
1427
1398
|
|