diff --git a/pocsuite3/plugins/html_report.py b/pocsuite3/plugins/html_report.py
index b887ba83..2b60b409 100644
--- a/pocsuite3/plugins/html_report.py
+++ b/pocsuite3/plugins/html_report.py
@@ -90,9 +90,9 @@ def _writer_footer(self):
'function copyAll() {'
'var targetValue = $("#all-target").val();'
'navigator.clipboard.writeText(targetValue).then(function() {'
- 'alert("复制成功");'
+ 'alert("Copy Successful");'
'}, function(err) {'
- 'alert("复制失败");'
+ 'alert("Copy failed");'
'});'
'}'
'')
@@ -100,9 +100,9 @@ def _writer_footer(self):
'function copySuc() {'
'var targetValue = $("#suc-target").val();'
'navigator.clipboard.writeText(targetValue).then(function() {'
- 'alert("复制成功");'
+ 'alert("Copy successful");'
'}, function(err) {'
- 'alert("复制失败");'
+ 'alert("Copy failed");'
'});'
'}'
'')