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:
authorLluis Sanchez <lluis@novell.com>2007-12-04 13:54:45 +0300
committerLluis Sanchez <lluis@novell.com>2007-12-04 13:54:45 +0300
commit1df5a1b3a0cac54171629895d620b4d9cefd228c (patch)
tree6812a1370d44c494f4efef9c84b098c49c1ec905 /main/src/addins/MonoDevelop.Gettext/Commands.cs
parentfb3d82535d1eb51b03b9df5c8c3b24c0e6fa6d92 (diff)
Directory reorganization
svn path=/branches/monodevelop/reorg/; revision=90641
Diffstat (limited to 'main/src/addins/MonoDevelop.Gettext/Commands.cs')
-rw-r--r--main/src/addins/MonoDevelop.Gettext/Commands.cs53
1 files changed, 53 insertions, 0 deletions
diff --git a/main/src/addins/MonoDevelop.Gettext/Commands.cs b/main/src/addins/MonoDevelop.Gettext/Commands.cs
new file mode 100644
index 0000000000..366a30604c
--- /dev/null
+++ b/main/src/addins/MonoDevelop.Gettext/Commands.cs
@@ -0,0 +1,53 @@
+//
+// Commands.cs
+//
+// Author:
+// Rafael 'Monoman' Teixeira
+// David Makovský <yakeen@sannyas-on.net>
+//
+// Copyright (C) 2006 Rafael 'Monoman' Teixeira
+// Copyright (C) 2007 David Makovský
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System;
+using System.Collections;
+using System.IO;
+using MonoDevelop.Core;
+using MonoDevelop.Core.Gui;
+using MonoDevelop.Core.Gui.ProgressMonitoring;
+using MonoDevelop.Projects;
+using MonoDevelop.Components;
+using MonoDevelop.Components.Commands;
+using MonoDevelop.Ide.Gui;
+using MonoDevelop.Ide.Gui.Pads;
+using MonoDevelop.Ide.Gui.Pads.ProjectPad;
+using Gtk;
+
+namespace MonoDevelop.Gettext
+{
+ public enum Commands
+ {
+ AddTranslation,
+ IncludeInTranslation,
+ UpdateTranslations
+ }
+}