Skip to content

Commit 358d494

Browse files
committed
fix: i18nCancel
1 parent 5e898b3 commit 358d494

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

templates/base/head_script.tmpl

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ If you introduce mistakes in it, Gitea JavaScript code wouldn't run correctly.
4040
copy_success: '{{.locale.Tr "copy_success"}}',
4141
copy_error: '{{.locale.Tr "copy_error"}}',
4242
error_occurred: '{{.locale.Tr "error.occurred"}}',
43-
network_error: '{{.locale.Tr "error.network_error"}}',
43+
cancel: '{{.locale.Tr "cancel"}}',
4444
},
4545
};
4646
{{/* in case some pages don't render the pageData, we make sure it is an object to prevent null access */}}

web_src/js/components/RepoActionView.vue

+3-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</a>
2424
</div>
2525
<button class="ui fluid tiny basic red button" @click="cancelRun()" v-if="runInfo.can_cancel">
26-
Cancel
26+
{{ i18nCancel }}
2727
</button>
2828
</div>
2929
</div>
@@ -68,7 +68,7 @@ import {SvgIcon} from '../svg.js';
6868
import {createApp} from 'vue';
6969
import AnsiToHTML from 'ansi-to-html';
7070
71-
const {csrfToken} = window.config;
71+
const {csrfToken, i18n} = window.config;
7272
7373
const sfc = {
7474
name: 'RepoActionView',
@@ -84,6 +84,7 @@ const sfc = {
8484
data() {
8585
return {
8686
ansiToHTML: new AnsiToHTML({escapeXML: true}),
87+
i18nCancel: i18n.cancel,
8788
8889
// internal state
8990
loading: false,

0 commit comments

Comments
 (0)