Skip to content

Commit

Permalink
fix: translations
Browse files Browse the repository at this point in the history
  • Loading branch information
DeLany123 committed May 24, 2024
1 parent a8216a3 commit 2b09d21
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions frontend/src/assets/lang/app/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@
"failed": "The submission is not passed.",
"downloadZip": "Download all files of this submission as a zip.",
"downloadLog": "Log of check {0}",
"downloadArtifact": "Artifact of check {0}",
"backToSubmissions": "Back to submissions",
"hoverText": {
"allChecksFailed": "Structure and extra checks failed",
Expand Down
1 change: 1 addition & 0 deletions frontend/src/assets/lang/app/nl.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@
"failed": "De indiening is mislukt.",
"downloadZip": "Download alle bestanden als zip.",
"downloadLog": "Log bestand van check {0}",
"downloadArtifact": "Artefact van check {0}",
"backToSubmissions": "Terug naar indieningen",
"hoverText": {
"allChecksFailed": "Structuur en extra checks gefaald",
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/views/submissions/SubmissionView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -144,13 +144,13 @@ watchImmediate(
:title="t('views.submissions.downloadLog', [index + 1])"
:href="log"
:key="index"
v-for="[index, log] in logs"
v-for="(log, index) in logs"
/>
<DownloadCard
:title="t('views.submissions.downloadArtifact', [index + 1])"
:href="artifact"
:key="index"
v-for="[index, artifact] in artifacts"
v-for="(artifact, index) in artifacts"
/>
</div>
</template>
Expand Down

0 comments on commit 2b09d21

Please sign in to comment.