~mvo/synaptic/ubuntu-ui-changes

« back to all changes in this revision

Viewing changes to gtk/rgfetchprogress.cc

  • Committer: Michael Vogt
  • Date: 2010-03-24 09:29:51 UTC
  • Revision ID: michael.vogt@ubuntu.com-20100324092951-uz91bein5vbdd0zm
* gtk/rgfetchprogress.cc:
  - change "Download rate: unknown" to "Download rate: ..." 
    (LP: #393358)

Show diffs side-by-side

added added

removed removed

Lines of Context:
332
332
      gtk_label_set_text(GTK_LABEL(glade_xml_get_widget(_gladeXML, "label_eta")),s);
333
333
      g_free(s);
334
334
   } else {
335
 
      gtk_label_set_text(GTK_LABEL(glade_xml_get_widget(_gladeXML, "label_eta")),_("Download rate: unknown"));
 
335
      gtk_label_set_text(GTK_LABEL(glade_xml_get_widget(_gladeXML, "label_eta")),_("Download rate: ..."));
336
336
   }
337
337
   s = g_strdup_printf(_("Downloading file %li of %li"), i, TotalItems);
338
338
   gtk_progress_bar_set_text(GTK_PROGRESS_BAR(_mainProgressBar), s);