]> granicus.if.org Git - transmission/commitdiff
(trunk gtk) replace the three single dots '...' with the unicode symbol U+2026 (…).
authorJordan Lee <jordan@transmissionbt.com>
Fri, 3 Feb 2012 15:51:36 +0000 (15:51 +0000)
committerJordan Lee <jordan@transmissionbt.com>
Fri, 3 Feb 2012 15:51:36 +0000 (15:51 +0000)
gtk/actions.c
gtk/details.c
gtk/main.c
gtk/makemeta-ui.c
gtk/relocate.c
gtk/tr-prefs.c

index ca0e08e545097dd3b9f9846eb89fa5ee63ee2cd3..3d63444c65c49c5f4d8441f79be38da9b2710cd9 100644 (file)
@@ -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 ) },
index cd855b3c9b57809300acf8a6a731f82938ef419d..8204fd51925be92435278f7bf19a9d3369842445 100644 (file)
@@ -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;
             }
         }
index 9c92a0e4cf4af7b5169d4845751dbd986f8e72ee..e9628ce92cc83a87c7c95b76baf2028c05a8a79d 100644 (file)
@@ -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 );
 
index 8f991c84146a2fac697ce54f11266ec04359c20a..4d0986ffff2b871e34bcaeb1756b5f45de7f2c6c 100644 (file)
@@ -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;
index e71da52dee0ac653ad9c03bd463d63d2edfcfa23..2f0a12b4cca3f893ebf660a11bc5434bd9352969 100644 (file)
@@ -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 );
 
index 500d5432632f469b9a01b62ea98cbe50f6f73d3f..b7c551ccf5d96c8f39feaceb1226c8d3396d9606 100644 (file)
@@ -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 );