1function get_files
2{
3    echo org.kde.kdenlive.xml
4}
5
6function po_for_file
7{
8    case "$1" in
9       org.kde.kdenlive.xml)
10           echo kdenlive_xml_mimetypes.po
11       ;;
12    esac
13}
14
15function tags_for_file
16{
17    case "$1" in
18       org.kde.kdenlive.xml)
19           echo comment
20       ;;
21    esac
22}
23