File: create_qm_files

package info (click to toggle)
kdiff3 0.9.96-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 12,336 kB
  • sloc: cpp: 22,957; makefile: 70; sh: 28
file content (50 lines) | stat: -rw-r--r-- 2,202 bytes parent folder | download
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
41
42
43
44
45
46
47
48
49
50
# Copyright (C) 2009 by Joachim Eibl
# Licence: GPL V2
#   GNU GENERAL PUBLIC LICENSE, Version 2, June 1991
#   This program is free software; you can redistribute it and/or modify
#   it under the terms of the GNU General Public License as published by
#   the Free Software Foundation; either version 2 of the License, or
#   (at your option) any later version.
#
#   This program is distributed in the hope that it will be useful,
#   but WITHOUT ANY WARRANTY; without even the implied warranty of
#   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#   GNU General Public License for more details.
#
#   You should have received a copy of the GNU General Public License
#   along with this program; if not, write to the Free Software
#   Foundation, Inc., 51 Franklin Steet, Fifth Floor, Boston, MA  02111-1307  USA
#
#   For details see file "COPYING".

# create_qm_files: 
# Create translation files needed by qt-only version.
# Requirements: lconvert from qt4 (Thanks to Richard Hoyle for that tip)
#               (previously: msg2qm from qt3-devel-tools)
export LANG=en_US.UTF-8
echo "Create qm files (KDiff3 translation files for the qt-only version)"
if [ "$1" = "local" ]; then
   for i in `ls` ; do
      if [ -s $i/kdiff3.po ]; then
         # (msg2qm is from "qt3-devel-tools"-package.)
         echo Creating ./kdiff3_$i.qm
         #/usr/lib/qt3/bin/msg2qm $i/kdiff3.po kdiff3_$i.qm
         mkdir --parents $INSTALL_ROOT/usr/share/locale/$i/LC_MESSAGES/
         lconvert -if po -of qm -o $INSTALL_ROOT/usr/share/locale/$i/LC_MESSAGES/kdiff3.qm $i/kdiff3.po
      fi
   done
elif [ "$1" = "install" ]; then
   for i in `ls` ; do
      if [ -s $i/kdiff3.po ]; then
         # (msg2qm is from "qt3-devel-tools"-package.)
         echo Installing /usr/share/locale/$i/LC_MESSAGES/kdiff3.qm
         #sudo /usr/lib/qt3/bin/msg2qm $i/kdiff3.po /usr/share/locale/$i/LC_MESSAGES/kdiff3.qm
         mkdir --parents $INSTALL_ROOT/usr/share/locale/$i/LC_MESSAGES/
         lconvert -if po -of qm -o $INSTALL_ROOT/usr/share/locale/$i/LC_MESSAGES/kdiff3.qm $i/kdiff3.po
      fi
   done
else
   echo Usage 1: sh create_qm_files local
   echo Usage 2: sh create_qm_files install
fi