Skip to content

Commit

Permalink
translatable names ale not needed here
Browse files Browse the repository at this point in the history
  • Loading branch information
lindakladivova committed May 6, 2024
1 parent fdabb8e commit 3c7979d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions gui/wxpython/history/tree.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@


# global variables for node types
TIME_PERIOD = _("time_period")
COMMAND = _("command")
TIME_PERIOD = "time_period"
COMMAND = "command"

# global variable for purposes of sorting "No time info" node
OLD_DATE = datetime.datetime(1950, 1, 1).date()
Expand Down
10 changes: 5 additions & 5 deletions python/grass/grassdb/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@


# global status variables
STATUS_ABORTED = _("aborted")
STATUS_FAILED = _("failed")
STATUS_RUNNING = _("running")
STATUS_SUCCESS = _("success")
STATUS_UNKNOWN = _("unknown")
STATUS_ABORTED = "aborted"
STATUS_FAILED = "failed"
STATUS_RUNNING = "running"
STATUS_SUCCESS = "success"
STATUS_UNKNOWN = "unknown"


def get_current_mapset_gui_history_path():
Expand Down

0 comments on commit 3c7979d

Please sign in to comment.