diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | Rpmdrake/gui.pm | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,3 +1,5 @@ +- fix a syntax error (#60901) + Version 5.26.3.2 - 01 September 2010, João Victor Duarte Martins - refactor last update so translations are still valid. diff --git a/Rpmdrake/gui.pm b/Rpmdrake/gui.pm index aef9f620..5ed9f226 100644 --- a/Rpmdrake/gui.pm +++ b/Rpmdrake/gui.pm @@ -174,7 +174,7 @@ sub get_string_from_keywords { return join("\n", (member('official', @media_types)) ? N("This is an offical update which is supported by Mandriva.") - : N("This is an unoffical update which is <b>not supported</b>.")), + : N("This is an unoffical update which is <b>not supported</b>."), $s); } else { $s .= N("This is an official package supported by Mandriva") . "\n" if member('official', @media_types); |