[file-roller] updated POTFILES.in added the script to create it automatically



commit 69059472d6990c0b2f305eadd5aa6f90c21d393c
Author: Paolo Bacchilega <paobac src gnome org>
Date:   Mon Nov 16 19:16:48 2009 +0100

    updated POTFILES.in added the script to create it automatically

 po/POTFILES.in        |   55 ++++++++++++++++++++++++++++++++++++++++---------
 po/update-potfiles.sh |   13 +++++++++++
 2 files changed, 58 insertions(+), 10 deletions(-)
---
diff --git a/po/POTFILES.in b/po/POTFILES.in
index b8fb2cf..469cbb6 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -1,12 +1,13 @@
+# DO NOT EDIT.  This file is automatically generated.
+# List of source files which contain translatable strings.
 [encoding: UTF-8]
-# List of source files containing translatable strings.
-# Please keep this file sorted alphabetically.
 copy-n-paste/eggdesktopfile.c
 copy-n-paste/eggdesktopfile.h
 copy-n-paste/eggsmclient.c
 copy-n-paste/eggsmclient.h
 copy-n-paste/eggsmclient-private.h
 copy-n-paste/eggsmclient-xsmp.c
+data/file-roller.desktop.in.in
 [type: gettext/glade]data/ui/add-options.ui
 [type: gettext/glade]data/ui/batch-add-files.ui
 [type: gettext/glade]data/ui/batch-password.ui
@@ -16,16 +17,18 @@ copy-n-paste/eggsmclient-xsmp.c
 [type: gettext/glade]data/ui/password.ui
 [type: gettext/glade]data/ui/properties.ui
 [type: gettext/glade]data/ui/update.ui
-data/file-roller.desktop.in.in
 nautilus/fileroller-module.c
-nautilus/nautilus-fileroller.h
 nautilus/nautilus-fileroller.c
+nautilus/nautilus-fileroller.h
 src/actions.c
+src/actions.h
+src/commands/rpm2cpio.c
 src/dlg-add-files.c
 src/dlg-add-files.h
 src/dlg-add-folder.c
 src/dlg-add-folder.h
 src/dlg-ask-password.c
+src/dlg-ask-password.h
 src/dlg-batch-add.c
 src/dlg-batch-add.h
 src/dlg-delete.c
@@ -36,37 +39,60 @@ src/dlg-new.c
 src/dlg-new.h
 src/dlg-open-with.c
 src/dlg-open-with.h
+src/dlg-package-installer.c
+src/dlg-package-installer.h
 src/dlg-password.c
 src/dlg-password.h
 src/dlg-prop.c
 src/dlg-prop.h
 src/dlg-update.c
+src/dlg-update.h
+src/eggtreemultidnd.c
+src/eggtreemultidnd.h
 src/file-data.c
 src/file-data.h
 src/file-utils.c
 src/file-utils.h
 src/fr-archive.c
 src/fr-archive.h
+src/fr-command-7z.c
+src/fr-command-7z.h
+src/fr-command-ace.c
+src/fr-command-ace.h
+src/fr-command-alz.c
+src/fr-command-alz.h
 src/fr-command-ar.c
 src/fr-command-ar.h
 src/fr-command-arj.c
 src/fr-command-arj.h
+src/fr-command.c
 src/fr-command-cfile.c
 src/fr-command-cfile.h
+src/fr-command-cpio.c
+src/fr-command-cpio.h
+src/fr-command.h
+src/fr-command-iso.c
+src/fr-command-iso.h
+src/fr-command-jar.c
+src/fr-command-jar.h
 src/fr-command-lha.c
 src/fr-command-lha.h
 src/fr-command-rar.c
 src/fr-command-rar.h
-src/fr-command-unstuff.c
-src/fr-command-unstuff.h
+src/fr-command-rpm.c
+src/fr-command-rpm.h
 src/fr-command-tar.c
 src/fr-command-tar.h
+src/fr-command-unstuff.c
+src/fr-command-unstuff.h
 src/fr-command-zip.c
 src/fr-command-zip.h
-src/fr-command-7z.c
-src/fr-command-7z.h
-src/fr-command.c
-src/fr-command.h
+src/fr-command-zoo.c
+src/fr-command-zoo.h
+src/fr-error.c
+src/fr-error.h
+src/fr-list-model.c
+src/fr-list-model.h
 src/fr-process.c
 src/fr-process.h
 src/fr-stock.c
@@ -75,11 +101,20 @@ src/fr-window.c
 src/fr-window.h
 src/gconf-utils.c
 src/gconf-utils.h
+src/gio-utils.c
+src/gio-utils.h
 src/glib-utils.c
+src/glib-utils.h
 src/gtk-utils.c
 src/gtk-utils.h
+src/java-utils.c
+src/java-utils.h
 src/main.c
 src/main.h
+src/mkdtemp.c
+src/mkdtemp.h
+src/open-file.c
+src/open-file.h
 src/preferences.c
 src/preferences.h
 src/typedefs.h
diff --git a/po/update-potfiles.sh b/po/update-potfiles.sh
new file mode 100644
index 0000000..e3ffc5d
--- /dev/null
+++ b/po/update-potfiles.sh
@@ -0,0 +1,13 @@
+#!/bin/sh
+
+echo "# DO NOT EDIT.  This file is automatically generated."
+echo "# List of source files which contain translatable strings."
+echo "[encoding: UTF-8]"
+files=`find .. \( -name '*.c' -o -name '*.h' -o -name '*.cpp' -o -name '*.ui' -o -name '*.schemas.in' -o -name '*.desktop.in.in' -o -name '*.extension.in.in' \) -printf "%P\n" | sort`
+for f in $files; do
+	case $f in
+        build/*) ;;
+	*.ui) echo "[type: gettext/glade]$f" ;;
+	*) echo $f
+	esac
+done



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]