mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
c1bac5cd3c
Also removed old unused scripts
20 lines
411 B
Bash
Executable File
20 lines
411 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Generates list of all plugins translations for qmake .pro
|
|
|
|
PLUGINS=`ls -d ../src/plugins/*/translations`
|
|
|
|
for dir in $PLUGINS
|
|
do
|
|
echo -e "$dir\n"
|
|
echo "TRANSLATIONS += \\"
|
|
|
|
for translation in $dir/*.ts
|
|
do
|
|
[[ "$translation" == *empty.ts ]] && continue
|
|
echo " `echo $translation | awk 'BEGIN{FS="/"}{printf "%s/%s",$5,$6}'` \\"
|
|
done
|
|
|
|
echo -e "\n\n"
|
|
done
|