~nmu-sscheel/gtg/rework-task-editor

« back to all changes in this revision

Viewing changes to GTG/gtk/browser/__init__.py

  • Committer: Bertrand Rousseau
  • Date: 2012-05-09 22:33:25 UTC
  • mfrom: (1178 trunk)
  • mto: This revision was merged to the branch mainline in revision 1179.
  • Revision ID: bertrand.rousseau@gmail.com-20120509223325-a53d8nwo0x9g93bc
Merge nimit branch and trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
"""
25
25
import os
26
26
 
27
 
from GTG     import _
 
27
from GTG import _
28
28
 
29
29
 
30
30
class GnomeConfig:
31
31
    current_rep = os.path.dirname(os.path.abspath(__file__))
32
32
    GLADE_FILE  = os.path.join(current_rep, "taskbrowser.glade")
 
33
    MODIFYTAGS_GLADE_FILE  = os.path.join(current_rep, "modifytags_dialog.glade")
 
34
    TAGEDITOR_GLADE_FILE  = os.path.join(current_rep, "tageditor.glade")
33
35
 
34
 
    MARK_DONE               = _("Mark as done")
 
36
    MARK_DONE               = _("Mark as Done")
35
37
    MARK_DONE_TOOLTIP       = _("Mark the selected task as done")
36
 
    MARK_UNDONE             = _("Mark as not done")
 
38
    MARK_UNDONE             = _("Mark as not Done")
37
39
    MARK_UNDONE_TOOLTIP     = _("Mark the selected task as to be done")
38
40
    MARK_DISMISS            = _("Dismiss")
39
41
    MARK_DISMISS_TOOLTIP    = _("Mark the task as not to be done anymore")