#!/bin/sh # $Id$ # Copy and rename message.pot files, according to their source and pack it # Inspired with l10n-prepare.pl Vedran Ljubovic wrote for EDE 1.x # # Copyright (c) 2005 Vedran Ljubovic # Copyright (c) 2008 Sanel Zukan # License as usually, the same as the rest of EDE parts... pots="ede-@EDE_VERSION@-l10n" directories=" ede-about ede-calc ecolorconf ede-conf ede-crasher ede-desktop-conf edewm edialog edisplayconf efiler efinder ede-help ede-desktop eimage einstaller ekeyconf elauncher elma emenueditor emountd epanelconf ede-screensaver-conf ede-timedate ede-tip evoke evolume ewmconf eworkpanel exset" [ -d $pots ] && rm -R $pots mkdir $pots for i in $directories; do printf "Processing %-25s" "$i..." if [ -r "../$i/locale/messages.pot" ]; then cp "../$i/locale/messages.pot" "$pots/$i.pot" echo "OK" else echo "Not found" fi done cat >$pots/README <