diff --git a/scripts/translations/extract-tr-strings b/scripts/translations/extract-tr-strings deleted file mode 100755 index 378f50bb40..0000000000 --- a/scripts/translations/extract-tr-strings +++ /dev/null @@ -1,73 +0,0 @@ -#!/bin/sh -# -# This script extracts strings from a set of files using Qt's translation system. -# It then converts the extracted .ts file in a .po file that can be used with -# tools that expect Gettext's po file format. -# -# This script was adapted from extract-tr-strings from KDE's translation scripts. -# extract-tr-strings is Copyright 2014 Aurélien Gateau -set -e - -OLD_PWD=$PWD -cd $(dirname $0) -SCRIPTS_DIR=$PWD -cd $OLD_PWD - -LUPDATE=${LUPDATE:-lupdate} -LCONVERT=${LCONVERT:-lconvert} - -die() { - echo "ERROR: $*" >&2 - exit 1 -} - -usage() { - cat <