openbsd-ports/net/transmission/patches/patch-gtk_tr-prefs_c
naddy faec2170d9 Update to 1.50: A bunch of bug fixes and various small improvements as well
as initial IPv6 support.
Also submitted in near-identical form by Brad.
2009-02-15 18:09:29 +00:00

15 lines
630 B
Plaintext

$OpenBSD: patch-gtk_tr-prefs_c,v 1.3 2009/02/15 18:09:29 naddy Exp $
--- gtk/tr-prefs.c.orig Sat Jan 17 16:25:47 2009
+++ gtk/tr-prefs.c Tue Jan 20 20:59:57 2009
@@ -381,8 +381,8 @@ updateBlocklistText( GtkWidget * w,
char buf[512];
g_snprintf( buf, sizeof( buf ),
- ngettext( "Enable _blocklist (contains %'d rule)",
- "Enable _blocklist (contains %'d rules)", n ), n );
+ ngettext( "Enable _blocklist (contains %d rule)",
+ "Enable _blocklist (contains %d rules)", n ), n );
gtk_button_set_label( GTK_BUTTON( w ), buf );
}