From 4c33a01669dbfa797b0ecdc44965df26fe1123fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Sun, 11 Apr 2010 14:47:50 +0200 Subject: Fixed homepage --- portato/gui/templates/AboutWindow.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'portato') diff --git a/portato/gui/templates/AboutWindow.ui b/portato/gui/templates/AboutWindow.ui index a3f81cf..893958a 100644 --- a/portato/gui/templates/AboutWindow.ui +++ b/portato/gui/templates/AboutWindow.ui @@ -18,7 +18,7 @@ This software is licensed under the terms of the GPLv2. Copyright (C) 2006-2010 René 'Necoro' Neumann <necoro@necoro.net> A Portage GUI - http://portato.necoro.net + http://www.necoro.eu/portato René 'Necoro' Neumann Thanks goto: -- cgit v1.2.3 From c0f9b7b3c2e2df7c3b12f314d6d9d90846f9d255 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Sun, 11 Apr 2010 14:49:28 +0200 Subject: Do not translate 'Portage' --- portato/gui/templates/PreferenceWindow.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'portato') diff --git a/portato/gui/templates/PreferenceWindow.ui b/portato/gui/templates/PreferenceWindow.ui index d2135d0..f456ed7 100644 --- a/portato/gui/templates/PreferenceWindow.ui +++ b/portato/gui/templates/PreferenceWindow.ui @@ -622,7 +622,7 @@ True - Portage + Portage 1 -- cgit v1.2.3 From 4534b61c412dbfb0a04fc533ababbe85df845761 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20=27Necoro=27=20Neumann?= Date: Sun, 11 Apr 2010 16:01:25 +0200 Subject: =?UTF-8?q?Fixed=20translation=20template=20and=20German=20transla?= =?UTF-8?q?tion.=20Thanks=20to=20Andr=C3=A9.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- portato/gui/templates/MainWindow.ui | 2 +- portato/gui/templates/PreferenceWindow.ui | 2 +- portato/gui/views.py | 2 +- portato/plugin.py | 6 +++--- 4 files changed, 6 insertions(+), 6 deletions(-) (limited to 'portato') diff --git a/portato/gui/templates/MainWindow.ui b/portato/gui/templates/MainWindow.ui index 05e9545..2eaaae1 100644 --- a/portato/gui/templates/MainWindow.ui +++ b/portato/gui/templates/MainWindow.ui @@ -644,7 +644,7 @@ True False False - Execute the current selected queue + Execute the currently selected queue diff --git a/portato/gui/templates/PreferenceWindow.ui b/portato/gui/templates/PreferenceWindow.ui index f456ed7..0f0a16f 100644 --- a/portato/gui/templates/PreferenceWindow.ui +++ b/portato/gui/templates/PreferenceWindow.ui @@ -931,7 +931,7 @@ As an example: <i>app-admin</i>, <i>app-emacs</i>, and & True True GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - Chose a console font + Choose a console font True True False diff --git a/portato/gui/views.py b/portato/gui/views.py index 699a832..bb96564 100644 --- a/portato/gui/views.py +++ b/portato/gui/views.py @@ -108,7 +108,7 @@ class HighlightView (gtksourceview2.View, LazyView): old_lang = lang if not language and old_lang: - warning(_("No %(old)s language file installed. Disable highlighting."), {"old" : old_lang}) + warning(_("No %(old)s language file installed. Disabling highlighting."), {"old" : old_lang}) buf = gtksourceview2.Buffer() buf.set_language(language) diff --git a/portato/plugin.py b/portato/plugin.py index ec52314..9d86414 100644 --- a/portato/plugin.py +++ b/portato/plugin.py @@ -443,10 +443,10 @@ class PluginQueue (object): try: exec "from portato.plugins import %s" % p in {} except PluginLoadException, e: - error(_("Loading plugin module '%(plugin)s' failed: %(error)s"), {"plugin" : p, "error" : e}) + error(_("Loading plugin '%(plugin)s' failed: %(error)s"), {"plugin" : p, "error" : e}) except: tb = traceback.format_exc() - error(_("Loading plugin module '%(plugin)s' failed: %(error)s"), {"plugin" : p, "error" : tb}) + error(_("Loading plugin '%(plugin)s' failed: %(error)s"), {"plugin" : p, "error" : tb}) self._organize() @@ -456,7 +456,7 @@ class PluginQueue (object): try: p._widget_init(window) except PluginLoadException, e: - error(_("Loading widgets plugin '%(plugin)s' failed: %(error)s"), {"plugin" : p, "error" : e}) + error(_("Loading plugin '%(plugin)s' failed: %(error)s"), {"plugin" : p, "error" : e}) except: tb = traceback.format_exc() error(_("Loading widgets of plugin '%(plugin)s' failed: %(error)s"), {"plugin" : p, "error" : tb}) -- cgit v1.2.3