mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@6304 c8812cc2-4d05-0410-92ff-de0c093fc19c
61 lines
1.4 KiB
Makefile
61 lines
1.4 KiB
Makefile
# Copyright (C) 2004 Jens Oberender <j.obi at troja.net>
|
|
#
|
|
# This file is free software; as a special exception the author gives
|
|
# unlimited permission to copy and/or distribute it, with or without
|
|
# modifications, as long as this notice is preserved.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
#
|
|
# $Id$
|
|
|
|
i18ndir = ${pkgdatadir}/i18n
|
|
|
|
# Note: Whenever nodist_i18n_DATA is modified, the array CFBundleLocalizations
|
|
# in the file ../src/mac/Contents/Info.plist.in must also be updated to match.
|
|
# Remember to leave en in the other list even though it's not in this list :)
|
|
|
|
nodist_i18n_DATA = \
|
|
qgis_cs_CZ.qm \
|
|
qgis_de.qm \
|
|
qgis_es.qm \
|
|
qgis_fr.qm \
|
|
qgis_id.qm \
|
|
qgis_it.qm \
|
|
qgis_ja.qm \
|
|
qgis_lv.qm \
|
|
qgis_nl.qm \
|
|
qgis_pl_PL.qm \
|
|
qgis_pt_BR.qm \
|
|
qgis_ro.qm \
|
|
qgis_ru.qm \
|
|
qgis_sk.qm \
|
|
qgis_sv.qm \
|
|
qgis_lv.qm \
|
|
qgis_vi.qm \
|
|
qgis_zh_CN.qm
|
|
i18n_SOURCES = \
|
|
qgis_cs_CZ.ts \
|
|
qgis_de.ts \
|
|
qgis_es.ts \
|
|
qgis_fr.ts \
|
|
qgis_id.ts \
|
|
qgis_it.ts \
|
|
qgis_ja.ts \
|
|
qgis_lv.ts \
|
|
qgis_nl.ts \
|
|
qgis_pl_PL.ts \
|
|
qgis_pt_BR.ts \
|
|
qgis_ro.ts \
|
|
qgis_ru.ts \
|
|
qgis_sk.ts \
|
|
qgis_sv.ts \
|
|
qgis_lv.ts \
|
|
qgis_vi.ts \
|
|
qgis_zh_CN.ts
|
|
%.qm: %.ts
|
|
cd ..; /bin/sh ./create_qm_files.sh
|
|
|
|
EXTRA_DIST = $(i18n_SOURCES)
|