~victored/beat-box/lp-914063

« back to all changes in this revision

Viewing changes to src/Dialogs/SyncWarningDialog.vala

  • Committer: Victor Eduardo
  • Date: 2012-03-18 04:34:04 UTC
  • Revision ID: victoreduardm@gmail.com-20120318043404-3f3si0hmyuh1i50c
Remove 'medias' from the UI.

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
                Image warning = new Image.from_stock(Gtk.Stock.DIALOG_ERROR, Gtk.IconSize.DIALOG);
64
64
                Label title = new Label("");
65
65
                Label info = new Label("");
66
 
                importMedias = new Button.with_label(_("Import medias to Library"));
 
66
                importMedias = new Button.with_label(_("Import media to Library"));
67
67
                sync = new Button.with_label(_("Continue Syncing"));
68
68
                cancel = new Button.with_label(_("Stop Syncing"));
69
69
                
70
70
                // pretty up labels
71
71
                title.xalign = 0.0f;
72
 
                title.set_markup("<span weight=\"bold\" size=\"larger\">Sync will remove " + to_remove.size.to_string() + " medias from " + d.getDisplayName() + "</span>");
 
72
                title.set_markup("<span weight=\"bold\" size=\"larger\">Sync will remove " + to_remove.size.to_string() + " media from " + d.getDisplayName() + "</span>");
73
73
                info.xalign = 0.0f;
74
74
                info.set_line_wrap(true);
75
 
                info.set_markup("If you continue to sync, medias will be removed from " + d.getDisplayName() + " since they are not on the sync list. Would you like to import them to your library first?");
 
75
                info.set_markup("If you continue to sync, media will be removed from " + d.getDisplayName() + " since they are not on the sync list. Would you like to import them to your library first?");
76
76
                
77
77
                importMedias.set_sensitive(!lm.doing_file_operations());
78
78
                sync.set_sensitive(!lm.doing_file_operations());