(trunk, gtk/qt/web) #5581: 'Inconsistent ordering of Upload and Download speed limits' -- fixed.

This commit is contained in:
Jordan Lee 2014-01-20 23:56:06 +00:00
parent 1637da5c1d
commit 5f2daaafb3
3 changed files with 7 additions and 7 deletions

View File

@ -1051,16 +1051,16 @@ info_page_new (struct DetailsImpl * di)
gtk_label_set_single_line_mode (GTK_LABEL (l), TRUE);
hig_workarea_add_row (t, &row, _("Have:"), l, NULL);
/* downloaded */
l = di->dl_lb = gtk_label_new (NULL);
gtk_label_set_single_line_mode (GTK_LABEL (l), TRUE);
hig_workarea_add_row (t, &row, _("Downloaded:"), l, NULL);
/* uploaded */
l = di->ul_lb = gtk_label_new (NULL);
gtk_label_set_single_line_mode (GTK_LABEL (l), TRUE);
hig_workarea_add_row (t, &row, _("Uploaded:"), l, NULL);
/* downloaded */
l = di->dl_lb = gtk_label_new (NULL);
gtk_label_set_single_line_mode (GTK_LABEL (l), TRUE);
hig_workarea_add_row (t, &row, _("Downloaded:"), l, NULL);
/* state */
l = di->state_lb = gtk_label_new (NULL);
gtk_label_set_single_line_mode (GTK_LABEL (l), TRUE);

View File

@ -942,8 +942,8 @@ Details :: createInfoTab ()
hig->addSectionTitle (tr ("Activity"));
hig->addRow (tr ("Have:"), myHaveLabel = new SqueezeLabel);
hig->addRow (tr ("Availability:"), myAvailabilityLabel = new SqueezeLabel);
hig->addRow (tr ("Downloaded:"), myDownloadedLabel = new SqueezeLabel);
hig->addRow (tr ("Uploaded:"), myUploadedLabel = new SqueezeLabel);
hig->addRow (tr ("Downloaded:"), myDownloadedLabel = new SqueezeLabel);
hig->addRow (tr ("State:"), myStateLabel = new SqueezeLabel);
hig->addRow (tr ("Running time:"), myRunTimeLabel = new SqueezeLabel);
hig->addRow (tr ("Remaining time:"), myETALabel = new SqueezeLabel);

View File

@ -202,8 +202,8 @@
<div class="title">Activity</div>
<div class="row"><div class="key">Have:</div><div class="value" id="inspector-info-have">&nbsp;</div></div>
<div class="row"><div class="key">Availability:</div><div class="value" id="inspector-info-availability">&nbsp;</div></div>
<div class="row"><div class="key">Downloaded:</div><div class="value" id="inspector-info-downloaded">&nbsp;</div></div>
<div class="row"><div class="key">Uploaded:</div><div class="value" id="inspector-info-uploaded">&nbsp;</div></div>
<div class="row"><div class="key">Downloaded:</div><div class="value" id="inspector-info-downloaded">&nbsp;</div></div>
<div class="row"><div class="key">State:</div><div class="value" id="inspector-info-state">&nbsp;</div></div>
<div class="row"><div class="key">Running Time:</div><div class="value" id="inspector-info-running-time">&nbsp;</div></div>
<div class="row"><div class="key">Remaining Time:</div><div class="value" id="inspector-info-remaining-time">&nbsp;</div></div>