summaryrefslogtreecommitdiff
path: root/hacks/check_i18n
blob: d0c7edee8e2a8e8255af9562dc5828f6ab396189 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

mkdir -p errors

pofilter -i src/lib/po -o errors/lib --nofuzzy \
    -t escapes -t nplurals -t printf -t pythonbraceformat -t variables -t xmltags \
    -t accelerators

pofilter -i src/wx/po -o errors/wx --nofuzzy \
    -t escapes -t nplurals -t printf -t pythonbraceformat -t variables -t xmltags \
    -t accelerators

pofilter -i src/tools/po -o errors/tools --nofuzzy \
    -t escapes -t nplurals -t printf -t pythonbraceformat -t variables -t xmltags \
    -t accelerators