alexandria-book-collection-manager 0.6.9.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (293) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +10 -0
  3. data/.rubocop.yml +68 -0
  4. data/.rubocop_todo.yml +200 -0
  5. data/CHANGELOG.md +23 -0
  6. data/COPYING +339 -0
  7. data/ChangeLog.0 +3598 -0
  8. data/Gemfile +9 -0
  9. data/INSTALL.rdoc +156 -0
  10. data/PACKAGING +36 -0
  11. data/README.md +88 -0
  12. data/RELEASE_CHECKLIST +18 -0
  13. data/Rakefile +264 -0
  14. data/TODO +24 -0
  15. data/alexandria-book-collection-manager.gemspec +35 -0
  16. data/alexandria.desktop.in +10 -0
  17. data/bin/alexandria +82 -0
  18. data/doc/AUTHORS +60 -0
  19. data/doc/BUGS +31 -0
  20. data/doc/FAQ +369 -0
  21. data/doc/HACKING +19 -0
  22. data/doc/NEWS +341 -0
  23. data/doc/alexandria.1 +120 -0
  24. data/doc/cuecat_support.rdoc +67 -0
  25. data/lib/alexandria.rb +85 -0
  26. data/lib/alexandria/about.rb +82 -0
  27. data/lib/alexandria/book_providers.rb +411 -0
  28. data/lib/alexandria/book_providers/adlibris.rb +235 -0
  29. data/lib/alexandria/book_providers/amazon_aws.rb +261 -0
  30. data/lib/alexandria/book_providers/amazon_ecs_util.rb +405 -0
  31. data/lib/alexandria/book_providers/barnes_and_noble.rb +229 -0
  32. data/lib/alexandria/book_providers/bol_it.rb +162 -0
  33. data/lib/alexandria/book_providers/deastore.rb +277 -0
  34. data/lib/alexandria/book_providers/douban.rb +135 -0
  35. data/lib/alexandria/book_providers/ibs_it.rb +149 -0
  36. data/lib/alexandria/book_providers/mcu.rb +177 -0
  37. data/lib/alexandria/book_providers/proxis.rb +205 -0
  38. data/lib/alexandria/book_providers/pseudomarc.rb +185 -0
  39. data/lib/alexandria/book_providers/renaud.rb +142 -0
  40. data/lib/alexandria/book_providers/siciliano.rb +271 -0
  41. data/lib/alexandria/book_providers/thalia.rb +197 -0
  42. data/lib/alexandria/book_providers/web.rb +59 -0
  43. data/lib/alexandria/book_providers/webster_it.rb +173 -0
  44. data/lib/alexandria/book_providers/worldcat.rb +251 -0
  45. data/lib/alexandria/book_providers/z3950.rb +422 -0
  46. data/lib/alexandria/config.rb +8 -0
  47. data/lib/alexandria/console.rb +31 -0
  48. data/lib/alexandria/execution_queue.rb +96 -0
  49. data/lib/alexandria/export_library.rb +536 -0
  50. data/lib/alexandria/import_library.rb +316 -0
  51. data/lib/alexandria/import_library_csv.rb +270 -0
  52. data/lib/alexandria/logging.rb +159 -0
  53. data/lib/alexandria/models/book.rb +72 -0
  54. data/lib/alexandria/models/library.rb +714 -0
  55. data/lib/alexandria/net.rb +53 -0
  56. data/lib/alexandria/preferences.rb +324 -0
  57. data/lib/alexandria/scanners.rb +42 -0
  58. data/lib/alexandria/scanners/cuecat.rb +118 -0
  59. data/lib/alexandria/scanners/keyboard.rb +57 -0
  60. data/lib/alexandria/smart_library.rb +525 -0
  61. data/lib/alexandria/ui.rb +53 -0
  62. data/lib/alexandria/ui/builder_base.rb +43 -0
  63. data/lib/alexandria/ui/callbacks.rb +389 -0
  64. data/lib/alexandria/ui/completion_models.rb +228 -0
  65. data/lib/alexandria/ui/dialogs/about_dialog.rb +59 -0
  66. data/lib/alexandria/ui/dialogs/acquire_dialog.rb +640 -0
  67. data/lib/alexandria/ui/dialogs/alert_dialog.rb +68 -0
  68. data/lib/alexandria/ui/dialogs/bad_isbns_dialog.rb +43 -0
  69. data/lib/alexandria/ui/dialogs/barcode_animation.rb +159 -0
  70. data/lib/alexandria/ui/dialogs/book_properties_dialog.rb +210 -0
  71. data/lib/alexandria/ui/dialogs/book_properties_dialog_base.rb +432 -0
  72. data/lib/alexandria/ui/dialogs/export_dialog.rb +172 -0
  73. data/lib/alexandria/ui/dialogs/import_dialog.rb +205 -0
  74. data/lib/alexandria/ui/dialogs/misc_dialogs.rb +85 -0
  75. data/lib/alexandria/ui/dialogs/new_book_dialog.rb +639 -0
  76. data/lib/alexandria/ui/dialogs/new_book_dialog_manual.rb +153 -0
  77. data/lib/alexandria/ui/dialogs/new_smart_library_dialog.rb +67 -0
  78. data/lib/alexandria/ui/dialogs/preferences_dialog.rb +587 -0
  79. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog.rb +56 -0
  80. data/lib/alexandria/ui/dialogs/smart_library_properties_dialog_base.rb +432 -0
  81. data/lib/alexandria/ui/dndable.rb +81 -0
  82. data/lib/alexandria/ui/gtk_thread_help.rb +88 -0
  83. data/lib/alexandria/ui/icons.rb +100 -0
  84. data/lib/alexandria/ui/iconview.rb +91 -0
  85. data/lib/alexandria/ui/iconview_tooltips.rb +162 -0
  86. data/lib/alexandria/ui/init.rb +93 -0
  87. data/lib/alexandria/ui/libraries_combo.rb +75 -0
  88. data/lib/alexandria/ui/listview.rb +310 -0
  89. data/lib/alexandria/ui/main_app.rb +67 -0
  90. data/lib/alexandria/ui/multi_drag_treeview.rb +150 -0
  91. data/lib/alexandria/ui/sidepane.rb +194 -0
  92. data/lib/alexandria/ui/sound.rb +107 -0
  93. data/lib/alexandria/ui/ui_manager.rb +1308 -0
  94. data/lib/alexandria/undo_manager.rb +78 -0
  95. data/lib/alexandria/utils.rb +30 -0
  96. data/lib/alexandria/version.rb +24 -0
  97. data/lib/alexandria/web_themes.rb +75 -0
  98. data/misc/sounds/README +15 -0
  99. data/misc/sounds/bad_scan.csd +62 -0
  100. data/misc/sounds/good_scan.csd +61 -0
  101. data/misc/sounds/scanning.csd +46 -0
  102. data/po/ChangeLog +488 -0
  103. data/po/Makefile +44 -0
  104. data/po/README +29 -0
  105. data/po/commit-po +72 -0
  106. data/po/cs.po +1437 -0
  107. data/po/cy.po +1521 -0
  108. data/po/de.po +1400 -0
  109. data/po/el.po +1379 -0
  110. data/po/es.po +1376 -0
  111. data/po/fr.po +1420 -0
  112. data/po/ga.po +1359 -0
  113. data/po/gl.po +1397 -0
  114. data/po/it.po +1406 -0
  115. data/po/ja.po +1355 -0
  116. data/po/mk.po +1373 -0
  117. data/po/nb.po +1386 -0
  118. data/po/nl.po +1405 -0
  119. data/po/pl.po +1373 -0
  120. data/po/pt.po +1398 -0
  121. data/po/pt_BR.po +1409 -0
  122. data/po/ru.po +1372 -0
  123. data/po/sk.po +1380 -0
  124. data/po/sv.po +1402 -0
  125. data/po/uk.po +1423 -0
  126. data/po/zh_TW.po +1394 -0
  127. data/schemas/alexandria.schemas +300 -0
  128. data/share/alexandria/glade/acquire_dialog__builder.glade +201 -0
  129. data/share/alexandria/glade/book_properties_dialog__builder.glade +910 -0
  130. data/share/alexandria/glade/main_app__builder.glade +229 -0
  131. data/share/alexandria/glade/new_book_dialog__builder.glade +379 -0
  132. data/share/alexandria/glade/preferences_dialog__builder.glade +733 -0
  133. data/share/alexandria/icons/alexandria.png +0 -0
  134. data/share/alexandria/icons/alexandria_small.png +0 -0
  135. data/share/alexandria/icons/book.png +0 -0
  136. data/share/alexandria/icons/book_icon.png +0 -0
  137. data/share/alexandria/icons/book_small.png +0 -0
  138. data/share/alexandria/icons/cuecat.png +0 -0
  139. data/share/alexandria/icons/cuecat_inactive.png +0 -0
  140. data/share/alexandria/icons/favorite_tag.png +0 -0
  141. data/share/alexandria/icons/less.png +0 -0
  142. data/share/alexandria/icons/library.png +0 -0
  143. data/share/alexandria/icons/library_small.png +0 -0
  144. data/share/alexandria/icons/lookup.png +0 -0
  145. data/share/alexandria/icons/more.png +0 -0
  146. data/share/alexandria/icons/no_cover.png +0 -0
  147. data/share/alexandria/icons/smart_library.png +0 -0
  148. data/share/alexandria/icons/smart_library_small.png +0 -0
  149. data/share/alexandria/icons/star_set.png +0 -0
  150. data/share/alexandria/icons/star_unset.png +0 -0
  151. data/share/alexandria/icons/view_as_icons.png +0 -0
  152. data/share/alexandria/icons/view_as_list.png +0 -0
  153. data/share/alexandria/ui/menus.xml +91 -0
  154. data/share/alexandria/ui/popups.xml +91 -0
  155. data/share/alexandria/web-themes/clean/clean.css +85 -0
  156. data/share/alexandria/web-themes/clean/preview.jpg +0 -0
  157. data/share/alexandria/web-themes/list/list.css +105 -0
  158. data/share/alexandria/web-themes/list/preview.jpg +0 -0
  159. data/share/app-icon/16x16/alexandria.png +0 -0
  160. data/share/app-icon/16x16/alexandria.svg +263 -0
  161. data/share/app-icon/22x22/alexandria.png +0 -0
  162. data/share/app-icon/22x22/alexandria.svg +465 -0
  163. data/share/app-icon/24x24/alexandria.png +0 -0
  164. data/share/app-icon/32x32/alexandria.png +0 -0
  165. data/share/app-icon/32x32/alexandria.svg +813 -0
  166. data/share/app-icon/32x32/alexandria.xpm +241 -0
  167. data/share/app-icon/48x48/alexandria.png +0 -0
  168. data/share/app-icon/scalable/alexandria.svg +700 -0
  169. data/share/gnome/help/alexandria/C/about.xml +44 -0
  170. data/share/gnome/help/alexandria/C/adding-books.xml +339 -0
  171. data/share/gnome/help/alexandria/C/alexandria.xml +185 -0
  172. data/share/gnome/help/alexandria/C/bugs.xml +18 -0
  173. data/share/gnome/help/alexandria/C/editing-book-properties.xml +124 -0
  174. data/share/gnome/help/alexandria/C/exporting.xml +81 -0
  175. data/share/gnome/help/alexandria/C/figures/adding_books_acquire_from_scanner_process.png +0 -0
  176. data/share/gnome/help/alexandria/C/figures/adding_books_add_by_isbn.png +0 -0
  177. data/share/gnome/help/alexandria/C/figures/adding_books_isbn_import.png +0 -0
  178. data/share/gnome/help/alexandria/C/figures/adding_books_manual_details.png +0 -0
  179. data/share/gnome/help/alexandria/C/figures/adding_books_rename_library_after_import.png +0 -0
  180. data/share/gnome/help/alexandria/C/figures/adding_books_search_results.png +0 -0
  181. data/share/gnome/help/alexandria/C/figures/editing_book_properties_info.png +0 -0
  182. data/share/gnome/help/alexandria/C/figures/editing_book_properties_loaning.png +0 -0
  183. data/share/gnome/help/alexandria/C/figures/exporting_information_html.png +0 -0
  184. data/share/gnome/help/alexandria/C/figures/getting_started_first_launched.png +0 -0
  185. data/share/gnome/help/alexandria/C/figures/searching_filtering_views_list_view.png +0 -0
  186. data/share/gnome/help/alexandria/C/figures/searching_filtering_views_list_view_search.png +0 -0
  187. data/share/gnome/help/alexandria/C/figures/settings_providers_new_z3950.png +0 -0
  188. data/share/gnome/help/alexandria/C/figures/smart_libraries_new_smart_library.png +0 -0
  189. data/share/gnome/help/alexandria/C/figures/working_with_libraries_library_pane.png +0 -0
  190. data/share/gnome/help/alexandria/C/getting-started.xml +154 -0
  191. data/share/gnome/help/alexandria/C/gnu-fdl-1.2.xml +543 -0
  192. data/share/gnome/help/alexandria/C/introduction.xml +142 -0
  193. data/share/gnome/help/alexandria/C/searching.xml +90 -0
  194. data/share/gnome/help/alexandria/C/settings.xml +140 -0
  195. data/share/gnome/help/alexandria/C/smart-libraries.xml +160 -0
  196. data/share/gnome/help/alexandria/C/working-with-libraries.xml +76 -0
  197. data/share/gnome/help/alexandria/ChangeLog +99 -0
  198. data/share/gnome/help/alexandria/fr/alexandria.xml +2292 -0
  199. data/share/gnome/help/alexandria/fr/figures/alexandria_add_button.png +0 -0
  200. data/share/gnome/help/alexandria/fr/figures/alexandria_add_by_isbn_1.png +0 -0
  201. data/share/gnome/help/alexandria/fr/figures/alexandria_add_by_search_1.png +0 -0
  202. data/share/gnome/help/alexandria/fr/figures/alexandria_add_manually.png +0 -0
  203. data/share/gnome/help/alexandria/fr/figures/alexandria_add_z3950.png +0 -0
  204. data/share/gnome/help/alexandria/fr/figures/alexandria_close_button.png +0 -0
  205. data/share/gnome/help/alexandria/fr/figures/alexandria_edit_info.png +0 -0
  206. data/share/gnome/help/alexandria/fr/figures/alexandria_export_web_page.png +0 -0
  207. data/share/gnome/help/alexandria/fr/figures/alexandria_importing.png +0 -0
  208. data/share/gnome/help/alexandria/fr/figures/alexandria_library_pane.png +0 -0
  209. data/share/gnome/help/alexandria/fr/figures/alexandria_list_view.png +0 -0
  210. data/share/gnome/help/alexandria/fr/figures/alexandria_list_view_search.png +0 -0
  211. data/share/gnome/help/alexandria/fr/figures/alexandria_loaning.png +0 -0
  212. data/share/gnome/help/alexandria/fr/figures/alexandria_main_window.png +0 -0
  213. data/share/gnome/help/alexandria/fr/figures/alexandria_remove_button.png +0 -0
  214. data/share/gnome/help/alexandria/ja/about.xml +33 -0
  215. data/share/gnome/help/alexandria/ja/adding-books.xml +314 -0
  216. data/share/gnome/help/alexandria/ja/alexandria.xml +172 -0
  217. data/share/gnome/help/alexandria/ja/bugs.xml +11 -0
  218. data/share/gnome/help/alexandria/ja/editing-book-properties.xml +100 -0
  219. data/share/gnome/help/alexandria/ja/exporting.xml +98 -0
  220. data/share/gnome/help/alexandria/ja/figures/adding_books_acquire_from_scanner_process.png +0 -0
  221. data/share/gnome/help/alexandria/ja/figures/adding_books_add_by_isbn.png +0 -0
  222. data/share/gnome/help/alexandria/ja/figures/adding_books_isbn_import.png +0 -0
  223. data/share/gnome/help/alexandria/ja/figures/adding_books_manual_details.png +0 -0
  224. data/share/gnome/help/alexandria/ja/figures/adding_books_rename_library_after_import.png +0 -0
  225. data/share/gnome/help/alexandria/ja/figures/adding_books_search_results.png +0 -0
  226. data/share/gnome/help/alexandria/ja/figures/editing_book_properties_info.png +0 -0
  227. data/share/gnome/help/alexandria/ja/figures/editing_book_properties_loaning.png +0 -0
  228. data/share/gnome/help/alexandria/ja/figures/exporting_information_html.png +0 -0
  229. data/share/gnome/help/alexandria/ja/figures/getting_started_first_launched.png +0 -0
  230. data/share/gnome/help/alexandria/ja/figures/searching_filtering_views_list_view.png +0 -0
  231. data/share/gnome/help/alexandria/ja/figures/searching_filtering_views_list_view_search.png +0 -0
  232. data/share/gnome/help/alexandria/ja/figures/settings_providers_new_z3950.png +0 -0
  233. data/share/gnome/help/alexandria/ja/figures/smart_libraries_new_smart_library.png +0 -0
  234. data/share/gnome/help/alexandria/ja/figures/working_with_libraries_library_pane.png +0 -0
  235. data/share/gnome/help/alexandria/ja/getting-started.xml +144 -0
  236. data/share/gnome/help/alexandria/ja/gnu-fdl-1.2.xml +541 -0
  237. data/share/gnome/help/alexandria/ja/introduction.xml +134 -0
  238. data/share/gnome/help/alexandria/ja/searching.xml +104 -0
  239. data/share/gnome/help/alexandria/ja/settings.xml +129 -0
  240. data/share/gnome/help/alexandria/ja/smart-libraries.xml +140 -0
  241. data/share/gnome/help/alexandria/ja/working-with-libraries.xml +88 -0
  242. data/share/menu/alexandria +7 -0
  243. data/share/omf/alexandria/alexandria-C.omf.in +27 -0
  244. data/share/omf/alexandria/alexandria-fr.omf.in +30 -0
  245. data/share/sounds/alexandria/bad_scan.ogg +0 -0
  246. data/share/sounds/alexandria/bad_scan.wav +0 -0
  247. data/share/sounds/alexandria/good_scan.ogg +0 -0
  248. data/share/sounds/alexandria/good_scan.wav +0 -0
  249. data/share/sounds/alexandria/scanning.ogg +0 -0
  250. data/share/sounds/alexandria/scanning.wav +0 -0
  251. data/spec/alexandria/library_spec.rb +205 -0
  252. data/spec/alexandria/preferences_spec.rb +22 -0
  253. data/spec/alexandria/scanners/cuecat_spec.rb +68 -0
  254. data/spec/alexandria/smart_library_spec.rb +22 -0
  255. data/spec/alexandria/ui/dialogs_spec.rb +90 -0
  256. data/spec/alexandria/ui/iconview_spec.rb +27 -0
  257. data/spec/alexandria/ui/listview_spec.rb +28 -0
  258. data/spec/alexandria/ui/main_app_spec.rb +48 -0
  259. data/spec/alexandria/ui/sidepane_spec.rb +27 -0
  260. data/spec/alexandria/ui/ui_manager_spec.rb +26 -0
  261. data/spec/alexandria/ui/ui_utilities_spec.rb +60 -0
  262. data/spec/alexandria/utilities_spec.rb +50 -0
  263. data/spec/data/libraries/0.6.1-noisbn/My Library/0201398257.yaml +10 -0
  264. data/spec/data/libraries/0.6.1-noisbn/My Library/1565920007.yaml +10 -0
  265. data/spec/data/libraries/0.6.1/My Library/0192812173.yaml +9 -0
  266. data/spec/data/libraries/0.6.1/My Library/0201398257.cover +0 -0
  267. data/spec/data/libraries/0.6.1/My Library/0201398257.yaml +10 -0
  268. data/spec/data/libraries/0.6.1/My Library/1565920007.yaml +10 -0
  269. data/spec/data/libraries/0.6.2/My Library/9780140266146.cover +0 -0
  270. data/spec/data/libraries/0.6.2/My Library/9780140266146.yaml +16 -0
  271. data/spec/data/libraries/0.6.2/My Library/9780140278781.cover +0 -0
  272. data/spec/data/libraries/0.6.2/My Library/9780140278781.yaml +21 -0
  273. data/spec/data/libraries/0.6.2/My Library/9780571147168.cover +0 -0
  274. data/spec/data/libraries/0.6.2/My Library/9780571147168.yaml +20 -0
  275. data/spec/data/libraries/0.6.2/My Library/9780575079038.cover +0 -0
  276. data/spec/data/libraries/0.6.2/My Library/9780575079038.yaml +20 -0
  277. data/spec/data/libraries/0.6.2/My Library/9780755322800.cover +0 -0
  278. data/spec/data/libraries/0.6.2/My Library/9780755322800.yaml +20 -0
  279. data/spec/spec_helper.rb +46 -0
  280. data/tasks/rdoc.rake +6 -0
  281. data/tasks/setup.rb +30 -0
  282. data/tasks/spec.rake +29 -0
  283. data/tasks/test.rake +38 -0
  284. data/test/application_test.rb +39 -0
  285. data/test/book_test.rb +34 -0
  286. data/test/data/isbns.txt +3 -0
  287. data/test/isbn_test.rb +68 -0
  288. data/test/providers_test.rb +254 -0
  289. data/test/test_helper.rb +42 -0
  290. data/util/rake/fileinstall.rb +313 -0
  291. data/util/rake/gettextgenerate.rb +158 -0
  292. data/util/rake/omfgenerate.rb +79 -0
  293. metadata +452 -0
@@ -0,0 +1,78 @@
1
+ # Copyright (C) 2004-2006 Laurent Sansonetti
2
+ #
3
+ # Alexandria is free software; you can redistribute it and/or
4
+ # modify it under the terms of the GNU General Public License as
5
+ # published by the Free Software Foundation; either version 2 of the
6
+ # License, or (at your option) any later version.
7
+ #
8
+ # Alexandria is distributed in the hope that it will be useful,
9
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11
+ # General Public License for more details.
12
+ #
13
+ # You should have received a copy of the GNU General Public
14
+ # License along with Alexandria; see the file COPYING. If not,
15
+ # write to the Free Software Foundation, Inc., 51 Franklin Street,
16
+ # Fifth Floor, Boston, MA 02110-1301 USA.
17
+
18
+ module Alexandria
19
+ class UndoManager
20
+ include Singleton
21
+ include Observable
22
+
23
+ attr_reader :actions
24
+
25
+ def initialize
26
+ @undo_actions = []
27
+ @redo_actions = []
28
+ @within_undo = @withing_redo = false
29
+ end
30
+
31
+ def push(&block)
32
+ (@within_undo ? @redo_actions : @undo_actions) << block
33
+ notify
34
+ end
35
+
36
+ def can_undo?
37
+ @undo_actions.length > 0
38
+ end
39
+
40
+ def can_redo?
41
+ @redo_actions.length > 0
42
+ end
43
+
44
+ def undo!
45
+ @within_undo = true
46
+ begin
47
+ action(@undo_actions)
48
+ ensure
49
+ @within_undo = false
50
+ end
51
+ end
52
+
53
+ def redo!
54
+ @within_redo = true
55
+ begin
56
+ action(@redo_actions)
57
+ ensure
58
+ @within_redo = false
59
+ end
60
+ end
61
+
62
+ #######
63
+ private
64
+ #######
65
+
66
+ def action(array)
67
+ action = array.pop
68
+ raise if action.nil?
69
+ action.call
70
+ notify
71
+ end
72
+
73
+ def notify
74
+ changed
75
+ notify_observers(self)
76
+ end
77
+ end
78
+ end
@@ -0,0 +1,30 @@
1
+ # Copyright (C) 2005-2006 Laurent Sansonetti
2
+ #
3
+ # Alexandria is free software; you can redistribute it and/or
4
+ # modify it under the terms of the GNU General Public License as
5
+ # published by the Free Software Foundation; either version 2 of the
6
+ # License, or (at your option) any later version.
7
+ #
8
+ # Alexandria is distributed in the hope that it will be useful,
9
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
10
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11
+ # General Public License for more details.
12
+ #
13
+ # You should have received a copy of the GNU General Public
14
+ # License along with Alexandria; see the file COPYING. If not,
15
+ # write to the Free Software Foundation, Inc., 51 Franklin Street,
16
+ # Fifth Floor, Boston, MA 02110-1301 USA.
17
+
18
+ require 'glib2'
19
+
20
+ class String
21
+ # Converts this string into the desired charset.
22
+ #
23
+ # Note that this may raise a GLib::ConvertError if the
24
+ # desired_charset cannot accommodate all the characters present in
25
+ # the string, e.g. trying to convert Japanese Kanji to ISO-8859-1
26
+ # will obviously not work.
27
+ def convert(desired_charset, source_data_charset)
28
+ GLib.convert(self, desired_charset, source_data_charset)
29
+ end
30
+ end
@@ -0,0 +1,24 @@
1
+ # Copyright (C) 2014 Matijs van Zuijlen
2
+ #
3
+ # This file is part of Alexandria.
4
+ #
5
+ # Alexandria is free software; you can redistribute it and/or
6
+ # modify it under the terms of the GNU General Public License as
7
+ # published by the Free Software Foundation; either version 2 of the
8
+ # License, or (at your option) any later version.
9
+ #
10
+ # Alexandria is distributed in the hope that it will be useful,
11
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
+ # General Public License for more details.
14
+ #
15
+ # You should have received a copy of the GNU General Public
16
+ # License along with Alexandria; see the file COPYING. If not,
17
+ # write to the Free Software Foundation, Inc., 51 Franklin Street,
18
+ # Fifth Floor, Boston, MA 02110-1301 USA.
19
+
20
+ module Alexandria
21
+ VERSION = '0.6.9.pre1'
22
+ DATA_VERSION = '0.6.3'
23
+ DISPLAY_VERSION = '0.6.9.pre1'
24
+ end
@@ -0,0 +1,75 @@
1
+ # Copyright (C) 2004-2006 Laurent Sansonetti
2
+ # Modifications Copyright (C) 2011 Matijs van Zuijlen
3
+ #
4
+ # Alexandria is free software; you can redistribute it and/or
5
+ # modify it under the terms of the GNU General Public License as
6
+ # published by the Free Software Foundation; either version 2 of the
7
+ # License, or (at your option) any later version.
8
+ #
9
+ # Alexandria is distributed in the hope that it will be useful,
10
+ # but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
+ # General Public License for more details.
13
+ #
14
+ # You should have received a copy of the GNU General Public
15
+ # License along with Alexandria; see the file COPYING. If not,
16
+ # write to the Free Software Foundation, Inc., 51 Franklin Street,
17
+ # Fifth Floor, Boston, MA 02110-1301 USA.
18
+
19
+ module Alexandria
20
+ class WebTheme
21
+ attr_reader :name, :css_file, :preview_file, :pixmaps_directory
22
+
23
+ def self.all
24
+ themes_dir = [
25
+ # System dir
26
+ File.join(Alexandria::Config::DATA_DIR, 'web-themes'),
27
+
28
+ # User dir
29
+ File.join(ENV['HOME'], '.alexandria', '.web-themes')
30
+ ]
31
+ themes_dir.map { |x| load(x) }.flatten
32
+ end
33
+
34
+ def has_pixmaps?
35
+ File.exist?(@pixmaps_directory)
36
+ end
37
+
38
+ #######
39
+ private
40
+ #######
41
+
42
+ def self.load(themes_dir)
43
+ themes = []
44
+ if File.exist?(themes_dir)
45
+ Dir.entries(themes_dir).each do |file|
46
+ # ignore hidden files
47
+ next if file =~ /^\./
48
+ # ignore non-directories
49
+ path = File.join(themes_dir, file)
50
+ next unless File.directory?(path)
51
+ # ignore CVS directories
52
+ next if file == 'CVS'
53
+
54
+ css_file = File.join(path, file + '.css')
55
+ preview_file = File.join(path, 'preview.jpg')
56
+ [css_file, preview_file].each do |helper_file|
57
+ raise "#{helper_file} not found" unless File.exist?(helper_file)
58
+ end
59
+ themes << WebTheme.new(css_file, preview_file,
60
+ File.join(path, file, 'pixmaps'))
61
+ end
62
+ else
63
+ FileUtils.mkdir_p(themes_dir)
64
+ end
65
+ themes
66
+ end
67
+
68
+ def initialize(css_file, preview_file, pixmaps_directory)
69
+ @name = File.basename(css_file, '.css').capitalize
70
+ @css_file = css_file
71
+ @preview_file = preview_file
72
+ @pixmaps_directory = pixmaps_directory
73
+ end
74
+ end
75
+ end
@@ -0,0 +1,15 @@
1
+ The sound files for Alexandria are generated using CSound, a free (GNU
2
+ LGPL) "sound design, music synthesis, and signal processing system".
3
+ http://www.csounds.com/
4
+
5
+ Because most users won't have CSound installed, the generated audio
6
+ files are also distributed as part of the source. You can find them
7
+ under data/sounds/alexandria, and they will be installed in
8
+ /usr/share/sounds/alexandria
9
+
10
+ These sounds are released under the same license as Alexandria (GNU
11
+ GPL v2+), (so if you redistribute the generated sound files, you must
12
+ make the csd source available as specified under the GPL).
13
+
14
+ - Cathal Mc Ginley
15
+ 2009-03-07
@@ -0,0 +1,62 @@
1
+ ; Copyright (C) 2009 Cathal Mc Ginley
2
+ ;
3
+ ; This file is part of Alexandria, a book collection manager.
4
+ ;
5
+ ; Alexandria is free software; you can redistribute it and/or
6
+ ; modify it under the terms of the GNU General Public License as
7
+ ; published by the Free Software Foundation; either version 2 of the
8
+ ; License, or (at your option) any later version.
9
+ ;
10
+ ; Alexandria is distributed in the hope that it will be useful,
11
+ ; but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
+ ; General Public License for more details.
14
+ ;
15
+ ; You should have received a copy of the GNU General Public
16
+ ; License along with Alexandria; see the file COPYING. If not,
17
+ ; write to the Free Software Foundation, Inc., 51 Franklin Street,
18
+ ; Fifth Floor, Boston, MA 02110-1301 USA.
19
+
20
+ <CsoundSynthesizer>
21
+
22
+ <CsInstruments>
23
+
24
+ ; Initialize the global variables.
25
+ sr = 44100
26
+ kr = 4410
27
+ ksmps = 10
28
+ nchnls = 1
29
+
30
+ ; Instrument #1.
31
+ instr 1
32
+ kaverageamp init 200
33
+ kaveragefreq init 20
34
+ ifn = 1
35
+ kvamp vibr kaverageamp, kaveragefreq, ifn
36
+ kvf vibr 40, 25, ifn
37
+ kvfenv linseg 1, p3*0.5, 0.3, p3*0.5, 0
38
+
39
+ ; Generate a tone including the vibrato.
40
+ kf linseg 540, p3*0.15, 700, p3*0.3, 380, p3*0.55, 400
41
+ ka xadsr p3*0.1, p3*0.1, 0.7, p3*0.25
42
+ a1 oscili 10000*ka+kvamp, kf+kvf*kvfenv, 2
43
+
44
+ out a1
45
+ endin
46
+
47
+
48
+ </CsInstruments>
49
+ <CsScore>
50
+
51
+ ; Table #1, a sine wave for the vibrato.
52
+ f 1 0 256 10 1
53
+ ; Table #1, a sine wave for the oscillator.
54
+ f 2 0 16384 10 1
55
+
56
+ ; Play Instrument #1 for 0.45 seconds.
57
+ i 1 0 0.45
58
+ e
59
+
60
+
61
+ </CsScore>
62
+ </CsoundSynthesizer>
@@ -0,0 +1,61 @@
1
+ ; Copyright (C) 2009 Cathal Mc Ginley
2
+ ;
3
+ ; This file is part of Alexandria, a book collection manager.
4
+ ;
5
+ ; Alexandria is free software; you can redistribute it and/or
6
+ ; modify it under the terms of the GNU General Public License as
7
+ ; published by the Free Software Foundation; either version 2 of the
8
+ ; License, or (at your option) any later version.
9
+ ;
10
+ ; Alexandria is distributed in the hope that it will be useful,
11
+ ; but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
+ ; General Public License for more details.
14
+ ;
15
+ ; You should have received a copy of the GNU General Public
16
+ ; License along with Alexandria; see the file COPYING. If not,
17
+ ; write to the Free Software Foundation, Inc., 51 Franklin Street,
18
+ ; Fifth Floor, Boston, MA 02110-1301 USA.
19
+
20
+ <CsoundSynthesizer>
21
+
22
+ <CsInstruments>
23
+
24
+ ; Initialize the global variables.
25
+ sr = 44100
26
+ kr = 4410
27
+ ksmps = 10
28
+ nchnls = 1
29
+
30
+ ; Instrument #1.
31
+ instr 1
32
+ kaverageamp init 100
33
+ kaveragefreq init 5
34
+ ifn = 1
35
+ kvamp vibr kaverageamp, kaveragefreq, ifn
36
+ kvf vibr 30, 22, ifn
37
+
38
+ ; Generate a tone including the vibrato.
39
+ kf linseg 440, p3*0.25, 550, p3*0.75, 800
40
+ ka xadsr p3*0.1, p3*0.2, 0.4, p3*0.3
41
+ a1 oscili 20000*ka+kvamp, kf+kvf, 2
42
+
43
+ out a1
44
+ endin
45
+
46
+
47
+ </CsInstruments>
48
+ <CsScore>
49
+
50
+ ; Table #1, a sine wave for the vibrato.
51
+ f 1 0 256 10 1
52
+ ; Table #1, a sine wave for the oscillator.
53
+ f 2 0 16384 10 1
54
+
55
+ ; Play Instrument #1 for 0.25 seconds.
56
+ i 1 0 0.25
57
+ e
58
+
59
+
60
+ </CsScore>
61
+ </CsoundSynthesizer>
@@ -0,0 +1,46 @@
1
+ ; Copyright (C) 2009 Cathal Mc Ginley
2
+ ;
3
+ ; This file is part of Alexandria, a book collection manager.
4
+ ;
5
+ ; Alexandria is free software; you can redistribute it and/or
6
+ ; modify it under the terms of the GNU General Public License as
7
+ ; published by the Free Software Foundation; either version 2 of the
8
+ ; License, or (at your option) any later version.
9
+ ;
10
+ ; Alexandria is distributed in the hope that it will be useful,
11
+ ; but WITHOUT ANY WARRANTY; without even the implied warranty of
12
+ ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
+ ; General Public License for more details.
14
+ ;
15
+ ; You should have received a copy of the GNU General Public
16
+ ; License along with Alexandria; see the file COPYING. If not,
17
+ ; write to the Free Software Foundation, Inc., 51 Franklin Street,
18
+ ; Fifth Floor, Boston, MA 02110-1301 USA.
19
+
20
+ <CsoundSynthesizer>
21
+
22
+ <CsInstruments>
23
+ sr = 44100
24
+ ksmps = 128
25
+ nchnls = 1
26
+
27
+ instr 1
28
+ kamp = 10000
29
+ kcps = 440
30
+ ifn = 1
31
+ k1 linseg 0, p3*0.4, 1, p3*0.6, 0
32
+ k2 linseg 0, p3*0.3, 1, p3*0.7, 0.5
33
+ arand rand 22050
34
+ a1 butterhp arand * k1, 2000 * (1+k2)
35
+ k3 linseg 0, p3*0.05, 3, p3*0.1, 0.3, p3*0.8, 0
36
+ out a1*k3*0.5
37
+ endin
38
+ </CsInstruments>
39
+
40
+ <CsScore>
41
+
42
+ ; Play instrument 1 for 0.5 seconds
43
+ i 1 0 0.5
44
+ </CsScore>
45
+
46
+ </CsoundSynthesizer>
@@ -0,0 +1,488 @@
1
+ 2010-08-13 Алекс <davian818@gmail.com>
2
+
3
+ * ru.po: Update
4
+
5
+ 2009-12-31 Damjan Dimitrioski <damjandimitrioski@gmail.com>
6
+
7
+ * mk.po: Update
8
+
9
+ 2009-12-20 Michael Kotsarinis <mk73628@hotmail.com>
10
+
11
+ * el.po: Update
12
+
13
+ 2009-12-19 Piotr Drąg <piotrdrag@gmail.com>
14
+
15
+ * pl.po: Update
16
+
17
+ 2009-12-16 Joachim Breitner <mail@joachim-breitner.de>
18
+
19
+ * de.po: Updates for 0.6.6
20
+
21
+ 2009-03-14 Lennart Karssen <lennart@karssen.org>
22
+
23
+ * nl.po: Update
24
+
25
+ 2009-03-11 Joachim Breitner <mail@joachim-breitner.de>
26
+
27
+ * de.po: Update
28
+
29
+ 2009-03-07 Michael Kotsarinis <mk73628@hotmail.com>
30
+
31
+ * el.po: Update
32
+
33
+ 2009-03-07 Michael Kotsarinis <mk73628@hotmail.com>
34
+
35
+ * el.po: Update
36
+
37
+ 2009-03-05 Piotr Drąg <piotrdrag@gmail.com>
38
+
39
+ * pl.po: Update
40
+
41
+ 2009-03-02 Peter Kovac <kovac.peter@fotopriestor.sk>
42
+
43
+ * sk.po: New Slovak Translation
44
+
45
+ 2009-02-06 Damjan Dimitrioski <damjandimitrioski@gmail.com>
46
+
47
+ * mk.po: Update
48
+
49
+ 2008-12-03 Martin Karlsson <martinkarlsson81@hotmail.com>
50
+
51
+ * sv.po: Update
52
+
53
+ 2008-11-10 Giacomo Margarito <giacomomargarito@gmail.com>
54
+
55
+ * it.po: Update
56
+
57
+ 2008-07-31 Ligia Moreira <ligia.moreira@netvisao.pt >
58
+
59
+ * fr.po: Update
60
+
61
+ 2008-07-31 Ligia Moreira <ligia.moreira@netvisao.pt >
62
+
63
+ * pt_BR.po: Update
64
+
65
+ 2008-07-31 Ligia Moreira <ligia.moreira@netvisao.pt >
66
+
67
+ * pt.po: Update
68
+
69
+ 2008-07-29 Michael Kotsarinis <mk73628@hotmail.com>
70
+
71
+ * el.po: New Greek Translation
72
+
73
+ 2008-04-15 Joachim Breitner <mail@joachim-breitner.de>
74
+
75
+ * de.po: Version bump, no changes
76
+
77
+ 2008-04-12 Leandro Regueiro <leandro DOT regueiro AT gmail DOT com>
78
+
79
+ * gl.po: Update
80
+
81
+ 2008-03-26 Ligia Moreira <ligia.moreira@netvisao.pt >
82
+
83
+ * pt.po: Update
84
+
85
+ 2008-03-04 Piotr Drąg <piotrdrag@gmail.com>
86
+
87
+ * pl.po: Update
88
+
89
+ 2008-02-29 Jack Myrseh <jack@enkom.no>
90
+
91
+ * nb.po: Update
92
+
93
+ 2008-02-25 Jos'e Ling <jlgdot369@gmail.com>
94
+
95
+ * zh_TW.po: Update
96
+
97
+ 2008-02-24 Giacomo Margarito <giacomomargarito@gmail.com>
98
+
99
+ * it.po: Update
100
+
101
+ 2008-02-20 Cathal Mc Ginley <cathal.alexandria@gnostai.org>
102
+
103
+ * ga.po: Update
104
+
105
+ 2008-02-20 Cathal Mc Ginley <cathal.alexandria@gnostai.org>
106
+
107
+ * ga.po: Update
108
+
109
+ 2008-02-20 CHIKAMA Masaki <masaki.chikama@gmail.com>
110
+
111
+ * ja.po: Update
112
+
113
+ 2008-02-19 Joachim Breitner <mail@joachim-breitner.de>
114
+
115
+ * de.po: Update (darn, not the first this time)
116
+
117
+ 2008-02-18 CHIKAMA Masaki <masaki.chikama@gmail.com>
118
+
119
+ * ja.po: Update
120
+
121
+ 2008-01-31 Cathal Mc Ginley <cathal.alexandria@gnostai.org>
122
+
123
+ * ga.po: Update
124
+
125
+ 2008-01-08 Adri�n Chaves Fern�ndez
126
+
127
+ * gl.po: Update
128
+
129
+ 2008-01-06 Petr Vanek <vanous@penguin.cz>
130
+
131
+ * cs.po: Update
132
+
133
+ 2007-12-19 L.C. Karssen <lennart@karssen.org>
134
+
135
+ * nl.po: Update
136
+
137
+ 2007-12-18 CHIKAMA Masaki <masaki.chikama@gmail.com>
138
+
139
+ * ja.po: Update
140
+
141
+ 2007-12-17 Joachim Breitner <mail@joachim-breitner.de>
142
+
143
+ * de.po: update for 0.6.2
144
+
145
+ 2007-12-17 Cathal Mc Ginley <cathal.alexandria@gnostai.org>
146
+
147
+ * Pre-0.6.2 string freeze
148
+
149
+ 2007-11-21 CHIKAMA Masaki <masaki.chikama@gmail.com>
150
+
151
+ * ja.po: Update
152
+
153
+ 2007-11-14 CHIKAMA Masaki <masaki.chikama@gmail.com>
154
+
155
+ * ja.po: Update
156
+
157
+ 2007-11-13 Serhij Dubyk <dubyk@library.lviv.ua>
158
+
159
+ * uk.po: Update
160
+
161
+ 2007-11-13 Serhij Dubyk <dubyk@library.lviv.ua>
162
+
163
+ * uk.po: Update
164
+
165
+ 2007-11-07 CHIKAMA Masaki <masaki.chikama@gmail.com>
166
+
167
+ * ja.po: Update
168
+
169
+ 2007-11-02 L.C. Karssen <lennart@karssen.org>
170
+
171
+ * nl.po: Update
172
+
173
+ 2007-10-29 Miguel Angel Garcia <miguelangel.garcia@gmail.com>
174
+ * es.po: Update
175
+
176
+ 2007-10-28 Ligia Moreira <ligia.moreira@netvisao.pt>
177
+
178
+ * pt.po: Update
179
+
180
+ 2007-10-18 Joachim Breitner <mail@joachim-breitner.de>
181
+
182
+ * de.po: Update
183
+
184
+ 2007-06-18 Marco Costantini <costanti@science.unitn.it>
185
+
186
+ * it.po: Revision of the Italian translation
187
+
188
+ 2006-09-05 Joachim Breitner <mail@joachim-breitner.de>
189
+
190
+ * de.po: Catching up. I didn't knew there is new stuff, I thought I used to be notified by mail or something. That's why I didn't check in a while
191
+
192
+ 2006-06-17 Laurent Richard <lrichard@dotbar.be>
193
+
194
+ * *.po : .po update with new strings
195
+
196
+ 2006-01-04 Laurent Sansonetti <lrz@gnome.org>
197
+
198
+ * fr.po: Spelling fix
199
+
200
+ 2005-11-14 Laurent Sansonetti <lrz@gnome.org>
201
+
202
+ * fr.po: forgot a ':' after the cover's header
203
+
204
+ 2005-10-15 Jiří Pejchal <jiri.pejchal@gmail.com>
205
+
206
+ * cs.po: Update
207
+
208
+ 2005-10-15 Jiří Pejchal <jiri.pejchal@gmail.com>
209
+
210
+ * cs.po: Update
211
+
212
+ 2005-10-04 Borys Musielak <michuk@jakilinux.org>
213
+
214
+ * pl.po: Fixed plural forms.
215
+
216
+ 2005-08-24 David Weinehall <tao@acc.umu.se>
217
+
218
+ * sv.po: Update
219
+
220
+ 2005-08-21 Borys Musielak <michuk@jakilinux.org>
221
+
222
+ * pl.po: Translate 3 more strings
223
+
224
+ 2005-08-21 Borys Musielak <michuk@jakilinux.org>
225
+
226
+ * pl.po: Initial revision
227
+
228
+ 2005-08-21 Miguel Ángel García <magmax@ieee.org>
229
+
230
+ * es.po: Update
231
+
232
+ 2005-08-21 Mirko Maischberger <mirko@lilik.it>
233
+
234
+ * it.po: Update
235
+
236
+ 2005-08-19 Joachim Breitner <mail@joachim-breitner.de>
237
+
238
+ * de.po: Fixing strange commeting - I didnt do it
239
+
240
+ 2005-08-18 Laurent Sansonetti <lrz@gnome.org>
241
+
242
+ * genpot.sh: Really remove this file.
243
+
244
+ 2005-08-17 Jiří Pejchal <jiri.pejchal@gmail.com>
245
+
246
+ * cs.po: Initial work on 0.6.0
247
+
248
+ 2005-08-17 Jiří Pejchal <jiri.pejchal@gmail.com>
249
+
250
+ * cs.po: Update
251
+
252
+ 2005-08-17 Masao Mutoh <mutoh@highway.ne.jp>
253
+
254
+ * ja.po: For 0.6.0
255
+
256
+ 2005-08-17 Ligia Moreira <ligia.moreira@netvisao.pt>
257
+
258
+ * pt.po: For 0.6.0
259
+
260
+ 2005-08-17 Joachim Breitner <mail@joachim-breitner.de>
261
+
262
+ * de.po: For 0.6.0
263
+
264
+ 2005-08-17 Laurent Sansonetti <lrz@gnome.org>
265
+
266
+ * fr.po: Update
267
+ * Makefile: do not parse the 'macui' directory for translatable strings
268
+ and make the alexandria.desktop.in.h file generated by the main target.
269
+
270
+ 2005-07-18 Jiri Pejchal <jiri.pejchal@gmail.com>
271
+
272
+ * cs.po: Initial revision of Czech translation.
273
+
274
+ 2005-06-21 Joachim Breitner <mail@joachim-breitner.de>
275
+
276
+ * de.po: typos found by Jens Seidel <jensseidel@users.sf.net>
277
+
278
+ 2005-05-20 Dafydd Harries <daf@muse.19inch.net>
279
+
280
+ * ja.po: Apply patch from Akira Yamada which prevents crash for
281
+ Japanese users and also updates some translations.
282
+
283
+ 2005-04-18 Lucas Rocha <lucasr@im.ufba.br>
284
+
285
+ * pt_BR.po: Update
286
+
287
+ 2005-04-15 Joachim Breitner <mail@joachim-breitner.de>
288
+
289
+ * de.po: Embarassing Update
290
+
291
+ 2005-04-07 Ligia Moreira <ligia.moreira@netvisao.pt>
292
+
293
+ * pt.po: Update
294
+
295
+ 2005-04-06 Joachim Breitner <mail@joachim-breitner.de>
296
+
297
+ * de.po: update out of boredom :-)
298
+ * commit-po: let's you specify the update message
299
+
300
+ 2005-03-30 Joachim Breitner <mail@joachim-breitner.de>
301
+
302
+ * de.po: Updated
303
+
304
+ 2005-03-27 Mirko Maischberger <mirko@lilik.it>
305
+
306
+ * it.po: Updated
307
+
308
+ 2005-03-27 Dafydd Harries <daf@muse.19inch.net>
309
+
310
+ * ja.po: Fix plural forms header.
311
+
312
+ 2005-03-27 Mirko Maischberger <mirko@lilik.it>
313
+
314
+ * it.po: Updated
315
+
316
+ 2005-03-26 Masao Mutoh <mutoh@highway.ne.jp>
317
+
318
+ * ja.po: Updated
319
+
320
+ 2005-03-26 Joachim Breitner <mail@joachim-breitner.de>
321
+
322
+ * commit-po: Included script for committing and loggin
323
+
324
+ 2005-03-26 Laurent Sansonetti <lrz@gnome.org>
325
+
326
+ * fr.po: Updated.
327
+
328
+ 2005-03-26 Dafydd Harries <daf@muse.19inch.net>
329
+
330
+ * cy.po: Updated.
331
+
332
+ 2005-03-26 Dafydd Harries <daf@muse.19inch.net>
333
+
334
+ * es.po: Fix duplicated message ID.
335
+
336
+ 2005-03-26 Joachim Breitner <mail@joachim-breitner.de>
337
+
338
+ * de.po: Updates for 0.5.1
339
+
340
+ 2005-03-26 Miguel Ángel García <magmax@ieee.org>
341
+
342
+ * es.po: Update.
343
+
344
+ 2005-03-26 David Weinehall <tao@acc.umu.se>
345
+
346
+ * sv.po: Update.
347
+
348
+ 2005-03-25 Dafydd Harries <daf@muse.19inch.net>
349
+
350
+ * Makefile:
351
+
352
+ Added: a makefile for updating the template, updating PO
353
+ files, and checking PO files.
354
+
355
+ * README:
356
+
357
+ Documentation on how to use the makefile.
358
+
359
+ * genpot.sh:
360
+
361
+ Removed: it has been made obsolete by the makefile.
362
+
363
+ * ChangeLog:
364
+
365
+ Convert to UTF-8.
366
+
367
+ 2005-03-23 Joachim Breitner <mail@joachim-breitner.de>
368
+
369
+ * de.po: Minor typos
370
+
371
+ 2005-03-22 Joachim Breitner <mail@joachim-breitner.de>
372
+
373
+ * de.po: Update.
374
+
375
+ 2005-03-19 David Weinehall <tao@acc.umu.se>
376
+
377
+ * sv.po: Update.
378
+
379
+ 2005-03-19 Mirko Maischberger <mirko@lilik.it>
380
+
381
+ * it.po: Added.
382
+
383
+ 2005-03-19 Laurent Sansonetti <lrz@gnome.org>
384
+
385
+ * genpot.sh: Fix path to alexandria.desktop.in and do not use the
386
+ --extract-all xgettext switch when working with .glade files.
387
+ * fr.po: Update.
388
+
389
+ 2005-03-12 Miguel Ángel García <magmax@ieee.org>
390
+
391
+ * es.po: Update.
392
+
393
+ 2005-03-11 Laurent Sansonetti <lrz@gnome.org>
394
+
395
+ * fr.po: Fix by Frederic Logier.
396
+
397
+ 2005-03-10 David Weinehall <tao@acc.umu.se>
398
+
399
+ * sv.po: Update.
400
+
401
+ 2005-03-10 Masao Mutoh <mutoh@highway.ne.jp>
402
+
403
+ * ja.po: Update.
404
+
405
+ 2005-03-08 David Weinehall <tao@acc.umu.se>
406
+
407
+ * sv.po: Initial revision.
408
+
409
+ 2005-03-07 Joachim Breitner <mail@joachim-breitner.de>
410
+
411
+ * de.po: Update.
412
+
413
+ 2005-03-07 Laurent Sansonetti <lrz@gnome.org>
414
+
415
+ * fr.po: Update.
416
+
417
+ 2005-03-07 Masao Mutoh <mutoh@highway.ne.jp>
418
+
419
+ * ja.po: Update.
420
+
421
+ 2005-03-06 Joachim Breitner <mail@joachim-breitner.de>
422
+
423
+ * de.po: Update.
424
+
425
+ 2005-03-06 Laurent Sansonetti <lrz@gnome.org>
426
+
427
+ * fr.po: Updated after the latest wording fix.
428
+
429
+ 2005-03-03 Laurent Sansonetti <lrz@gnome.org>
430
+
431
+ * fr.po: Update.
432
+
433
+ 2004-12-28 Dafydd Harries <daf@muse.19inch.net>
434
+
435
+ * es.po: Updated Spanish translation from Miguel Ángel García.
436
+
437
+ 2004-11-11 Dafydd Harries <daf@muse.19inch.net>
438
+
439
+ * de.po: Update from Joachim Breitner.
440
+
441
+ * es.po: Update from Miguel Ángel García.
442
+
443
+ * ja.po: Update from Masao Mutoh.
444
+
445
+ 2004-11-05 Dafydd Harries <daf@muse.19inch.net>
446
+
447
+ * es.po: Fix encoding and header.
448
+
449
+ 2004-10-15 Miguel Angel Garcia <miguela.garcia3@alu.uclm.es>
450
+
451
+ * es.po: Initial revision.
452
+
453
+ 2004-10-12 Joachim Breitner <mail@joachim-breitner.de>
454
+
455
+ * de.po: Initial revision.
456
+
457
+ 2004-07-10 Masao Mutoh <mutoh@highway.ne.jp>
458
+
459
+ * ja.po: Updated Japanese translation.
460
+
461
+ 2004-07-10 Laurent Sansonetti <lrz@gnome.org>
462
+
463
+ * fr.po: Updated French translation.
464
+
465
+ 2004-07-10 Dafydd Harries <daf@muse.19inch.net>
466
+
467
+ * cy.po: Updated Welsh translation.
468
+
469
+ 2004-06-30 Dafydd Harries <daf@muse.19inch.net>
470
+
471
+ * cy.po: Updated.
472
+
473
+ 2004-06-27 Laurent Sansonetti <lrz@gnome.org>
474
+
475
+ * fr.po: Updated.
476
+
477
+ 2004-06-27 Masao Mutoh <mutoh@highway.ne.jp>
478
+
479
+ * ja.po: Updated.
480
+
481
+ 2004-06-14 Laurent Sansonetti <lrz@gnome.org>
482
+
483
+ * fr.po: Update French translation for new plural messages.
484
+ * .cvsignore: Added.
485
+
486
+ 2004-06-14 Dafydd Harries <daf@muse.19inch.net>
487
+
488
+ * cy.po: Update Welsh translation for new plural messages.