alexandria-book-collection-manager 0.7.2 → 0.7.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +9 -0
- data/.github/workflows/ruby.yml +77 -0
- data/.gitignore +5 -1
- data/.hound.yml +2 -0
- data/.rubocop.yml +87 -37
- data/.rubocop_todo.yml +62 -191
- data/.simplecov +5 -2
- data/CHANGELOG.md +63 -0
- data/Gemfile +4 -3
- data/INSTALL.md +26 -14
- data/README.md +52 -42
- data/Rakefile +93 -109
- data/TODO.md +9 -1
- data/alexandria-book-collection-manager.gemspec +50 -43
- data/bin/alexandria +30 -53
- data/doc/FAQ +2 -6
- data/doc/dependency_decisions.yml +27 -8
- data/lib/alexandria.rb +27 -37
- data/lib/alexandria/about.rb +50 -50
- data/lib/alexandria/book_providers.rb +90 -97
- data/lib/alexandria/book_providers/adlibris.rb +41 -76
- data/lib/alexandria/book_providers/amazon_aws.rb +96 -100
- data/lib/alexandria/book_providers/amazon_ecs_util.rb +295 -322
- data/lib/alexandria/book_providers/barnes_and_noble.rb +48 -45
- data/lib/alexandria/book_providers/douban.rb +26 -42
- data/lib/alexandria/book_providers/proxis.rb +44 -55
- data/lib/alexandria/book_providers/pseudomarc.rb +77 -85
- data/lib/alexandria/book_providers/siciliano.rb +64 -65
- data/lib/alexandria/book_providers/thalia.rb +42 -41
- data/lib/alexandria/book_providers/web.rb +15 -33
- data/lib/alexandria/book_providers/worldcat.rb +70 -97
- data/lib/alexandria/book_providers/z3950.rb +160 -173
- data/lib/alexandria/config.rb +1 -1
- data/lib/alexandria/console.rb +8 -21
- data/lib/alexandria/default_preferences.rb +37 -0
- data/lib/alexandria/execution_queue.rb +15 -13
- data/lib/alexandria/export_format.rb +47 -0
- data/lib/alexandria/export_library.rb +193 -300
- data/lib/alexandria/import_library.rb +108 -141
- data/lib/alexandria/import_library_csv.rb +43 -46
- data/lib/alexandria/library_collection.rb +79 -0
- data/lib/alexandria/library_sort_order.rb +45 -0
- data/lib/alexandria/library_store.rb +233 -0
- data/lib/alexandria/logging.rb +11 -13
- data/lib/alexandria/models/book.rb +13 -20
- data/lib/alexandria/models/library.rb +81 -353
- data/lib/alexandria/net.rb +5 -6
- data/lib/alexandria/preferences.rb +73 -87
- data/lib/alexandria/scanners.rb +2 -2
- data/lib/alexandria/scanners/{cuecat.rb → cue_cat.rb} +20 -18
- data/lib/alexandria/scanners/keyboard.rb +8 -8
- data/lib/alexandria/smart_library.rb +133 -170
- data/lib/alexandria/ui.rb +15 -15
- data/lib/alexandria/ui/about_dialog.rb +49 -0
- data/lib/alexandria/ui/{dialogs/acquire_dialog.rb → acquire_dialog.rb} +119 -136
- data/lib/alexandria/ui/alert_dialog.rb +64 -0
- data/lib/alexandria/ui/bad_isbns_dialog.rb +41 -0
- data/lib/alexandria/ui/{dialogs/barcode_animation.rb → barcode_animation.rb} +16 -15
- data/lib/alexandria/ui/{dialogs/book_properties_dialog.rb → book_properties_dialog.rb} +39 -52
- data/lib/alexandria/ui/book_properties_dialog_base.rb +318 -0
- data/lib/alexandria/ui/builder_base.rb +7 -27
- data/lib/alexandria/ui/calendar_popup.rb +58 -0
- data/lib/alexandria/ui/callbacks.rb +189 -183
- data/lib/alexandria/ui/completion_models.rb +10 -23
- data/lib/alexandria/ui/confirm_erase_dialog.rb +33 -0
- data/lib/alexandria/ui/conflict_while_copying_dialog.rb +34 -0
- data/lib/alexandria/ui/dndable.rb +7 -7
- data/lib/alexandria/ui/error_dialog.rb +25 -0
- data/lib/alexandria/ui/export_dialog.rb +142 -0
- data/lib/alexandria/ui/icons.rb +47 -63
- data/lib/alexandria/ui/iconview.rb +12 -10
- data/lib/alexandria/ui/iconview_tooltips.rb +41 -54
- data/lib/alexandria/ui/import_dialog.rb +157 -0
- data/lib/alexandria/ui/init.rb +21 -33
- data/lib/alexandria/ui/keep_bad_isbn_dialog.rb +36 -0
- data/lib/alexandria/ui/libraries_combo.rb +16 -14
- data/lib/alexandria/ui/listview.rb +73 -87
- data/lib/alexandria/ui/main_app.rb +24 -26
- data/lib/alexandria/ui/misc_dialogs.rb +10 -0
- data/lib/alexandria/ui/multi_drag_treeview.rb +28 -41
- data/lib/alexandria/ui/{dialogs/new_book_dialog.rb → new_book_dialog.rb} +156 -194
- data/lib/alexandria/ui/new_book_dialog_manual.rb +139 -0
- data/lib/alexandria/ui/new_provider_dialog.rb +100 -0
- data/lib/alexandria/ui/new_smart_library_dialog.rb +74 -0
- data/lib/alexandria/ui/preferences_dialog.rb +313 -0
- data/lib/alexandria/ui/provider_preferences_base_dialog.rb +95 -0
- data/lib/alexandria/ui/provider_preferences_dialog.rb +35 -0
- data/lib/alexandria/ui/really_delete_dialog.rb +53 -0
- data/lib/alexandria/ui/{sidepane.rb → sidepane_manager.rb} +56 -68
- data/lib/alexandria/ui/skip_entry_dialog.rb +33 -0
- data/lib/alexandria/ui/smart_library_properties_dialog.rb +60 -0
- data/lib/alexandria/ui/smart_library_properties_dialog_base.rb +242 -0
- data/lib/alexandria/ui/smart_library_rule_box.rb +119 -0
- data/lib/alexandria/ui/sound.rb +11 -13
- data/lib/alexandria/ui/ui_manager.rb +236 -251
- data/lib/alexandria/undo_manager.rb +1 -0
- data/lib/alexandria/version.rb +4 -19
- data/lib/alexandria/web_themes.rb +22 -21
- data/po/Makefile +2 -2
- data/po/cs.po +993 -880
- data/po/cy.po +957 -874
- data/po/de.po +990 -869
- data/po/el.po +989 -869
- data/po/es.po +985 -865
- data/po/fr.po +986 -870
- data/po/ga.po +907 -823
- data/po/gl.po +981 -865
- data/po/it.po +986 -868
- data/po/ja.po +969 -853
- data/po/mk.po +983 -863
- data/po/nb.po +979 -863
- data/po/nl.po +983 -864
- data/po/pl.po +1017 -974
- data/po/pt.po +988 -861
- data/po/pt_BR.po +984 -868
- data/po/ru.po +992 -873
- data/po/sk.po +987 -869
- data/po/sv.po +977 -861
- data/po/uk.po +975 -865
- data/po/zh_TW.po +976 -860
- data/schemas/alexandria.schemas +25 -3
- data/share/alexandria/glade/acquire_dialog__builder.glade +15 -12
- data/share/alexandria/glade/book_properties_dialog__builder.glade +171 -299
- data/share/alexandria/glade/main_app__builder.glade +24 -33
- data/share/alexandria/glade/new_book_dialog__builder.glade +27 -59
- data/share/alexandria/glade/preferences_dialog__builder.glade +250 -290
- data/share/gnome/help/alexandria/C/introduction.xml +0 -8
- data/share/gnome/help/alexandria/C/searching.xml +1 -1
- data/share/gnome/help/alexandria/C/smart-libraries.xml +2 -2
- data/share/gnome/help/alexandria/C/working-with-libraries.xml +1 -1
- data/share/gnome/help/alexandria/fr/alexandria.xml +1 -1
- data/share/gnome/help/alexandria/ja/introduction.xml +0 -8
- data/share/gnome/help/alexandria/ja/smart-libraries.xml +1 -1
- data/spec/alexandria/book_providers/world_cat_provider_spec.rb +160 -0
- data/spec/alexandria/book_providers_spec.rb +75 -171
- data/spec/alexandria/book_spec.rb +12 -10
- data/spec/alexandria/console_spec.rb +27 -0
- data/spec/alexandria/export_library_spec.rb +130 -0
- data/spec/alexandria/library_spec.rb +128 -172
- data/spec/alexandria/library_store_spec.rb +37 -0
- data/spec/alexandria/preferences_spec.rb +44 -17
- data/spec/alexandria/scanners/cue_cat_spec.rb +52 -0
- data/spec/alexandria/smart_library_spec.rb +30 -25
- data/spec/alexandria/ui/about_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/acquire_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/alert_dialog_spec.rb +16 -0
- data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/book_properties_dialog_spec.rb +17 -0
- data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +16 -0
- data/spec/alexandria/ui/error_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/export_dialog_spec.rb +36 -0
- data/spec/alexandria/ui/icons_spec.rb +26 -0
- data/spec/alexandria/ui/iconview_spec.rb +7 -21
- data/spec/alexandria/ui/import_dialog_spec.rb +46 -0
- data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +17 -0
- data/spec/alexandria/ui/main_app_spec.rb +7 -34
- data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +15 -0
- data/spec/alexandria/ui/new_book_dialog_spec.rb +22 -0
- data/spec/alexandria/ui/new_provider_dialog_spec.rb +30 -0
- data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +39 -0
- data/spec/alexandria/ui/preferences_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +34 -0
- data/spec/alexandria/ui/really_delete_dialog_spec.rb +16 -0
- data/spec/alexandria/ui/sidepane_manager_spec.rb +15 -0
- data/spec/alexandria/ui/skip_entry_dialog_spec.rb +14 -0
- data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +49 -0
- data/spec/alexandria/ui/sound_spec.rb +2 -2
- data/spec/alexandria/ui/ui_manager_spec.rb +43 -20
- data/spec/end_to_end/basic_run_spec.rb +52 -0
- data/spec/spec_helper.rb +65 -33
- data/tasks/setup.rb +2 -2
- data/tasks/spec.rake +16 -3
- data/util/rake/fileinstall.rb +39 -35
- data/util/rake/gettextgenerate.rb +7 -7
- data/util/rake/omfgenerate.rb +7 -7
- metadata +178 -45
- data/dogtail/basic_run_test.py +0 -9
- data/lib/alexandria/book_providers/deastore.rb +0 -265
- data/lib/alexandria/book_providers/mcu.rb +0 -182
- data/lib/alexandria/book_providers/renaud.rb +0 -149
- data/lib/alexandria/ui/dialogs/about_dialog.rb +0 -61
- data/lib/alexandria/ui/dialogs/alert_dialog.rb +0 -72
- data/lib/alexandria/ui/dialogs/bad_isbns_dialog.rb +0 -51
- data/lib/alexandria/ui/dialogs/book_properties_dialog_base.rb +0 -426
- data/lib/alexandria/ui/dialogs/export_dialog.rb +0 -171
- data/lib/alexandria/ui/dialogs/import_dialog.rb +0 -196
- data/lib/alexandria/ui/dialogs/misc_dialogs.rb +0 -87
- data/lib/alexandria/ui/dialogs/new_book_dialog_manual.rb +0 -154
- data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +0 -74
- data/lib/alexandria/ui/dialogs/preferences_dialog.rb +0 -568
- data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +0 -59
- data/lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb +0 -420
- data/spec/alexandria/scanners/cuecat_spec.rb +0 -67
- data/spec/alexandria/ui/dialogs_spec.rb +0 -96
- data/spec/alexandria/ui/sidepane_spec.rb +0 -29
- data/spec/alexandria/ui/ui_utilities_spec.rb +0 -62
- data/spec/alexandria/utilities_spec.rb +0 -52
- data/tasks/dogtail.rake +0 -6
data/po/fr.po
CHANGED
@@ -8,10 +8,11 @@ msgid ""
|
|
8
8
|
msgstr ""
|
9
9
|
"Project-Id-Version: alexandria 0.6.3\n"
|
10
10
|
"Report-Msgid-Bugs-To: \n"
|
11
|
-
"POT-Creation-Date:
|
11
|
+
"POT-Creation-Date: 2020-09-13 14:52+0200\n"
|
12
12
|
"PO-Revision-Date: 2008-07-31 00:16+0100\n"
|
13
13
|
"Last-Translator: Ligia Moreira <ligia.moreira@netvisao.pt >\n"
|
14
14
|
"Language-Team: Lígia Moreira <ligia.moreira@netvisao.pt>\n"
|
15
|
+
"Language: \n"
|
15
16
|
"MIME-Version: 1.0\n"
|
16
17
|
"Content-Type: text/plain; charset=UTF-8\n"
|
17
18
|
"Content-Transfer-Encoding: 8bit\n"
|
@@ -19,705 +20,744 @@ msgstr ""
|
|
19
20
|
"X-Poedit-Language: French\n"
|
20
21
|
"X-Poedit-Country: PORTUGAL\n"
|
21
22
|
|
22
|
-
#: ../lib/alexandria/
|
23
|
+
#: ../lib/alexandria/about.rb:27
|
24
|
+
msgid "A program to help you manage your book collection."
|
25
|
+
msgstr "Un programme pour vous aider à gérer votre collection de livres."
|
26
|
+
|
27
|
+
#: ../lib/alexandria/book_providers.rb:91
|
28
|
+
msgid "Couldn't reach the provider '%s': timeout expired."
|
29
|
+
msgstr "Impossible de joindre le fournisseur '%s': durée maximale dépassée."
|
30
|
+
|
31
|
+
#: ../lib/alexandria/book_providers.rb:95
|
32
|
+
msgid "Couldn't reach the provider '%s': socket error (%s)."
|
33
|
+
msgstr "Impossible de joindre le fournisseur '%s': erreur socket (%s)."
|
34
|
+
|
35
|
+
#: ../lib/alexandria/book_providers.rb:99
|
36
|
+
#: ../lib/alexandria/book_providers.rb:104
|
37
|
+
msgid ""
|
38
|
+
"No results were found. Make sure your search criterion is spelled "
|
39
|
+
"correctly, and try again."
|
40
|
+
msgstr ""
|
41
|
+
"Aucun résultat trouvé. Vérifiez l'orthographe des critères de la recherche, "
|
42
|
+
"et ré-essayez encore."
|
43
|
+
|
44
|
+
#: ../lib/alexandria/book_providers.rb:109
|
45
|
+
msgid "Too many results for that search."
|
46
|
+
msgstr "Trop de résultats pour cette recherche."
|
47
|
+
|
48
|
+
#: ../lib/alexandria/book_providers.rb:112
|
49
|
+
msgid "Invalid search type."
|
50
|
+
msgstr "Type de recherche invalide."
|
51
|
+
|
52
|
+
#: ../lib/alexandria/book_providers.rb:206
|
53
|
+
msgid "Enabled"
|
54
|
+
msgstr ""
|
55
|
+
|
56
|
+
#: ../lib/alexandria/book_providers/adlibris.rb:111
|
57
|
+
msgid "title not found on page"
|
58
|
+
msgstr ""
|
59
|
+
|
60
|
+
#: ../lib/alexandria/book_providers/amazon_aws.rb:26
|
61
|
+
msgid "Locale"
|
62
|
+
msgstr "Langue"
|
63
|
+
|
64
|
+
#: ../lib/alexandria/book_providers/amazon_aws.rb:27
|
65
|
+
msgid "Access key ID"
|
66
|
+
msgstr ""
|
67
|
+
|
68
|
+
#: ../lib/alexandria/book_providers/amazon_aws.rb:28
|
69
|
+
msgid "Secret access key"
|
70
|
+
msgstr ""
|
71
|
+
|
72
|
+
#: ../lib/alexandria/book_providers/amazon_aws.rb:29
|
73
|
+
#, fuzzy
|
74
|
+
msgid "Associate Tag"
|
75
|
+
msgstr "Identifiant d'associé"
|
76
|
+
|
77
|
+
#: ../lib/alexandria/book_providers/amazon_aws.rb:59
|
78
|
+
msgid "Provide secret key for your Amazon AWS account."
|
79
|
+
msgstr ""
|
80
|
+
|
81
|
+
#: ../lib/alexandria/book_providers/amazon_aws.rb:149
|
82
|
+
msgid "No products"
|
83
|
+
msgstr ""
|
84
|
+
|
85
|
+
#: ../lib/alexandria/book_providers/amazon_ecs_util.rb:102
|
86
|
+
msgid "HTTP Response: %<code>s %<message>s"
|
87
|
+
msgstr ""
|
88
|
+
|
89
|
+
#: ../lib/alexandria/book_providers/amazon_ecs_util.rb:170
|
90
|
+
msgid "Invalid country '%<country>s'"
|
91
|
+
msgstr ""
|
92
|
+
|
93
|
+
#: ../lib/alexandria/book_providers/barnes_and_noble.rb:59
|
94
|
+
msgid "HTTP redirect too deep"
|
95
|
+
msgstr ""
|
96
|
+
|
97
|
+
#: ../lib/alexandria/book_providers/z3950.rb:22
|
98
|
+
msgid "Hostname"
|
99
|
+
msgstr "Nom d'hôte"
|
100
|
+
|
101
|
+
#: ../lib/alexandria/book_providers/z3950.rb:23
|
102
|
+
msgid "Port"
|
103
|
+
msgstr "Port"
|
104
|
+
|
105
|
+
#: ../lib/alexandria/book_providers/z3950.rb:24
|
106
|
+
msgid "Database"
|
107
|
+
msgstr "Base de données"
|
108
|
+
|
109
|
+
#: ../lib/alexandria/book_providers/z3950.rb:25
|
110
|
+
msgid "Record syntax"
|
111
|
+
msgstr "Format"
|
112
|
+
|
113
|
+
#: ../lib/alexandria/book_providers/z3950.rb:27
|
114
|
+
msgid "Username"
|
115
|
+
msgstr "Utilisateur"
|
116
|
+
|
117
|
+
#: ../lib/alexandria/book_providers/z3950.rb:28
|
118
|
+
msgid "Password"
|
119
|
+
msgstr "Mot de passe"
|
120
|
+
|
121
|
+
#: ../lib/alexandria/book_providers/z3950.rb:29
|
122
|
+
msgid "Charset encoding"
|
123
|
+
msgstr "Charset encodant"
|
124
|
+
|
125
|
+
#: ../lib/alexandria/book_providers/z3950.rb:213
|
126
|
+
msgid "Library of Congress (Usa)"
|
127
|
+
msgstr "Bibliothèque du Congrès (États-Unis)"
|
128
|
+
|
129
|
+
#: ../lib/alexandria/book_providers/z3950.rb:249
|
130
|
+
msgid "British Library"
|
131
|
+
msgstr "Bibliothèque britannique"
|
132
|
+
|
133
|
+
#: ../lib/alexandria/book_providers/z3950.rb:376
|
134
|
+
#, fuzzy
|
135
|
+
msgid "Invalid ISBN"
|
136
|
+
msgstr "ISBN '%s' invalide"
|
137
|
+
|
138
|
+
#: ../lib/alexandria/export_format.rb:18
|
139
|
+
msgid "Archived ONIX XML"
|
140
|
+
msgstr "Archive ONIX XML"
|
141
|
+
|
142
|
+
#: ../lib/alexandria/export_format.rb:19
|
143
|
+
msgid "Archived Tellico XML"
|
144
|
+
msgstr "Archive Tellico XML"
|
145
|
+
|
146
|
+
#: ../lib/alexandria/export_format.rb:20
|
147
|
+
msgid "BibTeX"
|
148
|
+
msgstr "BibTex"
|
149
|
+
|
150
|
+
#: ../lib/alexandria/export_format.rb:21
|
151
|
+
msgid "CSV list"
|
152
|
+
msgstr "Liste CSV"
|
153
|
+
|
154
|
+
#: ../lib/alexandria/export_format.rb:22
|
155
|
+
msgid "ISBN List"
|
156
|
+
msgstr "Liste d'ISBNs"
|
157
|
+
|
158
|
+
#: ../lib/alexandria/export_format.rb:23
|
159
|
+
msgid "iPod Notes"
|
160
|
+
msgstr "Notes de l' iPod"
|
161
|
+
|
162
|
+
#: ../lib/alexandria/export_format.rb:24
|
163
|
+
msgid "HTML Web Page"
|
164
|
+
msgstr "Page Web HTML"
|
165
|
+
|
166
|
+
#: ../lib/alexandria/import_library.rb:21
|
23
167
|
msgid "Autodetect"
|
24
168
|
msgstr "Détection automatique"
|
25
169
|
|
26
|
-
#: ../lib/alexandria/import_library.rb:
|
170
|
+
#: ../lib/alexandria/import_library.rb:22
|
27
171
|
msgid "Archived Tellico XML (*.bc, *.tc)"
|
28
172
|
msgstr "Archive Tellico XML (*.bc, *.tc)"
|
29
173
|
|
30
|
-
#: ../lib/alexandria/import_library.rb:
|
174
|
+
#: ../lib/alexandria/import_library.rb:24
|
31
175
|
msgid "ISBN List (*.txt)"
|
32
176
|
msgstr "Liste d'ISBNs (*.txt)"
|
33
177
|
|
34
|
-
#: ../lib/alexandria/import_library.rb:
|
178
|
+
#: ../lib/alexandria/import_library.rb:25
|
35
179
|
msgid "GoodReads CSV"
|
36
180
|
msgstr ""
|
37
181
|
|
38
|
-
#: ../lib/alexandria/
|
39
|
-
msgid "
|
40
|
-
msgstr "
|
182
|
+
#: ../lib/alexandria/import_library.rb:65
|
183
|
+
msgid "Unsupported type"
|
184
|
+
msgstr ""
|
41
185
|
|
42
|
-
#: ../lib/alexandria/
|
186
|
+
#: ../lib/alexandria/import_library_csv.rb:199
|
187
|
+
msgid "Not Recognized"
|
188
|
+
msgstr ""
|
189
|
+
|
190
|
+
#: ../lib/alexandria/library_store.rb:37
|
43
191
|
msgid "My Library"
|
44
192
|
msgstr "Ma bibliothèque"
|
45
193
|
|
46
|
-
#: ../lib/alexandria/
|
47
|
-
msgid "
|
48
|
-
msgstr "
|
194
|
+
#: ../lib/alexandria/library_store.rb:67
|
195
|
+
msgid "Not a book: %<book>s"
|
196
|
+
msgstr ""
|
49
197
|
|
50
|
-
#: ../lib/alexandria/
|
51
|
-
msgid "
|
52
|
-
msgstr "
|
198
|
+
#: ../lib/alexandria/library_store.rb:78
|
199
|
+
msgid "%<file>s isbn is not okay"
|
200
|
+
msgstr ""
|
53
201
|
|
54
|
-
#: ../lib/alexandria/
|
55
|
-
msgid "
|
56
|
-
msgstr "
|
202
|
+
#: ../lib/alexandria/library_store.rb:83
|
203
|
+
msgid "%<file>s version is not okay"
|
204
|
+
msgstr ""
|
57
205
|
|
58
|
-
#: ../lib/alexandria/
|
59
|
-
msgid "
|
60
|
-
msgstr "
|
206
|
+
#: ../lib/alexandria/library_store.rb:88
|
207
|
+
msgid "%<file>s pub year is not okay"
|
208
|
+
msgstr ""
|
61
209
|
|
62
|
-
#: ../lib/alexandria/
|
63
|
-
msgid "
|
64
|
-
msgstr "
|
210
|
+
#: ../lib/alexandria/models/library.rb:40
|
211
|
+
msgid "Untitled"
|
212
|
+
msgstr "Sans Titre"
|
65
213
|
|
66
|
-
#: ../lib/alexandria/
|
67
|
-
msgid "
|
68
|
-
msgstr "
|
214
|
+
#: ../lib/alexandria/models/library.rb:288
|
215
|
+
msgid "Book %<isbn>s was already deleted"
|
216
|
+
msgstr ""
|
69
217
|
|
70
|
-
#: ../lib/alexandria/
|
71
|
-
msgid "
|
72
|
-
msgstr "
|
218
|
+
#: ../lib/alexandria/scanners/cue_cat.rb:75
|
219
|
+
msgid "Don't know how to handle type %<type>s (barcode: %<code>s)"
|
220
|
+
msgstr ""
|
73
221
|
|
74
|
-
#: ../lib/alexandria/
|
75
|
-
msgid "
|
76
|
-
msgstr "
|
222
|
+
#: ../lib/alexandria/scanners/cue_cat.rb:109
|
223
|
+
msgid "Error parsing CueCat input"
|
224
|
+
msgstr ""
|
77
225
|
|
78
|
-
#: ../lib/alexandria/
|
79
|
-
msgid "
|
80
|
-
msgstr "
|
226
|
+
#: ../lib/alexandria/scanners/keyboard.rb:51
|
227
|
+
msgid "Unknown scan data %s<data>"
|
228
|
+
msgstr ""
|
81
229
|
|
82
|
-
#: ../lib/alexandria/
|
83
|
-
msgid "
|
84
|
-
msgstr "
|
230
|
+
#: ../lib/alexandria/smart_library.rb:49
|
231
|
+
msgid "Favorite"
|
232
|
+
msgstr "Favoris"
|
85
233
|
|
86
|
-
#: ../lib/alexandria/
|
87
|
-
msgid "
|
88
|
-
msgstr "
|
234
|
+
#: ../lib/alexandria/smart_library.rb:55
|
235
|
+
msgid "Loaned"
|
236
|
+
msgstr "Prêts"
|
89
237
|
|
90
|
-
#: ../lib/alexandria/
|
91
|
-
|
92
|
-
|
238
|
+
#: ../lib/alexandria/smart_library.rb:61 ../lib/alexandria/smart_library.rb:307
|
239
|
+
#: ../lib/alexandria/ui/listview.rb:59
|
240
|
+
msgid "Read"
|
241
|
+
msgstr "Lire"
|
93
242
|
|
94
|
-
#: ../lib/alexandria/
|
95
|
-
msgid "
|
96
|
-
msgstr "
|
243
|
+
#: ../lib/alexandria/smart_library.rb:67
|
244
|
+
msgid "Owned"
|
245
|
+
msgstr "Acquis"
|
97
246
|
|
98
|
-
#: ../lib/alexandria/
|
99
|
-
msgid "
|
100
|
-
msgstr "
|
247
|
+
#: ../lib/alexandria/smart_library.rb:76
|
248
|
+
msgid "Wishlist"
|
249
|
+
msgstr "Liste de demande"
|
101
250
|
|
102
|
-
#: ../lib/alexandria/ui/
|
103
|
-
msgid "
|
104
|
-
|
105
|
-
msgstr[0] "Bibliothèque '%s' sélectionnée, %d livre non-noté"
|
106
|
-
msgstr[1] "Bibliothèque '%s' sélectionnée, %d livres non-notés"
|
251
|
+
#: ../lib/alexandria/smart_library.rb:295 ../lib/alexandria/ui/listview.rb:32
|
252
|
+
msgid "Title"
|
253
|
+
msgstr "Titre"
|
107
254
|
|
108
|
-
#: ../lib/alexandria/ui/
|
109
|
-
msgid "
|
110
|
-
|
111
|
-
msgstr[0] "Bibliothèque '%s' sélectionnée, %d livre"
|
112
|
-
msgstr[1] "Bibliothèque '%s' sélectionnée, %d livres"
|
255
|
+
#: ../lib/alexandria/smart_library.rb:296 ../lib/alexandria/ui/listview.rb:52
|
256
|
+
msgid "ISBN"
|
257
|
+
msgstr "ISBN"
|
113
258
|
|
114
|
-
#: ../lib/alexandria/ui/
|
115
|
-
msgid "
|
116
|
-
|
117
|
-
msgstr[0] "Bibliothèque '%s' sélectionnée, %d livre, %d non-noté"
|
118
|
-
msgstr[1] "Bibliothèque « %s » sélectionnée, %d livres, %d non-notés"
|
259
|
+
#: ../lib/alexandria/smart_library.rb:297 ../lib/alexandria/ui/listview.rb:51
|
260
|
+
msgid "Authors"
|
261
|
+
msgstr "Auteurs"
|
119
262
|
|
120
|
-
#: ../lib/alexandria/ui/
|
121
|
-
msgid "
|
122
|
-
msgstr "
|
263
|
+
#: ../lib/alexandria/smart_library.rb:298 ../lib/alexandria/ui/listview.rb:53
|
264
|
+
msgid "Publisher"
|
265
|
+
msgstr "Éditeur"
|
123
266
|
|
124
|
-
#: ../lib/alexandria/ui/
|
125
|
-
msgid "
|
126
|
-
|
127
|
-
|
128
|
-
|
267
|
+
#: ../lib/alexandria/smart_library.rb:299 ../lib/alexandria/ui/listview.rb:54
|
268
|
+
msgid "Publish Year"
|
269
|
+
msgstr "Année de publication"
|
270
|
+
|
271
|
+
#: ../lib/alexandria/smart_library.rb:300 ../lib/alexandria/ui/listview.rb:55
|
272
|
+
msgid "Binding"
|
273
|
+
msgstr "Édition"
|
274
|
+
|
275
|
+
#: ../lib/alexandria/smart_library.rb:301 ../lib/alexandria/ui/listview.rb:106
|
276
|
+
msgid "Rating"
|
277
|
+
msgstr "Notation"
|
278
|
+
|
279
|
+
#: ../lib/alexandria/smart_library.rb:302
|
280
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:762
|
281
|
+
msgid "Notes"
|
282
|
+
msgstr "Notes"
|
283
|
+
|
284
|
+
#: ../lib/alexandria/smart_library.rb:303 ../lib/alexandria/ui/listview.rb:86
|
285
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:230
|
286
|
+
msgid "Tags"
|
287
|
+
msgstr "Étiquettes"
|
288
|
+
|
289
|
+
#: ../lib/alexandria/smart_library.rb:304
|
290
|
+
msgid "Loaning State"
|
291
|
+
msgstr "Etat du prêt"
|
292
|
+
|
293
|
+
#: ../lib/alexandria/smart_library.rb:305
|
294
|
+
msgid "Loaning Date"
|
295
|
+
msgstr "Date du prêt"
|
296
|
+
|
297
|
+
#: ../lib/alexandria/smart_library.rb:306
|
298
|
+
msgid "Loaning Person"
|
299
|
+
msgstr "Emprunteur"
|
300
|
+
|
301
|
+
#: ../lib/alexandria/smart_library.rb:308
|
302
|
+
msgid "Date Read"
|
303
|
+
msgstr "Date de lecture"
|
304
|
+
|
305
|
+
#: ../lib/alexandria/smart_library.rb:309 ../lib/alexandria/ui/listview.rb:60
|
306
|
+
msgid "Own"
|
307
|
+
msgstr "Propriétaire"
|
308
|
+
|
309
|
+
#: ../lib/alexandria/smart_library.rb:310 ../lib/alexandria/ui/listview.rb:61
|
310
|
+
msgid "Want"
|
311
|
+
msgstr "Veut"
|
312
|
+
|
313
|
+
#: ../lib/alexandria/smart_library.rb:317
|
314
|
+
msgid "days"
|
315
|
+
msgstr "jours"
|
316
|
+
|
317
|
+
#: ../lib/alexandria/smart_library.rb:327
|
318
|
+
msgid "is set"
|
319
|
+
msgstr "est défini"
|
320
|
+
|
321
|
+
#: ../lib/alexandria/smart_library.rb:330
|
322
|
+
msgid "is not set"
|
323
|
+
msgstr "n'est pas défini"
|
324
|
+
|
325
|
+
#: ../lib/alexandria/smart_library.rb:333
|
326
|
+
msgid "is"
|
327
|
+
msgstr "est"
|
328
|
+
|
329
|
+
#: ../lib/alexandria/smart_library.rb:336
|
330
|
+
msgid "is not"
|
331
|
+
msgstr "n'est pas"
|
332
|
+
|
333
|
+
#: ../lib/alexandria/smart_library.rb:339
|
334
|
+
msgid "contains"
|
335
|
+
msgstr "contient"
|
336
|
+
|
337
|
+
#: ../lib/alexandria/smart_library.rb:342
|
338
|
+
msgid "does not contain"
|
339
|
+
msgstr "ne contient pas"
|
340
|
+
|
341
|
+
#: ../lib/alexandria/smart_library.rb:345
|
342
|
+
msgid "starts with"
|
343
|
+
msgstr "commence par"
|
344
|
+
|
345
|
+
#: ../lib/alexandria/smart_library.rb:348
|
346
|
+
msgid "ends with"
|
347
|
+
msgstr "finit par"
|
348
|
+
|
349
|
+
#: ../lib/alexandria/smart_library.rb:351
|
350
|
+
msgid "is greater than"
|
351
|
+
msgstr "est supérieur à"
|
352
|
+
|
353
|
+
#: ../lib/alexandria/smart_library.rb:354
|
354
|
+
msgid "is less than"
|
355
|
+
msgstr "est inférieur à"
|
356
|
+
|
357
|
+
#: ../lib/alexandria/smart_library.rb:357
|
358
|
+
msgid "is after"
|
359
|
+
msgstr "se situe après"
|
360
|
+
|
361
|
+
#: ../lib/alexandria/smart_library.rb:360
|
362
|
+
msgid "is before"
|
363
|
+
msgstr "se situe avant"
|
364
|
+
|
365
|
+
#: ../lib/alexandria/smart_library.rb:364
|
366
|
+
msgid "is in last"
|
367
|
+
msgstr "se situe en fin"
|
368
|
+
|
369
|
+
#: ../lib/alexandria/smart_library.rb:384
|
370
|
+
msgid "is not in last"
|
371
|
+
msgstr "ne se situe pas en fin"
|
372
|
+
|
373
|
+
#: ../lib/alexandria/smart_library.rb:465
|
374
|
+
msgid "invalid operand klass %<klass>s"
|
375
|
+
msgstr ""
|
376
|
+
|
377
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:202
|
378
|
+
msgid "There was %d duplicate"
|
379
|
+
msgid_plural "There were %d duplicates"
|
380
|
+
msgstr[0] ""
|
381
|
+
msgstr[1] ""
|
382
|
+
|
383
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:205
|
384
|
+
#, fuzzy
|
385
|
+
msgid "Couldn't add this book"
|
386
|
+
msgid_plural "Couldn't add these books"
|
387
|
+
msgstr[0] "Impossible d'ajouter le livre"
|
388
|
+
msgstr[1] "Impossible d'ajouter le livre"
|
389
|
+
|
390
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:284
|
391
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:500
|
392
|
+
msgid "Searching Provider '%s'..."
|
393
|
+
msgstr ""
|
394
|
+
|
395
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:285
|
396
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:501
|
397
|
+
msgid "Error while Searching Provider '%s'"
|
398
|
+
msgstr ""
|
399
|
+
|
400
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:286
|
401
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:502
|
402
|
+
msgid "Not Found at Provider '%s'"
|
403
|
+
msgstr ""
|
404
|
+
|
405
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:287
|
406
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:503
|
407
|
+
msgid "Found at Provider '%s'"
|
408
|
+
msgstr ""
|
409
|
+
|
410
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:406
|
411
|
+
msgid "Ready to use %s barcode scanner"
|
412
|
+
msgstr ""
|
413
|
+
|
414
|
+
#: ../lib/alexandria/ui/acquire_dialog.rb:430
|
415
|
+
msgid "Click below to scan _barcodes"
|
416
|
+
msgstr "Cliquez ci-dessous pour lire _la barre de code rapidement"
|
129
417
|
|
130
|
-
#: ../lib/alexandria/ui/
|
131
|
-
|
132
|
-
|
418
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:112
|
419
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:122
|
420
|
+
msgid "Couldn't modify the book"
|
421
|
+
msgstr "Impossible d'éditer les propriétés du livre"
|
133
422
|
|
134
|
-
#: ../lib/alexandria/ui/
|
423
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:113
|
424
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:74
|
135
425
|
msgid ""
|
136
|
-
"
|
137
|
-
"
|
426
|
+
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
427
|
+
"correcty, and try again."
|
138
428
|
msgstr ""
|
139
|
-
"
|
140
|
-
"
|
429
|
+
"Impossible de valider la donnée EAN/ISBN. Vérifiez que le numéro est écrit "
|
430
|
+
"correctement, et ré-essayez."
|
141
431
|
|
142
|
-
#: ../lib/alexandria/ui/
|
143
|
-
|
144
|
-
|
432
|
+
#: ../lib/alexandria/ui/book_properties_dialog.rb:123
|
433
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:79
|
434
|
+
msgid "The EAN/ISBN you provided is already used in this library."
|
435
|
+
msgstr "La donnée EAN/ISBN fournie est déjà utilisée dans cette bibliothèque."
|
145
436
|
|
146
|
-
#: ../lib/alexandria/ui/
|
147
|
-
msgid ""
|
148
|
-
|
149
|
-
"> Advanced -> Preferred Applications) and try again."
|
150
|
-
msgstr ""
|
151
|
-
"Vérifiez qu'un client de messagerie est configuré par défaut (Préférences du "
|
152
|
-
"bureau -> Applications préférées) et ré-essayez encore."
|
437
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:206
|
438
|
+
msgid "Properties"
|
439
|
+
msgstr "Propriétés"
|
153
440
|
|
154
|
-
#: ../lib/alexandria/ui/
|
155
|
-
|
156
|
-
|
441
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:208
|
442
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog.rb:21
|
443
|
+
msgid "Properties for '%s'"
|
444
|
+
msgstr "Préférences pour '%s'"
|
157
445
|
|
158
|
-
#: ../lib/alexandria/ui/
|
159
|
-
msgid ""
|
160
|
-
|
161
|
-
"to attempt to download new information for them from the online book "
|
162
|
-
"providers?\n"
|
163
|
-
msgstr ""
|
164
|
-
"Les fichiers de données pour les livres suivants sont endommagés ou vides. "
|
165
|
-
"Voulez-vous essayer le téléchargement d'une nouvelle information pour eux à "
|
166
|
-
"partir des fournisseurs de livres chez internet?\n"
|
446
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:214
|
447
|
+
msgid "Author"
|
448
|
+
msgstr "Auteur"
|
167
449
|
|
168
|
-
#: ../lib/alexandria/ui/
|
169
|
-
msgid "
|
170
|
-
msgstr "
|
450
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:263
|
451
|
+
msgid "Select a cover image"
|
452
|
+
msgstr "Sélectionnez une image de couverture"
|
171
453
|
|
172
|
-
#: ../lib/alexandria/ui/
|
173
|
-
msgid "
|
174
|
-
msgstr "
|
454
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:267
|
455
|
+
msgid "No Cover"
|
456
|
+
msgstr "Aucune couverture"
|
175
457
|
|
176
|
-
#: ../lib/alexandria/ui/
|
177
|
-
msgid "
|
178
|
-
|
458
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:346
|
459
|
+
msgid "%d day"
|
460
|
+
msgid_plural "%d days"
|
461
|
+
msgstr[0] "%d jour"
|
462
|
+
msgstr[1] "%d jours"
|
463
|
+
|
464
|
+
#: ../lib/alexandria/ui/book_properties_dialog_base.rb:372
|
465
|
+
msgid "out of range"
|
466
|
+
msgstr ""
|
179
467
|
|
180
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
468
|
+
#: ../lib/alexandria/ui/callbacks.rb:57
|
181
469
|
msgid "The following lines are not valid ISBNs and were not imported:"
|
182
470
|
msgstr ""
|
183
471
|
"Les lignes suivantes ne sont pas des ISBN corrects et elles n'ont pas été "
|
184
472
|
"importées:"
|
185
473
|
|
186
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
187
|
-
|
188
|
-
msgid "Export failed"
|
189
|
-
msgstr "L'export a echoué"
|
190
|
-
|
191
|
-
#: ../lib/alexandria/ui/callbacks.rb:123
|
192
|
-
msgid "Try letting this library load completely before exporting."
|
474
|
+
#: ../lib/alexandria/ui/callbacks.rb:62
|
475
|
+
msgid "Books could not be found for the following ISBNs:"
|
193
476
|
msgstr ""
|
194
477
|
|
195
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
478
|
+
#: ../lib/alexandria/ui/callbacks.rb:362
|
196
479
|
msgid "_Library"
|
197
480
|
msgstr "_Bibliothèque"
|
198
481
|
|
199
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
482
|
+
#: ../lib/alexandria/ui/callbacks.rb:363
|
200
483
|
msgid "_New Library"
|
201
484
|
msgstr "_Nouvelle bibliothèque"
|
202
485
|
|
203
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
486
|
+
#: ../lib/alexandria/ui/callbacks.rb:363
|
204
487
|
msgid "Create a new library"
|
205
488
|
msgstr "Crée une nouvelle bibliothèque"
|
206
489
|
|
207
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
490
|
+
#: ../lib/alexandria/ui/callbacks.rb:364
|
208
491
|
msgid "New _Smart Library..."
|
209
492
|
msgstr "Nouvelle bibliothèque intelli_gente..."
|
210
493
|
|
211
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
494
|
+
#: ../lib/alexandria/ui/callbacks.rb:364
|
212
495
|
msgid "Create a new smart library"
|
213
496
|
msgstr "Crée une nouvelle bibliothèque intelligente"
|
214
497
|
|
215
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
498
|
+
#: ../lib/alexandria/ui/callbacks.rb:365
|
216
499
|
msgid "_Add Book..."
|
217
500
|
msgstr "_Ajouter un livre..."
|
218
501
|
|
219
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
502
|
+
#: ../lib/alexandria/ui/callbacks.rb:365
|
220
503
|
msgid "Add a new book from the Internet"
|
221
504
|
msgstr "Ajouter un nouveau livre depuis Internet"
|
222
505
|
|
223
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
506
|
+
#: ../lib/alexandria/ui/callbacks.rb:366
|
224
507
|
msgid "Add Book _Manually..."
|
225
508
|
msgstr "Ajouter _manuellement un livre..."
|
226
509
|
|
227
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
510
|
+
#: ../lib/alexandria/ui/callbacks.rb:366
|
228
511
|
msgid "Add a new book manually"
|
229
512
|
msgstr "Ajoute un nouveau livre manuellement"
|
230
513
|
|
231
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
514
|
+
#: ../lib/alexandria/ui/callbacks.rb:367
|
232
515
|
msgid "_Import..."
|
233
516
|
msgstr "_Importer..."
|
234
517
|
|
235
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
518
|
+
#: ../lib/alexandria/ui/callbacks.rb:367
|
236
519
|
msgid "Import a library"
|
237
520
|
msgstr "Import d'une bibliothèque"
|
238
521
|
|
239
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
522
|
+
#: ../lib/alexandria/ui/callbacks.rb:368
|
240
523
|
msgid "_Export..."
|
241
524
|
msgstr "_Exporter..."
|
242
525
|
|
243
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
526
|
+
#: ../lib/alexandria/ui/callbacks.rb:368
|
244
527
|
msgid "Export the selected library"
|
245
528
|
msgstr "Export de la bibliothèque sélectionnée"
|
246
529
|
|
247
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
248
|
-
|
530
|
+
#: ../lib/alexandria/ui/callbacks.rb:369
|
531
|
+
#, fuzzy
|
532
|
+
msgid "A_cquire from Scanner..."
|
249
533
|
msgstr "_Utiliser le scanner ..."
|
250
534
|
|
251
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
535
|
+
#: ../lib/alexandria/ui/callbacks.rb:369
|
252
536
|
msgid "Acquire books from a scanner"
|
253
537
|
msgstr "Permet d'ajouter des livres en utilisant le scanner"
|
254
538
|
|
255
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
539
|
+
#: ../lib/alexandria/ui/callbacks.rb:370
|
256
540
|
msgid "_Properties"
|
257
541
|
msgstr "_Propriétés"
|
258
542
|
|
259
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
543
|
+
#: ../lib/alexandria/ui/callbacks.rb:370
|
260
544
|
msgid "Edit the properties of the selected book"
|
261
545
|
msgstr "Edite les propriétés du livre sélectionné"
|
262
546
|
|
263
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
547
|
+
#: ../lib/alexandria/ui/callbacks.rb:371
|
264
548
|
msgid "_Quit"
|
265
549
|
msgstr "_Quitter"
|
266
550
|
|
267
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
551
|
+
#: ../lib/alexandria/ui/callbacks.rb:371
|
268
552
|
msgid "Quit the program"
|
269
553
|
msgstr "Quitte le programme"
|
270
554
|
|
271
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
555
|
+
#: ../lib/alexandria/ui/callbacks.rb:372
|
272
556
|
msgid "_Edit"
|
273
557
|
msgstr "_Édition"
|
274
558
|
|
275
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
559
|
+
#: ../lib/alexandria/ui/callbacks.rb:373
|
276
560
|
msgid "_Undo"
|
277
561
|
msgstr "_Annuler"
|
278
562
|
|
279
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
563
|
+
#: ../lib/alexandria/ui/callbacks.rb:373
|
280
564
|
msgid "Undo the last action"
|
281
565
|
msgstr "Annule la dernière action"
|
282
566
|
|
283
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
567
|
+
#: ../lib/alexandria/ui/callbacks.rb:374
|
284
568
|
msgid "_Redo"
|
285
569
|
msgstr "_Répéter"
|
286
570
|
|
287
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
571
|
+
#: ../lib/alexandria/ui/callbacks.rb:374
|
288
572
|
msgid "Redo the undone action"
|
289
573
|
msgstr "Répète l'action annulée"
|
290
574
|
|
291
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
575
|
+
#: ../lib/alexandria/ui/callbacks.rb:375
|
292
576
|
msgid "_Select All"
|
293
577
|
msgstr "_Tout sélectionner"
|
294
578
|
|
295
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
579
|
+
#: ../lib/alexandria/ui/callbacks.rb:375
|
296
580
|
msgid "Select all visible books"
|
297
581
|
msgstr "Sélectionne tous les livres visibles"
|
298
582
|
|
299
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
583
|
+
#: ../lib/alexandria/ui/callbacks.rb:376
|
300
584
|
msgid "Dese_lect All"
|
301
585
|
msgstr "Tout _déselectionner"
|
302
586
|
|
303
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
587
|
+
#: ../lib/alexandria/ui/callbacks.rb:376
|
304
588
|
msgid "Deselect everything"
|
305
589
|
msgstr "Déselectionne tout"
|
306
590
|
|
307
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
591
|
+
#: ../lib/alexandria/ui/callbacks.rb:377
|
308
592
|
msgid "My _Rating"
|
309
593
|
msgstr "Mes _notations"
|
310
594
|
|
311
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
595
|
+
#: ../lib/alexandria/ui/callbacks.rb:378
|
312
596
|
msgid "None"
|
313
597
|
msgstr "Aucune"
|
314
598
|
|
315
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
599
|
+
#: ../lib/alexandria/ui/callbacks.rb:379
|
316
600
|
msgid "One Star"
|
317
601
|
msgstr "Une étoile"
|
318
602
|
|
319
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
603
|
+
#: ../lib/alexandria/ui/callbacks.rb:380
|
320
604
|
msgid "Two Stars"
|
321
605
|
msgstr "Deux étoiles"
|
322
606
|
|
323
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
607
|
+
#: ../lib/alexandria/ui/callbacks.rb:381
|
324
608
|
msgid "Three Stars"
|
325
609
|
msgstr "Trois étoiles"
|
326
610
|
|
327
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
611
|
+
#: ../lib/alexandria/ui/callbacks.rb:382
|
328
612
|
msgid "Four Stars"
|
329
613
|
msgstr "Quatre étoiles"
|
330
614
|
|
331
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
615
|
+
#: ../lib/alexandria/ui/callbacks.rb:383
|
332
616
|
msgid "Five Stars"
|
333
617
|
msgstr "Cinq étoiles"
|
334
618
|
|
335
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
619
|
+
#: ../lib/alexandria/ui/callbacks.rb:384
|
336
620
|
msgid "_Move"
|
337
621
|
msgstr "_Déplacer"
|
338
622
|
|
339
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
623
|
+
#: ../lib/alexandria/ui/callbacks.rb:385
|
340
624
|
msgid "_Rename"
|
341
625
|
msgstr "_Renommer"
|
342
626
|
|
343
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
627
|
+
#: ../lib/alexandria/ui/callbacks.rb:386
|
344
628
|
msgid "_Delete"
|
345
629
|
msgstr "_Supprimer"
|
346
630
|
|
347
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
631
|
+
#: ../lib/alexandria/ui/callbacks.rb:386
|
348
632
|
msgid "Delete the selected books or library"
|
349
633
|
msgstr "Supprime les livres sélectionnés ou la bibliothèque"
|
350
634
|
|
351
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
635
|
+
#: ../lib/alexandria/ui/callbacks.rb:387
|
352
636
|
msgid "_Search"
|
353
637
|
msgstr "_Rechercher"
|
354
638
|
|
355
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
639
|
+
#: ../lib/alexandria/ui/callbacks.rb:387
|
356
640
|
msgid "Filter books"
|
357
641
|
msgstr "Filtre les livres"
|
358
642
|
|
359
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
643
|
+
#: ../lib/alexandria/ui/callbacks.rb:388
|
360
644
|
msgid "_Clear Results"
|
361
645
|
msgstr "_Effacer les résultats"
|
362
646
|
|
363
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
647
|
+
#: ../lib/alexandria/ui/callbacks.rb:388
|
364
648
|
msgid "Clear the search results"
|
365
649
|
msgstr "Efface les résultats des recherches"
|
366
650
|
|
367
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
651
|
+
#: ../lib/alexandria/ui/callbacks.rb:389
|
368
652
|
msgid "_Preferences"
|
369
653
|
msgstr "_Préférences"
|
370
654
|
|
371
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
655
|
+
#: ../lib/alexandria/ui/callbacks.rb:389
|
372
656
|
msgid "Change Alexandria's settings"
|
373
657
|
msgstr "Change les paramètres d'Alexandria"
|
374
658
|
|
375
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
659
|
+
#: ../lib/alexandria/ui/callbacks.rb:390
|
376
660
|
msgid "_View"
|
377
661
|
msgstr "_Affichage"
|
378
662
|
|
379
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
663
|
+
#: ../lib/alexandria/ui/callbacks.rb:391
|
380
664
|
msgid "Arran_ge Icons"
|
381
665
|
msgstr "_Ranger les icônes"
|
382
666
|
|
383
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
667
|
+
#: ../lib/alexandria/ui/callbacks.rb:392
|
384
668
|
msgid "Display Online _Information"
|
385
669
|
msgstr "Afficher les _informations en ligne"
|
386
670
|
|
387
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
671
|
+
#: ../lib/alexandria/ui/callbacks.rb:394
|
388
672
|
msgid "_Help"
|
389
673
|
msgstr "_Aide"
|
390
674
|
|
391
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
675
|
+
#: ../lib/alexandria/ui/callbacks.rb:395
|
392
676
|
msgid "Submit _Bug Report"
|
393
677
|
msgstr "Soumettre un rapport de _bug"
|
394
678
|
|
395
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
679
|
+
#: ../lib/alexandria/ui/callbacks.rb:395
|
396
680
|
msgid "Submit a bug report to the developers"
|
397
681
|
msgstr "Soumettre un rapport de bug aux développeurs"
|
398
682
|
|
399
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
683
|
+
#: ../lib/alexandria/ui/callbacks.rb:396
|
400
684
|
msgid "Contents"
|
401
685
|
msgstr "Contenu"
|
402
686
|
|
403
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
687
|
+
#: ../lib/alexandria/ui/callbacks.rb:396
|
404
688
|
msgid "View Alexandria's manual"
|
405
689
|
msgstr "Voir le manuel d'Alexandria"
|
406
690
|
|
407
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
691
|
+
#: ../lib/alexandria/ui/callbacks.rb:397
|
408
692
|
msgid "_About"
|
409
693
|
msgstr "À _propos"
|
410
694
|
|
411
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
695
|
+
#: ../lib/alexandria/ui/callbacks.rb:397
|
412
696
|
msgid "Show information about Alexandria"
|
413
697
|
msgstr "Affiche les informations à propos d'Alexandria"
|
414
698
|
|
415
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
416
|
-
msgid "
|
699
|
+
#: ../lib/alexandria/ui/callbacks.rb:404
|
700
|
+
msgid "At _%s"
|
701
|
+
msgstr "Sur _%s"
|
702
|
+
|
703
|
+
#: ../lib/alexandria/ui/callbacks.rb:410
|
704
|
+
msgid "Side_pane"
|
417
705
|
msgstr "_Panneau latéral"
|
418
706
|
|
419
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
707
|
+
#: ../lib/alexandria/ui/callbacks.rb:411
|
420
708
|
msgid "_Toolbar"
|
421
709
|
msgstr "Barre d'_outils"
|
422
710
|
|
423
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
711
|
+
#: ../lib/alexandria/ui/callbacks.rb:412
|
424
712
|
msgid "_Statusbar"
|
425
713
|
msgstr "Barre d'é_tat"
|
426
714
|
|
427
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
715
|
+
#: ../lib/alexandria/ui/callbacks.rb:413
|
428
716
|
msgid "Re_versed Order"
|
429
717
|
msgstr "_Ordre inversé"
|
430
718
|
|
431
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
719
|
+
#: ../lib/alexandria/ui/callbacks.rb:418
|
432
720
|
msgid "View as _Icons"
|
433
721
|
msgstr "Voir en tant qu'_icônes"
|
434
722
|
|
435
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
723
|
+
#: ../lib/alexandria/ui/callbacks.rb:419
|
436
724
|
msgid "View as _List"
|
437
725
|
msgstr "Voir en tant que _liste"
|
438
726
|
|
439
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
727
|
+
#: ../lib/alexandria/ui/callbacks.rb:423
|
440
728
|
msgid "By _Title"
|
441
729
|
msgstr "Par _titre"
|
442
730
|
|
443
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
731
|
+
#: ../lib/alexandria/ui/callbacks.rb:424
|
444
732
|
msgid "By _Authors"
|
445
733
|
msgstr "Par _auteurs"
|
446
734
|
|
447
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
735
|
+
#: ../lib/alexandria/ui/callbacks.rb:425
|
448
736
|
msgid "By _ISBN"
|
449
737
|
msgstr "Par _ISBN"
|
450
738
|
|
451
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
739
|
+
#: ../lib/alexandria/ui/callbacks.rb:426
|
452
740
|
msgid "By _Publisher"
|
453
741
|
msgstr "Par _éditeur"
|
454
742
|
|
455
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
743
|
+
#: ../lib/alexandria/ui/callbacks.rb:427
|
456
744
|
msgid "By _Binding"
|
457
745
|
msgstr "Par _édition"
|
458
746
|
|
459
|
-
#: ../lib/alexandria/ui/callbacks.rb:
|
747
|
+
#: ../lib/alexandria/ui/callbacks.rb:428
|
460
748
|
msgid "By _Rating"
|
461
749
|
msgstr "Par _notation"
|
462
750
|
|
463
|
-
#: ../lib/alexandria/ui/
|
464
|
-
msgid "At _%s"
|
465
|
-
msgstr "Sur _%s"
|
466
|
-
|
467
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:395
|
468
|
-
msgid "There was %d duplicate"
|
469
|
-
msgid_plural "There were %d duplicates"
|
470
|
-
msgstr[0] ""
|
471
|
-
msgstr[1] ""
|
472
|
-
|
473
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:398
|
474
|
-
#, fuzzy
|
475
|
-
msgid "Couldn't add this book"
|
476
|
-
msgid_plural "Couldn't add these books"
|
477
|
-
msgstr[0] "Impossible d'ajouter le livre"
|
478
|
-
msgstr[1] "Impossible d'ajouter le livre"
|
479
|
-
|
480
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:477
|
481
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:555
|
482
|
-
msgid "Searching Provider '%s'..."
|
483
|
-
msgstr ""
|
484
|
-
|
485
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:478
|
486
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:556
|
487
|
-
msgid "Error while Searching Provider '%s'"
|
488
|
-
msgstr ""
|
489
|
-
|
490
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:479
|
491
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:557
|
492
|
-
msgid "Not Found at Provider '%s'"
|
493
|
-
msgstr ""
|
494
|
-
|
495
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:480
|
496
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:558
|
497
|
-
msgid "Found at Provider '%s'"
|
498
|
-
msgstr ""
|
499
|
-
|
500
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:610
|
501
|
-
msgid "Ready to use %s barcode scanner"
|
502
|
-
msgstr ""
|
503
|
-
|
504
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:625
|
505
|
-
#: ../data/alexandria/glade/acquire_dialog.glade:26
|
506
|
-
msgid "_Barcode Scanner Ready"
|
507
|
-
msgstr "_Lecteur électronique de la barre de code prêt"
|
508
|
-
|
509
|
-
#: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:640
|
510
|
-
msgid "Click below to scan _barcodes"
|
511
|
-
msgstr "Cliquez ci-dessous pour lire _la barre de code rapidement"
|
512
|
-
|
513
|
-
#: ../lib/alexandria/ui/dialogs/bad_isbns_dialog.rb:24
|
514
|
-
msgid "There's a problem"
|
515
|
-
msgstr "Il y a un problème"
|
516
|
-
|
517
|
-
#: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:30
|
518
|
-
msgid "New Smart Library"
|
519
|
-
msgstr "Nouvelle bibliothèque intelligente"
|
520
|
-
|
521
|
-
#: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:49
|
522
|
-
msgid "Smart Library"
|
523
|
-
msgstr "Bibliothèque intelligente"
|
524
|
-
|
525
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:106
|
526
|
-
msgid "Preferences for %s"
|
527
|
-
msgstr "Préférences pour %s"
|
528
|
-
|
529
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:131
|
530
|
-
msgid "New Provider"
|
531
|
-
msgstr "Nouveau fournisseur"
|
532
|
-
|
533
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:146
|
534
|
-
msgid "_Name:"
|
535
|
-
msgstr "_Nom:"
|
536
|
-
|
537
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:158
|
538
|
-
msgid "_Type:"
|
539
|
-
msgstr "_Type:"
|
540
|
-
|
541
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:316
|
542
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
|
543
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
|
544
|
-
#, fuzzy
|
545
|
-
msgid "Disable Provider"
|
546
|
-
msgstr "Nouveau fournisseur"
|
547
|
-
|
548
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
|
549
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
|
550
|
-
#, fuzzy
|
551
|
-
msgid "Enable Provider"
|
552
|
-
msgstr "Nouveau fournisseur"
|
553
|
-
|
554
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:423
|
555
|
-
msgid "Are you sure you want to permanently delete the provider '%s'?"
|
556
|
-
msgstr ""
|
557
|
-
"Êtes-vous sûr de vouloir supprimer de manière permanente le fournisseur '%"
|
558
|
-
"s' ?"
|
559
|
-
|
560
|
-
#: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:431
|
561
|
-
msgid ""
|
562
|
-
"If you continue, the provider and all of its preferences will be permanently "
|
563
|
-
"deleted."
|
564
|
-
msgstr ""
|
565
|
-
"Si vous continuez, le fournisseur ainsi que toutes ses préférences seront "
|
566
|
-
"supprimés de manière permanente."
|
567
|
-
|
568
|
-
#: ../lib/alexandria/ui/dialogs/import_dialog.rb:36
|
569
|
-
msgid "Error while importing"
|
570
|
-
msgstr "Erreur pendant l'import"
|
571
|
-
|
572
|
-
#: ../lib/alexandria/ui/dialogs/import_dialog.rb:39
|
573
|
-
msgid "_Continue"
|
574
|
-
msgstr "_Continuer"
|
575
|
-
|
576
|
-
#: ../lib/alexandria/ui/dialogs/import_dialog.rb:64
|
577
|
-
msgid "Import a Library"
|
578
|
-
msgstr "Importer une bibliothèque"
|
579
|
-
|
580
|
-
#: ../lib/alexandria/ui/dialogs/import_dialog.rb:71
|
581
|
-
msgid "_Import"
|
582
|
-
msgstr "_Importer"
|
583
|
-
|
584
|
-
#: ../lib/alexandria/ui/dialogs/import_dialog.rb:188
|
585
|
-
msgid "Couldn't import the library"
|
586
|
-
msgstr "Impossible d'importer le livre"
|
587
|
-
|
588
|
-
#: ../lib/alexandria/ui/dialogs/import_dialog.rb:189
|
589
|
-
msgid ""
|
590
|
-
"The format of the file you provided is unknown. Please retry with another "
|
591
|
-
"file."
|
592
|
-
msgstr ""
|
593
|
-
"Le format du fichier que vous fournissez est inconnu. Veuillez ré-essayer "
|
594
|
-
"avec un autre fichier."
|
595
|
-
|
596
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb:30
|
597
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:63
|
598
|
-
msgid "Properties for '%s'"
|
599
|
-
msgstr "Préférences pour '%s'"
|
600
|
-
|
601
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:83
|
602
|
-
msgid "Empty or conflictive condition"
|
603
|
-
msgstr "Vide ou condition générant des conflits"
|
604
|
-
|
605
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:86
|
606
|
-
msgid "_Save However"
|
607
|
-
msgstr "_Sauvegarder quand même"
|
608
|
-
|
609
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:87
|
610
|
-
msgid ""
|
611
|
-
"This smart library contains one or more conditions which are empty or "
|
612
|
-
"conflict with each other. This is likely to result in never matching a book. "
|
613
|
-
"Are you sure you want to save this library?"
|
614
|
-
msgstr ""
|
615
|
-
"Cette bibliothèque intelligente contient une ou plusieurs conditions qui "
|
616
|
-
"sont vides ou en conflits entre elles. Cela provient probablement d'un livre "
|
617
|
-
"qui ne correspondra jamais. Êtes-vous sûr de vouloir sauvegarder cette "
|
618
|
-
"bibliothèque ?"
|
619
|
-
|
620
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:106
|
621
|
-
msgid "Match"
|
622
|
-
msgstr "Correspond"
|
623
|
-
|
624
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
|
625
|
-
msgid "all"
|
626
|
-
msgstr "toutes"
|
627
|
-
|
628
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
|
629
|
-
msgid "any"
|
630
|
-
msgstr "aucunes"
|
631
|
-
|
632
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:119
|
633
|
-
msgid "of the following rules:"
|
634
|
-
msgstr "des règles suivantes : "
|
635
|
-
|
636
|
-
#: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:127
|
637
|
-
msgid "Match the following rule:"
|
638
|
-
msgstr "Correspond à la règle suivante : "
|
639
|
-
|
640
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:114
|
641
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:123
|
642
|
-
msgid "Couldn't modify the book"
|
643
|
-
msgstr "Impossible d'éditer les propriétés du livre"
|
644
|
-
|
645
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:115
|
646
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:88
|
647
|
-
msgid "The EAN/ISBN you provided is already used in this library."
|
648
|
-
msgstr "La donnée EAN/ISBN fournie est déjà utilisée dans cette bibliothèque."
|
649
|
-
|
650
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:124
|
651
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:94
|
652
|
-
msgid ""
|
653
|
-
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
654
|
-
"correcty, and try again."
|
655
|
-
msgstr ""
|
656
|
-
"Impossible de valider la donnée EAN/ISBN. Vérifiez que le numéro est écrit "
|
657
|
-
"correctement, et ré-essayez."
|
658
|
-
|
659
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:65
|
660
|
-
msgid "Properties"
|
661
|
-
msgstr "Propriétés"
|
662
|
-
|
663
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:71
|
664
|
-
msgid "Author"
|
665
|
-
msgstr "Auteur"
|
666
|
-
|
667
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:123
|
668
|
-
msgid "Select a cover image"
|
669
|
-
msgstr "Sélectionnez une image de couverture"
|
670
|
-
|
671
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:127
|
672
|
-
msgid "No Cover"
|
673
|
-
msgstr "Aucune couverture"
|
674
|
-
|
675
|
-
#: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:186
|
676
|
-
msgid "%d day"
|
677
|
-
msgid_plural "%d days"
|
678
|
-
msgstr[0] "%d jour"
|
679
|
-
msgstr[1] "%d jours"
|
680
|
-
|
681
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:58
|
682
|
-
msgid "Adding '%s'"
|
683
|
-
msgstr "Ajout de '%s'"
|
684
|
-
|
685
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:60
|
686
|
-
#: ../data/alexandria/glade/new_book_dialog.glade:8
|
687
|
-
msgid "Adding a Book"
|
688
|
-
msgstr "Ajout d'un livre"
|
689
|
-
|
690
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:81
|
691
|
-
msgid "A title must be provided."
|
692
|
-
msgstr "Un titre doit être fourni."
|
693
|
-
|
694
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:102
|
695
|
-
msgid "A publisher must be provided."
|
696
|
-
msgstr "Un éditeur doit être fourni."
|
697
|
-
|
698
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:109
|
699
|
-
msgid "A binding must be provided."
|
700
|
-
msgstr "Une édition doit être fournie."
|
701
|
-
|
702
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:115
|
703
|
-
msgid "At least one author must be provided."
|
704
|
-
msgstr "Au moins un auteur doit être fourni."
|
705
|
-
|
706
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:142
|
707
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:523
|
708
|
-
msgid "Couldn't add the book"
|
709
|
-
msgstr "Impossible d'ajouter le livre"
|
710
|
-
|
711
|
-
#: ../lib/alexandria/ui/dialogs/export_dialog.rb:25
|
751
|
+
#: ../lib/alexandria/ui/confirm_erase_dialog.rb:16
|
712
752
|
msgid "File already exists"
|
713
753
|
msgstr "Le fichier existe déjà"
|
714
754
|
|
715
|
-
#: ../lib/alexandria/ui/
|
716
|
-
#: ../lib/alexandria/ui/
|
755
|
+
#: ../lib/alexandria/ui/confirm_erase_dialog.rb:19
|
756
|
+
#: ../lib/alexandria/ui/conflict_while_copying_dialog.rb:21
|
717
757
|
msgid "_Replace"
|
718
758
|
msgstr "_Remplacer"
|
719
759
|
|
720
|
-
#: ../lib/alexandria/ui/
|
760
|
+
#: ../lib/alexandria/ui/confirm_erase_dialog.rb:20
|
721
761
|
msgid ""
|
722
762
|
"A file named '%s' already exists. Do you want to replace it with the one "
|
723
763
|
"you are generating?"
|
@@ -725,27 +765,43 @@ msgstr ""
|
|
725
765
|
"Un fichier nommé '%s' existe déjà sur le système. Voulez-vous le remplacer "
|
726
766
|
"par celui que vous êtes en train de générer ?"
|
727
767
|
|
728
|
-
#: ../lib/alexandria/ui/
|
768
|
+
#: ../lib/alexandria/ui/conflict_while_copying_dialog.rb:17
|
769
|
+
msgid "The book '%s' already exists in '%s'. Would you like to replace it?"
|
770
|
+
msgstr "Le livre '%s' existe déjà dans '%s'. Voulez-vous le remplacer ?"
|
771
|
+
|
772
|
+
#: ../lib/alexandria/ui/conflict_while_copying_dialog.rb:20
|
773
|
+
msgid "_Skip"
|
774
|
+
msgstr "_Passer"
|
775
|
+
|
776
|
+
#: ../lib/alexandria/ui/conflict_while_copying_dialog.rb:22
|
777
|
+
msgid "If you replace the existing book, its contents will be overwritten."
|
778
|
+
msgstr "Si vous remplacez le livre existant, son contenu sera écrasé."
|
779
|
+
|
780
|
+
#: ../lib/alexandria/ui/export_dialog.rb:22
|
729
781
|
msgid "Export '%s'"
|
730
782
|
msgstr "Exporter '%s'"
|
731
783
|
|
732
|
-
#: ../lib/alexandria/ui/
|
784
|
+
#: ../lib/alexandria/ui/export_dialog.rb:27
|
733
785
|
msgid "_Export"
|
734
786
|
msgstr "_Exporter"
|
735
787
|
|
736
|
-
#: ../lib/alexandria/ui/
|
788
|
+
#: ../lib/alexandria/ui/export_dialog.rb:48
|
737
789
|
msgid "_Theme:"
|
738
790
|
msgstr "_Thème :"
|
739
791
|
|
740
|
-
#: ../lib/alexandria/ui/
|
792
|
+
#: ../lib/alexandria/ui/export_dialog.rb:60
|
741
793
|
msgid "directory"
|
742
794
|
msgstr "répertoire"
|
743
795
|
|
744
|
-
#: ../lib/alexandria/ui/
|
796
|
+
#: ../lib/alexandria/ui/export_dialog.rb:72
|
745
797
|
msgid "Export for_mat:"
|
746
798
|
msgstr "For_mat d'export :"
|
747
799
|
|
748
|
-
#: ../lib/alexandria/ui/
|
800
|
+
#: ../lib/alexandria/ui/export_dialog.rb:99
|
801
|
+
msgid "Export failed"
|
802
|
+
msgstr "L'export a echoué"
|
803
|
+
|
804
|
+
#: ../lib/alexandria/ui/export_dialog.rb:122
|
749
805
|
msgid ""
|
750
806
|
"The target, named '%s', is a regular file. A directory is needed for this "
|
751
807
|
"operation. Please select a directory and try again."
|
@@ -753,41 +809,91 @@ msgstr ""
|
|
753
809
|
"La cible, nommé '%s', est un fichier régulier. Un répertoire est nécessaire "
|
754
810
|
"pour cette opération. Veuillez sélectionner un répertoire et ré-essayez."
|
755
811
|
|
756
|
-
#: ../lib/alexandria/ui/
|
812
|
+
#: ../lib/alexandria/ui/export_dialog.rb:126
|
757
813
|
msgid "Not a directory"
|
758
814
|
msgstr "Répertoire nécessaire"
|
759
815
|
|
760
|
-
#: ../lib/alexandria/ui/
|
816
|
+
#: ../lib/alexandria/ui/import_dialog.rb:23
|
817
|
+
msgid "Import a Library"
|
818
|
+
msgstr "Importer une bibliothèque"
|
819
|
+
|
820
|
+
#: ../lib/alexandria/ui/import_dialog.rb:30
|
821
|
+
msgid "_Import"
|
822
|
+
msgstr "_Importer"
|
823
|
+
|
824
|
+
#: ../lib/alexandria/ui/import_dialog.rb:134
|
825
|
+
msgid "Couldn't import the library"
|
826
|
+
msgstr "Impossible d'importer le livre"
|
827
|
+
|
828
|
+
#: ../lib/alexandria/ui/import_dialog.rb:135
|
829
|
+
msgid ""
|
830
|
+
"The format of the file you provided is unknown. Please retry with another "
|
831
|
+
"file."
|
832
|
+
msgstr ""
|
833
|
+
"Le format du fichier que vous fournissez est inconnu. Veuillez ré-essayer "
|
834
|
+
"avec un autre fichier."
|
835
|
+
|
836
|
+
#: ../lib/alexandria/ui/init.rb:69
|
837
|
+
msgid "Unable to launch the help browser"
|
838
|
+
msgstr "Impossible de démarrer l' aide du navigateur "
|
839
|
+
|
840
|
+
#: ../lib/alexandria/ui/init.rb:70
|
841
|
+
msgid ""
|
842
|
+
"Could not display help for Alexandria. There was an error launching the "
|
843
|
+
"system help browser."
|
844
|
+
msgstr ""
|
845
|
+
"On n'a pas pu afficher de l'aide pour Alexandria. Une erreur est apparue "
|
846
|
+
"lors du chargement du système aide du navigateur."
|
847
|
+
|
848
|
+
#: ../lib/alexandria/ui/keep_bad_isbn_dialog.rb:16
|
761
849
|
msgid "Invalid ISBN '%s'"
|
762
850
|
msgstr "ISBN '%s' invalide"
|
763
851
|
|
764
|
-
#: ../lib/alexandria/ui/
|
765
|
-
|
766
|
-
msgstr "_Préserver"
|
767
|
-
|
768
|
-
#: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:36
|
852
|
+
#: ../lib/alexandria/ui/keep_bad_isbn_dialog.rb:18
|
853
|
+
#, fuzzy
|
769
854
|
msgid ""
|
770
855
|
"The book titled '%s' has an invalid ISBN, but still exists in the providers "
|
771
|
-
"libraries.
|
772
|
-
"
|
856
|
+
"libraries. Do you want to keep the book but change the ISBN or cancel the "
|
857
|
+
"addition?"
|
773
858
|
msgstr ""
|
774
859
|
"Le livre nommé '%s' contient un ISBN invalide, mais existe néanmoins dans "
|
775
860
|
"les bibliothèques des fournisseurs. Désirez-vous préserver le livre en "
|
776
861
|
"changeant l'ISBN ou annuler l'ajout ?"
|
777
862
|
|
778
|
-
#: ../lib/alexandria/ui/
|
863
|
+
#: ../lib/alexandria/ui/keep_bad_isbn_dialog.rb:24
|
864
|
+
msgid "_Keep"
|
865
|
+
msgstr "_Préserver"
|
866
|
+
|
867
|
+
#: ../lib/alexandria/ui/libraries_combo.rb:41
|
868
|
+
msgid "New Library"
|
869
|
+
msgstr "Nouvelle bibliothèque"
|
870
|
+
|
871
|
+
#: ../lib/alexandria/ui/listview.rb:56
|
872
|
+
#, fuzzy
|
873
|
+
msgid "Loaned To"
|
874
|
+
msgstr "Prêts"
|
875
|
+
|
876
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:153
|
779
877
|
msgid "A problem occurred while downloading images"
|
780
878
|
msgstr "Un problème est survenu lors du téléchargement des images"
|
781
879
|
|
782
|
-
#: ../lib/alexandria/ui/
|
880
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:193
|
881
|
+
msgid "Iter is invalid! %s"
|
882
|
+
msgstr ""
|
883
|
+
|
884
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:267
|
783
885
|
msgid "Unable to find matches for your search"
|
784
886
|
msgstr "Impossible de trouver des correspondances pour votre recherche"
|
785
887
|
|
786
|
-
#: ../lib/alexandria/ui/
|
888
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:303
|
787
889
|
msgid "%s, by %s"
|
788
890
|
msgstr "%s, par %s"
|
789
891
|
|
790
|
-
#: ../lib/alexandria/ui/
|
892
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:309
|
893
|
+
msgid "Copying %s into tree view."
|
894
|
+
msgstr ""
|
895
|
+
|
896
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:337
|
791
897
|
msgid ""
|
792
898
|
"Couldn't validate the EAN/ISBN you provided. Make sure it is written "
|
793
899
|
"correctly, and try again."
|
@@ -795,499 +901,400 @@ msgstr ""
|
|
795
901
|
"Impossible de valider la donnée EAN/ISBN que vous avez fournie. Vérifiez "
|
796
902
|
"qu'elle est écrite correctement, et ré-essayez."
|
797
903
|
|
798
|
-
#: ../lib/alexandria/ui/
|
904
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:466
|
905
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:119
|
906
|
+
msgid "Couldn't add the book"
|
907
|
+
msgstr "Impossible d'ajouter le livre"
|
908
|
+
|
909
|
+
#: ../lib/alexandria/ui/new_book_dialog.rb:572
|
799
910
|
msgid "'%s' already exists in '%s' (titled '%s')."
|
800
911
|
msgstr " '%s' existe déjà dans '%s' (titré '%s' )."
|
801
912
|
|
802
|
-
#: ../lib/alexandria/ui/
|
803
|
-
|
804
|
-
|
913
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:50
|
914
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:32
|
915
|
+
msgid "Adding a Book"
|
916
|
+
msgstr "Ajout d'un livre"
|
805
917
|
|
806
|
-
#: ../lib/alexandria/ui/
|
807
|
-
msgid "
|
808
|
-
msgstr "
|
918
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:52
|
919
|
+
msgid "Adding '%s'"
|
920
|
+
msgstr "Ajout de '%s'"
|
809
921
|
|
810
|
-
#: ../lib/alexandria/ui/
|
811
|
-
msgid "
|
812
|
-
msgstr "
|
922
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:67
|
923
|
+
msgid "A title must be provided."
|
924
|
+
msgstr "Un titre doit être fourni."
|
925
|
+
|
926
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:83
|
927
|
+
msgid "A publisher must be provided."
|
928
|
+
msgstr "Un éditeur doit être fourni."
|
929
|
+
|
930
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:89
|
931
|
+
msgid "A binding must be provided."
|
932
|
+
msgstr "Une édition doit être fournie."
|
933
|
+
|
934
|
+
#: ../lib/alexandria/ui/new_book_dialog_manual.rb:95
|
935
|
+
msgid "At least one author must be provided."
|
936
|
+
msgstr "Au moins un auteur doit être fourni."
|
937
|
+
|
938
|
+
#: ../lib/alexandria/ui/new_provider_dialog.rb:16
|
939
|
+
msgid "New Provider"
|
940
|
+
msgstr "Nouveau fournisseur"
|
941
|
+
|
942
|
+
#: ../lib/alexandria/ui/new_provider_dialog.rb:31
|
943
|
+
msgid "_Name:"
|
944
|
+
msgstr "_Nom:"
|
945
|
+
|
946
|
+
#: ../lib/alexandria/ui/new_provider_dialog.rb:43
|
947
|
+
msgid "_Type:"
|
948
|
+
msgstr "_Type:"
|
949
|
+
|
950
|
+
#: ../lib/alexandria/ui/new_smart_library_dialog.rb:19
|
951
|
+
msgid "New Smart Library"
|
952
|
+
msgstr "Nouvelle bibliothèque intelligente"
|
953
|
+
|
954
|
+
#: ../lib/alexandria/ui/new_smart_library_dialog.rb:55
|
955
|
+
msgid "Smart Library"
|
956
|
+
msgstr "Bibliothèque intelligente"
|
957
|
+
|
958
|
+
#: ../lib/alexandria/ui/preferences_dialog.rb:207
|
959
|
+
msgid "Are you sure you want to permanently delete the provider '%s'?"
|
960
|
+
msgstr ""
|
961
|
+
"Êtes-vous sûr de vouloir supprimer de manière permanente le "
|
962
|
+
"fournisseur '%s' ?"
|
963
|
+
|
964
|
+
#: ../lib/alexandria/ui/preferences_dialog.rb:215
|
965
|
+
msgid ""
|
966
|
+
"If you continue, the provider and all of its preferences will be permanently "
|
967
|
+
"deleted."
|
968
|
+
msgstr ""
|
969
|
+
"Si vous continuez, le fournisseur ainsi que toutes ses préférences seront "
|
970
|
+
"supprimés de manière permanente."
|
971
|
+
|
972
|
+
#: ../lib/alexandria/ui/provider_preferences_dialog.rb:16
|
973
|
+
msgid "Preferences for %s"
|
974
|
+
msgstr "Préférences pour %s"
|
813
975
|
|
814
|
-
#: ../lib/alexandria/ui/
|
976
|
+
#: ../lib/alexandria/ui/really_delete_dialog.rb:18
|
815
977
|
msgid "Are you sure you want to delete '%s'?"
|
816
978
|
msgstr "Êtes-vous sûr de vouloir supprimer de manière permanente '%s' ?"
|
817
979
|
|
818
|
-
#: ../lib/alexandria/ui/
|
980
|
+
#: ../lib/alexandria/ui/really_delete_dialog.rb:22
|
819
981
|
msgid "If you continue, %d book will be deleted."
|
820
982
|
msgid_plural "If you continue, %d books will be deleted."
|
821
983
|
msgstr[0] "Si vous continuez, %d sera supprimé de manière permanente."
|
822
984
|
msgstr[1] ""
|
823
985
|
"Si vous continuez, %d livres seront supprimés de manière permanente."
|
824
986
|
|
825
|
-
#: ../lib/alexandria/ui/
|
987
|
+
#: ../lib/alexandria/ui/really_delete_dialog.rb:29
|
826
988
|
msgid "Are you sure you want to delete '%s' from '%s'?"
|
827
989
|
msgstr "Êtes-vous sûr de vouloir supprimer de manière permanente '%s' de '%s'?"
|
828
990
|
|
829
|
-
#: ../lib/alexandria/ui/
|
991
|
+
#: ../lib/alexandria/ui/really_delete_dialog.rb:32
|
830
992
|
msgid "Are you sure you want to delete the selected books from '%s'?"
|
831
993
|
msgstr ""
|
832
994
|
"Êtes-vous sûr de vouloir supprimer de manière permanente les livres "
|
833
995
|
"sélectionnés de '%s' ?"
|
834
996
|
|
835
|
-
#: ../lib/alexandria/ui/
|
997
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:54
|
836
998
|
msgid "Invalid library name '%s'"
|
837
999
|
msgstr "Nom de bibliothèque invalide '%s'"
|
838
1000
|
|
839
|
-
#: ../lib/alexandria/ui/
|
1001
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:55
|
840
1002
|
#, fuzzy
|
841
|
-
msgid "The name provided contains the disallowed character <b>%s</b>
|
1003
|
+
msgid "The name provided contains the disallowed character <b>%s</b>"
|
842
1004
|
msgstr "Le nom entré contient le caractère invalide '<i>%s</i>'."
|
843
1005
|
|
844
|
-
#: ../lib/alexandria/ui/
|
1006
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:58
|
845
1007
|
#, fuzzy
|
846
1008
|
msgid "Invalid library name"
|
847
1009
|
msgstr "Nom de bibliothèque invalide '%s'"
|
848
1010
|
|
849
|
-
#: ../lib/alexandria/ui/
|
1011
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:59
|
850
1012
|
#, fuzzy
|
851
1013
|
msgid "The name provided contains invalid characters."
|
852
1014
|
msgstr "Le nom entré contient le caractère invalide '<i>%s</i>'."
|
853
1015
|
|
854
|
-
#: ../lib/alexandria/ui/
|
1016
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:65
|
855
1017
|
msgid "The library name can not be empty"
|
856
1018
|
msgstr "Le nom de la bibliothèque ne peut être blanc"
|
857
1019
|
|
858
|
-
#: ../lib/alexandria/ui/
|
1020
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:70
|
859
1021
|
msgid "The library can not be renamed"
|
860
1022
|
msgstr "La bibliothèque ne peut être renommée"
|
861
1023
|
|
862
|
-
#: ../lib/alexandria/ui/
|
1024
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:71
|
863
1025
|
msgid "There is already a library named '%s'. Please choose a different name."
|
864
1026
|
msgstr ""
|
865
1027
|
"Il existe déjà une bibliothèque portant le nom '%s'. Veuillez choisir un "
|
866
1028
|
"nom différent."
|
867
1029
|
|
868
|
-
#: ../lib/alexandria/ui/
|
1030
|
+
#: ../lib/alexandria/ui/sidepane_manager.rb:96
|
869
1031
|
msgid "Library"
|
870
1032
|
msgstr "Bibliothèque"
|
871
1033
|
|
872
|
-
#: ../lib/alexandria/ui/
|
873
|
-
msgid "
|
874
|
-
msgstr "
|
875
|
-
|
876
|
-
#: ../lib/alexandria/ui/listview.rb:52 ../lib/alexandria/smart_library.rb:349
|
877
|
-
msgid "Title"
|
878
|
-
msgstr "Titre"
|
879
|
-
|
880
|
-
#: ../lib/alexandria/ui/listview.rb:105 ../lib/alexandria/smart_library.rb:351
|
881
|
-
msgid "Authors"
|
882
|
-
msgstr "Auteurs"
|
883
|
-
|
884
|
-
#: ../lib/alexandria/ui/listview.rb:106 ../lib/alexandria/smart_library.rb:350
|
885
|
-
msgid "ISBN"
|
886
|
-
msgstr "ISBN"
|
887
|
-
|
888
|
-
#: ../lib/alexandria/ui/listview.rb:107 ../lib/alexandria/smart_library.rb:352
|
889
|
-
msgid "Publisher"
|
890
|
-
msgstr "Éditeur"
|
891
|
-
|
892
|
-
#: ../lib/alexandria/ui/listview.rb:108 ../lib/alexandria/smart_library.rb:353
|
893
|
-
msgid "Publish Year"
|
894
|
-
msgstr "Année de publication"
|
895
|
-
|
896
|
-
#: ../lib/alexandria/ui/listview.rb:109 ../lib/alexandria/smart_library.rb:354
|
897
|
-
msgid "Binding"
|
898
|
-
msgstr "Édition"
|
899
|
-
|
900
|
-
#: ../lib/alexandria/ui/listview.rb:110
|
901
|
-
#, fuzzy
|
902
|
-
msgid "Loaned To"
|
903
|
-
msgstr "Prêts"
|
904
|
-
|
905
|
-
#: ../lib/alexandria/ui/listview.rb:113 ../lib/alexandria/smart_library.rb:104
|
906
|
-
#: ../lib/alexandria/smart_library.rb:361
|
907
|
-
msgid "Read"
|
908
|
-
msgstr "Lire"
|
909
|
-
|
910
|
-
#: ../lib/alexandria/ui/listview.rb:114 ../lib/alexandria/smart_library.rb:363
|
911
|
-
msgid "Own"
|
912
|
-
msgstr "Propriétaire"
|
913
|
-
|
914
|
-
#: ../lib/alexandria/ui/listview.rb:115 ../lib/alexandria/smart_library.rb:364
|
915
|
-
msgid "Want"
|
916
|
-
msgstr "Veut"
|
1034
|
+
#: ../lib/alexandria/ui/skip_entry_dialog.rb:17
|
1035
|
+
msgid "Error while importing"
|
1036
|
+
msgstr "Erreur pendant l'import"
|
917
1037
|
|
918
|
-
#: ../lib/alexandria/ui/
|
919
|
-
|
920
|
-
|
921
|
-
msgstr "Étiquettes"
|
1038
|
+
#: ../lib/alexandria/ui/skip_entry_dialog.rb:20
|
1039
|
+
msgid "_Continue"
|
1040
|
+
msgstr "_Continuer"
|
922
1041
|
|
923
|
-
#: ../lib/alexandria/ui/
|
924
|
-
msgid "
|
925
|
-
msgstr "
|
1042
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:96
|
1043
|
+
msgid "Empty or conflictive condition"
|
1044
|
+
msgstr "Vide ou condition générant des conflits"
|
926
1045
|
|
927
|
-
#: ../lib/alexandria/ui/
|
928
|
-
msgid "
|
929
|
-
msgstr "
|
1046
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:99
|
1047
|
+
msgid "_Save However"
|
1048
|
+
msgstr "_Sauvegarder quand même"
|
930
1049
|
|
931
|
-
#: ../lib/alexandria/ui/
|
1050
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
|
932
1051
|
msgid ""
|
933
|
-
"
|
934
|
-
"
|
935
|
-
|
936
|
-
"On n'a pas pu afficher de l'aide pour Alexandria. Une erreur est apparue "
|
937
|
-
"lors du chargement du système aide du navigateur."
|
938
|
-
|
939
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:37
|
940
|
-
msgid "Locale"
|
941
|
-
msgstr "Langue"
|
942
|
-
|
943
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:38
|
944
|
-
msgid "Access key ID"
|
945
|
-
msgstr ""
|
946
|
-
|
947
|
-
#: ../lib/alexandria/book_providers/amazon_aws.rb:39
|
948
|
-
msgid "Secret access key"
|
1052
|
+
"This smart library contains one or more conditions which are empty or "
|
1053
|
+
"conflict with each other. This is likely to result in never matching a book. "
|
1054
|
+
"Are you sure you want to save this library?"
|
949
1055
|
msgstr ""
|
1056
|
+
"Cette bibliothèque intelligente contient une ou plusieurs conditions qui "
|
1057
|
+
"sont vides ou en conflits entre elles. Cela provient probablement d'un livre "
|
1058
|
+
"qui ne correspondra jamais. Êtes-vous sûr de vouloir sauvegarder cette "
|
1059
|
+
"bibliothèque ?"
|
950
1060
|
|
951
|
-
#: ../lib/alexandria/
|
952
|
-
msgid "
|
953
|
-
msgstr "
|
954
|
-
|
955
|
-
#: ../lib/alexandria/book_providers/z3950.rb:34
|
956
|
-
msgid "Hostname"
|
957
|
-
msgstr "Nom d'hôte"
|
958
|
-
|
959
|
-
#: ../lib/alexandria/book_providers/z3950.rb:35
|
960
|
-
msgid "Port"
|
961
|
-
msgstr "Port"
|
962
|
-
|
963
|
-
#: ../lib/alexandria/book_providers/z3950.rb:36
|
964
|
-
msgid "Database"
|
965
|
-
msgstr "Base de données"
|
966
|
-
|
967
|
-
#: ../lib/alexandria/book_providers/z3950.rb:37
|
968
|
-
msgid "Record syntax"
|
969
|
-
msgstr "Format"
|
970
|
-
|
971
|
-
#: ../lib/alexandria/book_providers/z3950.rb:38
|
972
|
-
msgid "Username"
|
973
|
-
msgstr "Utilisateur"
|
974
|
-
|
975
|
-
#: ../lib/alexandria/book_providers/z3950.rb:39
|
976
|
-
msgid "Password"
|
977
|
-
msgstr "Mot de passe"
|
978
|
-
|
979
|
-
#: ../lib/alexandria/book_providers/z3950.rb:40
|
980
|
-
msgid "Charset encoding"
|
981
|
-
msgstr "Charset encodant"
|
982
|
-
|
983
|
-
#: ../lib/alexandria/book_providers/z3950.rb:221
|
984
|
-
msgid "Library of Congress (Usa)"
|
985
|
-
msgstr "Bibliothèque du Congrès (États-Unis)"
|
986
|
-
|
987
|
-
#: ../lib/alexandria/book_providers/z3950.rb:255
|
988
|
-
msgid "British Library"
|
989
|
-
msgstr "Bibliothèque britannique"
|
990
|
-
|
991
|
-
#: ../lib/alexandria/export_library.rb:109
|
992
|
-
msgid "Archived ONIX XML"
|
993
|
-
msgstr "Archive ONIX XML"
|
994
|
-
|
995
|
-
#: ../lib/alexandria/export_library.rb:111
|
996
|
-
msgid "Archived Tellico XML"
|
997
|
-
msgstr "Archive Tellico XML"
|
998
|
-
|
999
|
-
#: ../lib/alexandria/export_library.rb:113
|
1000
|
-
msgid "BibTeX"
|
1001
|
-
msgstr "BibTex"
|
1002
|
-
|
1003
|
-
#: ../lib/alexandria/export_library.rb:114
|
1004
|
-
msgid "CSV list"
|
1005
|
-
msgstr "Liste CSV"
|
1006
|
-
|
1007
|
-
#: ../lib/alexandria/export_library.rb:115
|
1008
|
-
msgid "ISBN List"
|
1009
|
-
msgstr "Liste d'ISBNs"
|
1010
|
-
|
1011
|
-
#: ../lib/alexandria/export_library.rb:116
|
1012
|
-
msgid "iPod Notes"
|
1013
|
-
msgstr "Notes de l' iPod"
|
1014
|
-
|
1015
|
-
#: ../lib/alexandria/export_library.rb:117
|
1016
|
-
msgid "HTML Web Page"
|
1017
|
-
msgstr "Page Web HTML"
|
1018
|
-
|
1019
|
-
#: ../lib/alexandria/smart_library.rb:92
|
1020
|
-
msgid "Favorite"
|
1021
|
-
msgstr "Favoris"
|
1022
|
-
|
1023
|
-
#: ../lib/alexandria/smart_library.rb:98
|
1024
|
-
msgid "Loaned"
|
1025
|
-
msgstr "Prêts"
|
1026
|
-
|
1027
|
-
#: ../lib/alexandria/smart_library.rb:110
|
1028
|
-
msgid "Owned"
|
1029
|
-
msgstr "Acquis"
|
1061
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:117
|
1062
|
+
msgid "Match"
|
1063
|
+
msgstr "Correspond"
|
1030
1064
|
|
1031
|
-
#: ../lib/alexandria/
|
1032
|
-
msgid "
|
1033
|
-
msgstr "
|
1065
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
|
1066
|
+
msgid "all"
|
1067
|
+
msgstr "toutes"
|
1034
1068
|
|
1035
|
-
#: ../lib/alexandria/
|
1036
|
-
|
1037
|
-
|
1038
|
-
msgstr "Notes"
|
1069
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
|
1070
|
+
msgid "any"
|
1071
|
+
msgstr "aucunes"
|
1039
1072
|
|
1040
|
-
#: ../lib/alexandria/
|
1041
|
-
msgid "
|
1042
|
-
msgstr "
|
1073
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:130
|
1074
|
+
msgid "of the following rules:"
|
1075
|
+
msgstr "des règles suivantes : "
|
1043
1076
|
|
1044
|
-
#: ../lib/alexandria/
|
1045
|
-
msgid "
|
1046
|
-
msgstr "
|
1077
|
+
#: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:138
|
1078
|
+
msgid "Match the following rule:"
|
1079
|
+
msgstr "Correspond à la règle suivante : "
|
1047
1080
|
|
1048
|
-
#: ../lib/alexandria/
|
1049
|
-
msgid "
|
1050
|
-
msgstr "
|
1081
|
+
#: ../lib/alexandria/ui/ui_manager.rb:130
|
1082
|
+
msgid "Type here the search criterion"
|
1083
|
+
msgstr "Tapez ici le critère de recherche"
|
1051
1084
|
|
1052
|
-
#: ../lib/alexandria/
|
1053
|
-
msgid "
|
1054
|
-
msgstr "
|
1085
|
+
#: ../lib/alexandria/ui/ui_manager.rb:141
|
1086
|
+
msgid "Match everything"
|
1087
|
+
msgstr "Filtre tout"
|
1055
1088
|
|
1056
|
-
#: ../lib/alexandria/
|
1057
|
-
msgid "
|
1058
|
-
msgstr "
|
1089
|
+
#: ../lib/alexandria/ui/ui_manager.rb:143
|
1090
|
+
msgid "Title contains"
|
1091
|
+
msgstr "Le titre contient"
|
1059
1092
|
|
1060
|
-
#: ../lib/alexandria/
|
1061
|
-
msgid "
|
1062
|
-
msgstr "
|
1093
|
+
#: ../lib/alexandria/ui/ui_manager.rb:144
|
1094
|
+
msgid "Authors contain"
|
1095
|
+
msgstr "Les auteurs contiennent"
|
1063
1096
|
|
1064
|
-
#: ../lib/alexandria/
|
1065
|
-
msgid "
|
1066
|
-
msgstr "
|
1097
|
+
#: ../lib/alexandria/ui/ui_manager.rb:145
|
1098
|
+
msgid "ISBN contains"
|
1099
|
+
msgstr "L'ISBN contient"
|
1067
1100
|
|
1068
|
-
#: ../lib/alexandria/
|
1069
|
-
msgid "
|
1070
|
-
msgstr "
|
1101
|
+
#: ../lib/alexandria/ui/ui_manager.rb:146
|
1102
|
+
msgid "Publisher contains"
|
1103
|
+
msgstr "L'éditeur contient"
|
1071
1104
|
|
1072
|
-
#: ../lib/alexandria/
|
1073
|
-
msgid "
|
1074
|
-
msgstr "
|
1105
|
+
#: ../lib/alexandria/ui/ui_manager.rb:147
|
1106
|
+
msgid "Notes contain"
|
1107
|
+
msgstr "Les notes contiennent"
|
1075
1108
|
|
1076
|
-
#: ../lib/alexandria/
|
1077
|
-
msgid "
|
1078
|
-
msgstr "
|
1109
|
+
#: ../lib/alexandria/ui/ui_manager.rb:148
|
1110
|
+
msgid "Tags contain"
|
1111
|
+
msgstr "Les étiquettes contiennent"
|
1079
1112
|
|
1080
|
-
#: ../lib/alexandria/
|
1081
|
-
msgid "
|
1082
|
-
msgstr "
|
1113
|
+
#: ../lib/alexandria/ui/ui_manager.rb:162
|
1114
|
+
msgid "Change the search type"
|
1115
|
+
msgstr "Change le type de recherche."
|
1083
1116
|
|
1084
|
-
#: ../lib/alexandria/
|
1085
|
-
msgid "
|
1086
|
-
msgstr "
|
1117
|
+
#: ../lib/alexandria/ui/ui_manager.rb:167
|
1118
|
+
msgid "View as Icons"
|
1119
|
+
msgstr "Voir en tant qu'icônes"
|
1087
1120
|
|
1088
|
-
#: ../lib/alexandria/
|
1089
|
-
msgid "
|
1090
|
-
msgstr "
|
1121
|
+
#: ../lib/alexandria/ui/ui_manager.rb:168
|
1122
|
+
msgid "View as List"
|
1123
|
+
msgstr "Voir en tant que liste"
|
1091
1124
|
|
1092
|
-
#: ../lib/alexandria/
|
1093
|
-
msgid "
|
1094
|
-
msgstr "
|
1125
|
+
#: ../lib/alexandria/ui/ui_manager.rb:181
|
1126
|
+
msgid "Choose how to show books"
|
1127
|
+
msgstr "Choix de la méthode d'affichage des livres"
|
1095
1128
|
|
1096
|
-
#: ../lib/alexandria/
|
1097
|
-
msgid "
|
1098
|
-
msgstr "
|
1129
|
+
#: ../lib/alexandria/ui/ui_manager.rb:400
|
1130
|
+
msgid "Library '%s' selected"
|
1131
|
+
msgstr "Bibliothèque '%s' sélectionnée"
|
1099
1132
|
|
1100
|
-
#: ../lib/alexandria/
|
1101
|
-
msgid "
|
1102
|
-
|
1133
|
+
#: ../lib/alexandria/ui/ui_manager.rb:405
|
1134
|
+
msgid "Library '%s' selected, %d unrated book"
|
1135
|
+
msgid_plural "Library '%s' selected, %d unrated books"
|
1136
|
+
msgstr[0] "Bibliothèque '%s' sélectionnée, %d livre non-noté"
|
1137
|
+
msgstr[1] "Bibliothèque '%s' sélectionnée, %d livres non-notés"
|
1103
1138
|
|
1104
|
-
#: ../lib/alexandria/
|
1105
|
-
msgid "
|
1106
|
-
|
1139
|
+
#: ../lib/alexandria/ui/ui_manager.rb:409
|
1140
|
+
msgid "Library '%s' selected, %d book"
|
1141
|
+
msgid_plural "Library '%s' selected, %d books"
|
1142
|
+
msgstr[0] "Bibliothèque '%s' sélectionnée, %d livre"
|
1143
|
+
msgstr[1] "Bibliothèque '%s' sélectionnée, %d livres"
|
1107
1144
|
|
1108
|
-
#: ../lib/alexandria/
|
1109
|
-
msgid "
|
1110
|
-
|
1145
|
+
#: ../lib/alexandria/ui/ui_manager.rb:413
|
1146
|
+
msgid "Library '%s' selected, %d book, %d unrated"
|
1147
|
+
msgid_plural "Library '%s' selected, %d books, %d unrated"
|
1148
|
+
msgstr[0] "Bibliothèque '%s' sélectionnée, %d livre, %d non-noté"
|
1149
|
+
msgstr[1] "Bibliothèque « %s » sélectionnée, %d livres, %d non-notés"
|
1111
1150
|
|
1112
|
-
#: ../lib/alexandria/
|
1113
|
-
msgid "
|
1114
|
-
msgstr "
|
1151
|
+
#: ../lib/alexandria/ui/ui_manager.rb:427
|
1152
|
+
msgid "'%s' selected"
|
1153
|
+
msgstr " '%s' sélectionné"
|
1115
1154
|
|
1116
|
-
#: ../lib/alexandria/
|
1117
|
-
msgid "
|
1118
|
-
|
1155
|
+
#: ../lib/alexandria/ui/ui_manager.rb:429
|
1156
|
+
msgid "%d book selected"
|
1157
|
+
msgid_plural "%d books selected"
|
1158
|
+
msgstr[0] "%d livre sélectionné"
|
1159
|
+
msgstr[1] "%d livres sélectionnés"
|
1119
1160
|
|
1120
|
-
#: ../lib/alexandria/
|
1121
|
-
msgid "
|
1122
|
-
msgstr "
|
1161
|
+
#: ../lib/alexandria/ui/ui_manager.rb:545
|
1162
|
+
msgid "unrecognized update event"
|
1163
|
+
msgstr ""
|
1123
1164
|
|
1124
|
-
#: ../lib/alexandria/
|
1125
|
-
|
1165
|
+
#: ../lib/alexandria/ui/ui_manager.rb:590
|
1166
|
+
#, fuzzy
|
1167
|
+
msgid "Loading libraries..."
|
1168
|
+
msgstr "À télécharger '%s' ..."
|
1169
|
+
|
1170
|
+
#: ../lib/alexandria/ui/ui_manager.rb:607
|
1126
1171
|
msgid ""
|
1127
|
-
"
|
1128
|
-
"
|
1172
|
+
"The data files for the following books are malformed or empty. Do you wish "
|
1173
|
+
"to attempt to download new information for them from the online book "
|
1174
|
+
"providers?\n"
|
1129
1175
|
msgstr ""
|
1130
|
-
"
|
1131
|
-
"
|
1176
|
+
"Les fichiers de données pour les livres suivants sont endommagés ou vides. "
|
1177
|
+
"Voulez-vous essayer le téléchargement d'une nouvelle information pour eux à "
|
1178
|
+
"partir des fournisseurs de livres chez internet?\n"
|
1132
1179
|
|
1133
|
-
#: ../lib/alexandria/
|
1134
|
-
msgid "
|
1135
|
-
msgstr "
|
1180
|
+
#: ../lib/alexandria/ui/ui_manager.rb:659
|
1181
|
+
msgid "Added '%s' to library '%s'"
|
1182
|
+
msgstr "Ajouté '%s' à la bibliothèque '%s'"
|
1136
1183
|
|
1137
|
-
#: ../lib/alexandria/
|
1138
|
-
msgid "
|
1139
|
-
msgstr "
|
1184
|
+
#: ../lib/alexandria/ui/ui_manager.rb:808
|
1185
|
+
msgid "Loading '%s'..."
|
1186
|
+
msgstr "À télécharger '%s' ..."
|
1140
1187
|
|
1141
|
-
#: ../lib/alexandria/
|
1142
|
-
msgid "
|
1188
|
+
#: ../lib/alexandria/ui/ui_manager.rb:1038
|
1189
|
+
msgid "In '_%s'"
|
1190
|
+
msgstr "Dans '_%s'"
|
1191
|
+
|
1192
|
+
#: ../lib/alexandria/web_themes.rb:64
|
1193
|
+
msgid "File %<file>s not found"
|
1143
1194
|
msgstr ""
|
1144
1195
|
|
1145
|
-
#: ../
|
1196
|
+
#: ../share/alexandria/glade/acquire_dialog__builder.glade:9
|
1146
1197
|
msgid "Acquire from Scanner"
|
1147
1198
|
msgstr "Utilisation de scanner"
|
1148
1199
|
|
1149
|
-
#: ../
|
1150
|
-
|
1200
|
+
#: ../share/alexandria/glade/acquire_dialog__builder.glade:91
|
1201
|
+
msgid "_Barcode Scanner Ready"
|
1202
|
+
msgstr "_Lecteur électronique de la barre de code prêt"
|
1203
|
+
|
1204
|
+
#: ../share/alexandria/glade/acquire_dialog__builder.glade:159
|
1205
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:171
|
1151
1206
|
msgid "Save _in:"
|
1152
1207
|
msgstr "Sauvegarder _dans :"
|
1153
1208
|
|
1154
|
-
#: ../
|
1155
|
-
msgid "
|
1156
|
-
msgstr "
|
1157
|
-
|
1158
|
-
#: ../data/alexandria/glade/main_app.glade:32
|
1159
|
-
msgid "Libraries listing."
|
1160
|
-
msgstr "Liste des bibliothèques."
|
1161
|
-
|
1162
|
-
#: ../data/alexandria/glade/main_app.glade:46
|
1163
|
-
msgid "_Libraries:"
|
1164
|
-
msgstr "_Bibliothèques:"
|
1209
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:18
|
1210
|
+
msgid "by title"
|
1211
|
+
msgstr "par titre"
|
1165
1212
|
|
1166
|
-
#: ../
|
1167
|
-
msgid "
|
1168
|
-
msgstr "
|
1213
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:21
|
1214
|
+
msgid "by authors"
|
1215
|
+
msgstr "par auteurs"
|
1169
1216
|
|
1170
|
-
#: ../
|
1171
|
-
msgid "
|
1172
|
-
msgstr "
|
1217
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:24
|
1218
|
+
msgid "by keyword"
|
1219
|
+
msgstr "par mot clef"
|
1173
1220
|
|
1174
|
-
#: ../
|
1221
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:115
|
1175
1222
|
msgid "_Keep Dialog Open after Adding Book"
|
1176
1223
|
msgstr ""
|
1177
1224
|
|
1178
|
-
#: ../
|
1179
|
-
msgid ""
|
1180
|
-
"by title\n"
|
1181
|
-
"by authors\n"
|
1182
|
-
"by keyword"
|
1183
|
-
msgstr ""
|
1184
|
-
"par titre\n"
|
1185
|
-
"par auteurs\n"
|
1186
|
-
"par mot clef"
|
1187
|
-
|
1188
|
-
#: ../data/alexandria/glade/new_book_dialog.glade:201
|
1225
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:285
|
1189
1226
|
msgid "_Search:"
|
1190
1227
|
msgstr "_Rechercher"
|
1191
1228
|
|
1192
|
-
#: ../
|
1193
|
-
#: ../
|
1229
|
+
#: ../share/alexandria/glade/new_book_dialog__builder.glade:301
|
1230
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:85
|
1194
1231
|
msgid "_ISBN:"
|
1195
1232
|
msgstr "_ISBN:"
|
1196
1233
|
|
1197
|
-
#: ../
|
1198
|
-
msgid "
|
1199
|
-
msgstr "
|
1200
|
-
|
1201
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:115
|
1202
|
-
msgid "_Publisher:"
|
1203
|
-
msgstr "_Éditeur:"
|
1204
|
-
|
1205
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:279
|
1206
|
-
msgid "Add an author"
|
1207
|
-
msgstr "Ajoute un auteur"
|
1208
|
-
|
1209
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:307
|
1210
|
-
msgid "Remove an author"
|
1211
|
-
msgstr "Supprime un auteur"
|
1212
|
-
|
1213
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:351
|
1214
|
-
msgid "_Authors:"
|
1215
|
-
msgstr "_Auteurs:"
|
1216
|
-
|
1217
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:380
|
1218
|
-
msgid "_Binding:"
|
1219
|
-
msgstr "É_dition:"
|
1220
|
-
|
1221
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:430
|
1222
|
-
msgid "Publish _year:"
|
1223
|
-
msgstr "_Année de publication :"
|
1224
|
-
|
1225
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:480
|
1226
|
-
msgid "Tags:"
|
1227
|
-
msgstr "Étiquettes:"
|
1228
|
-
|
1229
|
-
#: ../data/alexandria/glade/book_properties_dialog.glade:553
|
1230
|
-
msgid "_Cover:"
|
1231
|
-
msgstr "_Couverture:"
|
1234
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:8
|
1235
|
+
msgid "Preferences"
|
1236
|
+
msgstr "Préférences"
|
1232
1237
|
|
1233
|
-
#: ../
|
1234
|
-
msgid "
|
1235
|
-
msgstr "
|
1238
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:76
|
1239
|
+
msgid "<b>Visible Columns</b>"
|
1240
|
+
msgstr "<b>Colonnes visibles</b>"
|
1236
1241
|
|
1237
|
-
#: ../
|
1238
|
-
msgid "
|
1239
|
-
msgstr "
|
1242
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:95
|
1243
|
+
msgid "_Authors"
|
1244
|
+
msgstr "_Auteurs"
|
1240
1245
|
|
1241
|
-
#: ../
|
1242
|
-
msgid "
|
1243
|
-
msgstr "
|
1246
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:110
|
1247
|
+
msgid "_ISBN"
|
1248
|
+
msgstr "_ISBN"
|
1244
1249
|
|
1245
|
-
#: ../
|
1246
|
-
msgid "
|
1247
|
-
msgstr "
|
1250
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:125
|
1251
|
+
msgid "_Publisher"
|
1252
|
+
msgstr "É_diteur"
|
1248
1253
|
|
1249
|
-
#: ../
|
1250
|
-
msgid "
|
1251
|
-
msgstr "
|
1254
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:140
|
1255
|
+
msgid "_Rating"
|
1256
|
+
msgstr "_Notation"
|
1252
1257
|
|
1253
|
-
#: ../
|
1254
|
-
msgid "
|
1255
|
-
msgstr "
|
1258
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:155
|
1259
|
+
msgid "_Binding"
|
1260
|
+
msgstr "É_dition"
|
1256
1261
|
|
1257
|
-
#: ../
|
1258
|
-
msgid "
|
1259
|
-
msgstr "
|
1262
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:170
|
1263
|
+
msgid "Publish _year"
|
1264
|
+
msgstr "_Année de publication"
|
1260
1265
|
|
1261
|
-
#: ../
|
1262
|
-
msgid "
|
1263
|
-
msgstr "
|
1266
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:185
|
1267
|
+
msgid "Read?"
|
1268
|
+
msgstr "Lire?"
|
1264
1269
|
|
1265
|
-
#: ../
|
1266
|
-
msgid "
|
1267
|
-
msgstr "
|
1270
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:200
|
1271
|
+
msgid "Own?"
|
1272
|
+
msgstr "Possédez-vous?"
|
1268
1273
|
|
1269
|
-
#: ../
|
1270
|
-
msgid "
|
1271
|
-
msgstr "
|
1274
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:215
|
1275
|
+
msgid "Want?"
|
1276
|
+
msgstr "Voulez-vous?"
|
1272
1277
|
|
1273
|
-
#: ../
|
1274
|
-
|
1275
|
-
|
1278
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:245
|
1279
|
+
#, fuzzy
|
1280
|
+
msgid "Loaned to"
|
1281
|
+
msgstr "Prêts"
|
1276
1282
|
|
1277
|
-
#: ../
|
1278
|
-
|
1279
|
-
|
1283
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:271
|
1284
|
+
#, fuzzy
|
1285
|
+
msgid "_List View"
|
1286
|
+
msgstr "Vue en liste"
|
1280
1287
|
|
1281
|
-
#: ../
|
1288
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:290
|
1282
1289
|
#, fuzzy
|
1283
1290
|
msgid "<b>Book Data Providers</b>"
|
1284
1291
|
msgstr "<b>_Fournisseurs</b>"
|
1285
1292
|
|
1286
|
-
#: ../
|
1293
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:372
|
1287
1294
|
msgid "_Setup"
|
1288
1295
|
msgstr "_Configurer"
|
1289
1296
|
|
1290
|
-
#: ../
|
1297
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:474
|
1291
1298
|
msgid ""
|
1292
1299
|
"Providers are libraries that supply information about books. Some of them "
|
1293
1300
|
"can be configured to get better results. You can also customize the order "
|
@@ -1298,70 +1305,124 @@ msgstr ""
|
|
1298
1305
|
"meilleurs résultats. Vous pouvez également personnaliser l'ordre dans "
|
1299
1306
|
"lequel ils seront interrogés."
|
1300
1307
|
|
1301
|
-
#: ../
|
1308
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:486
|
1302
1309
|
msgid "Custom _Z39.50 Providers"
|
1303
1310
|
msgstr ""
|
1304
1311
|
|
1305
|
-
#: ../
|
1312
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:490
|
1306
1313
|
msgid ""
|
1307
1314
|
"Add and remove your own Z39.50 providers.\n"
|
1308
1315
|
"Requires the Ruby/ZOOM software library."
|
1309
1316
|
msgstr ""
|
1310
1317
|
|
1311
|
-
#: ../
|
1318
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:511
|
1312
1319
|
#, fuzzy
|
1313
1320
|
msgid "_Providers"
|
1314
1321
|
msgstr "Fournisseurs"
|
1315
1322
|
|
1316
|
-
#: ../
|
1317
|
-
|
1318
|
-
|
1323
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:537
|
1324
|
+
#, fuzzy
|
1325
|
+
msgid "<b>Barcode Scanner Device</b>"
|
1326
|
+
msgstr "_Lecteur électronique de la barre de code prêt"
|
1319
1327
|
|
1320
|
-
#: ../
|
1321
|
-
msgid "
|
1322
|
-
msgstr "
|
1328
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:556
|
1329
|
+
msgid "_Device type:"
|
1330
|
+
msgstr ""
|
1323
1331
|
|
1324
|
-
#: ../
|
1325
|
-
msgid "
|
1326
|
-
msgstr "
|
1332
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:602
|
1333
|
+
msgid "<b>Sound Effects</b>"
|
1334
|
+
msgstr ""
|
1327
1335
|
|
1328
|
-
#: ../
|
1329
|
-
|
1330
|
-
|
1336
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:618
|
1337
|
+
#, fuzzy
|
1338
|
+
msgid "Scanning"
|
1339
|
+
msgstr "Prêt"
|
1331
1340
|
|
1332
|
-
#: ../
|
1333
|
-
msgid "
|
1334
|
-
msgstr "
|
1341
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:632
|
1342
|
+
msgid "Good Scan / Bad Scan"
|
1343
|
+
msgstr ""
|
1335
1344
|
|
1336
|
-
#: ../
|
1337
|
-
|
1338
|
-
|
1345
|
+
#: ../share/alexandria/glade/preferences_dialog__builder.glade:667
|
1346
|
+
#, fuzzy
|
1347
|
+
msgid "_Barcode Scanner"
|
1348
|
+
msgstr "_Lecteur électronique de la barre de code prêt"
|
1339
1349
|
|
1340
|
-
#: ../
|
1341
|
-
msgid "
|
1342
|
-
msgstr "
|
1350
|
+
#: ../share/alexandria/glade/main_app__builder.glade:48
|
1351
|
+
msgid "_Libraries:"
|
1352
|
+
msgstr "_Bibliothèques:"
|
1343
1353
|
|
1344
|
-
#: ../
|
1345
|
-
msgid "
|
1346
|
-
msgstr "
|
1354
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:60
|
1355
|
+
msgid "_Title:"
|
1356
|
+
msgstr "_Titre:"
|
1347
1357
|
|
1348
|
-
#: ../
|
1349
|
-
msgid "
|
1350
|
-
msgstr "
|
1358
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:199
|
1359
|
+
msgid "_Authors:"
|
1360
|
+
msgstr "_Auteurs:"
|
1351
1361
|
|
1352
|
-
#: ../
|
1353
|
-
msgid "
|
1354
|
-
msgstr "
|
1362
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:213
|
1363
|
+
msgid "Tags:"
|
1364
|
+
msgstr "Étiquettes:"
|
1355
1365
|
|
1356
|
-
#: ../
|
1357
|
-
|
1358
|
-
|
1359
|
-
|
1366
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:245
|
1367
|
+
msgid "_Binding:"
|
1368
|
+
msgstr "É_dition:"
|
1369
|
+
|
1370
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:258
|
1371
|
+
msgid "Publish _year:"
|
1372
|
+
msgstr "_Année de publication :"
|
1373
|
+
|
1374
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:292
|
1375
|
+
msgid "_Publisher:"
|
1376
|
+
msgstr "_Éditeur:"
|
1377
|
+
|
1378
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:333
|
1379
|
+
msgid "_Cover:"
|
1380
|
+
msgstr "_Couverture:"
|
1381
|
+
|
1382
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:526
|
1383
|
+
msgid "Rating:"
|
1384
|
+
msgstr "Notation :"
|
1360
1385
|
|
1361
|
-
#: ../
|
1386
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:539
|
1387
|
+
msgid "Want it?"
|
1388
|
+
msgstr "Le voulez-vous?"
|
1389
|
+
|
1390
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:555
|
1391
|
+
msgid "Read it?"
|
1392
|
+
msgstr "Lisez-le?"
|
1393
|
+
|
1394
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:576
|
1362
1395
|
#, fuzzy
|
1363
|
-
msgid "
|
1364
|
-
msgstr "
|
1396
|
+
msgid "Select Date"
|
1397
|
+
msgstr "_Tout sélectionner"
|
1398
|
+
|
1399
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:577
|
1400
|
+
msgid "Clear Date"
|
1401
|
+
msgstr ""
|
1402
|
+
|
1403
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:587
|
1404
|
+
msgid "Own it?"
|
1405
|
+
msgstr "C'est à vous?"
|
1406
|
+
|
1407
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:615
|
1408
|
+
msgid "General"
|
1409
|
+
msgstr "Général"
|
1410
|
+
|
1411
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:630
|
1412
|
+
msgid "This book is _loaned"
|
1413
|
+
msgstr "Ce livre est _prêté"
|
1414
|
+
|
1415
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:679
|
1416
|
+
msgid "_To:"
|
1417
|
+
msgstr "_À :"
|
1418
|
+
|
1419
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:693
|
1420
|
+
msgid "_Since:"
|
1421
|
+
msgstr "_Depuis :"
|
1422
|
+
|
1423
|
+
#: ../share/alexandria/glade/book_properties_dialog__builder.glade:735
|
1424
|
+
msgid "Loaning"
|
1425
|
+
msgstr "Prêt"
|
1365
1426
|
|
1366
1427
|
#: ../alexandria.desktop.in.h:1
|
1367
1428
|
msgid "Alexandria Book Collection Manager"
|
@@ -1375,6 +1436,64 @@ msgstr "Gestionnaire de collection de livres"
|
|
1375
1436
|
msgid "Manage your book collection"
|
1376
1437
|
msgstr "Gérez votre collection de livres"
|
1377
1438
|
|
1439
|
+
#~ msgid "Unable to launch the web browser"
|
1440
|
+
#~ msgstr "Impossible de démarrer le navigateur Internet"
|
1441
|
+
|
1442
|
+
#~ msgid ""
|
1443
|
+
#~ "Check out that a web browser is configured as default (Desktop "
|
1444
|
+
#~ "Preferences -> Advanced -> Preferred Applications) and try again."
|
1445
|
+
#~ msgstr ""
|
1446
|
+
#~ "Vérifiez qu'un nativateur Internet est configuré par défaut (Préférences "
|
1447
|
+
#~ "du bureau -> Applications préférées) et ré-essayez encore."
|
1448
|
+
|
1449
|
+
#~ msgid "Unable to launch the mail reader"
|
1450
|
+
#~ msgstr "Impossible de démarrer le client de messagerie"
|
1451
|
+
|
1452
|
+
#~ msgid ""
|
1453
|
+
#~ "Check out that a mail reader is configured as default (Desktop "
|
1454
|
+
#~ "Preferences -> Advanced -> Preferred Applications) and try again."
|
1455
|
+
#~ msgstr ""
|
1456
|
+
#~ "Vérifiez qu'un client de messagerie est configuré par défaut (Préférences "
|
1457
|
+
#~ "du bureau -> Applications préférées) et ré-essayez encore."
|
1458
|
+
|
1459
|
+
#~ msgid "Repair Book Data"
|
1460
|
+
#~ msgstr "Répérer les données du livre"
|
1461
|
+
|
1462
|
+
#~ msgid "There's a problem"
|
1463
|
+
#~ msgstr "Il y a un problème"
|
1464
|
+
|
1465
|
+
#, fuzzy
|
1466
|
+
#~ msgid "Disable Provider"
|
1467
|
+
#~ msgstr "Nouveau fournisseur"
|
1468
|
+
|
1469
|
+
#, fuzzy
|
1470
|
+
#~ msgid "Enable Provider"
|
1471
|
+
#~ msgstr "Nouveau fournisseur"
|
1472
|
+
|
1473
|
+
#~ msgid "Main Window"
|
1474
|
+
#~ msgstr "Fenêtre Principale"
|
1475
|
+
|
1476
|
+
#~ msgid "Libraries listing."
|
1477
|
+
#~ msgstr "Liste des bibliothèques."
|
1478
|
+
|
1479
|
+
#~ msgid "Book listing."
|
1480
|
+
#~ msgstr "Liste des livres."
|
1481
|
+
|
1482
|
+
#~ msgid "Status messages."
|
1483
|
+
#~ msgstr "État des messages."
|
1484
|
+
|
1485
|
+
#~ msgid "Add an author"
|
1486
|
+
#~ msgstr "Ajoute un auteur"
|
1487
|
+
|
1488
|
+
#~ msgid "Remove an author"
|
1489
|
+
#~ msgstr "Supprime un auteur"
|
1490
|
+
|
1491
|
+
#~ msgid "Click to pick a cover"
|
1492
|
+
#~ msgstr "Cliquez pour choisir une couverture"
|
1493
|
+
|
1494
|
+
#~ msgid "Click on the stars to rate the book"
|
1495
|
+
#~ msgstr "Cliquer sur les étoiles pour noter le livre"
|
1496
|
+
|
1378
1497
|
#~ msgid "Language"
|
1379
1498
|
#~ msgstr "Langue"
|
1380
1499
|
|
@@ -1388,9 +1507,6 @@ msgstr "Gérez votre collection de livres"
|
|
1388
1507
|
#~ msgid "Couldn't add these books"
|
1389
1508
|
#~ msgstr "Impossible d'ajouter le livre"
|
1390
1509
|
|
1391
|
-
#~ msgid "Associate ID"
|
1392
|
-
#~ msgstr "Identifiant d'associé"
|
1393
|
-
|
1394
1510
|
#~ msgid "_Refresh"
|
1395
1511
|
#~ msgstr "_Rafraîchir"
|
1396
1512
|
|