mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-26 15:06:08 +03:00
Merge pull request #5351 from nextcloud/checkTranslations
check German translation for wrong wording
This commit is contained in:
commit
16612d7a69
1 changed files with 18 additions and 0 deletions
18
.github/workflows/check-translations.yml
vendored
Normal file
18
.github/workflows/check-translations.yml
vendored
Normal file
|
@ -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
|
Loading…
Reference in a new issue