Skip to content

Commit af187a9

Browse files
author
olgakup
committed
devop: revert workflow
1 parent c56571e commit af187a9

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/crowdin.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
push:
55
branches:
66
- main
7-
- fix/after-localizations
87

98
jobs:
109
synchronize-with-crowdin:
@@ -25,7 +24,7 @@ jobs:
2524
create_pull_request: true
2625
pull_request_title: 'New Crowdin Translations'
2726
pull_request_body: 'New Crowdin translations by [Crowdin GH Action](https://github.com/crowdin/github-action)'
28-
pull_request_base_branch_name: 'fix/after-localizations'
27+
pull_request_base_branch_name: 'main'
2928
env:
3029
# A classic GitHub Personal Access Token with the 'repo' scope selected (the user should have write access to the repository).
3130
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

src/App.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ type useI18nParams = {
172172
173173
const openSubscirbe = ref(true);
174174
const useI18n = (param: useI18nParams) => {
175-
const _locale = param.locale || "ko";
175+
const _locale = param.locale || "zh";
176176
const t = (key: string) => {
177177
if (key.includes(".")) {
178178
const keyOne = key.split(".").shift();

0 commit comments

Comments
 (0)