We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d57231 commit 89b3d0eCopy full SHA for 89b3d0e
.github/workflows/translation-check.yml
@@ -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