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.
Files changed (200) hide show
  1. checksums.yaml +4 -4
  2. data/.github/dependabot.yml +9 -0
  3. data/.github/workflows/ruby.yml +77 -0
  4. data/.gitignore +5 -1
  5. data/.hound.yml +2 -0
  6. data/.rubocop.yml +87 -37
  7. data/.rubocop_todo.yml +62 -191
  8. data/.simplecov +5 -2
  9. data/CHANGELOG.md +63 -0
  10. data/Gemfile +4 -3
  11. data/INSTALL.md +26 -14
  12. data/README.md +52 -42
  13. data/Rakefile +93 -109
  14. data/TODO.md +9 -1
  15. data/alexandria-book-collection-manager.gemspec +50 -43
  16. data/bin/alexandria +30 -53
  17. data/doc/FAQ +2 -6
  18. data/doc/dependency_decisions.yml +27 -8
  19. data/lib/alexandria.rb +27 -37
  20. data/lib/alexandria/about.rb +50 -50
  21. data/lib/alexandria/book_providers.rb +90 -97
  22. data/lib/alexandria/book_providers/adlibris.rb +41 -76
  23. data/lib/alexandria/book_providers/amazon_aws.rb +96 -100
  24. data/lib/alexandria/book_providers/amazon_ecs_util.rb +295 -322
  25. data/lib/alexandria/book_providers/barnes_and_noble.rb +48 -45
  26. data/lib/alexandria/book_providers/douban.rb +26 -42
  27. data/lib/alexandria/book_providers/proxis.rb +44 -55
  28. data/lib/alexandria/book_providers/pseudomarc.rb +77 -85
  29. data/lib/alexandria/book_providers/siciliano.rb +64 -65
  30. data/lib/alexandria/book_providers/thalia.rb +42 -41
  31. data/lib/alexandria/book_providers/web.rb +15 -33
  32. data/lib/alexandria/book_providers/worldcat.rb +70 -97
  33. data/lib/alexandria/book_providers/z3950.rb +160 -173
  34. data/lib/alexandria/config.rb +1 -1
  35. data/lib/alexandria/console.rb +8 -21
  36. data/lib/alexandria/default_preferences.rb +37 -0
  37. data/lib/alexandria/execution_queue.rb +15 -13
  38. data/lib/alexandria/export_format.rb +47 -0
  39. data/lib/alexandria/export_library.rb +193 -300
  40. data/lib/alexandria/import_library.rb +108 -141
  41. data/lib/alexandria/import_library_csv.rb +43 -46
  42. data/lib/alexandria/library_collection.rb +79 -0
  43. data/lib/alexandria/library_sort_order.rb +45 -0
  44. data/lib/alexandria/library_store.rb +233 -0
  45. data/lib/alexandria/logging.rb +11 -13
  46. data/lib/alexandria/models/book.rb +13 -20
  47. data/lib/alexandria/models/library.rb +81 -353
  48. data/lib/alexandria/net.rb +5 -6
  49. data/lib/alexandria/preferences.rb +73 -87
  50. data/lib/alexandria/scanners.rb +2 -2
  51. data/lib/alexandria/scanners/{cuecat.rb → cue_cat.rb} +20 -18
  52. data/lib/alexandria/scanners/keyboard.rb +8 -8
  53. data/lib/alexandria/smart_library.rb +133 -170
  54. data/lib/alexandria/ui.rb +15 -15
  55. data/lib/alexandria/ui/about_dialog.rb +49 -0
  56. data/lib/alexandria/ui/{dialogs/acquire_dialog.rb → acquire_dialog.rb} +119 -136
  57. data/lib/alexandria/ui/alert_dialog.rb +64 -0
  58. data/lib/alexandria/ui/bad_isbns_dialog.rb +41 -0
  59. data/lib/alexandria/ui/{dialogs/barcode_animation.rb → barcode_animation.rb} +16 -15
  60. data/lib/alexandria/ui/{dialogs/book_properties_dialog.rb → book_properties_dialog.rb} +39 -52
  61. data/lib/alexandria/ui/book_properties_dialog_base.rb +318 -0
  62. data/lib/alexandria/ui/builder_base.rb +7 -27
  63. data/lib/alexandria/ui/calendar_popup.rb +58 -0
  64. data/lib/alexandria/ui/callbacks.rb +189 -183
  65. data/lib/alexandria/ui/completion_models.rb +10 -23
  66. data/lib/alexandria/ui/confirm_erase_dialog.rb +33 -0
  67. data/lib/alexandria/ui/conflict_while_copying_dialog.rb +34 -0
  68. data/lib/alexandria/ui/dndable.rb +7 -7
  69. data/lib/alexandria/ui/error_dialog.rb +25 -0
  70. data/lib/alexandria/ui/export_dialog.rb +142 -0
  71. data/lib/alexandria/ui/icons.rb +47 -63
  72. data/lib/alexandria/ui/iconview.rb +12 -10
  73. data/lib/alexandria/ui/iconview_tooltips.rb +41 -54
  74. data/lib/alexandria/ui/import_dialog.rb +157 -0
  75. data/lib/alexandria/ui/init.rb +21 -33
  76. data/lib/alexandria/ui/keep_bad_isbn_dialog.rb +36 -0
  77. data/lib/alexandria/ui/libraries_combo.rb +16 -14
  78. data/lib/alexandria/ui/listview.rb +73 -87
  79. data/lib/alexandria/ui/main_app.rb +24 -26
  80. data/lib/alexandria/ui/misc_dialogs.rb +10 -0
  81. data/lib/alexandria/ui/multi_drag_treeview.rb +28 -41
  82. data/lib/alexandria/ui/{dialogs/new_book_dialog.rb → new_book_dialog.rb} +156 -194
  83. data/lib/alexandria/ui/new_book_dialog_manual.rb +139 -0
  84. data/lib/alexandria/ui/new_provider_dialog.rb +100 -0
  85. data/lib/alexandria/ui/new_smart_library_dialog.rb +74 -0
  86. data/lib/alexandria/ui/preferences_dialog.rb +313 -0
  87. data/lib/alexandria/ui/provider_preferences_base_dialog.rb +95 -0
  88. data/lib/alexandria/ui/provider_preferences_dialog.rb +35 -0
  89. data/lib/alexandria/ui/really_delete_dialog.rb +53 -0
  90. data/lib/alexandria/ui/{sidepane.rb → sidepane_manager.rb} +56 -68
  91. data/lib/alexandria/ui/skip_entry_dialog.rb +33 -0
  92. data/lib/alexandria/ui/smart_library_properties_dialog.rb +60 -0
  93. data/lib/alexandria/ui/smart_library_properties_dialog_base.rb +242 -0
  94. data/lib/alexandria/ui/smart_library_rule_box.rb +119 -0
  95. data/lib/alexandria/ui/sound.rb +11 -13
  96. data/lib/alexandria/ui/ui_manager.rb +236 -251
  97. data/lib/alexandria/undo_manager.rb +1 -0
  98. data/lib/alexandria/version.rb +4 -19
  99. data/lib/alexandria/web_themes.rb +22 -21
  100. data/po/Makefile +2 -2
  101. data/po/cs.po +993 -880
  102. data/po/cy.po +957 -874
  103. data/po/de.po +990 -869
  104. data/po/el.po +989 -869
  105. data/po/es.po +985 -865
  106. data/po/fr.po +986 -870
  107. data/po/ga.po +907 -823
  108. data/po/gl.po +981 -865
  109. data/po/it.po +986 -868
  110. data/po/ja.po +969 -853
  111. data/po/mk.po +983 -863
  112. data/po/nb.po +979 -863
  113. data/po/nl.po +983 -864
  114. data/po/pl.po +1017 -974
  115. data/po/pt.po +988 -861
  116. data/po/pt_BR.po +984 -868
  117. data/po/ru.po +992 -873
  118. data/po/sk.po +987 -869
  119. data/po/sv.po +977 -861
  120. data/po/uk.po +975 -865
  121. data/po/zh_TW.po +976 -860
  122. data/schemas/alexandria.schemas +25 -3
  123. data/share/alexandria/glade/acquire_dialog__builder.glade +15 -12
  124. data/share/alexandria/glade/book_properties_dialog__builder.glade +171 -299
  125. data/share/alexandria/glade/main_app__builder.glade +24 -33
  126. data/share/alexandria/glade/new_book_dialog__builder.glade +27 -59
  127. data/share/alexandria/glade/preferences_dialog__builder.glade +250 -290
  128. data/share/gnome/help/alexandria/C/introduction.xml +0 -8
  129. data/share/gnome/help/alexandria/C/searching.xml +1 -1
  130. data/share/gnome/help/alexandria/C/smart-libraries.xml +2 -2
  131. data/share/gnome/help/alexandria/C/working-with-libraries.xml +1 -1
  132. data/share/gnome/help/alexandria/fr/alexandria.xml +1 -1
  133. data/share/gnome/help/alexandria/ja/introduction.xml +0 -8
  134. data/share/gnome/help/alexandria/ja/smart-libraries.xml +1 -1
  135. data/spec/alexandria/book_providers/world_cat_provider_spec.rb +160 -0
  136. data/spec/alexandria/book_providers_spec.rb +75 -171
  137. data/spec/alexandria/book_spec.rb +12 -10
  138. data/spec/alexandria/console_spec.rb +27 -0
  139. data/spec/alexandria/export_library_spec.rb +130 -0
  140. data/spec/alexandria/library_spec.rb +128 -172
  141. data/spec/alexandria/library_store_spec.rb +37 -0
  142. data/spec/alexandria/preferences_spec.rb +44 -17
  143. data/spec/alexandria/scanners/cue_cat_spec.rb +52 -0
  144. data/spec/alexandria/smart_library_spec.rb +30 -25
  145. data/spec/alexandria/ui/about_dialog_spec.rb +14 -0
  146. data/spec/alexandria/ui/acquire_dialog_spec.rb +14 -0
  147. data/spec/alexandria/ui/alert_dialog_spec.rb +16 -0
  148. data/spec/alexandria/ui/bad_isbns_dialog_spec.rb +14 -0
  149. data/spec/alexandria/ui/book_properties_dialog_spec.rb +17 -0
  150. data/spec/alexandria/ui/confirm_erase_dialog_spec.rb +14 -0
  151. data/spec/alexandria/ui/conflict_while_copying_dialog_spec.rb +16 -0
  152. data/spec/alexandria/ui/error_dialog_spec.rb +14 -0
  153. data/spec/alexandria/ui/export_dialog_spec.rb +36 -0
  154. data/spec/alexandria/ui/icons_spec.rb +26 -0
  155. data/spec/alexandria/ui/iconview_spec.rb +7 -21
  156. data/spec/alexandria/ui/import_dialog_spec.rb +46 -0
  157. data/spec/alexandria/ui/keep_bad_isbn_dialog_spec.rb +17 -0
  158. data/spec/alexandria/ui/main_app_spec.rb +7 -34
  159. data/spec/alexandria/ui/new_book_dialog_manual_spec.rb +15 -0
  160. data/spec/alexandria/ui/new_book_dialog_spec.rb +22 -0
  161. data/spec/alexandria/ui/new_provider_dialog_spec.rb +30 -0
  162. data/spec/alexandria/ui/new_smart_library_dialog_spec.rb +39 -0
  163. data/spec/alexandria/ui/preferences_dialog_spec.rb +14 -0
  164. data/spec/alexandria/ui/provider_preferences_dialog_spec.rb +34 -0
  165. data/spec/alexandria/ui/really_delete_dialog_spec.rb +16 -0
  166. data/spec/alexandria/ui/sidepane_manager_spec.rb +15 -0
  167. data/spec/alexandria/ui/skip_entry_dialog_spec.rb +14 -0
  168. data/spec/alexandria/ui/smart_library_properties_dialog_spec.rb +49 -0
  169. data/spec/alexandria/ui/sound_spec.rb +2 -2
  170. data/spec/alexandria/ui/ui_manager_spec.rb +43 -20
  171. data/spec/end_to_end/basic_run_spec.rb +52 -0
  172. data/spec/spec_helper.rb +65 -33
  173. data/tasks/setup.rb +2 -2
  174. data/tasks/spec.rake +16 -3
  175. data/util/rake/fileinstall.rb +39 -35
  176. data/util/rake/gettextgenerate.rb +7 -7
  177. data/util/rake/omfgenerate.rb +7 -7
  178. metadata +178 -45
  179. data/dogtail/basic_run_test.py +0 -9
  180. data/lib/alexandria/book_providers/deastore.rb +0 -265
  181. data/lib/alexandria/book_providers/mcu.rb +0 -182
  182. data/lib/alexandria/book_providers/renaud.rb +0 -149
  183. data/lib/alexandria/ui/dialogs/about_dialog.rb +0 -61
  184. data/lib/alexandria/ui/dialogs/alert_dialog.rb +0 -72
  185. data/lib/alexandria/ui/dialogs/bad_isbns_dialog.rb +0 -51
  186. data/lib/alexandria/ui/dialogs/book_properties_dialog_base.rb +0 -426
  187. data/lib/alexandria/ui/dialogs/export_dialog.rb +0 -171
  188. data/lib/alexandria/ui/dialogs/import_dialog.rb +0 -196
  189. data/lib/alexandria/ui/dialogs/misc_dialogs.rb +0 -87
  190. data/lib/alexandria/ui/dialogs/new_book_dialog_manual.rb +0 -154
  191. data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +0 -74
  192. data/lib/alexandria/ui/dialogs/preferences_dialog.rb +0 -568
  193. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +0 -59
  194. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb +0 -420
  195. data/spec/alexandria/scanners/cuecat_spec.rb +0 -67
  196. data/spec/alexandria/ui/dialogs_spec.rb +0 -96
  197. data/spec/alexandria/ui/sidepane_spec.rb +0 -29
  198. data/spec/alexandria/ui/ui_utilities_spec.rb +0 -62
  199. data/spec/alexandria/utilities_spec.rb +0 -52
  200. data/tasks/dogtail.rake +0 -6
data/po/pl.po CHANGED
@@ -1,1361 +1,1407 @@
1
- # Polish translation for Alexandria
2
- # Copyright (C) 2005, Borys Musielak <michuk@jakilinux.org>
3
- # Copyright (C) 2008, Piotr Drąg <piotrdrag@gmail.com>
4
- # This file is distributed under the same license as the Alexandria package
1
+ # Polish translation for alexandria.
2
+ # Copyright © 2005, 2008, 2009, 2020 the alexandria authors.
3
+ # This file is distributed under the same license as the alexandria package.
4
+ # Borys Musielak <michuk@jakilinux.org>, 2005.
5
+ # Piotr Drąg <piotrdrag@gmail.com>, 2008, 2009, 2020.
5
6
  #
6
7
  msgid ""
7
8
  msgstr ""
8
- "Project-Id-Version: alexandria 0.6.6\n"
9
+ "Project-Id-Version: alexandria\n"
9
10
  "Report-Msgid-Bugs-To: \n"
10
- "POT-Creation-Date: 2010-08-13 04:41+0100\n"
11
- "PO-Revision-Date: 2009-12-19 11:49+0100\n"
11
+ "POT-Creation-Date: 2020-09-13 14:52+0200\n"
12
+ "PO-Revision-Date: 2020-11-01 14:20+0100\n"
12
13
  "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
13
14
  "Language-Team: Polish <pl@li.org>\n"
15
+ "Language: pl\n"
14
16
  "MIME-Version: 1.0\n"
15
17
  "Content-Type: text/plain; charset=UTF-8\n"
16
18
  "Content-Transfer-Encoding: 8bit\n"
17
- "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%"
18
- "100<10 || n%100>=20) ? 1 : 2);\n"
19
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
20
+ "|| n%100>=20) ? 1 : 2);\n"
19
21
 
20
- #: ../lib/alexandria/import_library.rb:30
22
+ #: ../lib/alexandria/about.rb:27
23
+ msgid "A program to help you manage your book collection."
24
+ msgstr "Program pomagający zarządzać domową biblioteką."
25
+
26
+ #: ../lib/alexandria/book_providers.rb:91
27
+ msgid "Couldn't reach the provider '%s': timeout expired."
28
+ msgstr "Nie można połączyć się z dostawcą „%s”: wygasł czas oczekiwania."
29
+
30
+ #: ../lib/alexandria/book_providers.rb:95
31
+ msgid "Couldn't reach the provider '%s': socket error (%s)."
32
+ msgstr "Nie można połączyć się z dostawcą „%s”: błąd gniazda (%s)."
33
+
34
+ #: ../lib/alexandria/book_providers.rb:99
35
+ #: ../lib/alexandria/book_providers.rb:104
36
+ msgid ""
37
+ "No results were found. Make sure your search criterion is spelled "
38
+ "correctly, and try again."
39
+ msgstr ""
40
+ "Nie odnaleziono żadnych wyników. Proszę się upewnić, że kryteria "
41
+ "wyszukiwania nie zawierają żadnych literówek i spróbować ponownie."
42
+
43
+ #: ../lib/alexandria/book_providers.rb:109
44
+ msgid "Too many results for that search."
45
+ msgstr "Za dużo wyników wyszukiwania."
46
+
47
+ #: ../lib/alexandria/book_providers.rb:112
48
+ msgid "Invalid search type."
49
+ msgstr "Nieprawidłowy typ wyszukiwania."
50
+
51
+ #: ../lib/alexandria/book_providers.rb:206
52
+ msgid "Enabled"
53
+ msgstr "Włączone"
54
+
55
+ #: ../lib/alexandria/book_providers/adlibris.rb:111
56
+ msgid "title not found on page"
57
+ msgstr "na stronie nie odnaleziono tytułu"
58
+
59
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:26
60
+ msgid "Locale"
61
+ msgstr "Lokalizacja"
62
+
63
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:27
64
+ msgid "Access key ID"
65
+ msgstr "Identyfikator klucza dostępu"
66
+
67
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:28
68
+ msgid "Secret access key"
69
+ msgstr "Tajny klucz dostępu"
70
+
71
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:29
72
+ msgid "Associate Tag"
73
+ msgstr "Etykieta partnera"
74
+
75
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:59
76
+ msgid "Provide secret key for your Amazon AWS account."
77
+ msgstr "Proszę podać tajny klucz dla konta Amazon AWS."
78
+
79
+ #: ../lib/alexandria/book_providers/amazon_aws.rb:149
80
+ msgid "No products"
81
+ msgstr "Brak produktów"
82
+
83
+ #: ../lib/alexandria/book_providers/amazon_ecs_util.rb:102
84
+ msgid "HTTP Response: %<code>s %<message>s"
85
+ msgstr "Odpowiedź HTTP: %<code>s %<message>s"
86
+
87
+ #: ../lib/alexandria/book_providers/amazon_ecs_util.rb:170
88
+ msgid "Invalid country '%<country>s'"
89
+ msgstr "Nieprawidłowy kraj „%<country>s”"
90
+
91
+ #: ../lib/alexandria/book_providers/barnes_and_noble.rb:59
92
+ msgid "HTTP redirect too deep"
93
+ msgstr "Przekierowanie HTTP jest za głębokie"
94
+
95
+ #: ../lib/alexandria/book_providers/z3950.rb:22
96
+ msgid "Hostname"
97
+ msgstr "Nazwa komputera"
98
+
99
+ #: ../lib/alexandria/book_providers/z3950.rb:23
100
+ msgid "Port"
101
+ msgstr "Port"
102
+
103
+ #: ../lib/alexandria/book_providers/z3950.rb:24
104
+ msgid "Database"
105
+ msgstr "Baza danych"
106
+
107
+ #: ../lib/alexandria/book_providers/z3950.rb:25
108
+ msgid "Record syntax"
109
+ msgstr "Składnia wpisu"
110
+
111
+ #: ../lib/alexandria/book_providers/z3950.rb:27
112
+ msgid "Username"
113
+ msgstr "Nazwa użytkownika"
114
+
115
+ #: ../lib/alexandria/book_providers/z3950.rb:28
116
+ msgid "Password"
117
+ msgstr "Hasło"
118
+
119
+ #: ../lib/alexandria/book_providers/z3950.rb:29
120
+ msgid "Charset encoding"
121
+ msgstr "Kodowanie znaków"
122
+
123
+ #: ../lib/alexandria/book_providers/z3950.rb:213
124
+ msgid "Library of Congress (Usa)"
125
+ msgstr "Biblioteka Kongresu (USA)"
126
+
127
+ #: ../lib/alexandria/book_providers/z3950.rb:249
128
+ msgid "British Library"
129
+ msgstr "Biblioteka Brytyjska"
130
+
131
+ #: ../lib/alexandria/book_providers/z3950.rb:376
132
+ msgid "Invalid ISBN"
133
+ msgstr "Nieprawidłowy numer ISBN"
134
+
135
+ #: ../lib/alexandria/export_format.rb:18
136
+ msgid "Archived ONIX XML"
137
+ msgstr "Zarchiwizowany XML ONIX"
138
+
139
+ #: ../lib/alexandria/export_format.rb:19
140
+ msgid "Archived Tellico XML"
141
+ msgstr "Zarchiwizowany XML Tellico"
142
+
143
+ #: ../lib/alexandria/export_format.rb:20
144
+ msgid "BibTeX"
145
+ msgstr "BibTeX"
146
+
147
+ #: ../lib/alexandria/export_format.rb:21
148
+ msgid "CSV list"
149
+ msgstr "Lista CSV"
150
+
151
+ #: ../lib/alexandria/export_format.rb:22
152
+ msgid "ISBN List"
153
+ msgstr "Lista numerów ISBN"
154
+
155
+ #: ../lib/alexandria/export_format.rb:23
156
+ msgid "iPod Notes"
157
+ msgstr "Notatki iPoda"
158
+
159
+ #: ../lib/alexandria/export_format.rb:24
160
+ msgid "HTML Web Page"
161
+ msgstr "Strona HTML"
162
+
163
+ #: ../lib/alexandria/import_library.rb:21
21
164
  msgid "Autodetect"
22
165
  msgstr "Automatycznie wykryte"
23
166
 
24
- #: ../lib/alexandria/import_library.rb:31
167
+ #: ../lib/alexandria/import_library.rb:22
25
168
  msgid "Archived Tellico XML (*.bc, *.tc)"
26
169
  msgstr "Zarchiwizowany XML Tellico (*.bc, *.tc)"
27
170
 
28
- #: ../lib/alexandria/import_library.rb:33
171
+ #: ../lib/alexandria/import_library.rb:24
29
172
  msgid "ISBN List (*.txt)"
30
173
  msgstr "Lista numerów ISBN (*.txt)"
31
174
 
32
- #: ../lib/alexandria/import_library.rb:35
175
+ #: ../lib/alexandria/import_library.rb:25
33
176
  msgid "GoodReads CSV"
34
177
  msgstr "CSV GoodReads"
35
178
 
36
- #: ../lib/alexandria/models/library.rb:56
37
- msgid "Untitled"
38
- msgstr "Brak tytułu"
179
+ #: ../lib/alexandria/import_library.rb:65
180
+ msgid "Unsupported type"
181
+ msgstr "Nieobsługiwany typ"
182
+
183
+ #: ../lib/alexandria/import_library_csv.rb:199
184
+ msgid "Not Recognized"
185
+ msgstr "Nierozpoznane"
39
186
 
40
- #: ../lib/alexandria/models/library.rb:245
187
+ #: ../lib/alexandria/library_store.rb:37
41
188
  msgid "My Library"
42
189
  msgstr "Moja biblioteka"
43
190
 
44
- #: ../lib/alexandria/about.rb:24
45
- msgid "A program to help you manage your book collection."
46
- msgstr "Program pomagający zarządzać domową biblioteką."
191
+ #: ../lib/alexandria/library_store.rb:67
192
+ msgid "Not a book: %<book>s"
193
+ msgstr "Nie jest książką: %<book>s"
47
194
 
48
- #: ../lib/alexandria/ui/ui_manager.rb:135
49
- msgid "Type here the search criterion"
50
- msgstr "Proszę podać kryteria wyszukiwania"
195
+ #: ../lib/alexandria/library_store.rb:78
196
+ msgid "%<file>s isbn is not okay"
197
+ msgstr "ISBN %<file>s nie jest poprawny"
51
198
 
52
- #: ../lib/alexandria/ui/ui_manager.rb:148
53
- msgid "Match everything"
54
- msgstr "Szukaj we wszystkim"
199
+ #: ../lib/alexandria/library_store.rb:83
200
+ msgid "%<file>s version is not okay"
201
+ msgstr "Wersja %<file>s nie jest poprawna"
55
202
 
56
- #: ../lib/alexandria/ui/ui_manager.rb:150
57
- msgid "Title contains"
58
- msgstr "Tytuł zawiera"
203
+ #: ../lib/alexandria/library_store.rb:88
204
+ msgid "%<file>s pub year is not okay"
205
+ msgstr "Rok publikacji %<file>s nie jest poprawny"
59
206
 
60
- #: ../lib/alexandria/ui/ui_manager.rb:151
61
- msgid "Authors contain"
62
- msgstr "Autorzy zawierają"
207
+ #: ../lib/alexandria/models/library.rb:40
208
+ msgid "Untitled"
209
+ msgstr "Brak tytułu"
63
210
 
64
- #: ../lib/alexandria/ui/ui_manager.rb:152
65
- msgid "ISBN contains"
66
- msgstr "ISBN zawiera"
211
+ #: ../lib/alexandria/models/library.rb:288
212
+ msgid "Book %<isbn>s was already deleted"
213
+ msgstr "Książka %<isbn>s została już usunięta"
67
214
 
68
- #: ../lib/alexandria/ui/ui_manager.rb:153
69
- msgid "Publisher contains"
70
- msgstr "Wydawca zawiera"
215
+ #: ../lib/alexandria/scanners/cue_cat.rb:75
216
+ msgid "Don't know how to handle type %<type>s (barcode: %<code>s)"
217
+ msgstr "Nie wiadomo, jak obsłużyć typ %<type>s (kod kreskowy: %<code>s)"
71
218
 
72
- #: ../lib/alexandria/ui/ui_manager.rb:154
73
- msgid "Notes contain"
74
- msgstr "Notatki zawierają"
219
+ #: ../lib/alexandria/scanners/cue_cat.rb:109
220
+ msgid "Error parsing CueCat input"
221
+ msgstr "Błąd podczas przetwarzania wejścia CueCat"
75
222
 
76
- #: ../lib/alexandria/ui/ui_manager.rb:155
77
- msgid "Tags contain"
78
- msgstr "Etykiety zawierają"
223
+ #: ../lib/alexandria/scanners/keyboard.rb:51
224
+ msgid "Unknown scan data %s<data>"
225
+ msgstr "Nieznane dane skanu %s<data>"
79
226
 
80
- #: ../lib/alexandria/ui/ui_manager.rb:170
81
- msgid "Change the search type"
82
- msgstr "Zmień typ wyszukiwania"
227
+ #: ../lib/alexandria/smart_library.rb:49
228
+ msgid "Favorite"
229
+ msgstr "Ulubione"
83
230
 
84
- #: ../lib/alexandria/ui/ui_manager.rb:175
85
- msgid "View as Icons"
86
- msgstr "Widok ikon"
231
+ #: ../lib/alexandria/smart_library.rb:55
232
+ msgid "Loaned"
233
+ msgstr "Wypożyczone"
87
234
 
88
- #: ../lib/alexandria/ui/ui_manager.rb:176
89
- msgid "View as List"
90
- msgstr "Widok listy"
235
+ #: ../lib/alexandria/smart_library.rb:61 ../lib/alexandria/smart_library.rb:307
236
+ #: ../lib/alexandria/ui/listview.rb:59
237
+ msgid "Read"
238
+ msgstr "Przeczytane"
91
239
 
92
- #: ../lib/alexandria/ui/ui_manager.rb:189
93
- msgid "Choose how to show books"
94
- msgstr "Proszę wybrać, jak wyświetlać książki"
240
+ #: ../lib/alexandria/smart_library.rb:67
241
+ msgid "Owned"
242
+ msgstr "Posiadane"
95
243
 
96
- #: ../lib/alexandria/ui/ui_manager.rb:436
97
- msgid "Library '%s' selected"
98
- msgstr "Wybrano bibliotekę \"%s\""
244
+ #: ../lib/alexandria/smart_library.rb:76
245
+ msgid "Wishlist"
246
+ msgstr "Lista życzeń"
99
247
 
100
- #: ../lib/alexandria/ui/ui_manager.rb:443
101
- msgid "Library '%s' selected, %d unrated book"
102
- msgid_plural "Library '%s' selected, %d unrated books"
103
- msgstr[0] "Wybrano bibliotekę \"%s\", %d książka nie ma jeszcze oceny"
104
- msgstr[1] "Wybrano bibliotekę \"%s\", %d książki nie mają jeszcze oceny"
105
- msgstr[2] "Wybrano bibliotekę \"%s\", %d książek nie ma jeszcze oceny"
248
+ #: ../lib/alexandria/smart_library.rb:295 ../lib/alexandria/ui/listview.rb:32
249
+ msgid "Title"
250
+ msgstr "Tytuł"
106
251
 
107
- #: ../lib/alexandria/ui/ui_manager.rb:448
108
- msgid "Library '%s' selected, %d book"
109
- msgid_plural "Library '%s' selected, %d books"
110
- msgstr[0] "Wybrano bibliotekę \"%s\", %d książka"
111
- msgstr[1] "Wybrano bibliotekę \"%s\", %d książki"
112
- msgstr[2] "Wybrano bibliotekę \"%s\", %d książek"
252
+ #: ../lib/alexandria/smart_library.rb:296 ../lib/alexandria/ui/listview.rb:52
253
+ msgid "ISBN"
254
+ msgstr "ISBN"
113
255
 
114
- #: ../lib/alexandria/ui/ui_manager.rb:455
115
- msgid "Library '%s' selected, %d book, %d unrated"
116
- msgid_plural "Library '%s' selected, %d books, %d unrated"
117
- msgstr[0] ""
118
- "Wybrano bibliotekę \"%s\", %d książka, %d książka nie ma jeszcze oceny"
119
- msgstr[1] ""
120
- "Wybrano bibliotekę \"%s\", %d książek, %d książki nie mają jeszcze oceny"
121
- msgstr[2] ""
122
- "Wybrano bibliotekę \"%s', %d książek, %d książek nie ma jeszcze oceny"
123
-
124
- #: ../lib/alexandria/ui/ui_manager.rb:467
125
- msgid "'%s' selected"
126
- msgstr "Wybrano \"%s\""
256
+ #: ../lib/alexandria/smart_library.rb:297 ../lib/alexandria/ui/listview.rb:51
257
+ msgid "Authors"
258
+ msgstr "Autorzy"
127
259
 
128
- #: ../lib/alexandria/ui/ui_manager.rb:470
129
- msgid "%d book selected"
130
- msgid_plural "%d books selected"
131
- msgstr[0] "Wybrano %d książkę"
132
- msgstr[1] "Wybrano %d książki"
133
- msgstr[2] "Wybrano %d książek"
260
+ #: ../lib/alexandria/smart_library.rb:298 ../lib/alexandria/ui/listview.rb:53
261
+ msgid "Publisher"
262
+ msgstr "Wydawca"
263
+
264
+ #: ../lib/alexandria/smart_library.rb:299 ../lib/alexandria/ui/listview.rb:54
265
+ msgid "Publish Year"
266
+ msgstr "Rok wydania"
134
267
 
135
- #: ../lib/alexandria/ui/ui_manager.rb:648
136
- msgid "Unable to launch the web browser"
137
- msgstr "Nie można uruchomić przeglądarki WWW"
268
+ #: ../lib/alexandria/smart_library.rb:300 ../lib/alexandria/ui/listview.rb:55
269
+ msgid "Binding"
270
+ msgstr "Oprawa"
138
271
 
139
- #: ../lib/alexandria/ui/ui_manager.rb:649
140
- msgid ""
141
- "Check out that a web browser is configured as default (Desktop Preferences -"
142
- "> Advanced -> Preferred Applications) and try again."
143
- msgstr ""
144
- "Proszę sprawdzić, czy przeglądarka WWW jest skonfigurowana jako domyślna "
145
- "(Preferencje pulpitu -> Zaawansowane -> Preferowane aplikacje) i spróbować "
146
- "ponownie."
272
+ #: ../lib/alexandria/smart_library.rb:301 ../lib/alexandria/ui/listview.rb:106
273
+ msgid "Rating"
274
+ msgstr "Ocena"
147
275
 
148
- #: ../lib/alexandria/ui/ui_manager.rb:661
149
- msgid "Unable to launch the mail reader"
150
- msgstr "Nie można uruchomić czytnika poczty"
276
+ #: ../lib/alexandria/smart_library.rb:302
277
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:762
278
+ msgid "Notes"
279
+ msgstr "Notatki"
151
280
 
152
- #: ../lib/alexandria/ui/ui_manager.rb:662
153
- msgid ""
154
- "Check out that a mail reader is configured as default (Desktop Preferences -"
155
- "> Advanced -> Preferred Applications) and try again."
156
- msgstr ""
157
- "Proszę sprawdzić, czy czytnik poczty jest skonfigurowany jako domyślny "
158
- "(Preferencje pulpitu -> Zaawansowane -> Preferowane aplikacje) i spróbować "
159
- "ponownie."
281
+ #: ../lib/alexandria/smart_library.rb:303 ../lib/alexandria/ui/listview.rb:86
282
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:230
283
+ msgid "Tags"
284
+ msgstr "Etykiety"
285
+
286
+ #: ../lib/alexandria/smart_library.rb:304
287
+ msgid "Loaning State"
288
+ msgstr "Stan wypożyczenia"
289
+
290
+ #: ../lib/alexandria/smart_library.rb:305
291
+ msgid "Loaning Date"
292
+ msgstr "Data wypożyczenia"
293
+
294
+ #: ../lib/alexandria/smart_library.rb:306
295
+ msgid "Loaning Person"
296
+ msgstr "Komu wypożyczono"
297
+
298
+ #: ../lib/alexandria/smart_library.rb:308
299
+ msgid "Date Read"
300
+ msgstr "Data przeczytania"
301
+
302
+ #: ../lib/alexandria/smart_library.rb:309 ../lib/alexandria/ui/listview.rb:60
303
+ msgid "Own"
304
+ msgstr "Posiadam"
305
+
306
+ #: ../lib/alexandria/smart_library.rb:310 ../lib/alexandria/ui/listview.rb:61
307
+ msgid "Want"
308
+ msgstr "Chcę"
309
+
310
+ #: ../lib/alexandria/smart_library.rb:317
311
+ msgid "days"
312
+ msgstr "dni"
313
+
314
+ #: ../lib/alexandria/smart_library.rb:327
315
+ msgid "is set"
316
+ msgstr "jest ustawione"
317
+
318
+ #: ../lib/alexandria/smart_library.rb:330
319
+ msgid "is not set"
320
+ msgstr "nie jest ustawione"
321
+
322
+ #: ../lib/alexandria/smart_library.rb:333
323
+ msgid "is"
324
+ msgstr "jest"
325
+
326
+ #: ../lib/alexandria/smart_library.rb:336
327
+ msgid "is not"
328
+ msgstr "nie jest"
329
+
330
+ #: ../lib/alexandria/smart_library.rb:339
331
+ msgid "contains"
332
+ msgstr "zawiera"
333
+
334
+ #: ../lib/alexandria/smart_library.rb:342
335
+ msgid "does not contain"
336
+ msgstr "nie zawiera"
337
+
338
+ #: ../lib/alexandria/smart_library.rb:345
339
+ msgid "starts with"
340
+ msgstr "zaczyna się od"
341
+
342
+ #: ../lib/alexandria/smart_library.rb:348
343
+ msgid "ends with"
344
+ msgstr "kończ się na"
345
+
346
+ #: ../lib/alexandria/smart_library.rb:351
347
+ msgid "is greater than"
348
+ msgstr "jest większe od"
349
+
350
+ #: ../lib/alexandria/smart_library.rb:354
351
+ msgid "is less than"
352
+ msgstr "jest mniejsze od"
353
+
354
+ #: ../lib/alexandria/smart_library.rb:357
355
+ msgid "is after"
356
+ msgstr "jest po"
357
+
358
+ #: ../lib/alexandria/smart_library.rb:360
359
+ msgid "is before"
360
+ msgstr "jest przed"
361
+
362
+ #: ../lib/alexandria/smart_library.rb:364
363
+ msgid "is in last"
364
+ msgstr "jest ostatnie"
365
+
366
+ #: ../lib/alexandria/smart_library.rb:384
367
+ msgid "is not in last"
368
+ msgstr "nie jest ostatnie"
369
+
370
+ #: ../lib/alexandria/smart_library.rb:465
371
+ msgid "invalid operand klass %<klass>s"
372
+ msgstr "nieprawidłowa klasa argumentu %<klass>s"
373
+
374
+ #: ../lib/alexandria/ui/acquire_dialog.rb:202
375
+ msgid "There was %d duplicate"
376
+ msgid_plural "There were %d duplicates"
377
+ msgstr[0] "Jest %d duplikat"
378
+ msgstr[1] "Są %d duplikaty"
379
+ msgstr[2] "Jest %d duplikatów"
380
+
381
+ #: ../lib/alexandria/ui/acquire_dialog.rb:205
382
+ msgid "Couldn't add this book"
383
+ msgid_plural "Couldn't add these books"
384
+ msgstr[0] "Nie można dodać tej książki"
385
+ msgstr[1] "Nie można dodać tych książek"
386
+ msgstr[2] "Nie można dodać tych książek"
387
+
388
+ #: ../lib/alexandria/ui/acquire_dialog.rb:284
389
+ #: ../lib/alexandria/ui/new_book_dialog.rb:500
390
+ msgid "Searching Provider '%s'..."
391
+ msgstr "Wyszukiwanie dostawcy „%s”…"
392
+
393
+ #: ../lib/alexandria/ui/acquire_dialog.rb:285
394
+ #: ../lib/alexandria/ui/new_book_dialog.rb:501
395
+ msgid "Error while Searching Provider '%s'"
396
+ msgstr "Błąd podczas wyszukiwania dostawcy „%s”"
160
397
 
161
- #: ../lib/alexandria/ui/ui_manager.rb:697
162
- msgid "Repair Book Data"
163
- msgstr "Napraw dane książki"
398
+ #: ../lib/alexandria/ui/acquire_dialog.rb:286
399
+ #: ../lib/alexandria/ui/new_book_dialog.rb:502
400
+ msgid "Not Found at Provider '%s'"
401
+ msgstr "Nie odnaleziono u dostawcy „%s”"
402
+
403
+ #: ../lib/alexandria/ui/acquire_dialog.rb:287
404
+ #: ../lib/alexandria/ui/new_book_dialog.rb:503
405
+ msgid "Found at Provider '%s'"
406
+ msgstr "Odnaleziono u dostawcy „%s”"
164
407
 
165
- #: ../lib/alexandria/ui/ui_manager.rb:698
408
+ #: ../lib/alexandria/ui/acquire_dialog.rb:406
409
+ msgid "Ready to use %s barcode scanner"
410
+ msgstr "Skaner kodów kreskowych %s jest gotowy do użycia"
411
+
412
+ #: ../lib/alexandria/ui/acquire_dialog.rb:430
413
+ msgid "Click below to scan _barcodes"
414
+ msgstr "Proszę kliknąć poniżej, aby skanować _kody kreskowe"
415
+
416
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:112
417
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:122
418
+ msgid "Couldn't modify the book"
419
+ msgstr "Nie można zmodyfikować książki"
420
+
421
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:113
422
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:74
166
423
  msgid ""
167
- "The data files for the following books are malformed or empty. Do you wish "
168
- "to attempt to download new information for them from the online book "
169
- "providers?\n"
424
+ "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
425
+ "correcty, and try again."
170
426
  msgstr ""
171
- "Pliki danych poniższych książek błędnie sformatowane lub puste. Spróbować "
172
- "pobrać dla nich nowe informacje o dostawców książek online?\n"
427
+ "Nie można sprawdzić poprawności podanego numeru EAN/ISBN. Proszę się "
428
+ "upewnić, że numer został poprawnie wpisany i spróbować ponownie."
173
429
 
174
- #: ../lib/alexandria/ui/ui_manager.rb:755
175
- msgid "Added '%s' to library '%s'"
176
- msgstr "Dodano \"%s\" do biblioteki \"%s\""
430
+ #: ../lib/alexandria/ui/book_properties_dialog.rb:123
431
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:79
432
+ msgid "The EAN/ISBN you provided is already used in this library."
433
+ msgstr "Podany numer EAN/ISBN jest już użyty w tej bibliotece."
177
434
 
178
- #: ../lib/alexandria/ui/ui_manager.rb:908
179
- msgid "Loading '%s'..."
180
- msgstr "Wczytywanie \"%s\"..."
435
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:206
436
+ msgid "Properties"
437
+ msgstr "Właściwości"
181
438
 
182
- #: ../lib/alexandria/ui/ui_manager.rb:1157
183
- msgid "In '_%s'"
184
- msgstr "W \"_%s\""
439
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:208
440
+ #: ../lib/alexandria/ui/smart_library_properties_dialog.rb:21
441
+ msgid "Properties for '%s'"
442
+ msgstr "Właściwości „%s”"
185
443
 
186
- #: ../lib/alexandria/ui/callbacks.rb:65
187
- msgid "The following lines are not valid ISBNs and were not imported:"
188
- msgstr ""
189
- "Następujące wiersze nie są prawidłowymi numerami ISBN i nie zostały "
190
- "zaimportowane:"
444
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:214
445
+ msgid "Author"
446
+ msgstr "Autor"
191
447
 
192
- #: ../lib/alexandria/ui/callbacks.rb:122
193
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:128
194
- msgid "Export failed"
195
- msgstr "Eksport nie powiódł się"
448
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:263
449
+ msgid "Select a cover image"
450
+ msgstr "Wybór okładki"
451
+
452
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:267
453
+ msgid "No Cover"
454
+ msgstr "Brak okładki"
455
+
456
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:346
457
+ msgid "%d day"
458
+ msgid_plural "%d days"
459
+ msgstr[0] "%d dzień"
460
+ msgstr[1] "%d dni"
461
+ msgstr[2] "%d dni"
196
462
 
197
- #: ../lib/alexandria/ui/callbacks.rb:123
198
- msgid "Try letting this library load completely before exporting."
463
+ #: ../lib/alexandria/ui/book_properties_dialog_base.rb:372
464
+ msgid "out of range"
465
+ msgstr "poza zakresem"
466
+
467
+ #: ../lib/alexandria/ui/callbacks.rb:57
468
+ msgid "The following lines are not valid ISBNs and were not imported:"
199
469
  msgstr ""
200
- "Należy spróbować poczekać na wczytanie się biblioteki przed eksportowaniem."
470
+ "Te wiersze nie prawidłowymi numerami ISBN i nie zostały zaimportowane:"
201
471
 
202
- #: ../lib/alexandria/ui/callbacks.rb:274
472
+ #: ../lib/alexandria/ui/callbacks.rb:62
473
+ msgid "Books could not be found for the following ISBNs:"
474
+ msgstr "Nie można odnaleźć książek dla tych numerów ISBN:"
475
+
476
+ #: ../lib/alexandria/ui/callbacks.rb:362
203
477
  msgid "_Library"
204
- msgstr "Bib_lioteka"
478
+ msgstr "_Biblioteka"
205
479
 
206
- #: ../lib/alexandria/ui/callbacks.rb:275
480
+ #: ../lib/alexandria/ui/callbacks.rb:363
207
481
  msgid "_New Library"
208
482
  msgstr "_Nowa biblioteka"
209
483
 
210
- #: ../lib/alexandria/ui/callbacks.rb:275
484
+ #: ../lib/alexandria/ui/callbacks.rb:363
211
485
  msgid "Create a new library"
212
486
  msgstr "Tworzy nową bibliotekę"
213
487
 
214
- #: ../lib/alexandria/ui/callbacks.rb:276
488
+ #: ../lib/alexandria/ui/callbacks.rb:364
215
489
  msgid "New _Smart Library..."
216
- msgstr "Nowa _automatyczna biblioteka..."
490
+ msgstr "Nowa _automatyczna biblioteka"
217
491
 
218
- #: ../lib/alexandria/ui/callbacks.rb:276
492
+ #: ../lib/alexandria/ui/callbacks.rb:364
219
493
  msgid "Create a new smart library"
220
494
  msgstr "Tworzy nową automatyczną bibliotekę"
221
495
 
222
- #: ../lib/alexandria/ui/callbacks.rb:277
496
+ #: ../lib/alexandria/ui/callbacks.rb:365
223
497
  msgid "_Add Book..."
224
- msgstr "_Dodaj książkę..."
498
+ msgstr "_Dodaj książkę…"
225
499
 
226
- #: ../lib/alexandria/ui/callbacks.rb:277
500
+ #: ../lib/alexandria/ui/callbacks.rb:365
227
501
  msgid "Add a new book from the Internet"
228
- msgstr "Dodaje nową książkę z Internetu"
502
+ msgstr "Dodaje nową książkę z Internetu"
229
503
 
230
- #: ../lib/alexandria/ui/callbacks.rb:278
504
+ #: ../lib/alexandria/ui/callbacks.rb:366
231
505
  msgid "Add Book _Manually..."
232
- msgstr "Dodaj książkę _ręcznie..."
506
+ msgstr "Dodaj książkę _ręcznie"
233
507
 
234
- #: ../lib/alexandria/ui/callbacks.rb:278
508
+ #: ../lib/alexandria/ui/callbacks.rb:366
235
509
  msgid "Add a new book manually"
236
510
  msgstr "Dodaje nową książkę ręcznie"
237
511
 
238
- #: ../lib/alexandria/ui/callbacks.rb:279
512
+ #: ../lib/alexandria/ui/callbacks.rb:367
239
513
  msgid "_Import..."
240
- msgstr "Za_importuj..."
514
+ msgstr "Zai_mportuj…"
241
515
 
242
- #: ../lib/alexandria/ui/callbacks.rb:279
516
+ #: ../lib/alexandria/ui/callbacks.rb:367
243
517
  msgid "Import a library"
244
518
  msgstr "Importuje bibliotekę"
245
519
 
246
- #: ../lib/alexandria/ui/callbacks.rb:280
520
+ #: ../lib/alexandria/ui/callbacks.rb:368
247
521
  msgid "_Export..."
248
- msgstr "Wy_eksportuj..."
522
+ msgstr "Wy_eksportuj"
249
523
 
250
- #: ../lib/alexandria/ui/callbacks.rb:280
524
+ #: ../lib/alexandria/ui/callbacks.rb:368
251
525
  msgid "Export the selected library"
252
- msgstr "Eksportuje wybraną bibliotekę"
526
+ msgstr "Eksportuje zaznaczoną bibliotekę"
253
527
 
254
- #: ../lib/alexandria/ui/callbacks.rb:281
255
- msgid "_Acquire from Scanner..."
256
- msgstr "Pobierz ze sk_anera..."
528
+ #: ../lib/alexandria/ui/callbacks.rb:369
529
+ msgid "A_cquire from Scanner..."
530
+ msgstr "_Pobierz ze skanera…"
257
531
 
258
- #: ../lib/alexandria/ui/callbacks.rb:281
532
+ #: ../lib/alexandria/ui/callbacks.rb:369
259
533
  msgid "Acquire books from a scanner"
260
534
  msgstr "Pobiera książki ze skanera"
261
535
 
262
- #: ../lib/alexandria/ui/callbacks.rb:282
536
+ #: ../lib/alexandria/ui/callbacks.rb:370
263
537
  msgid "_Properties"
264
538
  msgstr "_Właściwości"
265
539
 
266
- #: ../lib/alexandria/ui/callbacks.rb:282
540
+ #: ../lib/alexandria/ui/callbacks.rb:370
267
541
  msgid "Edit the properties of the selected book"
268
- msgstr "Modyfikuje właściwości wybranej książki"
542
+ msgstr "Modyfikuje właściwości zaznaczonej książki"
269
543
 
270
- #: ../lib/alexandria/ui/callbacks.rb:283
544
+ #: ../lib/alexandria/ui/callbacks.rb:371
271
545
  msgid "_Quit"
272
546
  msgstr "Za_kończ"
273
547
 
274
- #: ../lib/alexandria/ui/callbacks.rb:283
548
+ #: ../lib/alexandria/ui/callbacks.rb:371
275
549
  msgid "Quit the program"
276
550
  msgstr "Kończy działanie programu"
277
551
 
278
- #: ../lib/alexandria/ui/callbacks.rb:284
552
+ #: ../lib/alexandria/ui/callbacks.rb:372
279
553
  msgid "_Edit"
280
554
  msgstr "_Edycja"
281
555
 
282
- #: ../lib/alexandria/ui/callbacks.rb:285
556
+ #: ../lib/alexandria/ui/callbacks.rb:373
283
557
  msgid "_Undo"
284
- msgstr "Cof_nij"
558
+ msgstr "_Cofnij"
285
559
 
286
- #: ../lib/alexandria/ui/callbacks.rb:285
560
+ #: ../lib/alexandria/ui/callbacks.rb:373
287
561
  msgid "Undo the last action"
288
- msgstr "Cofa ostatnią czynność"
562
+ msgstr "Cofa ostatnie działanie"
289
563
 
290
- #: ../lib/alexandria/ui/callbacks.rb:286
564
+ #: ../lib/alexandria/ui/callbacks.rb:374
291
565
  msgid "_Redo"
292
566
  msgstr "P_onów"
293
567
 
294
- #: ../lib/alexandria/ui/callbacks.rb:286
568
+ #: ../lib/alexandria/ui/callbacks.rb:374
295
569
  msgid "Redo the undone action"
296
- msgstr "Ponawia cofniętą czynność"
570
+ msgstr "Ponawia cofnięte działanie"
297
571
 
298
- #: ../lib/alexandria/ui/callbacks.rb:287
572
+ #: ../lib/alexandria/ui/callbacks.rb:375
299
573
  msgid "_Select All"
300
574
  msgstr "Z_aznacz wszystko"
301
575
 
302
- #: ../lib/alexandria/ui/callbacks.rb:287
576
+ #: ../lib/alexandria/ui/callbacks.rb:375
303
577
  msgid "Select all visible books"
304
578
  msgstr "Zaznacza wszystkie widoczne książki"
305
579
 
306
- #: ../lib/alexandria/ui/callbacks.rb:288
580
+ #: ../lib/alexandria/ui/callbacks.rb:376
307
581
  msgid "Dese_lect All"
308
582
  msgstr "O_dznacz wszystko"
309
583
 
310
- #: ../lib/alexandria/ui/callbacks.rb:288
584
+ #: ../lib/alexandria/ui/callbacks.rb:376
311
585
  msgid "Deselect everything"
312
586
  msgstr "Odznacza wszystko"
313
587
 
314
- #: ../lib/alexandria/ui/callbacks.rb:289
588
+ #: ../lib/alexandria/ui/callbacks.rb:377
315
589
  msgid "My _Rating"
316
590
  msgstr "Moja _ocena"
317
591
 
318
- #: ../lib/alexandria/ui/callbacks.rb:290
592
+ #: ../lib/alexandria/ui/callbacks.rb:378
319
593
  msgid "None"
320
594
  msgstr "Brak"
321
595
 
322
- #: ../lib/alexandria/ui/callbacks.rb:291
596
+ #: ../lib/alexandria/ui/callbacks.rb:379
323
597
  msgid "One Star"
324
598
  msgstr "Jedna gwiazdka"
325
599
 
326
- #: ../lib/alexandria/ui/callbacks.rb:292
600
+ #: ../lib/alexandria/ui/callbacks.rb:380
327
601
  msgid "Two Stars"
328
602
  msgstr "Dwie gwiazdki"
329
603
 
330
- #: ../lib/alexandria/ui/callbacks.rb:293
604
+ #: ../lib/alexandria/ui/callbacks.rb:381
331
605
  msgid "Three Stars"
332
606
  msgstr "Trzy gwiazdki"
333
607
 
334
- #: ../lib/alexandria/ui/callbacks.rb:294
608
+ #: ../lib/alexandria/ui/callbacks.rb:382
335
609
  msgid "Four Stars"
336
610
  msgstr "Cztery gwiazdki"
337
611
 
338
- #: ../lib/alexandria/ui/callbacks.rb:295
612
+ #: ../lib/alexandria/ui/callbacks.rb:383
339
613
  msgid "Five Stars"
340
614
  msgstr "Pięć gwiazdek"
341
615
 
342
- #: ../lib/alexandria/ui/callbacks.rb:296
616
+ #: ../lib/alexandria/ui/callbacks.rb:384
343
617
  msgid "_Move"
344
618
  msgstr "_Przenieś"
345
619
 
346
- #: ../lib/alexandria/ui/callbacks.rb:297
620
+ #: ../lib/alexandria/ui/callbacks.rb:385
347
621
  msgid "_Rename"
348
622
  msgstr "_Zmień nazwę"
349
623
 
350
- #: ../lib/alexandria/ui/callbacks.rb:298
624
+ #: ../lib/alexandria/ui/callbacks.rb:386
351
625
  msgid "_Delete"
352
626
  msgstr "_Usuń"
353
627
 
354
- #: ../lib/alexandria/ui/callbacks.rb:298
628
+ #: ../lib/alexandria/ui/callbacks.rb:386
355
629
  msgid "Delete the selected books or library"
356
- msgstr "Usuwa wybrane książki lub bibliotekę"
630
+ msgstr "Usuwa zaznaczone książki lub bibliotekę"
357
631
 
358
- #: ../lib/alexandria/ui/callbacks.rb:299
632
+ #: ../lib/alexandria/ui/callbacks.rb:387
359
633
  msgid "_Search"
360
634
  msgstr "Wy_szukaj"
361
635
 
362
- #: ../lib/alexandria/ui/callbacks.rb:299
636
+ #: ../lib/alexandria/ui/callbacks.rb:387
363
637
  msgid "Filter books"
364
- msgstr "Filtruj książki"
638
+ msgstr "Filtruje książki"
365
639
 
366
- #: ../lib/alexandria/ui/callbacks.rb:300
640
+ #: ../lib/alexandria/ui/callbacks.rb:388
367
641
  msgid "_Clear Results"
368
642
  msgstr "Wy_czyść wyniki"
369
643
 
370
- #: ../lib/alexandria/ui/callbacks.rb:300
644
+ #: ../lib/alexandria/ui/callbacks.rb:388
371
645
  msgid "Clear the search results"
372
646
  msgstr "Czyści wyniki wyszukiwania"
373
647
 
374
- #: ../lib/alexandria/ui/callbacks.rb:301
648
+ #: ../lib/alexandria/ui/callbacks.rb:389
375
649
  msgid "_Preferences"
376
650
  msgstr "_Preferencje"
377
651
 
378
- #: ../lib/alexandria/ui/callbacks.rb:301
652
+ #: ../lib/alexandria/ui/callbacks.rb:389
379
653
  msgid "Change Alexandria's settings"
380
- msgstr "Zmiana ustawień Aleksandrii"
654
+ msgstr "Zmiana ustawień programu Aleksandria"
381
655
 
382
- #: ../lib/alexandria/ui/callbacks.rb:302
656
+ #: ../lib/alexandria/ui/callbacks.rb:390
383
657
  msgid "_View"
384
658
  msgstr "_Widok"
385
659
 
386
- #: ../lib/alexandria/ui/callbacks.rb:303
660
+ #: ../lib/alexandria/ui/callbacks.rb:391
387
661
  msgid "Arran_ge Icons"
388
- msgstr "_Uporządkuj ikony"
389
-
390
- #: ../lib/alexandria/ui/callbacks.rb:304
391
- msgid "Display Online _Information"
392
- msgstr "Wyświetla _informację online"
393
-
394
- #: ../lib/alexandria/ui/callbacks.rb:306
395
- msgid "_Help"
396
- msgstr "Pomo_c"
397
-
398
- #: ../lib/alexandria/ui/callbacks.rb:307
399
- msgid "Submit _Bug Report"
400
- msgstr "Wyślij raport _błędu"
401
-
402
- #: ../lib/alexandria/ui/callbacks.rb:307
403
- msgid "Submit a bug report to the developers"
404
- msgstr "Wysyła raport błędu programistom"
405
-
406
- #: ../lib/alexandria/ui/callbacks.rb:308
407
- msgid "Contents"
408
- msgstr "Zawartość"
409
-
410
- #: ../lib/alexandria/ui/callbacks.rb:308
411
- msgid "View Alexandria's manual"
412
- msgstr "Wyświetla podręcznik programu Aleksandria"
413
-
414
- #: ../lib/alexandria/ui/callbacks.rb:309
415
- msgid "_About"
416
- msgstr "_O programie"
417
-
418
- #: ../lib/alexandria/ui/callbacks.rb:309
419
- msgid "Show information about Alexandria"
420
- msgstr "Wyświetla informacje o programie Aleksandria"
421
-
422
- #: ../lib/alexandria/ui/callbacks.rb:334
423
- msgid "Side _Pane"
424
- msgstr "_Panel boczny"
425
-
426
- #: ../lib/alexandria/ui/callbacks.rb:336
427
- msgid "_Toolbar"
428
- msgstr "Pasek _narzędziowy"
429
-
430
- #: ../lib/alexandria/ui/callbacks.rb:338
431
- msgid "_Statusbar"
432
- msgstr "Pasek _stanu"
433
-
434
- #: ../lib/alexandria/ui/callbacks.rb:340
435
- msgid "Re_versed Order"
436
- msgstr "Od_wrócony porządek"
437
-
438
- #: ../lib/alexandria/ui/callbacks.rb:345
439
- msgid "View as _Icons"
440
- msgstr "Widok _ikon"
441
-
442
- #: ../lib/alexandria/ui/callbacks.rb:346
443
- msgid "View as _List"
444
- msgstr "Widok _listy"
445
-
446
- #: ../lib/alexandria/ui/callbacks.rb:350
447
- msgid "By _Title"
448
- msgstr "Według _tytułu"
449
-
450
- #: ../lib/alexandria/ui/callbacks.rb:351
451
- msgid "By _Authors"
452
- msgstr "Według _autorów"
453
-
454
- #: ../lib/alexandria/ui/callbacks.rb:352
455
- msgid "By _ISBN"
456
- msgstr "Według _ISBN"
457
-
458
- #: ../lib/alexandria/ui/callbacks.rb:353
459
- msgid "By _Publisher"
460
- msgstr "Według _wydawcy"
461
-
462
- #: ../lib/alexandria/ui/callbacks.rb:354
463
- msgid "By _Binding"
464
- msgstr "Według _oprawy"
465
-
466
- #: ../lib/alexandria/ui/callbacks.rb:355
467
- msgid "By _Rating"
468
- msgstr "Według _ocen"
469
-
470
- #: ../lib/alexandria/ui/callbacks.rb:359
471
- msgid "At _%s"
472
- msgstr "W _%s"
473
-
474
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:395
475
- msgid "There was %d duplicate"
476
- msgid_plural "There were %d duplicates"
477
- msgstr[0] "Jest %d duplikat"
478
- msgstr[1] "Są %d duplikaty"
479
- msgstr[2] "Jest %d duplikatów"
480
-
481
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:398
482
- msgid "Couldn't add this book"
483
- msgid_plural "Couldn't add these books"
484
- msgstr[0] "Nie można dodać tej książki"
485
- msgstr[1] "Nie można dodać tych książek"
486
- msgstr[2] "Nie można dodać tych książek"
487
-
488
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:477
489
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:555
490
- msgid "Searching Provider '%s'..."
491
- msgstr "Wyszukiwanie dostawcy \"%s\"..."
492
-
493
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:478
494
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:556
495
- msgid "Error while Searching Provider '%s'"
496
- msgstr "Błąd podczas wyszukiwania dostawcy \"%s\""
497
-
498
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:479
499
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:557
500
- msgid "Not Found at Provider '%s'"
501
- msgstr "Nie znaleziono u dostawcy \"%s\""
502
-
503
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:480
504
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:558
505
- msgid "Found at Provider '%s'"
506
- msgstr "Znaleziono u dostawcy \"%s\""
507
-
508
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:610
509
- msgid "Ready to use %s barcode scanner"
510
- msgstr "Skaner kodów kreskowych %s jest gotowy do użycia"
511
-
512
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:625
513
- #: ../data/alexandria/glade/acquire_dialog.glade:26
514
- msgid "_Barcode Scanner Ready"
515
- msgstr "Czytnik _kodów kreskowych jest gotowy"
516
-
517
- #: ../lib/alexandria/ui/dialogs/acquire_dialog.rb:640
518
- msgid "Click below to scan _barcodes"
519
- msgstr "Proszę nacisnąć poniżej, aby zeskanować _kody kreskowe"
520
-
521
- #: ../lib/alexandria/ui/dialogs/bad_isbns_dialog.rb:24
522
- msgid "There's a problem"
523
- msgstr "Wystąpił problem"
524
-
525
- #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:30
526
- msgid "New Smart Library"
527
- msgstr "Nowa automatyczna biblioteka"
528
-
529
- #: ../lib/alexandria/ui/dialogs/new_smart_library_dialog.rb:49
530
- msgid "Smart Library"
531
- msgstr "Automatyczna biblioteka"
532
-
533
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:106
534
- msgid "Preferences for %s"
535
- msgstr "Preferencje programu %s"
536
-
537
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:131
538
- msgid "New Provider"
539
- msgstr "Nowy dostawca"
540
-
541
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:146
542
- msgid "_Name:"
543
- msgstr "_Nazwa:"
544
-
545
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:158
546
- msgid "_Type:"
547
- msgstr "_Typ:"
548
-
549
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:316
550
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
551
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
552
- msgid "Disable Provider"
553
- msgstr "Wyłączenie dostawcy"
554
-
555
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:339
556
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:359
557
- msgid "Enable Provider"
558
- msgstr "Włączenie dostawcy"
559
-
560
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:423
561
- msgid "Are you sure you want to permanently delete the provider '%s'?"
562
- msgstr "Na pewno trwale usunąć dostawcę \"%s\"?"
563
-
564
- #: ../lib/alexandria/ui/dialogs/preferences_dialog.rb:431
565
- msgid ""
566
- "If you continue, the provider and all of its preferences will be permanently "
567
- "deleted."
568
- msgstr ""
569
- "Kontynuując dostawca i wszystkie jego preferencje zostaną trwale usunięte."
570
-
571
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:36
572
- msgid "Error while importing"
573
- msgstr "Błąd podczas importowania"
574
-
575
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:39
576
- msgid "_Continue"
577
- msgstr "_Kontynuuj"
578
-
579
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:64
580
- msgid "Import a Library"
581
- msgstr "Zaimportuj bibliotekę"
582
-
583
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:71
584
- msgid "_Import"
585
- msgstr "Za_importuj"
586
-
587
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:188
588
- msgid "Couldn't import the library"
589
- msgstr "Nie można zaimportować biblioteki"
590
-
591
- #: ../lib/alexandria/ui/dialogs/import_dialog.rb:189
592
- msgid ""
593
- "The format of the file you provided is unknown. Please retry with another "
594
- "file."
595
- msgstr ""
596
- "Nieznany format podanego pliku. Proszę spróbować ponownie z innym plikiem."
597
-
598
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb:30
599
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:63
600
- msgid "Properties for '%s'"
601
- msgstr "Właściwości \"%s\""
602
-
603
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:83
604
- msgid "Empty or conflictive condition"
605
- msgstr "Pusty lub konfliktowy warunek"
606
-
607
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:86
608
- msgid "_Save However"
609
- msgstr "Zapi_sz mimo to"
610
-
611
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:87
612
- msgid ""
613
- "This smart library contains one or more conditions which are empty or "
614
- "conflict with each other. This is likely to result in never matching a book. "
615
- "Are you sure you want to save this library?"
616
- msgstr ""
617
- "Automatyczna biblioteka zawiera jeden lub więcej warunków, które są puste "
618
- "lub są w konflikcie ze sobą. Prawdopodobnie z tego powodu żadna książka nie "
619
- "pasuje. Na pewno zapisać tę bibliotekę?"
662
+ msgstr "_Porządkowanie ikon"
620
663
 
621
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:106
622
- msgid "Match"
623
- msgstr "Zgadzają się"
664
+ #: ../lib/alexandria/ui/callbacks.rb:392
665
+ msgid "Display Online _Information"
666
+ msgstr "Wyświetl informacje z _Internetu"
624
667
 
625
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
626
- msgid "all"
627
- msgstr "wszystkie"
668
+ #: ../lib/alexandria/ui/callbacks.rb:394
669
+ msgid "_Help"
670
+ msgstr "Pomo_c"
628
671
 
629
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:109
630
- msgid "any"
631
- msgstr "dowolne"
672
+ #: ../lib/alexandria/ui/callbacks.rb:395
673
+ msgid "Submit _Bug Report"
674
+ msgstr "Zgłoś _błąd"
632
675
 
633
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:119
634
- msgid "of the following rules:"
635
- msgstr "jedna z poniższych reguł:"
676
+ #: ../lib/alexandria/ui/callbacks.rb:395
677
+ msgid "Submit a bug report to the developers"
678
+ msgstr "Wysyła zgłoszenie błędu programistom"
636
679
 
637
- #: ../lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb:127
638
- msgid "Match the following rule:"
639
- msgstr "Następująca reguła musi się zgadzać:"
680
+ #: ../lib/alexandria/ui/callbacks.rb:396
681
+ msgid "Contents"
682
+ msgstr "Spis treści"
640
683
 
641
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:114
642
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:123
643
- msgid "Couldn't modify the book"
644
- msgstr "Nie można zmodyfikować książki"
684
+ #: ../lib/alexandria/ui/callbacks.rb:396
685
+ msgid "View Alexandria's manual"
686
+ msgstr "Wyświetla podręcznik programu Aleksandria"
645
687
 
646
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:115
647
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:88
648
- msgid "The EAN/ISBN you provided is already used in this library."
649
- msgstr "Podany numer EAN/ISBN jest już użyty w tej bibliotece."
688
+ #: ../lib/alexandria/ui/callbacks.rb:397
689
+ msgid "_About"
690
+ msgstr "_O programie"
650
691
 
651
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog.rb:124
652
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:94
653
- msgid ""
654
- "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
655
- "correcty, and try again."
656
- msgstr ""
657
- "Nie można sprawdzić podanego numeru EAN/ISBN. Proszę upewnić się, że numer "
658
- "został poprawnie wpisany i spróbować ponownie."
692
+ #: ../lib/alexandria/ui/callbacks.rb:397
693
+ msgid "Show information about Alexandria"
694
+ msgstr "Wyświetla informacje o programie Aleksandria"
659
695
 
660
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:65
661
- msgid "Properties"
662
- msgstr "Właściwości"
696
+ #: ../lib/alexandria/ui/callbacks.rb:404
697
+ msgid "At _%s"
698
+ msgstr "_%s"
663
699
 
664
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:71
665
- msgid "Author"
666
- msgstr "Autor"
700
+ #: ../lib/alexandria/ui/callbacks.rb:410
701
+ msgid "Side_pane"
702
+ msgstr "_Panel boczny"
667
703
 
668
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:123
669
- msgid "Select a cover image"
670
- msgstr "Wybierz okładkę"
704
+ #: ../lib/alexandria/ui/callbacks.rb:411
705
+ msgid "_Toolbar"
706
+ msgstr "Pasek _narzędziowy"
671
707
 
672
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:127
673
- msgid "No Cover"
674
- msgstr "Brak okładki"
708
+ #: ../lib/alexandria/ui/callbacks.rb:412
709
+ msgid "_Statusbar"
710
+ msgstr "Pasek _stanu"
675
711
 
676
- #: ../lib/alexandria/ui/dialogs/book_properties_dialog_base.rb:186
677
- msgid "%d day"
678
- msgid_plural "%d days"
679
- msgstr[0] "%d dzień"
680
- msgstr[1] "%d dni"
681
- msgstr[2] "%d dni"
712
+ #: ../lib/alexandria/ui/callbacks.rb:413
713
+ msgid "Re_versed Order"
714
+ msgstr "_Odwrotna kolejność"
682
715
 
683
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:58
684
- msgid "Adding '%s'"
685
- msgstr "Dodawanie \"%s\""
716
+ #: ../lib/alexandria/ui/callbacks.rb:418
717
+ msgid "View as _Icons"
718
+ msgstr "Widok _ikon"
686
719
 
687
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:60
688
- #: ../data/alexandria/glade/new_book_dialog.glade:8
689
- msgid "Adding a Book"
690
- msgstr "Dodawanie książki"
720
+ #: ../lib/alexandria/ui/callbacks.rb:419
721
+ msgid "View as _List"
722
+ msgstr "Widok _listy"
691
723
 
692
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:81
693
- msgid "A title must be provided."
694
- msgstr "Tytuł musi zostać podany."
724
+ #: ../lib/alexandria/ui/callbacks.rb:423
725
+ msgid "By _Title"
726
+ msgstr "Według _tytułu"
695
727
 
696
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:102
697
- msgid "A publisher must be provided."
698
- msgstr "Wydawca musi zostać podany."
728
+ #: ../lib/alexandria/ui/callbacks.rb:424
729
+ msgid "By _Authors"
730
+ msgstr "Według _autorów"
699
731
 
700
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:109
701
- msgid "A binding must be provided."
702
- msgstr "Oprawa musi zostać podana."
732
+ #: ../lib/alexandria/ui/callbacks.rb:425
733
+ msgid "By _ISBN"
734
+ msgstr "Według _ISBN"
703
735
 
704
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:115
705
- msgid "At least one author must be provided."
706
- msgstr "Należy podać co najmniej jednego autora."
736
+ #: ../lib/alexandria/ui/callbacks.rb:426
737
+ msgid "By _Publisher"
738
+ msgstr "Według _wydawcy"
707
739
 
708
- #: ../lib/alexandria/ui/dialogs/new_book_dialog_manual.rb:142
709
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:523
710
- msgid "Couldn't add the book"
711
- msgstr "Nie można dodać książki"
740
+ #: ../lib/alexandria/ui/callbacks.rb:427
741
+ msgid "By _Binding"
742
+ msgstr "Według _oprawy"
743
+
744
+ #: ../lib/alexandria/ui/callbacks.rb:428
745
+ msgid "By _Rating"
746
+ msgstr "Według _ocen"
712
747
 
713
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:25
748
+ #: ../lib/alexandria/ui/confirm_erase_dialog.rb:16
714
749
  msgid "File already exists"
715
750
  msgstr "Plik już istnieje"
716
751
 
717
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:28
718
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:30
752
+ #: ../lib/alexandria/ui/confirm_erase_dialog.rb:19
753
+ #: ../lib/alexandria/ui/conflict_while_copying_dialog.rb:21
719
754
  msgid "_Replace"
720
755
  msgstr "_Zastąp"
721
756
 
722
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:29
757
+ #: ../lib/alexandria/ui/confirm_erase_dialog.rb:20
723
758
  msgid ""
724
759
  "A file named '%s' already exists. Do you want to replace it with the one "
725
760
  "you are generating?"
761
+ msgstr "Plik o nazwie „%s” już istnieje. Zastąpić go nowo utworzonym plikiem?"
762
+
763
+ #: ../lib/alexandria/ui/conflict_while_copying_dialog.rb:17
764
+ msgid "The book '%s' already exists in '%s'. Would you like to replace it?"
765
+ msgstr "Książka „%s” istnieje już w bibliotece „%s”. Zastąpić ją?"
766
+
767
+ #: ../lib/alexandria/ui/conflict_while_copying_dialog.rb:20
768
+ msgid "_Skip"
769
+ msgstr "_Pomiń"
770
+
771
+ #: ../lib/alexandria/ui/conflict_while_copying_dialog.rb:22
772
+ msgid "If you replace the existing book, its contents will be overwritten."
726
773
  msgstr ""
727
- "Plik o nazwie \"%s\" już istnieje. Zastąpić go nowo utworzonym plikiem?"
774
+ "Jeśli istniejąca książka zostanie zastąpiona, jej zawartość zostanie "
775
+ "nadpisana."
728
776
 
729
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:52
777
+ #: ../lib/alexandria/ui/export_dialog.rb:22
730
778
  msgid "Export '%s'"
731
- msgstr "Wyeksportuj \"%s\""
779
+ msgstr "Eksport „%s"
732
780
 
733
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:58
781
+ #: ../lib/alexandria/ui/export_dialog.rb:27
734
782
  msgid "_Export"
735
783
  msgstr "Wy_eksportuj"
736
784
 
737
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:77
785
+ #: ../lib/alexandria/ui/export_dialog.rb:48
738
786
  msgid "_Theme:"
739
- msgstr "Mo_tyw:"
787
+ msgstr "M_otyw:"
740
788
 
741
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:87
789
+ #: ../lib/alexandria/ui/export_dialog.rb:60
742
790
  msgid "directory"
743
791
  msgstr "katalog"
744
792
 
745
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:100
793
+ #: ../lib/alexandria/ui/export_dialog.rb:72
746
794
  msgid "Export for_mat:"
747
795
  msgstr "For_mat eksportu:"
748
796
 
749
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:155
797
+ #: ../lib/alexandria/ui/export_dialog.rb:99
798
+ msgid "Export failed"
799
+ msgstr "Eksport się nie powiódł"
800
+
801
+ #: ../lib/alexandria/ui/export_dialog.rb:122
750
802
  msgid ""
751
803
  "The target, named '%s', is a regular file. A directory is needed for this "
752
804
  "operation. Please select a directory and try again."
753
805
  msgstr ""
754
- "Docelowy plik \"%s\" jest zwykłym plikiem. Do tej operacji wymagany jest "
755
- "katalog. Proszę go wybrać i spróbować ponownie."
806
+ "Docelowy plik „%s jest zwykłym plikiem. Do tego działania wymagany jest "
807
+ "katalog. Proszę go wybrać i spróbować ponownie."
756
808
 
757
- #: ../lib/alexandria/ui/dialogs/export_dialog.rb:159
809
+ #: ../lib/alexandria/ui/export_dialog.rb:126
758
810
  msgid "Not a directory"
759
- msgstr "To nie jest katalog"
811
+ msgstr "Nie jest katalogiem"
760
812
 
761
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:32
762
- msgid "Invalid ISBN '%s'"
763
- msgstr "Nieprawidłowy ISBN \"%s\""
813
+ #: ../lib/alexandria/ui/import_dialog.rb:23
814
+ msgid "Import a Library"
815
+ msgstr "Import biblioteki"
764
816
 
765
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:35
766
- msgid "_Keep"
767
- msgstr "_Zatrzymaj"
817
+ #: ../lib/alexandria/ui/import_dialog.rb:30
818
+ msgid "_Import"
819
+ msgstr "Zai_mportuj"
820
+
821
+ #: ../lib/alexandria/ui/import_dialog.rb:134
822
+ msgid "Couldn't import the library"
823
+ msgstr "Nie można zaimportować biblioteki"
824
+
825
+ #: ../lib/alexandria/ui/import_dialog.rb:135
826
+ msgid ""
827
+ "The format of the file you provided is unknown. Please retry with another "
828
+ "file."
829
+ msgstr ""
830
+ "Nieznany format podanego pliku. Proszę spróbować ponownie z innym plikiem."
831
+
832
+ #: ../lib/alexandria/ui/init.rb:69
833
+ msgid "Unable to launch the help browser"
834
+ msgstr "Nie można uruchomić przeglądarki pomocy"
768
835
 
769
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:36
836
+ #: ../lib/alexandria/ui/init.rb:70
837
+ msgid ""
838
+ "Could not display help for Alexandria. There was an error launching the "
839
+ "system help browser."
840
+ msgstr ""
841
+ "Nie można wyświetlić pomocy programu Aleksandria. Wystąpił błąd podczas "
842
+ "uruchamiania systemowej przeglądarki pomocy."
843
+
844
+ #: ../lib/alexandria/ui/keep_bad_isbn_dialog.rb:16
845
+ msgid "Invalid ISBN '%s'"
846
+ msgstr "Nieprawidłowy numer ISBN „%s”"
847
+
848
+ #: ../lib/alexandria/ui/keep_bad_isbn_dialog.rb:18
770
849
  msgid ""
771
850
  "The book titled '%s' has an invalid ISBN, but still exists in the providers "
772
- "libraries. Do you want to keep the book but change the ISBN or cancel the "
773
- "add?"
851
+ "libraries. Do you want to keep the book but change the ISBN or cancel the "
852
+ "addition?"
774
853
  msgstr ""
775
- "Książka o tytule \"%s\" posiada nieprawidłowy numer ISBN, ale mimo to "
776
- "istnieje w bibliotece dostawcy. Zatrzymać książkę zmieniając ISBN, czy "
854
+ "Książka o tytule „%s ma nieprawidłowy numer ISBN, ale mimo to istnieje "
855
+ "w bibliotekach dostawców. Zostawić książkę zmieniając numer ISBN, czy "
777
856
  "anulować dodawanie?"
778
857
 
779
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:182
858
+ #: ../lib/alexandria/ui/keep_bad_isbn_dialog.rb:24
859
+ msgid "_Keep"
860
+ msgstr "_Zostaw"
861
+
862
+ #: ../lib/alexandria/ui/libraries_combo.rb:41
863
+ msgid "New Library"
864
+ msgstr "Nowa biblioteka"
865
+
866
+ #: ../lib/alexandria/ui/listview.rb:56
867
+ msgid "Loaned To"
868
+ msgstr "Wypożyczona"
869
+
870
+ #: ../lib/alexandria/ui/new_book_dialog.rb:153
780
871
  msgid "A problem occurred while downloading images"
781
872
  msgstr "Wystąpił problem podczas pobierania obrazów"
782
873
 
783
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:304
874
+ #: ../lib/alexandria/ui/new_book_dialog.rb:193
875
+ msgid "Iter is invalid! %s"
876
+ msgstr "Iter jest nieprawidłowe. %s"
877
+
878
+ #: ../lib/alexandria/ui/new_book_dialog.rb:267
784
879
  msgid "Unable to find matches for your search"
785
- msgstr "Nie można znaleźć wyników odpowiadających kryteriom"
880
+ msgstr "Nie można odnaleźć wyników odpowiadających kryteriom"
786
881
 
787
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:310
882
+ #: ../lib/alexandria/ui/new_book_dialog.rb:303
788
883
  msgid "%s, by %s"
789
884
  msgstr "%s, przez %s"
790
885
 
791
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:383
886
+ #: ../lib/alexandria/ui/new_book_dialog.rb:309
887
+ msgid "Copying %s into tree view."
888
+ msgstr "Kopiowanie %s do widoku drzewa."
889
+
890
+ #: ../lib/alexandria/ui/new_book_dialog.rb:337
792
891
  msgid ""
793
892
  "Couldn't validate the EAN/ISBN you provided. Make sure it is written "
794
893
  "correctly, and try again."
795
894
  msgstr ""
796
- "Nie można sprawdzić podanego numeru EAN/ISBN. Proszę upewnić się, że numer "
797
- "został poprawnie wpisany i spróbować ponownie."
895
+ "Nie można sprawdzić poprawności podanego numeru EAN/ISBN. Proszę się "
896
+ "upewnić, że numer został poprawnie wpisany i spróbować ponownie."
897
+
898
+ #: ../lib/alexandria/ui/new_book_dialog.rb:466
899
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:119
900
+ msgid "Couldn't add the book"
901
+ msgstr "Nie można dodać książki"
798
902
 
799
- #: ../lib/alexandria/ui/dialogs/new_book_dialog.rb:630
903
+ #: ../lib/alexandria/ui/new_book_dialog.rb:572
800
904
  msgid "'%s' already exists in '%s' (titled '%s')."
801
- msgstr "\"%s\" już istnieje w \"%s\" (o tytule \"%s\")."
905
+ msgstr "„%s już istnieje w „%s (o tytule „%s)."
802
906
 
803
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:26
804
- msgid "The book '%s' already exists in '%s'. Would you like to replace it?"
805
- msgstr "Książka \"%s\" istnieje już w bibliotece \"%s\". Zastąpić ją?"
907
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:50
908
+ #: ../share/alexandria/glade/new_book_dialog__builder.glade:32
909
+ msgid "Adding a Book"
910
+ msgstr "Dodawanie książki"
806
911
 
807
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:29
808
- msgid "_Skip"
809
- msgstr "_Pomiń"
912
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:52
913
+ msgid "Adding '%s'"
914
+ msgstr "Dodawanie „%s”"
810
915
 
811
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:31
812
- msgid "If you replace the existing book, its contents will be overwritten."
916
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:67
917
+ msgid "A title must be provided."
918
+ msgstr "Należy podać tytuł."
919
+
920
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:83
921
+ msgid "A publisher must be provided."
922
+ msgstr "Należy podać wydawcę."
923
+
924
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:89
925
+ msgid "A binding must be provided."
926
+ msgstr "Należy podać oprawę."
927
+
928
+ #: ../lib/alexandria/ui/new_book_dialog_manual.rb:95
929
+ msgid "At least one author must be provided."
930
+ msgstr "Należy podać co najmniej jednego autora."
931
+
932
+ #: ../lib/alexandria/ui/new_provider_dialog.rb:16
933
+ msgid "New Provider"
934
+ msgstr "Nowy dostawca"
935
+
936
+ #: ../lib/alexandria/ui/new_provider_dialog.rb:31
937
+ msgid "_Name:"
938
+ msgstr "_Nazwa:"
939
+
940
+ #: ../lib/alexandria/ui/new_provider_dialog.rb:43
941
+ msgid "_Type:"
942
+ msgstr "_Typ:"
943
+
944
+ #: ../lib/alexandria/ui/new_smart_library_dialog.rb:19
945
+ msgid "New Smart Library"
946
+ msgstr "Nowa automatyczna biblioteka"
947
+
948
+ #: ../lib/alexandria/ui/new_smart_library_dialog.rb:55
949
+ msgid "Smart Library"
950
+ msgstr "Automatyczna biblioteka"
951
+
952
+ #: ../lib/alexandria/ui/preferences_dialog.rb:207
953
+ msgid "Are you sure you want to permanently delete the provider '%s'?"
954
+ msgstr "Na pewno trwale usunąć dostawcę „%s”?"
955
+
956
+ #: ../lib/alexandria/ui/preferences_dialog.rb:215
957
+ msgid ""
958
+ "If you continue, the provider and all of its preferences will be permanently "
959
+ "deleted."
813
960
  msgstr ""
814
- "Jeśli istniejąca książka zostanie zastąpiona, jej zawartość zostanie "
815
- "nadpisana."
961
+ "Kontynuacja spowoduje trwałe usunięcie dostawcy i wszystkich jego "
962
+ "preferencji."
963
+
964
+ #: ../lib/alexandria/ui/provider_preferences_dialog.rb:16
965
+ msgid "Preferences for %s"
966
+ msgstr "Preferencje dostawcy %s"
816
967
 
817
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:50
968
+ #: ../lib/alexandria/ui/really_delete_dialog.rb:18
818
969
  msgid "Are you sure you want to delete '%s'?"
819
- msgstr "Na pewno usunąć \"%s\"?"
970
+ msgstr "Na pewno usunąć „%s”?"
820
971
 
821
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:58
972
+ #: ../lib/alexandria/ui/really_delete_dialog.rb:22
822
973
  msgid "If you continue, %d book will be deleted."
823
974
  msgid_plural "If you continue, %d books will be deleted."
824
- msgstr[0] "Kontynuując, %d książka zostanie usunięta."
825
- msgstr[1] "Kontynuując, %d książki zostaną usunięte."
826
- msgstr[2] "Kontynuując, %d książek zostanie usuniętych."
975
+ msgstr[0] "Kontynuacja spowoduje usunięcie %d książki."
976
+ msgstr[1] "Kontynuacja spowoduje usunięcie %d książek."
977
+ msgstr[2] "Kontynuacja spowoduje usunięcie %d książek."
827
978
 
828
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:63
979
+ #: ../lib/alexandria/ui/really_delete_dialog.rb:29
829
980
  msgid "Are you sure you want to delete '%s' from '%s'?"
830
- msgstr "Na pewno usunąć \"%s\"' z \"%s\"?"
981
+ msgstr "Na pewno usunąć „%s z „%s”?"
831
982
 
832
- #: ../lib/alexandria/ui/dialogs/misc_dialogs.rb:66
983
+ #: ../lib/alexandria/ui/really_delete_dialog.rb:32
833
984
  msgid "Are you sure you want to delete the selected books from '%s'?"
834
- msgstr "Na pewno usunąć wybrane książki z \"%s\"?"
985
+ msgstr "Na pewno usunąć zaznaczone książki z „%s”?"
835
986
 
836
- #: ../lib/alexandria/ui/sidepane.rb:49
987
+ #: ../lib/alexandria/ui/sidepane_manager.rb:54
837
988
  msgid "Invalid library name '%s'"
838
- msgstr "Nieprawidłowa nazwa biblioteki \"%s\""
989
+ msgstr "Nieprawidłowa nazwa biblioteki „%s"
839
990
 
840
- #: ../lib/alexandria/ui/sidepane.rb:50
841
- msgid "The name provided contains the disallowed character <b>%s</b> "
842
- msgstr "Podana nazwa zawiera niedozwolony znak <b>%s</b> "
991
+ #: ../lib/alexandria/ui/sidepane_manager.rb:55
992
+ msgid "The name provided contains the disallowed character <b>%s</b>"
993
+ msgstr "Podana nazwa zawiera niedozwolony znak <b>%s</b>"
843
994
 
844
- #: ../lib/alexandria/ui/sidepane.rb:53
995
+ #: ../lib/alexandria/ui/sidepane_manager.rb:58
845
996
  msgid "Invalid library name"
846
997
  msgstr "Nieprawidłowa nazwa biblioteki"
847
998
 
848
- #: ../lib/alexandria/ui/sidepane.rb:54
999
+ #: ../lib/alexandria/ui/sidepane_manager.rb:59
849
1000
  msgid "The name provided contains invalid characters."
850
1001
  msgstr "Podana nazwa zawiera nieprawidłowe znaki."
851
1002
 
852
- #: ../lib/alexandria/ui/sidepane.rb:60
1003
+ #: ../lib/alexandria/ui/sidepane_manager.rb:65
853
1004
  msgid "The library name can not be empty"
854
1005
  msgstr "Nazwa biblioteki nie może być pusta"
855
1006
 
856
- #: ../lib/alexandria/ui/sidepane.rb:65
1007
+ #: ../lib/alexandria/ui/sidepane_manager.rb:70
857
1008
  msgid "The library can not be renamed"
858
1009
  msgstr "Nazwa biblioteki nie może zostać zmieniona"
859
1010
 
860
- #: ../lib/alexandria/ui/sidepane.rb:66
1011
+ #: ../lib/alexandria/ui/sidepane_manager.rb:71
861
1012
  msgid "There is already a library named '%s'. Please choose a different name."
862
- msgstr "Istnieje już biblioteka o nazwie \"%s\". Proszę wybrać inną nazwę."
1013
+ msgstr "Istnieje już biblioteka o nazwie „%s”. Proszę wybrać inną."
863
1014
 
864
- #: ../lib/alexandria/ui/sidepane.rb:92
1015
+ #: ../lib/alexandria/ui/sidepane_manager.rb:96
865
1016
  msgid "Library"
866
1017
  msgstr "Biblioteka"
867
1018
 
868
- #: ../lib/alexandria/ui/libraries_combo.rb:44
869
- msgid "New Library"
870
- msgstr "Nowa biblioteka"
871
-
872
- #: ../lib/alexandria/ui/listview.rb:52 ../lib/alexandria/smart_library.rb:349
873
- msgid "Title"
874
- msgstr "Tytuł"
875
-
876
- #: ../lib/alexandria/ui/listview.rb:105 ../lib/alexandria/smart_library.rb:351
877
- msgid "Authors"
878
- msgstr "Autorzy"
879
-
880
- #: ../lib/alexandria/ui/listview.rb:106 ../lib/alexandria/smart_library.rb:350
881
- msgid "ISBN"
882
- msgstr "ISBN"
883
-
884
- #: ../lib/alexandria/ui/listview.rb:107 ../lib/alexandria/smart_library.rb:352
885
- msgid "Publisher"
886
- msgstr "Wydawca"
887
-
888
- #: ../lib/alexandria/ui/listview.rb:108 ../lib/alexandria/smart_library.rb:353
889
- msgid "Publish Year"
890
- msgstr "Rok wydania"
891
-
892
- #: ../lib/alexandria/ui/listview.rb:109 ../lib/alexandria/smart_library.rb:354
893
- msgid "Binding"
894
- msgstr "Oprawa"
895
-
896
- #: ../lib/alexandria/ui/listview.rb:110
897
- #, fuzzy
898
- msgid "Loaned To"
899
- msgstr "Wypożyczone"
900
-
901
- #: ../lib/alexandria/ui/listview.rb:113 ../lib/alexandria/smart_library.rb:104
902
- #: ../lib/alexandria/smart_library.rb:361
903
- msgid "Read"
904
- msgstr "Przeczytana"
905
-
906
- #: ../lib/alexandria/ui/listview.rb:114 ../lib/alexandria/smart_library.rb:363
907
- msgid "Own"
908
- msgstr "Posiadana"
909
-
910
- #: ../lib/alexandria/ui/listview.rb:115 ../lib/alexandria/smart_library.rb:364
911
- msgid "Want"
912
- msgstr "Pożądana"
913
-
914
- #: ../lib/alexandria/ui/listview.rb:141 ../lib/alexandria/smart_library.rb:357
915
- #: ../data/alexandria/glade/preferences_dialog.glade:421
916
- msgid "Tags"
917
- msgstr "Etykiety"
918
-
919
- #: ../lib/alexandria/ui/listview.rb:166 ../lib/alexandria/smart_library.rb:355
920
- msgid "Rating"
921
- msgstr "Ocena"
922
-
923
- #: ../lib/alexandria/ui/init.rb:83
924
- msgid "Unable to launch the help browser"
925
- msgstr "Nie można uruchomić przeglądarki pomocy"
926
-
927
- #: ../lib/alexandria/ui/init.rb:84
928
- msgid ""
929
- "Could not display help for Alexandria. There was an error launching the "
930
- "system help browser."
931
- msgstr ""
932
- "Nie można wyświetlić pomocy programu Aleksandria. Wystąpił błąd podczas "
933
- "uruchamiania systemowej przeglądarki pomocy."
934
-
935
- #: ../lib/alexandria/book_providers/amazon_aws.rb:37
936
- msgid "Locale"
937
- msgstr "Lokalizacja"
938
-
939
- #: ../lib/alexandria/book_providers/amazon_aws.rb:38
940
- msgid "Access key ID"
941
- msgstr "Identyfikator klucza dostępu"
942
-
943
- #: ../lib/alexandria/book_providers/amazon_aws.rb:39
944
- msgid "Secret access key"
945
- msgstr "Tajny klucz dostępu"
946
-
947
- #: ../lib/alexandria/book_providers/mcu.rb:39
948
- msgid "Spanish Culture Ministry"
949
- msgstr "Hiszpańskie Ministerstwo Kultury"
950
-
951
- #: ../lib/alexandria/book_providers/z3950.rb:34
952
- msgid "Hostname"
953
- msgstr "Nazwa komputera"
954
-
955
- #: ../lib/alexandria/book_providers/z3950.rb:35
956
- msgid "Port"
957
- msgstr "Port"
958
-
959
- #: ../lib/alexandria/book_providers/z3950.rb:36
960
- msgid "Database"
961
- msgstr "Baza danych"
962
-
963
- #: ../lib/alexandria/book_providers/z3950.rb:37
964
- msgid "Record syntax"
965
- msgstr "Składnia wpisu"
966
-
967
- #: ../lib/alexandria/book_providers/z3950.rb:38
968
- msgid "Username"
969
- msgstr "Nazwa użytkownika"
970
-
971
- #: ../lib/alexandria/book_providers/z3950.rb:39
972
- msgid "Password"
973
- msgstr "Hasło"
974
-
975
- #: ../lib/alexandria/book_providers/z3950.rb:40
976
- msgid "Charset encoding"
977
- msgstr "Kodowanie znaków"
978
-
979
- #: ../lib/alexandria/book_providers/z3950.rb:221
980
- msgid "Library of Congress (Usa)"
981
- msgstr "Biblioteka Kongresu (USA)"
982
-
983
- #: ../lib/alexandria/book_providers/z3950.rb:255
984
- msgid "British Library"
985
- msgstr "Biblioteka Brytyjska"
986
-
987
- #: ../lib/alexandria/export_library.rb:109
988
- msgid "Archived ONIX XML"
989
- msgstr "Zarchiwizowany XML ONIX"
990
-
991
- #: ../lib/alexandria/export_library.rb:111
992
- msgid "Archived Tellico XML"
993
- msgstr "Zarchiwizowany XML Tellico"
994
-
995
- #: ../lib/alexandria/export_library.rb:113
996
- msgid "BibTeX"
997
- msgstr "BibTeX"
998
-
999
- #: ../lib/alexandria/export_library.rb:114
1000
- msgid "CSV list"
1001
- msgstr "Lista CSV"
1019
+ #: ../lib/alexandria/ui/skip_entry_dialog.rb:17
1020
+ msgid "Error while importing"
1021
+ msgstr "Błąd podczas importowania"
1002
1022
 
1003
- #: ../lib/alexandria/export_library.rb:115
1004
- msgid "ISBN List"
1005
- msgstr "Lista numerów ISBN"
1023
+ #: ../lib/alexandria/ui/skip_entry_dialog.rb:20
1024
+ msgid "_Continue"
1025
+ msgstr "_Kontynuuj"
1006
1026
 
1007
- #: ../lib/alexandria/export_library.rb:116
1008
- msgid "iPod Notes"
1009
- msgstr "Notatki iPoda"
1027
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:96
1028
+ msgid "Empty or conflictive condition"
1029
+ msgstr "Pusty lub sprzeczny warunek"
1010
1030
 
1011
- #: ../lib/alexandria/export_library.rb:117
1012
- msgid "HTML Web Page"
1013
- msgstr "Strona HTML"
1031
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:99
1032
+ msgid "_Save However"
1033
+ msgstr "Zapi_sz mimo to"
1014
1034
 
1015
- #: ../lib/alexandria/smart_library.rb:92
1016
- msgid "Favorite"
1017
- msgstr "Ulubione"
1035
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:100
1036
+ msgid ""
1037
+ "This smart library contains one or more conditions which are empty or "
1038
+ "conflict with each other. This is likely to result in never matching a book. "
1039
+ "Are you sure you want to save this library?"
1040
+ msgstr ""
1041
+ "Automatyczna biblioteka zawiera jeden lub więcej warunków, które są puste "
1042
+ "lub są ze sobą sprzeczne. Prawdopodobnie z tego powodu żadna książka nie "
1043
+ "będzie pasowała. Na pewno zapisać tę bibliotekę?"
1018
1044
 
1019
- #: ../lib/alexandria/smart_library.rb:98
1020
- msgid "Loaned"
1021
- msgstr "Wypożyczone"
1045
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:117
1046
+ msgid "Match"
1047
+ msgstr "Dopasowanie"
1022
1048
 
1023
- #: ../lib/alexandria/smart_library.rb:110
1024
- msgid "Owned"
1025
- msgstr "Posiadane"
1049
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
1050
+ msgid "all"
1051
+ msgstr "wszystkie"
1026
1052
 
1027
- #: ../lib/alexandria/smart_library.rb:119
1028
- msgid "Wishlist"
1029
- msgstr "Lista pożądanych"
1053
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:120
1054
+ msgid "any"
1055
+ msgstr "dowolne"
1030
1056
 
1031
- #: ../lib/alexandria/smart_library.rb:356
1032
- #: ../data/alexandria/glade/book_properties_dialog.glade:1225
1033
- msgid "Notes"
1034
- msgstr "Notatki"
1057
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:130
1058
+ msgid "of the following rules:"
1059
+ msgstr "jedna z tych reguł:"
1035
1060
 
1036
- #: ../lib/alexandria/smart_library.rb:358
1037
- msgid "Loaning State"
1038
- msgstr "Stan wypożyczenia"
1061
+ #: ../lib/alexandria/ui/smart_library_properties_dialog_base.rb:138
1062
+ msgid "Match the following rule:"
1063
+ msgstr "Dopasowanie do tej reguły:"
1039
1064
 
1040
- #: ../lib/alexandria/smart_library.rb:359
1041
- msgid "Loaning Date"
1042
- msgstr "Data wypożyczenia"
1065
+ #: ../lib/alexandria/ui/ui_manager.rb:130
1066
+ msgid "Type here the search criterion"
1067
+ msgstr "Miejsce na wpisanie kryteriów wyszukiwania"
1043
1068
 
1044
- #: ../lib/alexandria/smart_library.rb:360
1045
- msgid "Loaning Person"
1046
- msgstr "Wypożyczono"
1069
+ #: ../lib/alexandria/ui/ui_manager.rb:141
1070
+ msgid "Match everything"
1071
+ msgstr "Wyszukiwanie we wszystkim"
1047
1072
 
1048
- #: ../lib/alexandria/smart_library.rb:362
1049
- msgid "Date Read"
1050
- msgstr "Data przeczytania"
1073
+ #: ../lib/alexandria/ui/ui_manager.rb:143
1074
+ msgid "Title contains"
1075
+ msgstr "Tytuł zawiera"
1051
1076
 
1052
- #: ../lib/alexandria/smart_library.rb:371
1053
- msgid "days"
1054
- msgstr "dni"
1077
+ #: ../lib/alexandria/ui/ui_manager.rb:144
1078
+ msgid "Authors contain"
1079
+ msgstr "Autorzy zawierają"
1055
1080
 
1056
- #: ../lib/alexandria/smart_library.rb:382
1057
- msgid "is set"
1058
- msgstr "jest ustawione"
1081
+ #: ../lib/alexandria/ui/ui_manager.rb:145
1082
+ msgid "ISBN contains"
1083
+ msgstr "ISBN zawiera"
1059
1084
 
1060
- #: ../lib/alexandria/smart_library.rb:386
1061
- msgid "is not set"
1062
- msgstr "nie jest ustawione"
1085
+ #: ../lib/alexandria/ui/ui_manager.rb:146
1086
+ msgid "Publisher contains"
1087
+ msgstr "Wydawca zawiera"
1063
1088
 
1064
- #: ../lib/alexandria/smart_library.rb:390
1065
- msgid "is"
1066
- msgstr "jest"
1089
+ #: ../lib/alexandria/ui/ui_manager.rb:147
1090
+ msgid "Notes contain"
1091
+ msgstr "Notatki zawierają"
1067
1092
 
1068
- #: ../lib/alexandria/smart_library.rb:394
1069
- msgid "is not"
1070
- msgstr "nie jest"
1093
+ #: ../lib/alexandria/ui/ui_manager.rb:148
1094
+ msgid "Tags contain"
1095
+ msgstr "Etykiety zawierają"
1071
1096
 
1072
- #: ../lib/alexandria/smart_library.rb:398
1073
- msgid "contains"
1074
- msgstr "zawiera"
1097
+ #: ../lib/alexandria/ui/ui_manager.rb:162
1098
+ msgid "Change the search type"
1099
+ msgstr "Zmienia typ wyszukiwania"
1075
1100
 
1076
- #: ../lib/alexandria/smart_library.rb:402
1077
- msgid "does not contain"
1078
- msgstr "nie zawiera"
1101
+ #: ../lib/alexandria/ui/ui_manager.rb:167
1102
+ msgid "View as Icons"
1103
+ msgstr "Widok ikon"
1079
1104
 
1080
- #: ../lib/alexandria/smart_library.rb:406
1081
- msgid "starts with"
1082
- msgstr "zaczyna się od"
1105
+ #: ../lib/alexandria/ui/ui_manager.rb:168
1106
+ msgid "View as List"
1107
+ msgstr "Widok listy"
1083
1108
 
1084
- #: ../lib/alexandria/smart_library.rb:410
1085
- msgid "ends with"
1086
- msgstr "kończ się na"
1109
+ #: ../lib/alexandria/ui/ui_manager.rb:181
1110
+ msgid "Choose how to show books"
1111
+ msgstr "Wybiera, jak wyświetlać książki"
1087
1112
 
1088
- #: ../lib/alexandria/smart_library.rb:414
1089
- msgid "is greater than"
1090
- msgstr "jest większe od"
1113
+ #: ../lib/alexandria/ui/ui_manager.rb:400
1114
+ msgid "Library '%s' selected"
1115
+ msgstr "Wybrano bibliotekę „%s”"
1091
1116
 
1092
- #: ../lib/alexandria/smart_library.rb:418
1093
- msgid "is less than"
1094
- msgstr "jest mniejsze od"
1117
+ #: ../lib/alexandria/ui/ui_manager.rb:405
1118
+ msgid "Library '%s' selected, %d unrated book"
1119
+ msgid_plural "Library '%s' selected, %d unrated books"
1120
+ msgstr[0] "Wybrano bibliotekę „%s”, %d książka nie ma oceny"
1121
+ msgstr[1] "Wybrano bibliotekę „%s”, %d książki nie mają oceny"
1122
+ msgstr[2] "Wybrano bibliotekę „%s”, %d książek nie ma oceny"
1095
1123
 
1096
- #: ../lib/alexandria/smart_library.rb:422
1097
- msgid "is after"
1098
- msgstr "jest po"
1124
+ #: ../lib/alexandria/ui/ui_manager.rb:409
1125
+ msgid "Library '%s' selected, %d book"
1126
+ msgid_plural "Library '%s' selected, %d books"
1127
+ msgstr[0] "Wybrano bibliotekę „%s”, %d książka"
1128
+ msgstr[1] "Wybrano bibliotekę „%s”, %d książki"
1129
+ msgstr[2] "Wybrano bibliotekę „%s”, %d książek"
1099
1130
 
1100
- #: ../lib/alexandria/smart_library.rb:426
1101
- msgid "is before"
1102
- msgstr "jest przed"
1131
+ #: ../lib/alexandria/ui/ui_manager.rb:413
1132
+ msgid "Library '%s' selected, %d book, %d unrated"
1133
+ msgid_plural "Library '%s' selected, %d books, %d unrated"
1134
+ msgstr[0] "Wybrano bibliotekę „%s”, %d książka, %d książka nie ma oceny"
1135
+ msgstr[1] "Wybrano bibliotekę „%s”, %d książki, %d nie mają oceny"
1136
+ msgstr[2] "Wybrano bibliotekę „%s”, %d książek, %d nie ma oceny"
1103
1137
 
1104
- #: ../lib/alexandria/smart_library.rb:430
1105
- msgid "is in last"
1106
- msgstr "jest ostatnie"
1138
+ #: ../lib/alexandria/ui/ui_manager.rb:427
1139
+ msgid "'%s' selected"
1140
+ msgstr "Zaznaczono „%s”"
1107
1141
 
1108
- #: ../lib/alexandria/smart_library.rb:450
1109
- msgid "is not in last"
1110
- msgstr "nie jest ostatnie"
1142
+ #: ../lib/alexandria/ui/ui_manager.rb:429
1143
+ msgid "%d book selected"
1144
+ msgid_plural "%d books selected"
1145
+ msgstr[0] "Zaznaczono %d książkę"
1146
+ msgstr[1] "Zaznaczono %d książki"
1147
+ msgstr[2] "Zaznaczono %d książek"
1111
1148
 
1112
- #: ../lib/alexandria/book_providers.rb:87
1113
- msgid "Couldn't reach the provider '%s': timeout expired."
1114
- msgstr "Nie można połączyć się z dostawcą \"%s\": wygasł czas oczekiwania."
1149
+ #: ../lib/alexandria/ui/ui_manager.rb:545
1150
+ msgid "unrecognized update event"
1151
+ msgstr "nierozpoznane zdarzenie aktualizacji"
1115
1152
 
1116
- #: ../lib/alexandria/book_providers.rb:91
1117
- msgid "Couldn't reach the provider '%s': socket error (%s)."
1118
- msgstr "Nie można połączyć się z dostawcą \"%s\": błąd gniazda (%s)."
1153
+ #: ../lib/alexandria/ui/ui_manager.rb:590
1154
+ msgid "Loading libraries..."
1155
+ msgstr "Wczytywanie bibliotek…"
1119
1156
 
1120
- #: ../lib/alexandria/book_providers.rb:95
1121
- #: ../lib/alexandria/book_providers.rb:100
1157
+ #: ../lib/alexandria/ui/ui_manager.rb:607
1122
1158
  msgid ""
1123
- "No results were found. Make sure your search criterion is spelled "
1124
- "correctly, and try again."
1159
+ "The data files for the following books are malformed or empty. Do you wish "
1160
+ "to attempt to download new information for them from the online book "
1161
+ "providers?\n"
1125
1162
  msgstr ""
1126
- "Nie znaleziono żadnych rezultatów. Proszę upewnić się, że kryteria "
1127
- "wyszukiwania nie zawierają żadnych literówek i spróbować ponownie."
1163
+ "Pliki danych poniższych książek błędnie sformatowane lub puste. Spróbować "
1164
+ "pobrać dla nich nowe informacje u dostawców książek z Internetu?\n"
1128
1165
 
1129
- #: ../lib/alexandria/book_providers.rb:105
1130
- msgid "Too many results for that search."
1131
- msgstr "Za dużo rezultatów wyszukiwania."
1166
+ #: ../lib/alexandria/ui/ui_manager.rb:659
1167
+ msgid "Added '%s' to library '%s'"
1168
+ msgstr "Dodano „%s” do biblioteki „%s”"
1132
1169
 
1133
- #: ../lib/alexandria/book_providers.rb:108
1134
- msgid "Invalid search type."
1135
- msgstr "Nieprawidłowy typ wyszukiwania."
1170
+ #: ../lib/alexandria/ui/ui_manager.rb:808
1171
+ msgid "Loading '%s'..."
1172
+ msgstr "Wczytywanie „%s”…"
1136
1173
 
1137
- #: ../lib/alexandria/book_providers.rb:203
1138
- msgid "Enabled"
1139
- msgstr "Włączone"
1174
+ #: ../lib/alexandria/ui/ui_manager.rb:1038
1175
+ msgid "In '_%s'"
1176
+ msgstr "W „_%s”"
1140
1177
 
1141
- #: ../data/alexandria/glade/acquire_dialog.glade:9
1142
- msgid "Acquire from Scanner"
1143
- msgstr "Pobierz ze skanera"
1178
+ #: ../lib/alexandria/web_themes.rb:64
1179
+ msgid "File %<file>s not found"
1180
+ msgstr "Nie odnaleziono pliku %<file>s"
1144
1181
 
1145
- #: ../data/alexandria/glade/acquire_dialog.glade:87
1146
- #: ../data/alexandria/glade/new_book_dialog.glade:90
1147
- msgid "Save _in:"
1148
- msgstr "Zap_isz w:"
1182
+ #: ../share/alexandria/glade/acquire_dialog__builder.glade:9
1183
+ msgid "Acquire from Scanner"
1184
+ msgstr "Pobieranie ze skanera"
1149
1185
 
1150
- #: ../data/alexandria/glade/main_app.glade:17
1151
- msgid "Main Window"
1152
- msgstr "Okno główne"
1186
+ #: ../share/alexandria/glade/acquire_dialog__builder.glade:91
1187
+ msgid "_Barcode Scanner Ready"
1188
+ msgstr "_Czytnik kodów kreskowych jest gotowy"
1153
1189
 
1154
- #: ../data/alexandria/glade/main_app.glade:32
1155
- msgid "Libraries listing."
1156
- msgstr "Lista bibliotek."
1190
+ #: ../share/alexandria/glade/acquire_dialog__builder.glade:159
1191
+ #: ../share/alexandria/glade/new_book_dialog__builder.glade:171
1192
+ msgid "Save _in:"
1193
+ msgstr "Zapi_sanie w:"
1157
1194
 
1158
- #: ../data/alexandria/glade/main_app.glade:46
1159
- msgid "_Libraries:"
1160
- msgstr "_Biblioteki:"
1195
+ #: ../share/alexandria/glade/new_book_dialog__builder.glade:18
1196
+ msgid "by title"
1197
+ msgstr "według tytułu"
1161
1198
 
1162
- #: ../data/alexandria/glade/main_app.glade:111
1163
- msgid "Book listing."
1164
- msgstr "Lista książek."
1199
+ #: ../share/alexandria/glade/new_book_dialog__builder.glade:21
1200
+ msgid "by authors"
1201
+ msgstr "według autorów"
1165
1202
 
1166
- #: ../data/alexandria/glade/main_app.glade:194
1167
- msgid "Status messages."
1168
- msgstr "Komunikaty stanu."
1203
+ #: ../share/alexandria/glade/new_book_dialog__builder.glade:24
1204
+ msgid "by keyword"
1205
+ msgstr "według słowa kluczowego"
1169
1206
 
1170
- #: ../data/alexandria/glade/new_book_dialog.glade:31
1207
+ #: ../share/alexandria/glade/new_book_dialog__builder.glade:115
1171
1208
  msgid "_Keep Dialog Open after Adding Book"
1172
- msgstr "Nie zamy_kaj okna dialogowego po dodaniu książki"
1209
+ msgstr "_Bez zamykania okna po dodaniu książki"
1173
1210
 
1174
- #: ../data/alexandria/glade/new_book_dialog.glade:114
1175
- msgid ""
1176
- "by title\n"
1177
- "by authors\n"
1178
- "by keyword"
1179
- msgstr ""
1180
- "po tytule\n"
1181
- "po autorach\n"
1182
- "po słowach kluczowych"
1183
-
1184
- #: ../data/alexandria/glade/new_book_dialog.glade:201
1211
+ #: ../share/alexandria/glade/new_book_dialog__builder.glade:285
1185
1212
  msgid "_Search:"
1186
- msgstr "Wy_szukaj:"
1213
+ msgstr "Wy_szukiwanie:"
1187
1214
 
1188
- #: ../data/alexandria/glade/new_book_dialog.glade:219
1189
- #: ../data/alexandria/glade/book_properties_dialog.glade:187
1215
+ #: ../share/alexandria/glade/new_book_dialog__builder.glade:301
1216
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:85
1190
1217
  msgid "_ISBN:"
1191
1218
  msgstr "_ISBN:"
1192
1219
 
1193
- #: ../data/alexandria/glade/book_properties_dialog.glade:86
1194
- msgid "_Title:"
1195
- msgstr "_Tytuł:"
1196
-
1197
- #: ../data/alexandria/glade/book_properties_dialog.glade:115
1198
- msgid "_Publisher:"
1199
- msgstr "_Wydawca:"
1200
-
1201
- #: ../data/alexandria/glade/book_properties_dialog.glade:279
1202
- msgid "Add an author"
1203
- msgstr "Dodaj autora"
1220
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:8
1221
+ msgid "Preferences"
1222
+ msgstr "Preferencje"
1204
1223
 
1205
- #: ../data/alexandria/glade/book_properties_dialog.glade:307
1206
- msgid "Remove an author"
1207
- msgstr "Usuń autora"
1224
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:76
1225
+ msgid "<b>Visible Columns</b>"
1226
+ msgstr "<b>Widoczne kolumny</b>"
1208
1227
 
1209
- #: ../data/alexandria/glade/book_properties_dialog.glade:351
1210
- msgid "_Authors:"
1211
- msgstr "_Autorzy:"
1228
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:95
1229
+ msgid "_Authors"
1230
+ msgstr "_Autorzy"
1212
1231
 
1213
- #: ../data/alexandria/glade/book_properties_dialog.glade:380
1214
- msgid "_Binding:"
1215
- msgstr "_Oprawa:"
1232
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:110
1233
+ msgid "_ISBN"
1234
+ msgstr "_ISBN"
1216
1235
 
1217
- #: ../data/alexandria/glade/book_properties_dialog.glade:430
1218
- msgid "Publish _year:"
1219
- msgstr "_Rok wydania:"
1236
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:125
1237
+ msgid "_Publisher"
1238
+ msgstr "_Wydawca"
1220
1239
 
1221
- #: ../data/alexandria/glade/book_properties_dialog.glade:480
1222
- msgid "Tags:"
1223
- msgstr "Etykiety:"
1240
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:140
1241
+ msgid "_Rating"
1242
+ msgstr "O_cena"
1224
1243
 
1225
- #: ../data/alexandria/glade/book_properties_dialog.glade:553
1226
- msgid "_Cover:"
1227
- msgstr "_Okładka:"
1244
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:155
1245
+ msgid "_Binding"
1246
+ msgstr "_Oprawa"
1228
1247
 
1229
- #: ../data/alexandria/glade/book_properties_dialog.glade:579
1230
- msgid "Click to pick a cover"
1231
- msgstr "Naciśnięcie wybiera okładkę"
1248
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:170
1249
+ msgid "Publish _year"
1250
+ msgstr "_Rok wydania"
1232
1251
 
1233
- #: ../data/alexandria/glade/book_properties_dialog.glade:620
1234
- msgid "Own it?"
1235
- msgstr "Posiadasz ją?"
1252
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:185
1253
+ msgid "Read?"
1254
+ msgstr "Przeczytana?"
1236
1255
 
1237
- #: ../data/alexandria/glade/book_properties_dialog.glade:646
1238
- msgid "Read it?"
1239
- msgstr "Przeczytałeś ją?"
1256
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:200
1257
+ msgid "Own?"
1258
+ msgstr "Posiadana?"
1240
1259
 
1241
- #: ../data/alexandria/glade/book_properties_dialog.glade:695
1242
- msgid "Want it?"
1260
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:215
1261
+ msgid "Want?"
1243
1262
  msgstr "Chcesz ją mieć?"
1244
1263
 
1245
- #: ../data/alexandria/glade/book_properties_dialog.glade:721
1246
- msgid "Click on the stars to rate the book"
1247
- msgstr "Naciśnięcie gwiazdki ocenia książkę"
1248
-
1249
- #: ../data/alexandria/glade/book_properties_dialog.glade:927
1250
- msgid "Rating:"
1251
- msgstr "Ocena:"
1252
-
1253
- #: ../data/alexandria/glade/book_properties_dialog.glade:967
1254
- msgid "General"
1255
- msgstr "Ogólne"
1256
-
1257
- #: ../data/alexandria/glade/book_properties_dialog.glade:998
1258
- msgid "This book is _loaned"
1259
- msgstr "Ta książka jest _wypożyczona"
1260
-
1261
- #: ../data/alexandria/glade/book_properties_dialog.glade:1076
1262
- msgid "_To:"
1263
- msgstr "_Do:"
1264
-
1265
- #: ../data/alexandria/glade/book_properties_dialog.glade:1106
1266
- msgid "_Since:"
1267
- msgstr "_Od:"
1268
-
1269
- #: ../data/alexandria/glade/book_properties_dialog.glade:1166
1270
- msgid "Loaning"
1271
- msgstr "Wypożyczanie"
1264
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:245
1265
+ msgid "Loaned to"
1266
+ msgstr "Wypożyczona"
1272
1267
 
1273
- #: ../data/alexandria/glade/preferences_dialog.glade:7
1274
- msgid "Preferences"
1275
- msgstr "Preferencje"
1268
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:271
1269
+ msgid "_List View"
1270
+ msgstr "Widok _listy"
1276
1271
 
1277
- #: ../data/alexandria/glade/preferences_dialog.glade:27
1272
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:290
1278
1273
  msgid "<b>Book Data Providers</b>"
1279
- msgstr "<b>Dostawcy danych o książkach</b>"
1274
+ msgstr "<b>Dostawcy danych o książkach</b>"
1280
1275
 
1281
- #: ../data/alexandria/glade/preferences_dialog.glade:99
1276
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:372
1282
1277
  msgid "_Setup"
1283
- msgstr "U_stawienia"
1278
+ msgstr "_Ustawienia"
1284
1279
 
1285
- #: ../data/alexandria/glade/preferences_dialog.glade:198
1280
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:474
1286
1281
  msgid ""
1287
1282
  "Providers are libraries that supply information about books. Some of them "
1288
1283
  "can be configured to get better results. You can also customize the order "
1289
1284
  "in which they are queried."
1290
1285
  msgstr ""
1291
- "Dostawcy to biblioteki, które dostarczają informacje o książkach. Niektórych "
1292
- "z nich można skonfigurować, aby uzyskać lepsze rezultaty. Można także "
1286
+ "Dostawcy to biblioteki, które dostarczają informacje o książkach. Niektórych "
1287
+ "z nich można skonfigurować, aby uzyskać lepsze rezultaty. Można także "
1293
1288
  "dostosować kolejność odpytywania dostawców."
1294
1289
 
1295
- #: ../data/alexandria/glade/preferences_dialog.glade:209
1290
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:486
1296
1291
  msgid "Custom _Z39.50 Providers"
1297
- msgstr "Właśni dostawcy _Z39.50"
1292
+ msgstr "Inni dostawcy _Z39.50"
1298
1293
 
1299
- #: ../data/alexandria/glade/preferences_dialog.glade:213
1294
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:490
1300
1295
  msgid ""
1301
1296
  "Add and remove your own Z39.50 providers.\n"
1302
1297
  "Requires the Ruby/ZOOM software library."
1303
1298
  msgstr ""
1304
- "Dodawanie lub usuwanie własnych dostawców Z39.50.\n"
1299
+ "Dodaje lub usuwa innych dostawców Z39.50.\n"
1305
1300
  "Wymaga biblioteki oprogramowania Ruby/ZOOM."
1306
1301
 
1307
- #: ../data/alexandria/glade/preferences_dialog.glade:235
1302
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:511
1308
1303
  msgid "_Providers"
1309
1304
  msgstr "_Dostawcy"
1310
1305
 
1311
- #: ../data/alexandria/glade/preferences_dialog.glade:252
1312
- msgid "<b>Visible Columns</b>"
1313
- msgstr "<b>Widoczne kolumny</b>"
1306
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:537
1307
+ msgid "<b>Barcode Scanner Device</b>"
1308
+ msgstr "<b>Czytnik kodów kreskowych</b>"
1314
1309
 
1315
- #: ../data/alexandria/glade/preferences_dialog.glade:270
1316
- msgid "_Authors"
1317
- msgstr "_Autorzy"
1310
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:556
1311
+ msgid "_Device type:"
1312
+ msgstr "_Typ urządzenia:"
1318
1313
 
1319
- #: ../data/alexandria/glade/preferences_dialog.glade:285
1320
- msgid "_ISBN"
1321
- msgstr "_ISBN"
1314
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:602
1315
+ msgid "<b>Sound Effects</b>"
1316
+ msgstr "<b>Efekty dźwiękowe</b>"
1322
1317
 
1323
- #: ../data/alexandria/glade/preferences_dialog.glade:302
1324
- msgid "_Publisher"
1325
- msgstr "_Wydawca"
1318
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:618
1319
+ msgid "Scanning"
1320
+ msgstr "Skanowanie"
1326
1321
 
1327
- #: ../data/alexandria/glade/preferences_dialog.glade:319
1328
- msgid "_Rating"
1329
- msgstr "O_cena"
1322
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:632
1323
+ msgid "Good Scan / Bad Scan"
1324
+ msgstr "Poprawne skanowanie/błędne skanowanie"
1330
1325
 
1331
- #: ../data/alexandria/glade/preferences_dialog.glade:336
1332
- msgid "_Binding"
1333
- msgstr "_Oprawa"
1326
+ #: ../share/alexandria/glade/preferences_dialog__builder.glade:667
1327
+ msgid "_Barcode Scanner"
1328
+ msgstr "_Czytnik kodów kreskowych"
1334
1329
 
1335
- #: ../data/alexandria/glade/preferences_dialog.glade:353
1336
- msgid "Publish _year"
1337
- msgstr "_Rok wydania"
1330
+ #: ../share/alexandria/glade/main_app__builder.glade:48
1331
+ msgid "_Libraries:"
1332
+ msgstr "_Biblioteki:"
1338
1333
 
1339
- #: ../data/alexandria/glade/preferences_dialog.glade:370
1340
- msgid "Read?"
1334
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:60
1335
+ msgid "_Title:"
1336
+ msgstr "_Tytuł:"
1337
+
1338
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:199
1339
+ msgid "_Authors:"
1340
+ msgstr "_Autorzy:"
1341
+
1342
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:213
1343
+ msgid "Tags:"
1344
+ msgstr "Etykiety:"
1345
+
1346
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:245
1347
+ msgid "_Binding:"
1348
+ msgstr "_Oprawa:"
1349
+
1350
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:258
1351
+ msgid "Publish _year:"
1352
+ msgstr "_Rok wydania:"
1353
+
1354
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:292
1355
+ msgid "_Publisher:"
1356
+ msgstr "_Wydawca:"
1357
+
1358
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:333
1359
+ msgid "_Cover:"
1360
+ msgstr "_Okładka:"
1361
+
1362
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:526
1363
+ msgid "Rating:"
1364
+ msgstr "Ocena:"
1365
+
1366
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:539
1367
+ msgid "Want it?"
1368
+ msgstr "Chcesz ją mieć?"
1369
+
1370
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:555
1371
+ msgid "Read it?"
1341
1372
  msgstr "Przeczytana?"
1342
1373
 
1343
- #: ../data/alexandria/glade/preferences_dialog.glade:387
1344
- msgid "Own?"
1374
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:576
1375
+ msgid "Select Date"
1376
+ msgstr "Wybiera datę"
1377
+
1378
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:577
1379
+ msgid "Clear Date"
1380
+ msgstr "Czyści datę"
1381
+
1382
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:587
1383
+ msgid "Own it?"
1345
1384
  msgstr "Posiadana?"
1346
1385
 
1347
- #: ../data/alexandria/glade/preferences_dialog.glade:404
1348
- msgid "Want?"
1349
- msgstr "Chcesz ją mieć?"
1386
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:615
1387
+ msgid "General"
1388
+ msgstr "Ogólne"
1350
1389
 
1351
- #: ../data/alexandria/glade/preferences_dialog.glade:438
1352
- #, fuzzy
1353
- msgid "Loaned to"
1354
- msgstr "Wypożyczone"
1390
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:630
1391
+ msgid "This book is _loaned"
1392
+ msgstr "Ta książka jest _wypożyczona"
1355
1393
 
1356
- #: ../data/alexandria/glade/preferences_dialog.glade:465
1357
- msgid "_List View"
1358
- msgstr "Widok _listy"
1394
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:679
1395
+ msgid "_To:"
1396
+ msgstr "_Komu:"
1397
+
1398
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:693
1399
+ msgid "_Since:"
1400
+ msgstr "_Od:"
1401
+
1402
+ #: ../share/alexandria/glade/book_properties_dialog__builder.glade:735
1403
+ msgid "Loaning"
1404
+ msgstr "Wypożyczanie"
1359
1405
 
1360
1406
  #: ../alexandria.desktop.in.h:1
1361
1407
  msgid "Alexandria Book Collection Manager"
@@ -1368,6 +1414,3 @@ msgstr "Menedżer domowej biblioteki"
1368
1414
  #: ../alexandria.desktop.in.h:3
1369
1415
  msgid "Manage your book collection"
1370
1416
  msgstr "Zarządzanie domową biblioteką"
1371
-
1372
- #~ msgid "Language"
1373
- #~ msgstr "Język"