aboutsummaryrefslogtreecommitdiff
path: root/po/extract-strings.sh
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xpo/extract-strings.sh17
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]
- }
-}
-'