Skip to content

Commit 6adf206

Browse files
committed
improvements
1 parent b3fe0a7 commit 6adf206

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/pull-compliance.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,15 +178,15 @@ jobs:
178178
GOOS: linux
179179
GOARCH: 386
180180

181-
translations:
181+
i18n-check:
182182
runs-on: ubuntu-latest
183183
steps:
184184
- uses: actions/checkout@v4
185185
- uses: actions/setup-go@v5
186186
with:
187187
go-version-file: go.mod
188188
check-latest: true
189-
- run: make check-locales
189+
- run: make i18n-check
190190

191191
docs:
192192
if: needs.files-changed.outputs.docs == 'true' || needs.files-changed.outputs.actions == 'true'

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -903,10 +903,10 @@ i18n-backport:
903903
@echo "Backport translations ..."
904904
$(GO) run tools/i18n/backport.go
905905

906-
.PHONY: i18n-cleanup
907-
i18n-cleanup:
908-
@echo "Checking and Cleanup translations..."
909-
$(GO) run tools/i18n/cleanup.go
906+
.PHONY: i18n-check
907+
i18n-check:
908+
@echo "Checking unused translations..."
909+
$(GO) run tools/i18n/check.go
910910

911911
.PHONY: generate-gitignore
912912
generate-gitignore: ## update gitignore files
File renamed without changes.

0 commit comments

Comments
 (0)