mirror of
https://github.com/transmission/transmission
synced 2024-12-24 08:43:27 +00:00
gtk: rename "Verify Local Files" to "Verify Local Data"
This commit is contained in:
parent
11ebb80bff
commit
f3c153234f
2 changed files with 3 additions and 3 deletions
|
@ -71,7 +71,7 @@ static GtkActionEntry entries[] =
|
|||
{ "start-torrent", GTK_STOCK_MEDIA_PLAY,
|
||||
N_("_Start"), "<control>S", NULL, G_CALLBACK(action_cb) },
|
||||
{ "verify-torrent", NULL,
|
||||
N_("_Verify Local Files"), NULL, NULL, G_CALLBACK(action_cb) },
|
||||
N_("_Verify Local Data"), NULL, NULL, G_CALLBACK(action_cb) },
|
||||
{ "pause-torrent", GTK_STOCK_MEDIA_PAUSE,
|
||||
N_("_Pause"), "<control>P", NULL, G_CALLBACK(action_cb) },
|
||||
{ "remove-torrent", GTK_STOCK_REMOVE,
|
||||
|
|
|
@ -299,12 +299,12 @@ tr_torrent_status_str ( TrTorrent * gtor )
|
|||
{
|
||||
case TR_STATUS_CHECK_WAIT:
|
||||
prog = st->recheckProgress * 100.0; /* [0...100] */
|
||||
top = g_strdup_printf( _("Waiting to verify local files (%.1f%% tested)"), prog );
|
||||
top = g_strdup_printf( _("Waiting to verify local data (%.1f%% tested)"), prog );
|
||||
break;
|
||||
|
||||
case TR_STATUS_CHECK:
|
||||
prog = st->recheckProgress * 100.0; /* [0...100] */
|
||||
top = g_strdup_printf( _("Verifying local files (%.1f%% tested)"), prog );
|
||||
top = g_strdup_printf( _("Verifying local data (%.1f%% tested)"), prog );
|
||||
break;
|
||||
|
||||
case TR_STATUS_DOWNLOAD:
|
||||
|
|
Loading…
Reference in a new issue