summaryrefslogtreecommitdiff
path: root/build/po_functions
blob: 8079ddb7b84c411547a6a748fe4cc048db66756a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Routines used to build manual translations from po-files

update_templates () {
    echo "Generating integrated XML files and POT files"
    bash -c "cd .. ; ./scripts/merge_xml en"
    RET=$?; [ $RET -ne 0 ] && exit 1 || true
    bash -c "cd .. ; ./scripts/update_pot"
    RET=$?; [ $RET -ne 0 ] && exit 1 || true
}

# Check whether language uses PO files for translation
check_po () {
    USES_PO=""
    if [ -d "../po/$lang" ] ; then
        if [ -d "../$lang/.svn" ] ; then
            echo "Warning: both PO files and XML files are present; ignoring PO files"
        else
            USES_PO="1"
            if [ -d "../$lang/" ] ; then
                echo "Info: cleaning old XML files"
                rm -r ../$lang/
            fi
        fi
    fi
}

generate_xml () {
    sh -c "cd ..; ./scripts/update_po $lang"
    RET=$?; [ $RET -ne 0 ] && return $RET || true

    sh -c "cd ..; ./scripts/create_xml $lang"
    RET=$?; [ $RET -ne 0 ] && return $RET || true

    echo "Info: generation of XML files complete"
    return 0
}

clear_po () {
    rm -rf ./build.po
}