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:
parent
94d8cd9fa9
commit
dc51b02e42
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue