~gtg-user/gtg/port-to-gtk3

« back to all changes in this revision

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

  • Committer: Izidor Matušov
  • Date: 2012-12-14 13:53:48 UTC
  • mfrom: (1240.1.17 trunk)
  • Revision ID: izidor.matusov@gmail.com-20121214135348-q7wn21y464xb1q2x
Merging trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
"""
22
22
import os
23
23
 
24
 
from GTG    import _
 
24
from GTG import _
25
25
 
26
26
 
27
27
class GnomeConfig:
28
28
    current_rep = os.path.dirname(os.path.abspath(__file__))
29
 
    EDITOR_UI_FILE  = os.path.join(current_rep, "taskeditor.ui")
 
29
    EDITOR_UI_FILE = os.path.join(current_rep, "taskeditor.ui")
30
30
 
31
31
    MARK_DONE = _("Mark as Done")
32
32
    MARK_UNDONE = _("Mark as not Done")