From 3478c0af6cbecaef6292fe006753658480b696cd Mon Sep 17 00:00:00 2001 From: Joey de l'Arago Date: Mon, 16 Jan 2023 15:56:42 +0100 Subject: [PATCH] Remove unused translation script CURA-9814 --- scripts/translations/extract-tr-strings | 73 ------------------------- 1 file changed, 73 deletions(-) delete mode 100755 scripts/translations/extract-tr-strings 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 <