gtg team mailing list archive
-
gtg team
-
Mailing list archive
-
Message #03937
[Merge] lp:~sushantthecoder/gtg/bug-fix into lp:gtg
Sushant Raikar has proposed merging lp:~sushantthecoder/gtg/bug-fix into lp:gtg.
Requested reviews:
Gtg developers (gtg)
For more details, see:
https://code.launchpad.net/~sushantthecoder/gtg/bug-fix/+merge/208202
Bug description
Steps to reproduce:
1. Select task in taskview
2. Click "Mark as done" icon
3. Mouseover "Mark as done" icon
expected result: mouseover text should have changed from "Mark the selected task as done" to "Mark the selected task as not done" (for example).
actual result: mouseover text remains unchanged.
Bug Location
/GTG/gtk/__init__.py
Bug Fix
MARK_UNDONE_TOOLTIP "Mark the selected task as not done"
--
https://code.launchpad.net/~sushantthecoder/gtg/bug-fix/+merge/208202
Your team Gtg developers is requested to review the proposed merge of lp:~sushantthecoder/gtg/bug-fix into lp:gtg.
=== modified file 'AUTHORS'
--- AUTHORS 2014-02-25 04:53:57 +0000
+++ AUTHORS 2014-02-25 18:26:13 +0000
@@ -130,3 +130,4 @@
----------
* Pawan Hegde <h.pawan@xxxxxxxxx>
* Sagar Ghuge <ghugesss@xxxxxxxxx>
+* Sushant Raikar <sushantthecoder@xxxxxxxxx>
=== modified file 'CHANGELOG'
--- CHANGELOG 2014-02-24 05:56:32 +0000
+++ CHANGELOG 2014-02-25 18:26:13 +0000
@@ -1,4 +1,5 @@
????-??-?? Getting Things GNOME! 0.3.2
+ * Fix for bug #1033268: Mouseover String Incorrect, by Sushant Raikar
* Fix for bug #1261456: Adding a tag with '&' causes ExpatError, by Parin Porecha
* Fix for bug #1222976: Can't clear a search, by Nimit Shah
* Fix for bug #1264846: GTG crashes on exit when bugzilla plugin is enabled and pynotify is not installed, by Parin Porecha
=== modified file 'GTG/gtk/browser/__init__.py'
--- GTG/gtk/browser/__init__.py 2013-11-25 02:37:46 +0000
+++ GTG/gtk/browser/__init__.py 2014-02-25 18:26:13 +0000
@@ -39,7 +39,7 @@
MARK_DONE = _("Mark as Done")
MARK_DONE_TOOLTIP = _("Mark the selected task as done")
MARK_UNDONE = _("Mark as not Done")
- MARK_UNDONE_TOOLTIP = _("Mark the selected task as to be done")
+ MARK_UNDONE_TOOLTIP = _("Mark the selected task as not done")
MARK_DISMISS = _("Dismiss")
MARK_DISMISS_TOOLTIP = _("Mark the task as not to be done anymore")
MARK_UNDISMISS = _("Undismiss")
Follow ups