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