Hello community,

here is the log from the commit of package gnome-patch-translation for 
openSUSE:Factory checked in at 2013-01-20 12:15:51
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/gnome-patch-translation (Old)
 and      /work/SRC/openSUSE:Factory/.gnome-patch-translation.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "gnome-patch-translation", Maintainer is "[email protected]"

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/gnome-patch-translation/gnome-patch-translation.changes
  2013-01-10 11:23:03.000000000 +0100
+++ 
/work/SRC/openSUSE:Factory/.gnome-patch-translation.new/gnome-patch-translation.changes
     2013-01-20 12:15:53.000000000 +0100
@@ -1,0 +2,6 @@
+Fri Jan 18 20:55:15 CET 2013 - [email protected]
+
+- Updated pl, ro.
+- Allow to set translation domain.
+
+-------------------------------------------------------------------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ HEADER.pot ++++++
--- /var/tmp/diff_new_pack.tSUpVn/_old  2013-01-20 12:15:54.000000000 +0100
+++ /var/tmp/diff_new_pack.tSUpVn/_new  2013-01-20 12:15:54.000000000 +0100
@@ -5,7 +5,7 @@
 msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <[email protected]>\n"

++++++ gnome-patch-translation-files.tar.bz2 ++++++
++++ 16716 lines of diff (skipped)

++++++ gnome-patch-translation-prepare ++++++
--- /var/tmp/diff_new_pack.tSUpVn/_old  2013-01-20 12:15:55.000000000 +0100
+++ /var/tmp/diff_new_pack.tSUpVn/_new  2013-01-20 12:15:55.000000000 +0100
@@ -1,8 +1,51 @@
 #! /bin/bash
 
+if test "$1" = "--help" ; then
+    echo "Patch translation update tool works in top directory of unpacked 
source code."
+    echo "$0 is an utility that is called before applying of patches."
+    echo "Usage: $0 [translation_directory] [translation_domain] [command to 
create pot file]"
+fi
+
 set -o errexit
+shopt -s nullglob
+
+TOP_DIR=$PWD
+DIR=${1:-po}
+DOMAIN=$2
+if test -d "$1" ; then
+       EXT=."$1"
+else
+       EXT=
+fi
+cd "$DIR"
+
+
+# This action takes some time. But run it every time to confirm, that update 
is still needed.
+if test -z "$3" ; then
+    if test -z "$DOMAIN" ; then
+       intltool-update --pot
+    else
+       intltool-update --gettext-package=$DOMAIN --pot
+    fi
+else
+    eval $3
+fi
+
+POT_NOT_UNIQUE=false
+MISSING=true
+for POT in *.pot ; do
+    if $POT_NOT_UNIQUE ; then
+       echo "ERROR: Directory $DIR contains more than one .pot file."
+       exit 1
+    fi
+    POT_NOT_UNIQUE=true
+    MISSING=false
+
+    mkdir -p "../gnome-patch-translation$EXT/old"
+    mv "$POT" "../gnome-patch-translation$EXT/old"
 
-cd po
-intltool-update --pot
-mkdir -p ../gnome-patch-translation/old
-mv *.pot ../gnome-patch-translation/old
+done
+if $MISSING ; then
+    echo "ERROR: Directory $DIR does not contains any .pot file."
+    exit 1
+fi

++++++ gnome-patch-translation-update ++++++
--- /var/tmp/diff_new_pack.tSUpVn/_old  2013-01-20 12:15:55.000000000 +0100
+++ /var/tmp/diff_new_pack.tSUpVn/_new  2013-01-20 12:15:55.000000000 +0100
@@ -1,22 +1,61 @@
 #! /bin/bash
 
+if test "$1" = "--help" ; then
+    echo "Patch translation update tool works in top directory of unpacked 
source code."
+    echo "$0 is an utility that is called after applying of all patches."
+    echo "Usage: $0 [translation_directory] [translation_domain] [command to 
create pot file]"
+fi
+
 set -o errexit
+shopt -s nullglob
+
+TOP_DIR=$PWD
+DIR=${1:-po}
+DOMAIN=$2
+if test -d "$1" ; then
+       EXT=."$1"
+else
+       EXT=
+fi
+cd "$DIR"
 
 # This action takes some time. But run it every time to confirm, that update 
is still needed.
-cd po
-intltool-update --pot
-mkdir ../gnome-patch-translation/new
-cp -a *.pot ../gnome-patch-translation/new
-cd ../gnome-patch-translation/new
-
-eval POT=$(echo *)
-POT=${POT%.pot}
-cd ..
+if test -z "$3" ; then
+    if test -z "$DOMAIN" ; then
+       intltool-update --pot
+    else
+       intltool-update --gettext-package=$DOMAIN --pot
+    fi
+else
+    eval $3
+fi
+
+POT_NOT_UNIQUE=false
+MISSING=true
+for POT in *.pot ; do
+    if $POT_NOT_UNIQUE ; then
+       echo "ERROR: Directory $DIR contains more than one .pot file."
+       exit 1
+    fi
+    POT_NOT_UNIQUE=true
+    MISSING=false
+    POT=${POT%.pot}
+done
+if $MISSING ; then
+    echo "ERROR: Directory $DIR does not contains any .pot file."
+    exit 1
+fi
+
+mkdir $TOP_DIR/gnome-patch-translation$EXT/new
+cp -a $POT.pot $TOP_DIR/gnome-patch-translation$EXT/new
+
+cd $TOP_DIR/gnome-patch-translation$EXT
+
 msgcomm --unique -o $POT-unique.pot old/$POT.pot new/$POT.pot
 if test $? -eq 0 -a ! -f $POT-unique.pot ; then
     echo ""
     echo "No unique patch specific strings in project!"
-    echo "You can remove gnome-patch-translation support from this project."
+    echo "You can remove gnome-patch-translation support from this directory."
     echo ""
     exit 1
 fi
@@ -24,7 +63,7 @@
 
 rm -rf new old $POT-unique.pot
 
-cd ../po
+cd "$TOP_DIR/$DIR"
 
 # Main action. Only this is really needed for package rebuild.
 for PO in *.po ; do
@@ -42,18 +81,20 @@
 done
 # This action takes long time. Run it only if we really need it.
 if test "$COMPENDIUM_UPDATE_MODE" = 1 ; then
-    sed -i 's@#: \.\./@#: '$POT'/@' ../gnome-patch-translation/$POT-patch.pot
+    sed -i '/^#:/s@ \.\./@ '$POT'/@' 
$TOP_DIR/gnome-patch-translation$EXT/$POT-patch.pot
     for PO in *.po ; do
        LNG=${PO%.po}
        echo "Creating fuzzy $PO for gnome-patch-translation."
-       msgmerge -o ../gnome-patch-translation/$POT-$LNG.po $PO 
../gnome-patch-translation/$POT-patch.pot
-       sed -i 's@#: \.\./@#: '$POT'/@;/#~/,$d' 
../gnome-patch-translation/$POT-$LNG.po
+       msgmerge -o $TOP_DIR/gnome-patch-translation$EXT/$POT-$LNG.po $PO 
$TOP_DIR/gnome-patch-translation$EXT/$POT-patch.pot
+       sed '/^#:/s@ \.\./@ '$POT'/@' 
<$TOP_DIR/gnome-patch-translation$EXT/$POT-$LNG.po 
>$TOP_DIR/gnome-patch-translation$EXT/$POT-$LNG.po.new
+       msgattrib --no-obsolete --force-po 
$TOP_DIR/gnome-patch-translation$EXT/$POT-$LNG.po.new -o 
$TOP_DIR/gnome-patch-translation$EXT/$POT-$LNG.po
+       rm $TOP_DIR/gnome-patch-translation$EXT/$POT-$LNG.po.new
     done
     echo "================================================================="
     echo " Translatable strings from patches were written to"
-    echo " gnome-patch-translation/. If you did any translatable string"
-    echo " change in any patch, please follow HOWTO in"
-    echo " gnome-patch-translation package source."
+    echo " gnome-patch-translation$EXT/."
+    echo " If you did any translatable string change in any patch,"
+    echo " please follow HOWTO in gnome-patch-translation package source."
     echo "================================================================="
 else
     echo " Skipping compendium update. Use COMPENDIUM_UPDATE_MODE=1 to force 
it."

++++++ gnome-patch-translation.conf ++++++
--- /var/tmp/diff_new_pack.tSUpVn/_old  2013-01-20 12:15:55.000000000 +0100
+++ /var/tmp/diff_new_pack.tSUpVn/_new  2013-01-20 12:15:55.000000000 +0100
@@ -18,10 +18,10 @@
 
 # list of packages in gnome-patch-translation project
 # can re-appear after rebase of patches: gnome-power-manager gnome-session 
nautilus
-GPT_PACKAGES="gconf-editor gdm gnome-panel gnome-screensaver gnome-vfs2 
gstreamer-0_10 gtk2 pan xchat"
+GPT_PACKAGES="gconf-editor gnome-panel gnome-screensaver gnome-vfs2 
gstreamer-0_10 gtk2 pan xchat"
 
 # Version of gnome-patch-translation-package.
-GPT_VERSION="12.2"
+GPT_VERSION="12.3"
 
 # osc server, empty for using of the osc default
 OSC_APIURL=

++++++ gnome-patch-translation.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/af.po 
new/gnome-patch-translation/af.po
--- old/gnome-patch-translation/af.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/af.po   2013-01-18 21:33:00.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2006-11-03 14:26\n"
 "Last-Translator: Novell Language <[email protected]>\n"
 "Language-Team: Novell Language <[email protected]>\n"
@@ -51,7 +51,7 @@
 msgid "Novell Services"
 msgstr "Novell-dienste"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/ar.po 
new/gnome-patch-translation/ar.po
--- old/gnome-patch-translation/ar.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/ar.po   2013-01-18 21:33:00.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2012-10-08 07:33+0300\n"
 "Last-Translator: Mohammad Alhargan <[email protected]>\n"
 "Language-Team: http://www.vertaal.com.ar/files/opensuse-11-4/ar/list/\n";
@@ -51,7 +51,7 @@
 msgid "Novell Services"
 msgstr "خدمات Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/bn.po 
new/gnome-patch-translation/bn.po
--- old/gnome-patch-translation/bn.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/bn.po   2013-01-18 21:33:00.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2005-07-29 15:37+0530\n"
 "Last-Translator: Priyavert Sharma<[email protected]>\n"
 "Language-Team: AgreeYa Solutions <[email protected]>\n"
@@ -49,7 +49,7 @@
 msgid "Novell Services"
 msgstr "নভেল সার্ভিসেস"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/ca.po 
new/gnome-patch-translation/ca.po
--- old/gnome-patch-translation/ca.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/ca.po   2013-01-18 21:33:00.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2007-03-08 09:06+0100\n"
 "Last-Translator: espe <[email protected]>\n"
 "Language-Team: ca <[email protected]>\n"
@@ -51,7 +51,7 @@
 msgid "Novell Services"
 msgstr "Serveis de Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/cs.po 
new/gnome-patch-translation/cs.po
--- old/gnome-patch-translation/cs.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/cs.po   2013-01-18 21:33:00.000000000 +0100
@@ -15,7 +15,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-11-17 22:05+0100\n"
 "Last-Translator: Jan Papež <[email protected]>\n"
 "Language-Team: Czech <[email protected]>\n"
@@ -59,7 +59,7 @@
 msgid "Novell Services"
 msgstr "Služby systému Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/da.po 
new/gnome-patch-translation/da.po
--- old/gnome-patch-translation/da.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/da.po   2013-01-18 21:33:00.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-10-16 12:35+0200\n"
 "Last-Translator: Martin Schlander <[email protected]>\n"
 "Language-Team: Danish <[email protected]>\n"
@@ -52,7 +52,7 @@
 msgid "Novell Services"
 msgstr "Novell-tjenester"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/de.po 
new/gnome-patch-translation/de.po
--- old/gnome-patch-translation/de.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/de.po   2013-01-18 21:33:00.000000000 +0100
@@ -15,7 +15,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.de\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2012-04-08 21:28+0200\n"
 "Last-Translator: Michael Skiba <[email protected]>\n"
 "Language-Team: German <[email protected]>\n"
@@ -60,7 +60,7 @@
 msgid "Novell Services"
 msgstr "Novell-Services"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/el.po 
new/gnome-patch-translation/el.po
--- old/gnome-patch-translation/el.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/el.po   2013-01-18 21:33:00.000000000 +0100
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.el\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-10-19 02:13+0300\n"
 "Last-Translator: Marianna Stougiannidou <[email protected]>\n"
 "Language-Team: Greek <[email protected]>\n"
@@ -56,7 +56,7 @@
 msgid "Novell Services"
 msgstr "Υπηρεσίες Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/es.po 
new/gnome-patch-translation/es.po
--- old/gnome-patch-translation/es.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/es.po   2013-01-18 21:33:00.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-10-23 16:40-0300\n"
 "Last-Translator: Gabriel <[email protected]>\n"
 "Language-Team: Spanish <[email protected]>\n"
@@ -54,7 +54,7 @@
 msgid "Novell Services"
 msgstr "Servicios de Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/et.po 
new/gnome-patch-translation/et.po
--- old/gnome-patch-translation/et.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/et.po   2013-01-18 21:33:00.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.et\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2007-10-04 23:36+0300\n"
 "Last-Translator: Ain Vagula <[email protected]>\n"
 "Language-Team: Estonian <[email protected]>\n"
@@ -54,7 +54,7 @@
 msgid "Novell Services"
 msgstr "Teenuseid pole"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/fi.po 
new/gnome-patch-translation/fi.po
--- old/gnome-patch-translation/fi.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/fi.po   2013-01-18 21:33:00.000000000 +0100
@@ -24,7 +24,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.fi\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-10-23 11:19+0300\n"
 "Last-Translator: Jyri Palokangas <[email protected]>\n"
 "Language-Team: Finnish <[email protected]>\n"
@@ -68,7 +68,7 @@
 msgid "Novell Services"
 msgstr "Novell-palvelut"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/fr.po 
new/gnome-patch-translation/fr.po
--- old/gnome-patch-translation/fr.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/fr.po   2013-01-18 21:33:00.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: base\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2012-05-14 14:03+0200\n"
 "Last-Translator: Guillaume GARDET <[email protected]>\n"
 "Language-Team: French <[email protected]>\n"
@@ -50,7 +50,7 @@
 msgid "Novell Services"
 msgstr "Services Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/gl.po 
new/gnome-patch-translation/gl.po
--- old/gnome-patch-translation/gl.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/gl.po   2013-01-18 21:33:00.000000000 +0100
@@ -11,7 +11,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-10-28 00:34+0200\n"
 "Last-Translator: Manuel A. Vazquez <xixireiATyahooDOTes>\n"
 "Language-Team: Galician <[email protected]>\n"
@@ -56,7 +56,7 @@
 msgid "Novell Services"
 msgstr "Servizos de Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/gu.po 
new/gnome-patch-translation/gu.po
--- old/gnome-patch-translation/gu.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/gu.po   2013-01-18 21:33:00.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: nis\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2006-11-11 18:41+0530\n"
 "Last-Translator: Priyavert Sharma<[email protected]>\n"
 "Language-Team: AgreeYa Solutions<[email protected]>\n"
@@ -48,7 +48,7 @@
 msgid "Novell Services"
 msgstr "નોવેલ સર્વિસિસ"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/hi.po 
new/gnome-patch-translation/hi.po
--- old/gnome-patch-translation/hi.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/hi.po   2013-01-18 21:33:00.000000000 +0100
@@ -3,7 +3,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.hi\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2007-08-24 22:37+0530\n"
 "Last-Translator: \n"
 "Language-Team:  <[email protected]>\n"
@@ -50,7 +50,7 @@
 msgid "Novell Services"
 msgstr "नॉवेल सेवाएं"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/hr.po 
new/gnome-patch-translation/hr.po
--- old/gnome-patch-translation/hr.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/hr.po   2013-01-18 21:33:00.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-04-03 15:46+0200\n"
 "Last-Translator: Krešimir Jozić <[email protected]>\n"
 "Language-Team: Croatian <[email protected]>\n"
@@ -51,7 +51,7 @@
 msgid "Novell Services"
 msgstr "Novell usluge"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/hu.po 
new/gnome-patch-translation/hu.po
--- old/gnome-patch-translation/hu.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/hu.po   2013-01-18 21:33:00.000000000 +0100
@@ -13,7 +13,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.hu\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-10-16 10:06+0200\n"
 "Last-Translator: Kalman Kemenczy <[email protected]>\n"
 "Language-Team: Hungarian <[email protected]>\n"
@@ -57,7 +57,7 @@
 msgid "Novell Services"
 msgstr "Novell szolgáltatások"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/it.po 
new/gnome-patch-translation/it.po
--- old/gnome-patch-translation/it.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/it.po   2013-01-18 21:33:00.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-10-15 22:01+0100\n"
 "Last-Translator: Andrea Turrini <[email protected]>\n"
 "Language-Team: Italiano <[email protected]>\n"
@@ -54,7 +54,7 @@
 msgid "Novell Services"
 msgstr "Servizi Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/ja.po 
new/gnome-patch-translation/ja.po
--- old/gnome-patch-translation/ja.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/ja.po   2013-01-18 21:33:00.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-10-15 08:35+0900\n"
 "Last-Translator: Yasuhiko Kamata <[email protected]>\n"
 "Language-Team: Japanese <[email protected]>\n"
@@ -51,7 +51,7 @@
 msgid "Novell Services"
 msgstr "Novell サービス"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/km.po 
new/gnome-patch-translation/km.po
--- old/gnome-patch-translation/km.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/km.po   2013-01-18 21:33:00.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.km\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-10-24 09:09+0700\n"
 "Last-Translator: Khoem Sokhem <[email protected]>\n"
 "Language-Team: Khmer <>\n"
@@ -51,7 +51,7 @@
 msgid "Novell Services"
 msgstr "សេវា​របស់​ណូវែល"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/ko.po 
new/gnome-patch-translation/ko.po
--- old/gnome-patch-translation/ko.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/ko.po   2013-01-18 21:33:00.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.ko\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2009-10-23 02:09+0900\n"
 "Last-Translator: Yunseok Choi <[email protected]>\n"
 "Language-Team: Korean <[email protected]>\n"
@@ -51,7 +51,7 @@
 msgid "Novell Services"
 msgstr "Novell 서비스"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/lt.po 
new/gnome-patch-translation/lt.po
--- old/gnome-patch-translation/lt.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/lt.po   2013-01-18 21:33:00.000000000 +0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-10-24 16:01+0300\n"
 "Last-Translator: Mindaugas Baranauskas <[email protected]>\n"
 "Language-Team: Lithuanian <[email protected]>\n"
@@ -51,7 +51,7 @@
 msgid "Novell Services"
 msgstr "Novell paslaugos"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/mr.po 
new/gnome-patch-translation/mr.po
--- old/gnome-patch-translation/mr.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/mr.po   2013-01-18 21:33:00.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: @PACKAGE@\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2004-08-09 10:24+0200\n"
 "Last-Translator: Priyavert Sharma<[email protected]>\n"
 "Language-Team: AgreeYa Solutions <[email protected]>\n"
@@ -48,7 +48,7 @@
 msgid "Novell Services"
 msgstr " नॉव्हेलच्या सेवा"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/nb.po 
new/gnome-patch-translation/nb.po
--- old/gnome-patch-translation/nb.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/nb.po   2013-01-18 21:33:00.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.nb_no\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2010-03-09 20:00+0200\n"
 "Last-Translator: Olav Pettershagen <[email protected]>\n"
 "Language-Team: Norwegian Bokmål <[email protected]>\n"
@@ -53,7 +53,7 @@
 msgid "Novell Services"
 msgstr "Novell Services"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/nl.po 
new/gnome-patch-translation/nl.po
--- old/gnome-patch-translation/nl.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/nl.po   2013-01-18 21:33:00.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.nl\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-10-15 11:01+0200\n"
 "Last-Translator: Freek de Kruijf <[email protected]>\n"
 "Language-Team: Dutch <[email protected]>\n"
@@ -51,7 +51,7 @@
 msgid "Novell Services"
 msgstr "Novell Services"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/pa.po 
new/gnome-patch-translation/pa.po
--- old/gnome-patch-translation/pa.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/pa.po   2013-01-18 21:33:00.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.pa\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2008-11-23 07:47+0530\n"
 "Last-Translator: KDB <[email protected]>\n"
 "Language-Team: Panjabi <[email protected]>\n"
@@ -55,7 +55,7 @@
 msgid "Novell Services"
 msgstr "ਨੋਵਲ ਸਰਵਿਸਾਂ"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/pl.po 
new/gnome-patch-translation/pl.po
--- old/gnome-patch-translation/pl.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/pl.po   2013-01-18 21:33:00.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-10-23 11:15+0100\n"
 "Last-Translator: Piotr Krakowiak <[email protected]>\n"
 "Language-Team: Polish <[email protected]>\n"
@@ -52,7 +52,7 @@
 msgid "Novell Services"
 msgstr "Usługi Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/pt.po 
new/gnome-patch-translation/pt.po
--- old/gnome-patch-translation/pt.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/pt.po   2013-01-18 21:33:00.000000000 +0100
@@ -7,7 +7,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.pt\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-11-08 22:29+0100\n"
 "Last-Translator: Elisio Catana <[email protected]>\n"
 "Language-Team: Portuguese <[email protected]>\n"
@@ -51,7 +51,7 @@
 msgid "Novell Services"
 msgstr "Serviços da Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/pt_BR.po 
new/gnome-patch-translation/pt_BR.po
--- old/gnome-patch-translation/pt_BR.po        2013-01-08 16:01:48.000000000 
+0100
+++ new/gnome-patch-translation/pt_BR.po        2013-01-18 21:33:00.000000000 
+0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2012-04-20 21:20-0300\n"
 "Last-Translator: Luiz Fernando Ranghetti <[email protected]>\n"
 "Language-Team: Brazilian Portuguese <[email protected]>\n"
@@ -56,7 +56,7 @@
 msgid "Novell Services"
 msgstr "Serviços da Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/ro.po 
new/gnome-patch-translation/ro.po
--- old/gnome-patch-translation/ro.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/ro.po   2013-01-18 21:33:00.000000000 +0100
@@ -14,7 +14,7 @@
 msgstr ""
 "Project-Id-Version: OpenSUSE\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2012-11-19 14:59+0200\n"
 "Last-Translator: Lucian Oprea <[email protected]>\n"
 "Language-Team: Romanian <[email protected]>\n"
@@ -66,7 +66,7 @@
 msgid "Novell Services"
 msgstr "Servicii Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/ru.po 
new/gnome-patch-translation/ru.po
--- old/gnome-patch-translation/ru.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/ru.po   2013-01-18 21:33:00.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.ru\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2011-10-19 21:59+0400\n"
 "Last-Translator: Alexander Melentiev <[email protected]>\n"
 "Language-Team: Russian <[email protected]>\n"
@@ -54,7 +54,7 @@
 msgid "Novell Services"
 msgstr "Службы Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/sk.po 
new/gnome-patch-translation/sk.po
--- old/gnome-patch-translation/sk.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/sk.po   2013-01-18 21:33:00.000000000 +0100
@@ -9,7 +9,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.sk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2010-05-30 13:31+0100\n"
 "Last-Translator: Rastislav Krupanský <[email protected]>\n"
 "Language-Team: Slovak <[email protected]>\n"
@@ -58,7 +58,7 @@
 msgid "Novell Services"
 msgstr "Služby systému Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/sl.po 
new/gnome-patch-translation/sl.po
--- old/gnome-patch-translation/sl.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/sl.po   2013-01-18 21:33:00.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2007-01-03 15:37:30+CET\n"
 "Last-Translator: sl <[email protected]>\n"
 "Language-Team: sl <[email protected]>\n"
@@ -48,7 +48,7 @@
 msgid "Novell Services"
 msgstr ""
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/sv.po 
new/gnome-patch-translation/sv.po
--- old/gnome-patch-translation/sv.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/sv.po   2013-01-18 21:33:00.000000000 +0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.sv\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2008-11-08 10:49+0100\n"
 "Last-Translator: Jonas Björk <[email protected]>\n"
 "Language-Team: Swedish <[email protected]>\n"
@@ -54,7 +54,7 @@
 msgid "Novell Services"
 msgstr "Novell Services"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/ta.po 
new/gnome-patch-translation/ta.po
--- old/gnome-patch-translation/ta.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/ta.po   2013-01-18 21:33:00.000000000 +0100
@@ -2,7 +2,7 @@
 msgstr ""
 "Project-Id-Version: nis\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2006-11-11 18:41+0530\n"
 "Last-Translator: Priyavert Sharma<[email protected]>\n"
 "Language-Team: AgreeYa Solutions<[email protected]>\n"
@@ -48,7 +48,7 @@
 msgid "Novell Services"
 msgstr "நோவெல் சேவைகள்"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/uk.po 
new/gnome-patch-translation/uk.po
--- old/gnome-patch-translation/uk.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/uk.po   2013-01-18 21:33:00.000000000 +0100
@@ -10,7 +10,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation.uk\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2010-04-25 22:26-0700\n"
 "Last-Translator: I. Petrouchtchak <[email protected]>\n"
 "Language-Team: Ukrainian <[email protected]>\n"
@@ -56,7 +56,7 @@
 msgid "Novell Services"
 msgstr "Служби Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/wa.po 
new/gnome-patch-translation/wa.po
--- old/gnome-patch-translation/wa.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/wa.po   2013-01-18 21:33:00.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2012-08-19 15:15+0200\n"
 "Last-Translator: Jean Cayron <[email protected]>\n"
 "Language-Team: Walloon <[email protected]>\n"
@@ -50,7 +50,7 @@
 msgid "Novell Services"
 msgstr "Siervices Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/xh.po 
new/gnome-patch-translation/xh.po
--- old/gnome-patch-translation/xh.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/xh.po   2013-01-18 21:33:00.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2005-07-27 11:49+0200\n"
 "Last-Translator: Novell Language <[email protected]>\n"
 "Language-Team: Novell Language <[email protected]>\n"
@@ -50,7 +50,7 @@
 msgid "Novell Services"
 msgstr "Iinkonzo ze-Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/zh_CN.po 
new/gnome-patch-translation/zh_CN.po
--- old/gnome-patch-translation/zh_CN.po        2013-01-08 16:01:48.000000000 
+0100
+++ new/gnome-patch-translation/zh_CN.po        2013-01-18 21:33:00.000000000 
+0100
@@ -6,7 +6,7 @@
 msgstr ""
 "Project-Id-Version: base\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2012-06-29 19:27+0800\n"
 "Last-Translator: Marguerite Su\n"
 "Language-Team: Chinese Simplified <[email protected]>\n"
@@ -50,7 +50,7 @@
 msgid "Novell Services"
 msgstr "Novell 服务"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/zh_TW.po 
new/gnome-patch-translation/zh_TW.po
--- old/gnome-patch-translation/zh_TW.po        2013-01-08 16:01:48.000000000 
+0100
+++ new/gnome-patch-translation/zh_TW.po        2013-01-18 21:33:00.000000000 
+0100
@@ -8,7 +8,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2012-05-17 21:43+0800\n"
 "Last-Translator: Ray Chen <[email protected]>\n"
 "Language-Team: Chinese Traditional <[email protected]>\n"
@@ -52,7 +52,7 @@
 msgid "Novell Services"
 msgstr "Novell 服務"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-patch-translation/zu.po 
new/gnome-patch-translation/zu.po
--- old/gnome-patch-translation/zu.po   2013-01-08 16:01:48.000000000 +0100
+++ new/gnome-patch-translation/zu.po   2013-01-18 21:33:00.000000000 +0100
@@ -5,7 +5,7 @@
 msgstr ""
 "Project-Id-Version: gnome-patch-translation\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-01-07 22:00+0100\n"
+"POT-Creation-Date: 2013-01-18 21:24+0100\n"
 "PO-Revision-Date: 2005-07-27 11:49+0200\n"
 "Last-Translator: Novell Language <[email protected]>\n"
 "Language-Team: Novell Language <[email protected]>\n"
@@ -50,7 +50,7 @@
 msgid "Novell Services"
 msgstr "Amasevisi Akwa-Novell"
 
-#: GStreamer/tools/gst-inspect.c:1784
+#: gstreamer-0.10/tools/gst-inspect.c:1784
 msgid ""
 "Print the machine-parsable list of features of a plugin in RPM Provides "
 "compatible-format"

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to