Mercurial > hg > easyhg-kdiff3
view kdiff3/po/create_qm_files @ 113:7bca1f1340f6 tip
Build fixes for Xcode 10 / Qt 5.12
author | Chris Cannam |
---|---|
date | Mon, 17 Dec 2018 11:13:01 +0000 |
parents | 7756588e8519 |
children |
line wrap: on
line source
# 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: qt3-devel-tools 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 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 fi done else echo Usage 1: sh create_qm_files local echo Usage 2: sh create_qm_files install fi