Migrate dev:fix-translation-conflicts to dev:fix-translations in standalone script

This commit is contained in:
Claudio Ortolina
2025-10-07 10:03:01 +03:00
parent 9542421229
commit d0b2022d2e
2 changed files with 11 additions and 7 deletions
-7
View File
@@ -47,13 +47,6 @@ run = 'mix test'
description = 'Preview the README file via a GH flavoured markdown rendered'
run = 'gh gfm-preview README.md'
[tasks."dev:fix-translations-conflict"]
run = [
'git co --theirs priv/gettext/default.pot',
'git co --theirs priv/gettext/en/LC_MESSAGES/default.po',
'mix gettext.extract --merge',
]
# DOCKER
[tasks."docker:build"]
+11
View File
@@ -0,0 +1,11 @@
#!/usr/bin/env bash
#MISE description="Fix translation file conflicts"
set -e
git co --theirs priv/gettext/default.pot
git co --theirs priv/gettext/en/LC_MESSAGES/default.po
mix gettext.extract --merge