diff options
author | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-08-26 10:43:34 +0200 |
---|---|---|
committer | Jiri Moskovcak <jmoskovc@redhat.com> | 2009-08-26 10:43:34 +0200 |
commit | a88dce13d510622dee05e93efb46ff4ec5b72935 (patch) | |
tree | 5159e913ad91b70bb7c57946f4092bd69330f1d9 /src/Gui/CCReporterDialog.py | |
parent | 7b6c533525e26cc3408865f1c90c71882384cf76 (diff) | |
download | abrt-a88dce13d510622dee05e93efb46ff4ec5b72935.tar.gz abrt-a88dce13d510622dee05e93efb46ff4ec5b72935.tar.xz abrt-a88dce13d510622dee05e93efb46ff4ec5b72935.zip |
GUI: added support for gettext (+part of czech translation)
Diffstat (limited to 'src/Gui/CCReporterDialog.py')
-rw-r--r-- | src/Gui/CCReporterDialog.py | 3 |
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': |