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:
authorAnkit Jain <radical@corewars.org>2007-12-20 17:00:12 +0300
committerAnkit Jain <radical@corewars.org>2007-12-20 17:00:12 +0300
commitfaebcbfc6f0e908c593db89469b28b4c80bb247a (patch)
tree0f31ba20afe4da303cdf16e09840a88091050f5f
parent94ea72b3239c59e6154f72af1fe0847b69b595bb (diff)
* MakefileGeneratorTool.cs: Use GettextCatalog.GetString for
user-visible strings. svn path=/branches/monodevelop/main/1.0/; revision=91707
-rw-r--r--main/src/addins/MonoDevelop.Autotools/ChangeLog5
-rw-r--r--main/src/addins/MonoDevelop.Autotools/MakefileGeneratorTool.cs20
2 files changed, 15 insertions, 10 deletions
diff --git a/main/src/addins/MonoDevelop.Autotools/ChangeLog b/main/src/addins/MonoDevelop.Autotools/ChangeLog
index 816a81625f..ad6d13c58e 100644
--- a/main/src/addins/MonoDevelop.Autotools/ChangeLog
+++ b/main/src/addins/MonoDevelop.Autotools/ChangeLog
@@ -1,3 +1,8 @@
+2007-12-20 Ankit Jain <jankit@novell.com>
+
+ * MakefileGeneratorTool.cs: Use GettextCatalog.GetString for
+ user-visible strings.
+
2007-12-18 Ankit Jain <jankit@novell.com>
Fix bug #349419
diff --git a/main/src/addins/MonoDevelop.Autotools/MakefileGeneratorTool.cs b/main/src/addins/MonoDevelop.Autotools/MakefileGeneratorTool.cs
index 2d2fbb4773..0c5febd3c3 100644
--- a/main/src/addins/MonoDevelop.Autotools/MakefileGeneratorTool.cs
+++ b/main/src/addins/MonoDevelop.Autotools/MakefileGeneratorTool.cs
@@ -29,11 +29,11 @@ namespace MonoDevelop.Autotools
if (s.Length > 3)
defaultConfig = s.Substring (3);
} else if (s [0] == '-') {
- Console.WriteLine ("Error: Unknown option {0}", s);
+ Console.WriteLine (GettextCatalog.GetString ("Error: Unknown option {0}", s));
return 1;
} else {
if (filename != null) {
- Console.WriteLine ("Error: Filename already specified - {0}, another filename '{1}' cannot be specified.", filename, s);
+ Console.WriteLine (GettextCatalog.GetString ("Error: Filename already specified - {0}, another filename '{1}' cannot be specified.", filename, s));
return 1;
}
@@ -42,22 +42,22 @@ namespace MonoDevelop.Autotools
}
if (filename == null) {
- Console.WriteLine ("Error: Solution file not specified.");
+ Console.WriteLine (GettextCatalog.GetString ("Error: Solution file not specified."));
ShowUsage ();
return 1;
}
- Console.WriteLine ("Loading solution file {0}", filename);
+ Console.WriteLine (GettextCatalog.GetString ("Loading solution file {0}", filename));
ConsoleProgressMonitor monitor = new ConsoleProgressMonitor ();
CombineEntry centry = Services.ProjectService.ReadCombineEntry (filename, monitor);
Combine combine = centry as Combine;
if (combine == null) {
- Console.WriteLine ("Error: Makefile generation supported only for solutions.\n");
+ Console.WriteLine (GettextCatalog.GetString ("Error: Makefile generation supported only for solutions.\n"));
return 1;
}
if (defaultConfig == null || !CheckValidConfig (combine, defaultConfig)) {
- Console.WriteLine ("\nInvalid configuration {0}. Valid configurations : ", defaultConfig);
+ Console.WriteLine (GettextCatalog.GetString ("\nInvalid configuration {0}. Valid configurations : ", defaultConfig));
for (int i = 0; i < combine.Configurations.Count; i ++) {
CombineConfiguration cc = (CombineConfiguration) combine.Configurations [i];
Console.WriteLine ("\t{0}. {1}", i + 1, cc.Name);
@@ -66,7 +66,7 @@ namespace MonoDevelop.Autotools
int configCount = combine.Configurations.Count;
int op = 0;
do {
- Console.Write ("Select configuration : ");
+ Console.Write (GettextCatalog.GetString ("Select configuration : "));
string s = Console.ReadLine ();
if (s.Length == 0)
return 1;
@@ -128,10 +128,10 @@ namespace MonoDevelop.Autotools
{
Console.WriteLine ("generate-makefiles <solution-file> [--simple-makefiles] [-d:default-config]");
Console.WriteLine ();
- Console.WriteLine ("Options");
- Console.WriteLine (" --simple-makefiles -s\n\tGenerates set of Makefiles with the most common targets, and a configuration script that does a basic check of package dependencies. Default is to generate Makefile structure based on Autotools with the standard targets and configuration scripts.");
+ Console.WriteLine (GettextCatalog.GetString ("Options"));
+ Console.WriteLine (GettextCatalog.GetString (" --simple-makefiles -s\n\tGenerates set of Makefiles with the most common targets, and a configuration script that does a basic check of package dependencies. Default is to generate Makefile structure based on Autotools with the standard targets and configuration scripts."));
Console.WriteLine ();
- Console.WriteLine (" -d:default-config\n\tConfiguration that the Makefile will build by default. Other configurations can be selected via the '--config' or '--enable-*' option of the generated configure script.");
+ Console.WriteLine (GettextCatalog.GetString (" -d:default-config\n\tConfiguration that the Makefile will build by default. Other configurations can be selected via the '--config' or '--enable-*' option of the generated configure script."));
Console.WriteLine ();
}