Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Ward <matt.ward@xamarin.com>2016-03-24 16:56:03 +0300
committerMatt Ward <matt.ward@xamarin.com>2016-03-24 17:38:15 +0300
commit99872407d7c33b303be96151b4c9b8ea817b86dc (patch)
tree43672d82b164017f2a985309fb373658feb81354 /main/src/core/MonoDevelop.Ide/gtk-gui
parentf031f3befe7db67447a03d638460add85fde7a86 (diff)
[Ide] Fix misleading label in New Project dialog.
Fixed bug #39886 - Checkbox text has meaning opposite to its function https://bugzilla.xamarin.com/show_bug.cgi?id=39886 The New Project dialog had a check box with the label "Create a project within the solution directory". When this is checked a directory is created for the project inside the solution directory however the label suggests that the project will be created in the solution directory. The label has been changed to "Create a project directory within the solution directory" since this is a better description of what will occur if this check box is checked.
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/gtk-gui')
-rw-r--r--main/src/core/MonoDevelop.Ide/gtk-gui/MonoDevelop.Ide.Projects.GtkProjectConfigurationWidget.cs2
-rw-r--r--main/src/core/MonoDevelop.Ide/gtk-gui/gui.stetic2
2 files changed, 2 insertions, 2 deletions
diff --git a/main/src/core/MonoDevelop.Ide/gtk-gui/MonoDevelop.Ide.Projects.GtkProjectConfigurationWidget.cs b/main/src/core/MonoDevelop.Ide/gtk-gui/MonoDevelop.Ide.Projects.GtkProjectConfigurationWidget.cs
index e0ba21b333..ee403bd06f 100644
--- a/main/src/core/MonoDevelop.Ide/gtk-gui/MonoDevelop.Ide.Projects.GtkProjectConfigurationWidget.cs
+++ b/main/src/core/MonoDevelop.Ide/gtk-gui/MonoDevelop.Ide.Projects.GtkProjectConfigurationWidget.cs
@@ -127,7 +127,7 @@ namespace MonoDevelop.Ide.Projects
this.createProjectWithinSolutionDirectoryCheckBox = new global::Gtk.CheckButton ();
this.createProjectWithinSolutionDirectoryCheckBox.CanFocus = true;
this.createProjectWithinSolutionDirectoryCheckBox.Name = "createProjectWithinSolutionDirectoryCheckBox";
- this.createProjectWithinSolutionDirectoryCheckBox.Label = global::Mono.Unix.Catalog.GetString ("Create a project within the solution directory.");
+ this.createProjectWithinSolutionDirectoryCheckBox.Label = global::Mono.Unix.Catalog.GetString ("Create a project directory within the solution directory.");
this.createProjectWithinSolutionDirectoryCheckBox.Active = true;
this.createProjectWithinSolutionDirectoryCheckBox.DrawIndicator = true;
this.createProjectWithinSolutionDirectoryCheckBox.UseUnderline = true;
diff --git a/main/src/core/MonoDevelop.Ide/gtk-gui/gui.stetic b/main/src/core/MonoDevelop.Ide/gtk-gui/gui.stetic
index ace9f139ae..f9da3cca0e 100644
--- a/main/src/core/MonoDevelop.Ide/gtk-gui/gui.stetic
+++ b/main/src/core/MonoDevelop.Ide/gtk-gui/gui.stetic
@@ -11521,7 +11521,7 @@ Visual Studio generates a default ID for embedded resources, instead of simply u
<widget class="Gtk.CheckButton" id="createProjectWithinSolutionDirectoryCheckBox">
<property name="MemberName" />
<property name="CanFocus">True</property>
- <property name="Label" translatable="yes">Create a project within the solution directory.</property>
+ <property name="Label" translatable="yes">Create a project directory within the solution directory.</property>
<property name="Active">True</property>
<property name="DrawIndicator">True</property>
<property name="HasLabel">True</property>