From ae67a77bd95d8a5b2c908c1d9b7861598dd923d9 Mon Sep 17 00:00:00 2001 From: Dunedan Date: Sun, 7 Jul 2024 16:29:40 +0000 Subject: [PATCH] Update translator credits automatically This adds updating the translator credits automatically when updating translations. This has two benefits: 1. Translator credits are up-to-date in SVN-builds, so potential problems will already show up there. 2. One manual step less during a release. Patch by: @Dunedan Accepted by: @Stan Differential Revision: https://code.wildfiregames.com/D5299 This was SVN commit r28143. --- build/jenkins/pipelines/docker-translations.Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/build/jenkins/pipelines/docker-translations.Jenkinsfile b/build/jenkins/pipelines/docker-translations.Jenkinsfile index 7ec83f61d0..4d73879db8 100644 --- a/build/jenkins/pipelines/docker-translations.Jenkinsfile +++ b/build/jenkins/pipelines/docker-translations.Jenkinsfile @@ -50,6 +50,7 @@ pipeline { } sh "python3 source/tools/i18n/cleanTranslationFiles.py" sh "python3 source/tools/i18n/checkDiff.py --verbose" + sh "python3 source/tools/i18n/creditTranslators.py" } } }