Skip to content

Commit 89b3d0e

Browse files
authored
Add basic translation verification check (#2338)
1 parent 7d57231 commit 89b3d0e

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Verify translations
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
paths:
7+
- 'src/res/translation/'
8+
9+
jobs:
10+
translation-check:
11+
name: Verify translation
12+
permissions:
13+
contents: read
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Checkout Code
17+
uses: actions/checkout@v2
18+
- name: "Check Windows installer translations"
19+
run: ./tools/check-wininstaller-translations.sh
20+
- name: "Check for duplicate hotkeys (will not fail)"
21+
run: sudo apt install libxml-simple-perl && perl ./tools/checkkeys.pl

0 commit comments

Comments
 (0)