~ubuntu-branches/ubuntu/lucid/monodevelop/lucid

« back to all changes in this revision

Viewing changes to src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui.Pads.ProjectPad/ProjectFileNodeBuilder.cs

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2010-02-02 11:39:59 UTC
  • mfrom: (1.2.6 upstream) (1.3.7 sid)
  • Revision ID: james.westby@ubuntu.com-20100202113959-s4exdz7er7igylz2
Tags: 2.2.1+dfsg-1
* New upstream release
* debian/control:
  + Standards version 3.8.4 (no changes needed)
* debian/patches/remove_support_for_non_debian_functionality.patch,
  debian/patches/remove_support_for_soft_debugger.patch,
  debian/patches/remove_support_for_moonlight.patch,
  debian/rules:
  + Split patch into two pieces, to make it easier to enable either
    SDB or Moonlight support with a rebuild
* debian/monodevelop-moonlight.install,
  debian/monodevelop-debugger-sdb.install,
  debian/control:
  + Create packaging data for the Soft Debugger addin and Moonlight addin -
    and comment them out of debian/control as we can't provide them on
    Debian for now

Show diffs side-by-side

added added

removed removed

Lines of Context:
198
198
                        AlertButton removeFromProject = new AlertButton (GettextCatalog.GetString ("_Remove from Project"), Gtk.Stock.Remove);
199
199
                        
200
200
                        string question, secondaryText;
 
201
                        
 
202
                        secondaryText = GettextCatalog.GetString ("The Delete option permanently removes the file from your hard disk. Click Remove from Project if you only want to remove it from your current solution.");
 
203
                        
201
204
                        if (hasChildren) {
202
205
                                if (files.Count == 1)
203
206
                                        question = GettextCatalog.GetString ("Are you sure you want to remove the file {0} and " + 
206
209
                                else
207
210
                                        question = GettextCatalog.GetString ("Are you sure you want to remove the selected files and " + 
208
211
                                                                             "their code-behind children from the project?");
209
 
                                secondaryText = GettextCatalog.GetString ("Delete physically removes the files from disc.");
210
212
                        } else {
211
213
                                if (files.Count == 1)
212
214
                                        question = GettextCatalog.GetString ("Are you sure you want to remove file {0} from project {1}?",
213
215
                                                                             Path.GetFileName (files[0].Name), files[0].Project.Name);
214
216
                                else
215
217
                                        question = GettextCatalog.GetString ("Are you sure you want to remove the selected files from the project?");
216
 
                                secondaryText = GettextCatalog.GetString ("The Delete option physically removes the file from disc.");
217
218
                        }
218
219
                        
219
220
                        AlertButton result = MessageService.AskQuestion (question, secondaryText,