ソースを参照

check German translation for wrong wording

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
tobiasKaminsky 3 年 前
コミット
711db94590
1 ファイル変更18 行追加0 行削除
  1. 18 0
      .github/workflows/check-translations.yml

+ 18 - 0
.github/workflows/check-translations.yml

@@ -0,0 +1,18 @@
+name: "Check translations"
+
+on:
+  pull_request:
+    branches: [ master, stable-* ]
+
+# Declare default permissions as read only.
+permissions: read-all
+
+jobs:
+  checkTranslations:
+    runs-on: ubuntu-latest
+    
+    steps:
+      -   uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3
+      -   name: Check German
+          run: |
+            [[ $(grep "Benötigt keine Übersetzung" translations/client_de.ts -c) -gt 0 ]] && exit 1 || exit 0