Changeset 3353
- Timestamp:
- Oct 10, 2007, 6:52:08 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/AUTHORS
r3343 r3353 3 3 4 4 Lead Developers <transmission-dev@m0k.org> 5 Mitchell Livingston <livings124@gmail.com> (Mac OS X interface, Backend) 6 Charles Kerr <charles@rebelbase.com> (Backend, GTK+ client) 5 7 Eric Petit <titer@m0k.org> (Creator) 6 Josh Elsasser <josh@elsasser.org> (Back-end, GTK+ interface, Daemon interface) 7 Mitchell Livingston <livings124@gmail.com> (Mac OS X interface, Back-end) 8 Charles Kerr <charles@rebelbase.com> (Back-end, GTK+, wxWidgets) 8 Josh Elsasser <josh@elsasser.org> (Daemon, Backend, GTK+ interface) 9 9 Bryan Varner <bryan@varnernet.com> (BeOS interface) 10 10 -
trunk/NEWS
r3334 r3353 14 14 + Optimizations to decrease memory usage 15 15 + Various smaller interface additions and improvements 16 - GTK: 17 + Various smaller interface improvements 16 18 17 19 0.82 (2007/09/09) -
trunk/gtk/actions.c
r3352 r3353 88 88 { "edit-preferences", GTK_STOCK_PREFERENCES, 89 89 NULL, NULL, NULL, G_CALLBACK(action_cb) }, 90 { "show-torrent- properties", GTK_STOCK_PROPERTIES,91 N ULL, "<alt>Return", NULL, G_CALLBACK(action_cb) },90 { "show-torrent-details", GTK_STOCK_INFO, 91 N_("_Details"), "<alt>Return", NULL, G_CALLBACK(action_cb) }, 92 92 { "show-about-dialog", GTK_STOCK_ABOUT, 93 93 N_("_About Transmission"), NULL, NULL, G_CALLBACK(action_cb) }, -
trunk/gtk/main.c
r3352 r3353 203 203 action_sensitize( "remove-torrent", status != 0); 204 204 action_sensitize( "verify-torrent", status != 0); 205 action_sensitize( "show-torrent- properties", status != 0);205 action_sensitize( "show-torrent-details", status != 0); 206 206 207 207 status = 0; … … 882 882 GtkWidget * w = gtk_about_dialog_new (); 883 883 GtkAboutDialog * a = GTK_ABOUT_DIALOG (w); 884 const char *authors[] = { "Eric Petit (Back-end; OS X)", 885 "Josh Elsasser (Back-end; GTK+)", 884 const char *authors[] = { "Charles Kerr (Back-end; GTK+)", 886 885 "Mitchell Livingston (Back-end; OS X)", 887 "Charles Kerr (Back-end; GTK+)", 886 "Eric Petit (Back-end; OS X)", 887 "Josh Elsasser (Daemon; Back-end; GTK+)", 888 888 "Bryan Varner (BeOS)", 889 889 NULL }; … … 894 894 #endif 895 895 gtk_about_dialog_set_logo_icon_name( a, "transmission-logo" ); 896 gtk_about_dialog_set_comments( a, _("A GTK+ BitTorrent Client.") );896 gtk_about_dialog_set_comments( a, _("A simple yet powerful BitTorrent Client") ); 897 897 gtk_about_dialog_set_website( a, "http://transmission.m0k.org/" ); 898 898 gtk_about_dialog_set_copyright( a, _("Copyright 2005-2007 The Transmission Project") ); … … 1000 1000 changed |= gtk_tree_selection_count_selected_rows( s ) != 0; 1001 1001 } 1002 else if (!strcmp (action_name, "show-torrent- properties"))1002 else if (!strcmp (action_name, "show-torrent-details")) 1003 1003 { 1004 1004 GtkTreeSelection * s = tr_window_get_selection(data->wind); -
trunk/gtk/torrent-inspector.c
r3352 r3353 1599 1599 /* create the dialog */ 1600 1600 size = readablesize( info->totalSize ); 1601 pch = g_strdup_printf( _( " Properties for %s (%s)" ), info->name, size );1601 pch = g_strdup_printf( _( "Details for %s (%s)" ), info->name, size ); 1602 1602 d = gtk_dialog_new_with_buttons (pch, parent, 0, 1603 1603 GTK_STOCK_CLOSE, GTK_RESPONSE_CLOSE, -
trunk/gtk/tr_window.c
r3352 r3353 174 174 gpointer user_data UNUSED ) 175 175 { 176 action_activate( "show-torrent- properties" );176 action_activate( "show-torrent-details" ); 177 177 } 178 178 -
trunk/gtk/ui.h
r3352 r3353 9 9 " <menuitem action='verify-torrent'/>\n" 10 10 " <menuitem action='remove-torrent'/>\n" 11 " <menuitem action='show-torrent- properties'/>\n"11 " <menuitem action='show-torrent-details'/>\n" 12 12 " <separator/>\n" 13 13 " <menuitem action='create-torrent'/>\n" … … 35 35 " <toolitem action='remove-torrent'/>\n" 36 36 " <separator/>\n" 37 " <toolitem action='show-torrent- properties'/>\n"37 " <toolitem action='show-torrent-details'/>\n" 38 38 " </toolbar>\n" 39 39 "\n" 40 40 " <popup name='main-window-popup'>\n" 41 " <menuitem action='show-torrent- properties'/>\n"41 " <menuitem action='show-torrent-details'/>\n" 42 42 " <separator/>\n" 43 43 " <menuitem action='start-torrent'/>\n" -
trunk/gtk/util.c
r3333 r3353 62 62 double small = size; 63 63 64 if( !size ) 65 return g_strdup_printf( _("None") ); 66 64 67 for(ii = 0; ii + 1 < ALEN(sizestrs) && 1024.0 <= small / 1024.0; ii++) 65 68 small /= 1024.0; … … 79 82 const guint64 bps = KiBps * 1024; 80 83 char * str = readablesize (bps); 81 char * ret = g_strdup_printf ("%s/s", str);84 char * ret = bps ? g_strdup_printf ("%s/s", str) : g_strdup( str ); 82 85 g_free (str); 83 86 return ret;
Note: See TracChangeset
for help on using the changeset viewer.