alexandria-book-collection-manager 0.7.2 → 0.7.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/.hound.yml +2 -0
- data/.rubocop.yml +4 -4
- data/.rubocop_todo.yml +55 -82
- data/CHANGELOG.md +17 -0
- data/INSTALL.md +3 -3
- data/README.md +1 -2
- data/Rakefile +14 -33
- data/TODO.md +9 -1
- data/alexandria-book-collection-manager.gemspec +4 -3
- data/bin/alexandria +21 -34
- data/doc/FAQ +2 -5
- data/lib/alexandria.rb +4 -16
- data/lib/alexandria/book_providers.rb +5 -7
- data/lib/alexandria/book_providers/adlibris.rb +5 -3
- data/lib/alexandria/book_providers/amazon_aws.rb +3 -1
- data/lib/alexandria/book_providers/amazon_ecs_util.rb +8 -0
- data/lib/alexandria/book_providers/barnes_and_noble.rb +7 -4
- data/lib/alexandria/book_providers/douban.rb +1 -1
- data/lib/alexandria/book_providers/proxis.rb +11 -27
- data/lib/alexandria/book_providers/renaud.rb +9 -3
- data/lib/alexandria/book_providers/siciliano.rb +7 -4
- data/lib/alexandria/book_providers/thalia.rb +5 -3
- data/lib/alexandria/book_providers/web.rb +11 -29
- data/lib/alexandria/book_providers/worldcat.rb +7 -5
- data/lib/alexandria/book_providers/z3950.rb +10 -7
- data/lib/alexandria/console.rb +5 -18
- data/lib/alexandria/execution_queue.rb +2 -1
- data/lib/alexandria/export_format.rb +47 -0
- data/lib/alexandria/export_library.rb +72 -180
- data/lib/alexandria/import_library.rb +14 -23
- data/lib/alexandria/import_library_csv.rb +3 -6
- data/lib/alexandria/library_collection.rb +78 -0
- data/lib/alexandria/library_sort_order.rb +43 -0
- data/lib/alexandria/library_store.rb +222 -0
- data/lib/alexandria/logging.rb +2 -0
- data/lib/alexandria/models/book.rb +8 -16
- data/lib/alexandria/models/library.rb +26 -308
- data/lib/alexandria/preferences.rb +7 -24
- data/lib/alexandria/scanners/cuecat.rb +3 -1
- data/lib/alexandria/smart_library.rb +32 -67
- data/lib/alexandria/ui/builder_base.rb +6 -26
- data/lib/alexandria/ui/callbacks.rb +8 -34
- data/lib/alexandria/ui/completion_models.rb +2 -1
- data/lib/alexandria/ui/dialogs/about_dialog.rb +35 -47
- data/lib/alexandria/ui/dialogs/acquire_dialog.rb +14 -30
- data/lib/alexandria/ui/dialogs/alert_dialog.rb +8 -17
- data/lib/alexandria/ui/dialogs/bad_isbns_dialog.rb +10 -24
- data/lib/alexandria/ui/dialogs/book_properties_dialog.rb +17 -18
- data/lib/alexandria/ui/dialogs/book_properties_dialog_base.rb +25 -41
- data/lib/alexandria/ui/dialogs/export_dialog.rb +48 -56
- data/lib/alexandria/ui/dialogs/import_dialog.rb +31 -51
- data/lib/alexandria/ui/dialogs/keep_bad_isbn_dialog.rb +33 -0
- data/lib/alexandria/ui/dialogs/misc_dialogs.rb +12 -25
- data/lib/alexandria/ui/dialogs/new_book_dialog.rb +57 -94
- data/lib/alexandria/ui/dialogs/new_book_dialog_manual.rb +24 -42
- data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +9 -21
- data/lib/alexandria/ui/dialogs/preferences_dialog.rb +27 -32
- data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +5 -3
- data/lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb +15 -12
- data/lib/alexandria/ui/icons.rb +11 -22
- data/lib/alexandria/ui/init.rb +3 -3
- data/lib/alexandria/ui/libraries_combo.rb +1 -0
- data/lib/alexandria/ui/listview.rb +5 -21
- data/lib/alexandria/ui/multi_drag_treeview.rb +20 -32
- data/lib/alexandria/ui/sidepane.rb +9 -24
- data/lib/alexandria/ui/ui_manager.rb +36 -60
- data/lib/alexandria/undo_manager.rb +1 -0
- data/lib/alexandria/version.rb +2 -2
- data/lib/alexandria/web_themes.rb +1 -0
- data/po/cs.po +0 -4
- data/po/cy.po +0 -4
- data/po/de.po +0 -4
- data/po/el.po +0 -4
- data/po/es.po +0 -4
- data/po/fr.po +0 -4
- data/po/ga.po +0 -4
- data/po/gl.po +0 -4
- data/po/it.po +0 -4
- data/po/ja.po +0 -4
- data/po/mk.po +0 -4
- data/po/nb.po +0 -4
- data/po/nl.po +0 -4
- data/po/pl.po +0 -4
- data/po/pt.po +0 -4
- data/po/pt_BR.po +0 -4
- data/po/ru.po +0 -4
- data/po/sk.po +0 -4
- data/po/sv.po +0 -4
- data/po/uk.po +0 -4
- data/po/zh_TW.po +0 -4
- data/schemas/alexandria.schemas +1 -1
- data/share/alexandria/glade/acquire_dialog__builder.glade +14 -11
- data/share/alexandria/glade/book_properties_dialog__builder.glade +170 -298
- data/share/alexandria/glade/main_app__builder.glade +22 -16
- data/share/alexandria/glade/new_book_dialog__builder.glade +26 -58
- data/share/alexandria/glade/preferences_dialog__builder.glade +249 -289
- data/share/gnome/help/alexandria/C/introduction.xml +0 -4
- data/share/gnome/help/alexandria/ja/introduction.xml +0 -4
- data/spec/alexandria/book_providers_spec.rb +1 -20
- data/spec/alexandria/console_spec.rb +32 -0
- data/spec/alexandria/export_library_spec.rb +141 -0
- data/spec/alexandria/library_spec.rb +24 -80
- data/spec/alexandria/library_store_spec.rb +37 -0
- data/spec/alexandria/smart_library_spec.rb +27 -22
- data/spec/alexandria/ui/dialogs/new_book_dialog_spec.rb +22 -0
- data/spec/alexandria/ui/dialogs_spec.rb +104 -38
- data/spec/end_to_end/basic_run_spec.rb +69 -0
- data/spec/spec_helper.rb +13 -25
- data/tasks/spec.rake +15 -2
- data/util/rake/fileinstall.rb +1 -0
- metadata +38 -16
- data/lib/alexandria/book_providers/deastore.rb +0 -265
- data/lib/alexandria/book_providers/mcu.rb +0 -182
@@ -1,23 +1,8 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
# Copyright (C) 2008,2009 Cathal Mc Ginley
|
5
|
-
# Copyright (C) 2011, 2014-2016 Matijs van Zuijlen
|
3
|
+
# This file is part of Alexandria.
|
6
4
|
#
|
7
|
-
#
|
8
|
-
# modify it under the terms of the GNU General Public License as
|
9
|
-
# published by the Free Software Foundation; either version 2 of the
|
10
|
-
# License, or (at your option) any later version.
|
11
|
-
#
|
12
|
-
# Alexandria is distributed in the hope that it will be useful,
|
13
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15
|
-
# General Public License for more details.
|
16
|
-
#
|
17
|
-
# You should have received a copy of the GNU General Public
|
18
|
-
# License along with Alexandria; see the file COPYING. If not,
|
19
|
-
# write to the Free Software Foundation, Inc., 51 Franklin Street,
|
20
|
-
# Fifth Floor, Boston, MA 02110-1301 USA.
|
5
|
+
# See the file README.md for authorship and licensing information.
|
21
6
|
|
22
7
|
module Alexandria
|
23
8
|
module UI
|
@@ -28,7 +13,7 @@ module Alexandria
|
|
28
13
|
def initialize(library_listview, parent)
|
29
14
|
@library_listview = library_listview
|
30
15
|
@parent = parent
|
31
|
-
@libraries =
|
16
|
+
@libraries = LibraryCollection.instance
|
32
17
|
@main_app = @parent.main_app
|
33
18
|
setup_sidepane
|
34
19
|
end
|
@@ -51,7 +36,7 @@ module Alexandria
|
|
51
36
|
# forbidding an initial dot also disallows "." and ".."
|
52
37
|
# which are of course pre-existing directories.
|
53
38
|
match
|
54
|
-
rescue => ex
|
39
|
+
rescue StandardError => ex
|
55
40
|
log.warn { "New library name not valid UTF-8: #{ex.message}" }
|
56
41
|
true
|
57
42
|
# /([^\w\s'"()&?!:;.\-])/.match(new_text) # anglocentric!
|
@@ -67,24 +52,24 @@ module Alexandria
|
|
67
52
|
chars = match[1].gsub(/&/, '&')
|
68
53
|
ErrorDialog.new(@main_app, _("Invalid library name '%s'") % new_text,
|
69
54
|
_('The name provided contains the ' \
|
70
|
-
'disallowed character <b>%s</b> ') % chars)
|
55
|
+
'disallowed character <b>%s</b> ') % chars).display
|
71
56
|
else
|
72
57
|
ErrorDialog.new(@main_app, _('Invalid library name'),
|
73
58
|
_('The name provided contains ' \
|
74
|
-
'invalid characters.'))
|
59
|
+
'invalid characters.')).display
|
75
60
|
end
|
76
61
|
|
77
62
|
elsif new_text.strip.empty?
|
78
63
|
log.debug { 'Empty text' }
|
79
64
|
ErrorDialog.new(@main_app, _('The library name ' \
|
80
|
-
'can not be empty'))
|
65
|
+
'can not be empty')).display
|
81
66
|
elsif library_already_exists new_text
|
82
67
|
log.debug { 'Already exists' }
|
83
68
|
ErrorDialog.new(@main_app,
|
84
69
|
_('The library can not be renamed'),
|
85
70
|
_('There is already a library named ' \
|
86
71
|
"'%s'. Please choose a different " \
|
87
|
-
'name.') % new_text.strip)
|
72
|
+
'name.') % new_text.strip).display
|
88
73
|
else
|
89
74
|
log.debug { "Attempting to apply #{path_string}, #{new_text}" }
|
90
75
|
path = Gtk::TreePath.new(path_string)
|
@@ -199,7 +184,7 @@ module Alexandria
|
|
199
184
|
end
|
200
185
|
begin
|
201
186
|
drag_context.finish(success: success, delete: false)
|
202
|
-
rescue => ex
|
187
|
+
rescue StandardError => ex
|
203
188
|
log.error { "drag_context.finish failed: #{ex}" }
|
204
189
|
raise
|
205
190
|
end
|
@@ -1,25 +1,12 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
#
|
4
|
-
# Copyright (C) 2008 Joseph Method
|
5
|
-
# Copyright (C) 2011, 2016 Matijs van Zuijlen
|
3
|
+
# This file is part of Alexandria.
|
6
4
|
#
|
7
|
-
#
|
8
|
-
# modify it under the terms of the GNU General Public License as
|
9
|
-
# published by the Free Software Foundation; either version 2 of the
|
10
|
-
# License, or (at your option) any later version.
|
11
|
-
#
|
12
|
-
# Alexandria is distributed in the hope that it will be useful,
|
13
|
-
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
-
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
15
|
-
# General Public License for more details.
|
16
|
-
#
|
17
|
-
# You should have received a copy of the GNU General Public
|
18
|
-
# License along with Alexandria; see the file COPYING. If not,
|
19
|
-
# write to the Free Software Foundation, Inc., 51 Franklin Street,
|
20
|
-
# Fifth Floor, Boston, MA 02110-1301 USA.
|
5
|
+
# See the file README.md for authorship and licensing information.
|
21
6
|
|
7
|
+
require 'alexandria/ui/callbacks'
|
22
8
|
require 'alexandria/ui/columns'
|
9
|
+
require 'alexandria/library_sort_order'
|
23
10
|
|
24
11
|
module Alexandria
|
25
12
|
module UI
|
@@ -93,7 +80,6 @@ module Alexandria
|
|
93
80
|
end
|
94
81
|
|
95
82
|
def setup_callbacks
|
96
|
-
require 'alexandria/ui/callbacks'
|
97
83
|
self.class.send(:include, Callbacks)
|
98
84
|
connect_signals
|
99
85
|
end
|
@@ -350,34 +336,19 @@ module Alexandria
|
|
350
336
|
# seem to suffice).
|
351
337
|
#
|
352
338
|
# Then we wait a while and only *then* pop up the menu.
|
339
|
+
sensitize_library selected_library if library_already_selected
|
353
340
|
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
GLib::Idle.add do
|
358
|
-
menu.popup(nil, nil, event.button, event.time)
|
359
|
-
# @clicking_on_sidepane = false
|
360
|
-
false
|
361
|
-
end
|
362
|
-
else
|
363
|
-
GLib::Idle.add do
|
364
|
-
menu.popup(nil, nil, event.button, event.time)
|
365
|
-
# @clicking_on_sidepane = false
|
366
|
-
|
367
|
-
false
|
368
|
-
end
|
341
|
+
GLib::Idle.add do
|
342
|
+
menu.popup(nil, nil, event.button, event.time)
|
343
|
+
false
|
369
344
|
end
|
370
345
|
|
371
|
-
else
|
372
346
|
# not a right click
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
end
|
380
|
-
|
347
|
+
elsif (path = widget.get_path_at_pos(event.x, event.y))
|
348
|
+
@clicking_on_sidepane = true
|
349
|
+
obj, path = widget.is_a?(Gtk::TreeView) ? [widget.selection, path.first] : [widget, path]
|
350
|
+
obj.select_path(path)
|
351
|
+
sensitize_library selected_library
|
381
352
|
end
|
382
353
|
end
|
383
354
|
|
@@ -502,7 +473,7 @@ module Alexandria
|
|
502
473
|
has_no_url = true
|
503
474
|
begin
|
504
475
|
has_no_url = (b.isbn.nil? || b.isbn.strip.empty? || provider.url(b).nil?)
|
505
|
-
rescue => ex
|
476
|
+
rescue StandardError => ex
|
506
477
|
log.warn { "Error determining URL from #{provider.name}; #{ex.message}" }
|
507
478
|
end
|
508
479
|
@actiongroup[provider.action_name].sensitive = !has_no_url
|
@@ -551,8 +522,10 @@ module Alexandria
|
|
551
522
|
@filtered_model.refilter
|
552
523
|
iter = iter_from_book bk
|
553
524
|
next unless iter
|
525
|
+
|
554
526
|
path = iter.path
|
555
527
|
next unless view.model
|
528
|
+
|
556
529
|
path = view_path_to_model_path(view, path)
|
557
530
|
log.debug { "Path for #{bk.ident} is #{path}" }
|
558
531
|
selection = view.respond_to?(:selection) ? @listview.selection : @iconview
|
@@ -564,7 +537,7 @@ module Alexandria
|
|
564
537
|
select_this_book.call(book, @listview)
|
565
538
|
log.debug { 'select_a_book: listview' }
|
566
539
|
select_this_book.call(book, @iconview)
|
567
|
-
rescue => ex
|
540
|
+
rescue StandardError => ex
|
568
541
|
trace = ex.backtrace.join("\n> ")
|
569
542
|
log.warn { "Failed to automatically select book: #{ex.message} #{trace}" }
|
570
543
|
end
|
@@ -627,13 +600,13 @@ module Alexandria
|
|
627
600
|
end
|
628
601
|
|
629
602
|
def load_libraries
|
630
|
-
log.info { 'Loading
|
603
|
+
log.info { 'Loading libraries...' }
|
631
604
|
@completion_models = CompletionModels.instance
|
632
605
|
if @libraries
|
633
606
|
detach_old_libraries
|
634
607
|
@libraries.reload
|
635
608
|
else
|
636
|
-
@libraries =
|
609
|
+
@libraries = LibraryCollection.instance
|
637
610
|
@libraries.reload
|
638
611
|
handle_ruined_books unless @libraries.ruined_books.empty?
|
639
612
|
end
|
@@ -657,7 +630,7 @@ module Alexandria
|
|
657
630
|
new_message).show
|
658
631
|
recovery_dialog.signal_connect('response') do |_dialog, response_type|
|
659
632
|
recovery_dialog.destroy
|
660
|
-
if response_type ==
|
633
|
+
if response_type == Gtk::ResponseType::OK
|
661
634
|
# progress indicator...
|
662
635
|
@progressbar.fraction = 0
|
663
636
|
@appbar.children.first.visible = true # show the progress bar
|
@@ -684,7 +657,7 @@ module Alexandria
|
|
684
657
|
log.debug { "removing old file #{filename}" }
|
685
658
|
begin
|
686
659
|
File.delete(filename)
|
687
|
-
rescue => ex
|
660
|
+
rescue StandardError => ex
|
688
661
|
log.error { "Could not delete empty file #{filename}" }
|
689
662
|
end
|
690
663
|
end
|
@@ -694,7 +667,7 @@ module Alexandria
|
|
694
667
|
library << book
|
695
668
|
library.save(book)
|
696
669
|
set_status_label(format(_("Added '%s' to library '%s'"), book.title, library.name))
|
697
|
-
rescue => ex
|
670
|
+
rescue StandardError => ex
|
698
671
|
log.error { "Couldn't add book #{isbn}: #{ex}" }
|
699
672
|
log.error { ex.backtrace.join("\n") }
|
700
673
|
end
|
@@ -835,9 +808,9 @@ module Alexandria
|
|
835
808
|
log.debug { 'refresh_books' }
|
836
809
|
@library_listview.set_sensitive(false)
|
837
810
|
library = selected_library
|
838
|
-
@model.clear
|
839
811
|
@iconview.freeze
|
840
|
-
@listview.freeze
|
812
|
+
@listview.freeze
|
813
|
+
@model.clear
|
841
814
|
@progressbar.fraction = 0
|
842
815
|
@appbar.children.first.visible = true # show the progress bar
|
843
816
|
set_status_label(_("Loading '%s'...") % library.name)
|
@@ -851,7 +824,7 @@ module Alexandria
|
|
851
824
|
if book
|
852
825
|
begin
|
853
826
|
append_book(book)
|
854
|
-
rescue => ex
|
827
|
+
rescue StandardError => ex
|
855
828
|
trace = ex.backtrace.join("\n > ")
|
856
829
|
log.error { "append_books failed #{ex.message} #{trace}" }
|
857
830
|
end
|
@@ -880,7 +853,8 @@ module Alexandria
|
|
880
853
|
def selected_library
|
881
854
|
log.debug { 'selected_library' }
|
882
855
|
if (iter = @library_listview.selection.selected)
|
883
|
-
|
856
|
+
target_name = iter[1]
|
857
|
+
@libraries.all_libraries.find { |it| it.name == target_name }
|
884
858
|
else
|
885
859
|
@libraries.all_libraries.first
|
886
860
|
end
|
@@ -910,6 +884,7 @@ module Alexandria
|
|
910
884
|
ok = true
|
911
885
|
while ok
|
912
886
|
return iter if iter[Columns::IDENT] == ident
|
887
|
+
|
913
888
|
ok = iter.next!
|
914
889
|
end
|
915
890
|
nil
|
@@ -1061,6 +1036,7 @@ module Alexandria
|
|
1061
1036
|
def setup_move_actions
|
1062
1037
|
@actiongroup.actions.each do |action|
|
1063
1038
|
next unless /^MoveIn/ =~ action.name
|
1039
|
+
|
1064
1040
|
@actiongroup.remove_action(action)
|
1065
1041
|
end
|
1066
1042
|
actions = []
|
@@ -1102,16 +1078,16 @@ module Alexandria
|
|
1102
1078
|
}
|
1103
1079
|
result, sort_column, sort_order = current_view.model.sort_column_id
|
1104
1080
|
if result
|
1105
|
-
column_ids_to_attributes = { 2
|
1106
|
-
4
|
1107
|
-
5
|
1108
|
-
6
|
1109
|
-
7
|
1110
|
-
8
|
1081
|
+
column_ids_to_attributes = { 2 => :title,
|
1082
|
+
4 => :authors,
|
1083
|
+
5 => :isbn,
|
1084
|
+
6 => :publisher,
|
1085
|
+
7 => :publishing_year,
|
1086
|
+
8 => :edition, # binding
|
1111
1087
|
12 => :redd,
|
1112
1088
|
13 => :own,
|
1113
1089
|
14 => :want,
|
1114
|
-
9
|
1090
|
+
9 => :rating }
|
1115
1091
|
|
1116
1092
|
sort_attribute = column_ids_to_attributes.fetch sort_column
|
1117
1093
|
ascending = (sort_order == :ascending)
|
data/lib/alexandria/version.rb
CHANGED
data/po/cs.po
CHANGED
@@ -940,10 +940,6 @@ msgstr ""
|
|
940
940
|
msgid "Secret access key"
|
941
941
|
msgstr ""
|
942
942
|
|
943
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
944
|
-
msgid "Spanish Culture Ministry"
|
945
|
-
msgstr "Španělské ministerstvo kultury"
|
946
|
-
|
947
943
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
948
944
|
msgid "Hostname"
|
949
945
|
msgstr "Jméno počítače"
|
data/po/cy.po
CHANGED
@@ -959,10 +959,6 @@ msgstr ""
|
|
959
959
|
msgid "Secret access key"
|
960
960
|
msgstr ""
|
961
961
|
|
962
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
963
|
-
msgid "Spanish Culture Ministry"
|
964
|
-
msgstr "Gweinidogaeth Diwylliant Sbaeneg"
|
965
|
-
|
966
962
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
967
963
|
msgid "Hostname"
|
968
964
|
msgstr ""
|
data/po/de.po
CHANGED
@@ -944,10 +944,6 @@ msgstr "Zugriffs-Schlüssel-ID"
|
|
944
944
|
msgid "Secret access key"
|
945
945
|
msgstr "Privater Zugriffsschlüssel"
|
946
946
|
|
947
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
948
|
-
msgid "Spanish Culture Ministry"
|
949
|
-
msgstr "Spanisches Kulturministerium"
|
950
|
-
|
951
947
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
952
948
|
msgid "Hostname"
|
953
949
|
msgstr "Servername"
|
data/po/el.po
CHANGED
@@ -937,10 +937,6 @@ msgstr "ID του κλειδιού πρόσβασης"
|
|
937
937
|
msgid "Secret access key"
|
938
938
|
msgstr "Κρυφό κλειδί πρόσαβασης"
|
939
939
|
|
940
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
941
|
-
msgid "Spanish Culture Ministry"
|
942
|
-
msgstr "Spanish Culture Ministry"
|
943
|
-
|
944
940
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
945
941
|
msgid "Hostname"
|
946
942
|
msgstr "Όνομα Host"
|
data/po/es.po
CHANGED
@@ -934,10 +934,6 @@ msgstr "ID de la clave de acceso"
|
|
934
934
|
msgid "Secret access key"
|
935
935
|
msgstr "Clave de acceso secreta"
|
936
936
|
|
937
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
938
|
-
msgid "Spanish Culture Ministry"
|
939
|
-
msgstr "Ministerio de Cultura Español"
|
940
|
-
|
941
937
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
942
938
|
msgid "Hostname"
|
943
939
|
msgstr "Nombre del equipo"
|
data/po/fr.po
CHANGED
@@ -948,10 +948,6 @@ msgstr ""
|
|
948
948
|
msgid "Secret access key"
|
949
949
|
msgstr ""
|
950
950
|
|
951
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
952
|
-
msgid "Spanish Culture Ministry"
|
953
|
-
msgstr "Ministère de la culture espagnole"
|
954
|
-
|
955
951
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
956
952
|
msgid "Hostname"
|
957
953
|
msgstr "Nom d'hôte"
|
data/po/ga.po
CHANGED
@@ -928,10 +928,6 @@ msgstr ""
|
|
928
928
|
msgid "Secret access key"
|
929
929
|
msgstr ""
|
930
930
|
|
931
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
932
|
-
msgid "Spanish Culture Ministry"
|
933
|
-
msgstr ""
|
934
|
-
|
935
931
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
936
932
|
msgid "Hostname"
|
937
933
|
msgstr ""
|
data/po/gl.po
CHANGED
@@ -939,10 +939,6 @@ msgstr ""
|
|
939
939
|
msgid "Secret access key"
|
940
940
|
msgstr ""
|
941
941
|
|
942
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
943
|
-
msgid "Spanish Culture Ministry"
|
944
|
-
msgstr "Ministerio de Cultura de España"
|
945
|
-
|
946
942
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
947
943
|
msgid "Hostname"
|
948
944
|
msgstr "Nome de servidor"
|
data/po/it.po
CHANGED
@@ -938,10 +938,6 @@ msgstr ""
|
|
938
938
|
msgid "Secret access key"
|
939
939
|
msgstr ""
|
940
940
|
|
941
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
942
|
-
msgid "Spanish Culture Ministry"
|
943
|
-
msgstr "Ministero della Cultura spagnolo"
|
944
|
-
|
945
941
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
946
942
|
msgid "Hostname"
|
947
943
|
msgstr "Nome host"
|
data/po/ja.po
CHANGED
@@ -915,10 +915,6 @@ msgstr ""
|
|
915
915
|
msgid "Secret access key"
|
916
916
|
msgstr ""
|
917
917
|
|
918
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
919
|
-
msgid "Spanish Culture Ministry"
|
920
|
-
msgstr "スペイン文化省"
|
921
|
-
|
922
918
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
923
919
|
msgid "Hostname"
|
924
920
|
msgstr "ホスト名"
|
data/po/mk.po
CHANGED
@@ -931,10 +931,6 @@ msgstr "Пристапен клуч РБ"
|
|
931
931
|
msgid "Secret access key"
|
932
932
|
msgstr "Таен пристапен клуч"
|
933
933
|
|
934
|
-
#: ../lib/alexandria/book_providers/mcu.rb:39
|
935
|
-
msgid "Spanish Culture Ministry"
|
936
|
-
msgstr "Шпанското Министерство за Култура"
|
937
|
-
|
938
934
|
#: ../lib/alexandria/book_providers/z3950.rb:34
|
939
935
|
msgid "Hostname"
|
940
936
|
msgstr "Домаќин"
|