summaryrefslogtreecommitdiffstats
path: root/peekaboo/sample.py
diff options
context:
space:
mode:
Diffstat (limited to 'peekaboo/sample.py')
-rw-r--r--peekaboo/sample.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/peekaboo/sample.py b/peekaboo/sample.py
index b433752..7cb9f03 100644
--- a/peekaboo/sample.py
+++ b/peekaboo/sample.py
@@ -494,8 +494,9 @@ class Sample(object):
"""
logger.debug("Submitting %s to Cuckoo", self.__submit_path)
self.__cuckoo_job_id = self.__cuckoo.submit(self)
- self.__internal_report.append('Erfolgreich an Cuckoo gegeben %s als '
- 'Job %d' % (self, self.__cuckoo_job_id))
+ self.__internal_report.append(
+ _('Sample %s successfully submitted to Cuckoo as job %d')
+ % (self, self.__cuckoo_job_id))
return self.__cuckoo_job_id
def register_cuckoo_report(self, report):