Warning, file /frameworks/plasma-framework/autotests/i18ndcheck.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 #If this test fails it means you are probably using i18n() in your QML code 0004 #This should be replaced by i18nd in order to for i18n to load the correct catalog 0005 0006 #First arg should be the directory to check 0007 0008 ! find "$1" -name '*.qml' -print0 | xargs -0 grep 'i18n[^d]*(' 0009