(trunk gtk) replace the three single dots '...' with the unicode symbol U+2026 (…).
This commit is contained in:
parent
480700e835
commit
631a77287d
|
@ -101,7 +101,7 @@ static GtkActionEntry entries[] =
|
|||
{ "edit-menu", NULL, N_( "_Edit" ), NULL, NULL, NULL },
|
||||
{ "help-menu", NULL, N_( "_Help" ), NULL, NULL, NULL },
|
||||
{ "copy-magnet-link-to-clipboard", GTK_STOCK_COPY, N_("Copy _Magnet Link to Clipboard" ), "", NULL, G_CALLBACK( action_cb ) },
|
||||
{ "open-torrent-from-url", GTK_STOCK_OPEN, N_("Open _URL..." ), "<control>U", N_( "Open URL..." ), G_CALLBACK( action_cb ) },
|
||||
{ "open-torrent-from-url", GTK_STOCK_OPEN, N_("Open _URL…" ), "<control>U", N_( "Open URL…" ), G_CALLBACK( action_cb ) },
|
||||
{ "open-torrent-toolbar", GTK_STOCK_OPEN, NULL, NULL, N_( "Open a torrent" ), G_CALLBACK( action_cb ) },
|
||||
{ "open-torrent-menu", GTK_STOCK_OPEN, NULL, NULL, N_( "Open a torrent" ), G_CALLBACK( action_cb ) },
|
||||
{ "torrent-start", GTK_STOCK_MEDIA_PLAY, N_( "_Start" ), "<control>S", N_( "Start torrent" ), G_CALLBACK( action_cb ) },
|
||||
|
@ -112,10 +112,10 @@ static GtkActionEntry entries[] =
|
|||
{ "torrent-stop", GTK_STOCK_MEDIA_PAUSE, N_( "_Pause" ), "<control>P", N_( "Pause torrent" ), G_CALLBACK( action_cb ) },
|
||||
{ "pause-all-torrents", GTK_STOCK_MEDIA_PAUSE, N_( "_Pause All" ), NULL, N_( "Pause all torrents" ), G_CALLBACK( action_cb ) },
|
||||
{ "start-all-torrents", GTK_STOCK_MEDIA_PLAY, N_( "_Start All" ), NULL, N_( "Start all torrents" ), G_CALLBACK( action_cb ) },
|
||||
{ "relocate-torrent", NULL, N_("Set _Location..." ), NULL, NULL, G_CALLBACK( action_cb ) },
|
||||
{ "relocate-torrent", NULL, N_("Set _Location…" ), NULL, NULL, G_CALLBACK( action_cb ) },
|
||||
{ "remove-torrent", GTK_STOCK_REMOVE, NULL, "Delete", N_( "Remove torrent" ), G_CALLBACK( action_cb ) },
|
||||
{ "delete-torrent", GTK_STOCK_DELETE, N_( "_Delete Files and Remove" ), "<shift>Delete", NULL, G_CALLBACK( action_cb ) },
|
||||
{ "new-torrent", GTK_STOCK_NEW, N_( "_New..." ), NULL, N_( "Create a torrent" ), G_CALLBACK( action_cb ) },
|
||||
{ "new-torrent", GTK_STOCK_NEW, N_( "_New…" ), NULL, N_( "Create a torrent" ), G_CALLBACK( action_cb ) },
|
||||
{ "quit", GTK_STOCK_QUIT, N_( "_Quit" ), NULL, NULL, G_CALLBACK( action_cb ) },
|
||||
{ "select-all", GTK_STOCK_SELECT_ALL, N_( "Select _All" ), "<control>A", NULL, G_CALLBACK( action_cb ) },
|
||||
{ "deselect-all", NULL, N_( "Dese_lect All" ), "<shift><control>A", NULL, G_CALLBACK( action_cb ) },
|
||||
|
|
|
@ -1840,7 +1840,7 @@ buildTrackerSummary( GString * gstr, const char * key, const tr_tracker_stat * s
|
|||
case TR_TRACKER_ACTIVE:
|
||||
tr_strltime_rounded( timebuf, now - st->lastAnnounceStartTime, sizeof( timebuf ) );
|
||||
g_string_append_c( gstr, '\n' );
|
||||
g_string_append_printf( gstr, _( "Asking for more peers now... <small>%s</small>" ), timebuf );
|
||||
g_string_append_printf( gstr, _( "Asking for more peers now… <small>%s</small>" ), timebuf );
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -1873,7 +1873,7 @@ buildTrackerSummary( GString * gstr, const char * key, const tr_tracker_stat * s
|
|||
case TR_TRACKER_ACTIVE:
|
||||
g_string_append_c( gstr, '\n' );
|
||||
tr_strltime_rounded( timebuf, now - st->lastScrapeStartTime, sizeof( timebuf ) );
|
||||
g_string_append_printf( gstr, _( "Asking for peer counts now... <small>%s</small>" ), timebuf );
|
||||
g_string_append_printf( gstr, _( "Asking for peer counts now… <small>%s</small>" ), timebuf );
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -934,7 +934,7 @@ on_app_exit( gpointer vdata )
|
|||
gtk_misc_set_alignment( GTK_MISC( w ), 0.0, 0.5 );
|
||||
gtk_table_attach_defaults( GTK_TABLE( p ), w, 1, 2, 0, 1 );
|
||||
|
||||
w = gtk_label_new( _( "Sending upload/download totals to tracker..." ) );
|
||||
w = gtk_label_new( _( "Sending upload/download totals to tracker…" ) );
|
||||
gtk_misc_set_alignment( GTK_MISC( w ), 0.0, 0.5 );
|
||||
gtk_table_attach_defaults( GTK_TABLE( p ), w, 1, 2, 1, 2 );
|
||||
|
||||
|
|
|
@ -180,7 +180,7 @@ makeProgressDialog( GtkWidget * parent, MakeMetaUI * ui )
|
|||
v = gtr_vbox_new( TRUE, GUI_PAD );
|
||||
gtk_container_add( GTK_CONTAINER( fr ), v );
|
||||
|
||||
l = gtk_label_new( _( "Creating torrent..." ) );
|
||||
l = gtk_label_new( _( "Creating torrent…" ) );
|
||||
gtk_misc_set_alignment( GTK_MISC( l ), 0.0, 0.5 );
|
||||
gtk_label_set_justify( GTK_LABEL( l ), GTK_JUSTIFY_LEFT );
|
||||
ui->progress_label = l;
|
||||
|
|
|
@ -122,7 +122,7 @@ onResponse( GtkDialog * dialog, int response, gpointer unused UNUSED )
|
|||
GTK_MESSAGE_INFO,
|
||||
GTK_BUTTONS_CLOSE,
|
||||
NULL );
|
||||
gtk_message_dialog_format_secondary_text( GTK_MESSAGE_DIALOG( w ), _( "This may take a moment..." ) );
|
||||
gtk_message_dialog_format_secondary_text( GTK_MESSAGE_DIALOG( w ), _( "This may take a moment…" ) );
|
||||
gtk_dialog_set_response_sensitive( GTK_DIALOG( w ), GTK_RESPONSE_CLOSE, FALSE );
|
||||
gtk_widget_show( w );
|
||||
|
||||
|
|
|
@ -481,7 +481,7 @@ onBlocklistUpdate( GtkButton * w, gpointer gdata )
|
|||
GTK_BUTTONS_CLOSE,
|
||||
"%s", _( "Update Blocklist" ) );
|
||||
gtk_widget_set_sensitive( data->updateBlocklistButton, FALSE );
|
||||
gtk_message_dialog_format_secondary_text( GTK_MESSAGE_DIALOG( d ), "%s", _( "Getting new blocklist..." ) );
|
||||
gtk_message_dialog_format_secondary_text( GTK_MESSAGE_DIALOG( d ), "%s", _( "Getting new blocklist…" ) );
|
||||
data->updateBlocklistDialog = d;
|
||||
g_signal_connect( d, "response", G_CALLBACK(onBlocklistUpdateResponse), data );
|
||||
gtk_widget_show( d );
|
||||
|
@ -1182,7 +1182,7 @@ onPortTest( GtkButton * button UNUSED, gpointer vdata )
|
|||
struct network_page_data * data = vdata;
|
||||
gtk_widget_set_sensitive( data->portButton, FALSE );
|
||||
gtk_widget_set_sensitive( data->portSpin, FALSE );
|
||||
gtk_label_set_markup( GTK_LABEL( data->portLabel ), _( "<i>Testing TCP port...</i>" ) );
|
||||
gtk_label_set_markup( GTK_LABEL( data->portLabel ), _( "<i>Testing TCP port…</i>" ) );
|
||||
if( !data->portTag )
|
||||
data->portTag = g_signal_connect( data->core, "port-tested", G_CALLBACK(onPortTested), data );
|
||||
gtr_core_port_test( data->core );
|
||||
|
|
Loading…
Reference in New Issue