mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 13:53:19 +00:00
reorganize C/LIB flags add gst_info to gstcompat.h
Original commit message from CVS: reorganize C/LIB flags add gst_info to gstcompat.h
This commit is contained in:
parent
a84c8398c2
commit
e7b9201555
87 changed files with 1633 additions and 1370 deletions
64
ChangeLog
64
ChangeLog
|
@ -1,3 +1,67 @@
|
|||
2004-05-04 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* configure.ac:
|
||||
* docs/gst/Makefile.am:
|
||||
* docs/gst/gstreamer-sections.txt:
|
||||
* docs/gst/tmpl/gstcompat.sgml:
|
||||
* examples/appreader/Makefile.am:
|
||||
* examples/cutter/Makefile.am:
|
||||
* examples/events/Makefile.am:
|
||||
* examples/helloworld/Makefile.am:
|
||||
* examples/helloworld2/Makefile.am:
|
||||
* examples/launch/Makefile.am:
|
||||
* examples/manual/Makefile.am:
|
||||
* examples/mixer/Makefile.am:
|
||||
* examples/pingpong/Makefile.am:
|
||||
* examples/plugins/Makefile.am:
|
||||
* examples/queue/Makefile.am:
|
||||
* examples/queue2/Makefile.am:
|
||||
* examples/queue3/Makefile.am:
|
||||
* examples/queue4/Makefile.am:
|
||||
* examples/retag/Makefile.am:
|
||||
* examples/thread/Makefile.am:
|
||||
* examples/typefind/Makefile.am:
|
||||
* examples/xml/Makefile.am:
|
||||
* gst/Makefile.am:
|
||||
* gst/autoplug/Makefile.am:
|
||||
* gst/elements/Makefile.am:
|
||||
* gst/gstcompat.h:
|
||||
* gst/indexers/Makefile.am:
|
||||
* gst/parse/Makefile.am:
|
||||
* gst/registries/Makefile.am:
|
||||
* gst/schedulers/Makefile.am:
|
||||
* libs/gst/bytestream/Makefile.am:
|
||||
* libs/gst/control/Makefile.am:
|
||||
* libs/gst/getbits/Makefile.am:
|
||||
* po/af.po:
|
||||
* po/az.po:
|
||||
* po/en_GB.po:
|
||||
* po/fr.po:
|
||||
* po/nl.po:
|
||||
* po/sr.po:
|
||||
* po/sv.po:
|
||||
* po/tr.po:
|
||||
* po/uk.po:
|
||||
* tests/Makefile.am:
|
||||
* tests/bufspeed/Makefile.am:
|
||||
* tests/instantiate/Makefile.am:
|
||||
* tests/memchunk/Makefile.am:
|
||||
* tests/muxing/Makefile.am:
|
||||
* tests/negotiation/Makefile.am:
|
||||
* tests/probes/Makefile.am:
|
||||
* tests/sched/Makefile.am:
|
||||
* tests/seeking/Makefile.am:
|
||||
* tests/threadstate/Makefile.am:
|
||||
* testsuite/caps/Makefile.am:
|
||||
* testsuite/cleanup/Makefile.am:
|
||||
* testsuite/dlopen/Makefile.am:
|
||||
* testsuite/dynparams/Makefile.am:
|
||||
* testsuite/plugin/Makefile.am:
|
||||
* testsuite/states/Makefile.am:
|
||||
* tools/Makefile.am:
|
||||
reorganize compile/link flags to be consistent
|
||||
put gst_info in gstcompat.h and actually use GST_DISABLE_DEPRECATED
|
||||
|
||||
2004-05-04 David Schleef <ds@schleef.org>
|
||||
|
||||
The "once more, with feeling" check-in.
|
||||
|
|
84
configure.ac
84
configure.ac
|
@ -53,10 +53,14 @@ AC_DEFINE_UNQUOTED([LOCALEDIR], "$LOCALEDIR",
|
|||
|
||||
|
||||
dnl decide on error flags
|
||||
AS_COMPILER_FLAG(-Wall,GST_ERROR="$GST_ERROR -Wall",GST_ERROR="$GST_ERROR")
|
||||
if test "x$GST_CVS" = "xyes"; then
|
||||
AS_COMPILER_FLAG(-Werror,GST_ERROR="$GST_ERROR -Werror",GST_ERROR="$GST_ERROR")
|
||||
GST_ERROR="$GST_ERROR"
|
||||
dnl if we support -Wall, set it unconditionally
|
||||
AS_COMPILER_FLAG(-Wall,
|
||||
GST_ERROR_CFLAGS="-Wall",
|
||||
GST_ERROR_CFLAGS="")
|
||||
dnl if we're in nano >= 1, add -Werror if supported
|
||||
if test "x$GST_CVS" = "xyes"
|
||||
then
|
||||
AS_COMPILER_FLAG(-Werror, GST_ERROR_CFLAGS="$GST_ERROR_CFLAGS -Werror")
|
||||
fi
|
||||
|
||||
dnl We disable static building for development, for time savings
|
||||
|
@ -155,16 +159,6 @@ dnl code be compiled with the same sizeof(off_t), so we use
|
|||
dnl the following crude hack.
|
||||
dnl
|
||||
|
||||
dnl
|
||||
dnl GST_CFLAGS are split up as GST_EXT_CFLAGS and GST_INT_CFLAGS
|
||||
dnl same for libs
|
||||
dnl this is so we can make GST_CFLAGS for external modules available
|
||||
dnl without mixing in internal (uninstalled) CFLAGS
|
||||
dnl
|
||||
|
||||
dnl disable deprecated functions internally
|
||||
GST_INT_CFLAGS="-DGST_DISABLE_DEPRECATED"
|
||||
|
||||
AC_MSG_CHECKING(for large file support)
|
||||
AC_TRY_RUN([
|
||||
#define _LARGEFILE_SOURCE
|
||||
|
@ -173,14 +167,11 @@ AC_TRY_RUN([
|
|||
int main () { return !(sizeof(off_t) == 8); }
|
||||
],
|
||||
[
|
||||
AC_MSG_RESULT(yes)
|
||||
GST_EXT_CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
||||
AC_MSG_RESULT(yes)
|
||||
GST_PKG_CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64"
|
||||
],
|
||||
[
|
||||
AC_MSG_RESULT(no)
|
||||
],
|
||||
[
|
||||
AC_MSG_RESULT(no)
|
||||
AC_MSG_RESULT(no)
|
||||
])
|
||||
|
||||
dnl check for mmap
|
||||
|
@ -270,9 +261,6 @@ if test "x$HAVE_GLIB2" = "xno"; then
|
|||
AC_MSG_ERROR([GStreamer requires GLib $GLIB2_REQ to compile.])
|
||||
fi
|
||||
|
||||
GST_PKG_DEPS="glib-2.0, gobject-2.0, gmodule-2.0, gthread-2.0"
|
||||
AC_SUBST(GST_PKG_DEPS)
|
||||
|
||||
dnl Check for glib2 without extra fat, useful for the unversioned tool frontends
|
||||
PKG_CHECK_MODULES(GLIB_ONLY, glib-2.0 >= $GLIB2_REQ)
|
||||
AC_SUBST(GLIB_ONLY_CFLAGS)
|
||||
|
@ -555,34 +543,50 @@ PLUGINS_BUILDDIR=`pwd`
|
|||
AC_DEFINE_UNQUOTED(PLUGINS_BUILDDIR, "$PLUGINS_BUILDDIR", [Define the uninstalled plugin directory])
|
||||
AC_SUBST(PLUGINS_BUILDDIR)
|
||||
|
||||
dnl LDFLAGS modifier defining exported symbols from built objects
|
||||
EXPORT_LDFLAGS="-export-symbols-regex [_]*\(gst_\|Gst\|GST_\).*"
|
||||
|
||||
dnl GST_PKG_*: the flags we use that are also used
|
||||
dnl for external applications/.pc file
|
||||
dnl GST_LIB_*: used for the main library
|
||||
dnl GST_OBJ_*: the flags we use for all the objects internal to the core
|
||||
dnl GST_PLUGIN_*: additional flags we use for all plugins
|
||||
|
||||
dnl finalize _CFLAGS and _LIBS
|
||||
dnl flags exported for external applications and use in our pkg-config .pc files
|
||||
dnl since glib and xml are package deps, there's no need to include their cflags
|
||||
dnl in the pkg-config file
|
||||
|
||||
dnl for pkg-config
|
||||
GST_PKG_CFLAGS=$GST_EXT_CFLAGS
|
||||
GST_PKG_LIBS=$GST_EXT_LIBS
|
||||
GST_PKG_DEPS="glib-2.0, gobject-2.0, gmodule-2.0, gthread-2.0"
|
||||
AC_SUBST(GST_PKG_CFLAGS)
|
||||
AC_SUBST(GST_PKG_LIBS)
|
||||
AC_SUBST(GST_PKG_DEPS)
|
||||
|
||||
dnl finalize _CFLAGS and _LIBS
|
||||
dnl add GLIB and XML if necessary to EXT_*
|
||||
GST_CFLAGS="$GST_EXT_CFLAGS $XML_CFLAGS $GLIB_CFLAGS"
|
||||
GST_LIBS="$GST_EXT_LIBS $XML_LIBS $GLIB_LIBS -lpopt"
|
||||
dnl flags shared for all internal objects (core libs, elements, applications)
|
||||
dnl we disable deprecated internally
|
||||
dnl XML, GLib, popt, GST_INT, VALGRIND, and the right include for CFLAGS
|
||||
dnl no need to add XML, GLib, popt explicitly since libgstreamer pulls them in
|
||||
GST_INT_CFLAGS="$GLIB_CFLAGS $XML_CFLAGS \
|
||||
$GST_ERROR_CFLAGS -DGST_DISABLE_DEPRECATED"
|
||||
|
||||
dnl Private vars for libgst only
|
||||
LIBGST_LIBS="$GST_LIBS"
|
||||
LIBGST_CFLAGS="$GST_CFLAGS -I\$(top_srcdir) $GST_ERROR"
|
||||
AC_SUBST(LIBGST_LIBS)
|
||||
AC_SUBST(LIBGST_CFLAGS)
|
||||
GST_LIB_CFLAGS="$GST_PKG_CFLAGS $GST_INT_CFLAGS \
|
||||
$VALGRIND_CFLAGS -I\$(top_srcdir)"
|
||||
GST_LIB_LIBS="$XML_LIBS $GLIB_LIBS -lpopt $GST_PKG_LIBS $VALGRIND_LIBS"
|
||||
GST_LIB_LDFLAGS="$GST_LT_LDFLAGS -version-info $GST_LIBVERSION $EXPORT_LDFLAGS"
|
||||
AC_SUBST(GST_LIB_CFLAGS)
|
||||
AC_SUBST(GST_LIB_LIBS)
|
||||
AC_SUBST(GST_LIB_LDFLAGS)
|
||||
|
||||
dnl Vars for everyone else
|
||||
GST_INT_LIBS="\$(top_builddir)/gst/libgstreamer-$GST_MAJORMINOR.la"
|
||||
GST_INT_CFLAGS="$GST_INT_CFLAGS -I\$(top_srcdir)/libs -I\$(top_srcdir)/include"
|
||||
dnl Vars for all internal objects built on libgstreamer
|
||||
GST_OBJ_CFLAGS="$GST_INT_CFLAGS -I\$(top_srcdir)/libs -I\$(top_srcdir)"
|
||||
GST_OBJ_LIBS="\$(top_builddir)/gst/libgstreamer-$GST_MAJORMINOR.la"
|
||||
|
||||
AC_SUBST(GST_CFLAGS, "$LIBGST_CFLAGS $GST_INT_CFLAGS")
|
||||
AC_SUBST(GST_LIBS, "$LIBGST_LIBS $GST_INT_LIBS")
|
||||
AC_SUBST(GST_OBJ_CFLAGS, "$GST_OBJ_CFLAGS")
|
||||
AC_SUBST(GST_OBJ_LIBS, "$GST_OBJ_LIBS")
|
||||
|
||||
GST_PLUGIN_LDFLAGS="-module -avoid-version -export-symbols-regex [_]*\(gst_\|Gst\|GST_\).* $GST_LIBS"
|
||||
dnl specific additional LDFLAGS for plugins
|
||||
GST_PLUGIN_LDFLAGS="-module -avoid-version $EXPORT_LDFLAGS"
|
||||
AC_SUBST(GST_PLUGIN_LDFLAGS, "$GST_PLUGIN_LDFLAGS")
|
||||
|
||||
plugindir="\$(libdir)/gstreamer-$GST_MAJORMINOR"
|
||||
|
|
|
@ -105,8 +105,8 @@ extra_files =
|
|||
|
||||
# CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib
|
||||
# contains GtkObjects/GObjects and you want to document signals and properties.
|
||||
GTKDOC_CFLAGS = $(GST_CFLAGS) -I$(top_builddir)
|
||||
GTKDOC_LIBS = $(GST_LIBS) $(SCANOBJ_DEPS)
|
||||
GTKDOC_CFLAGS = $(GST_OBJ_CFLAGS) -I$(top_builddir)
|
||||
GTKDOC_LIBS = $(GST_OBJ_LIBS) $(SCANOBJ_DEPS)
|
||||
|
||||
GTKDOC_CC=$(LIBTOOL) --mode=compile $(CC)
|
||||
GTKDOC_LD=$(LIBTOOL) --mode=link $(CC)
|
||||
|
|
|
@ -220,6 +220,7 @@ GST_PAD_CONNECT_OK
|
|||
GST_PAD_CONNECT_DONE
|
||||
GstPadConnectReturn
|
||||
GstPadConnectFunction
|
||||
gst_info
|
||||
<SUBSECTION Standard>
|
||||
GST_PAD_IS_CONNECTED
|
||||
</SECTION>
|
||||
|
|
|
@ -166,3 +166,14 @@ gstcompat
|
|||
</para>
|
||||
|
||||
|
||||
<!-- ##### MACRO gst_info ##### -->
|
||||
<para>
|
||||
|
||||
</para>
|
||||
|
||||
@...:
|
||||
<!-- # Unused Parameters # -->
|
||||
@format:
|
||||
@args...:
|
||||
|
||||
|
||||
|
|
|
@ -78,8 +78,8 @@ extra_files =
|
|||
|
||||
# CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib
|
||||
# contains GtkObjects/GObjects and you want to document signals and properties.
|
||||
GTKDOC_CFLAGS = $(GST_CFLAGS) -I$(top_builddir)
|
||||
GTKDOC_LIBS = $(GST_LIBS) $(SCANOBJ_DEPS)
|
||||
GTKDOC_CFLAGS = $(GST_OBJ_CFLAGS) -I$(top_builddir)
|
||||
GTKDOC_LIBS = $(GST_OBJ_LIBS) $(SCANOBJ_DEPS)
|
||||
|
||||
GTKDOC_CC=$(LIBTOOL) --mode=compile $(CC)
|
||||
GTKDOC_LD=$(LIBTOOL) --mode=link $(CC)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = appreader
|
||||
|
||||
appreader_LDADD = $(GST_LIBS)
|
||||
appreader_CFLAGS = $(GST_CFLAGS)
|
||||
appreader_LDADD = $(GST_OBJ_LIBS)
|
||||
appreader_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = cutter
|
||||
noinst_HEADERS = cutter.h
|
||||
|
||||
cutter_LDADD = $(GST_LIBS)
|
||||
cutter_CFLAGS = $(GST_CFLAGS)
|
||||
cutter_LDADD = $(GST_OBJ_LIBS)
|
||||
cutter_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
noinst_PROGRAMS = seek
|
||||
|
||||
LDADD = $(GST_LIBS)
|
||||
AM_CFLAGS = $(GST_CFLAGS)
|
||||
LDADD = $(GST_OBJ_LIBS)
|
||||
AM_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
noinst_PROGRAMS = helloworld
|
||||
|
||||
helloworld_LDADD = $(GST_LIBS)
|
||||
helloworld_CFLAGS = $(GST_CFLAGS)
|
||||
helloworld_LDADD = $(GST_OBJ_LIBS)
|
||||
helloworld_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = helloworld2
|
||||
|
||||
helloworld2_LDADD = $(GST_LIBS)
|
||||
helloworld2_CFLAGS = $(GST_CFLAGS)
|
||||
helloworld2_LDADD = $(GST_OBJ_LIBS)
|
||||
helloworld2_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
noinst_PROGRAMS = mp3parselaunch
|
||||
|
||||
mp3parselaunch_LDADD = $(GST_LIBS)
|
||||
mp3parselaunch_CFLAGS = $(GST_CFLAGS)
|
||||
mp3parselaunch_LDADD = $(GST_OBJ_LIBS)
|
||||
mp3parselaunch_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
noinst_SCRIPTS = mp3play
|
||||
EXTRA_DIST = mp3play
|
||||
|
|
|
@ -13,13 +13,13 @@ endif
|
|||
EXAMPLES = dynamic $(GNOME) helloworld queue threads $(GST_LOADSAVE_SRC)
|
||||
noinst_PROGRAMS = $(EXAMPLES)
|
||||
|
||||
LDADD = $(GST_LIBS)
|
||||
INCLUDES = $(GST_CFLAGS)
|
||||
LDADD = $(GST_OBJ_LIBS)
|
||||
INCLUDES = $(GST_OBJ_CFLAGS)
|
||||
|
||||
#dynamic_LDADD = $(GST_LIBS) $(LIBGNOMEUI_LIBS)
|
||||
#dynamic_CFLAGS = $(GST_CFLAGS) $(LIBGNOMEUI_CFLAGS)
|
||||
gnome_LDADD = $(GST_LIBS) $(LIBGNOMEUI_LIBS)
|
||||
gnome_CFLAGS = $(GST_CFLAGS) $(LIBGNOMEUI_CFLAGS)
|
||||
#dynamic_LDADD = $(GST_OBJ_LIBS) $(LIBGNOMEUI_LIBS)
|
||||
#dynamic_CFLAGS = $(GST_OBJ_CFLAGS) $(LIBGNOMEUI_CFLAGS)
|
||||
gnome_LDADD = $(GST_OBJ_LIBS) $(LIBGNOMEUI_LIBS)
|
||||
gnome_CFLAGS = $(GST_OBJ_CFLAGS) $(LIBGNOMEUI_CFLAGS)
|
||||
|
||||
EXTRA_DIST = extract.pl
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = mixer
|
||||
noinst_HEADERS = mixer.h
|
||||
|
||||
mixer_LDADD = $(GST_LIBS)
|
||||
mixer_CFLAGS = $(GST_CFLAGS)
|
||||
mixer_LDADD = $(GST_OBJ_LIBS)
|
||||
mixer_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = pingpong
|
||||
|
||||
pingpong_LDADD = $(GST_LIBS)
|
||||
pingpong_CFLAGS = $(GST_CFLAGS)
|
||||
pingpong_LDADD = $(GST_OBJ_LIBS)
|
||||
pingpong_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
plugin_LTLIBRARIES = libgstexample.la
|
||||
|
||||
libgstexample_la_SOURCES = example.c
|
||||
libgstexample_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstexample_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libgstexample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = example.h
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = queue
|
||||
|
||||
queue_LDADD = $(GST_LIBS)
|
||||
queue_CFLAGS = $(GST_CFLAGS)
|
||||
queue_LDADD = $(GST_OBJ_LIBS)
|
||||
queue_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = queue2
|
||||
|
||||
queue2_LDADD = $(GST_LIBS)
|
||||
queue2_CFLAGS = $(GST_CFLAGS)
|
||||
queue2_LDADD = $(GST_OBJ_LIBS)
|
||||
queue2_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = queue3
|
||||
|
||||
queue3_LDADD = $(GST_LIBS)
|
||||
queue3_CFLAGS = $(GST_CFLAGS)
|
||||
queue3_LDADD = $(GST_OBJ_LIBS)
|
||||
queue3_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = queue4
|
||||
|
||||
queue4_LDADD = $(GST_LIBS)
|
||||
queue4_CFLAGS = $(GST_CFLAGS)
|
||||
queue4_LDADD = $(GST_OBJ_LIBS)
|
||||
queue4_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
noinst_PROGRAMS = retag transcode
|
||||
|
||||
retag_LDADD = $(GST_LIBS)
|
||||
retag_CFLAGS = $(GST_CFLAGS)
|
||||
retag_LDADD = $(GST_OBJ_LIBS)
|
||||
retag_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
transcode_LDADD = $(GST_LIBS)
|
||||
transcode_CFLAGS = $(GST_CFLAGS)
|
||||
transcode_LDADD = $(GST_OBJ_LIBS)
|
||||
transcode_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = thread
|
||||
|
||||
thread_LDADD = $(GST_LIBS)
|
||||
thread_CFLAGS = $(GST_CFLAGS)
|
||||
thread_LDADD = $(GST_OBJ_LIBS)
|
||||
thread_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = typefind
|
||||
|
||||
typefind_LDADD = $(GST_LIBS)
|
||||
typefind_CFLAGS = $(GST_CFLAGS)
|
||||
typefind_LDADD = $(GST_OBJ_LIBS)
|
||||
typefind_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
noinst_PROGRAMS = createxml runxml
|
||||
|
||||
createxml_LDADD = $(GST_LIBS)
|
||||
createxml_CFLAGS = $(GST_CFLAGS)
|
||||
runxml_LDADD = $(GST_LIBS)
|
||||
runxml_CFLAGS = $(GST_CFLAGS)
|
||||
createxml_LDADD = $(GST_OBJ_LIBS)
|
||||
createxml_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
runxml_LDADD = $(GST_OBJ_LIBS)
|
||||
runxml_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -138,14 +138,13 @@ CLEANFILES = $(built_header_make) $(built_source_make) $(as_dll_cleanfiles)
|
|||
# DISTCLEANFILES is for files generated by configure
|
||||
DISTCLEANFILES = $(built_header_configure)
|
||||
|
||||
libgstreamer_@GST_MAJORMINOR@_la_CFLAGS = \
|
||||
libgstreamer_@GST_MAJORMINOR@_la_CFLAGS = \
|
||||
-D_GNU_SOURCE \
|
||||
$(GST_CFLAGS) \
|
||||
$(VALGRIND_CFLAGS) \
|
||||
$(GST_LIB_CFLAGS) \
|
||||
-DG_LOG_DOMAIN=g_log_domain_gstreamer \
|
||||
-DGST_MAJORMINOR=\""$(GST_MAJORMINOR)"\"
|
||||
libgstreamer_@GST_MAJORMINOR@_la_LIBADD = \
|
||||
$(LIBGST_LIBS) $(GST_PARSE_LIBADD) $(GST_REGISTRY_LIBADD) $(VALGRIND_LIBS)
|
||||
$(GST_LIB_LIBS) $(GST_PARSE_LIBADD) $(GST_REGISTRY_LIBADD)
|
||||
libgstreamer_@GST_MAJORMINOR@_la_LDFLAGS = \
|
||||
@GST_LT_LDFLAGS@ -version-info @GST_LIBVERSION@ \
|
||||
-export-symbols-regex [_]*\(gst_\|Gst\|GST_\).* \
|
||||
|
|
|
@ -8,8 +8,8 @@ noinst_DATA = $(as_libtool_noinst_DATA_files)
|
|||
libgstspider_la_SOURCES = \
|
||||
gstspider.c gstspideridentity.c \
|
||||
gstsearchfuncs.c
|
||||
libgstspider_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstspider_la_LIBADD =
|
||||
libgstspider_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libgstspider_la_LIBADD = $(GST_OBJ_LIBS)
|
||||
libgstspider_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = gstspider.h gstspideridentity.h gstsearchfuncs.h
|
||||
|
@ -17,8 +17,8 @@ noinst_HEADERS = gstspider.h gstspideridentity.h gstsearchfuncs.h
|
|||
noinst_PROGRAMS = spidertest
|
||||
|
||||
spidertest_SOURCES = spidertest.c
|
||||
spidertest_CFLAGS = $(GST_CFLAGS)
|
||||
spidertest_LDADD = $(GST_LIBS)
|
||||
spidertest_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
spidertest_LDADD = $(GST_OBJ_LIBS)
|
||||
|
||||
install-data-local: as-libtool-install-data-local
|
||||
|
||||
|
|
|
@ -42,8 +42,8 @@ libgstelements_la_SOURCES = \
|
|||
gsttee.c \
|
||||
gsttypefindelement.c
|
||||
|
||||
libgstelements_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstelements_la_LIBADD =
|
||||
libgstelements_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libgstelements_la_LIBADD = $(GST_OBJ_LIBS)
|
||||
libgstelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* Copyright (C) 1999,2000 Erik Walthinsen <omega@cse.ogi.edu>
|
||||
* 2000 Wim Taymans <wtay@chello.be>
|
||||
*
|
||||
* gst.h: Main header for GStreamer, apps should include this
|
||||
* gstcompat.h: backwards compatibility stuff
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
|
@ -28,7 +28,7 @@
|
|||
G_BEGIN_DECLS
|
||||
|
||||
#ifndef GST_DISABLE_DEPRECATED
|
||||
/* 0.5.2 changes */
|
||||
/* 0.5.2 changes; remove these ASAP */
|
||||
|
||||
/* element functions */
|
||||
#define gst_element_connect(a,b) gst_element_link(a,b)
|
||||
|
@ -71,6 +71,15 @@ typedef GstPadLinkFunction GstPadConnectFunction;
|
|||
/*
|
||||
* GST_RPAD_LINKFUNC
|
||||
*/
|
||||
|
||||
/* 0.8.1.1 removal; remove completely in 0.9 */
|
||||
/* information messages */
|
||||
# ifdef G_HAVE_ISO_VARARGS
|
||||
#define gst_info(...) GST_INFO(__VA_ARGS__)
|
||||
# elif defined(G_HAVE_GNUC_VARARGS)
|
||||
#define gst_info(format,args...) GST_INFO(format,##args)
|
||||
# endif
|
||||
|
||||
#endif /* not GST_DISABLE_DEPRECATED */
|
||||
|
||||
G_END_DECLS
|
||||
|
|
|
@ -13,8 +13,8 @@ GST_LOADSAVE_SRC = gstfileindex.c
|
|||
endif
|
||||
|
||||
libgstindexers_la_SOURCES = gstindexers.c gstmemindex.c $(GST_LOADSAVE_SRC)
|
||||
libgstindexers_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstindexers_la_LIBADD =
|
||||
libgstindexers_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libgstindexers_la_LIBADD = $(GST_OBJ_LIBS)
|
||||
libgstindexers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
||||
|
||||
install-data-local: as-libtool-install-data-local
|
||||
|
|
|
@ -13,8 +13,8 @@ EXTRA_DIST = grammar.y parse.l types.h
|
|||
nodist_libgstparse_la_SOURCES = lex._gst_parse_yy.c grammar.tab.c
|
||||
CLEANFILES += grammar.tab.c lex._gst_parse_yy.c
|
||||
|
||||
libgstparse_la_CFLAGS = $(GST_CFLAGS) $(DISABLE_FLEX_WARNING)
|
||||
libgstparse_la_LIBADD = $(LIBGST_LIBS)
|
||||
libgstparse_la_CFLAGS = $(GST_LIB_CFLAGS) $(DISABLE_FLEX_WARNING)
|
||||
libgstparse_la_LIBADD = $(GST_LIB_LIBS)
|
||||
|
||||
noinst_HEADERS = grammar.tab.h
|
||||
|
||||
|
|
|
@ -2,12 +2,12 @@ noinst_LTLIBRARIES = libgstxmlregistry.la
|
|||
|
||||
libgstxmlregistry_la_SOURCES = gstxmlregistry.c
|
||||
|
||||
libgstxmlregistry_la_CFLAGS = $(LIBGST_CFLAGS)
|
||||
libgstxmlregistry_la_LIBADD = $(LIBGST_LIBS)
|
||||
libgstxmlregistry_la_CFLAGS = $(GST_LIB_CFLAGS)
|
||||
libgstxmlregistry_la_LIBADD = $(GST_LIB_LIBS)
|
||||
|
||||
noinst_HEADERS = gstxmlregistry.h
|
||||
check_PROGRAMS = registrytest
|
||||
|
||||
registrytest_SOURCES = registrytest.c
|
||||
registrytest_CFLAGS = $(GST_CFLAGS)
|
||||
registrytest_LDADD = $(GST_LIBS) libgstxmlregistry.la
|
||||
registrytest_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
registrytest_LDADD = $(GST_OBJ_LIBS) libgstxmlregistry.la
|
||||
|
|
|
@ -29,41 +29,45 @@ AS_LIBTOOL_LIBS = \
|
|||
if GST_DISABLE_OMEGA_COTHREADS
|
||||
else
|
||||
libgstbasicomegascheduler_la_SOURCES = gstbasicscheduler.c
|
||||
libgstbasicomegascheduler_la_CFLAGS = $(GST_CFLAGS) -D_COTHREADS_OMEGA
|
||||
libgstbasicomegascheduler_la_LIBADD = ../libcothreads.la
|
||||
libgstbasicomegascheduler_la_CFLAGS = $(GST_OBJ_CFLAGS) -D_COTHREADS_OMEGA
|
||||
libgstbasicomegascheduler_la_LIBADD = $(GST_OBJ_LIBS) ../libcothreads.la
|
||||
libgstbasicomegascheduler_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
||||
endif
|
||||
|
||||
libgstbasicgthreadscheduler_la_SOURCES = gstbasicscheduler.c
|
||||
libgstbasicgthreadscheduler_la_CFLAGS = $(GST_CFLAGS) -D_COTHREADS_GTHREAD
|
||||
libgstbasicgthreadscheduler_la_CFLAGS = $(GST_OBJ_CFLAGS) -D_COTHREADS_GTHREAD
|
||||
libgstbasicgthreadscheduler_la_LIBADD = $(GST_OBJ_LIBS)
|
||||
libgstbasicgthreadscheduler_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
||||
|
||||
libgstentrygthreadscheduler_la_SOURCES = entryscheduler.c
|
||||
libgstentrygthreadscheduler_la_CFLAGS = $(GST_CFLAGS) -D_COTHREADS_GTHREAD
|
||||
libgstentrygthreadscheduler_la_CFLAGS = $(GST_OBJ_CFLAGS) -D_COTHREADS_GTHREAD
|
||||
libgstentrygthreadscheduler_la_LIBADD = $(GST_OBJ_LIBS)
|
||||
libgstentrygthreadscheduler_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
||||
|
||||
if GST_DISABLE_OMEGA_COTHREADS
|
||||
else
|
||||
libgstentryomegascheduler_la_SOURCES = entryscheduler.c
|
||||
libgstentryomegascheduler_la_CFLAGS = $(GST_CFLAGS) -D_COTHREADS_OMEGA
|
||||
libgstentryomegascheduler_la_LIBADD = ../libcothreads.la
|
||||
libgstentryomegascheduler_la_CFLAGS = $(GST_OBJ_CFLAGS) -D_COTHREADS_OMEGA
|
||||
libgstentryomegascheduler_la_LIBADD = $(GST_OBJ_LIBS) ../libcothreads.la
|
||||
libgstentryomegascheduler_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
||||
endif
|
||||
|
||||
libgstoptscheduler_la_SOURCES = gstoptimalscheduler.c
|
||||
libgstoptscheduler_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstoptscheduler_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libgstoptscheduler_la_LIBADD = $(GST_OBJ_LIBS)
|
||||
libgstoptscheduler_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
||||
|
||||
if GST_DISABLE_OMEGA_COTHREADS
|
||||
else
|
||||
libgstoptomegascheduler_la_SOURCES = gstoptimalscheduler.c
|
||||
libgstoptomegascheduler_la_CFLAGS = $(GST_CFLAGS) -D_COTHREADS_OMEGA -DUSE_COTHREADS
|
||||
libgstoptomegascheduler_la_LIBADD = ../libcothreads.la
|
||||
libgstoptomegascheduler_la_CFLAGS = $(GST_OBJ_CFLAGS) -D_COTHREADS_OMEGA -DUSE_COTHREADS
|
||||
libgstoptomegascheduler_la_LIBADD = $(GST_OBJ_LIBS) ../libcothreads.la
|
||||
libgstoptomegascheduler_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
||||
endif
|
||||
|
||||
libgstoptgthreadscheduler_la_SOURCES = gstoptimalscheduler.c
|
||||
libgstoptgthreadscheduler_la_CFLAGS = $(GST_CFLAGS) -D_COTHREADS_GTHREAD -DUSE_COTHREADS
|
||||
libgstoptgthreadscheduler_la_CFLAGS = $(GST_OBJ_CFLAGS) -D_COTHREADS_GTHREAD -DUSE_COTHREADS
|
||||
libgstoptgthreadscheduler_la_LIBADD = $(GST_OBJ_LIBS)
|
||||
libgstoptgthreadscheduler_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = cothreads_compat.h gthread-cothreads.h
|
||||
|
|
|
@ -8,8 +8,9 @@ noinst_DATA = $(as_libtool_noinst_DATA_files)
|
|||
libgstbytestreamincludedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/bytestream
|
||||
libgstbytestreaminclude_HEADERS = bytestream.h adapter.h
|
||||
|
||||
libgstbytestream_la_SOURCES = bytestream.c adapter.c
|
||||
libgstbytestream_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstbytestream_la_SOURCES = bytestream.c
|
||||
libgstbytestream_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libgstbytestream_la_LIBS = $(GST_OBJ_LIBS)
|
||||
libgstbytestream_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
||||
|
||||
install-data-local: as-libtool-install-data-local
|
||||
|
|
|
@ -23,10 +23,10 @@ libgstcontrol_@GST_MAJORMINOR@_la_SOURCES = \
|
|||
unitconvert.c \
|
||||
dplinearinterp.c
|
||||
|
||||
libgstcontrol_@GST_MAJORMINOR@_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstcontrol_@GST_MAJORMINOR@_la_LDFLAGS = @GST_LT_LDFLAGS@ -version-info @GST_LIBVERSION@ $(as_libtool_LDFLAGS)
|
||||
libgstcontrol_@GST_MAJORMINOR@_la_CFLAGS = $(GST_LIB_CFLAGS) -I$(top_srcdir)/libs
|
||||
libgstcontrol_@GST_MAJORMINOR@_la_LDFLAGS = @GST_LIB_LDFLAGS@ $(as_libtool_LDFLAGS)
|
||||
# control uses log and exp, so we need -lm if xml is disabled
|
||||
libgstcontrol_@GST_MAJORMINOR@_la_LIBADD = $(GST_LIBS) -lm
|
||||
libgstcontrol_@GST_MAJORMINOR@_la_LIBADD = $(GST_LIB_LIBS) -lm
|
||||
|
||||
install-data-local: as-libtool-install-data-local
|
||||
|
||||
|
|
|
@ -18,8 +18,8 @@ noinst_HEADERS = gstgetbits_inl.h
|
|||
libgstgetbits_la_SOURCES = getbits.c gstgetbits_inl.h gstgetbits_generic.c $(GSTARCH_SRCS)
|
||||
EXTRA_libgstgetbits_la_SOURCES = gstgetbits_i386.s
|
||||
|
||||
libgstgetbits_la_CFLAGS = $(GST_CFLAGS) -funroll-all-loops -finline-functions -ffast-math
|
||||
libgstgetbits_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
||||
libgstgetbits_la_CFLAGS = $(GST_OBJ_CFLAGS) -funroll-all-loops -finline-functions -ffast-math
|
||||
libgstgetbits_la_LDFLAGS = $(GST_OBJ_LIBS) $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
||||
|
||||
# check_PROGRAMS = gbtest
|
||||
|
||||
|
|
|
@ -42,8 +42,8 @@ libgstelements_la_SOURCES = \
|
|||
gsttee.c \
|
||||
gsttypefindelement.c
|
||||
|
||||
libgstelements_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstelements_la_LIBADD =
|
||||
libgstelements_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libgstelements_la_LIBADD = $(GST_OBJ_LIBS)
|
||||
libgstelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = \
|
||||
|
|
|
@ -13,8 +13,8 @@ GST_LOADSAVE_SRC = gstfileindex.c
|
|||
endif
|
||||
|
||||
libgstindexers_la_SOURCES = gstindexers.c gstmemindex.c $(GST_LOADSAVE_SRC)
|
||||
libgstindexers_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstindexers_la_LIBADD =
|
||||
libgstindexers_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libgstindexers_la_LIBADD = $(GST_OBJ_LIBS)
|
||||
libgstindexers_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
||||
|
||||
install-data-local: as-libtool-install-data-local
|
||||
|
|
352
po/af.po
352
po/af.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gstreamer 0.8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-03-16 00:10+0100\n"
|
||||
"POT-Creation-Date: 2004-05-04 13:46+0200\n"
|
||||
"PO-Revision-Date: 2004-03-24 11:28+0200\n"
|
||||
"Last-Translator: Petri Jooste <rkwjpj@puk.ac.za>\n"
|
||||
"Language-Team: Afrikaans <i18n@af.org.za>\n"
|
||||
|
@ -15,100 +15,106 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=ISO-8859-1\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: gst/gst.c:121
|
||||
#: gst/gst.c:129
|
||||
msgid "Print the GStreamer version"
|
||||
msgstr "Vertoon die GStreamer weergawe"
|
||||
|
||||
#: gst/gst.c:123
|
||||
#: gst/gst.c:131
|
||||
msgid "Make all warnings fatal"
|
||||
msgstr "Maak alle waarskuwings fataal"
|
||||
|
||||
#: gst/gst.c:127
|
||||
#: gst/gst.c:135
|
||||
msgid "Print available debug categories and exit"
|
||||
msgstr "Vertoon beskikbare ontfoutkategorië en stop"
|
||||
|
||||
#: gst/gst.c:131
|
||||
msgid "Default debug level from 1 (only error) to 5 (anything) or 0 for no output"
|
||||
msgstr "Verstek ontfoutvlak vanaf 1 (slegs fout) tot 5 (enigiets) of 0 vir geen afvoer"
|
||||
#: gst/gst.c:138
|
||||
msgid ""
|
||||
"Default debug level from 1 (only error) to 5 (anything) or 0 for no output"
|
||||
msgstr ""
|
||||
"Verstek ontfoutvlak vanaf 1 (slegs fout) tot 5 (enigiets) of 0 vir geen "
|
||||
"afvoer"
|
||||
|
||||
#: gst/gst.c:132
|
||||
#: gst/gst.c:140
|
||||
msgid "LEVEL"
|
||||
msgstr "VLAK"
|
||||
|
||||
#: gst/gst.c:135
|
||||
msgid "Comma-separated list of category_name:level pairs to set specific levels for the individual categories. Example: GST_AUTOPLUG:5,GST_ELEMENT_*:3"
|
||||
msgstr "Komma-geskeide lys van kategorie_naam:vlak pare om die individuele kategorieë op te stel. Byvoorbeeld: GST_AUTOPLUG:5,GST_ELEMENT_*:3"
|
||||
#: gst/gst.c:142
|
||||
msgid ""
|
||||
"Comma-separated list of category_name:level pairs to set specific levels for "
|
||||
"the individual categories. Example: GST_AUTOPLUG:5,GST_ELEMENT_*:3"
|
||||
msgstr ""
|
||||
"Komma-geskeide lys van kategorie_naam:vlak pare om die individuele "
|
||||
"kategorieë op te stel. Byvoorbeeld: GST_AUTOPLUG:5,GST_ELEMENT_*:3"
|
||||
|
||||
#: gst/gst.c:136
|
||||
#: gst/gst.c:145
|
||||
msgid "LIST"
|
||||
msgstr "LYS"
|
||||
|
||||
#: gst/gst.c:138
|
||||
#: gst/gst.c:147
|
||||
msgid "Disable colored debugging output"
|
||||
msgstr "Skakel gekleurde ontfout-afvoer af"
|
||||
|
||||
#: gst/gst.c:140
|
||||
#: gst/gst.c:149
|
||||
msgid "Disable debugging"
|
||||
msgstr "Skakel ontfouting af"
|
||||
|
||||
#: gst/gst.c:144
|
||||
#: gst/gst.c:153
|
||||
msgid "Disable accelerated CPU instructions"
|
||||
msgstr "Skakel versnelde SVE-instruksies af"
|
||||
|
||||
#: gst/gst.c:146
|
||||
#: gst/gst.c:155
|
||||
msgid "Enable verbose plugin loading diagnostics"
|
||||
msgstr "Aktiveer volledige diagnostiese boodskappe vir inproplaaiing"
|
||||
|
||||
#: gst/gst.c:149
|
||||
msgid "path list for loading plugins (separated by '"
|
||||
msgstr "lys van paaie waaruit inproppe gelaai word (geskei met '"
|
||||
|
||||
#: gst/gst.c:150
|
||||
msgid "')"
|
||||
msgstr "')"
|
||||
|
||||
#: gst/gst.c:150
|
||||
#: gst/gst.c:157
|
||||
msgid "PATHS"
|
||||
msgstr "PAAIE"
|
||||
|
||||
#: gst/gst.c:154
|
||||
msgid "Comma-separated list of plugins to preload in addition to the list stored in env variable GST_PLUGIN_PATH"
|
||||
msgstr "Komma-geskeide lys van inproppe om vooraf te laai by die lys gestoor in die omgewingsveranderlike GST_PLUGIN_PATH"
|
||||
#: gst/gst.c:160
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Comma-separated list of plugins to preload in addition to the list stored in "
|
||||
"envronment variable GST_PLUGIN_PATH"
|
||||
msgstr ""
|
||||
"Komma-geskeide lys van inproppe om vooraf te laai by die lys gestoor in die "
|
||||
"omgewingsveranderlike GST_PLUGIN_PATH"
|
||||
|
||||
#: gst/gst.c:155
|
||||
#: gst/gst.c:162
|
||||
msgid "PLUGINS"
|
||||
msgstr "INPROPPE"
|
||||
|
||||
#: gst/gst.c:158
|
||||
#: gst/gst.c:165
|
||||
msgid "Disable trapping of segmentation faults during plugin loading"
|
||||
msgstr "Moenie segmenteringsfoute tydens inproplaaiing ondervang nie"
|
||||
|
||||
#: gst/gst.c:162
|
||||
msgid "Scheduler to use ('"
|
||||
msgstr "Skeduleerder om te gebruik ('"
|
||||
|
||||
#: gst/gst.c:163
|
||||
msgid "' is the default)"
|
||||
msgstr "' is die verstekwaarde)"
|
||||
|
||||
#: gst/gst.c:163
|
||||
#: gst/gst.c:168
|
||||
msgid "SCHEDULER"
|
||||
msgstr "SKEDULEERDER"
|
||||
|
||||
#: gst/gst.c:165
|
||||
#: gst/gst.c:170
|
||||
msgid "Registry to use"
|
||||
msgstr "Register om te gebruik"
|
||||
|
||||
#: gst/gst.c:165
|
||||
#: gst/gst.c:170
|
||||
msgid "REGISTRY"
|
||||
msgstr "REGISTER"
|
||||
|
||||
#: gst/gstelement.c:252
|
||||
#: gst/gst.c:183
|
||||
#, fuzzy, c-format
|
||||
msgid "path list for loading plugins (separated by '%s')"
|
||||
msgstr "lys van paaie waaruit inproppe gelaai word (geskei met '"
|
||||
|
||||
#: gst/gst.c:187
|
||||
#, fuzzy, c-format
|
||||
msgid "Scheduler to use (default is '%s')"
|
||||
msgstr "Skeduleerder om te gebruik ('"
|
||||
|
||||
#: gst/gstelement.c:253
|
||||
#, c-format
|
||||
msgid "ERROR: from element %s: %s\n"
|
||||
msgstr "FOUT: vanaf element %s: %s\n"
|
||||
|
||||
#: gst/gstelement.c:254
|
||||
#: gst/gstelement.c:255
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Additional debug info:\n"
|
||||
|
@ -122,16 +128,22 @@ msgid "GStreamer encountered a general core library error."
|
|||
msgstr "GStreamer het 'n fout teëgekom in die algemene kernbiblioteek."
|
||||
|
||||
#: gst/gsterror.c:58 gst/gsterror.c:95 gst/gsterror.c:115 gst/gsterror.c:145
|
||||
msgid "GStreamer developers were too lazy to assign an error code to this error. Please file a bug."
|
||||
msgstr "GStreamer ontwikkelaars was te lui om 'n foutkode vir hierdie fout toe te ken. Meld asb. die fout aan."
|
||||
msgid ""
|
||||
"GStreamer developers were too lazy to assign an error code to this error. "
|
||||
"Please file a bug."
|
||||
msgstr ""
|
||||
"GStreamer ontwikkelaars was te lui om 'n foutkode vir hierdie fout toe te "
|
||||
"ken. Meld asb. die fout aan."
|
||||
|
||||
#: gst/gsterror.c:61
|
||||
msgid "Internal GStreamer error: code not implemented. File a bug."
|
||||
msgstr "Interne GStreamer-fout: \"code not implemented\". Meld die fout aan asb."
|
||||
msgstr ""
|
||||
"Interne GStreamer-fout: \"code not implemented\". Meld die fout aan asb."
|
||||
|
||||
#: gst/gsterror.c:63
|
||||
msgid "Internal GStreamer error: state change failed. File a bug."
|
||||
msgstr "Interne GStreamer-fout: \"state change failed\". Meld die fout aan asb."
|
||||
msgstr ""
|
||||
"Interne GStreamer-fout: \"state change failed\". Meld die fout aan asb."
|
||||
|
||||
#: gst/gsterror.c:65
|
||||
msgid "Internal GStreamer error: pad problem. File a bug."
|
||||
|
@ -147,7 +159,8 @@ msgstr "Interne GStreamer-fout: \"scheduler problem\". Meld die fout aan asb."
|
|||
|
||||
#: gst/gsterror.c:71
|
||||
msgid "Internal GStreamer error: negotiation problem. File a bug."
|
||||
msgstr "Interne GStreamer-fout: \"negotiation problem\". Meld die fout aan asb."
|
||||
msgstr ""
|
||||
"Interne GStreamer-fout: \"negotiation problem\". Meld die fout aan asb."
|
||||
|
||||
#: gst/gsterror.c:73
|
||||
msgid "Internal GStreamer error: event problem. File a bug."
|
||||
|
@ -167,7 +180,8 @@ msgstr "Interne GStreamer-fout: \"tag problem\". Meld die fout aan asb."
|
|||
|
||||
#: gst/gsterror.c:93 gst/gsterror.c:113 gst/gsterror.c:143
|
||||
msgid "GStreamer encountered a general supporting library error."
|
||||
msgstr "GStreamer het 'n fout teëgekom in 'n algemene ondersteuningsbiblioteek."
|
||||
msgstr ""
|
||||
"GStreamer het 'n fout teëgekom in 'n algemene ondersteuningsbiblioteek."
|
||||
|
||||
#: gst/gsterror.c:97
|
||||
msgid "Could not initialize supporting library."
|
||||
|
@ -223,7 +237,9 @@ msgstr "Kon nie hulpbronstellings verkry/verander nie."
|
|||
|
||||
#: gst/gsterror.c:148
|
||||
msgid "Element doesn't implement handling of this stream. Please file a bug."
|
||||
msgstr "Element implementeer nie die hantering van hierdie stroom nie. Meld asb. 'n fout aan."
|
||||
msgstr ""
|
||||
"Element implementeer nie die hantering van hierdie stroom nie. Meld asb. 'n "
|
||||
"fout aan."
|
||||
|
||||
#: gst/gsterror.c:150
|
||||
msgid "Could not determine type of stream."
|
||||
|
@ -231,11 +247,14 @@ msgstr "Kon nie die stroomtipe bepaal nie."
|
|||
|
||||
#: gst/gsterror.c:152
|
||||
msgid "The stream is of a different type than handled by this element."
|
||||
msgstr "Die stroom is nie van dieselfde tipe as wat deur die element hanteer word nie."
|
||||
msgstr ""
|
||||
"Die stroom is nie van dieselfde tipe as wat deur die element hanteer word "
|
||||
"nie."
|
||||
|
||||
#: gst/gsterror.c:154
|
||||
msgid "There is no codec present that can handle the stream's type."
|
||||
msgstr "Daar is nie 'n kodek beskikbaar om hierdie stroom se tipe te hanteer nie."
|
||||
msgstr ""
|
||||
"Daar is nie 'n kodek beskikbaar om hierdie stroom se tipe te hanteer nie."
|
||||
|
||||
#: gst/gsterror.c:155
|
||||
msgid "Could not decode stream."
|
||||
|
@ -267,415 +286,424 @@ msgstr "Geen foutboodskap vir domein %s."
|
|||
msgid "No standard error message for domain %s and code %d."
|
||||
msgstr "Geen standaard foutboodskap vir domein %s en kode %d."
|
||||
|
||||
#: gst/gsttag.c:82
|
||||
#: gst/gsttag.c:83
|
||||
msgid "title"
|
||||
msgstr "titel"
|
||||
|
||||
#: gst/gsttag.c:82
|
||||
#: gst/gsttag.c:83
|
||||
msgid "commonly used title"
|
||||
msgstr "algemeenbekende titel"
|
||||
|
||||
#: gst/gsttag.c:85
|
||||
#: gst/gsttag.c:86
|
||||
msgid "artist"
|
||||
msgstr "kunstenaar"
|
||||
|
||||
#: gst/gsttag.c:86
|
||||
#: gst/gsttag.c:87
|
||||
msgid "person(s) responsible for the recording"
|
||||
msgstr "persoon(e) verantwoordelik vir die opname"
|
||||
|
||||
#: gst/gsttag.c:90
|
||||
#: gst/gsttag.c:91
|
||||
msgid "album"
|
||||
msgstr "album"
|
||||
|
||||
#: gst/gsttag.c:91
|
||||
#: gst/gsttag.c:92
|
||||
msgid "album containing this data"
|
||||
msgstr "album wat hierdie data bevat"
|
||||
|
||||
#: gst/gsttag.c:93
|
||||
#: gst/gsttag.c:94
|
||||
msgid "date"
|
||||
msgstr "datum"
|
||||
|
||||
#: gst/gsttag.c:94
|
||||
#: gst/gsttag.c:95
|
||||
msgid "date the data was created (in Julian calendar days)"
|
||||
msgstr "die datum waarop die data vasgelê is (in Juliaanse kalenderdae)"
|
||||
|
||||
#: gst/gsttag.c:97
|
||||
#: gst/gsttag.c:98
|
||||
msgid "genre"
|
||||
msgstr "genre"
|
||||
|
||||
#: gst/gsttag.c:98
|
||||
#: gst/gsttag.c:99
|
||||
msgid "genre this data belongs to"
|
||||
msgstr "genre waartoe hierdie data behoort"
|
||||
|
||||
#: gst/gsttag.c:101
|
||||
#: gst/gsttag.c:102
|
||||
msgid "comment"
|
||||
msgstr "kommentaar"
|
||||
|
||||
#: gst/gsttag.c:102
|
||||
#: gst/gsttag.c:103
|
||||
msgid "free text commenting the data"
|
||||
msgstr "vrye teks met kommentaar op die data"
|
||||
|
||||
#: gst/gsttag.c:105
|
||||
#: gst/gsttag.c:106
|
||||
msgid "track number"
|
||||
msgstr "snitnommer"
|
||||
|
||||
#: gst/gsttag.c:106
|
||||
#: gst/gsttag.c:107
|
||||
msgid "track number inside a collection"
|
||||
msgstr "snitnommer binne die versameling"
|
||||
|
||||
#: gst/gsttag.c:109
|
||||
#: gst/gsttag.c:110
|
||||
msgid "track count"
|
||||
msgstr "aantal snitte"
|
||||
|
||||
#: gst/gsttag.c:110
|
||||
#: gst/gsttag.c:111
|
||||
msgid "count of tracks inside collection this track belongs to"
|
||||
msgstr "aantal snitte in die versameling waaruit hierdie snit kom"
|
||||
|
||||
#: gst/gsttag.c:114
|
||||
#: gst/gsttag.c:115
|
||||
msgid "disc number"
|
||||
msgstr "skyfnommer"
|
||||
|
||||
#: gst/gsttag.c:115
|
||||
#: gst/gsttag.c:116
|
||||
msgid "disc number inside a collection"
|
||||
msgstr "skyfnommer binne 'n versameling"
|
||||
|
||||
#: gst/gsttag.c:118
|
||||
#: gst/gsttag.c:119
|
||||
msgid "disc count"
|
||||
msgstr "aantal skywe"
|
||||
|
||||
#: gst/gsttag.c:119
|
||||
#: gst/gsttag.c:120
|
||||
msgid "count of discs inside collection this disc belongs to"
|
||||
msgstr "aantal skywe in die versameling waaruit hierdie skyf kom"
|
||||
|
||||
#: gst/gsttag.c:123
|
||||
#: gst/gsttag.c:124
|
||||
msgid "location"
|
||||
msgstr "ligging"
|
||||
|
||||
#: gst/gsttag.c:124
|
||||
#: gst/gsttag.c:125
|
||||
msgid "original location of file as a URI"
|
||||
msgstr "oorsprong van lêer gegee as 'n URI"
|
||||
|
||||
#: gst/gsttag.c:128
|
||||
#: gst/gsttag.c:129
|
||||
msgid "description"
|
||||
msgstr "beskrywing"
|
||||
|
||||
#: gst/gsttag.c:129
|
||||
#: gst/gsttag.c:130
|
||||
msgid "short text describing the content of the data"
|
||||
msgstr "kort teks wat die inhoud van die data beskryf"
|
||||
|
||||
#: gst/gsttag.c:132
|
||||
#: gst/gsttag.c:133
|
||||
msgid "version"
|
||||
msgstr "weergawe"
|
||||
|
||||
#: gst/gsttag.c:132
|
||||
#: gst/gsttag.c:133
|
||||
msgid "version of this data"
|
||||
msgstr "weergawe van hierdie data"
|
||||
|
||||
#: gst/gsttag.c:135
|
||||
#: gst/gsttag.c:136
|
||||
msgid "ISRC"
|
||||
msgstr "ISRC"
|
||||
|
||||
#: gst/gsttag.c:137
|
||||
#: gst/gsttag.c:138
|
||||
msgid "International Standard Recording Code - see http://www.ifpi.org/isrc/"
|
||||
msgstr "Internasionale Standaard Opnamekode - sien http://www.ifpi.org/isrc/"
|
||||
|
||||
#: gst/gsttag.c:139
|
||||
#: gst/gsttag.c:140
|
||||
msgid "organization"
|
||||
msgstr "organization"
|
||||
|
||||
#: gst/gsttag.c:142
|
||||
#: gst/gsttag.c:143
|
||||
msgid "copyright"
|
||||
msgstr "kopiereg"
|
||||
|
||||
#: gst/gsttag.c:142
|
||||
#: gst/gsttag.c:143
|
||||
msgid "copyright notice of the data"
|
||||
msgstr "kopieregnota van die data"
|
||||
|
||||
#: gst/gsttag.c:145
|
||||
#: gst/gsttag.c:146
|
||||
msgid "contact"
|
||||
msgstr "kontak"
|
||||
|
||||
#: gst/gsttag.c:145
|
||||
#: gst/gsttag.c:146
|
||||
msgid "contact information"
|
||||
msgstr "kontakinformasie"
|
||||
|
||||
#: gst/gsttag.c:147
|
||||
#: gst/gsttag.c:148
|
||||
msgid "license"
|
||||
msgstr "lisensie"
|
||||
|
||||
#: gst/gsttag.c:147
|
||||
#: gst/gsttag.c:148
|
||||
msgid "license of data"
|
||||
msgstr "datalisensie"
|
||||
|
||||
#: gst/gsttag.c:150
|
||||
#: gst/gsttag.c:151
|
||||
msgid "performer"
|
||||
msgstr "kunstenaar"
|
||||
|
||||
#: gst/gsttag.c:151
|
||||
#: gst/gsttag.c:152
|
||||
msgid "person(s) performing"
|
||||
msgstr "kunstenaar(s)"
|
||||
|
||||
#: gst/gsttag.c:154
|
||||
#: gst/gsttag.c:155
|
||||
msgid "duration"
|
||||
msgstr "duur"
|
||||
|
||||
#: gst/gsttag.c:154
|
||||
#: gst/gsttag.c:155
|
||||
msgid "length in GStreamer time units (nanoseconds)"
|
||||
msgstr "lengte in GStreamer tydeenhede (nanosekondes)"
|
||||
|
||||
#: gst/gsttag.c:157
|
||||
#: gst/gsttag.c:158
|
||||
msgid "codec"
|
||||
msgstr "kodek"
|
||||
|
||||
#: gst/gsttag.c:158
|
||||
#: gst/gsttag.c:159
|
||||
msgid "codec the data is stored in"
|
||||
msgstr "kodek waarmee die data gestoor is"
|
||||
|
||||
#: gst/gsttag.c:161
|
||||
#: gst/gsttag.c:162
|
||||
msgid "video codec"
|
||||
msgstr "video-kodek"
|
||||
|
||||
#: gst/gsttag.c:161
|
||||
#: gst/gsttag.c:162
|
||||
msgid "codec the video data is stored in"
|
||||
msgstr "kodek waarmee die videodata gestoor is"
|
||||
|
||||
#: gst/gsttag.c:164
|
||||
#: gst/gsttag.c:165
|
||||
msgid "audio codec"
|
||||
msgstr "oudio-kodek"
|
||||
|
||||
#: gst/gsttag.c:164
|
||||
#: gst/gsttag.c:165
|
||||
msgid "codec the audio data is stored in"
|
||||
msgstr "kodek waarmee die oudiodata gestoor is"
|
||||
|
||||
#: gst/gsttag.c:166
|
||||
#: gst/gsttag.c:167
|
||||
msgid "bitrate"
|
||||
msgstr "bistempo"
|
||||
|
||||
#: gst/gsttag.c:166
|
||||
#: gst/gsttag.c:167
|
||||
msgid "exact or average bitrate in bits/s"
|
||||
msgstr "presiese of gimiddelde bistempo in bisse/sekonde"
|
||||
|
||||
#: gst/gsttag.c:168
|
||||
#: gst/gsttag.c:169
|
||||
msgid "nominal bitrate"
|
||||
msgstr "nominale bistempo"
|
||||
|
||||
#: gst/gsttag.c:168
|
||||
#: gst/gsttag.c:169
|
||||
msgid "nominal bitrate in bits/s"
|
||||
msgstr "nomminale bistempo is bisse/sekonde"
|
||||
|
||||
#: gst/gsttag.c:170
|
||||
#: gst/gsttag.c:171
|
||||
msgid "minimum bitrate"
|
||||
msgstr "minimum bistempo"
|
||||
|
||||
#: gst/gsttag.c:170
|
||||
#: gst/gsttag.c:171
|
||||
msgid "minimum bitrate in bits/s"
|
||||
msgstr "minimum bistempo is bisse/s"
|
||||
|
||||
#: gst/gsttag.c:172
|
||||
#: gst/gsttag.c:173
|
||||
msgid "maximum bitrate"
|
||||
msgstr "maksimum bistempo"
|
||||
|
||||
#: gst/gsttag.c:172
|
||||
#: gst/gsttag.c:173
|
||||
msgid "maximum bitrate in bits/s"
|
||||
msgstr "maksimum bistempo in bisse/sekonde"
|
||||
|
||||
#: gst/gsttag.c:175
|
||||
#: gst/gsttag.c:176
|
||||
msgid "encoder"
|
||||
msgstr "enkodeerder"
|
||||
|
||||
#: gst/gsttag.c:175
|
||||
#: gst/gsttag.c:176
|
||||
msgid "encoder used to encode this stream"
|
||||
msgstr "enkodeerder wat hierdie stroom enkodeer"
|
||||
|
||||
#: gst/gsttag.c:178
|
||||
#: gst/gsttag.c:179
|
||||
msgid "encoder version"
|
||||
msgstr "enkodeerderweergawe"
|
||||
|
||||
#: gst/gsttag.c:179
|
||||
#: gst/gsttag.c:180
|
||||
msgid "version of the encoder used to encode this stream"
|
||||
msgstr "weergawe van die enkodeerder wat hierdie stroom enkodeer"
|
||||
|
||||
#: gst/gsttag.c:181
|
||||
#: gst/gsttag.c:182
|
||||
msgid "serial"
|
||||
msgstr "reeks"
|
||||
|
||||
#: gst/gsttag.c:181
|
||||
#: gst/gsttag.c:182
|
||||
msgid "serial number of track"
|
||||
msgstr "serienommer van snit"
|
||||
|
||||
#: gst/gsttag.c:183
|
||||
#: gst/gsttag.c:184
|
||||
msgid "replaygain track gain"
|
||||
msgstr "terugspeelversterking snitversterking"
|
||||
|
||||
#: gst/gsttag.c:183
|
||||
#: gst/gsttag.c:184
|
||||
msgid "track gain in db"
|
||||
msgstr "snitversterking (in db)"
|
||||
|
||||
#: gst/gsttag.c:185
|
||||
#: gst/gsttag.c:186
|
||||
msgid "replaygain track peak"
|
||||
msgstr "terugspeelversterking snittoppunt"
|
||||
|
||||
#: gst/gsttag.c:185
|
||||
#: gst/gsttag.c:186
|
||||
msgid "peak of the track"
|
||||
msgstr "toppunt van die snit"
|
||||
|
||||
#: gst/gsttag.c:187
|
||||
#: gst/gsttag.c:188
|
||||
msgid "replaygain album gain"
|
||||
msgstr "terugspeelversterking albumversterking"
|
||||
|
||||
#: gst/gsttag.c:187
|
||||
#: gst/gsttag.c:188
|
||||
msgid "album gain in db"
|
||||
msgstr "albumversterking (in db)"
|
||||
|
||||
#: gst/gsttag.c:189
|
||||
#: gst/gsttag.c:190
|
||||
msgid "replaygain album peak"
|
||||
msgstr "terugspeelversterking albumtoppunt"
|
||||
|
||||
#: gst/gsttag.c:189
|
||||
#: gst/gsttag.c:190
|
||||
msgid "peak of the album"
|
||||
msgstr "toppunt van die album"
|
||||
|
||||
#: gst/gsttag.c:228
|
||||
#: gst/gsttag.c:229
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: gst/autoplug/gstspider.c:443
|
||||
#: gst/autoplug/gstspider.c:447
|
||||
#, c-format
|
||||
msgid "There is no element present to handle the stream's mime type %s."
|
||||
msgstr "Daar is geen element beskikbaar om die stroom se mime-tipe %s te hanteer nie."
|
||||
msgstr ""
|
||||
"Daar is geen element beskikbaar om die stroom se mime-tipe %s te hanteer nie."
|
||||
|
||||
#: gst/elements/gstfilesink.c:254
|
||||
#: gst/elements/gstfilesink.c:257
|
||||
msgid "No file name specified for writing."
|
||||
msgstr "Geen lêernaam om heen te skryf nie."
|
||||
|
||||
#: gst/elements/gstfilesink.c:261
|
||||
#: gst/elements/gstfilesink.c:264
|
||||
#, c-format
|
||||
msgid "Could not open file \"%s\" for writing."
|
||||
msgstr "Kon nie lêer \"%s\" oopmaak om in te skryf nie."
|
||||
|
||||
#: gst/elements/gstfilesink.c:280
|
||||
#: gst/elements/gstfilesink.c:283
|
||||
#, c-format
|
||||
msgid "Error closing file \"%s\"."
|
||||
msgstr "Fout met toemaak van lêer \"%s\"."
|
||||
|
||||
#: gst/elements/gstfilesink.c:344 gst/elements/gstfilesink.c:375
|
||||
#: gst/elements/gstfilesink.c:427
|
||||
#: gst/elements/gstfilesink.c:355 gst/elements/gstfilesink.c:390
|
||||
#: gst/elements/gstfilesink.c:443
|
||||
#, c-format
|
||||
msgid "Error while writing to file \"%s\"."
|
||||
msgstr "Fout tydens skryf na lêer \"%s\"."
|
||||
|
||||
#: gst/elements/gstfilesrc.c:700 gst/elements/gstmultifilesrc.c:247
|
||||
#: gst/elements/gstfilesrc.c:739 gst/elements/gstmultifilesrc.c:248
|
||||
msgid "No file name specified for reading."
|
||||
msgstr "Geen lêernaam om uit te lees nie."
|
||||
|
||||
#: gst/elements/gstfilesrc.c:714 gst/elements/gstmultifilesrc.c:255
|
||||
#: gst/elements/gstfilesrc.c:754 gst/elements/gstmultifilesrc.c:256
|
||||
#, c-format
|
||||
msgid "Could not open file \"%s\" for reading."
|
||||
msgstr "Kon nie lêer \"%s\" oopmaak om te lees nie."
|
||||
|
||||
#: gst/elements/gstfilesrc.c:725
|
||||
#: gst/elements/gstfilesrc.c:765
|
||||
#, c-format
|
||||
msgid "File \"%s\" isn't a regular file."
|
||||
msgid "\"%s\" is a directory."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstfilesrc.c:771
|
||||
#, fuzzy, c-format
|
||||
msgid "File \"%s\" is a socket."
|
||||
msgstr "Lêer \"%s\" is nie 'n gewone lêer nie."
|
||||
|
||||
#: gst/elements/gstidentity.c:176
|
||||
#: gst/elements/gstidentity.c:191
|
||||
msgid "Failed after iterations as requested."
|
||||
msgstr "Mislukking na die vasgestelde aantal probeerslae."
|
||||
|
||||
#: gst/elements/gsttypefind.c:148
|
||||
#: gst/elements/gsttypefindelement.c:148
|
||||
msgid "caps"
|
||||
msgstr "caps"
|
||||
|
||||
#: gst/elements/gsttypefind.c:149
|
||||
#: gst/elements/gsttypefindelement.c:149
|
||||
msgid "detected capabilities in stream"
|
||||
msgstr "vermoëns wat bespeur kon word in die stroom"
|
||||
|
||||
#: gst/elements/gsttypefind.c:152
|
||||
#: gst/elements/gsttypefindelement.c:152
|
||||
msgid "minimum"
|
||||
msgstr "minimum"
|
||||
|
||||
#: gst/elements/gsttypefind.c:156
|
||||
#: gst/elements/gsttypefindelement.c:156
|
||||
msgid "maximum"
|
||||
msgstr "maksimum"
|
||||
|
||||
#: gst/parse/grammar.y:170
|
||||
#: gst/parse/grammar.y:168
|
||||
#, c-format
|
||||
msgid "specified empty bin \"%s\", not allowed"
|
||||
msgstr "gespesifiseerde leë houer \"%s\" is ontoelaatbaar"
|
||||
|
||||
#: gst/parse/grammar.y:175
|
||||
#: gst/parse/grammar.y:173
|
||||
#, c-format
|
||||
msgid "no bin \"%s\", skipping"
|
||||
msgstr "geen houer \"%s\", dit word oorgeslaan"
|
||||
|
||||
#: gst/parse/grammar.y:319
|
||||
#: gst/parse/grammar.y:311
|
||||
#, c-format
|
||||
msgid "no property \"%s\" in element \"%s\""
|
||||
msgstr "Geen eienskap \"%s\" in element \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:332
|
||||
#: gst/parse/grammar.y:324
|
||||
#, c-format
|
||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||
msgstr "kon nie eienskap \"%s\" in element \"%s\" stel na \"%s\" nie"
|
||||
|
||||
#: gst/parse/grammar.y:337
|
||||
#: gst/parse/grammar.y:329
|
||||
#, c-format
|
||||
msgid "could not convert \"%s\" so that it fits property \"%s\" in element \"%s\""
|
||||
msgstr "kon nie \"%s\" omskakel sodat dit pas by eienskap \"%s\" in element \"%s\" nie"
|
||||
msgid ""
|
||||
"could not convert \"%s\" so that it fits property \"%s\" in element \"%s\""
|
||||
msgstr ""
|
||||
"kon nie \"%s\" omskakel sodat dit pas by eienskap \"%s\" in element \"%s\" "
|
||||
"nie"
|
||||
|
||||
#: gst/parse/grammar.y:525
|
||||
#: gst/parse/grammar.y:514
|
||||
#, c-format
|
||||
msgid "could not link %s to %s"
|
||||
msgstr "Kon nie %s aan %s verbind nie"
|
||||
|
||||
#: gst/parse/grammar.y:570
|
||||
#: gst/parse/grammar.y:559
|
||||
#, c-format
|
||||
msgid "no element \"%s\""
|
||||
msgstr "geen element \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:621
|
||||
#: gst/parse/grammar.y:610
|
||||
#, c-format
|
||||
msgid "could not parse caps \"%s\""
|
||||
msgstr "kon nie caps \"%s\" ontleed nie"
|
||||
|
||||
#: gst/parse/grammar.y:643 gst/parse/grammar.y:697 gst/parse/grammar.y:713
|
||||
#: gst/parse/grammar.y:771
|
||||
#: gst/parse/grammar.y:632 gst/parse/grammar.y:685 gst/parse/grammar.y:701
|
||||
#: gst/parse/grammar.y:759
|
||||
msgid "link without source element"
|
||||
msgstr "verbinding sonder bron-element"
|
||||
|
||||
#: gst/parse/grammar.y:649 gst/parse/grammar.y:694 gst/parse/grammar.y:780
|
||||
#: gst/parse/grammar.y:638 gst/parse/grammar.y:682 gst/parse/grammar.y:768
|
||||
msgid "link without sink element"
|
||||
msgstr "verbinding sonder bestemming-element"
|
||||
|
||||
#: gst/parse/grammar.y:731
|
||||
#: gst/parse/grammar.y:719
|
||||
#, c-format
|
||||
msgid "no source element for URI \"%s\""
|
||||
msgstr "geen bronelement vir URI \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:741
|
||||
#: gst/parse/grammar.y:729
|
||||
#, c-format
|
||||
msgid "no element to link URI \"%s\" to"
|
||||
msgstr "geen element vir URI \"%s\" om heen te skakel nie"
|
||||
|
||||
#: gst/parse/grammar.y:749
|
||||
#: gst/parse/grammar.y:737
|
||||
#, c-format
|
||||
msgid "no sink element for URI \"%s\""
|
||||
msgstr "geen bestemming-element vir URI \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:753
|
||||
#: gst/parse/grammar.y:741
|
||||
#, c-format
|
||||
msgid "could not link sink element for URI \"%s\""
|
||||
msgstr "kon nie aan bestemming-element vir URI \"%s\" verbind nie"
|
||||
|
||||
#: gst/parse/grammar.y:765
|
||||
#: gst/parse/grammar.y:753
|
||||
msgid "empty pipeline not allowed"
|
||||
msgstr "leë pyplyn word nie toegelaat nie"
|
||||
|
||||
#: tools/gst-inspect.c:928
|
||||
#: tools/gst-inspect.c:937
|
||||
msgid "Show plugin details"
|
||||
msgstr "Vertoon details van inproppe"
|
||||
|
||||
#: tools/gst-inspect.c:931
|
||||
#: tools/gst-inspect.c:940
|
||||
msgid "Show scheduler details"
|
||||
msgstr "Vertoon details van skeduleerder"
|
||||
|
||||
|
@ -718,6 +746,7 @@ msgid "ERROR: no toplevel pipeline element in file '%s'.\n"
|
|||
msgstr "FOUT: geen topvlak pyplynelement in lêer '%s' nie.\n"
|
||||
|
||||
#: tools/gst-launch.c:123
|
||||
#, c-format
|
||||
msgid "WARNING: only one toplevel element is supported at this time."
|
||||
msgstr "WAARSKUWING: slegs een topvlak element word tans ondersteun."
|
||||
|
||||
|
@ -778,6 +807,7 @@ msgid "ERROR: pipeline could not be constructed: %s.\n"
|
|||
msgstr "FOUT: pyplyn kon nie opgestel word nie: %s.\n"
|
||||
|
||||
#: tools/gst-launch.c:442
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline could not be constructed.\n"
|
||||
msgstr "FOUT: pyplyn kon nie opgestel word nie.\n"
|
||||
|
||||
|
@ -787,17 +817,27 @@ msgid "WARNING: erroneous pipeline: %s\n"
|
|||
msgstr "WAARSKUWING: foutiewe pyplyn: %s\n"
|
||||
|
||||
#: tools/gst-launch.c:447
|
||||
#, c-format
|
||||
msgid " Trying to run anyway.\n"
|
||||
msgstr " Probeer om weg te hardloop.\n"
|
||||
|
||||
#: tools/gst-launch.c:475
|
||||
#, c-format
|
||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||
msgstr "FOUT: die pyplynelement kon nie gevind word nie.\n"
|
||||
|
||||
#: tools/gst-launch.c:482
|
||||
#, c-format
|
||||
msgid "RUNNING pipeline ...\n"
|
||||
msgstr "LOOP pyplyn ...\n"
|
||||
|
||||
#: tools/gst-launch.c:485
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||
msgstr "FOUT: pyplyn wil nie speel nie.\n"
|
||||
|
||||
#~ msgid "')"
|
||||
#~ msgstr "')"
|
||||
|
||||
#~ msgid "' is the default)"
|
||||
#~ msgstr "' is die verstekwaarde)"
|
||||
|
|
328
po/az.po
328
po/az.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gstreamer-0.8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-03-16 00:10+0100\n"
|
||||
"POT-Creation-Date: 2004-05-04 13:46+0200\n"
|
||||
"PO-Revision-Date: 2004-03-19 18:40+0200\n"
|
||||
"Last-Translator: Metin Amiroff <metin@karegen.com>\n"
|
||||
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
|
||||
|
@ -16,100 +16,99 @@ msgstr ""
|
|||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: KBabel 1.0.2\n"
|
||||
|
||||
#: gst/gst.c:121
|
||||
#: gst/gst.c:129
|
||||
msgid "Print the GStreamer version"
|
||||
msgstr "GStreamer buraxılışını göstər"
|
||||
|
||||
#: gst/gst.c:123
|
||||
#: gst/gst.c:131
|
||||
msgid "Make all warnings fatal"
|
||||
msgstr "Bütün xətaları ölümcül et"
|
||||
|
||||
#: gst/gst.c:127
|
||||
#: gst/gst.c:135
|
||||
msgid "Print available debug categories and exit"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gst.c:131
|
||||
msgid "Default debug level from 1 (only error) to 5 (anything) or 0 for no output"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gst.c:132
|
||||
msgid "LEVEL"
|
||||
msgstr "SƏVİYYƏ"
|
||||
|
||||
#: gst/gst.c:135
|
||||
msgid "Comma-separated list of category_name:level pairs to set specific levels for the individual categories. Example: GST_AUTOPLUG:5,GST_ELEMENT_*:3"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gst.c:136
|
||||
msgid "LIST"
|
||||
msgstr "SİYAHI"
|
||||
|
||||
#: gst/gst.c:138
|
||||
msgid "Disable colored debugging output"
|
||||
msgid ""
|
||||
"Default debug level from 1 (only error) to 5 (anything) or 0 for no output"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gst.c:140
|
||||
msgid "Disable debugging"
|
||||
msgstr "Xəta ayırmasını bağla"
|
||||
msgid "LEVEL"
|
||||
msgstr "SƏVİYYƏ"
|
||||
|
||||
#: gst/gst.c:144
|
||||
msgid "Disable accelerated CPU instructions"
|
||||
#: gst/gst.c:142
|
||||
msgid ""
|
||||
"Comma-separated list of category_name:level pairs to set specific levels for "
|
||||
"the individual categories. Example: GST_AUTOPLUG:5,GST_ELEMENT_*:3"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gst.c:146
|
||||
msgid "Enable verbose plugin loading diagnostics"
|
||||
#: gst/gst.c:145
|
||||
msgid "LIST"
|
||||
msgstr "SİYAHI"
|
||||
|
||||
#: gst/gst.c:147
|
||||
msgid "Disable colored debugging output"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gst.c:149
|
||||
msgid "path list for loading plugins (separated by '"
|
||||
msgstr ""
|
||||
msgid "Disable debugging"
|
||||
msgstr "Xəta ayırmasını bağla"
|
||||
|
||||
#: gst/gst.c:150
|
||||
msgid "')"
|
||||
msgstr "')"
|
||||
|
||||
#: gst/gst.c:150
|
||||
msgid "PATHS"
|
||||
msgstr "CIĞIRLAR"
|
||||
|
||||
#: gst/gst.c:154
|
||||
msgid "Comma-separated list of plugins to preload in addition to the list stored in env variable GST_PLUGIN_PATH"
|
||||
#: gst/gst.c:153
|
||||
msgid "Disable accelerated CPU instructions"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gst.c:155
|
||||
msgid "PLUGINS"
|
||||
msgstr "ƏLAVƏLƏR"
|
||||
msgid "Enable verbose plugin loading diagnostics"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gst.c:158
|
||||
msgid "Disable trapping of segmentation faults during plugin loading"
|
||||
#: gst/gst.c:157
|
||||
msgid "PATHS"
|
||||
msgstr "CIĞIRLAR"
|
||||
|
||||
#: gst/gst.c:160
|
||||
msgid ""
|
||||
"Comma-separated list of plugins to preload in addition to the list stored in "
|
||||
"envronment variable GST_PLUGIN_PATH"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gst.c:162
|
||||
msgid "Scheduler to use ('"
|
||||
msgid "PLUGINS"
|
||||
msgstr "ƏLAVƏLƏR"
|
||||
|
||||
#: gst/gst.c:165
|
||||
msgid "Disable trapping of segmentation faults during plugin loading"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gst.c:163
|
||||
msgid "' is the default)"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gst.c:163
|
||||
#: gst/gst.c:168
|
||||
msgid "SCHEDULER"
|
||||
msgstr "VAXTLAŞDIRICI"
|
||||
|
||||
#: gst/gst.c:165
|
||||
#: gst/gst.c:170
|
||||
msgid "Registry to use"
|
||||
msgstr "İşlədiləcək qeyd bazası"
|
||||
|
||||
#: gst/gst.c:165
|
||||
#: gst/gst.c:170
|
||||
msgid "REGISTRY"
|
||||
msgstr "QEYDBAZASI"
|
||||
|
||||
#: gst/gstelement.c:252
|
||||
#: gst/gst.c:183
|
||||
#, c-format
|
||||
msgid "path list for loading plugins (separated by '%s')"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gst.c:187
|
||||
#, c-format
|
||||
msgid "Scheduler to use (default is '%s')"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gstelement.c:253
|
||||
#, c-format
|
||||
msgid "ERROR: from element %s: %s\n"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gstelement.c:254
|
||||
#: gst/gstelement.c:255
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Additional debug info:\n"
|
||||
|
@ -121,7 +120,9 @@ msgid "GStreamer encountered a general core library error."
|
|||
msgstr ""
|
||||
|
||||
#: gst/gsterror.c:58 gst/gsterror.c:95 gst/gsterror.c:115 gst/gsterror.c:145
|
||||
msgid "GStreamer developers were too lazy to assign an error code to this error. Please file a bug."
|
||||
msgid ""
|
||||
"GStreamer developers were too lazy to assign an error code to this error. "
|
||||
"Please file a bug."
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsterror.c:61
|
||||
|
@ -266,415 +267,421 @@ msgstr ""
|
|||
msgid "No standard error message for domain %s and code %d."
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:82
|
||||
#: gst/gsttag.c:83
|
||||
msgid "title"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:82
|
||||
#: gst/gsttag.c:83
|
||||
msgid "commonly used title"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:85
|
||||
#: gst/gsttag.c:86
|
||||
msgid "artist"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:86
|
||||
#: gst/gsttag.c:87
|
||||
msgid "person(s) responsible for the recording"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:90
|
||||
#: gst/gsttag.c:91
|
||||
msgid "album"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:91
|
||||
#: gst/gsttag.c:92
|
||||
msgid "album containing this data"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:93
|
||||
#: gst/gsttag.c:94
|
||||
msgid "date"
|
||||
msgstr "tarix"
|
||||
|
||||
#: gst/gsttag.c:94
|
||||
#: gst/gsttag.c:95
|
||||
msgid "date the data was created (in Julian calendar days)"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:97
|
||||
#: gst/gsttag.c:98
|
||||
msgid "genre"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:98
|
||||
#: gst/gsttag.c:99
|
||||
msgid "genre this data belongs to"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:101
|
||||
#: gst/gsttag.c:102
|
||||
msgid "comment"
|
||||
msgstr "şərh"
|
||||
|
||||
#: gst/gsttag.c:102
|
||||
#: gst/gsttag.c:103
|
||||
msgid "free text commenting the data"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:105
|
||||
#: gst/gsttag.c:106
|
||||
msgid "track number"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:106
|
||||
#: gst/gsttag.c:107
|
||||
msgid "track number inside a collection"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:109
|
||||
#: gst/gsttag.c:110
|
||||
msgid "track count"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:110
|
||||
#: gst/gsttag.c:111
|
||||
msgid "count of tracks inside collection this track belongs to"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:114
|
||||
#: gst/gsttag.c:115
|
||||
msgid "disc number"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:115
|
||||
#: gst/gsttag.c:116
|
||||
msgid "disc number inside a collection"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:118
|
||||
#: gst/gsttag.c:119
|
||||
msgid "disc count"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:119
|
||||
#: gst/gsttag.c:120
|
||||
msgid "count of discs inside collection this disc belongs to"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:123
|
||||
#: gst/gsttag.c:124
|
||||
msgid "location"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:124
|
||||
#: gst/gsttag.c:125
|
||||
msgid "original location of file as a URI"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:128
|
||||
#: gst/gsttag.c:129
|
||||
msgid "description"
|
||||
msgstr "izahat"
|
||||
|
||||
#: gst/gsttag.c:129
|
||||
#: gst/gsttag.c:130
|
||||
msgid "short text describing the content of the data"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:132
|
||||
#: gst/gsttag.c:133
|
||||
msgid "version"
|
||||
msgstr "buraxılış"
|
||||
|
||||
#: gst/gsttag.c:132
|
||||
#: gst/gsttag.c:133
|
||||
msgid "version of this data"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:135
|
||||
#: gst/gsttag.c:136
|
||||
msgid "ISRC"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:137
|
||||
#: gst/gsttag.c:138
|
||||
msgid "International Standard Recording Code - see http://www.ifpi.org/isrc/"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:139
|
||||
#: gst/gsttag.c:140
|
||||
msgid "organization"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:142
|
||||
#: gst/gsttag.c:143
|
||||
msgid "copyright"
|
||||
msgstr "müəllif hüququ"
|
||||
|
||||
#: gst/gsttag.c:142
|
||||
#: gst/gsttag.c:143
|
||||
msgid "copyright notice of the data"
|
||||
msgstr "mə'lumatın müəllif hüququ qeydi"
|
||||
|
||||
#: gst/gsttag.c:145
|
||||
#: gst/gsttag.c:146
|
||||
msgid "contact"
|
||||
msgstr "əlaqə"
|
||||
|
||||
#: gst/gsttag.c:145
|
||||
#: gst/gsttag.c:146
|
||||
msgid "contact information"
|
||||
msgstr "əlaqə mə'lumatı"
|
||||
|
||||
#: gst/gsttag.c:147
|
||||
#: gst/gsttag.c:148
|
||||
msgid "license"
|
||||
msgstr "lisenziya"
|
||||
|
||||
#: gst/gsttag.c:147
|
||||
#: gst/gsttag.c:148
|
||||
msgid "license of data"
|
||||
msgstr "mə'lumatın lisenziyası"
|
||||
|
||||
#: gst/gsttag.c:150
|
||||
#: gst/gsttag.c:151
|
||||
msgid "performer"
|
||||
msgstr "ifaçı"
|
||||
|
||||
#: gst/gsttag.c:151
|
||||
#: gst/gsttag.c:152
|
||||
msgid "person(s) performing"
|
||||
msgstr "ifa edən şəxs(lər)"
|
||||
|
||||
#: gst/gsttag.c:154
|
||||
#: gst/gsttag.c:155
|
||||
msgid "duration"
|
||||
msgstr "sürəklik"
|
||||
|
||||
#: gst/gsttag.c:154
|
||||
#: gst/gsttag.c:155
|
||||
msgid "length in GStreamer time units (nanoseconds)"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:157
|
||||
#: gst/gsttag.c:158
|
||||
msgid "codec"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:158
|
||||
#: gst/gsttag.c:159
|
||||
msgid "codec the data is stored in"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:161
|
||||
#: gst/gsttag.c:162
|
||||
msgid "video codec"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:161
|
||||
#: gst/gsttag.c:162
|
||||
msgid "codec the video data is stored in"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:164
|
||||
#: gst/gsttag.c:165
|
||||
msgid "audio codec"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:164
|
||||
#: gst/gsttag.c:165
|
||||
msgid "codec the audio data is stored in"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:166
|
||||
#: gst/gsttag.c:167
|
||||
msgid "bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:166
|
||||
#: gst/gsttag.c:167
|
||||
msgid "exact or average bitrate in bits/s"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:168
|
||||
#: gst/gsttag.c:169
|
||||
msgid "nominal bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:168
|
||||
#: gst/gsttag.c:169
|
||||
msgid "nominal bitrate in bits/s"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:170
|
||||
#: gst/gsttag.c:171
|
||||
msgid "minimum bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:170
|
||||
#: gst/gsttag.c:171
|
||||
msgid "minimum bitrate in bits/s"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:172
|
||||
#: gst/gsttag.c:173
|
||||
msgid "maximum bitrate"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:172
|
||||
#: gst/gsttag.c:173
|
||||
msgid "maximum bitrate in bits/s"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:175
|
||||
#: gst/gsttag.c:176
|
||||
msgid "encoder"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:175
|
||||
#: gst/gsttag.c:176
|
||||
msgid "encoder used to encode this stream"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:178
|
||||
#: gst/gsttag.c:179
|
||||
msgid "encoder version"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:179
|
||||
#: gst/gsttag.c:180
|
||||
msgid "version of the encoder used to encode this stream"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:181
|
||||
#: gst/gsttag.c:182
|
||||
msgid "serial"
|
||||
msgstr "seriya nömrəsi"
|
||||
|
||||
#: gst/gsttag.c:181
|
||||
#: gst/gsttag.c:182
|
||||
msgid "serial number of track"
|
||||
msgstr "mahnının seriya nömrəsi"
|
||||
|
||||
#: gst/gsttag.c:183
|
||||
#: gst/gsttag.c:184
|
||||
msgid "replaygain track gain"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:183
|
||||
#: gst/gsttag.c:184
|
||||
msgid "track gain in db"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:185
|
||||
#: gst/gsttag.c:186
|
||||
msgid "replaygain track peak"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:185
|
||||
#: gst/gsttag.c:186
|
||||
msgid "peak of the track"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:187
|
||||
#: gst/gsttag.c:188
|
||||
msgid "replaygain album gain"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:187
|
||||
#: gst/gsttag.c:188
|
||||
msgid "album gain in db"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:189
|
||||
#: gst/gsttag.c:190
|
||||
msgid "replaygain album peak"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:189
|
||||
#: gst/gsttag.c:190
|
||||
msgid "peak of the album"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:228
|
||||
#: gst/gsttag.c:229
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: gst/autoplug/gstspider.c:443
|
||||
#: gst/autoplug/gstspider.c:447
|
||||
#, c-format
|
||||
msgid "There is no element present to handle the stream's mime type %s."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstfilesink.c:254
|
||||
#: gst/elements/gstfilesink.c:257
|
||||
msgid "No file name specified for writing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstfilesink.c:261
|
||||
#: gst/elements/gstfilesink.c:264
|
||||
#, c-format
|
||||
msgid "Could not open file \"%s\" for writing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstfilesink.c:280
|
||||
#: gst/elements/gstfilesink.c:283
|
||||
#, c-format
|
||||
msgid "Error closing file \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstfilesink.c:344 gst/elements/gstfilesink.c:375
|
||||
#: gst/elements/gstfilesink.c:427
|
||||
#: gst/elements/gstfilesink.c:355 gst/elements/gstfilesink.c:390
|
||||
#: gst/elements/gstfilesink.c:443
|
||||
#, c-format
|
||||
msgid "Error while writing to file \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstfilesrc.c:700 gst/elements/gstmultifilesrc.c:247
|
||||
#: gst/elements/gstfilesrc.c:739 gst/elements/gstmultifilesrc.c:248
|
||||
msgid "No file name specified for reading."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstfilesrc.c:714 gst/elements/gstmultifilesrc.c:255
|
||||
#: gst/elements/gstfilesrc.c:754 gst/elements/gstmultifilesrc.c:256
|
||||
#, c-format
|
||||
msgid "Could not open file \"%s\" for reading."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstfilesrc.c:725
|
||||
#: gst/elements/gstfilesrc.c:765
|
||||
#, c-format
|
||||
msgid "File \"%s\" isn't a regular file."
|
||||
msgid "\"%s\" is a directory."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstidentity.c:176
|
||||
#: gst/elements/gstfilesrc.c:771
|
||||
#, c-format
|
||||
msgid "File \"%s\" is a socket."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstidentity.c:191
|
||||
msgid "Failed after iterations as requested."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gsttypefind.c:148
|
||||
#: gst/elements/gsttypefindelement.c:148
|
||||
msgid "caps"
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gsttypefind.c:149
|
||||
#: gst/elements/gsttypefindelement.c:149
|
||||
msgid "detected capabilities in stream"
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gsttypefind.c:152
|
||||
#: gst/elements/gsttypefindelement.c:152
|
||||
msgid "minimum"
|
||||
msgstr "minimal"
|
||||
|
||||
#: gst/elements/gsttypefind.c:156
|
||||
#: gst/elements/gsttypefindelement.c:156
|
||||
msgid "maximum"
|
||||
msgstr "maksimal"
|
||||
|
||||
#: gst/parse/grammar.y:170
|
||||
#: gst/parse/grammar.y:168
|
||||
#, c-format
|
||||
msgid "specified empty bin \"%s\", not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: gst/parse/grammar.y:175
|
||||
#: gst/parse/grammar.y:173
|
||||
#, c-format
|
||||
msgid "no bin \"%s\", skipping"
|
||||
msgstr ""
|
||||
|
||||
#: gst/parse/grammar.y:319
|
||||
#: gst/parse/grammar.y:311
|
||||
#, c-format
|
||||
msgid "no property \"%s\" in element \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: gst/parse/grammar.y:332
|
||||
#: gst/parse/grammar.y:324
|
||||
#, c-format
|
||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: gst/parse/grammar.y:337
|
||||
#: gst/parse/grammar.y:329
|
||||
#, c-format
|
||||
msgid "could not convert \"%s\" so that it fits property \"%s\" in element \"%s\""
|
||||
msgid ""
|
||||
"could not convert \"%s\" so that it fits property \"%s\" in element \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: gst/parse/grammar.y:525
|
||||
#: gst/parse/grammar.y:514
|
||||
#, c-format
|
||||
msgid "could not link %s to %s"
|
||||
msgstr ""
|
||||
|
||||
#: gst/parse/grammar.y:570
|
||||
#: gst/parse/grammar.y:559
|
||||
#, c-format
|
||||
msgid "no element \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: gst/parse/grammar.y:621
|
||||
#: gst/parse/grammar.y:610
|
||||
#, c-format
|
||||
msgid "could not parse caps \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: gst/parse/grammar.y:643 gst/parse/grammar.y:697 gst/parse/grammar.y:713
|
||||
#: gst/parse/grammar.y:771
|
||||
#: gst/parse/grammar.y:632 gst/parse/grammar.y:685 gst/parse/grammar.y:701
|
||||
#: gst/parse/grammar.y:759
|
||||
msgid "link without source element"
|
||||
msgstr ""
|
||||
|
||||
#: gst/parse/grammar.y:649 gst/parse/grammar.y:694 gst/parse/grammar.y:780
|
||||
#: gst/parse/grammar.y:638 gst/parse/grammar.y:682 gst/parse/grammar.y:768
|
||||
msgid "link without sink element"
|
||||
msgstr ""
|
||||
|
||||
#: gst/parse/grammar.y:731
|
||||
#: gst/parse/grammar.y:719
|
||||
#, c-format
|
||||
msgid "no source element for URI \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: gst/parse/grammar.y:741
|
||||
#: gst/parse/grammar.y:729
|
||||
#, c-format
|
||||
msgid "no element to link URI \"%s\" to"
|
||||
msgstr ""
|
||||
|
||||
#: gst/parse/grammar.y:749
|
||||
#: gst/parse/grammar.y:737
|
||||
#, c-format
|
||||
msgid "no sink element for URI \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: gst/parse/grammar.y:753
|
||||
#: gst/parse/grammar.y:741
|
||||
#, c-format
|
||||
msgid "could not link sink element for URI \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: gst/parse/grammar.y:765
|
||||
#: gst/parse/grammar.y:753
|
||||
msgid "empty pipeline not allowed"
|
||||
msgstr ""
|
||||
|
||||
#: tools/gst-inspect.c:928
|
||||
#: tools/gst-inspect.c:937
|
||||
msgid "Show plugin details"
|
||||
msgstr ""
|
||||
|
||||
#: tools/gst-inspect.c:931
|
||||
#: tools/gst-inspect.c:940
|
||||
msgid "Show scheduler details"
|
||||
msgstr ""
|
||||
|
||||
|
@ -717,6 +724,7 @@ msgid "ERROR: no toplevel pipeline element in file '%s'.\n"
|
|||
msgstr ""
|
||||
|
||||
#: tools/gst-launch.c:123
|
||||
#, c-format
|
||||
msgid "WARNING: only one toplevel element is supported at this time."
|
||||
msgstr ""
|
||||
|
||||
|
@ -777,6 +785,7 @@ msgid "ERROR: pipeline could not be constructed: %s.\n"
|
|||
msgstr ""
|
||||
|
||||
#: tools/gst-launch.c:442
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline could not be constructed.\n"
|
||||
msgstr ""
|
||||
|
||||
|
@ -786,17 +795,24 @@ msgid "WARNING: erroneous pipeline: %s\n"
|
|||
msgstr ""
|
||||
|
||||
#: tools/gst-launch.c:447
|
||||
#, c-format
|
||||
msgid " Trying to run anyway.\n"
|
||||
msgstr ""
|
||||
|
||||
#: tools/gst-launch.c:475
|
||||
#, c-format
|
||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||
msgstr ""
|
||||
|
||||
#: tools/gst-launch.c:482
|
||||
#, c-format
|
||||
msgid "RUNNING pipeline ...\n"
|
||||
msgstr ""
|
||||
|
||||
#: tools/gst-launch.c:485
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "')"
|
||||
#~ msgstr "')"
|
||||
|
|
18
po/en_GB.po
18
po/en_GB.po
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gstreamer 0.8.1\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-04-29 12:09+0200\n"
|
||||
"POT-Creation-Date: 2004-05-04 13:46+0200\n"
|
||||
"PO-Revision-Date: 2004-04-26 10:36-0400\n"
|
||||
"Last-Translator: Gareth Owen <gowen72@yahoo.com>\n"
|
||||
"Language-Team: English (British) <en_gb@li.org>\n"
|
||||
|
@ -551,22 +551,22 @@ msgstr ", "
|
|||
msgid "There is no element present to handle the stream's mime type %s."
|
||||
msgstr "There is no element present to handle the stream's mime type %s."
|
||||
|
||||
#: gst/elements/gstfilesink.c:254
|
||||
#: gst/elements/gstfilesink.c:257
|
||||
msgid "No file name specified for writing."
|
||||
msgstr "No file name specified for writing."
|
||||
|
||||
#: gst/elements/gstfilesink.c:261
|
||||
#: gst/elements/gstfilesink.c:264
|
||||
#, c-format
|
||||
msgid "Could not open file \"%s\" for writing."
|
||||
msgstr "Could not open file \"%s\" for writing."
|
||||
|
||||
#: gst/elements/gstfilesink.c:280
|
||||
#: gst/elements/gstfilesink.c:283
|
||||
#, c-format
|
||||
msgid "Error closing file \"%s\"."
|
||||
msgstr "Error closing file \"%s\"."
|
||||
|
||||
#: gst/elements/gstfilesink.c:345 gst/elements/gstfilesink.c:376
|
||||
#: gst/elements/gstfilesink.c:428
|
||||
#: gst/elements/gstfilesink.c:355 gst/elements/gstfilesink.c:390
|
||||
#: gst/elements/gstfilesink.c:443
|
||||
#, c-format
|
||||
msgid "Error while writing to file \"%s\"."
|
||||
msgstr "Error while writing to file \"%s\"."
|
||||
|
@ -732,6 +732,7 @@ msgid "ERROR: no toplevel pipeline element in file '%s'.\n"
|
|||
msgstr "ERROR: no toplevel pipeline element in file '%s'.\n"
|
||||
|
||||
#: tools/gst-launch.c:123
|
||||
#, c-format
|
||||
msgid "WARNING: only one toplevel element is supported at this time."
|
||||
msgstr "WARNING: only one toplevel element is supported at this time."
|
||||
|
||||
|
@ -792,6 +793,7 @@ msgid "ERROR: pipeline could not be constructed: %s.\n"
|
|||
msgstr "ERROR: pipeline could not be constructed: %s.\n"
|
||||
|
||||
#: tools/gst-launch.c:442
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline could not be constructed.\n"
|
||||
msgstr "ERROR: pipeline could not be constructed.\n"
|
||||
|
||||
|
@ -801,18 +803,22 @@ msgid "WARNING: erroneous pipeline: %s\n"
|
|||
msgstr "WARNING: erroneous pipeline: %s\n"
|
||||
|
||||
#: tools/gst-launch.c:447
|
||||
#, c-format
|
||||
msgid " Trying to run anyway.\n"
|
||||
msgstr " Trying to run anyway.\n"
|
||||
|
||||
#: tools/gst-launch.c:475
|
||||
#, c-format
|
||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||
msgstr "ERROR: the 'pipeline' element wasn't found.\n"
|
||||
|
||||
#: tools/gst-launch.c:482
|
||||
#, c-format
|
||||
msgid "RUNNING pipeline ...\n"
|
||||
msgstr "RUNNING pipeline ...\n"
|
||||
|
||||
#: tools/gst-launch.c:485
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||
msgstr "ERROR: pipeline doesn't want to play.\n"
|
||||
|
||||
|
|
386
po/fr.po
386
po/fr.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: GStreamer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-03-09 16:16+0100\n"
|
||||
"POT-Creation-Date: 2004-05-04 13:46+0200\n"
|
||||
"PO-Revision-Date: 2004-01-13 16:52+0100\n"
|
||||
"Last-Translator: Julien Moutte <julien@moutte.net>\n"
|
||||
"Language-Team: French <fr@li.org>\n"
|
||||
|
@ -15,30 +15,30 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: gst/gst.c:120
|
||||
#: gst/gst.c:129
|
||||
msgid "Print the GStreamer version"
|
||||
msgstr "Afficher la version de GStreamer"
|
||||
|
||||
#: gst/gst.c:121
|
||||
#: gst/gst.c:131
|
||||
msgid "Make all warnings fatal"
|
||||
msgstr "Rendre tout les avertissements bloquants"
|
||||
|
||||
#: gst/gst.c:124
|
||||
#: gst/gst.c:135
|
||||
msgid "Print available debug categories and exit"
|
||||
msgstr "Afficher les catégories de deboguage disponibles et quitter"
|
||||
|
||||
#: gst/gst.c:125
|
||||
#: gst/gst.c:138
|
||||
msgid ""
|
||||
"Default debug level from 1 (only error) to 5 (anything) or 0 for no output"
|
||||
msgstr ""
|
||||
"Niveau de deboguage par defaut de 1 (que les erreurs) a 5 (tout) ou 0 pour "
|
||||
"n'avoir aucun affichage"
|
||||
|
||||
#: gst/gst.c:125
|
||||
#: gst/gst.c:140
|
||||
msgid "LEVEL"
|
||||
msgstr "NIVEAU"
|
||||
|
||||
#: gst/gst.c:126
|
||||
#: gst/gst.c:142
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Comma-separated list of category_name:level pairs to set specific levels for "
|
||||
|
@ -48,85 +48,80 @@ msgstr ""
|
|||
"des niveaux spécifiques pour chaque catégorie.\n"
|
||||
"Exemple: GST_AUTOPLUG:5,GST_ELEMENT_*:3"
|
||||
|
||||
#: gst/gst.c:126
|
||||
#: gst/gst.c:145
|
||||
msgid "LIST"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gst.c:127
|
||||
#: gst/gst.c:147
|
||||
#, fuzzy
|
||||
msgid "Disable colored debugging output"
|
||||
msgstr "Désactiver la couleur dans la sortie de deboguage"
|
||||
|
||||
#: gst/gst.c:128
|
||||
#: gst/gst.c:149
|
||||
msgid "Disable debugging"
|
||||
msgstr "Désactiver la sortie de deboguage"
|
||||
|
||||
#: gst/gst.c:131
|
||||
#: gst/gst.c:153
|
||||
msgid "Disable accelerated CPU instructions"
|
||||
msgstr "Désactiver les instructions accélerées du processeur"
|
||||
|
||||
#: gst/gst.c:132
|
||||
#: gst/gst.c:155
|
||||
msgid "Enable verbose plugin loading diagnostics"
|
||||
msgstr "Activer un diagnostique détaillé du chargement des plugins"
|
||||
|
||||
#: gst/gst.c:133
|
||||
msgid "path list for loading plugins (separated by '"
|
||||
msgstr "liste de chemins pour le chargement des plugins (séparés par '"
|
||||
|
||||
#: gst/gst.c:133
|
||||
msgid "')"
|
||||
msgstr "')"
|
||||
|
||||
#: gst/gst.c:133
|
||||
#: gst/gst.c:157
|
||||
msgid "PATHS"
|
||||
msgstr "CHEMINS"
|
||||
|
||||
#: gst/gst.c:134
|
||||
#: gst/gst.c:160
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Comma-separated list of plugins to preload in addition to the list stored in "
|
||||
"env variable GST_PLUGIN_PATH"
|
||||
"envronment variable GST_PLUGIN_PATH"
|
||||
msgstr ""
|
||||
"Liste séparée par des virgules de plugins a precharger en plus de la liste "
|
||||
"contenue dans la variable d'environnement GST_PLUGIN_PATH"
|
||||
|
||||
#: gst/gst.c:134
|
||||
#: gst/gst.c:162
|
||||
msgid "PLUGINS"
|
||||
msgstr "PLUGINS"
|
||||
|
||||
#: gst/gst.c:135
|
||||
#: gst/gst.c:165
|
||||
msgid "Disable trapping of segmentation faults during plugin loading"
|
||||
msgstr ""
|
||||
"Désactiver la detection des erreurs de segmentation pendant le chargement "
|
||||
"des plugins"
|
||||
|
||||
#: gst/gst.c:136
|
||||
msgid "Scheduler to use ('"
|
||||
msgstr "Planificateur a utiliser ('"
|
||||
|
||||
#: gst/gst.c:136
|
||||
msgid "' is the default)"
|
||||
msgstr "' est la valeur par defaut)"
|
||||
|
||||
#: gst/gst.c:136
|
||||
#: gst/gst.c:168
|
||||
msgid "SCHEDULER"
|
||||
msgstr "PLANIFICATEUR"
|
||||
|
||||
#: gst/gst.c:137
|
||||
#: gst/gst.c:170
|
||||
msgid "Registry to use"
|
||||
msgstr "Registre a utiliser"
|
||||
|
||||
#: gst/gst.c:137
|
||||
#: gst/gst.c:170
|
||||
msgid "REGISTRY"
|
||||
msgstr "REGISTRE"
|
||||
|
||||
#: gst/gstelement.c:242
|
||||
#: gst/gst.c:183
|
||||
#, fuzzy, c-format
|
||||
msgid "path list for loading plugins (separated by '%s')"
|
||||
msgstr "liste de chemins pour le chargement des plugins (séparés par '"
|
||||
|
||||
#: gst/gst.c:187
|
||||
#, fuzzy, c-format
|
||||
msgid "Scheduler to use (default is '%s')"
|
||||
msgstr "Planificateur a utiliser ('"
|
||||
|
||||
#: gst/gstelement.c:253
|
||||
#, fuzzy, c-format
|
||||
msgid "ERROR: from element %s: %s\n"
|
||||
msgstr ""
|
||||
"ERREUR: impossible d'interpreter l'argument de la ligne de commande numero %"
|
||||
"d: %s.\n"
|
||||
|
||||
#: gst/gstelement.c:244
|
||||
#: gst/gstelement.c:255
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Additional debug info:\n"
|
||||
|
@ -137,7 +132,7 @@ msgstr ""
|
|||
msgid "GStreamer encountered a general core library error."
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsterror.c:58 gst/gsterror.c:94 gst/gsterror.c:116 gst/gsterror.c:154
|
||||
#: gst/gsterror.c:58 gst/gsterror.c:95 gst/gsterror.c:115 gst/gsterror.c:145
|
||||
msgid ""
|
||||
"GStreamer developers were too lazy to assign an error code to this error. "
|
||||
"Please file a bug."
|
||||
|
@ -183,7 +178,7 @@ msgstr ""
|
|||
msgid "Internal GStreamer error: tag problem. File a bug."
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsterror.c:92 gst/gsterror.c:114 gst/gsterror.c:152
|
||||
#: gst/gsterror.c:93 gst/gsterror.c:113 gst/gsterror.c:143
|
||||
msgid "GStreamer encountered a general supporting library error."
|
||||
msgstr ""
|
||||
|
||||
|
@ -191,119 +186,119 @@ msgstr ""
|
|||
msgid "Could not initialize supporting library."
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsterror.c:99 gst/gsterror.c:101
|
||||
#: gst/gsterror.c:98 gst/gsterror.c:99
|
||||
#, fuzzy
|
||||
msgid "Could not close supporting library."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/gsterror.c:119
|
||||
#: gst/gsterror.c:117
|
||||
msgid "Resource not found."
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsterror.c:121
|
||||
#: gst/gsterror.c:118
|
||||
msgid "Resource busy or not available."
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsterror.c:123
|
||||
#: gst/gsterror.c:119
|
||||
#, fuzzy
|
||||
msgid "Could not open resource for reading."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/gsterror.c:125
|
||||
#: gst/gsterror.c:120
|
||||
#, fuzzy
|
||||
msgid "Could not open resource for writing."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/gsterror.c:127
|
||||
#: gst/gsterror.c:122
|
||||
msgid "Could not open resource for reading and writing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsterror.c:129
|
||||
#: gst/gsterror.c:123
|
||||
#, fuzzy
|
||||
msgid "Could not close resource."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/gsterror.c:131
|
||||
#: gst/gsterror.c:124
|
||||
#, fuzzy
|
||||
msgid "Could not read from resource."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/gsterror.c:133
|
||||
#: gst/gsterror.c:125
|
||||
#, fuzzy
|
||||
msgid "Could not write to resource."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/gsterror.c:135
|
||||
#: gst/gsterror.c:126
|
||||
#, fuzzy
|
||||
msgid "Could not perform seek on resource."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/gsterror.c:137
|
||||
#: gst/gsterror.c:127
|
||||
#, fuzzy
|
||||
msgid "Could not synchronize on resource."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/gsterror.c:139
|
||||
#: gst/gsterror.c:129
|
||||
#, fuzzy
|
||||
msgid "Could not get/set settings from/on resource."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/gsterror.c:157
|
||||
#: gst/gsterror.c:148
|
||||
msgid "Element doesn't implement handling of this stream. Please file a bug."
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsterror.c:160
|
||||
#: gst/gsterror.c:150
|
||||
#, fuzzy
|
||||
msgid "Could not determine type of stream."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/gsterror.c:162
|
||||
#: gst/gsterror.c:152
|
||||
msgid "The stream is of a different type than handled by this element."
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsterror.c:164
|
||||
#: gst/gsterror.c:154
|
||||
msgid "There is no codec present that can handle the stream's type."
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsterror.c:166
|
||||
#: gst/gsterror.c:155
|
||||
#, fuzzy
|
||||
msgid "Could not decode stream."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/gsterror.c:168
|
||||
#: gst/gsterror.c:156
|
||||
#, fuzzy
|
||||
msgid "Could not encode stream."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/gsterror.c:170
|
||||
#: gst/gsterror.c:157
|
||||
#, fuzzy
|
||||
msgid "Could not demultiplex stream."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/gsterror.c:172
|
||||
#: gst/gsterror.c:158
|
||||
#, fuzzy
|
||||
msgid "Could not multiplex stream."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/gsterror.c:174
|
||||
#: gst/gsterror.c:159
|
||||
msgid "Stream is of the wrong format."
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsterror.c:221
|
||||
#: gst/gsterror.c:207
|
||||
#, c-format
|
||||
msgid "No error message for domain %s."
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsterror.c:226
|
||||
#: gst/gsterror.c:215
|
||||
#, c-format
|
||||
msgid "No standard error message for domain %s and code %d."
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:81
|
||||
#: gst/gsttag.c:83
|
||||
msgid "title"
|
||||
msgstr "titre"
|
||||
|
||||
#: gst/gsttag.c:82
|
||||
#: gst/gsttag.c:83
|
||||
msgid "commonly used title"
|
||||
msgstr "titre utilisé habituellement"
|
||||
|
||||
|
@ -323,351 +318,356 @@ msgstr "album"
|
|||
msgid "album containing this data"
|
||||
msgstr "album contenant cette donnée"
|
||||
|
||||
#: gst/gsttag.c:96
|
||||
#: gst/gsttag.c:94
|
||||
msgid "date"
|
||||
msgstr "date"
|
||||
|
||||
#: gst/gsttag.c:97
|
||||
#: gst/gsttag.c:95
|
||||
msgid "date the data was created (in Julian calendar days)"
|
||||
msgstr "date a laquelle la donnée fut créée (selon le calendrier Julienne)"
|
||||
|
||||
#: gst/gsttag.c:101
|
||||
#: gst/gsttag.c:98
|
||||
msgid "genre"
|
||||
msgstr "genre"
|
||||
|
||||
#: gst/gsttag.c:102
|
||||
#: gst/gsttag.c:99
|
||||
msgid "genre this data belongs to"
|
||||
msgstr "genre auquel cette donnée appartient"
|
||||
|
||||
#: gst/gsttag.c:106
|
||||
#: gst/gsttag.c:102
|
||||
msgid "comment"
|
||||
msgstr "commentaire"
|
||||
|
||||
#: gst/gsttag.c:107
|
||||
#: gst/gsttag.c:103
|
||||
msgid "free text commenting the data"
|
||||
msgstr "texte libre décrivant la donnée"
|
||||
|
||||
#: gst/gsttag.c:111
|
||||
#: gst/gsttag.c:106
|
||||
msgid "track number"
|
||||
msgstr "numéro de piste"
|
||||
|
||||
#: gst/gsttag.c:112
|
||||
#: gst/gsttag.c:107
|
||||
msgid "track number inside a collection"
|
||||
msgstr "numéro de piste au sein d'une collection"
|
||||
|
||||
#: gst/gsttag.c:116
|
||||
#: gst/gsttag.c:110
|
||||
msgid "track count"
|
||||
msgstr "nombre de pistes"
|
||||
|
||||
#: gst/gsttag.c:117
|
||||
#: gst/gsttag.c:111
|
||||
msgid "count of tracks inside collection this track belongs to"
|
||||
msgstr "nombre de pistes dans la collection dont cette donnée fait partie"
|
||||
|
||||
#: gst/gsttag.c:121
|
||||
#: gst/gsttag.c:115
|
||||
#, fuzzy
|
||||
msgid "disc number"
|
||||
msgstr "numéro de piste"
|
||||
|
||||
#: gst/gsttag.c:122
|
||||
#: gst/gsttag.c:116
|
||||
#, fuzzy
|
||||
msgid "disc number inside a collection"
|
||||
msgstr "numéro de piste au sein d'une collection"
|
||||
|
||||
#: gst/gsttag.c:126
|
||||
#: gst/gsttag.c:119
|
||||
#, fuzzy
|
||||
msgid "disc count"
|
||||
msgstr "nombre de pistes"
|
||||
|
||||
#: gst/gsttag.c:127
|
||||
#: gst/gsttag.c:120
|
||||
#, fuzzy
|
||||
msgid "count of discs inside collection this disc belongs to"
|
||||
msgstr "nombre de pistes dans la collection dont cette donnée fait partie"
|
||||
|
||||
#: gst/gsttag.c:131
|
||||
#: gst/gsttag.c:124
|
||||
msgid "location"
|
||||
msgstr "emplacement"
|
||||
|
||||
#: gst/gsttag.c:132
|
||||
#: gst/gsttag.c:125
|
||||
msgid "original location of file as a URI"
|
||||
msgstr "emplacement original du fichier en tant qu'un URI"
|
||||
|
||||
#: gst/gsttag.c:136
|
||||
#: gst/gsttag.c:129
|
||||
msgid "description"
|
||||
msgstr "description"
|
||||
|
||||
#: gst/gsttag.c:137
|
||||
#: gst/gsttag.c:130
|
||||
msgid "short text describing the content of the data"
|
||||
msgstr "texte court décrivant le contenu de la donnée"
|
||||
|
||||
#: gst/gsttag.c:141
|
||||
#: gst/gsttag.c:133
|
||||
msgid "version"
|
||||
msgstr "version"
|
||||
|
||||
#: gst/gsttag.c:142
|
||||
#: gst/gsttag.c:133
|
||||
msgid "version of this data"
|
||||
msgstr "version de cette donnée"
|
||||
|
||||
#: gst/gsttag.c:146
|
||||
#: gst/gsttag.c:136
|
||||
msgid "ISRC"
|
||||
msgstr "ISRC"
|
||||
|
||||
#: gst/gsttag.c:147
|
||||
#: gst/gsttag.c:138
|
||||
msgid "International Standard Recording Code - see http://www.ifpi.org/isrc/"
|
||||
msgstr "International Standard Recording Code - voir http://www.ifpi.org/isrc/"
|
||||
|
||||
#: gst/gsttag.c:151 gst/gsttag.c:152
|
||||
#: gst/gsttag.c:140
|
||||
msgid "organization"
|
||||
msgstr "organisation"
|
||||
|
||||
#: gst/gsttag.c:156
|
||||
#: gst/gsttag.c:143
|
||||
msgid "copyright"
|
||||
msgstr "droit de copie"
|
||||
|
||||
#: gst/gsttag.c:157
|
||||
#: gst/gsttag.c:143
|
||||
msgid "copyright notice of the data"
|
||||
msgstr "information sur le droit de copie de la donnée"
|
||||
|
||||
#: gst/gsttag.c:161
|
||||
#: gst/gsttag.c:146
|
||||
msgid "contact"
|
||||
msgstr "contact"
|
||||
|
||||
#: gst/gsttag.c:162
|
||||
#: gst/gsttag.c:146
|
||||
msgid "contact information"
|
||||
msgstr "information sur le contact"
|
||||
|
||||
#: gst/gsttag.c:166
|
||||
#: gst/gsttag.c:148
|
||||
msgid "license"
|
||||
msgstr "license"
|
||||
|
||||
#: gst/gsttag.c:167
|
||||
#: gst/gsttag.c:148
|
||||
msgid "license of data"
|
||||
msgstr "license de la donnée"
|
||||
|
||||
#: gst/gsttag.c:171
|
||||
#: gst/gsttag.c:151
|
||||
msgid "performer"
|
||||
msgstr "interprète"
|
||||
|
||||
#: gst/gsttag.c:172
|
||||
#: gst/gsttag.c:152
|
||||
msgid "person(s) performing"
|
||||
msgstr "personne(s) qui interprète(nt)"
|
||||
|
||||
#: gst/gsttag.c:176
|
||||
#: gst/gsttag.c:155
|
||||
msgid "duration"
|
||||
msgstr "durée"
|
||||
|
||||
#: gst/gsttag.c:177
|
||||
#: gst/gsttag.c:155
|
||||
msgid "length in GStreamer time units (nanoseconds)"
|
||||
msgstr "longueur en unité de temps GStreamer (nanosecondes)"
|
||||
|
||||
#: gst/gsttag.c:181
|
||||
#: gst/gsttag.c:158
|
||||
msgid "codec"
|
||||
msgstr "codec"
|
||||
|
||||
#: gst/gsttag.c:182
|
||||
#: gst/gsttag.c:159
|
||||
msgid "codec the data is stored in"
|
||||
msgstr "codec avec lequel la donnée fut enregistrée"
|
||||
|
||||
#: gst/gsttag.c:186
|
||||
#: gst/gsttag.c:162
|
||||
#, fuzzy
|
||||
msgid "video codec"
|
||||
msgstr "codec"
|
||||
|
||||
#: gst/gsttag.c:187
|
||||
#: gst/gsttag.c:162
|
||||
#, fuzzy
|
||||
msgid "codec the video data is stored in"
|
||||
msgstr "codec avec lequel la donnée fut enregistrée"
|
||||
|
||||
#: gst/gsttag.c:191
|
||||
#: gst/gsttag.c:165
|
||||
#, fuzzy
|
||||
msgid "audio codec"
|
||||
msgstr "codec"
|
||||
|
||||
#: gst/gsttag.c:192
|
||||
#: gst/gsttag.c:165
|
||||
#, fuzzy
|
||||
msgid "codec the audio data is stored in"
|
||||
msgstr "codec avec lequel la donnée fut enregistrée"
|
||||
|
||||
#: gst/gsttag.c:196
|
||||
#: gst/gsttag.c:167
|
||||
msgid "bitrate"
|
||||
msgstr "bitrate"
|
||||
|
||||
#: gst/gsttag.c:197
|
||||
#: gst/gsttag.c:167
|
||||
msgid "exact or average bitrate in bits/s"
|
||||
msgstr "bitrate exact ou moyen en bits par seconde"
|
||||
|
||||
#: gst/gsttag.c:201
|
||||
#: gst/gsttag.c:169
|
||||
#, fuzzy
|
||||
msgid "nominal bitrate"
|
||||
msgstr "bitrate minimum"
|
||||
|
||||
#: gst/gsttag.c:202
|
||||
#: gst/gsttag.c:169
|
||||
#, fuzzy
|
||||
msgid "nominal bitrate in bits/s"
|
||||
msgstr "bitrate minimum en bits par seconde"
|
||||
|
||||
#: gst/gsttag.c:206
|
||||
#: gst/gsttag.c:171
|
||||
msgid "minimum bitrate"
|
||||
msgstr "bitrate minimum"
|
||||
|
||||
#: gst/gsttag.c:207
|
||||
#: gst/gsttag.c:171
|
||||
msgid "minimum bitrate in bits/s"
|
||||
msgstr "bitrate minimum en bits par seconde"
|
||||
|
||||
#: gst/gsttag.c:211
|
||||
#: gst/gsttag.c:173
|
||||
msgid "maximum bitrate"
|
||||
msgstr "bitrate maximum"
|
||||
|
||||
#: gst/gsttag.c:212
|
||||
#: gst/gsttag.c:173
|
||||
msgid "maximum bitrate in bits/s"
|
||||
msgstr "bitrate maximum en bits par seconde"
|
||||
|
||||
#: gst/gsttag.c:216
|
||||
#: gst/gsttag.c:176
|
||||
#, fuzzy
|
||||
msgid "encoder"
|
||||
msgstr "codec"
|
||||
|
||||
#: gst/gsttag.c:217
|
||||
#: gst/gsttag.c:176
|
||||
#, fuzzy
|
||||
msgid "encoder used to encode this stream"
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/gsttag.c:221
|
||||
#: gst/gsttag.c:179
|
||||
#, fuzzy
|
||||
msgid "encoder version"
|
||||
msgstr "version"
|
||||
|
||||
#: gst/gsttag.c:222
|
||||
#: gst/gsttag.c:180
|
||||
msgid "version of the encoder used to encode this stream"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:226
|
||||
#: gst/gsttag.c:182
|
||||
msgid "serial"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:227
|
||||
#: gst/gsttag.c:182
|
||||
msgid "serial number of track"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:231
|
||||
#: gst/gsttag.c:184
|
||||
msgid "replaygain track gain"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:232
|
||||
#: gst/gsttag.c:184
|
||||
msgid "track gain in db"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:236
|
||||
#: gst/gsttag.c:186
|
||||
msgid "replaygain track peak"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:237
|
||||
#: gst/gsttag.c:186
|
||||
msgid "peak of the track"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:241
|
||||
#: gst/gsttag.c:188
|
||||
msgid "replaygain album gain"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:242
|
||||
#: gst/gsttag.c:188
|
||||
#, fuzzy
|
||||
msgid "album gain in db"
|
||||
msgstr "album contenant cette donnée"
|
||||
|
||||
#: gst/gsttag.c:246
|
||||
#: gst/gsttag.c:190
|
||||
msgid "replaygain album peak"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:247
|
||||
#: gst/gsttag.c:190
|
||||
msgid "peak of the album"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:285
|
||||
#: gst/gsttag.c:229
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: gst/autoplug/gstspider.c:419
|
||||
#: gst/autoplug/gstspider.c:447
|
||||
#, c-format
|
||||
msgid "There is no element present to handle the stream's mime type %s."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstfilesink.c:248
|
||||
#: gst/elements/gstfilesink.c:257
|
||||
#, fuzzy
|
||||
msgid "No file name specified for writing."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/elements/gstfilesink.c:255
|
||||
#: gst/elements/gstfilesink.c:264
|
||||
#, c-format
|
||||
msgid "Could not open file \"%s\" for writing."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstfilesink.c:275
|
||||
#: gst/elements/gstfilesink.c:283
|
||||
#, c-format
|
||||
msgid "Error closing file \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstfilesink.c:342 gst/elements/gstfilesink.c:374
|
||||
#: gst/elements/gstfilesink.c:426
|
||||
#: gst/elements/gstfilesink.c:355 gst/elements/gstfilesink.c:390
|
||||
#: gst/elements/gstfilesink.c:443
|
||||
#, c-format
|
||||
msgid "Error while writing to file \"%s\"."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstfilesrc.c:676 gst/elements/gstmultifilesrc.c:242
|
||||
#: gst/elements/gstfilesrc.c:739 gst/elements/gstmultifilesrc.c:248
|
||||
#, fuzzy
|
||||
msgid "No file name specified for reading."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/elements/gstfilesrc.c:691 gst/elements/gstmultifilesrc.c:250
|
||||
#: gst/elements/gstfilesrc.c:754 gst/elements/gstmultifilesrc.c:256
|
||||
#, fuzzy, c-format
|
||||
msgid "Could not open file \"%s\" for reading."
|
||||
msgstr "Echoué a déterminer le type du flux"
|
||||
|
||||
#: gst/elements/gstfilesrc.c:702
|
||||
#: gst/elements/gstfilesrc.c:765
|
||||
#, c-format
|
||||
msgid "File \"%s\" isn't a regular file."
|
||||
msgid "\"%s\" is a directory."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstidentity.c:171
|
||||
#: gst/elements/gstfilesrc.c:771
|
||||
#, c-format
|
||||
msgid "File \"%s\" is a socket."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstidentity.c:191
|
||||
msgid "Failed after iterations as requested."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gsttypefind.c:149
|
||||
#: gst/elements/gsttypefindelement.c:148
|
||||
msgid "caps"
|
||||
msgstr "capacités"
|
||||
|
||||
#: gst/elements/gsttypefind.c:149
|
||||
#: gst/elements/gsttypefindelement.c:149
|
||||
msgid "detected capabilities in stream"
|
||||
msgstr "capacités detectées dans le flux"
|
||||
|
||||
#: gst/elements/gsttypefind.c:152
|
||||
#: gst/elements/gsttypefindelement.c:152
|
||||
msgid "minimum"
|
||||
msgstr "minimum"
|
||||
|
||||
#: gst/elements/gsttypefind.c:155
|
||||
#: gst/elements/gsttypefindelement.c:156
|
||||
msgid "maximum"
|
||||
msgstr "maximum"
|
||||
|
||||
#: gst/parse/grammar.y:170
|
||||
#: gst/parse/grammar.y:168
|
||||
#, c-format
|
||||
msgid "specified empty bin \"%s\", not allowed"
|
||||
msgstr "conteneur vide specifié \"%s\", non autorisé"
|
||||
|
||||
#: gst/parse/grammar.y:175
|
||||
#: gst/parse/grammar.y:173
|
||||
#, c-format
|
||||
msgid "no bin \"%s\", skipping"
|
||||
msgstr "pas de conteneur \"%s\", ignoré"
|
||||
|
||||
#: gst/parse/grammar.y:319
|
||||
#: gst/parse/grammar.y:311
|
||||
#, c-format
|
||||
msgid "no property \"%s\" in element \"%s\""
|
||||
msgstr "pas de proprieté \"%s\" dans l'element \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:332
|
||||
#: gst/parse/grammar.y:324
|
||||
#, c-format
|
||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||
msgstr ""
|
||||
"impossible de definir la proprieté \"%s\" dans l'element \"%s\" comme \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:337
|
||||
#: gst/parse/grammar.y:329
|
||||
#, c-format
|
||||
msgid ""
|
||||
"could not convert \"%s\" so that it fits property \"%s\" in element \"%s\""
|
||||
|
@ -675,59 +675,59 @@ msgstr ""
|
|||
"impossible de convertir \"%s\" de manière a correspondre avec la proprieté "
|
||||
"\"%s\" dans l'element \"%s\" "
|
||||
|
||||
#: gst/parse/grammar.y:525
|
||||
#: gst/parse/grammar.y:514
|
||||
#, c-format
|
||||
msgid "could not link %s to %s"
|
||||
msgstr "impossible de connecter %s a %s"
|
||||
|
||||
#: gst/parse/grammar.y:570
|
||||
#: gst/parse/grammar.y:559
|
||||
#, c-format
|
||||
msgid "no element \"%s\""
|
||||
msgstr "pas d'element \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:621
|
||||
#: gst/parse/grammar.y:610
|
||||
#, c-format
|
||||
msgid "could not parse caps \"%s\""
|
||||
msgstr "impossible d'interpreter les capacités \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:643 gst/parse/grammar.y:697 gst/parse/grammar.y:713
|
||||
#: gst/parse/grammar.y:771
|
||||
#: gst/parse/grammar.y:632 gst/parse/grammar.y:685 gst/parse/grammar.y:701
|
||||
#: gst/parse/grammar.y:759
|
||||
msgid "link without source element"
|
||||
msgstr "lien sans element source"
|
||||
|
||||
#: gst/parse/grammar.y:649 gst/parse/grammar.y:694 gst/parse/grammar.y:780
|
||||
#: gst/parse/grammar.y:638 gst/parse/grammar.y:682 gst/parse/grammar.y:768
|
||||
msgid "link without sink element"
|
||||
msgstr "lien sans element destination"
|
||||
|
||||
#: gst/parse/grammar.y:731
|
||||
#: gst/parse/grammar.y:719
|
||||
#, c-format
|
||||
msgid "no source element for URI \"%s\""
|
||||
msgstr "pas d'element source pour l'URI \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:741
|
||||
#: gst/parse/grammar.y:729
|
||||
#, c-format
|
||||
msgid "no element to link URI \"%s\" to"
|
||||
msgstr "pas d'element avec lequel lier l'URI \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:749
|
||||
#: gst/parse/grammar.y:737
|
||||
#, c-format
|
||||
msgid "no sink element for URI \"%s\""
|
||||
msgstr "pas d'element destination pour l'URI \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:753
|
||||
#: gst/parse/grammar.y:741
|
||||
#, c-format
|
||||
msgid "could not link sink element for URI \"%s\""
|
||||
msgstr "impossible de lier un element destination pour l'URI \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:765
|
||||
#: gst/parse/grammar.y:753
|
||||
msgid "empty pipeline not allowed"
|
||||
msgstr "tube vide non autorisé"
|
||||
|
||||
#: tools/gst-inspect.c:917
|
||||
#: tools/gst-inspect.c:937
|
||||
msgid "Show plugin details"
|
||||
msgstr ""
|
||||
|
||||
#: tools/gst-inspect.c:919
|
||||
#: tools/gst-inspect.c:940
|
||||
msgid "Show scheduler details"
|
||||
msgstr ""
|
||||
|
||||
|
@ -739,127 +739,139 @@ msgstr "L'execution s'est terminé après %"
|
|||
msgid " iterations (sum %"
|
||||
msgstr "itérations (somme %"
|
||||
|
||||
#: tools/gst-launch.c:79
|
||||
#: tools/gst-launch.c:80
|
||||
msgid " ns, average %"
|
||||
msgstr "ns, moyenne %"
|
||||
|
||||
#: tools/gst-launch.c:79
|
||||
#: tools/gst-launch.c:80
|
||||
msgid " ns, min %"
|
||||
msgstr "ns, min %"
|
||||
|
||||
#: tools/gst-launch.c:79
|
||||
#: tools/gst-launch.c:81
|
||||
msgid " ns, max %"
|
||||
msgstr "ns, max %"
|
||||
|
||||
#: tools/gst-launch.c:79
|
||||
#: tools/gst-launch.c:81
|
||||
msgid " ns).\n"
|
||||
msgstr "ns).\n"
|
||||
|
||||
#: tools/gst-launch.c:99
|
||||
#: tools/gst-launch.c:102
|
||||
msgid "Usage: gst-xmllaunch <file.xml> [ element.property=value ... ]\n"
|
||||
msgstr ""
|
||||
"Utilisation: gst-xmllaunch <fichier.xml> [ element.property=valeur ... ]\n"
|
||||
|
||||
#: tools/gst-launch.c:107
|
||||
#: tools/gst-launch.c:110
|
||||
#, c-format
|
||||
msgid "ERROR: parse of xml file '%s' failed.\n"
|
||||
msgstr "ERREUR: l'interpretation du fichier xml '%s' a echoué.\n"
|
||||
|
||||
#: tools/gst-launch.c:113
|
||||
#: tools/gst-launch.c:116
|
||||
#, c-format
|
||||
msgid "ERROR: no toplevel pipeline element in file '%s'.\n"
|
||||
msgstr "ERREUR: pas d'element tube de plus haut niveau dans le fichier '%s'.\n"
|
||||
|
||||
#: tools/gst-launch.c:118
|
||||
#: tools/gst-launch.c:123
|
||||
#, c-format
|
||||
msgid "WARNING: only one toplevel element is supported at this time."
|
||||
msgstr ""
|
||||
"AVERTISSEMENT: actuellement seul un element tube de plus haut niveau est "
|
||||
"supporté."
|
||||
|
||||
#: tools/gst-launch.c:128
|
||||
#: tools/gst-launch.c:134
|
||||
#, c-format
|
||||
msgid "ERROR: could not parse command line argument %d: %s.\n"
|
||||
msgstr ""
|
||||
"ERREUR: impossible d'interpreter l'argument de la ligne de commande numero %"
|
||||
"d: %s.\n"
|
||||
|
||||
#: tools/gst-launch.c:138
|
||||
#: tools/gst-launch.c:145
|
||||
#, c-format
|
||||
msgid "WARNING: element named '%s' not found.\n"
|
||||
msgstr "AVERTISSEMENT: l'element nommé '%s' est introuvable.\n"
|
||||
|
||||
#: tools/gst-launch.c:273
|
||||
#: tools/gst-launch.c:280
|
||||
#, c-format
|
||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||
msgstr "TAG DECOUVERT : decouvert par l'element \"%s\".\n"
|
||||
|
||||
#: tools/gst-launch.c:350
|
||||
#: tools/gst-launch.c:358
|
||||
msgid "Output tags (also known as metadata)"
|
||||
msgstr "tags de sortie (aussi connus sous le nom de metadata)"
|
||||
|
||||
#: tools/gst-launch.c:352
|
||||
#: tools/gst-launch.c:360
|
||||
msgid "Output status information and property notifications"
|
||||
msgstr ""
|
||||
"Afficher des informations sur le status et les notifications de proprietés"
|
||||
|
||||
#: tools/gst-launch.c:354
|
||||
#: tools/gst-launch.c:362
|
||||
msgid "Do not output status information of TYPE"
|
||||
msgstr "Ne pas afficher d'informations sur les status de TYPE"
|
||||
|
||||
#: tools/gst-launch.c:354
|
||||
#: tools/gst-launch.c:362
|
||||
msgid "TYPE1,TYPE2,..."
|
||||
msgstr "TYPE1,TYPE2,..."
|
||||
|
||||
#: tools/gst-launch.c:357
|
||||
#: tools/gst-launch.c:365
|
||||
msgid "Save xml representation of pipeline to FILE and exit"
|
||||
msgstr "Sauvegarder la representation xml du tube dans FICHIER et quitter"
|
||||
|
||||
#: tools/gst-launch.c:357
|
||||
#: tools/gst-launch.c:365
|
||||
msgid "FILE"
|
||||
msgstr "FICHIER"
|
||||
|
||||
#: tools/gst-launch.c:360
|
||||
#: tools/gst-launch.c:368
|
||||
msgid "Do not install a fault handler"
|
||||
msgstr "Ne pas installer un gestionaire de dysfonctionement"
|
||||
|
||||
#: tools/gst-launch.c:362
|
||||
#: tools/gst-launch.c:370
|
||||
msgid "Print alloc trace (if enabled at compile time)"
|
||||
msgstr "Imprimer les traces d'allocations (si activées lors de la compilation)"
|
||||
|
||||
#: tools/gst-launch.c:364
|
||||
#: tools/gst-launch.c:372
|
||||
msgid "Number of times to iterate pipeline"
|
||||
msgstr "Nombres d'iterations du tube a accomplir"
|
||||
|
||||
#: tools/gst-launch.c:429
|
||||
#: tools/gst-launch.c:438
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||
msgstr "ERREUR: le tube n'a pas pu etre construit: %s.\n"
|
||||
|
||||
#: tools/gst-launch.c:433
|
||||
#: tools/gst-launch.c:442
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline could not be constructed.\n"
|
||||
msgstr "ERREUR: le tube n'a pas pu etre construit.\n"
|
||||
|
||||
#: tools/gst-launch.c:437
|
||||
#: tools/gst-launch.c:446
|
||||
#, c-format
|
||||
msgid "WARNING: erroneous pipeline: %s\n"
|
||||
msgstr "AVERTISSEMENT: tube erroné: %s\n"
|
||||
|
||||
#: tools/gst-launch.c:438
|
||||
#: tools/gst-launch.c:447
|
||||
#, c-format
|
||||
msgid " Trying to run anyway.\n"
|
||||
msgstr " Tentative d'execution malgrè tout.\n"
|
||||
|
||||
#: tools/gst-launch.c:462
|
||||
#: tools/gst-launch.c:475
|
||||
#, c-format
|
||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||
msgstr "ERREUR: l'element 'tube' est introuvable.\n"
|
||||
|
||||
#: tools/gst-launch.c:469
|
||||
#: tools/gst-launch.c:482
|
||||
#, c-format
|
||||
msgid "RUNNING pipeline ...\n"
|
||||
msgstr "EXECUTION du tube en cours ...\n"
|
||||
|
||||
#: tools/gst-launch.c:471
|
||||
#: tools/gst-launch.c:485
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||
msgstr "ERREUR: le tube refuse de s'executer.\n"
|
||||
|
||||
#~ msgid "')"
|
||||
#~ msgstr "')"
|
||||
|
||||
#~ msgid "' is the default)"
|
||||
#~ msgstr "' est la valeur par defaut)"
|
||||
|
||||
#~ msgid "CATEGORIES"
|
||||
#~ msgstr "CATEGORIES"
|
||||
|
||||
|
|
386
po/nl.po
386
po/nl.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: GStreamer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-03-09 16:16+0100\n"
|
||||
"POT-Creation-Date: 2004-05-04 13:46+0200\n"
|
||||
"PO-Revision-Date: 2004-01-13 12:03+0100\n"
|
||||
"Last-Translator: Thomas Vander Stichele <thomas@apestaart.org>\n"
|
||||
"Language-Team: Dutch <nl@li.org>\n"
|
||||
|
@ -15,30 +15,30 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: gst/gst.c:120
|
||||
#: gst/gst.c:129
|
||||
msgid "Print the GStreamer version"
|
||||
msgstr "Druk de GStreamer versie af"
|
||||
|
||||
#: gst/gst.c:121
|
||||
#: gst/gst.c:131
|
||||
msgid "Make all warnings fatal"
|
||||
msgstr "Maak alle waarschuwingen fataal"
|
||||
|
||||
#: gst/gst.c:124
|
||||
#: gst/gst.c:135
|
||||
msgid "Print available debug categories and exit"
|
||||
msgstr "Druk beschikbare debug-categorieën af en stop"
|
||||
|
||||
#: gst/gst.c:125
|
||||
#: gst/gst.c:138
|
||||
msgid ""
|
||||
"Default debug level from 1 (only error) to 5 (anything) or 0 for no output"
|
||||
msgstr ""
|
||||
"Standaard debug-niveau van 1 (enkel fouten) tot 5 (alles) of 0 voor geen "
|
||||
"uitvoer"
|
||||
|
||||
#: gst/gst.c:125
|
||||
#: gst/gst.c:140
|
||||
msgid "LEVEL"
|
||||
msgstr "NIVEAU"
|
||||
|
||||
#: gst/gst.c:126
|
||||
#: gst/gst.c:142
|
||||
msgid ""
|
||||
"Comma-separated list of category_name:level pairs to set specific levels for "
|
||||
"the individual categories. Example: GST_AUTOPLUG:5,GST_ELEMENT_*:3"
|
||||
|
@ -47,81 +47,76 @@ msgstr ""
|
|||
"specifieke niveau's in te stellen voor de individuele categorieën.Voorbeeld:"
|
||||
"GST_AUTOPLUG:5,GST_ELEMENT_*:3"
|
||||
|
||||
#: gst/gst.c:126
|
||||
#: gst/gst.c:145
|
||||
msgid "LIST"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gst.c:127
|
||||
#: gst/gst.c:147
|
||||
msgid "Disable colored debugging output"
|
||||
msgstr "Zet kleuren af in debug-uitvoer"
|
||||
|
||||
#: gst/gst.c:128
|
||||
#: gst/gst.c:149
|
||||
msgid "Disable debugging"
|
||||
msgstr "Zet debugging af"
|
||||
|
||||
#: gst/gst.c:131
|
||||
#: gst/gst.c:153
|
||||
msgid "Disable accelerated CPU instructions"
|
||||
msgstr "Schakel versnelde CPU-instructies uit"
|
||||
|
||||
#: gst/gst.c:132
|
||||
#: gst/gst.c:155
|
||||
msgid "Enable verbose plugin loading diagnostics"
|
||||
msgstr "Schakel uitgebreide diagnostiek aan voor het laden van plugins"
|
||||
|
||||
#: gst/gst.c:133
|
||||
msgid "path list for loading plugins (separated by '"
|
||||
msgstr "padlijst om plugins te laden (gescheiden door '"
|
||||
|
||||
#: gst/gst.c:133
|
||||
msgid "')"
|
||||
msgstr ")"
|
||||
|
||||
#: gst/gst.c:133
|
||||
#: gst/gst.c:157
|
||||
msgid "PATHS"
|
||||
msgstr "PADEN"
|
||||
|
||||
#: gst/gst.c:134
|
||||
#: gst/gst.c:160
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Comma-separated list of plugins to preload in addition to the list stored in "
|
||||
"env variable GST_PLUGIN_PATH"
|
||||
"envronment variable GST_PLUGIN_PATH"
|
||||
msgstr ""
|
||||
"Lijst van plugins, gescheiden door komma's, om eerste te laden bovenop de "
|
||||
"lijst volgens omgevingsvariable GST_PLUGIN_PATH"
|
||||
|
||||
#: gst/gst.c:134
|
||||
#: gst/gst.c:162
|
||||
msgid "PLUGINS"
|
||||
msgstr "PLUGINS"
|
||||
|
||||
#: gst/gst.c:135
|
||||
#: gst/gst.c:165
|
||||
msgid "Disable trapping of segmentation faults during plugin loading"
|
||||
msgstr ""
|
||||
"Schakel het opvangen van segmentatiefouten uit tijdens laden van plugins"
|
||||
|
||||
#: gst/gst.c:136
|
||||
msgid "Scheduler to use ('"
|
||||
msgstr "Planner om te gebruiken ('"
|
||||
|
||||
#: gst/gst.c:136
|
||||
msgid "' is the default)"
|
||||
msgstr "' is de voorkeursplanner)"
|
||||
|
||||
#: gst/gst.c:136
|
||||
#: gst/gst.c:168
|
||||
msgid "SCHEDULER"
|
||||
msgstr "PLANNER"
|
||||
|
||||
#: gst/gst.c:137
|
||||
#: gst/gst.c:170
|
||||
msgid "Registry to use"
|
||||
msgstr "Register om te gebruiken"
|
||||
|
||||
#: gst/gst.c:137
|
||||
#: gst/gst.c:170
|
||||
msgid "REGISTRY"
|
||||
msgstr "REGISTER"
|
||||
|
||||
#: gst/gstelement.c:242
|
||||
#: gst/gst.c:183
|
||||
#, fuzzy, c-format
|
||||
msgid "path list for loading plugins (separated by '%s')"
|
||||
msgstr "padlijst om plugins te laden (gescheiden door '"
|
||||
|
||||
#: gst/gst.c:187
|
||||
#, fuzzy, c-format
|
||||
msgid "Scheduler to use (default is '%s')"
|
||||
msgstr "Planner om te gebruiken ('"
|
||||
|
||||
#: gst/gstelement.c:253
|
||||
#, c-format
|
||||
msgid "ERROR: from element %s: %s\n"
|
||||
msgstr "FOUT: van element %s: %s\n"
|
||||
|
||||
#: gst/gstelement.c:244
|
||||
#: gst/gstelement.c:255
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Additional debug info:\n"
|
||||
|
@ -134,7 +129,7 @@ msgstr ""
|
|||
msgid "GStreamer encountered a general core library error."
|
||||
msgstr "GStreamer kreeg een algemene fout van de kernbibliotheek."
|
||||
|
||||
#: gst/gsterror.c:58 gst/gsterror.c:94 gst/gsterror.c:116 gst/gsterror.c:154
|
||||
#: gst/gsterror.c:58 gst/gsterror.c:95 gst/gsterror.c:115 gst/gsterror.c:145
|
||||
msgid ""
|
||||
"GStreamer developers were too lazy to assign an error code to this error. "
|
||||
"Please file a bug."
|
||||
|
@ -185,7 +180,7 @@ msgstr "Interne GStreamer-fout: capsprobleem. Stuur een foutrapport."
|
|||
msgid "Internal GStreamer error: tag problem. File a bug."
|
||||
msgstr "Interne GStreamer-fout: tagprobleem. Stuur een foutrapport."
|
||||
|
||||
#: gst/gsterror.c:92 gst/gsterror.c:114 gst/gsterror.c:152
|
||||
#: gst/gsterror.c:93 gst/gsterror.c:113 gst/gsterror.c:143
|
||||
msgid "GStreamer encountered a general supporting library error."
|
||||
msgstr "GStreamer kreeg een algemene fout van een ondersteunende bibliotheek."
|
||||
|
||||
|
@ -193,105 +188,105 @@ msgstr "GStreamer kreeg een algemene fout van een ondersteunende bibliotheek."
|
|||
msgid "Could not initialize supporting library."
|
||||
msgstr "Kon ondersteunende bibliotheek niet initialiseren."
|
||||
|
||||
#: gst/gsterror.c:99 gst/gsterror.c:101
|
||||
#: gst/gsterror.c:98 gst/gsterror.c:99
|
||||
msgid "Could not close supporting library."
|
||||
msgstr "Kon ondersteunende bibliotheek niet sluiten."
|
||||
|
||||
#: gst/gsterror.c:119
|
||||
#: gst/gsterror.c:117
|
||||
msgid "Resource not found."
|
||||
msgstr "Bron niet gevonden."
|
||||
|
||||
#: gst/gsterror.c:121
|
||||
#: gst/gsterror.c:118
|
||||
msgid "Resource busy or not available."
|
||||
msgstr "Bron bezet of niet beschikbaar."
|
||||
|
||||
#: gst/gsterror.c:123
|
||||
#: gst/gsterror.c:119
|
||||
msgid "Could not open resource for reading."
|
||||
msgstr "Kon bron niet openen om te lezen."
|
||||
|
||||
#: gst/gsterror.c:125
|
||||
#: gst/gsterror.c:120
|
||||
msgid "Could not open resource for writing."
|
||||
msgstr "Kon bron niet openen om te schrijven."
|
||||
|
||||
#: gst/gsterror.c:127
|
||||
#: gst/gsterror.c:122
|
||||
msgid "Could not open resource for reading and writing."
|
||||
msgstr "Kon bron niet openen om te lezen en schrijven."
|
||||
|
||||
#: gst/gsterror.c:129
|
||||
#: gst/gsterror.c:123
|
||||
msgid "Could not close resource."
|
||||
msgstr "Kon bron niet sluiten."
|
||||
|
||||
#: gst/gsterror.c:131
|
||||
#: gst/gsterror.c:124
|
||||
msgid "Could not read from resource."
|
||||
msgstr "Kon niet lezen van bron."
|
||||
|
||||
#: gst/gsterror.c:133
|
||||
#: gst/gsterror.c:125
|
||||
msgid "Could not write to resource."
|
||||
msgstr "Kon niet schrijven naar bron."
|
||||
|
||||
#: gst/gsterror.c:135
|
||||
#: gst/gsterror.c:126
|
||||
msgid "Could not perform seek on resource."
|
||||
msgstr "Kon de bron niet spoelen."
|
||||
|
||||
#: gst/gsterror.c:137
|
||||
#: gst/gsterror.c:127
|
||||
msgid "Could not synchronize on resource."
|
||||
msgstr "Kon niet synchroniseren op de bron."
|
||||
|
||||
#: gst/gsterror.c:139
|
||||
#: gst/gsterror.c:129
|
||||
msgid "Could not get/set settings from/on resource."
|
||||
msgstr "Kon geen instellingen lezen/schrijven van/naar bron."
|
||||
|
||||
#: gst/gsterror.c:157
|
||||
#: gst/gsterror.c:148
|
||||
msgid "Element doesn't implement handling of this stream. Please file a bug."
|
||||
msgstr "Element ondersteunt deze stroom niet. Stuur een foutrapport."
|
||||
|
||||
#: gst/gsterror.c:160
|
||||
#: gst/gsterror.c:150
|
||||
msgid "Could not determine type of stream."
|
||||
msgstr "Kon het type van de stroom niet herkennen."
|
||||
|
||||
#: gst/gsterror.c:162
|
||||
#: gst/gsterror.c:152
|
||||
msgid "The stream is of a different type than handled by this element."
|
||||
msgstr "De stroom is van een ander type dan dit element kan verwerken."
|
||||
|
||||
#: gst/gsterror.c:164
|
||||
#: gst/gsterror.c:154
|
||||
msgid "There is no codec present that can handle the stream's type."
|
||||
msgstr "Er is geen codec aanwezig die dit type stroom kan verwerken."
|
||||
|
||||
#: gst/gsterror.c:166
|
||||
#: gst/gsterror.c:155
|
||||
msgid "Could not decode stream."
|
||||
msgstr "Kon de stroom niet decoderen."
|
||||
|
||||
#: gst/gsterror.c:168
|
||||
#: gst/gsterror.c:156
|
||||
msgid "Could not encode stream."
|
||||
msgstr "Kon de stroom niet coderen."
|
||||
|
||||
#: gst/gsterror.c:170
|
||||
#: gst/gsterror.c:157
|
||||
msgid "Could not demultiplex stream."
|
||||
msgstr "Kon de stroom niet demultiplexen."
|
||||
|
||||
#: gst/gsterror.c:172
|
||||
#: gst/gsterror.c:158
|
||||
msgid "Could not multiplex stream."
|
||||
msgstr "Kon de stroom niet multiplexen."
|
||||
|
||||
#: gst/gsterror.c:174
|
||||
#: gst/gsterror.c:159
|
||||
msgid "Stream is of the wrong format."
|
||||
msgstr "Stroom is van het verkeerde formaat."
|
||||
|
||||
#: gst/gsterror.c:221
|
||||
#: gst/gsterror.c:207
|
||||
#, c-format
|
||||
msgid "No error message for domain %s."
|
||||
msgstr "Geen foutboodschap voor domein %s."
|
||||
|
||||
#: gst/gsterror.c:226
|
||||
#: gst/gsterror.c:215
|
||||
#, c-format
|
||||
msgid "No standard error message for domain %s and code %d."
|
||||
msgstr "Geen standaard foutboodschap voor domein %s en code %d."
|
||||
|
||||
#: gst/gsttag.c:81
|
||||
#: gst/gsttag.c:83
|
||||
msgid "title"
|
||||
msgstr "titel"
|
||||
|
||||
#: gst/gsttag.c:82
|
||||
#: gst/gsttag.c:83
|
||||
msgid "commonly used title"
|
||||
msgstr "vaak gebruikte titel"
|
||||
|
||||
|
@ -311,336 +306,341 @@ msgstr "album"
|
|||
msgid "album containing this data"
|
||||
msgstr "album waarop dit stuk staat"
|
||||
|
||||
#: gst/gsttag.c:96
|
||||
#: gst/gsttag.c:94
|
||||
msgid "date"
|
||||
msgstr "datum"
|
||||
|
||||
#: gst/gsttag.c:97
|
||||
#: gst/gsttag.c:95
|
||||
msgid "date the data was created (in Julian calendar days)"
|
||||
msgstr "datum waarop het stuk gemaakt is (in Juliaanse kalenderdagen)"
|
||||
|
||||
#: gst/gsttag.c:101
|
||||
#: gst/gsttag.c:98
|
||||
msgid "genre"
|
||||
msgstr "genre"
|
||||
|
||||
#: gst/gsttag.c:102
|
||||
#: gst/gsttag.c:99
|
||||
msgid "genre this data belongs to"
|
||||
msgstr "genre van het stuk"
|
||||
|
||||
#: gst/gsttag.c:106
|
||||
#: gst/gsttag.c:102
|
||||
msgid "comment"
|
||||
msgstr "commentaar"
|
||||
|
||||
#: gst/gsttag.c:107
|
||||
#: gst/gsttag.c:103
|
||||
msgid "free text commenting the data"
|
||||
msgstr "vrij te kiezen commentaartekst die het stuk beschrijft"
|
||||
|
||||
#: gst/gsttag.c:111
|
||||
#: gst/gsttag.c:106
|
||||
msgid "track number"
|
||||
msgstr "nummer"
|
||||
|
||||
#: gst/gsttag.c:112
|
||||
#: gst/gsttag.c:107
|
||||
msgid "track number inside a collection"
|
||||
msgstr "nummer van het stuk op een verzameling"
|
||||
|
||||
#: gst/gsttag.c:116
|
||||
#: gst/gsttag.c:110
|
||||
msgid "track count"
|
||||
msgstr "aantal nummers"
|
||||
|
||||
#: gst/gsttag.c:117
|
||||
#: gst/gsttag.c:111
|
||||
msgid "count of tracks inside collection this track belongs to"
|
||||
msgstr "aantal nummers van de verzameling waarop dit stuk staat"
|
||||
|
||||
#: gst/gsttag.c:121
|
||||
#: gst/gsttag.c:115
|
||||
msgid "disc number"
|
||||
msgstr "disc nummer"
|
||||
|
||||
#: gst/gsttag.c:122
|
||||
#: gst/gsttag.c:116
|
||||
msgid "disc number inside a collection"
|
||||
msgstr "nummer van de disc in een verzameling"
|
||||
|
||||
#: gst/gsttag.c:126
|
||||
#: gst/gsttag.c:119
|
||||
msgid "disc count"
|
||||
msgstr "aantal discs"
|
||||
|
||||
#: gst/gsttag.c:127
|
||||
#: gst/gsttag.c:120
|
||||
msgid "count of discs inside collection this disc belongs to"
|
||||
msgstr "aantal discs in de verzameling waartoe deze disc behoort"
|
||||
|
||||
#: gst/gsttag.c:131
|
||||
#: gst/gsttag.c:124
|
||||
msgid "location"
|
||||
msgstr "locatie"
|
||||
|
||||
#: gst/gsttag.c:132
|
||||
#: gst/gsttag.c:125
|
||||
msgid "original location of file as a URI"
|
||||
msgstr "originele locatie van bestand als een URI"
|
||||
|
||||
#: gst/gsttag.c:136
|
||||
#: gst/gsttag.c:129
|
||||
msgid "description"
|
||||
msgstr "omschrijving"
|
||||
|
||||
#: gst/gsttag.c:137
|
||||
#: gst/gsttag.c:130
|
||||
msgid "short text describing the content of the data"
|
||||
msgstr "korte tekst die de inhoud van het stuk omschrijft"
|
||||
|
||||
#: gst/gsttag.c:141
|
||||
#: gst/gsttag.c:133
|
||||
msgid "version"
|
||||
msgstr "versie"
|
||||
|
||||
#: gst/gsttag.c:142
|
||||
#: gst/gsttag.c:133
|
||||
msgid "version of this data"
|
||||
msgstr "versie van dit stuk"
|
||||
|
||||
#: gst/gsttag.c:146
|
||||
#: gst/gsttag.c:136
|
||||
msgid "ISRC"
|
||||
msgstr "ISRC"
|
||||
|
||||
#: gst/gsttag.c:147
|
||||
#: gst/gsttag.c:138
|
||||
msgid "International Standard Recording Code - see http://www.ifpi.org/isrc/"
|
||||
msgstr ""
|
||||
"Internationale Standaard Recording Code - zie http://www.ifpi.org/isrc/"
|
||||
|
||||
#: gst/gsttag.c:151 gst/gsttag.c:152
|
||||
#: gst/gsttag.c:140
|
||||
msgid "organization"
|
||||
msgstr "organizatie"
|
||||
|
||||
#: gst/gsttag.c:156
|
||||
#: gst/gsttag.c:143
|
||||
msgid "copyright"
|
||||
msgstr "copyright"
|
||||
|
||||
#: gst/gsttag.c:157
|
||||
#: gst/gsttag.c:143
|
||||
msgid "copyright notice of the data"
|
||||
msgstr "copyright-notitie van het stuk"
|
||||
|
||||
#: gst/gsttag.c:161
|
||||
#: gst/gsttag.c:146
|
||||
msgid "contact"
|
||||
msgstr "contact"
|
||||
|
||||
#: gst/gsttag.c:162
|
||||
#: gst/gsttag.c:146
|
||||
msgid "contact information"
|
||||
msgstr "contactinformatie"
|
||||
|
||||
#: gst/gsttag.c:166
|
||||
#: gst/gsttag.c:148
|
||||
msgid "license"
|
||||
msgstr "licentie"
|
||||
|
||||
#: gst/gsttag.c:167
|
||||
#: gst/gsttag.c:148
|
||||
msgid "license of data"
|
||||
msgstr "licentie van het stuk"
|
||||
|
||||
#: gst/gsttag.c:171
|
||||
#: gst/gsttag.c:151
|
||||
msgid "performer"
|
||||
msgstr "uitvoerder"
|
||||
|
||||
#: gst/gsttag.c:172
|
||||
#: gst/gsttag.c:152
|
||||
msgid "person(s) performing"
|
||||
msgstr "perso(o)n(en) die het stuk uitvoeren"
|
||||
|
||||
#: gst/gsttag.c:176
|
||||
#: gst/gsttag.c:155
|
||||
msgid "duration"
|
||||
msgstr "duur"
|
||||
|
||||
#: gst/gsttag.c:177
|
||||
#: gst/gsttag.c:155
|
||||
msgid "length in GStreamer time units (nanoseconds)"
|
||||
msgstr "lengte in GStreamer tijdseenheden (nanoseconden)"
|
||||
|
||||
#: gst/gsttag.c:181
|
||||
#: gst/gsttag.c:158
|
||||
msgid "codec"
|
||||
msgstr "codec"
|
||||
|
||||
#: gst/gsttag.c:182
|
||||
#: gst/gsttag.c:159
|
||||
msgid "codec the data is stored in"
|
||||
msgstr "codec waarin het stuk is opgeslagen"
|
||||
|
||||
#: gst/gsttag.c:186
|
||||
#: gst/gsttag.c:162
|
||||
msgid "video codec"
|
||||
msgstr "video codec"
|
||||
|
||||
#: gst/gsttag.c:187
|
||||
#: gst/gsttag.c:162
|
||||
msgid "codec the video data is stored in"
|
||||
msgstr "codec waarin het stuk is opgeslagen"
|
||||
|
||||
#: gst/gsttag.c:191
|
||||
#: gst/gsttag.c:165
|
||||
msgid "audio codec"
|
||||
msgstr "audio codec"
|
||||
|
||||
#: gst/gsttag.c:192
|
||||
#: gst/gsttag.c:165
|
||||
msgid "codec the audio data is stored in"
|
||||
msgstr "codec waarin de audio-data is opgeslagen"
|
||||
|
||||
#: gst/gsttag.c:196
|
||||
#: gst/gsttag.c:167
|
||||
msgid "bitrate"
|
||||
msgstr "bitsnelheid"
|
||||
|
||||
#: gst/gsttag.c:197
|
||||
#: gst/gsttag.c:167
|
||||
msgid "exact or average bitrate in bits/s"
|
||||
msgstr "exacte of gemiddelde bitsnelheid in bits/s"
|
||||
|
||||
#: gst/gsttag.c:201
|
||||
#: gst/gsttag.c:169
|
||||
msgid "nominal bitrate"
|
||||
msgstr "nominale bitsnelheid"
|
||||
|
||||
#: gst/gsttag.c:202
|
||||
#: gst/gsttag.c:169
|
||||
msgid "nominal bitrate in bits/s"
|
||||
msgstr "nominale bitsnelheid in bits per seconde"
|
||||
|
||||
#: gst/gsttag.c:206
|
||||
#: gst/gsttag.c:171
|
||||
msgid "minimum bitrate"
|
||||
msgstr "minimum bitsnelheid"
|
||||
|
||||
#: gst/gsttag.c:207
|
||||
#: gst/gsttag.c:171
|
||||
msgid "minimum bitrate in bits/s"
|
||||
msgstr "minimum bitsnelheid in bits per seconde"
|
||||
|
||||
#: gst/gsttag.c:211
|
||||
#: gst/gsttag.c:173
|
||||
msgid "maximum bitrate"
|
||||
msgstr "maximum bitsnelheid"
|
||||
|
||||
#: gst/gsttag.c:212
|
||||
#: gst/gsttag.c:173
|
||||
msgid "maximum bitrate in bits/s"
|
||||
msgstr "maximum bitsnelheid in bits per seconde"
|
||||
|
||||
#: gst/gsttag.c:216
|
||||
#: gst/gsttag.c:176
|
||||
msgid "encoder"
|
||||
msgstr "encoder"
|
||||
|
||||
#: gst/gsttag.c:217
|
||||
#: gst/gsttag.c:176
|
||||
msgid "encoder used to encode this stream"
|
||||
msgstr "encoder gebruikt om deze stroom te encoderen"
|
||||
|
||||
#: gst/gsttag.c:221
|
||||
#: gst/gsttag.c:179
|
||||
msgid "encoder version"
|
||||
msgstr "encoder versie"
|
||||
|
||||
#: gst/gsttag.c:222
|
||||
#: gst/gsttag.c:180
|
||||
msgid "version of the encoder used to encode this stream"
|
||||
msgstr "versie van de encoder gebruikt om deze stroom te encoderen"
|
||||
|
||||
#: gst/gsttag.c:226
|
||||
#: gst/gsttag.c:182
|
||||
msgid "serial"
|
||||
msgstr "volgnummer"
|
||||
|
||||
#: gst/gsttag.c:227
|
||||
#: gst/gsttag.c:182
|
||||
msgid "serial number of track"
|
||||
msgstr "volgnummer van dit nummer"
|
||||
|
||||
#: gst/gsttag.c:231
|
||||
#: gst/gsttag.c:184
|
||||
msgid "replaygain track gain"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:232
|
||||
#: gst/gsttag.c:184
|
||||
msgid "track gain in db"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:236
|
||||
#: gst/gsttag.c:186
|
||||
msgid "replaygain track peak"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:237
|
||||
#: gst/gsttag.c:186
|
||||
msgid "peak of the track"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:241
|
||||
#: gst/gsttag.c:188
|
||||
msgid "replaygain album gain"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:242
|
||||
#: gst/gsttag.c:188
|
||||
msgid "album gain in db"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:246
|
||||
#: gst/gsttag.c:190
|
||||
msgid "replaygain album peak"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:247
|
||||
#: gst/gsttag.c:190
|
||||
msgid "peak of the album"
|
||||
msgstr ""
|
||||
|
||||
#: gst/gsttag.c:285
|
||||
#: gst/gsttag.c:229
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: gst/autoplug/gstspider.c:419
|
||||
#: gst/autoplug/gstspider.c:447
|
||||
#, c-format
|
||||
msgid "There is no element present to handle the stream's mime type %s."
|
||||
msgstr ""
|
||||
"Er is geen element aanwezig die het mime-type %s van de stroom kan verwerken."
|
||||
|
||||
#: gst/elements/gstfilesink.c:248
|
||||
#: gst/elements/gstfilesink.c:257
|
||||
msgid "No file name specified for writing."
|
||||
msgstr "Geen bestandsnaam gegeven om te schrijven."
|
||||
|
||||
#: gst/elements/gstfilesink.c:255
|
||||
#: gst/elements/gstfilesink.c:264
|
||||
#, c-format
|
||||
msgid "Could not open file \"%s\" for writing."
|
||||
msgstr "Kon bestand \"%s\" niet openen om te schrijven."
|
||||
|
||||
#: gst/elements/gstfilesink.c:275
|
||||
#: gst/elements/gstfilesink.c:283
|
||||
#, c-format
|
||||
msgid "Error closing file \"%s\"."
|
||||
msgstr "Fout bij het sluiten van bestand \"%s\"."
|
||||
|
||||
#: gst/elements/gstfilesink.c:342 gst/elements/gstfilesink.c:374
|
||||
#: gst/elements/gstfilesink.c:426
|
||||
#: gst/elements/gstfilesink.c:355 gst/elements/gstfilesink.c:390
|
||||
#: gst/elements/gstfilesink.c:443
|
||||
#, c-format
|
||||
msgid "Error while writing to file \"%s\"."
|
||||
msgstr "Fout bij het schrijven naar bestand \"%s\"."
|
||||
|
||||
#: gst/elements/gstfilesrc.c:676 gst/elements/gstmultifilesrc.c:242
|
||||
#: gst/elements/gstfilesrc.c:739 gst/elements/gstmultifilesrc.c:248
|
||||
msgid "No file name specified for reading."
|
||||
msgstr "Geen bestandsnaam gegeven om te lezen."
|
||||
|
||||
#: gst/elements/gstfilesrc.c:691 gst/elements/gstmultifilesrc.c:250
|
||||
#: gst/elements/gstfilesrc.c:754 gst/elements/gstmultifilesrc.c:256
|
||||
#, c-format
|
||||
msgid "Could not open file \"%s\" for reading."
|
||||
msgstr "Kon bestand \"%s\" niet openen om te lezen."
|
||||
|
||||
#: gst/elements/gstfilesrc.c:702
|
||||
#: gst/elements/gstfilesrc.c:765
|
||||
#, c-format
|
||||
msgid "File \"%s\" isn't a regular file."
|
||||
msgid "\"%s\" is a directory."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstfilesrc.c:771
|
||||
#, fuzzy, c-format
|
||||
msgid "File \"%s\" is a socket."
|
||||
msgstr "Bestand \"%s\" is geen gewoon bestand."
|
||||
|
||||
#: gst/elements/gstidentity.c:171
|
||||
#: gst/elements/gstidentity.c:191
|
||||
msgid "Failed after iterations as requested."
|
||||
msgstr "Fout na iteraties zoals gevraagd."
|
||||
|
||||
#: gst/elements/gsttypefind.c:149
|
||||
#: gst/elements/gsttypefindelement.c:148
|
||||
msgid "caps"
|
||||
msgstr "mogelijkheden"
|
||||
|
||||
#: gst/elements/gsttypefind.c:149
|
||||
#: gst/elements/gsttypefindelement.c:149
|
||||
msgid "detected capabilities in stream"
|
||||
msgstr "gedetecteerde mogelijkheden in stroom"
|
||||
|
||||
#: gst/elements/gsttypefind.c:152
|
||||
#: gst/elements/gsttypefindelement.c:152
|
||||
msgid "minimum"
|
||||
msgstr "minimum"
|
||||
|
||||
#: gst/elements/gsttypefind.c:155
|
||||
#: gst/elements/gsttypefindelement.c:156
|
||||
msgid "maximum"
|
||||
msgstr "maximum"
|
||||
|
||||
#: gst/parse/grammar.y:170
|
||||
#: gst/parse/grammar.y:168
|
||||
#, c-format
|
||||
msgid "specified empty bin \"%s\", not allowed"
|
||||
msgstr "lege ton \"%s\", niet toegelaten"
|
||||
|
||||
#: gst/parse/grammar.y:175
|
||||
#: gst/parse/grammar.y:173
|
||||
#, c-format
|
||||
msgid "no bin \"%s\", skipping"
|
||||
msgstr "geen ton \"%s\", overgeslagen"
|
||||
|
||||
#: gst/parse/grammar.y:319
|
||||
#: gst/parse/grammar.y:311
|
||||
#, c-format
|
||||
msgid "no property \"%s\" in element \"%s\""
|
||||
msgstr "geen eigenschap \"%s\" in element \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:332
|
||||
#: gst/parse/grammar.y:324
|
||||
#, c-format
|
||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||
msgstr "kon eigenschap \"%s\" in element \"%s\" niet op \"%s\" instellen"
|
||||
|
||||
#: gst/parse/grammar.y:337
|
||||
#: gst/parse/grammar.y:329
|
||||
#, c-format
|
||||
msgid ""
|
||||
"could not convert \"%s\" so that it fits property \"%s\" in element \"%s\""
|
||||
|
@ -648,59 +648,59 @@ msgstr ""
|
|||
"kon \"%s\" niet omzetten zodat het in eigenschap \"%s\" in element \"%s\" "
|
||||
"past"
|
||||
|
||||
#: gst/parse/grammar.y:525
|
||||
#: gst/parse/grammar.y:514
|
||||
#, c-format
|
||||
msgid "could not link %s to %s"
|
||||
msgstr "kon %s niet verbinden met %s"
|
||||
|
||||
#: gst/parse/grammar.y:570
|
||||
#: gst/parse/grammar.y:559
|
||||
#, c-format
|
||||
msgid "no element \"%s\""
|
||||
msgstr "geen element \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:621
|
||||
#: gst/parse/grammar.y:610
|
||||
#, c-format
|
||||
msgid "could not parse caps \"%s\""
|
||||
msgstr "kon mogelijkheden \"%s\" niet verwerken"
|
||||
|
||||
#: gst/parse/grammar.y:643 gst/parse/grammar.y:697 gst/parse/grammar.y:713
|
||||
#: gst/parse/grammar.y:771
|
||||
#: gst/parse/grammar.y:632 gst/parse/grammar.y:685 gst/parse/grammar.y:701
|
||||
#: gst/parse/grammar.y:759
|
||||
msgid "link without source element"
|
||||
msgstr "verbinding zonder bronelement"
|
||||
|
||||
#: gst/parse/grammar.y:649 gst/parse/grammar.y:694 gst/parse/grammar.y:780
|
||||
#: gst/parse/grammar.y:638 gst/parse/grammar.y:682 gst/parse/grammar.y:768
|
||||
msgid "link without sink element"
|
||||
msgstr "verbinding zonder doelelement"
|
||||
|
||||
#: gst/parse/grammar.y:731
|
||||
#: gst/parse/grammar.y:719
|
||||
#, c-format
|
||||
msgid "no source element for URI \"%s\""
|
||||
msgstr "geen bronelement voor URI \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:741
|
||||
#: gst/parse/grammar.y:729
|
||||
#, c-format
|
||||
msgid "no element to link URI \"%s\" to"
|
||||
msgstr "geen element om URI \"%s\" mee te verbinden"
|
||||
|
||||
#: gst/parse/grammar.y:749
|
||||
#: gst/parse/grammar.y:737
|
||||
#, c-format
|
||||
msgid "no sink element for URI \"%s\""
|
||||
msgstr "geen doelelement voor URI \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:753
|
||||
#: gst/parse/grammar.y:741
|
||||
#, c-format
|
||||
msgid "could not link sink element for URI \"%s\""
|
||||
msgstr "kon doelelement niet verbinden voor URI \"%s\""
|
||||
|
||||
#: gst/parse/grammar.y:765
|
||||
#: gst/parse/grammar.y:753
|
||||
msgid "empty pipeline not allowed"
|
||||
msgstr "lege pijplijn niet toegelaten"
|
||||
|
||||
#: tools/gst-inspect.c:917
|
||||
#: tools/gst-inspect.c:937
|
||||
msgid "Show plugin details"
|
||||
msgstr "Toon details van plugins"
|
||||
|
||||
#: tools/gst-inspect.c:919
|
||||
#: tools/gst-inspect.c:940
|
||||
msgid "Show scheduler details"
|
||||
msgstr "Toon details van planner"
|
||||
|
||||
|
@ -712,124 +712,136 @@ msgstr "Uitvoering beëindigd na %"
|
|||
msgid " iterations (sum %"
|
||||
msgstr "iteraties (som %"
|
||||
|
||||
#: tools/gst-launch.c:79
|
||||
#: tools/gst-launch.c:80
|
||||
msgid " ns, average %"
|
||||
msgstr "ns, gemiddeld %"
|
||||
|
||||
#: tools/gst-launch.c:79
|
||||
#: tools/gst-launch.c:80
|
||||
msgid " ns, min %"
|
||||
msgstr "ns, min %"
|
||||
|
||||
#: tools/gst-launch.c:79
|
||||
#: tools/gst-launch.c:81
|
||||
msgid " ns, max %"
|
||||
msgstr "ns, max %"
|
||||
|
||||
#: tools/gst-launch.c:79
|
||||
#: tools/gst-launch.c:81
|
||||
msgid " ns).\n"
|
||||
msgstr "ns).\n"
|
||||
|
||||
#: tools/gst-launch.c:99
|
||||
#: tools/gst-launch.c:102
|
||||
msgid "Usage: gst-xmllaunch <file.xml> [ element.property=value ... ]\n"
|
||||
msgstr ""
|
||||
"Gebruik: gst-xmllaunch <bestand.xml> [ element.eigenschap=waarde ... ]\n"
|
||||
|
||||
#: tools/gst-launch.c:107
|
||||
#: tools/gst-launch.c:110
|
||||
#, c-format
|
||||
msgid "ERROR: parse of xml file '%s' failed.\n"
|
||||
msgstr "FOUT: verwerken van xml-bestand '%s' mislukt.\n"
|
||||
|
||||
#: tools/gst-launch.c:113
|
||||
#: tools/gst-launch.c:116
|
||||
#, c-format
|
||||
msgid "ERROR: no toplevel pipeline element in file '%s'.\n"
|
||||
msgstr "FOUT: geen bovenste pijplijn-element gevonden in file '%s'.\n"
|
||||
|
||||
#: tools/gst-launch.c:118
|
||||
#: tools/gst-launch.c:123
|
||||
#, c-format
|
||||
msgid "WARNING: only one toplevel element is supported at this time."
|
||||
msgstr ""
|
||||
"WAARSCHUWING: slechts één element op het hoogste niveau ondersteund op dit "
|
||||
"moment."
|
||||
|
||||
#: tools/gst-launch.c:128
|
||||
#: tools/gst-launch.c:134
|
||||
#, c-format
|
||||
msgid "ERROR: could not parse command line argument %d: %s.\n"
|
||||
msgstr "FOUT: versta argument %d op commandoregel niet: %s.\n"
|
||||
|
||||
#: tools/gst-launch.c:138
|
||||
#: tools/gst-launch.c:145
|
||||
#, c-format
|
||||
msgid "WARNING: element named '%s' not found.\n"
|
||||
msgstr "WAARSCHUWING: element met naam '%s' niet gevonden.\n"
|
||||
|
||||
#: tools/gst-launch.c:273
|
||||
#: tools/gst-launch.c:280
|
||||
#, c-format
|
||||
msgid "FOUND TAG : found by element \"%s\".\n"
|
||||
msgstr "TAG GEVONDEN : gevonden door element \"%s\".\n"
|
||||
|
||||
#: tools/gst-launch.c:350
|
||||
#: tools/gst-launch.c:358
|
||||
msgid "Output tags (also known as metadata)"
|
||||
msgstr "Druk tags (ofte metadata) af"
|
||||
|
||||
#: tools/gst-launch.c:352
|
||||
#: tools/gst-launch.c:360
|
||||
msgid "Output status information and property notifications"
|
||||
msgstr "Druk statusinformatie en eigenschapsnotificatie af"
|
||||
|
||||
#: tools/gst-launch.c:354
|
||||
#: tools/gst-launch.c:362
|
||||
msgid "Do not output status information of TYPE"
|
||||
msgstr "Druk statusinformatie van type TYPE niet af"
|
||||
|
||||
#: tools/gst-launch.c:354
|
||||
#: tools/gst-launch.c:362
|
||||
msgid "TYPE1,TYPE2,..."
|
||||
msgstr "TYPE1,TYPE2,..."
|
||||
|
||||
#: tools/gst-launch.c:357
|
||||
#: tools/gst-launch.c:365
|
||||
msgid "Save xml representation of pipeline to FILE and exit"
|
||||
msgstr "Bewaar xml-representatie van pijplijn in BESTAND en stop"
|
||||
|
||||
#: tools/gst-launch.c:357
|
||||
#: tools/gst-launch.c:365
|
||||
msgid "FILE"
|
||||
msgstr "BESTAND"
|
||||
|
||||
#: tools/gst-launch.c:360
|
||||
#: tools/gst-launch.c:368
|
||||
msgid "Do not install a fault handler"
|
||||
msgstr "Installeer geen foutafhandelaar"
|
||||
|
||||
#: tools/gst-launch.c:362
|
||||
#: tools/gst-launch.c:370
|
||||
msgid "Print alloc trace (if enabled at compile time)"
|
||||
msgstr "Druk allocatiespoor af indien aangezet tijdens compileren"
|
||||
|
||||
#: tools/gst-launch.c:364
|
||||
#: tools/gst-launch.c:372
|
||||
msgid "Number of times to iterate pipeline"
|
||||
msgstr "Aantal keren om de pijplijn te herhalen"
|
||||
|
||||
#: tools/gst-launch.c:429
|
||||
#: tools/gst-launch.c:438
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline could not be constructed: %s.\n"
|
||||
msgstr "FOUT: pijplijn kon niet gemaakt worden: %s.\n"
|
||||
|
||||
#: tools/gst-launch.c:433
|
||||
#: tools/gst-launch.c:442
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline could not be constructed.\n"
|
||||
msgstr "FOUT: pijplijn kon niet gemaakt worden.\n"
|
||||
|
||||
#: tools/gst-launch.c:437
|
||||
#: tools/gst-launch.c:446
|
||||
#, c-format
|
||||
msgid "WARNING: erroneous pipeline: %s\n"
|
||||
msgstr "WAARSCHUWING: foutieve pijplijn: %s\n"
|
||||
|
||||
#: tools/gst-launch.c:438
|
||||
#: tools/gst-launch.c:447
|
||||
#, c-format
|
||||
msgid " Trying to run anyway.\n"
|
||||
msgstr " Probeer toch uit te voeren.\n"
|
||||
|
||||
#: tools/gst-launch.c:462
|
||||
#: tools/gst-launch.c:475
|
||||
#, c-format
|
||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||
msgstr "FOUT: het 'pijplijn' element werd niet gevonden.\n"
|
||||
|
||||
#: tools/gst-launch.c:469
|
||||
#: tools/gst-launch.c:482
|
||||
#, c-format
|
||||
msgid "RUNNING pipeline ...\n"
|
||||
msgstr "BEZIG met pijplijn ...\n"
|
||||
|
||||
#: tools/gst-launch.c:471
|
||||
#: tools/gst-launch.c:485
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||
msgstr "FOUT: pijplijn wil niet spelen.\n"
|
||||
|
||||
#~ msgid "')"
|
||||
#~ msgstr ")"
|
||||
|
||||
#~ msgid "' is the default)"
|
||||
#~ msgstr "' is de voorkeursplanner)"
|
||||
|
||||
#~ msgid "CATEGORIES"
|
||||
#~ msgstr "CATEGORIEEN"
|
||||
|
||||
|
|
18
po/sv.po
18
po/sv.po
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gstreamer 0.8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-04-29 12:09+0200\n"
|
||||
"POT-Creation-Date: 2004-05-04 13:46+0200\n"
|
||||
"PO-Revision-Date: 2004-03-20 18:41+0100\n"
|
||||
"Last-Translator: Christian Rose <menthos@menthos.com>\n"
|
||||
"Language-Team: Swedish <sv@li.org>\n"
|
||||
|
@ -567,22 +567,22 @@ msgid "There is no element present to handle the stream's mime type %s."
|
|||
msgstr ""
|
||||
"Det finns inget element tillgängligt för att hantera flödets mime-typ %s."
|
||||
|
||||
#: gst/elements/gstfilesink.c:254
|
||||
#: gst/elements/gstfilesink.c:257
|
||||
msgid "No file name specified for writing."
|
||||
msgstr "Inget filnamn angivet för skrivning."
|
||||
|
||||
#: gst/elements/gstfilesink.c:261
|
||||
#: gst/elements/gstfilesink.c:264
|
||||
#, c-format
|
||||
msgid "Could not open file \"%s\" for writing."
|
||||
msgstr "Kunde inte öppna filen \"%s\" för skrivning."
|
||||
|
||||
#: gst/elements/gstfilesink.c:280
|
||||
#: gst/elements/gstfilesink.c:283
|
||||
#, c-format
|
||||
msgid "Error closing file \"%s\"."
|
||||
msgstr "Fel vid stängning av filen \"%s\"."
|
||||
|
||||
#: gst/elements/gstfilesink.c:345 gst/elements/gstfilesink.c:376
|
||||
#: gst/elements/gstfilesink.c:428
|
||||
#: gst/elements/gstfilesink.c:355 gst/elements/gstfilesink.c:390
|
||||
#: gst/elements/gstfilesink.c:443
|
||||
#, c-format
|
||||
msgid "Error while writing to file \"%s\"."
|
||||
msgstr "Fel vid skrivning till filen \"%s\"."
|
||||
|
@ -758,6 +758,7 @@ msgid "ERROR: no toplevel pipeline element in file '%s'.\n"
|
|||
msgstr "FEL: inget rörledningselement på översta nivån i filen \"%s\".\n"
|
||||
|
||||
#: tools/gst-launch.c:123
|
||||
#, c-format
|
||||
msgid "WARNING: only one toplevel element is supported at this time."
|
||||
msgstr "VARNING: endast ett element på översta nivån stöds just nu."
|
||||
|
||||
|
@ -818,6 +819,7 @@ msgid "ERROR: pipeline could not be constructed: %s.\n"
|
|||
msgstr "FEL: rörledningen kunde inte konstrueras: %s.\n"
|
||||
|
||||
#: tools/gst-launch.c:442
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline could not be constructed.\n"
|
||||
msgstr "FEL: rörledningen kunde inte konstrueras.\n"
|
||||
|
||||
|
@ -829,18 +831,22 @@ msgstr "VARNING: felaktig rörledning: %s\n"
|
|||
|
||||
# Felrapporterat i http://bugzilla.gnome.org/show_bug.cgi?id=137431
|
||||
#: tools/gst-launch.c:447
|
||||
#, c-format
|
||||
msgid " Trying to run anyway.\n"
|
||||
msgstr " Försöker köra ändå.\n"
|
||||
|
||||
#: tools/gst-launch.c:475
|
||||
#, c-format
|
||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||
msgstr "FEL: \"pipeline\"-elementet hittades inte.\n"
|
||||
|
||||
#: tools/gst-launch.c:482
|
||||
#, c-format
|
||||
msgid "RUNNING pipeline ...\n"
|
||||
msgstr "KÖR rörledning...\n"
|
||||
|
||||
#: tools/gst-launch.c:485
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||
msgstr "FEL: rörledningen vill inte spela.\n"
|
||||
|
||||
|
|
345
po/tr.po
345
po/tr.po
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gstreamer 0.8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-03-16 00:10+0100\n"
|
||||
"POT-Creation-Date: 2004-05-04 13:46+0200\n"
|
||||
"PO-Revision-Date: 2004-04-03 03:14+0300\n"
|
||||
"Last-Translator: Baris Cicek <baris@teamforce.name.tr>\n"
|
||||
"Language-Team: Turkish <gnu-tr-u12a@lists.sourceforge.net>\n"
|
||||
|
@ -14,100 +14,106 @@ msgstr ""
|
|||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: gst/gst.c:121
|
||||
#: gst/gst.c:129
|
||||
msgid "Print the GStreamer version"
|
||||
msgstr "GStreamer sürünümü yazdır"
|
||||
|
||||
#: gst/gst.c:123
|
||||
#: gst/gst.c:131
|
||||
msgid "Make all warnings fatal"
|
||||
msgstr "Tüm uyarıları ölümcül yap"
|
||||
|
||||
#: gst/gst.c:127
|
||||
#: gst/gst.c:135
|
||||
msgid "Print available debug categories and exit"
|
||||
msgstr "Geçerli hata ayıklama sınıflarını yazdır ve çık"
|
||||
|
||||
#: gst/gst.c:131
|
||||
msgid "Default debug level from 1 (only error) to 5 (anything) or 0 for no output"
|
||||
msgstr "Öntanımlı hata ayıklama seviyesi 1'den (sadece hatalar) 5'e (her şey) kadar ya da çıktı olmaması için 0"
|
||||
#: gst/gst.c:138
|
||||
msgid ""
|
||||
"Default debug level from 1 (only error) to 5 (anything) or 0 for no output"
|
||||
msgstr ""
|
||||
"Öntanımlı hata ayıklama seviyesi 1'den (sadece hatalar) 5'e (her şey) kadar "
|
||||
"ya da çıktı olmaması için 0"
|
||||
|
||||
#: gst/gst.c:132
|
||||
#: gst/gst.c:140
|
||||
msgid "LEVEL"
|
||||
msgstr "SEVİYE"
|
||||
|
||||
#: gst/gst.c:135
|
||||
msgid "Comma-separated list of category_name:level pairs to set specific levels for the individual categories. Example: GST_AUTOPLUG:5,GST_ELEMENT_*:3"
|
||||
msgstr "Ayrı sınıfların belirli seviyeleri için sınıf_ismi:seviye çiftlerinin virgül ile ayrılmış listesi. Örnek: GST_AUTOPLUG:5,GST_ELEMENT_*:3"
|
||||
#: gst/gst.c:142
|
||||
msgid ""
|
||||
"Comma-separated list of category_name:level pairs to set specific levels for "
|
||||
"the individual categories. Example: GST_AUTOPLUG:5,GST_ELEMENT_*:3"
|
||||
msgstr ""
|
||||
"Ayrı sınıfların belirli seviyeleri için sınıf_ismi:seviye çiftlerinin virgül "
|
||||
"ile ayrılmış listesi. Örnek: GST_AUTOPLUG:5,GST_ELEMENT_*:3"
|
||||
|
||||
#: gst/gst.c:136
|
||||
#: gst/gst.c:145
|
||||
msgid "LIST"
|
||||
msgstr "LİSTE"
|
||||
|
||||
#: gst/gst.c:138
|
||||
#: gst/gst.c:147
|
||||
msgid "Disable colored debugging output"
|
||||
msgstr "Renkli hata ayıklama çıktısını kapat"
|
||||
|
||||
#: gst/gst.c:140
|
||||
#: gst/gst.c:149
|
||||
msgid "Disable debugging"
|
||||
msgstr "Hata ayıklamayı kapat"
|
||||
|
||||
#: gst/gst.c:144
|
||||
#: gst/gst.c:153
|
||||
msgid "Disable accelerated CPU instructions"
|
||||
msgstr "Hızlandırılmış CPU işlemlerini kapat"
|
||||
|
||||
#: gst/gst.c:146
|
||||
#: gst/gst.c:155
|
||||
msgid "Enable verbose plugin loading diagnostics"
|
||||
msgstr "Ayrıntılı eklenti yükleme detaylarını etkinleştir"
|
||||
|
||||
#: gst/gst.c:149
|
||||
msgid "path list for loading plugins (separated by '"
|
||||
msgstr "eklenti yüklemek için yol listesi (' ile ayırılmış"
|
||||
|
||||
#: gst/gst.c:150
|
||||
msgid "')"
|
||||
msgstr "')"
|
||||
|
||||
#: gst/gst.c:150
|
||||
#: gst/gst.c:157
|
||||
msgid "PATHS"
|
||||
msgstr "YOLLAR"
|
||||
|
||||
#: gst/gst.c:154
|
||||
msgid "Comma-separated list of plugins to preload in addition to the list stored in env variable GST_PLUGIN_PATH"
|
||||
msgstr "Çevre değişkeni GST_PLUGIN_PATH içinde saklanan listeye ek olarak önceden yüklenecek eklentilerin virgün ile ayırılmış listesi"
|
||||
#: gst/gst.c:160
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Comma-separated list of plugins to preload in addition to the list stored in "
|
||||
"envronment variable GST_PLUGIN_PATH"
|
||||
msgstr ""
|
||||
"Çevre değişkeni GST_PLUGIN_PATH içinde saklanan listeye ek olarak önceden "
|
||||
"yüklenecek eklentilerin virgün ile ayırılmış listesi"
|
||||
|
||||
#: gst/gst.c:155
|
||||
#: gst/gst.c:162
|
||||
msgid "PLUGINS"
|
||||
msgstr "EKLENTİLER"
|
||||
|
||||
#: gst/gst.c:158
|
||||
#: gst/gst.c:165
|
||||
msgid "Disable trapping of segmentation faults during plugin loading"
|
||||
msgstr "Eklenti yüklenirken kesimleme hatalarını yakalamayı kapat"
|
||||
|
||||
#: gst/gst.c:162
|
||||
msgid "Scheduler to use ('"
|
||||
msgstr "Kullanılacak zamanlandırıcı ('"
|
||||
|
||||
#: gst/gst.c:163
|
||||
msgid "' is the default)"
|
||||
msgstr "' ön tanımlı olanı)"
|
||||
|
||||
#: gst/gst.c:163
|
||||
#: gst/gst.c:168
|
||||
msgid "SCHEDULER"
|
||||
msgstr "ZAMANLANDIRICI"
|
||||
|
||||
#: gst/gst.c:165
|
||||
#: gst/gst.c:170
|
||||
msgid "Registry to use"
|
||||
msgstr "Kullanılacak kayıt"
|
||||
|
||||
#: gst/gst.c:165
|
||||
#: gst/gst.c:170
|
||||
msgid "REGISTRY"
|
||||
msgstr "KAYIT"
|
||||
|
||||
#: gst/gstelement.c:252
|
||||
#: gst/gst.c:183
|
||||
#, fuzzy, c-format
|
||||
msgid "path list for loading plugins (separated by '%s')"
|
||||
msgstr "eklenti yüklemek için yol listesi (' ile ayırılmış"
|
||||
|
||||
#: gst/gst.c:187
|
||||
#, fuzzy, c-format
|
||||
msgid "Scheduler to use (default is '%s')"
|
||||
msgstr "Kullanılacak zamanlandırıcı ('"
|
||||
|
||||
#: gst/gstelement.c:253
|
||||
#, c-format
|
||||
msgid "ERROR: from element %s: %s\n"
|
||||
msgstr "HATA: %s öğesinden: %s\n"
|
||||
|
||||
#: gst/gstelement.c:254
|
||||
#: gst/gstelement.c:255
|
||||
#, c-format
|
||||
msgid ""
|
||||
"Additional debug info:\n"
|
||||
|
@ -121,16 +127,22 @@ msgid "GStreamer encountered a general core library error."
|
|||
msgstr "GStreamer genel temel kütüphane hatası ile karşılaştı."
|
||||
|
||||
#: gst/gsterror.c:58 gst/gsterror.c:95 gst/gsterror.c:115 gst/gsterror.c:145
|
||||
msgid "GStreamer developers were too lazy to assign an error code to this error. Please file a bug."
|
||||
msgstr "GStreamer geliştiricileri bu hataya hata kodu vermeyecek kadar tembelmişler. Lütfen hata bildiriminde bulunun."
|
||||
msgid ""
|
||||
"GStreamer developers were too lazy to assign an error code to this error. "
|
||||
"Please file a bug."
|
||||
msgstr ""
|
||||
"GStreamer geliştiricileri bu hataya hata kodu vermeyecek kadar "
|
||||
"tembelmişler. Lütfen hata bildiriminde bulunun."
|
||||
|
||||
#: gst/gsterror.c:61
|
||||
msgid "Internal GStreamer error: code not implemented. File a bug."
|
||||
msgstr "Dahili GStreamer hatası: kod tamamlanmamış. Hata bildiriminde bulunun."
|
||||
msgstr ""
|
||||
"Dahili GStreamer hatası: kod tamamlanmamış. Hata bildiriminde bulunun."
|
||||
|
||||
#: gst/gsterror.c:63
|
||||
msgid "Internal GStreamer error: state change failed. File a bug."
|
||||
msgstr "Dahili GStreamer hatası: durum değiştirilemedi. Hata bildiriminde bulunun."
|
||||
msgstr ""
|
||||
"Dahili GStreamer hatası: durum değiştirilemedi. Hata bildiriminde bulunun."
|
||||
|
||||
#: gst/gsterror.c:65
|
||||
msgid "Internal GStreamer error: pad problem. File a bug."
|
||||
|
@ -142,7 +154,8 @@ msgstr "Dahili GStreamer hatası: dallanma sorunu. Hata bildiriminde bulunun."
|
|||
|
||||
#: gst/gsterror.c:69
|
||||
msgid "Internal GStreamer error: scheduler problem. File a bug."
|
||||
msgstr "Dahili GStreamer hatası: zamanlandırıcı sorunu. Hata bildiriminde bulunun."
|
||||
msgstr ""
|
||||
"Dahili GStreamer hatası: zamanlandırıcı sorunu. Hata bildiriminde bulunun."
|
||||
|
||||
#: gst/gsterror.c:71
|
||||
msgid "Internal GStreamer error: negotiation problem. File a bug."
|
||||
|
@ -158,7 +171,8 @@ msgstr "Dahili GStreamer hatası: atlama sorunu. Hata bildiriminde bulunun."
|
|||
|
||||
#: gst/gsterror.c:77
|
||||
msgid "Internal GStreamer error: caps problem. File a bug."
|
||||
msgstr "Dahili GStreamer hatası: kabiliyetler sorunu. Hata bildiriminde bulunun."
|
||||
msgstr ""
|
||||
"Dahili GStreamer hatası: kabiliyetler sorunu. Hata bildiriminde bulunun."
|
||||
|
||||
#: gst/gsterror.c:79
|
||||
msgid "Internal GStreamer error: tag problem. File a bug."
|
||||
|
@ -222,7 +236,9 @@ msgstr "Kaynağa değerler atanamadı ya da alınamadı."
|
|||
|
||||
#: gst/gsterror.c:148
|
||||
msgid "Element doesn't implement handling of this stream. Please file a bug."
|
||||
msgstr "Öğe bu akımın işlemesini gerçekleştiremiyor. Lütfen hata bildiriminde bulunun."
|
||||
msgstr ""
|
||||
"Öğe bu akımın işlemesini gerçekleştiremiyor. Lütfen hata bildiriminde "
|
||||
"bulunun."
|
||||
|
||||
#: gst/gsterror.c:150
|
||||
msgid "Could not determine type of stream."
|
||||
|
@ -266,415 +282,424 @@ msgstr "%s etki alanı için hiç hata iletisi yok."
|
|||
msgid "No standard error message for domain %s and code %d."
|
||||
msgstr "%s etki alanı ve %d kodu için standart hata iletisi yok."
|
||||
|
||||
#: gst/gsttag.c:82
|
||||
#: gst/gsttag.c:83
|
||||
msgid "title"
|
||||
msgstr "başlık"
|
||||
|
||||
#: gst/gsttag.c:82
|
||||
#: gst/gsttag.c:83
|
||||
msgid "commonly used title"
|
||||
msgstr "yaygın olarak kullanılan başlık"
|
||||
|
||||
#: gst/gsttag.c:85
|
||||
#: gst/gsttag.c:86
|
||||
msgid "artist"
|
||||
msgstr "sanatçı"
|
||||
|
||||
#: gst/gsttag.c:86
|
||||
#: gst/gsttag.c:87
|
||||
msgid "person(s) responsible for the recording"
|
||||
msgstr "kayıttan sorumlu olan kişi ya da kişiler"
|
||||
|
||||
#: gst/gsttag.c:90
|
||||
#: gst/gsttag.c:91
|
||||
msgid "album"
|
||||
msgstr "albüm"
|
||||
|
||||
#: gst/gsttag.c:91
|
||||
#: gst/gsttag.c:92
|
||||
msgid "album containing this data"
|
||||
msgstr "bu bilgiyi içeren albüm"
|
||||
|
||||
#: gst/gsttag.c:93
|
||||
#: gst/gsttag.c:94
|
||||
msgid "date"
|
||||
msgstr "tarih"
|
||||
|
||||
#: gst/gsttag.c:94
|
||||
#: gst/gsttag.c:95
|
||||
msgid "date the data was created (in Julian calendar days)"
|
||||
msgstr "bu verinin oluşturulduğu tarih (Julian takvimi günleri olarak)"
|
||||
|
||||
#: gst/gsttag.c:97
|
||||
#: gst/gsttag.c:98
|
||||
msgid "genre"
|
||||
msgstr "tür"
|
||||
|
||||
#: gst/gsttag.c:98
|
||||
#: gst/gsttag.c:99
|
||||
msgid "genre this data belongs to"
|
||||
msgstr "bu verinin ait olduğu tür"
|
||||
|
||||
#: gst/gsttag.c:101
|
||||
#: gst/gsttag.c:102
|
||||
msgid "comment"
|
||||
msgstr "yorum"
|
||||
|
||||
#: gst/gsttag.c:102
|
||||
#: gst/gsttag.c:103
|
||||
msgid "free text commenting the data"
|
||||
msgstr "veriyi yorumlayan serbest metin"
|
||||
|
||||
#: gst/gsttag.c:105
|
||||
#: gst/gsttag.c:106
|
||||
msgid "track number"
|
||||
msgstr "parça numarası"
|
||||
|
||||
#: gst/gsttag.c:106
|
||||
#: gst/gsttag.c:107
|
||||
msgid "track number inside a collection"
|
||||
msgstr "kolleksiyon içindeki parça numarası"
|
||||
|
||||
#: gst/gsttag.c:109
|
||||
#: gst/gsttag.c:110
|
||||
msgid "track count"
|
||||
msgstr "parça sayısı"
|
||||
|
||||
#: gst/gsttag.c:110
|
||||
#: gst/gsttag.c:111
|
||||
msgid "count of tracks inside collection this track belongs to"
|
||||
msgstr "bu parçanın ait olduğu kolleksiyonun parça sayısı"
|
||||
|
||||
#: gst/gsttag.c:114
|
||||
#: gst/gsttag.c:115
|
||||
msgid "disc number"
|
||||
msgstr "disk numarası"
|
||||
|
||||
#: gst/gsttag.c:115
|
||||
#: gst/gsttag.c:116
|
||||
msgid "disc number inside a collection"
|
||||
msgstr "kolleksiyon içindeki disk numarası"
|
||||
|
||||
#: gst/gsttag.c:118
|
||||
#: gst/gsttag.c:119
|
||||
msgid "disc count"
|
||||
msgstr "disk sayısı"
|
||||
|
||||
#: gst/gsttag.c:119
|
||||
#: gst/gsttag.c:120
|
||||
msgid "count of discs inside collection this disc belongs to"
|
||||
msgstr "bu diskin ait olduğu kolleksiyondaki disklerin sayısı"
|
||||
|
||||
#: gst/gsttag.c:123
|
||||
#: gst/gsttag.c:124
|
||||
msgid "location"
|
||||
msgstr "konum"
|
||||
|
||||
#: gst/gsttag.c:124
|
||||
#: gst/gsttag.c:125
|
||||
msgid "original location of file as a URI"
|
||||
msgstr "dosyanın URI olarak özgün konumu"
|
||||
|
||||
#: gst/gsttag.c:128
|
||||
#: gst/gsttag.c:129
|
||||
msgid "description"
|
||||
msgstr "tanım"
|
||||
|
||||
#: gst/gsttag.c:129
|
||||
#: gst/gsttag.c:130
|
||||
msgid "short text describing the content of the data"
|
||||
msgstr "verinin içeriğini tanımlayan kısa metin"
|
||||
|
||||
#: gst/gsttag.c:132
|
||||
#: gst/gsttag.c:133
|
||||
msgid "version"
|
||||
msgstr "sürüm"
|
||||
|
||||
#: gst/gsttag.c:132
|
||||
#: gst/gsttag.c:133
|
||||
msgid "version of this data"
|
||||
msgstr "bu verinin sürümü"
|
||||
|
||||
#: gst/gsttag.c:135
|
||||
#: gst/gsttag.c:136
|
||||
msgid "ISRC"
|
||||
msgstr "ISRC"
|
||||
|
||||
#: gst/gsttag.c:137
|
||||
#: gst/gsttag.c:138
|
||||
msgid "International Standard Recording Code - see http://www.ifpi.org/isrc/"
|
||||
msgstr "Uluslararası Standart Kayıt Kodu - http://www.ifpi.org/isrc/ adresine bakın"
|
||||
msgstr ""
|
||||
"Uluslararası Standart Kayıt Kodu - http://www.ifpi.org/isrc/ adresine bakın"
|
||||
|
||||
#: gst/gsttag.c:139
|
||||
#: gst/gsttag.c:140
|
||||
msgid "organization"
|
||||
msgstr "kurum"
|
||||
|
||||
#: gst/gsttag.c:142
|
||||
#: gst/gsttag.c:143
|
||||
msgid "copyright"
|
||||
msgstr "telif hakkı"
|
||||
|
||||
#: gst/gsttag.c:142
|
||||
#: gst/gsttag.c:143
|
||||
msgid "copyright notice of the data"
|
||||
msgstr "verinin telif hakkı notu"
|
||||
|
||||
#: gst/gsttag.c:145
|
||||
#: gst/gsttag.c:146
|
||||
msgid "contact"
|
||||
msgstr "iletişim"
|
||||
|
||||
#: gst/gsttag.c:145
|
||||
#: gst/gsttag.c:146
|
||||
msgid "contact information"
|
||||
msgstr "iletişim bilgisi"
|
||||
|
||||
#: gst/gsttag.c:147
|
||||
#: gst/gsttag.c:148
|
||||
msgid "license"
|
||||
msgstr "lisans"
|
||||
|
||||
#: gst/gsttag.c:147
|
||||
#: gst/gsttag.c:148
|
||||
msgid "license of data"
|
||||
msgstr "verinin lisansı"
|
||||
|
||||
#: gst/gsttag.c:150
|
||||
#: gst/gsttag.c:151
|
||||
msgid "performer"
|
||||
msgstr "icra eden"
|
||||
|
||||
#: gst/gsttag.c:151
|
||||
#: gst/gsttag.c:152
|
||||
msgid "person(s) performing"
|
||||
msgstr "icra eden kişi"
|
||||
|
||||
#: gst/gsttag.c:154
|
||||
#: gst/gsttag.c:155
|
||||
msgid "duration"
|
||||
msgstr "süre"
|
||||
|
||||
#: gst/gsttag.c:154
|
||||
#: gst/gsttag.c:155
|
||||
msgid "length in GStreamer time units (nanoseconds)"
|
||||
msgstr "GStreamer zaman birimi (nano saniye) olarak uzunluk"
|
||||
|
||||
#: gst/gsttag.c:157
|
||||
#: gst/gsttag.c:158
|
||||
msgid "codec"
|
||||
msgstr "kodek"
|
||||
|
||||
#: gst/gsttag.c:158
|
||||
#: gst/gsttag.c:159
|
||||
msgid "codec the data is stored in"
|
||||
msgstr "verinin saklandığı kodek"
|
||||
|
||||
#: gst/gsttag.c:161
|
||||
#: gst/gsttag.c:162
|
||||
msgid "video codec"
|
||||
msgstr "video kodeki"
|
||||
|
||||
#: gst/gsttag.c:161
|
||||
#: gst/gsttag.c:162
|
||||
msgid "codec the video data is stored in"
|
||||
msgstr "videonun saklandığı kodek"
|
||||
|
||||
#: gst/gsttag.c:164
|
||||
#: gst/gsttag.c:165
|
||||
msgid "audio codec"
|
||||
msgstr "ses kodeki"
|
||||
|
||||
#: gst/gsttag.c:164
|
||||
#: gst/gsttag.c:165
|
||||
msgid "codec the audio data is stored in"
|
||||
msgstr "ses verisinin saklandığı kodek"
|
||||
|
||||
#: gst/gsttag.c:166
|
||||
#: gst/gsttag.c:167
|
||||
msgid "bitrate"
|
||||
msgstr "örnekleme hızı"
|
||||
|
||||
#: gst/gsttag.c:166
|
||||
#: gst/gsttag.c:167
|
||||
msgid "exact or average bitrate in bits/s"
|
||||
msgstr "bit/s olarak ortalama veya kesin örnekleme hızı"
|
||||
|
||||
#: gst/gsttag.c:168
|
||||
#: gst/gsttag.c:169
|
||||
msgid "nominal bitrate"
|
||||
msgstr "nominal örnekleme hızı"
|
||||
|
||||
#: gst/gsttag.c:168
|
||||
#: gst/gsttag.c:169
|
||||
msgid "nominal bitrate in bits/s"
|
||||
msgstr "bit/s olarak nominal örnekleme hızı"
|
||||
|
||||
#: gst/gsttag.c:170
|
||||
#: gst/gsttag.c:171
|
||||
msgid "minimum bitrate"
|
||||
msgstr "asgari örnekleme hızı"
|
||||
|
||||
#: gst/gsttag.c:170
|
||||
#: gst/gsttag.c:171
|
||||
msgid "minimum bitrate in bits/s"
|
||||
msgstr "bit/s olarak asgari örnekleme hızı"
|
||||
|
||||
#: gst/gsttag.c:172
|
||||
#: gst/gsttag.c:173
|
||||
msgid "maximum bitrate"
|
||||
msgstr "azami örnekleme hızı"
|
||||
|
||||
#: gst/gsttag.c:172
|
||||
#: gst/gsttag.c:173
|
||||
msgid "maximum bitrate in bits/s"
|
||||
msgstr "bit/s olarak azami örnekleme hızı"
|
||||
|
||||
#: gst/gsttag.c:175
|
||||
#: gst/gsttag.c:176
|
||||
msgid "encoder"
|
||||
msgstr "kodlayıcı"
|
||||
|
||||
#: gst/gsttag.c:175
|
||||
#: gst/gsttag.c:176
|
||||
msgid "encoder used to encode this stream"
|
||||
msgstr "bu akımı kodlarken kullanılacak kodlayıcı"
|
||||
|
||||
#: gst/gsttag.c:178
|
||||
#: gst/gsttag.c:179
|
||||
msgid "encoder version"
|
||||
msgstr "kodlayıcı sürümü"
|
||||
|
||||
#: gst/gsttag.c:179
|
||||
#: gst/gsttag.c:180
|
||||
msgid "version of the encoder used to encode this stream"
|
||||
msgstr "bu akımı kodlarken kullanılan kodlayıcının sürümü"
|
||||
|
||||
#: gst/gsttag.c:181
|
||||
#: gst/gsttag.c:182
|
||||
msgid "serial"
|
||||
msgstr "seri numarası"
|
||||
|
||||
#: gst/gsttag.c:181
|
||||
#: gst/gsttag.c:182
|
||||
msgid "serial number of track"
|
||||
msgstr "parçanın seri numarası"
|
||||
|
||||
#: gst/gsttag.c:183
|
||||
#: gst/gsttag.c:184
|
||||
msgid "replaygain track gain"
|
||||
msgstr "tekrarkazanç parça kazancı"
|
||||
|
||||
#: gst/gsttag.c:183
|
||||
#: gst/gsttag.c:184
|
||||
msgid "track gain in db"
|
||||
msgstr "db olarak parça kazancı"
|
||||
|
||||
#: gst/gsttag.c:185
|
||||
#: gst/gsttag.c:186
|
||||
msgid "replaygain track peak"
|
||||
msgstr "tekrarkazanç parça üst sınırı"
|
||||
|
||||
#: gst/gsttag.c:185
|
||||
#: gst/gsttag.c:186
|
||||
msgid "peak of the track"
|
||||
msgstr "parçanın üst sınırı"
|
||||
|
||||
#: gst/gsttag.c:187
|
||||
#: gst/gsttag.c:188
|
||||
msgid "replaygain album gain"
|
||||
msgstr "tekrarkazanç albüm kazancı"
|
||||
|
||||
#: gst/gsttag.c:187
|
||||
#: gst/gsttag.c:188
|
||||
msgid "album gain in db"
|
||||
msgstr "db olarak albüm kazancı"
|
||||
|
||||
#: gst/gsttag.c:189
|
||||
#: gst/gsttag.c:190
|
||||
msgid "replaygain album peak"
|
||||
msgstr "tekrarkazanç albüm üst sınırı"
|
||||
|
||||
#: gst/gsttag.c:189
|
||||
#: gst/gsttag.c:190
|
||||
msgid "peak of the album"
|
||||
msgstr "albüm üst sınırı"
|
||||
|
||||
#: gst/gsttag.c:228
|
||||
#: gst/gsttag.c:229
|
||||
msgid ", "
|
||||
msgstr ", "
|
||||
|
||||
#: gst/autoplug/gstspider.c:443
|
||||
#: gst/autoplug/gstspider.c:447
|
||||
#, c-format
|
||||
msgid "There is no element present to handle the stream's mime type %s."
|
||||
msgstr "Akımın %s mime türünü işleyebilecek hiç bir öğe yok."
|
||||
|
||||
#: gst/elements/gstfilesink.c:254
|
||||
#: gst/elements/gstfilesink.c:257
|
||||
msgid "No file name specified for writing."
|
||||
msgstr "Yazım için hiç bir dosya adı belirtilmedi."
|
||||
|
||||
#: gst/elements/gstfilesink.c:261
|
||||
#: gst/elements/gstfilesink.c:264
|
||||
#, c-format
|
||||
msgid "Could not open file \"%s\" for writing."
|
||||
msgstr "\"%s\" dosyası yazım için açılamadı."
|
||||
|
||||
#: gst/elements/gstfilesink.c:280
|
||||
#: gst/elements/gstfilesink.c:283
|
||||
#, c-format
|
||||
msgid "Error closing file \"%s\"."
|
||||
msgstr "\"%s\" kapatılırken hata."
|
||||
|
||||
#: gst/elements/gstfilesink.c:344 gst/elements/gstfilesink.c:375
|
||||
#: gst/elements/gstfilesink.c:427
|
||||
#: gst/elements/gstfilesink.c:355 gst/elements/gstfilesink.c:390
|
||||
#: gst/elements/gstfilesink.c:443
|
||||
#, c-format
|
||||
msgid "Error while writing to file \"%s\"."
|
||||
msgstr "\"%s\" dosyası yazılırken hata."
|
||||
|
||||
#: gst/elements/gstfilesrc.c:700 gst/elements/gstmultifilesrc.c:247
|
||||
#: gst/elements/gstfilesrc.c:739 gst/elements/gstmultifilesrc.c:248
|
||||
msgid "No file name specified for reading."
|
||||
msgstr "Okuma için hiç bir dosya adı belirtilmedi."
|
||||
|
||||
#: gst/elements/gstfilesrc.c:714 gst/elements/gstmultifilesrc.c:255
|
||||
#: gst/elements/gstfilesrc.c:754 gst/elements/gstmultifilesrc.c:256
|
||||
#, c-format
|
||||
msgid "Could not open file \"%s\" for reading."
|
||||
msgstr "\"%s\" dosyası okuma için açılamadı."
|
||||
|
||||
#: gst/elements/gstfilesrc.c:725
|
||||
#: gst/elements/gstfilesrc.c:765
|
||||
#, c-format
|
||||
msgid "File \"%s\" isn't a regular file."
|
||||
msgid "\"%s\" is a directory."
|
||||
msgstr ""
|
||||
|
||||
#: gst/elements/gstfilesrc.c:771
|
||||
#, fuzzy, c-format
|
||||
msgid "File \"%s\" is a socket."
|
||||
msgstr "\"%s\" dosyası düzenli bir dosya değil."
|
||||
|
||||
#: gst/elements/gstidentity.c:176
|
||||
#: gst/elements/gstidentity.c:191
|
||||
msgid "Failed after iterations as requested."
|
||||
msgstr "İstenildiği gibi tekrarlama başarısız oldu."
|
||||
|
||||
#: gst/elements/gsttypefind.c:148
|
||||
#: gst/elements/gsttypefindelement.c:148
|
||||
msgid "caps"
|
||||
msgstr "kabiliyetler"
|
||||
|
||||
#: gst/elements/gsttypefind.c:149
|
||||
#: gst/elements/gsttypefindelement.c:149
|
||||
msgid "detected capabilities in stream"
|
||||
msgstr "akımda tesbit edilen kabiliyetler"
|
||||
|
||||
#: gst/elements/gsttypefind.c:152
|
||||
#: gst/elements/gsttypefindelement.c:152
|
||||
msgid "minimum"
|
||||
msgstr "asgari"
|
||||
|
||||
#: gst/elements/gsttypefind.c:156
|
||||
#: gst/elements/gsttypefindelement.c:156
|
||||
msgid "maximum"
|
||||
msgstr "azami"
|
||||
|
||||
#: gst/parse/grammar.y:170
|
||||
#: gst/parse/grammar.y:168
|
||||
#, c-format
|
||||
msgid "specified empty bin \"%s\", not allowed"
|
||||
msgstr "belirtilen boş ikili \"%s\", izin verilmedi"
|
||||
|
||||
#: gst/parse/grammar.y:175
|
||||
#: gst/parse/grammar.y:173
|
||||
#, c-format
|
||||
msgid "no bin \"%s\", skipping"
|
||||
msgstr "\"%s\" ikilisi yok, geçiliyor"
|
||||
|
||||
#: gst/parse/grammar.y:319
|
||||
#: gst/parse/grammar.y:311
|
||||
#, c-format
|
||||
msgid "no property \"%s\" in element \"%s\""
|
||||
msgstr "\"%2$s\" öğesinde \"%1$s\" özelliği yok"
|
||||
|
||||
#: gst/parse/grammar.y:332
|
||||
#: gst/parse/grammar.y:324
|
||||
#, c-format
|
||||
msgid "could not set property \"%s\" in element \"%s\" to \"%s\""
|
||||
msgstr "\"%2$s\" öğesindeki \"%1$s\" özelliğine \"%3$s\" değeri atanamadı"
|
||||
|
||||
#: gst/parse/grammar.y:337
|
||||
#: gst/parse/grammar.y:329
|
||||
#, c-format
|
||||
msgid "could not convert \"%s\" so that it fits property \"%s\" in element \"%s\""
|
||||
msgstr "\"%1$s\", \"%3$s\" öğesindeki \"%2$s\" özelliğinine uyacak şekilde dönüştürülemedi"
|
||||
msgid ""
|
||||
"could not convert \"%s\" so that it fits property \"%s\" in element \"%s\""
|
||||
msgstr ""
|
||||
"\"%1$s\", \"%3$s\" öğesindeki \"%2$s\" özelliğinine uyacak şekilde "
|
||||
"dönüştürülemedi"
|
||||
|
||||
#: gst/parse/grammar.y:525
|
||||
#: gst/parse/grammar.y:514
|
||||
#, c-format
|
||||
msgid "could not link %s to %s"
|
||||
msgstr "%s, %s'a bağlanamadı"
|
||||
|
||||
#: gst/parse/grammar.y:570
|
||||
#: gst/parse/grammar.y:559
|
||||
#, c-format
|
||||
msgid "no element \"%s\""
|
||||
msgstr "\"%s\" öğesi yok"
|
||||
|
||||
#: gst/parse/grammar.y:621
|
||||
#: gst/parse/grammar.y:610
|
||||
#, c-format
|
||||
msgid "could not parse caps \"%s\""
|
||||
msgstr "\"%s\" kabiliyetleri ayrıştırılamadı"
|
||||
|
||||
#: gst/parse/grammar.y:643 gst/parse/grammar.y:697 gst/parse/grammar.y:713
|
||||
#: gst/parse/grammar.y:771
|
||||
#: gst/parse/grammar.y:632 gst/parse/grammar.y:685 gst/parse/grammar.y:701
|
||||
#: gst/parse/grammar.y:759
|
||||
msgid "link without source element"
|
||||
msgstr "kaynak öğesi olmayan bağ"
|
||||
|
||||
#: gst/parse/grammar.y:649 gst/parse/grammar.y:694 gst/parse/grammar.y:780
|
||||
#: gst/parse/grammar.y:638 gst/parse/grammar.y:682 gst/parse/grammar.y:768
|
||||
msgid "link without sink element"
|
||||
msgstr "'sink' öğesi olmayan bağ"
|
||||
|
||||
#: gst/parse/grammar.y:731
|
||||
#: gst/parse/grammar.y:719
|
||||
#, c-format
|
||||
msgid "no source element for URI \"%s\""
|
||||
msgstr "\"%s\" URI'si için kaynak öğesi yok"
|
||||
|
||||
#: gst/parse/grammar.y:741
|
||||
#: gst/parse/grammar.y:729
|
||||
#, c-format
|
||||
msgid "no element to link URI \"%s\" to"
|
||||
msgstr "\"%s\" URI'sini belirtilene bağlayacak öğe yok:"
|
||||
|
||||
#: gst/parse/grammar.y:749
|
||||
#: gst/parse/grammar.y:737
|
||||
#, c-format
|
||||
msgid "no sink element for URI \"%s\""
|
||||
msgstr "\"%s\" URI'si için 'sink' öğesi yok"
|
||||
|
||||
#: gst/parse/grammar.y:753
|
||||
#: gst/parse/grammar.y:741
|
||||
#, c-format
|
||||
msgid "could not link sink element for URI \"%s\""
|
||||
msgstr "\"%s\" URI'si için 'sink' öğesi bağlanamadı"
|
||||
|
||||
#: gst/parse/grammar.y:765
|
||||
#: gst/parse/grammar.y:753
|
||||
msgid "empty pipeline not allowed"
|
||||
msgstr "boş boruhattına izin verilmiyor"
|
||||
|
||||
#: tools/gst-inspect.c:928
|
||||
#: tools/gst-inspect.c:937
|
||||
msgid "Show plugin details"
|
||||
msgstr "Eklenti detaylarını göster"
|
||||
|
||||
#: tools/gst-inspect.c:931
|
||||
#: tools/gst-inspect.c:940
|
||||
msgid "Show scheduler details"
|
||||
msgstr "Zamanlandırıcı detaylarını göster"
|
||||
|
||||
|
@ -717,6 +742,7 @@ msgid "ERROR: no toplevel pipeline element in file '%s'.\n"
|
|||
msgstr "HATA: '%s' dosyasında üst seviye öğesi bulunamadı.\n"
|
||||
|
||||
#: tools/gst-launch.c:123
|
||||
#, c-format
|
||||
msgid "WARNING: only one toplevel element is supported at this time."
|
||||
msgstr "UYARI: Şu anda sadece bir tane üst seviye öğesi destekleniyor."
|
||||
|
||||
|
@ -777,6 +803,7 @@ msgid "ERROR: pipeline could not be constructed: %s.\n"
|
|||
msgstr "HATA: boruhattı oluşturulamadı: %s.\n"
|
||||
|
||||
#: tools/gst-launch.c:442
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline could not be constructed.\n"
|
||||
msgstr "HATA: boruhattı oluşturulamadı.\n"
|
||||
|
||||
|
@ -786,17 +813,27 @@ msgid "WARNING: erroneous pipeline: %s\n"
|
|||
msgstr "UYARI: hatalı boruhattı: %s\n"
|
||||
|
||||
#: tools/gst-launch.c:447
|
||||
#, c-format
|
||||
msgid " Trying to run anyway.\n"
|
||||
msgstr " Gene de çalıştırma deneniyor.\n"
|
||||
|
||||
#: tools/gst-launch.c:475
|
||||
#, c-format
|
||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||
msgstr "HATA: 'pipeline' öğesi bulunamadı.\n"
|
||||
|
||||
#: tools/gst-launch.c:482
|
||||
#, c-format
|
||||
msgid "RUNNING pipeline ...\n"
|
||||
msgstr "BORUHATTI çalıştırılıyor ...\n"
|
||||
|
||||
#: tools/gst-launch.c:485
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||
msgstr "HATA: boruhattı çalmak istemiyor.\n"
|
||||
|
||||
#~ msgid "')"
|
||||
#~ msgstr "')"
|
||||
|
||||
#~ msgid "' is the default)"
|
||||
#~ msgstr "' ön tanımlı olanı)"
|
||||
|
|
18
po/uk.po
18
po/uk.po
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: gstreamer 0.8.0\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2004-04-29 12:09+0200\n"
|
||||
"POT-Creation-Date: 2004-05-04 13:46+0200\n"
|
||||
"PO-Revision-Date: 2004-04-20 18:40+0200\n"
|
||||
"Last-Translator: Maxim V. Dziumanenko <mvd@mylinux.com.ua>\n"
|
||||
"Language-Team: Ukrainian <translation-team-uk@lists.sourceforge.net>\n"
|
||||
|
@ -566,22 +566,22 @@ msgstr ", "
|
|||
msgid "There is no element present to handle the stream's mime type %s."
|
||||
msgstr "Немає елементу для обробки потоку з MIME типом %s."
|
||||
|
||||
#: gst/elements/gstfilesink.c:254
|
||||
#: gst/elements/gstfilesink.c:257
|
||||
msgid "No file name specified for writing."
|
||||
msgstr "Не вказана назва файлу для запису."
|
||||
|
||||
#: gst/elements/gstfilesink.c:261
|
||||
#: gst/elements/gstfilesink.c:264
|
||||
#, c-format
|
||||
msgid "Could not open file \"%s\" for writing."
|
||||
msgstr "Не вдається відкрити файл \"%s\" для запису."
|
||||
|
||||
#: gst/elements/gstfilesink.c:280
|
||||
#: gst/elements/gstfilesink.c:283
|
||||
#, c-format
|
||||
msgid "Error closing file \"%s\"."
|
||||
msgstr "Помилка закривання файлу \"%s\"."
|
||||
|
||||
#: gst/elements/gstfilesink.c:345 gst/elements/gstfilesink.c:376
|
||||
#: gst/elements/gstfilesink.c:428
|
||||
#: gst/elements/gstfilesink.c:355 gst/elements/gstfilesink.c:390
|
||||
#: gst/elements/gstfilesink.c:443
|
||||
#, c-format
|
||||
msgid "Error while writing to file \"%s\"."
|
||||
msgstr "Помилка при записуванні у файл \"%s\"."
|
||||
|
@ -750,6 +750,7 @@ msgid "ERROR: no toplevel pipeline element in file '%s'.\n"
|
|||
msgstr "ПОМИЛКА: немає верхнього елементу каналу у файлі \"%s\".\n"
|
||||
|
||||
#: tools/gst-launch.c:123
|
||||
#, c-format
|
||||
msgid "WARNING: only one toplevel element is supported at this time."
|
||||
msgstr "ПОПЕРЕДЖЕННЯ: наразі підтримується лише один верхній елемент."
|
||||
|
||||
|
@ -811,6 +812,7 @@ msgid "ERROR: pipeline could not be constructed: %s.\n"
|
|||
msgstr "ПОМИЛКА: канал не може бути сконструйований: %s.\n"
|
||||
|
||||
#: tools/gst-launch.c:442
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline could not be constructed.\n"
|
||||
msgstr "ПОМИЛКА: канал не може бути сконструйований.\n"
|
||||
|
||||
|
@ -820,18 +822,22 @@ msgid "WARNING: erroneous pipeline: %s\n"
|
|||
msgstr "ПОПЕРЕДЖЕННЯ: помилковий канал: %s\n"
|
||||
|
||||
#: tools/gst-launch.c:447
|
||||
#, c-format
|
||||
msgid " Trying to run anyway.\n"
|
||||
msgstr " Спроба запуститись у будь-якому разі.\n"
|
||||
|
||||
#: tools/gst-launch.c:475
|
||||
#, c-format
|
||||
msgid "ERROR: the 'pipeline' element wasn't found.\n"
|
||||
msgstr "ПОМИЛКА: не знайдений елемент \"pipeline\".\n"
|
||||
|
||||
#: tools/gst-launch.c:482
|
||||
#, c-format
|
||||
msgid "RUNNING pipeline ...\n"
|
||||
msgstr "ЗАПУСКАЄТЬСЯ канал ...\n"
|
||||
|
||||
#: tools/gst-launch.c:485
|
||||
#, c-format
|
||||
msgid "ERROR: pipeline doesn't want to play.\n"
|
||||
msgstr "ПОМИЛКА: канал не може почати відтворення.\n"
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@ SUBDIRS = instantiate memchunk muxing sched threadstate seeking # bufspeed
|
|||
if !GST_DISABLE_TRACE
|
||||
noinst_PROGRAMS = lat
|
||||
|
||||
lat_CFLAGS = $(GST_CFLAGS)
|
||||
lat_LDFLAGS = $(GST_LIBS)
|
||||
lat_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
lat_LDFLAGS = $(GST_OBJ_LIBS)
|
||||
endif
|
||||
|
||||
EXTRA_DIST = README
|
||||
|
|
|
@ -10,5 +10,5 @@ gstbuffer.c:
|
|||
|
||||
EXTRA_DIST = gstmempool.h
|
||||
|
||||
LDADD = $(GST_LIBS)
|
||||
AM_CFLAGS = $(GST_CFLAGS) -I$(top_srcdir)/gst
|
||||
LDADD = $(GST_OBJ_LIBS)
|
||||
AM_CFLAGS = $(GST_OBJ_CFLAGS) -I$(top_srcdir)/gst
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
noinst_PROGRAMS = create
|
||||
|
||||
LDADD = $(GST_LIBS)
|
||||
AM_CFLAGS = $(GST_CFLAGS)
|
||||
LDADD = $(GST_OBJ_LIBS)
|
||||
AM_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -3,5 +3,5 @@ noinst_PROGRAMS = gmemchunktest gstmemchunktest
|
|||
gmemchunktest_SOURCES = gmemchunktest.c
|
||||
gstmemchunktest_SOURCES = gstmemchunktest.c gstmemchunk.c gstmemchunk.h
|
||||
|
||||
LDADD = $(GST_LIBS)
|
||||
AM_CFLAGS = $(GST_CFLAGS)
|
||||
LDADD = $(GST_OBJ_LIBS)
|
||||
AM_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
noinst_PROGRAMS = case1
|
||||
|
||||
LDADD = $(GST_LIBS)
|
||||
AM_CFLAGS = $(GST_CFLAGS)
|
||||
LDADD = $(GST_OBJ_LIBS)
|
||||
AM_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
noinst_PROGRAMS = capsnego1
|
||||
|
||||
LDADD = $(GST_LIBS)
|
||||
AM_CFLAGS = $(GST_CFLAGS)
|
||||
LDADD = $(GST_OBJ_LIBS)
|
||||
AM_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = appreader
|
||||
|
||||
appreader_LDADD = $(GST_LIBS)
|
||||
appreader_CFLAGS = $(GST_CFLAGS)
|
||||
appreader_LDADD = $(GST_OBJ_LIBS)
|
||||
appreader_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = cutter
|
||||
noinst_HEADERS = cutter.h
|
||||
|
||||
cutter_LDADD = $(GST_LIBS)
|
||||
cutter_CFLAGS = $(GST_CFLAGS)
|
||||
cutter_LDADD = $(GST_OBJ_LIBS)
|
||||
cutter_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
noinst_PROGRAMS = seek
|
||||
|
||||
LDADD = $(GST_LIBS)
|
||||
AM_CFLAGS = $(GST_CFLAGS)
|
||||
LDADD = $(GST_OBJ_LIBS)
|
||||
AM_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
noinst_PROGRAMS = helloworld
|
||||
|
||||
helloworld_LDADD = $(GST_LIBS)
|
||||
helloworld_CFLAGS = $(GST_CFLAGS)
|
||||
helloworld_LDADD = $(GST_OBJ_LIBS)
|
||||
helloworld_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = helloworld2
|
||||
|
||||
helloworld2_LDADD = $(GST_LIBS)
|
||||
helloworld2_CFLAGS = $(GST_CFLAGS)
|
||||
helloworld2_LDADD = $(GST_OBJ_LIBS)
|
||||
helloworld2_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
noinst_PROGRAMS = mp3parselaunch
|
||||
|
||||
mp3parselaunch_LDADD = $(GST_LIBS)
|
||||
mp3parselaunch_CFLAGS = $(GST_CFLAGS)
|
||||
mp3parselaunch_LDADD = $(GST_OBJ_LIBS)
|
||||
mp3parselaunch_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
noinst_SCRIPTS = mp3play
|
||||
EXTRA_DIST = mp3play
|
||||
|
|
|
@ -13,13 +13,13 @@ endif
|
|||
EXAMPLES = dynamic $(GNOME) helloworld queue threads $(GST_LOADSAVE_SRC)
|
||||
noinst_PROGRAMS = $(EXAMPLES)
|
||||
|
||||
LDADD = $(GST_LIBS)
|
||||
INCLUDES = $(GST_CFLAGS)
|
||||
LDADD = $(GST_OBJ_LIBS)
|
||||
INCLUDES = $(GST_OBJ_CFLAGS)
|
||||
|
||||
#dynamic_LDADD = $(GST_LIBS) $(LIBGNOMEUI_LIBS)
|
||||
#dynamic_CFLAGS = $(GST_CFLAGS) $(LIBGNOMEUI_CFLAGS)
|
||||
gnome_LDADD = $(GST_LIBS) $(LIBGNOMEUI_LIBS)
|
||||
gnome_CFLAGS = $(GST_CFLAGS) $(LIBGNOMEUI_CFLAGS)
|
||||
#dynamic_LDADD = $(GST_OBJ_LIBS) $(LIBGNOMEUI_LIBS)
|
||||
#dynamic_CFLAGS = $(GST_OBJ_CFLAGS) $(LIBGNOMEUI_CFLAGS)
|
||||
gnome_LDADD = $(GST_OBJ_LIBS) $(LIBGNOMEUI_LIBS)
|
||||
gnome_CFLAGS = $(GST_OBJ_CFLAGS) $(LIBGNOMEUI_CFLAGS)
|
||||
|
||||
EXTRA_DIST = extract.pl
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = mixer
|
||||
noinst_HEADERS = mixer.h
|
||||
|
||||
mixer_LDADD = $(GST_LIBS)
|
||||
mixer_CFLAGS = $(GST_CFLAGS)
|
||||
mixer_LDADD = $(GST_OBJ_LIBS)
|
||||
mixer_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = pingpong
|
||||
|
||||
pingpong_LDADD = $(GST_LIBS)
|
||||
pingpong_CFLAGS = $(GST_CFLAGS)
|
||||
pingpong_LDADD = $(GST_OBJ_LIBS)
|
||||
pingpong_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
plugin_LTLIBRARIES = libgstexample.la
|
||||
|
||||
libgstexample_la_SOURCES = example.c
|
||||
libgstexample_la_CFLAGS = $(GST_CFLAGS)
|
||||
libgstexample_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libgstexample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
noinst_HEADERS = example.h
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = queue
|
||||
|
||||
queue_LDADD = $(GST_LIBS)
|
||||
queue_CFLAGS = $(GST_CFLAGS)
|
||||
queue_LDADD = $(GST_OBJ_LIBS)
|
||||
queue_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = queue2
|
||||
|
||||
queue2_LDADD = $(GST_LIBS)
|
||||
queue2_CFLAGS = $(GST_CFLAGS)
|
||||
queue2_LDADD = $(GST_OBJ_LIBS)
|
||||
queue2_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = queue3
|
||||
|
||||
queue3_LDADD = $(GST_LIBS)
|
||||
queue3_CFLAGS = $(GST_CFLAGS)
|
||||
queue3_LDADD = $(GST_OBJ_LIBS)
|
||||
queue3_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = queue4
|
||||
|
||||
queue4_LDADD = $(GST_LIBS)
|
||||
queue4_CFLAGS = $(GST_CFLAGS)
|
||||
queue4_LDADD = $(GST_OBJ_LIBS)
|
||||
queue4_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
noinst_PROGRAMS = retag transcode
|
||||
|
||||
retag_LDADD = $(GST_LIBS)
|
||||
retag_CFLAGS = $(GST_CFLAGS)
|
||||
retag_LDADD = $(GST_OBJ_LIBS)
|
||||
retag_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
transcode_LDADD = $(GST_LIBS)
|
||||
transcode_CFLAGS = $(GST_CFLAGS)
|
||||
transcode_LDADD = $(GST_OBJ_LIBS)
|
||||
transcode_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = thread
|
||||
|
||||
thread_LDADD = $(GST_LIBS)
|
||||
thread_CFLAGS = $(GST_CFLAGS)
|
||||
thread_LDADD = $(GST_OBJ_LIBS)
|
||||
thread_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
noinst_PROGRAMS = typefind
|
||||
|
||||
typefind_LDADD = $(GST_LIBS)
|
||||
typefind_CFLAGS = $(GST_CFLAGS)
|
||||
typefind_LDADD = $(GST_OBJ_LIBS)
|
||||
typefind_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
noinst_PROGRAMS = createxml runxml
|
||||
|
||||
createxml_LDADD = $(GST_LIBS)
|
||||
createxml_CFLAGS = $(GST_CFLAGS)
|
||||
runxml_LDADD = $(GST_LIBS)
|
||||
runxml_CFLAGS = $(GST_CFLAGS)
|
||||
createxml_LDADD = $(GST_OBJ_LIBS)
|
||||
createxml_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
runxml_LDADD = $(GST_OBJ_LIBS)
|
||||
runxml_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
||||
|
|
|
@ -31,34 +31,33 @@ noinst_HEADERS = \
|
|||
tests_fail = renegotiate
|
||||
tests_ignore =
|
||||
|
||||
app_fixate_LDADD = $(GST_LIBS)
|
||||
app_fixate_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
intersection_LDADD = $(GST_LIBS)
|
||||
intersection_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
compatibility_LDADD = $(GST_LIBS)
|
||||
compatibility_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
deserialize_LDADD = $(GST_LIBS)
|
||||
deserialize_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
normalisation_LDADD = $(GST_LIBS)
|
||||
normalisation_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
union_LDADD = $(GST_LIBS)
|
||||
union_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
string_conversions_LDADD = $(GST_LIBS)
|
||||
string_conversions_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
fixed_LDADD = $(GST_LIBS)
|
||||
fixed_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
intersect2_LDADD = $(GST_LIBS)
|
||||
intersect2_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
filtercaps_LDADD = $(GST_LIBS)
|
||||
filtercaps_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
eratosthenes_LDADD = $(GST_LIBS)
|
||||
ersthostenes_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
subtract_LDADD = $(GST_LIBS)
|
||||
subtract_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
sets_LDADD = $(GST_LIBS)
|
||||
sets_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
simplify_LDADD = $(GST_LIBS)
|
||||
simplify_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
renegotiate_LDADD = $(GST_LIBS)
|
||||
renegotiate_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
|
||||
app_fixate_LDADD = $(GST_OBJ_LIBS)
|
||||
app_fixate_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
intersection_LDADD = $(GST_OBJ_LIBS)
|
||||
intersection_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
compatibility_LDADD = $(GST_OBJ_LIBS)
|
||||
compatibility_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
deserialize_LDADD = $(GST_OBJ_LIBS)
|
||||
deserialize_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
normalisation_LDADD = $(GST_OBJ_LIBS)
|
||||
normalisation_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
union_LDADD = $(GST_OBJ_LIBS)
|
||||
union_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
string_conversions_LDADD = $(GST_OBJ_LIBS)
|
||||
string_conversions_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
fixed_LDADD = $(GST_OBJ_LIBS)
|
||||
fixed_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
intersect2_LDADD = $(GST_OBJ_LIBS)
|
||||
intersect2_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
filtercaps_LDADD = $(GST_OBJ_LIBS)
|
||||
filtercaps_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
eratosthenes_LDADD = $(GST_OBJ_LIBS)
|
||||
ersthostenes_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
subtract_LDADD = $(GST_OBJ_LIBS)
|
||||
subtract_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
sets_LDADD = $(GST_OBJ_LIBS)
|
||||
sets_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
simplify_LDADD = $(GST_OBJ_LIBS)
|
||||
simplify_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
renegotiate_LDADD = $(GST_OBJ_LIBS)
|
||||
renegotiate_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
|
|
|
@ -7,13 +7,13 @@ tests_fail =
|
|||
tests_ignore = cleanup3
|
||||
|
||||
# we have nothing but apps here, we can do this safely
|
||||
cleanup1_LDADD = $(GST_LIBS)
|
||||
cleanup1_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
cleanup2_LDADD = $(GST_LIBS)
|
||||
cleanup2_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
#cleanup3_LDADD = $(GST_LIBS)
|
||||
#cleanup3_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
cleanup4_LDADD = $(GST_LIBS)
|
||||
cleanup4_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
cleanup5_LDADD = $(GST_LIBS)
|
||||
cleanup5_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
cleanup1_LDADD = $(GST_OBJ_LIBS)
|
||||
cleanup1_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
cleanup2_LDADD = $(GST_OBJ_LIBS)
|
||||
cleanup2_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
#cleanup3_LDADD = $(GST_OBJ_LIBS)
|
||||
#cleanup3_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
cleanup4_LDADD = $(GST_OBJ_LIBS)
|
||||
cleanup4_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
cleanup5_LDADD = $(GST_OBJ_LIBS)
|
||||
cleanup5_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
|
|
|
@ -6,8 +6,8 @@ tests_fail =
|
|||
tests_ignore =
|
||||
|
||||
libloadgst_la_SOURCES = loadgst.c
|
||||
libloadgst_la_CFLAGS = $(GST_CFLAGS)
|
||||
libloadgst_la_LDFLAGS = -module -avoid-version $(GST_LIBS)
|
||||
libloadgst_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libloadgst_la_LDFLAGS = -module -avoid-version $(GST_OBJ_LIBS)
|
||||
|
||||
dlopen_gst_SOURCES = dlopen_gst.c
|
||||
dlopen_gst_CFLAGS = $(GLIB_CFLAGS)
|
||||
|
|
|
@ -4,8 +4,8 @@ tests_pass =
|
|||
tests_fail = dparamstest
|
||||
tests_ignore =
|
||||
|
||||
dparamstest_CFLAGS = $(GST_CFLAGS)
|
||||
dparamstest_LDFLAGS = $(GST_LIBS)
|
||||
dparamstest_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
dparamstest_LDFLAGS = $(GST_OBJ_LIBS)
|
||||
dparamstest_LDADD = $(top_builddir)/libs/gst/control/libgstcontrol-@GST_MAJORMINOR@.la
|
||||
|
||||
dparamstest_SOURCES = dparamstest.c
|
||||
|
|
|
@ -9,10 +9,10 @@ tests_ignore =
|
|||
|
||||
|
||||
libtestplugin_la_SOURCES = testplugin.c
|
||||
libtestplugin_la_CFLAGS = $(GST_CFLAGS)
|
||||
libtestplugin_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libtestplugin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libtestplugin2_la_SOURCES = testplugin2.c
|
||||
libtestplugin2_la_CFLAGS = $(GST_CFLAGS)
|
||||
libtestplugin2_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libtestplugin2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
linked_LIBS = libtestplugin.la libtestplugin2.la
|
||||
|
|
|
@ -5,6 +5,6 @@ tests_fail =
|
|||
tests_ignore =
|
||||
|
||||
|
||||
locked_LDADD = $(GST_LIBS)
|
||||
locked_CFLAGS = $(GST_CFLAGS) $(GNOME_CFLAGS) $(XML_CFLAGS)
|
||||
locked_LDADD = $(GST_OBJ_LIBS)
|
||||
locked_CFLAGS = $(GST_OBJ_CFLAGS) $(GNOME_CFLAGS) $(XML_CFLAGS)
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
|
||||
noinst_PROGRAMS = probetest
|
||||
|
||||
LDADD = $(GST_LIBS)
|
||||
AM_CFLAGS = $(GST_CFLAGS)
|
||||
LDADD = $(GST_OBJ_LIBS)
|
||||
AM_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -6,7 +6,7 @@ endif
|
|||
|
||||
dynamic_pipeline_SOURCES = dynamic-pipeline.c
|
||||
sched_stress_SOURCES = sched-stress.c
|
||||
sched_stress_LDADD = $(GST_LIBS) #-lefence
|
||||
sched_stress_LDADD = $(GST_OBJ_LIBS) #-lefence
|
||||
|
||||
LDADD = $(GST_LIBS)
|
||||
AM_CFLAGS = $(GST_CFLAGS)
|
||||
LDADD = $(GST_OBJ_LIBS)
|
||||
AM_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
noinst_PROGRAMS = seeking1
|
||||
|
||||
LDADD = $(GST_LIBS)
|
||||
AM_CFLAGS = $(GST_CFLAGS)
|
||||
LDADD = $(GST_OBJ_LIBS)
|
||||
AM_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
noinst_PROGRAMS = threadstate1 threadstate2 threadstate3 threadstate4 threadstate5 test1 test2
|
||||
|
||||
LDADD = $(GST_LIBS)
|
||||
AM_CFLAGS = $(GST_CFLAGS)
|
||||
LDADD = $(GST_OBJ_LIBS)
|
||||
AM_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
|
|
|
@ -31,34 +31,33 @@ noinst_HEADERS = \
|
|||
tests_fail = renegotiate
|
||||
tests_ignore =
|
||||
|
||||
app_fixate_LDADD = $(GST_LIBS)
|
||||
app_fixate_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
intersection_LDADD = $(GST_LIBS)
|
||||
intersection_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
compatibility_LDADD = $(GST_LIBS)
|
||||
compatibility_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
deserialize_LDADD = $(GST_LIBS)
|
||||
deserialize_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
normalisation_LDADD = $(GST_LIBS)
|
||||
normalisation_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
union_LDADD = $(GST_LIBS)
|
||||
union_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
string_conversions_LDADD = $(GST_LIBS)
|
||||
string_conversions_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
fixed_LDADD = $(GST_LIBS)
|
||||
fixed_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
intersect2_LDADD = $(GST_LIBS)
|
||||
intersect2_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
filtercaps_LDADD = $(GST_LIBS)
|
||||
filtercaps_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
eratosthenes_LDADD = $(GST_LIBS)
|
||||
ersthostenes_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
subtract_LDADD = $(GST_LIBS)
|
||||
subtract_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
sets_LDADD = $(GST_LIBS)
|
||||
sets_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
simplify_LDADD = $(GST_LIBS)
|
||||
simplify_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
renegotiate_LDADD = $(GST_LIBS)
|
||||
renegotiate_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS)
|
||||
|
||||
app_fixate_LDADD = $(GST_OBJ_LIBS)
|
||||
app_fixate_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
intersection_LDADD = $(GST_OBJ_LIBS)
|
||||
intersection_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
compatibility_LDADD = $(GST_OBJ_LIBS)
|
||||
compatibility_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
deserialize_LDADD = $(GST_OBJ_LIBS)
|
||||
deserialize_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
normalisation_LDADD = $(GST_OBJ_LIBS)
|
||||
normalisation_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
union_LDADD = $(GST_OBJ_LIBS)
|
||||
union_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
string_conversions_LDADD = $(GST_OBJ_LIBS)
|
||||
string_conversions_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
fixed_LDADD = $(GST_OBJ_LIBS)
|
||||
fixed_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
intersect2_LDADD = $(GST_OBJ_LIBS)
|
||||
intersect2_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
filtercaps_LDADD = $(GST_OBJ_LIBS)
|
||||
filtercaps_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
eratosthenes_LDADD = $(GST_OBJ_LIBS)
|
||||
ersthostenes_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
subtract_LDADD = $(GST_OBJ_LIBS)
|
||||
subtract_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
sets_LDADD = $(GST_OBJ_LIBS)
|
||||
sets_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
simplify_LDADD = $(GST_OBJ_LIBS)
|
||||
simplify_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
renegotiate_LDADD = $(GST_OBJ_LIBS)
|
||||
renegotiate_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS)
|
||||
|
|
|
@ -7,13 +7,13 @@ tests_fail =
|
|||
tests_ignore = cleanup3
|
||||
|
||||
# we have nothing but apps here, we can do this safely
|
||||
cleanup1_LDADD = $(GST_LIBS)
|
||||
cleanup1_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
cleanup2_LDADD = $(GST_LIBS)
|
||||
cleanup2_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
#cleanup3_LDADD = $(GST_LIBS)
|
||||
#cleanup3_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
cleanup4_LDADD = $(GST_LIBS)
|
||||
cleanup4_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
cleanup5_LDADD = $(GST_LIBS)
|
||||
cleanup5_CFLAGS = $(GST_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
cleanup1_LDADD = $(GST_OBJ_LIBS)
|
||||
cleanup1_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
cleanup2_LDADD = $(GST_OBJ_LIBS)
|
||||
cleanup2_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
#cleanup3_LDADD = $(GST_OBJ_LIBS)
|
||||
#cleanup3_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
cleanup4_LDADD = $(GST_OBJ_LIBS)
|
||||
cleanup4_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
cleanup5_LDADD = $(GST_OBJ_LIBS)
|
||||
cleanup5_CFLAGS = $(GST_OBJ_CFLAGS) $(XML_CFLAGS) $(GLIB_CFLAGS)
|
||||
|
|
|
@ -6,8 +6,8 @@ tests_fail =
|
|||
tests_ignore =
|
||||
|
||||
libloadgst_la_SOURCES = loadgst.c
|
||||
libloadgst_la_CFLAGS = $(GST_CFLAGS)
|
||||
libloadgst_la_LDFLAGS = -module -avoid-version $(GST_LIBS)
|
||||
libloadgst_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libloadgst_la_LDFLAGS = -module -avoid-version $(GST_OBJ_LIBS)
|
||||
|
||||
dlopen_gst_SOURCES = dlopen_gst.c
|
||||
dlopen_gst_CFLAGS = $(GLIB_CFLAGS)
|
||||
|
|
|
@ -4,8 +4,8 @@ tests_pass =
|
|||
tests_fail = dparamstest
|
||||
tests_ignore =
|
||||
|
||||
dparamstest_CFLAGS = $(GST_CFLAGS)
|
||||
dparamstest_LDFLAGS = $(GST_LIBS)
|
||||
dparamstest_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
dparamstest_LDFLAGS = $(GST_OBJ_LIBS)
|
||||
dparamstest_LDADD = $(top_builddir)/libs/gst/control/libgstcontrol-@GST_MAJORMINOR@.la
|
||||
|
||||
dparamstest_SOURCES = dparamstest.c
|
||||
|
|
|
@ -9,10 +9,10 @@ tests_ignore =
|
|||
|
||||
|
||||
libtestplugin_la_SOURCES = testplugin.c
|
||||
libtestplugin_la_CFLAGS = $(GST_CFLAGS)
|
||||
libtestplugin_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libtestplugin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libtestplugin2_la_SOURCES = testplugin2.c
|
||||
libtestplugin2_la_CFLAGS = $(GST_CFLAGS)
|
||||
libtestplugin2_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
libtestplugin2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
|
||||
linked_LIBS = libtestplugin.la libtestplugin2.la
|
||||
|
|
|
@ -5,6 +5,6 @@ tests_fail =
|
|||
tests_ignore =
|
||||
|
||||
|
||||
locked_LDADD = $(GST_LIBS)
|
||||
locked_CFLAGS = $(GST_CFLAGS) $(GNOME_CFLAGS) $(XML_CFLAGS)
|
||||
locked_LDADD = $(GST_OBJ_LIBS)
|
||||
locked_CFLAGS = $(GST_OBJ_CFLAGS) $(GNOME_CFLAGS) $(XML_CFLAGS)
|
||||
|
||||
|
|
|
@ -42,35 +42,35 @@ bin_SCRIPTS = gst-feedback-@GST_MAJORMINOR@
|
|||
# make sure each versioned tool has the right source file and flags
|
||||
if !GST_DISABLE_REGISTRY
|
||||
gst_register_@GST_MAJORMINOR@_SOURCES = gst-register.c
|
||||
gst_register_@GST_MAJORMINOR@_CFLAGS = $(GST_CFLAGS)
|
||||
gst_register_@GST_MAJORMINOR@_LDFLAGS = $(GST_LIBS)
|
||||
gst_register_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
gst_register_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
||||
endif
|
||||
if !GST_DISABLE_LOADSAVE
|
||||
gst_complete_@GST_MAJORMINOR@_SOURCES = gst-complete.c
|
||||
gst_complete_@GST_MAJORMINOR@_CFLAGS = $(GST_CFLAGS)
|
||||
gst_complete_@GST_MAJORMINOR@_LDFLAGS = $(GST_LIBS)
|
||||
gst_complete_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
gst_complete_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
||||
gst_compprep_@GST_MAJORMINOR@_SOURCES = gst-compprep.c
|
||||
gst_compprep_@GST_MAJORMINOR@_CFLAGS = $(GST_CFLAGS)
|
||||
gst_compprep_@GST_MAJORMINOR@_LDFLAGS = $(GST_LIBS)
|
||||
gst_compprep_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
gst_compprep_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
||||
gst_xmllaunch_@GST_MAJORMINOR@_SOURCES = gst-launch.c
|
||||
gst_xmllaunch_@GST_MAJORMINOR@_CFLAGS = $(GST_CFLAGS)
|
||||
gst_xmllaunch_@GST_MAJORMINOR@_LDFLAGS = $(GST_LIBS)
|
||||
gst_xmllaunch_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
gst_xmllaunch_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
||||
endif
|
||||
gst_inspect_@GST_MAJORMINOR@_SOURCES = gst-inspect.c
|
||||
gst_inspect_@GST_MAJORMINOR@_CFLAGS = $(GST_CFLAGS)
|
||||
gst_inspect_@GST_MAJORMINOR@_LDFLAGS = $(GST_LIBS)
|
||||
gst_inspect_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
gst_inspect_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
||||
gst_launch_@GST_MAJORMINOR@_SOURCES = gst-launch.c
|
||||
gst_launch_@GST_MAJORMINOR@_CFLAGS = $(GST_CFLAGS)
|
||||
gst_launch_@GST_MAJORMINOR@_LDFLAGS = $(GST_LIBS)
|
||||
gst_launch_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
gst_launch_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
||||
gst_md5sum_@GST_MAJORMINOR@_SOURCES = gst-md5sum.c
|
||||
gst_md5sum_@GST_MAJORMINOR@_CFLAGS = $(GST_CFLAGS)
|
||||
gst_md5sum_@GST_MAJORMINOR@_LDFLAGS = $(GST_LIBS)
|
||||
gst_md5sum_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
gst_md5sum_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
||||
gst_typefind_@GST_MAJORMINOR@_SOURCES = gst-typefind.c
|
||||
gst_typefind_@GST_MAJORMINOR@_CFLAGS = $(GST_CFLAGS)
|
||||
gst_typefind_@GST_MAJORMINOR@_LDFLAGS = $(GST_LIBS)
|
||||
gst_typefind_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
gst_typefind_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
||||
gst_xmlinspect_@GST_MAJORMINOR@_SOURCES = gst-xmlinspect.c
|
||||
gst_xmlinspect_@GST_MAJORMINOR@_CFLAGS = $(GST_CFLAGS)
|
||||
gst_xmlinspect_@GST_MAJORMINOR@_LDFLAGS = $(GST_LIBS)
|
||||
gst_xmlinspect_@GST_MAJORMINOR@_CFLAGS = $(GST_OBJ_CFLAGS)
|
||||
gst_xmlinspect_@GST_MAJORMINOR@_LDFLAGS = $(GST_OBJ_LIBS)
|
||||
|
||||
gst-feedback-@GST_MAJORMINOR@: gst-feedback-m.m
|
||||
cp $(srcdir)/gst-feedback-m.m $@
|
||||
|
|
Loading…
Reference in a new issue