19 lines
1.0 KiB
Plaintext
19 lines
1.0 KiB
Plaintext
$OpenBSD: patch-gtk_tr-icon_c,v 1.1 2008/04/22 16:50:43 naddy Exp $
|
|
--- gtk/tr-icon.c.orig Tue Apr 1 17:13:04 2008
|
|
+++ gtk/tr-icon.c Tue Apr 1 17:13:22 2008
|
|
@@ -63,11 +63,11 @@ refresh_tooltip_cb( gpointer data )
|
|
tr_strlspeed( downStr, stats->clientDownloadSpeed, sizeof( downStr ) );
|
|
tr_strlspeed( upStr, stats->clientUploadSpeed, sizeof( upStr ) );
|
|
g_snprintf( tip, sizeof( tip ),
|
|
- /* %1$'d is the number of torrents we're seeding,
|
|
- %2$'d is the number of torrents we're downloading,
|
|
+ /* %1$d is the number of torrents we're seeding,
|
|
+ %2$d is the number of torrents we're downloading,
|
|
%3$s is our download speed,
|
|
%4$s is our upload speed */
|
|
- _( "%1$'d Seeding, %2$'d Downloading\nDown: %3$s, Up: %4$s" ),
|
|
+ _( "%1$d Seeding, %2$d Downloading\nDown: %3$s, Up: %4$s" ),
|
|
stats->seedingCount,
|
|
stats->downloadCount,
|
|
downStr, upStr );
|