File indexing completed on 2024-11-17 04:09:52
0001 #!/bin/bash 0002 0003 ./l10n-fetch-po-files.py 0004 0005 # only ship listed tranlations 0006 mkdir po_all 0007 mv po/* po_all 0008 for tr in ca ca@valencia de en_GB fr nl pl pt pt_BR sv uk 0009 do 0010 file=kst_common_$tr.po 0011 echo "using translation $tr" 0012 cp po_all/$file po 0013 done 0014