summaryrefslogtreecommitdiffstats
path: root/src/Gui/CCReporterDialog.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/Gui/CCReporterDialog.py')
-rw-r--r--src/Gui/CCReporterDialog.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Gui/CCReporterDialog.py b/src/Gui/CCReporterDialog.py
index b83ac61..bae5cf7 100644
--- a/src/Gui/CCReporterDialog.py
+++ b/src/Gui/CCReporterDialog.py
@@ -9,6 +9,7 @@ from CC_gui_functions import *
from CCReport import Report
import CellRenderers
#from CCDumpList import getDumpList, DumpList
+from abrt_utils import _
# FIXME - create method or smth that returns type|editable|content
TYPE = 0
@@ -99,7 +100,7 @@ class ReporterDialog():
for item in self.report:
if item == "Comment":
buff = gtk.TextBuffer()
- buff.set_text("Brief description how to reproduce this or what you did...")
+ buff.set_text(_("Brief description how to reproduce this or what you did..."))
self.tvComment.set_buffer(buff)
continue
if self.report[item][TYPE] != 's':