aboutsummaryrefslogtreecommitdiffstats
path: root/po/update.sh
diff options
context:
space:
mode:
authorKjartan Maraas <kmaraas@gnome.org>2001-01-18 16:32:42 +0800
committerKjartan Maraas <kmaraas@src.gnome.org>2001-01-18 16:32:42 +0800
commit4d018f0cee29b58508270d65bced167052afc380 (patch)
tree04e751292df16d7482d1141eeee3767018a60bba /po/update.sh
parentcca1d258d390a6e945b2908539e2e73064a890d6 (diff)
downloadgsoc2013-evolution-4d018f0cee29b58508270d65bced167052afc380.tar
gsoc2013-evolution-4d018f0cee29b58508270d65bced167052afc380.tar.gz
gsoc2013-evolution-4d018f0cee29b58508270d65bced167052afc380.tar.bz2
gsoc2013-evolution-4d018f0cee29b58508270d65bced167052afc380.tar.lz
gsoc2013-evolution-4d018f0cee29b58508270d65bced167052afc380.tar.xz
gsoc2013-evolution-4d018f0cee29b58508270d65bced167052afc380.tar.zst
gsoc2013-evolution-4d018f0cee29b58508270d65bced167052afc380.zip
Updated Norwegian (bokmål) translation. Removed old script.
2001-01-18 Kjartan Maraas <kmaraas@gnome.org> * no.po: Updated Norwegian (bokmål) translation. * update.sh: Removed old script. svn path=/trunk/; revision=7618
Diffstat (limited to 'po/update.sh')
-rwxr-xr-xpo/update.sh42
1 files changed, 0 insertions, 42 deletions
diff --git a/po/update.sh b/po/update.sh
deleted file mode 100755
index 74dca77b27..0000000000
--- a/po/update.sh
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh
-
-PACKAGE="evolution"
-
-if [ "x$1" = "x--help" ]; then
-
-echo Usage: ./update.sh langcode
-echo --help display this help and exit
-echo
-echo Examples of use:
-echo ./update.sh ----- just creates a new pot file from the source
-echo ./update.sh da -- created new pot file and updated the da.po file
-
-elif [ "x$1" = "x" ]; then
-
-echo "Building the $PACKAGE.pot ..."
-
-xgettext --default-domain=$PACKAGE --directory=.. \
- --add-comments --keyword=_ --keyword=N_ \
- --files-from=./POTFILES.in \
-&& test ! -f $PACKAGE.po \
- || ( rm -f ./$PACKAGE.pot \
-&& mv $PACKAGE.po ./$PACKAGE.pot );
-
-else
-
-xgettext --default-domain=$PACKAGE --directory=.. \
- --add-comments --keyword=_ --keyword=N_ \
- --files-from=./POTFILES.in \
-&& test ! -f $PACKAGE.po \
- || ( rm -f ./PACKAGE.pot \
-&& mv $PACKAGE.po ./$PACKAGE.pot );
-
-echo "Building the $PACKAGE.pot ..."
-echo "Now merging $1.po with $PACKAGE.pot, and creating an updated $1.po ..."
-
-mv $1.po $1.po.old && msgmerge $1.po.old $PACKAGE.pot -o $1.po \
-&& rm $1.po.old;
-
-msgfmt --statistics $1.po
-
-fi;