diff -Nru installation-report-generator-0.2.2/ChangeLog installation-report-generator-0.2.3/ChangeLog --- installation-report-generator-0.2.2/ChangeLog 2009-02-27 15:00:53.000000000 +0000 +++ installation-report-generator-0.2.3/ChangeLog 2009-04-02 18:54:58.000000000 +0100 @@ -1,3 +1,9 @@ +2009-04-02 Alessio Treglia + * Release 0.2.3: + - Refresh Italian translations, add Spanish and French ones. + - Fix some markers used in glade file. + - Adjust setup.py to install all language packs. + 2009-02-27 Alessio Treglia * Release 0.2.2: diff -Nru /tmp/OyJ10HxFpI/installation-report-generator-0.2.2/debian/changelog /tmp/9WGO9hqc7R/installation-report-generator-0.2.3/debian/changelog --- installation-report-generator-0.2.2/debian/changelog 2009-04-02 19:24:09.000000000 +0100 +++ installation-report-generator-0.2.3/debian/changelog 2009-04-02 19:24:09.000000000 +0100 @@ -1,3 +1,10 @@ +installation-report-generator (0.2.3-0ubuntu1) jaunty; urgency=low + + * New upstream release. + * Update debian packaging copyright. + + -- Alessio Treglia Thu, 02 Apr 2009 20:11:55 +0200 + installation-report-generator (0.2.2-0ubuntu1) jaunty; urgency=low * New upstream micro-release. diff -Nru /tmp/OyJ10HxFpI/installation-report-generator-0.2.2/debian/copyright /tmp/9WGO9hqc7R/installation-report-generator-0.2.3/debian/copyright --- installation-report-generator-0.2.2/debian/copyright 2009-04-02 19:24:09.000000000 +0100 +++ installation-report-generator-0.2.3/debian/copyright 2009-04-02 19:24:09.000000000 +0100 @@ -30,5 +30,5 @@ On Debian systems, the complete text of the GNU General Public License can be found in `/usr/share/common-licenses/GPL-3'. -The Debian packaging is © 2008, Alessio Treglia and -is licensed under the GPL, see above. +The Debian packaging is © 2008-2009, Alessio Treglia +and is licensed under the GPL, see above. diff -Nru /tmp/OyJ10HxFpI/installation-report-generator-0.2.2/glade/main_window.glade /tmp/9WGO9hqc7R/installation-report-generator-0.2.3/glade/main_window.glade --- installation-report-generator-0.2.2/glade/main_window.glade 2009-02-27 15:00:53.000000000 +0000 +++ installation-report-generator-0.2.3/glade/main_window.glade 2009-04-02 18:53:21.000000000 +0100 @@ -41,8 +41,9 @@ True - <b>Welcome to Installation Report Generator!</b> True + +<b>Welcome to Installation Report Generator!</b> False diff -Nru /tmp/OyJ10HxFpI/installation-report-generator-0.2.2/irgenerator/globals.py /tmp/9WGO9hqc7R/installation-report-generator-0.2.3/irgenerator/globals.py --- installation-report-generator-0.2.2/irgenerator/globals.py 2009-02-27 15:01:07.000000000 +0000 +++ installation-report-generator-0.2.3/irgenerator/globals.py 2009-04-02 18:53:21.000000000 +0100 @@ -23,7 +23,7 @@ AUTHOR = "Alessio Treglia" AUTHOR_EMAIL = "quadrispro@ubuntu.com" SHORT_APPNAME = "installation-report-generator" -VERSION = (0,2,2) +VERSION = (0,2,3) get_version = lambda: '.'.join(map(str, list(VERSION))) @@ -69,7 +69,7 @@ MAINTAINER_MODE_ON = 0 APP_PATH = ("/usr/share/installation-report-generator/", - "/home/alessio/Documenti/Progetti/installation-report-generator/installation-report-generator/")[MAINTAINER_MODE_ON] + "/home/alessio/Documenti/devel/0.2/")[MAINTAINER_MODE_ON] get_app_path = lambda x: ''.join([APP_PATH, x]) Binary files /tmp/OyJ10HxFpI/installation-report-generator-0.2.2/po/es/LC_MESSAGES/installation-report-generator.mo and /tmp/9WGO9hqc7R/installation-report-generator-0.2.3/po/es/LC_MESSAGES/installation-report-generator.mo differ Binary files /tmp/OyJ10HxFpI/installation-report-generator-0.2.2/po/fr/LC_MESSAGES/installation-report-generator.mo and /tmp/9WGO9hqc7R/installation-report-generator-0.2.3/po/fr/LC_MESSAGES/installation-report-generator.mo differ Binary files /tmp/OyJ10HxFpI/installation-report-generator-0.2.2/po/it/LC_MESSAGES/installation-report-generator.mo and /tmp/9WGO9hqc7R/installation-report-generator-0.2.3/po/it/LC_MESSAGES/installation-report-generator.mo differ diff -Nru /tmp/OyJ10HxFpI/installation-report-generator-0.2.2/setup.py /tmp/9WGO9hqc7R/installation-report-generator-0.2.3/setup.py --- installation-report-generator-0.2.2/setup.py 2009-02-27 15:00:53.000000000 +0000 +++ installation-report-generator-0.2.3/setup.py 2009-04-02 18:53:50.000000000 +0100 @@ -22,6 +22,15 @@ import irgenerator, irgenerator.globals from irgenerator.globals import * +import os + +langs = ['it', 'es', 'fr'] + +def languages_path(): + result = [] + for i in langs: + result.append(("/usr/share/locale/%s/LC_MESSAGES/"%i, ["po/%s/LC_MESSAGES/installation-report-generator.mo"%i])) + return result setup(name = SHORT_APPNAME, version = '.'.join(map(str,VERSION)), @@ -47,7 +56,5 @@ ('/usr/share/installation-report-generator/plugins', ['plugins/UbuntuItWiki.py', 'plugins/Hello.py']), - ('/usr/bin', ['scripts/installation-report-generator']), - ('/usr/share/locale/it/LC_MESSAGES', ['po/it/LC_MESSAGES/installation-report-generator.mo']) - ] + ('/usr/bin', ['scripts/installation-report-generator'])] + languages_path() )