Changeset 3870
- Timestamp:
- Nov 18, 2007, 2:55:08 AM (15 years ago)
- Location:
- trunk/gtk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/gtk/actions.c
r3867 r3870 72 72 N_("_Start"), "<control>S", NULL, G_CALLBACK(action_cb) }, 73 73 { "verify-torrent", NULL, 74 N_("_Verify Local Files"), NULL, NULL, G_CALLBACK(action_cb) },74 N_("_Verify Local Data"), NULL, NULL, G_CALLBACK(action_cb) }, 75 75 { "pause-torrent", GTK_STOCK_MEDIA_PAUSE, 76 76 N_("_Pause"), "<control>P", NULL, G_CALLBACK(action_cb) }, -
trunk/gtk/tr_torrent.c
r3606 r3870 300 300 case TR_STATUS_CHECK_WAIT: 301 301 prog = st->recheckProgress * 100.0; /* [0...100] */ 302 top = g_strdup_printf( _("Waiting to verify local files(%.1f%% tested)"), prog );302 top = g_strdup_printf( _("Waiting to verify local data (%.1f%% tested)"), prog ); 303 303 break; 304 304 305 305 case TR_STATUS_CHECK: 306 306 prog = st->recheckProgress * 100.0; /* [0...100] */ 307 top = g_strdup_printf( _("Verifying local files(%.1f%% tested)"), prog );307 top = g_strdup_printf( _("Verifying local data (%.1f%% tested)"), prog ); 308 308 break; 309 309
Note: See TracChangeset
for help on using the changeset viewer.