1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-23 16:24:02 +00:00

fix a string that needed to be marked for translation. reported by zebob

This commit is contained in:
Charles Kerr 2007-12-27 16:11:38 +00:00
parent 94d8cd9fa9
commit dc51b02e42

View file

@ -868,7 +868,7 @@ refresh_activity (GtkWidget * top)
gtk_label_set_text (GTK_LABEL(a->state_lb), pch);
g_free (pch);
pch = g_strdup_printf( "%.1f%% (%.1f%% selected)", stat->percentComplete*100.0, stat->percentDone*100.0 );
pch = g_strdup_printf( _( "%.1f%% (%.1f%% selected)" ), stat->percentComplete*100.0, stat->percentDone*100.0 );
gtk_label_set_text (GTK_LABEL(a->progress_lb), pch);
g_free (pch);