Warning, file /education/gcompris/src/Messages.sh was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 #!/bin/sh
0002 #=============================================================================
0003 # SPDX-FileCopyrightText: 2014 Bruno Coudoin <bruno.coudoin@gcompris.net>
0004 #
0005 # SPDX-License-Identifier: GPL-3.0-or-later
0006 #=============================================================================
0007 # Extract strings from all source files.
0008 # EXTRACT_TR_STRINGS extracts strings with lupdate and convert them to .pot with
0009 # lconvert.
0010 $EXTRACT_TR_STRINGS `find . -name \*.cpp -o -name \*.h -o -name \*.qml -o -name \*.js` -o $podir/gcompris_qt.pot
0011 
0012 # create a pot for the voices text to keep them up-to-date with the audio files
0013 find . -name ActivityInfo.qml -not -path "*template*" -exec awk -f activityintro2msg.awk {} \; > rc.cpp
0014 $XGETTEXT rc.cpp -o $podir/gcompris_voices.pot
0015 rm rc.cpp
0016