File: install_po_files.sh

package info (click to toggle)
rabbitvcs 0.19-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,016 kB
  • sloc: python: 22,825; xml: 11,999; objc: 414; sh: 66; makefile: 3
file content (11 lines) | stat: -rwxr-xr-x 247 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

# Converts all the po source files into mo binary files and installs them in 
# the correct location

for i in `ls ../po/*.po`;
do
    filename=`basename $i`
    locale=`echo ${filename%.*}`
    ./install_translation.sh $locale $i
done