mirror of
https://github.com/WeblateOrg/weblate.git
synced 2026-08-01 13:20:10 +08:00
5 lines
121 B
Bash
Executable file
Vendored
5 lines
121 B
Bash
Executable file
Vendored
#!/bin/sh
|
|
|
|
# Example Weblate hook to replace single quotes with ''
|
|
|
|
sed "s/\([^']\|^\)'\([^']\|$\)/\1''\2/g" -i ${1%.po}
|