diff options
author | EuAndreh <eu@euandre.org> | 2022-01-15 20:47:18 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-01-15 20:55:51 -0300 |
commit | 31a7db5bf25c411c61ded0e9de8bc65e9cd2611e (patch) | |
tree | fd7c5e94449592ce72ca0870eb104387fb21c9f9 /po/extract-strings.sh | |
parent | Makefile: Remove makefile.svg (diff) | |
download | git-permalink-31a7db5bf25c411c61ded0e9de8bc65e9cd2611e.tar.gz git-permalink-31a7db5bf25c411c61ded0e9de8bc65e9cd2611e.tar.xz |
Translate and ship strings in src/locale/*.txt
Diffstat (limited to 'po/extract-strings.sh')
-rwxr-xr-x | po/extract-strings.sh | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/po/extract-strings.sh b/po/extract-strings.sh deleted file mode 100755 index 097cdda..0000000 --- a/po/extract-strings.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/sh -set -eu - -awk ' -/^# End translatable strings$/ { exit } - -{ lines[i++] = $0 } - -END { - for (l = 0; l < i - 2; l++) { - if (l == 1) { - print "# shellcheck disable=2034" - } - print lines[l] - } -} -' |