Subversion Repositories public

Rev

Rev 251 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 251 Rev 286
Line 6... Line 6...
6
 
6
 
7
 
7
 
8
echo "Preparing rc files"
8
echo "Preparing rc files"
9
cd ${BASEDIR}
9
cd ${BASEDIR}
10
# we use simple sorting to make sure the lines do not jump around too much from system to system
10
# we use simple sorting to make sure the lines do not jump around too much from system to system
11
## find . -name '*.rc' -o -name '*.ui' -o -name '*.kcfg' | sort > ${WDIR}/rcfiles.list
11
find ${BASEDIR} -name '*.ui' -o -name '*.kcfg' | sort > ${WDIR}/rcfiles.list
12
xargs --arg-file=${WDIR}/rcfiles.list extractrc > ${WDIR}/rc.cpp
12
xargs --arg-file=${WDIR}/rcfiles.list extractrc > ${WDIR}/rc.cpp
13
# additional string for KAboutData
13
# additional string for KAboutData
14
echo 'i18nc("NAME OF TRANSLATORS","Andreas Theofilu");' >> ${WDIR}/rc.cpp
14
echo 'i18nc("NAME OF TRANSLATORS","Andreas Theofilu");' >> ${WDIR}/rc.cpp
15
echo 'i18nc("EMAIL OF TRANSLATORS","andreas@theosys.at");' >> ${WDIR}/rc.cpp
15
echo 'i18nc("EMAIL OF TRANSLATORS","andreas@theosys.at");' >> ${WDIR}/rc.cpp
16
cd ${WDIR}
16
cd ${WDIR}