On Sun, Nov 06, 2005 at 03:05:07AM +0000, Filipus Klutiero wrote:
> Package: synaptic
> Version: 0.57.5.1
> Severity: normal
> Tags: l10n

Thanks for your bugreport. 
 
> When I use synaptic in French and it displays the warning "The following
> problems were found on your system:" after refreshing the packages list, the 
> box below is empty. When I run it
> in English, the following error appears, as expected :
> "W: GPG error: http://secure-testing.debian.net etch/security-updates
> Release: The following signatures couldn't be verified because the
> public key is not available: NO_PUBKEY 946AA6E18722E71E"
> 
> This error also appears on apt-get update (even when apt-get is ran
> in French).
[..]

What locale are you using? Maybe a non-utf8 locale? Can you still
reproduce it? If so, I would be interessted if the attached patch
helps. 

Cheers,
 Michael

-- 
Linux is not The Answer. Yes is the answer. Linux is The Question. - Neo
Index: gtk/rguserdialog.cc
===================================================================
--- gtk/rguserdialog.cc (revision 1766)
+++ gtk/rguserdialog.cc (working copy)
@@ -76,7 +76,7 @@
    GtkWidget *scroll = gtk_scrolled_window_new(NULL,NULL);
    GtkWidget *textview = gtk_text_view_new();
    GtkTextBuffer *buffer = gtk_text_view_get_buffer(GTK_TEXT_VIEW(textview));
-   gtk_text_buffer_set_text(GTK_TEXT_BUFFER(buffer),msg.c_str(), -1);
+   gtk_text_buffer_set_text(GTK_TEXT_BUFFER(buffer),utf8(msg.c_str()), -1);
    gtk_text_view_set_wrap_mode(GTK_TEXT_VIEW(textview), GTK_WRAP_WORD);
    gtk_text_view_set_left_margin(GTK_TEXT_VIEW(textview), 3);
    gtk_text_view_set_cursor_visible(GTK_TEXT_VIEW(textview), FALSE);

Reply via email to