Skip to content

Commit 75b419b

Browse files
authored
Merge pull request #83 from topcoder-platform/TCA-467_submit-btn-label-fix
TCA-467 - fix label for submit button
2 parents 5b15282 + 7d2bf98 commit 75b419b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

client/i18n/locales/english/translations.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"reset-lesson": "Reset this lesson",
5151
"run": "Run",
5252
"run-test": "Run the Tests (Ctrl + Enter)",
53+
"run-test-2": "Run the Tests",
5354
"check-code": "Check Your Code (Ctrl + Enter)",
5455
"check-code-2": "Check Your Code",
5556
"reset": "Reset",

client/src/templates/Challenges/projects/backend/Show.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ class BackEnd extends Component<BackEndProps> {
219219

220220
const isChallengeComplete = tests.every(test => test.pass && !test.err);
221221
const submitBtnLabel: string = !isChallengeComplete
222-
? `${t('buttons.run-test')}${testsRunning ? ' ...' : ''}`
222+
? `${t('buttons.run-test-2')}${testsRunning ? ' ...' : ''}`
223223
: t('buttons.submit-and-go');
224224

225225
const blockNameTitle = `${t(

0 commit comments

Comments
 (0)