mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 02:36:34 +01:00
[Scripts] generate-translations now generate also .qrc lines
This commit is contained in:
parent
5e4f703ef2
commit
d8f71fad8b
@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
#
|
||||
# Generates list of all translations for qmake .pro
|
||||
# Generates list of all translations for qmake .pro and .qrc files
|
||||
|
||||
# Plugins translations
|
||||
PLUGINS="`ls -d ../src/plugins/*/translations`"
|
||||
@ -16,6 +16,14 @@ do
|
||||
echo " `echo $translation | awk 'BEGIN{FS="/"}{printf "%s/%s",$5,$6}'` \\"
|
||||
done
|
||||
|
||||
echo -e "\n"
|
||||
|
||||
for translation in $dir/*.ts
|
||||
do
|
||||
[[ "$translation" == *empty.ts ]] && continue
|
||||
echo " <file>locale/`echo $translation | awk 'BEGIN{FS="/"}{print substr($6,0,length($6)-2)}'`.qm</file>"
|
||||
done
|
||||
|
||||
echo -e "\n\n"
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user