# HG changeset patch # User Mark Doliner # Date 1248020385 0 # Node ID f2c8dd7d4deb3e5c0b277a8a1cd08a0cc3af356e # Parent f106aafc883b874f3e34dcc1bbb1b0dbf36684d8 Fix an incorrect string. Yes, this breaks the string freeze. But the string is wrong and it doesn't make sense to leave an incorrect string here because that just allows more time for translators to translate the incorrect string. diff -r f106aafc883b -r f2c8dd7d4deb libpurple/protocols/silc/silc.c --- a/libpurple/protocols/silc/silc.c Sun Jul 19 12:05:32 2009 +0000 +++ b/libpurple/protocols/silc/silc.c Sun Jul 19 16:19:45 2009 +0000 @@ -535,7 +535,7 @@ return; } purple_connection_error_reason(gc, PURPLE_CONNECTION_ERROR_OTHER_ERROR, - _("Unable to not load SILC key pair")); + _("Unable to load SILC key pair")); gc->proto_data = NULL; silc_free(sg); return;