Skip to content

Commit f6bc9f4

Browse files
committed
remove pointless internal_error term
1 parent b2839ca commit f6bc9f4

File tree

4 files changed

+1
-6
lines changed

4 files changed

+1
-6
lines changed

core/translation.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,8 +403,6 @@ class Terms:
403403

404404
no_more_test_inputs = "No more test inputs - solution should have finished by now"
405405

406-
internal_error = "Internal error"
407-
408406
syntax_error_at_line = "at line"
409407

410408

core/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ def internal_error_result(e: Exception):
294294
return dict(
295295
error=dict(
296296
details=safe_traceback(e),
297-
title=f"{t.Terms.internal_error}: {truncate_string(exception_string, 100)}",
297+
title=f"{truncate_string(exception_string, 100)}",
298298
sentry_event=get_exception_event(),
299299
),
300300
)

translations/english.po

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20009,9 +20009,6 @@ msgstr "With your code in the editor, click the `snoop` button."
2000920009
msgid "misc_terms.incorrect_mode"
2001020010
msgstr "The code is correct, but you didn't run it as instructed."
2001120011

20012-
msgid "misc_terms.internal_error"
20013-
msgstr "Internal error"
20014-
2001520012
msgid "misc_terms.invalid_inputs"
2001620013
msgstr "The values of your input variables are invalid, try using values like the example."
2001720014

-57 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)