commit 96fb8d67c9f0dc70101a34c862532528c9ec0076
parent 41185dce90f03dfa502ee715165ca4e85d4844cc
Author: Christian Grothoff <christian@grothoff.org>
Date: Wed, 17 May 2006 07:14:34 +0000
mantis 1090
Diffstat:
11 files changed, 248 insertions(+), 79 deletions(-)
diff --git a/PLATFORMS b/PLATFORMS
@@ -2,7 +2,7 @@ This file lists the known problems with libextractor on various
platforms. Let us know if you know more about it than we do.
GNU/Linux (x86):
-- perfect
+- perfect, but with gcc 3.3 you must turn off optimizations!
GNU/Linux (Ultra Sparc):
- perfect
@@ -28,7 +28,8 @@ OpenBSD 3.8:
- unknown
OS X (10.3, PowerPC):
-- (X)PDF extractor does not work properly
+- (X)PDF extractor does not work properly, especially with gcc 3.x
+ (use the C-based pdfextractor (default now anyway))
Solaris 8 (SunOS 5.8, Sparc SunFire 880):
- unknown
diff --git a/configure.ac b/configure.ac
@@ -1,8 +1,8 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ(2.57)
-AC_INIT([libextractor], [0.5.13], [bug-libextractor@gnu.org])
+AC_INIT([libextractor], [0.5.14], [bug-libextractor@gnu.org])
AC_REVISION($Revision: 1.67 $)
-AM_INIT_AUTOMAKE([libextractor], [0.5.13])
+AM_INIT_AUTOMAKE([libextractor], [0.5.14])
AM_CONFIG_HEADER(src/include/config.h)
AH_TOP([#define _GNU_SOURCE 1])
@@ -10,19 +10,9 @@ AH_TOP([#define _GNU_SOURCE 1])
# Checks for programs.
AC_CANONICAL_HOST
-# The problem that I'm trying to solve here by specifying gcc-3.3 and gcc2
-# in the search list ahead of the other stuff is that gcc-3.1 on Mac OS X
-# does not work for some of the pdf extractor code. Now, it would seem
-# that we could have a conditional on $host_os that puts just the right
-# amount of crazyness into the checks only on the Mac. Unfortunately, this
-# will not work, because (according to some mailing lists and painful
-# personal experiences) AC_PROG_CXX does not work inside of conditionals.
-# So, instead, we do this crazyness globally. The list of compilers that
-# you see below is taken right out of the autoconf (version 2.57) sources,
-# so it should not impede our portability.
-AC_PROG_CC(gcc-4.0 gcc-3.3 gcc2 gcc cc /usr/ucb/cc cl)
+AC_PROG_CC
AC_PROG_CPP
-AC_PROG_CXX(g++-4.0 g++-3.3 g++2 g++ c++ gpp aCC CC cxx cc++ cl FCC KCC RCC xlC_r xlC)
+AC_PROG_CXX
AC_PROG_INSTALL
AC_PROG_LN_S
diff --git a/contrib/doxygen b/contrib/doxygen
@@ -23,7 +23,7 @@ PROJECT_NAME = libextractor
# This could be handy for archiving the generated documentation or
# if some version control system is used.
-PROJECT_NUMBER = 0.5.13
+PROJECT_NUMBER = 0.5.14
# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute)
# base path where the generated documentation will be put.
diff --git a/po/de.po b/po/de.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libextractor 0.5.6a\n"
"Report-Msgid-Bugs-To: libextractor@gnu.org\n"
-"POT-Creation-Date: 2006-04-28 22:42-0700\n"
+"POT-Creation-Date: 2006-05-17 00:53-0700\n"
"PO-Revision-Date: 2005-09-22 10:07+0200\n"
"Last-Translator: Karl Eichwalder <ke@suse.de>\n"
"Language-Team: German <de@li.org>\n"
@@ -118,12 +118,12 @@ msgstr "extract [OPTIONEN] [DATEINAME]*"
msgid "Extract metadata from files."
msgstr "Metadaten aus den Dateien extrahieren."
-#: src/main/extract.c:198 src/main/extractor.c:1144
+#: src/main/extract.c:198 src/main/extractor.c:1149
#, c-format
msgid "%s - (binary)\n"
msgstr "%s - (binär)\n"
-#: src/main/extract.c:204 src/main/extractor.c:1149
+#: src/main/extract.c:204 src/main/extractor.c:1154
#, c-format
msgid "INVALID TYPE - %s\n"
msgstr "UNGÜLTIGE ART - %s\n"
@@ -596,24 +596,49 @@ msgstr "Musical"
msgid "manager"
msgstr "Paket-Ersteller"
-#: src/main/extractor.c:248
+#: src/main/extractor.c:154
+#, fuzzy
+msgid "director"
+msgstr "Ersteller"
+
+#: src/main/extractor.c:155
+#, fuzzy
+msgid "duration"
+msgstr "Relation"
+
+#: src/main/extractor.c:156
+#, fuzzy
+msgid "information"
+msgstr "Format"
+
+#: src/main/extractor.c:157
+#, fuzzy
+msgid "full name"
+msgstr "Dateiname"
+
+#: src/main/extractor.c:158
+#, fuzzy
+msgid "chapter"
+msgstr "Kategorie"
+
+#: src/main/extractor.c:253
#, c-format
msgid "Initialization of plugin mechanism failed: %s!\n"
msgstr "Initialisierung des Plugin-Mechanismus' ist fehlgeschlagen: %s.\n"
-#: src/main/extractor.c:397
+#: src/main/extractor.c:402
#, c-format
msgid ""
"Resolving symbol `%s' in library `%s' failed, so I tried `%s', but that "
"failed also. Errors are: `%s' and `%s'.\n"
msgstr ""
-#: src/main/extractor.c:426
+#: src/main/extractor.c:431
#, c-format
msgid "Loading `%s' plugin failed: %s\n"
msgstr "Laden des »%s«-Plugins ist fehlgeschlagen: %s\n"
-#: src/main/extractor.c:631
+#: src/main/extractor.c:636
#, c-format
msgid "Unloading plugin `%s' failed!\n"
msgstr "Entladen des »%s«-Plugins ist fehlgeschlagen!\n"
diff --git a/po/ga.po b/po/ga.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libextractor 0.5.7\n"
"Report-Msgid-Bugs-To: libextractor@gnu.org\n"
-"POT-Creation-Date: 2006-04-28 22:42-0700\n"
+"POT-Creation-Date: 2006-05-17 00:53-0700\n"
"PO-Revision-Date: 2005-11-15 00:46-0700\n"
"Last-Translator: Kevin Patrick Scannell <scannell@SLU.EDU>\n"
"Language-Team: Irish <gaeilge-gnulinux@lists.sourceforge.net>\n"
@@ -114,12 +114,12 @@ msgstr "extract [ROGHANNA] [COMHADAINM]*"
msgid "Extract metadata from files."
msgstr "Bain meiteashonra as comhaid."
-#: src/main/extract.c:198 src/main/extractor.c:1144
+#: src/main/extract.c:198 src/main/extractor.c:1149
#, c-format
msgid "%s - (binary)\n"
msgstr "%s - (dnrtha)\n"
-#: src/main/extract.c:204 src/main/extractor.c:1149
+#: src/main/extract.c:204 src/main/extractor.c:1154
#, c-format
msgid "INVALID TYPE - %s\n"
msgstr "CINEL NEAMHBHAIL - %s\n"
@@ -595,12 +595,37 @@ msgstr "Ceolra"
msgid "manager"
msgstr "pacisteoir"
-#: src/main/extractor.c:248
+#: src/main/extractor.c:154
+#, fuzzy
+msgid "director"
+msgstr "cruthaitheoir"
+
+#: src/main/extractor.c:155
+#, fuzzy
+msgid "duration"
+msgstr "gaol"
+
+#: src/main/extractor.c:156
+#, fuzzy
+msgid "information"
+msgstr "formid"
+
+#: src/main/extractor.c:157
+#, fuzzy
+msgid "full name"
+msgstr "comhadainm"
+
+#: src/main/extractor.c:158
+#, fuzzy
+msgid "chapter"
+msgstr "catagir"
+
+#: src/main/extractor.c:253
#, c-format
msgid "Initialization of plugin mechanism failed: %s!\n"
msgstr "Theip ar ths meicnocht na mbreisen: %s!\n"
-#: src/main/extractor.c:397
+#: src/main/extractor.c:402
#, c-format
msgid ""
"Resolving symbol `%s' in library `%s' failed, so I tried `%s', but that "
@@ -610,12 +635,12 @@ msgstr ""
"bhain m triail as `%s', ach theip ar an cheann sin freisin. Na hearrid: `"
"%s' agus `%s'.\n"
-#: src/main/extractor.c:426
+#: src/main/extractor.c:431
#, c-format
msgid "Loading `%s' plugin failed: %s\n"
msgstr "Theip ar lucht an bhreisein `%s': %s\n"
-#: src/main/extractor.c:631
+#: src/main/extractor.c:636
#, c-format
msgid "Unloading plugin `%s' failed!\n"
msgstr "Theip ar dhlucht an bhreisein `%s'!\n"
diff --git a/po/libextractor.pot b/po/libextractor.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: libextractor@gnu.org\n"
-"POT-Creation-Date: 2006-04-28 22:42-0700\n"
+"POT-Creation-Date: 2006-05-17 00:53-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -104,12 +104,12 @@ msgstr ""
msgid "Extract metadata from files."
msgstr ""
-#: src/main/extract.c:198 src/main/extractor.c:1144
+#: src/main/extract.c:198 src/main/extractor.c:1149
#, c-format
msgid "%s - (binary)\n"
msgstr ""
-#: src/main/extract.c:204 src/main/extractor.c:1149
+#: src/main/extract.c:204 src/main/extractor.c:1154
#, c-format
msgid "INVALID TYPE - %s\n"
msgstr ""
@@ -574,24 +574,44 @@ msgstr ""
msgid "manager"
msgstr ""
-#: src/main/extractor.c:248
+#: src/main/extractor.c:154
+msgid "director"
+msgstr ""
+
+#: src/main/extractor.c:155
+msgid "duration"
+msgstr ""
+
+#: src/main/extractor.c:156
+msgid "information"
+msgstr ""
+
+#: src/main/extractor.c:157
+msgid "full name"
+msgstr ""
+
+#: src/main/extractor.c:158
+msgid "chapter"
+msgstr ""
+
+#: src/main/extractor.c:253
#, c-format
msgid "Initialization of plugin mechanism failed: %s!\n"
msgstr ""
-#: src/main/extractor.c:397
+#: src/main/extractor.c:402
#, c-format
msgid ""
"Resolving symbol `%s' in library `%s' failed, so I tried `%s', but that "
"failed also. Errors are: `%s' and `%s'.\n"
msgstr ""
-#: src/main/extractor.c:426
+#: src/main/extractor.c:431
#, c-format
msgid "Loading `%s' plugin failed: %s\n"
msgstr ""
-#: src/main/extractor.c:631
+#: src/main/extractor.c:636
#, c-format
msgid "Unloading plugin `%s' failed!\n"
msgstr ""
diff --git a/po/ro.po b/po/ro.po
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libextractor 0.5.3\n"
"Report-Msgid-Bugs-To: libextractor@gnu.org\n"
-"POT-Creation-Date: 2006-04-28 22:42-0700\n"
+"POT-Creation-Date: 2006-05-17 00:53-0700\n"
"PO-Revision-Date: 2005-08-16 12:00-0500\n"
"Last-Translator: Laurentiu Buzdugan <lbuz@rolix.org>\n"
"Language-Team: Romanian <translation-team-ro@lists.sourceforge.net>\n"
@@ -122,12 +122,12 @@ msgstr "extract [OP
msgid "Extract metadata from files."
msgstr "Extrage metadata din fiiere."
-#: src/main/extract.c:198 src/main/extractor.c:1144
+#: src/main/extract.c:198 src/main/extractor.c:1149
#, c-format
msgid "%s - (binary)\n"
msgstr "%s - (binar)\n"
-#: src/main/extract.c:204 src/main/extractor.c:1149
+#: src/main/extract.c:204 src/main/extractor.c:1154
#, c-format
msgid "INVALID TYPE - %s\n"
msgstr "TIP INVALID - %s\n"
@@ -604,12 +604,37 @@ msgstr "Musical"
msgid "manager"
msgstr "mpachetator"
-#: src/main/extractor.c:248
+#: src/main/extractor.c:154
+#, fuzzy
+msgid "director"
+msgstr "Este un director"
+
+#: src/main/extractor.c:155
+#, fuzzy
+msgid "duration"
+msgstr "relaie"
+
+#: src/main/extractor.c:156
+#, fuzzy
+msgid "information"
+msgstr "format"
+
+#: src/main/extractor.c:157
+#, fuzzy
+msgid "full name"
+msgstr "nume_fiier"
+
+#: src/main/extractor.c:158
+#, fuzzy
+msgid "chapter"
+msgstr "categorie"
+
+#: src/main/extractor.c:253
#, c-format
msgid "Initialization of plugin mechanism failed: %s!\n"
msgstr "iniializare mecanismului de plugin a euat: %s!\n"
-#: src/main/extractor.c:397
+#: src/main/extractor.c:402
#, fuzzy, c-format
msgid ""
"Resolving symbol `%s' in library `%s' failed, so I tried `%s', but that "
@@ -618,12 +643,12 @@ msgstr ""
"Rezolvarea simbolului '%s' n biblioteca '%s' a euat, aa c am ncercat '%"
"s', dar i acesta a euat. Erorile sunt: '%s' i '%s'.\n"
-#: src/main/extractor.c:426
+#: src/main/extractor.c:431
#, fuzzy, c-format
msgid "Loading `%s' plugin failed: %s\n"
msgstr "ncrcarea plugin-ului '%s' a euat: %s\n"
-#: src/main/extractor.c:631
+#: src/main/extractor.c:636
#, fuzzy, c-format
msgid "Unloading plugin `%s' failed!\n"
msgstr "Descrcarea plugin-ului '%s' a euat!\n"
@@ -1556,9 +1581,6 @@ msgstr "Binar RPM %d.%d"
#~ msgid "Not a directory"
#~ msgstr "Nu este un director"
-#~ msgid "Is a directory"
-#~ msgstr "Este un director"
-
#~ msgid "Invalid argument"
#~ msgstr "Argument invalide"
diff --git a/po/rw.po b/po/rw.po
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libextractor 0.4.2\n"
"Report-Msgid-Bugs-To: libextractor@gnu.org\n"
-"POT-Creation-Date: 2006-04-28 22:42-0700\n"
+"POT-Creation-Date: 2006-05-17 00:53-0700\n"
"PO-Revision-Date: 2005-04-04 10:55-0700\n"
"Last-Translator: Steven Michael Murphy <murf@e-tools.com>\n"
"Language-Team: Kinyarwanda <translation-team-rw@lists.sourceforge.net>\n"
@@ -130,12 +130,12 @@ msgstr ""
msgid "Extract metadata from files."
msgstr "Bivuye Idosiye"
-#: src/main/extract.c:198 src/main/extractor.c:1144
+#: src/main/extract.c:198 src/main/extractor.c:1149
#, fuzzy, c-format
msgid "%s - (binary)\n"
msgstr "%s-(Nyabibiri"
-#: src/main/extract.c:204 src/main/extractor.c:1149
+#: src/main/extract.c:204 src/main/extractor.c:1154
#, c-format
msgid "INVALID TYPE - %s\n"
msgstr ""
@@ -740,24 +740,70 @@ msgstr ""
msgid "manager"
msgstr "Ururimi"
-#: src/main/extractor.c:248
+#: src/main/extractor.c:154
+#, fuzzy
+msgid "director"
+msgstr "a bushyinguro"
+
+# 5033
+#: src/main/extractor.c:155
+#, fuzzy
+msgid "duration"
+msgstr "Isano"
+
+#: src/main/extractor.c:156
+#, fuzzy
+msgid "information"
+msgstr "Imiterere"
+
+#: src/main/extractor.c:157
+#, fuzzy
+msgid "full name"
+msgstr "Izina ry'idosiye"
+
+# #-#-#-#-# officecfg.pot (PACKAGE VERSION) #-#-#-#-#
+# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.WriterObject.Table.Settings.Category.text
+# #-#-#-#-# officecfg.pot (PACKAGE VERSION) #-#-#-#-#
+# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.WriterObject.Frame.Settings.Category.text
+# #-#-#-#-# officecfg.pot (PACKAGE VERSION) #-#-#-#-#
+# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.WriterObject.Graphic.Settings.Category.text
+# #-#-#-#-# officecfg.pot (PACKAGE VERSION) #-#-#-#-#
+# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.OfficeObject.Calc.Settings.Category.text
+# #-#-#-#-# officecfg.pot (PACKAGE VERSION) #-#-#-#-#
+# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.OfficeObject.Draw.Settings.Category.text
+# #-#-#-#-# officecfg.pot (PACKAGE VERSION) #-#-#-#-#
+# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.OfficeObject.Chart.Settings.Category.text
+# #-#-#-#-# officecfg.pot (PACKAGE VERSION) #-#-#-#-#
+# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.OfficeObject.Image.Settings.Category.text
+# #-#-#-#-# officecfg.pot (PACKAGE VERSION) #-#-#-#-#
+# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.OfficeObject.Formula.Settings.Category.text
+# #-#-#-#-# officecfg.pot (PACKAGE VERSION) #-#-#-#-#
+# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.OfficeObject.Impress.Settings.Category.text
+# #-#-#-#-# officecfg.pot (PACKAGE VERSION) #-#-#-#-#
+# officecfg/registry\schema\org\openoffice\Office\Writer.xcs:....Insert.Caption.OfficeObject.OLEMisc.Settings.Category.text
+#: src/main/extractor.c:158
+#, fuzzy
+msgid "chapter"
+msgstr "Icyiciro"
+
+#: src/main/extractor.c:253
#, fuzzy, c-format
msgid "Initialization of plugin mechanism failed: %s!\n"
msgstr "Bya Byanze"
-#: src/main/extractor.c:397
+#: src/main/extractor.c:402
#, fuzzy, c-format
msgid ""
"Resolving symbol `%s' in library `%s' failed, so I tried `%s', but that "
"failed also. Errors are: `%s' and `%s'.\n"
msgstr "IKIMENYETSO in Isomero Byanze Byanze Na"
-#: src/main/extractor.c:426
+#: src/main/extractor.c:431
#, fuzzy, c-format
msgid "Loading `%s' plugin failed: %s\n"
msgstr "Byanze"
-#: src/main/extractor.c:631
+#: src/main/extractor.c:636
#, fuzzy, c-format
msgid "Unloading plugin `%s' failed!\n"
msgstr "Byanze"
@@ -1704,10 +1750,6 @@ msgstr ""
#~ msgid "Not a directory"
#~ msgstr "a bushyinguro"
-#, fuzzy
-#~ msgid "Is a directory"
-#~ msgstr "a bushyinguro"
-
#~ msgid "Invalid argument"
#~ msgstr "Inkoresha siyo"
diff --git a/po/sv.po b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libextractor 0.5.7\n"
"Report-Msgid-Bugs-To: libextractor@gnu.org\n"
-"POT-Creation-Date: 2006-04-28 22:42-0700\n"
+"POT-Creation-Date: 2006-05-17 00:53-0700\n"
"PO-Revision-Date: 2005-12-27 09:21+0100\n"
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
@@ -110,12 +110,12 @@ msgstr "extract [FLAGGOR] [FILNAMN]*"
msgid "Extract metadata from files."
msgstr "Plocka ut metadata från filer."
-#: src/main/extract.c:198 src/main/extractor.c:1144
+#: src/main/extract.c:198 src/main/extractor.c:1149
#, c-format
msgid "%s - (binary)\n"
msgstr "%s - (binär)\n"
-#: src/main/extract.c:204 src/main/extractor.c:1149
+#: src/main/extract.c:204 src/main/extractor.c:1154
#, c-format
msgid "INVALID TYPE - %s\n"
msgstr "OGILTIG TYP - %s\n"
@@ -592,12 +592,37 @@ msgstr "Musikal"
msgid "manager"
msgstr "paketerare"
-#: src/main/extractor.c:248
+#: src/main/extractor.c:154
+#, fuzzy
+msgid "director"
+msgstr "skapare"
+
+#: src/main/extractor.c:155
+#, fuzzy
+msgid "duration"
+msgstr "relation"
+
+#: src/main/extractor.c:156
+#, fuzzy
+msgid "information"
+msgstr "format"
+
+#: src/main/extractor.c:157
+#, fuzzy
+msgid "full name"
+msgstr "filnamn"
+
+#: src/main/extractor.c:158
+#, fuzzy
+msgid "chapter"
+msgstr "kategori"
+
+#: src/main/extractor.c:253
#, c-format
msgid "Initialization of plugin mechanism failed: %s!\n"
msgstr "Initiering av insticksmekanism misslyckades: %s!\n"
-#: src/main/extractor.c:397
+#: src/main/extractor.c:402
#, c-format
msgid ""
"Resolving symbol `%s' in library `%s' failed, so I tried `%s', but that "
@@ -606,12 +631,12 @@ msgstr ""
"Uppslag av symbol \"%s\" i bibliotek \"%s\" misslyckades så jag försökte med "
"\"%s\" men det misslyckades också. Felen är: \"%s\" och \"%s\".\n"
-#: src/main/extractor.c:426
+#: src/main/extractor.c:431
#, c-format
msgid "Loading `%s' plugin failed: %s\n"
msgstr "Inläsning av instick \"%s\" misslyckades: %s\n"
-#: src/main/extractor.c:631
+#: src/main/extractor.c:636
#, c-format
msgid "Unloading plugin `%s' failed!\n"
msgstr "Urläsning av instick \"%s\" misslyckades!\n"
diff --git a/po/vi.po b/po/vi.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: libextractor-0.5.7\n"
"Report-Msgid-Bugs-To: libextractor@gnu.org\n"
-"POT-Creation-Date: 2006-04-28 22:42-0700\n"
+"POT-Creation-Date: 2006-05-17 00:53-0700\n"
"PO-Revision-Date: 2006-01-11 13:24+1030\n"
"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
"Language-Team: Vietnamese <gnomevi-list@lists.sourceforge.net>\n"
@@ -119,12 +119,12 @@ msgstr ""
msgid "Extract metadata from files."
msgstr "Rút siêu dữ liệu ra tập tin."
-#: src/main/extract.c:198 src/main/extractor.c:1144
+#: src/main/extract.c:198 src/main/extractor.c:1149
#, c-format
msgid "%s - (binary)\n"
msgstr "%s - (nhị phân)\n"
-#: src/main/extract.c:204 src/main/extractor.c:1149
+#: src/main/extract.c:204 src/main/extractor.c:1154
#, c-format
msgid "INVALID TYPE - %s\n"
msgstr "KIỂU KHÔNG HỢP LỆ — %s\n"
@@ -605,12 +605,37 @@ msgstr "Kịch nhạc"
msgid "manager"
msgstr "nhà đóng gói"
-#: src/main/extractor.c:248
+#: src/main/extractor.c:154
+#, fuzzy
+msgid "director"
+msgstr "người tạo"
+
+#: src/main/extractor.c:155
+#, fuzzy
+msgid "duration"
+msgstr "liên quan"
+
+#: src/main/extractor.c:156
+#, fuzzy
+msgid "information"
+msgstr "định dạng"
+
+#: src/main/extractor.c:157
+#, fuzzy
+msgid "full name"
+msgstr "tên tập tin"
+
+#: src/main/extractor.c:158
+#, fuzzy
+msgid "chapter"
+msgstr "phân loại"
+
+#: src/main/extractor.c:253
#, c-format
msgid "Initialization of plugin mechanism failed: %s!\n"
msgstr "Việc khởi động cơ chế cầm phít bị lỗi: %s\n"
-#: src/main/extractor.c:397
+#: src/main/extractor.c:402
#, c-format
msgid ""
"Resolving symbol `%s' in library `%s' failed, so I tried `%s', but that "
@@ -619,12 +644,12 @@ msgstr ""
"Việc tháo gỡ ký hiệu « %s » trong thư viên « %s » bị lỗi, thì đã cố « %s », "
"nhưng mà nó cũng không thành công. Gặp lỗi « %s » và « %s ».\n"
-#: src/main/extractor.c:426
+#: src/main/extractor.c:431
#, c-format
msgid "Loading `%s' plugin failed: %s\n"
msgstr "Việc tải bộ cầm phít « %s » bị lỗi: %s\n"
-#: src/main/extractor.c:631
+#: src/main/extractor.c:636
#, c-format
msgid "Unloading plugin `%s' failed!\n"
msgstr "Việc bỏ tải bộ cầm phít « %s » bị lỗi.\n"
diff --git a/src/plugins/pdf/Makefile.am b/src/plugins/pdf/Makefile.am
@@ -42,9 +42,3 @@ libextractor_pdf_la_SOURCES = \
gmempp.cc\
parseargs.cc parseargs.h \
pdfextractor.cc
-
-# gcc 3.3 produces BROKEN code for -O1 and -O2 (PDF extraction
-# would fail silently) hence we MUST override the user flag here
-# which may contain -O1 or -O2!
-CXXFLAGS = "`echo "$(CXXFLAGS)" | sed -e "s/-O?//g"` -O0"
-