mirror of
https://github.com/Frooodle/Stirling-PDF.git
synced 2024-12-21 19:08:24 +01:00
833b3c45c6
* navbar fix multi tool and compress location * release notes and ghostscript removal * cleanups * formatting * update docs * more * more * docs * release bump * Hardening suggestions for Stirling-PDF / ghostscript (#2339) * Protect `readLine()` against DoS * Sanitized user-provided file names in HTTP multipart uploads --------- Co-authored-by: pixeebot[bot] <104101892+pixeebot[bot]@users.noreply.github.com> --------- Co-authored-by: pixeebot[bot] <104101892+pixeebot[bot]@users.noreply.github.com>
11 lines
243 B
Bash
11 lines
243 B
Bash
#!/bin/bash
|
|
|
|
translation_key="pdfToPDFA.credit"
|
|
old_value="qpdf"
|
|
new_value="liibreoffice"
|
|
|
|
for file in ../src/main/resources/messages_*.properties; do
|
|
sed -i "/^$translation_key=/s/$old_value/$new_value/" "$file"
|
|
echo "Updated $file"
|
|
done
|