[tasque] Fix "ITask" strings



commit 72def2a7826d319d0731e10530281742685c8942
Author: Antonius Riha <antoniusriha gmail com>
Date:   Mon Jun 3 19:27:14 2013 +0200

    Fix "ITask" strings

 src/Gtk.Tasque/GtkTray.cs           |    6 +++---
 src/Gtk.Tasque/PreferencesDialog.cs |    6 +++---
 src/Gtk.Tasque/TaskWindow.cs        |    7 +++----
 3 files changed, 9 insertions(+), 10 deletions(-)
---
diff --git a/src/Gtk.Tasque/GtkTray.cs b/src/Gtk.Tasque/GtkTray.cs
index 9901ff1..916c073 100644
--- a/src/Gtk.Tasque/GtkTray.cs
+++ b/src/Gtk.Tasque/GtkTray.cs
@@ -144,7 +144,7 @@ namespace Gtk.Tasque
                        about.Version = Defines.Version;
                        about.Logo = Utilities.GetIcon("tasque", 48);
                        about.Copyright = Defines.CopyrightInfo;
-                       about.Comments = Catalog.GetString ("A Useful ITask List");
+                       about.Comments = Catalog.GetString ("A Useful Task List");
                        about.Website = Defines.Website;
                        about.WebsiteLabel = Catalog.GetString("Tasque Project Homepage");
                        about.Authors = authors;
@@ -158,7 +158,7 @@ namespace Gtk.Tasque
                void RegisterUIManager ()
                {
                        var newTaskAction = new ActionEntry ("NewTaskAction", Stock.New,
-                           Catalog.GetString ("New ITask ..."), null, null, delegate {
+                           Catalog.GetString ("New Task ..."), null, null, delegate {
                                // Show the TaskWindow and then cause a new task to be created
                                TaskWindow.ShowWindow (application);
                                TaskWindow.GrabNewTaskEntryFocus (application);
@@ -181,7 +181,7 @@ namespace Gtk.Tasque
                                                 delegate { application.Exit (); })
                        });
                        
-                       ToggleTaskWindowAction = new Gtk.Action ("ToggleTaskWindowAction", Catalog.GetString 
("Toggle ITask Window"));
+                       ToggleTaskWindowAction = new Gtk.Action ("ToggleTaskWindowAction", Catalog.GetString 
("Toggle Task Window"));
                        ToggleTaskWindowAction.ActionGroup = trayActionGroup;
                        ToggleTaskWindowAction.Activated += delegate { TaskWindow.ToggleWindowVisible 
(application); };
                        
diff --git a/src/Gtk.Tasque/PreferencesDialog.cs b/src/Gtk.Tasque/PreferencesDialog.cs
index 0cfa8b5..127086d 100644
--- a/src/Gtk.Tasque/PreferencesDialog.cs
+++ b/src/Gtk.Tasque/PreferencesDialog.cs
@@ -246,7 +246,7 @@ namespace Gtk.Tasque
                        VBox sectionVBox = new VBox (false, 4);
                        Label l = new Label ();
                        l.Markup = string.Format ("<span size=\"large\" weight=\"bold\">{0}</span>",
-                                                                         Catalog.GetString ("ITask 
Management System"));
+                                                                         Catalog.GetString ("Task Management 
System"));
                        l.UseUnderline = false;
                        l.UseMarkup = true;
                        l.Wrap = false;
@@ -288,7 +288,7 @@ namespace Gtk.Tasque
                        sectionVBox = new VBox (false, 4);
                        l = new Label ();
                        l.Markup = string.Format ("<span size=\"large\" weight=\"bold\">{0}</span>",
-                                                                         Catalog.GetString ("ITask 
Filtering"));
+                                                                         Catalog.GetString ("Task 
Filtering"));
                        l.UseUnderline = false;
                        l.UseMarkup = true;
                        l.Wrap = false;
@@ -334,7 +334,7 @@ namespace Gtk.Tasque
                        l.MnemonicWidget = taskListsTree;
                        
                        Gtk.TreeViewColumn column = new Gtk.TreeViewColumn ();
-                       column.Title = Catalog.GetString ("ITask List");
+                       column.Title = Catalog.GetString ("Task List");
                        column.Sizing = Gtk.TreeViewColumnSizing.Autosize;
                        column.Resizable = false;
                        
diff --git a/src/Gtk.Tasque/TaskWindow.cs b/src/Gtk.Tasque/TaskWindow.cs
index 3b35163..bc29cec 100644
--- a/src/Gtk.Tasque/TaskWindow.cs
+++ b/src/Gtk.Tasque/TaskWindow.cs
@@ -173,8 +173,7 @@ namespace Gtk.Tasque
                        l.Show ();
                        buttonHBox.PackStart (l, true, true, 0);
                        buttonHBox.Show ();
-                       addTaskButton = 
-                               new MenuToolButton (buttonHBox, Catalog.GetString ("_Add ITask"));
+                       addTaskButton = new MenuToolButton (buttonHBox, Catalog.GetString ("_Add Task"));
                        addTaskButton.UseUnderline = true;
                        // Disactivate the button until the backend is initialized
                        addTaskButton.Sensitive = false;
@@ -784,7 +783,7 @@ namespace Gtk.Tasque
                                TaskWindow.ShowStatus (status);
                        } else {
                                // Show successful status
-                               status = Catalog.GetString ("ITask created successfully");      
+                               status = Catalog.GetString ("Task created successfully");
                                TaskWindow.ShowStatus (status);
                                // Clear out the entry
                                addTaskEntry.Text = string.Empty;
@@ -1170,7 +1169,7 @@ namespace Gtk.Tasque
                                l => !(l.ListType == TaskListType.Smart) && l.Contains (clickedTask));
                        taskList.Remove (clickedTask);
                        
-                       status = Catalog.GetString ("ITask deleted");
+                       status = Catalog.GetString ("Task deleted");
                        TaskWindow.ShowStatus (status);
                }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]