#!/bin/sh echo "TRANSLATIONS = \\" echo " $1/../../share/locale/instruments_af.ts \\" echo " $1/../../share/locale/instruments_ar.ts \\" echo " $1/../../share/locale/instruments_ast.ts \\" echo " $1/../../share/locale/instruments_be.ts \\" echo " $1/../../share/locale/instruments_bg.ts \\" echo " $1/../../share/locale/instruments_ca.ts \\" echo " $1/../../share/locale/instruments_ca@valencia.ts \\" echo " $1/../../share/locale/instruments_cs.ts \\" echo " $1/../../share/locale/instruments_da.ts \\" echo " $1/../../share/locale/instruments_de.ts \\" echo " $1/../../share/locale/instruments_el.ts \\" echo " $1/../../share/locale/instruments_en_GB.ts \\" echo " $1/../../share/locale/instruments_en_US.ts \\" echo " $1/../../share/locale/instruments_eo.ts \\" echo " $1/../../share/locale/instruments_es.ts \\" echo " $1/../../share/locale/instruments_et.ts \\" echo " $1/../../share/locale/instruments_eu.ts \\" echo " $1/../../share/locale/instruments_fa.ts \\" echo " $1/../../share/locale/instruments_fi.ts \\" echo " $1/../../share/locale/instruments_fo.ts \\" echo " $1/../../share/locale/instruments_fr.ts \\" echo " $1/../../share/locale/instruments_gl.ts \\" echo " $1/../../share/locale/instruments_he.ts \\" echo " $1/../../share/locale/instruments_hi_IN.ts \\" echo " $1/../../share/locale/instruments_hr.ts \\" echo " $1/../../share/locale/instruments_hu.ts \\" echo " $1/../../share/locale/instruments_id.ts \\" echo " $1/../../share/locale/instruments_it.ts \\" echo " $1/../../share/locale/instruments_ja.ts \\" echo " $1/../../share/locale/instruments_ka.ts \\" echo " $1/../../share/locale/instruments_ko.ts \\" echo " $1/../../share/locale/instruments_lt.ts \\" echo " $1/../../share/locale/instruments_lv.ts \\" echo " $1/../../share/locale/instruments_mn_MN.ts \\" echo " $1/../../share/locale/instruments_nl.ts \\" echo " $1/../../share/locale/instruments_nb.ts \\" echo " $1/../../share/locale/instruments_nn.ts \\" echo " $1/../../share/locale/instruments_pl.ts \\" echo " $1/../../share/locale/instruments_pt.ts \\" echo " $1/../../share/locale/instruments_pt_BR.ts \\" echo " $1/../../share/locale/instruments_ro.ts \\" echo " $1/../../share/locale/instruments_ru.ts \\" echo " $1/../../share/locale/instruments_sk.ts \\" echo " $1/../../share/locale/instruments_sl.ts \\" echo " $1/../../share/locale/instruments_sr.ts \\" echo " $1/../../share/locale/instruments_sv.ts \\" echo " $1/../../share/locale/instruments_th.ts \\" echo " $1/../../share/locale/instruments_tr.ts \\" echo " $1/../../share/locale/instruments_uk.ts \\" echo " $1/../../share/locale/instruments_uz@Latn.ts \\" echo " $1/../../share/locale/instruments_vi.ts \\" echo " $1/../../share/locale/instruments_zh_CN.ts \\" echo " $1/../../share/locale/instruments_zh_TW.ts" echo "FORMS = \\" uis=`find $1 -name "*.h"` for a in $uis; do echo " " $a \\; done echo echo