mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2024-11-11 02:10:11 +01:00
11 lines
246 B
Bash
11 lines
246 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
translation_key="pdfToPDFA.credit"
|
||
|
old_value="OCRmyPDF"
|
||
|
new_value="ghostscript"
|
||
|
|
||
|
for file in ../src/main/resources/messages_*.properties; do
|
||
|
sed -i "/^$translation_key=/s/$old_value/$new_value/" "$file"
|
||
|
echo "Updated $file"
|
||
|
done
|