[-]
[+]
|
Added |
vlc.changes
|
|
[-]
[+]
|
Changed |
vlc.spec
^
|
|
[-]
[+]
|
Changed |
vlc-opencv22.patch
^
|
@@ -1,12 +1,16 @@
-diff -Nur vlc-1.1.5-orig/modules/video_filter/opencv_example.c vlc-1.1.5/modules/video_filter/opencv_example.c
---- vlc-1.1.5-orig/modules/video_filter/opencv_example.c 2011-01-19 07:05:56.109673336 +0100
-+++ vlc-1.1.5/modules/video_filter/opencv_example.c 2011-01-19 07:22:04.973670402 +0100
-@@ -191,7 +191,7 @@
+Index: vlc-1.1.10/modules/video_filter/opencv_example.c
+===================================================================
+--- vlc-1.1.10.orig/modules/video_filter/opencv_example.c
++++ vlc-1.1.10/modules/video_filter/opencv_example.c
+@@ -191,7 +191,10 @@ static picture_t *Filter( filter_t *p_fi
CvSeq *faces = cvHaarDetectObjects( p_img[0], p_sys->p_cascade,
p_sys->p_storage, 1.15, 5,
CV_HAAR_DO_CANNY_PRUNING,
- cvSize(20, 20) );
-+ cvSize(0, 0), cvSize(20, 20) );
++#if CV_MINOR_VERSION >= 2
++ cvSize(0, 0),
++#endif
++ cvSize(20, 20) );
//create the video_filter_region_info_t struct
if (faces && (faces->total > 0))
{
|
[-]
[+]
|
Deleted |
vlc-1.1.12.tar.bz2/extras/contrib/src/Distributions/android.mak
^
|
@@ -1,15 +0,0 @@
-# android rules
-# Not compiling: .shout .ebml .matroska .live .mod .x264 .caca .mpcdec .dirac .schroedinger .libass
-all: .zlib \
- .a52 .mpeg2 .mad .ogg .vorbis .vorbisenc .theora \
- .flac .speex .faad .lame .ffmpeg \
- .twolame \
- .png .dvbpsi \
- .dca .kate .live
-
-
-ANDROID_INCLUDE=$(ANDROID_NDK)/platforms/android-9/arch-arm/usr/include
-ANDROID_LIB=$(ANDROID_NDK)/platforms/android-9/arch-arm/usr/lib
-
-EXTRA_CPPFLAGS+=-I$(ANDROID_INCLUDE)
-EXTRA_LDFLAGS+=-Wl,-rpath-link=$(ANDROID_LIB),-Bdynamic,-dynamic-linker=/system/bin/linker -Wl,--no-undefined -Wl,-shared -L$(ANDROID_LIB)
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/NEWS
^
|
@@ -1,3 +1,30 @@
+Changes between 1.1.12 and 1.1.13:
+----------------------------------
+
+Security:
+ * Heap overflow in TiVo demuxer fixed.
+ * Same default ACL for HTTP requests as for the rest of the HTTP interface.
+
+Audio outputs:
+ * PulseAudio channels mapping (non-stereo) fix.
+ * PulseAudio stream accidental overflow recovery.
+
+Video outputs:
+ * XVideo support for mixed CPU/GPU endianess (especially on PowerPC).
+ * XVideo support for automatic color keying.
+ * xosd Xlib initialization failure fix.
+
+Decoders:
+ * Camtasia decoding fix.
+
+Qt interface:
+ * Rare crash while seeking fixed.
+ * V4L2 video standard selection fixed.
+
+Translations:
+ * Update of Chinese simplified, Estonian, German and Polish languages.
+
+
Changes between 1.1.11 and 1.1.12:
----------------------------------
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/autotools/ltmain.sh
^
|
@@ -1,9 +1,9 @@
-# libtool (GNU libtool) 2.4
+# libtool (GNU libtool) 2.4.2
# Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006,
-# 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+# 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
# This is free software; see the source for copying conditions. There is NO
# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
@@ -41,6 +41,7 @@
# --quiet, --silent don't print informational messages
# --no-quiet, --no-silent
# print informational messages (default)
+# --no-warn don't display warning messages
# --tag=TAG use configuration variables from tag TAG
# -v, --verbose print more informational messages than default
# --no-verbose don't print the extra informational messages
@@ -69,7 +70,7 @@
# compiler: $LTCC
# compiler flags: $LTCFLAGS
# linker: $LD (gnu? $with_gnu_ld)
-# $progname: (GNU libtool) 2.4 Debian-2.4-2
+# $progname: (GNU libtool) 2.4.2 Debian-2.4.2-1
# automake: $automake_version
# autoconf: $autoconf_version
#
@@ -79,9 +80,9 @@
PROGRAM=libtool
PACKAGE=libtool
-VERSION="2.4 Debian-2.4-2"
+VERSION="2.4.2 Debian-2.4.2-1"
TIMESTAMP=""
-package_revision=1.3293
+package_revision=1.3337
# Be Bourne compatible
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
@@ -136,15 +137,10 @@
: ${CP="cp -f"}
test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'}
-: ${EGREP="/bin/grep -E"}
-: ${FGREP="/bin/grep -F"}
-: ${GREP="/bin/grep"}
-: ${LN_S="ln -s"}
: ${MAKE="make"}
: ${MKDIR="mkdir"}
: ${MV="mv -f"}
: ${RM="rm -f"}
-: ${SED="/bin/sed"}
: ${SHELL="${CONFIG_SHELL-/bin/sh}"}
: ${Xsed="$SED -e 1s/^X//"}
@@ -387,7 +383,7 @@
;;
*)
save_IFS="$IFS"
- IFS=:
+ IFS=${PATH_SEPARATOR-:}
for progdir in $PATH; do
IFS="$save_IFS"
test -x "$progdir/$progname" && break
@@ -771,8 +767,8 @@
s*\$LTCFLAGS*'"$LTCFLAGS"'*
s*\$LD*'"$LD"'*
s/\$with_gnu_ld/'"$with_gnu_ld"'/
- s/\$automake_version/'"`(automake --version) 2>/dev/null |$SED 1q`"'/
- s/\$autoconf_version/'"`(autoconf --version) 2>/dev/null |$SED 1q`"'/
+ s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/
+ s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/
p
d
}
@@ -1052,6 +1048,7 @@
opt_help=false
opt_help_all=false
opt_silent=:
+opt_warning=:
opt_verbose=:
opt_silent=false
opt_verbose=false
@@ -1120,6 +1117,10 @@
opt_silent=false
func_append preserve_args " $opt"
;;
+ --no-warning|--no-warn)
+ opt_warning=false
+func_append preserve_args " $opt"
+ ;;
--no-verbose)
opt_verbose=false
func_append preserve_args " $opt"
@@ -2059,7 +2060,7 @@
*.[cCFSifmso] | \
*.ada | *.adb | *.ads | *.asm | \
*.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \
- *.[fF][09]? | *.for | *.java | *.obj | *.sx | *.cu | *.cup)
+ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup)
func_xform "$libobj"
libobj=$func_xform_result
;;
@@ -3201,11 +3202,13 @@
# Set up the ranlib parameters.
oldlib="$destdir/$name"
+ func_to_tool_file "$oldlib" func_convert_file_msys_to_w32
+ tool_oldlib=$func_to_tool_file_result
func_show_eval "$install_prog \$file \$oldlib" 'exit $?'
if test -n "$stripme" && test -n "$old_striplib"; then
- func_show_eval "$old_striplib $oldlib" 'exit $?'
+ func_show_eval "$old_striplib $tool_oldlib" 'exit $?'
fi
# Do each command in the postinstall commands.
@@ -3470,7 +3473,7 @@
# linked before any other PIC object. But we must not use
# pic_flag when linking with -static. The problem exists in
# FreeBSD 2.2.6 and is fixed in FreeBSD 3.1.
- *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
+ *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*)
pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;;
*-*-hpux*)
pic_flag_for_symtable=" $pic_flag" ;;
@@ -3982,14 +3985,17 @@
# launches target application with the remaining arguments.
func_exec_program ()
{
- for lt_wr_arg
- do
- case \$lt_wr_arg in
- --lt-*) ;;
- *) set x \"\$@\" \"\$lt_wr_arg\"; shift;;
- esac
- shift
- done
+ case \" \$* \" in
+ *\\ --lt-*)
+ for lt_wr_arg
+ do
+ case \$lt_wr_arg in
+ --lt-*) ;;
+ *) set x \"\$@\" \"\$lt_wr_arg\"; shift;;
+ esac
+ shift
+ done ;;
+ esac
func_exec_program_core \${1+\"\$@\"}
}
@@ -5057,9 +5063,15 @@
{
EOF
func_emit_wrapper yes |
- $SED -e 's/\([\\"]\)/\\\1/g' \
- -e 's/^/ fputs ("/' -e 's/$/\\n", f);/'
-
+ $SED -n -e '
+s/^\(.\{79\}\)\(..*\)/\1\
+\2/
+h
+s/\([\\"]\)/\\\1/g
+s/$/\\n/
+s/\([^\n]*\).*/ fputs ("\1", f);/p
+g
+D'
cat <<"EOF"
}
EOF
@@ -5643,7 +5655,8 @@
continue
;;
- -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
+ -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \
+ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)
func_append compiler_flags " $arg"
func_append compile_command " $arg"
func_append finalize_command " $arg"
@@ -6150,7 +6163,8 @@
lib=
found=no
case $deplib in
- -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
+ -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \
+ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*)
if test "$linkmode,$pass" = "prog,link"; then
compile_deplibs="$deplib $compile_deplibs"
finalize_deplibs="$deplib $finalize_deplibs"
@@ -6834,7 +6848,7 @@
test "$hardcode_direct_absolute" = no; then
add="$dir/$linklib"
elif test "$hardcode_minus_L" = yes; then
- add_dir="-L$dir"
+ add_dir="-L$absdir"
# Try looking first in the location we're being installed to.
if test -n "$inst_prefix_dir"; then
case $libdir in
@@ -7319,6 +7333,7 @@
# which has an extra 1 added just for fun
#
case $version_type in
+ # correct linux to gnu/linux during the next big refactor
darwin|linux|osf|windows|none)
func_arith $number_major + $number_minor
current=$func_arith_result
@@ -7438,7 +7453,7 @@
versuffix="$major.$revision"
;;
- linux)
+ linux) # correct to gnu/linux during the next big refactor
func_arith $current - $age
major=.$func_arith_result
versuffix="$major.$age.$revision"
@@ -8026,6 +8041,11 @@
# Test again, we may have decided not to build it any more
if test "$build_libtool_libs" = yes; then
+ # Remove ${wl} instances when linking with ld.
+ # FIXME: should test the right _cmds variable.
+ case $archive_cmds in
+ *\$LD\ *) wl= ;;
+ esac
if test "$hardcode_into_libs" = yes; then
# Hardcode the library paths
hardcode_libdirs=
@@ -8056,7 +8076,7 @@
elif test -n "$runpath_var"; then
case "$perm_rpath " in
*" $libdir "*) ;;
- *) func_apped perm_rpath " $libdir" ;;
+ *) func_append perm_rpath " $libdir" ;;
esac
fi
done
@@ -8064,11 +8084,7 @@
if test -n "$hardcode_libdir_separator" &&
test -n "$hardcode_libdirs"; then
libdir="$hardcode_libdirs"
- if test -n "$hardcode_libdir_flag_spec_ld"; then
- eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\"
- else
- eval dep_rpath=\"$hardcode_libdir_flag_spec\"
- fi
+ eval "dep_rpath=\"$hardcode_libdir_flag_spec\""
fi
if test -n "$runpath_var" && test -n "$perm_rpath"; then
# We should set the runpath_var.
@@ -9158,6 +9174,8 @@
esac
done
fi
+ func_to_tool_file "$oldlib" func_convert_file_msys_to_w32
+ tool_oldlib=$func_to_tool_file_result
eval cmds=\"$old_archive_cmds\"
func_len " $cmds"
@@ -9267,7 +9285,8 @@
*.la)
func_basename "$deplib"
name="$func_basename_result"
- eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib`
+ func_resolve_sysroot "$deplib"
+ eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result`
test -z "$libdir" && \
func_fatal_error "\`$deplib' is not a valid libtool archive"
func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name"
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/configure
^
|
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.68 for vlc 1.1.12.
+# Generated by GNU Autoconf 2.68 for vlc 1.1.13.
#
# Copyright 2002-2011 the VideoLAN team
#
@@ -569,8 +569,8 @@
# Identity of this package.
PACKAGE_NAME='vlc'
PACKAGE_TARNAME='vlc'
-PACKAGE_VERSION='1.1.12'
-PACKAGE_STRING='vlc 1.1.12'
+PACKAGE_VERSION='1.1.13'
+PACKAGE_STRING='vlc 1.1.13'
PACKAGE_BUGREPORT=''
PACKAGE_URL=''
@@ -2117,7 +2117,7 @@
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
-\`configure' configures vlc 1.1.12 to adapt to many kinds of systems.
+\`configure' configures vlc 1.1.13 to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -2191,7 +2191,7 @@
if test -n "$ac_init_help"; then
case $ac_init_help in
- short | recursive ) echo "Configuration of vlc 1.1.12:";;
+ short | recursive ) echo "Configuration of vlc 1.1.13:";;
esac
cat <<\_ACEOF
@@ -2219,7 +2219,7 @@
--enable-peflags peflags use (default enabled on Windows)
--enable-static[=PKGS] build static libraries [default=no]
--enable-shared[=PKGS] build shared libraries [default=yes]
- --with-pic try to use only PIC/non-PIC objects [default=use
+ --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use
both]
--enable-fast-install[=PKGS]
optimize for fast installation [default=yes]
@@ -2768,7 +2768,7 @@
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
-vlc configure 1.1.12
+vlc configure 1.1.13
generated by GNU Autoconf 2.68
Copyright (C) 2010 Free Software Foundation, Inc.
@@ -3512,7 +3512,7 @@
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
-It was created by vlc $as_me 1.1.12, which was
+It was created by vlc $as_me 1.1.13, which was
generated by GNU Autoconf 2.68. Invocation command line was
$ $0 $@
@@ -3863,7 +3863,7 @@
VERSION_MAJOR="1"
VERSION_MINOR="1"
-VERSION_REVISION="12"
+VERSION_REVISION="13"
VERSION_EXTRA="-git"
PKGDIR="vlc"
@@ -4418,7 +4418,7 @@
# Define the identity of the package.
PACKAGE='vlc'
- VERSION='1.1.12'
+ VERSION='1.1.13'
cat >>confdefs.h <<_ACEOF
@@ -9693,8 +9693,8 @@
-macro_version='2.4'
-macro_revision='1.3293'
+macro_version='2.4.2'
+macro_revision='1.3337'
@@ -10338,6 +10338,11 @@
lt_cv_sys_max_cmd_len=196608
;;
+ os2*)
+ # The test takes a long time on OS/2.
+ lt_cv_sys_max_cmd_len=8192
+ ;;
+
osf*)
# Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
# due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
@@ -10377,7 +10382,7 @@
# If test is not a shell built-in, we'll probably end up computing a
# maximum length that is only half of the actual maximum length, but
# we can't tell.
- while { test "X"`func_fallback_echo "$teststring$teststring" 2>/dev/null` \
+ while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \
= "X$teststring$teststring"; } >/dev/null 2>&1 &&
test $i != 17 # 1/2 MB should be enough
do
@@ -10803,7 +10808,7 @@
lt_cv_deplibs_check_method=pass_all
;;
-# This must be Linux ELF.
+# This must be glibc/ELF.
linux* | k*bsd*-gnu | kopensolaris*-gnu)
lt_cv_deplibs_check_method=pass_all
;;
@@ -11440,13 +11445,13 @@
if test -n "$RANLIB"; then
case $host_os in
openbsd*)
- old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib"
+ old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib"
;;
*)
- old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib"
+ old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib"
;;
esac
- old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
+ old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib"
fi
case $host_os in
@@ -11593,6 +11598,7 @@
# which start with @ or ?.
lt_cv_sys_global_symbol_pipe="$AWK '"\
" {last_section=section; section=\$ 3};"\
+" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\
" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\
" \$ 0!~/External *\|/{next};"\
" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\
@@ -11981,7 +11987,7 @@
CFLAGS="$SAVE_CFLAGS"
fi
;;
-sparc*-*solaris*)
+*-*solaris*)
# Find out which ABI we are using.
echo 'int i;' > conftest.$ac_ext
if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
@@ -11992,7 +11998,20 @@
case `/usr/bin/file conftest.o` in
*64-bit*)
case $lt_cv_prog_gnu_ld in
- yes*) LD="${LD-ld} -m elf64_sparc" ;;
+ yes*)
+ case $host in
+ i?86-*-solaris*)
+ LD="${LD-ld} -m elf_x86_64"
+ ;;
+ sparc*-*-solaris*)
+ LD="${LD-ld} -m elf64_sparc"
+ ;;
+ esac
+ # GNU ld 2.21 introduced _sol2 emulations. Use them if available.
+ if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then
+ LD="${LD-ld}_sol2"
+ fi
+ ;;
*)
if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then
LD="${LD-ld} -64"
@@ -12632,7 +12651,13 @@
$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
-dynamiclib -Wl,-single_module conftest.c 2>conftest.err
_lt_result=$?
- if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then
+ # If there is a non-empty error log, and "single_module"
+ # appears in it, assume the flag caused a linker warning
+ if test -s conftest.err && $GREP single_module conftest.err; then
+ cat conftest.err >&5
+ # Otherwise, if the output was created with a 0 exit code from
+ # the compiler, it worked.
+ elif test -f libconftest.dylib && test $_lt_result -eq 0; then
lt_cv_apple_cc_single_mod=yes
else
cat conftest.err >&5
@@ -12643,6 +12668,7 @@
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5
$as_echo "$lt_cv_apple_cc_single_mod" >&6; }
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5
$as_echo_n "checking for -exported_symbols_list linker flag... " >&6; }
if ${lt_cv_ld_exported_symbols_list+:} false; then :
@@ -12675,6 +12701,7 @@
fi
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5
$as_echo "$lt_cv_ld_exported_symbols_list" >&6; }
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5
$as_echo_n "checking for -force_load linker flag... " >&6; }
if ${lt_cv_ld_force_load+:} false; then :
@@ -12696,7 +12723,9 @@
echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5
$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err
_lt_result=$?
- if test -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; then
+ if test -s conftest.err && $GREP force_load conftest.err; then
+ cat conftest.err >&5
+ elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then
lt_cv_ld_force_load=yes
else
cat conftest.err >&5
@@ -12811,7 +12840,22 @@
# Check whether --with-pic was given.
if test "${with_pic+set}" = set; then :
- withval=$with_pic; pic_mode="$withval"
+ withval=$with_pic; lt_p=${PACKAGE-default}
+ case $withval in
+ yes|no) pic_mode=$withval ;;
+ *)
+ pic_mode=default
+ # Look at the argument we got. We use all the common list separators.
+ lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
+ for lt_pkg in $withval; do
+ IFS="$lt_save_ifs"
+ if test "X$lt_pkg" = "X$lt_p"; then
+ pic_mode=yes
+ fi
+ done
+ IFS="$lt_save_ifs"
+ ;;
+ esac
else
pic_mode=default
fi
@@ -12889,6 +12933,10 @@
+
+
+
+
test -z "$LN_S" && LN_S="ln -s"
@@ -13348,7 +13396,9 @@
case $cc_basename in
nvcc*) # Cuda Compiler Driver 2.2
lt_prog_compiler_wl='-Xlinker '
- lt_prog_compiler_pic='-Xcompiler -fPIC'
+ if test -n "$lt_prog_compiler_pic"; then
+ lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic"
+ fi
;;
esac
else
@@ -13439,18 +13489,33 @@
;;
*)
case `$CC -V 2>&1 | sed 5q` in
- *Sun\ F* | *Sun*Fortran*)
+ *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*)
# Sun Fortran 8.3 passes all unrecognized flags to the linker
lt_prog_compiler_pic='-KPIC'
lt_prog_compiler_static='-Bstatic'
lt_prog_compiler_wl=''
;;
+ *Sun\ F* | *Sun*Fortran*)
+ lt_prog_compiler_pic='-KPIC'
+ lt_prog_compiler_static='-Bstatic'
+ lt_prog_compiler_wl='-Qoption ld '
+ ;;
*Sun\ C*)
# Sun C 5.9
lt_prog_compiler_pic='-KPIC'
lt_prog_compiler_static='-Bstatic'
lt_prog_compiler_wl='-Wl,'
;;
+ *Intel*\ [CF]*Compiler*)
+ lt_prog_compiler_wl='-Wl,'
+ lt_prog_compiler_pic='-fPIC'
+ lt_prog_compiler_static='-static'
+ ;;
+ *Portland\ Group*)
+ lt_prog_compiler_wl='-Wl,'
+ lt_prog_compiler_pic='-fpic'
+ lt_prog_compiler_static='-Bstatic'
+ ;;
esac
;;
esac
@@ -13812,7 +13877,6 @@
hardcode_direct=no
hardcode_direct_absolute=no
hardcode_libdir_flag_spec=
- hardcode_libdir_flag_spec_ld=
hardcode_libdir_separator=
hardcode_minus_L=no
hardcode_shlibpath_var=unsupported
@@ -14065,8 +14129,7 @@
xlf* | bgf* | bgxlf* | mpixlf*)
# IBM XL Fortran 10.1 on PPC cannot create shared libs itself
whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive'
- hardcode_libdir_flag_spec=
- hardcode_libdir_flag_spec_ld='-rpath $libdir'
+ hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'
if test "x$supports_anon_versioning" = xyes; then
archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~
@@ -14446,6 +14509,7 @@
# The linker will not automatically build a static lib if we build a DLL.
# _LT_TAGVAR(old_archive_from_new_cmds, )='true'
enable_shared_with_static_runtimes=yes
+ exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols'
# Don't use ranlib
old_postinstall_cmds='chmod 644 $oldlib'
@@ -14491,6 +14555,7 @@
hardcode_shlibpath_var=unsupported
if test "$lt_cv_ld_force_load" = "yes"; then
whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
+
else
whole_archive_flag_spec=''
fi
@@ -14519,10 +14584,6 @@
hardcode_shlibpath_var=no
;;
- freebsd1*)
- ld_shlibs=no
- ;;
-
# FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
# support. Future versions do this automatically, but an explicit c++rt0.o
# does not break anything, and helps significantly (at the cost of a little
@@ -14535,7 +14596,7 @@
;;
# Unfortunately, older versions of FreeBSD 2 do not have this feature.
- freebsd2*)
+ freebsd2.*)
archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
hardcode_direct=yes
hardcode_minus_L=yes
@@ -14574,7 +14635,6 @@
fi
if test "$with_gnu_ld" = no; then
hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
- hardcode_libdir_flag_spec_ld='+b $libdir'
hardcode_libdir_separator=:
hardcode_direct=yes
hardcode_direct_absolute=yes
@@ -15198,11 +15258,6 @@
-
-
-
-
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5
$as_echo_n "checking dynamic linker characteristics... " >&6; }
@@ -15292,7 +15347,7 @@
case $host_os in
aix3*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
shlibpath_var=LIBPATH
@@ -15301,7 +15356,7 @@
;;
aix[4-9]*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
hardcode_into_libs=yes
@@ -15366,7 +15421,7 @@
;;
bsdi[45]*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
soname_spec='${libname}${release}${shared_ext}$major'
@@ -15505,7 +15560,7 @@
;;
dgux*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
@@ -15513,10 +15568,6 @@
shlibpath_var=LD_LIBRARY_PATH
;;
-freebsd1*)
- dynamic_linker=no
- ;;
-
freebsd* | dragonfly*)
# DragonFly does not have aout. When/if they implement a new
# versioning mechanism, adjust this.
@@ -15524,7 +15575,7 @@
objformat=`/usr/bin/objformat`
else
case $host_os in
- freebsd[123]*) objformat=aout ;;
+ freebsd[23].*) objformat=aout ;;
*) objformat=elf ;;
esac
fi
@@ -15542,7 +15593,7 @@
esac
shlibpath_var=LD_LIBRARY_PATH
case $host_os in
- freebsd2*)
+ freebsd2.*)
shlibpath_overrides_runpath=yes
;;
freebsd3.[01]* | freebsdelf3.[01]*)
@@ -15562,7 +15613,7 @@
;;
gnu*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
@@ -15573,7 +15624,7 @@
;;
haiku*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
dynamic_linker="$host_os runtime_loader"
@@ -15634,7 +15685,7 @@
;;
interix[3-9]*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
@@ -15650,7 +15701,7 @@
nonstopux*) version_type=nonstopux ;;
*)
if test "$lt_cv_prog_gnu_ld" = yes; then
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
else
version_type=irix
fi ;;
@@ -15687,9 +15738,9 @@
dynamic_linker=no
;;
-# This must be Linux ELF.
+# This must be glibc/ELF.
linux* | k*bsd*-gnu | kopensolaris*-gnu)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
@@ -15783,7 +15834,7 @@
;;
newsos6)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
shlibpath_var=LD_LIBRARY_PATH
shlibpath_overrides_runpath=yes
@@ -15852,7 +15903,7 @@
;;
solaris*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
@@ -15877,7 +15928,7 @@
;;
sysv4 | sysv4.3*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
soname_spec='${libname}${release}${shared_ext}$major'
shlibpath_var=LD_LIBRARY_PATH
@@ -15901,7 +15952,7 @@
sysv4*MP*)
if test -d /usr/nec ;then
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
soname_spec='$libname${shared_ext}.$major'
shlibpath_var=LD_LIBRARY_PATH
@@ -15932,7 +15983,7 @@
tpf*)
# TPF is a cross-target only. Preferred cross-host = GNU/Linux.
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
@@ -15942,7 +15993,7 @@
;;
uts4*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
soname_spec='${libname}${release}${shared_ext}$major'
shlibpath_var=LD_LIBRARY_PATH
@@ -16867,7 +16918,6 @@
hardcode_direct_CXX=no
hardcode_direct_absolute_CXX=no
hardcode_libdir_flag_spec_CXX=
-hardcode_libdir_flag_spec_ld_CXX=
hardcode_libdir_separator_CXX=
hardcode_minus_L_CXX=no
hardcode_shlibpath_var_CXX=unsupported
@@ -17451,6 +17501,7 @@
hardcode_shlibpath_var_CXX=unsupported
if test "$lt_cv_ld_force_load" = "yes"; then
whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
+
else
whole_archive_flag_spec_CXX=''
fi
@@ -17495,7 +17546,7 @@
esac
;;
- freebsd[12]*)
+ freebsd2.*)
# C++ shared libraries reported to be fairly broken before
# switch to ELF
ld_shlibs_CXX=no
@@ -18171,6 +18222,7 @@
case "$CC $CFLAGS " in #(
*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;;
*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;;
+*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;;
esac
if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5
@@ -18960,7 +19012,9 @@
;;
cygwin* | mingw* | cegcc*)
case $cc_basename in
- cl*) ;;
+ cl*)
+ exclude_expsyms_CXX='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
+ ;;
*)
export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols'
exclude_expsyms_CXX='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'
@@ -19116,8 +19170,6 @@
-
-
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5
$as_echo_n "checking dynamic linker characteristics... " >&6; }
@@ -19143,7 +19195,7 @@
case $host_os in
aix3*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
shlibpath_var=LIBPATH
@@ -19152,7 +19204,7 @@
;;
aix[4-9]*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
hardcode_into_libs=yes
@@ -19217,7 +19269,7 @@
;;
bsdi[45]*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
soname_spec='${libname}${release}${shared_ext}$major'
@@ -19354,7 +19406,7 @@
;;
dgux*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
@@ -19362,10 +19414,6 @@
shlibpath_var=LD_LIBRARY_PATH
;;
-freebsd1*)
- dynamic_linker=no
- ;;
-
freebsd* | dragonfly*)
# DragonFly does not have aout. When/if they implement a new
# versioning mechanism, adjust this.
@@ -19373,7 +19421,7 @@
objformat=`/usr/bin/objformat`
else
case $host_os in
- freebsd[123]*) objformat=aout ;;
+ freebsd[23].*) objformat=aout ;;
*) objformat=elf ;;
esac
fi
@@ -19391,7 +19439,7 @@
esac
shlibpath_var=LD_LIBRARY_PATH
case $host_os in
- freebsd2*)
+ freebsd2.*)
shlibpath_overrides_runpath=yes
;;
freebsd3.[01]* | freebsdelf3.[01]*)
@@ -19411,7 +19459,7 @@
;;
gnu*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
@@ -19422,7 +19470,7 @@
;;
haiku*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
dynamic_linker="$host_os runtime_loader"
@@ -19483,7 +19531,7 @@
;;
interix[3-9]*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
@@ -19499,7 +19547,7 @@
nonstopux*) version_type=nonstopux ;;
*)
if test "$lt_cv_prog_gnu_ld" = yes; then
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
else
version_type=irix
fi ;;
@@ -19536,9 +19584,9 @@
dynamic_linker=no
;;
-# This must be Linux ELF.
+# This must be glibc/ELF.
linux* | k*bsd*-gnu | kopensolaris*-gnu)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
@@ -19632,7 +19680,7 @@
;;
newsos6)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
shlibpath_var=LD_LIBRARY_PATH
shlibpath_overrides_runpath=yes
@@ -19701,7 +19749,7 @@
;;
solaris*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
@@ -19726,7 +19774,7 @@
;;
sysv4 | sysv4.3*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
soname_spec='${libname}${release}${shared_ext}$major'
shlibpath_var=LD_LIBRARY_PATH
@@ -19750,7 +19798,7 @@
sysv4*MP*)
if test -d /usr/nec ;then
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
soname_spec='$libname${shared_ext}.$major'
shlibpath_var=LD_LIBRARY_PATH
@@ -19781,7 +19829,7 @@
tpf*)
# TPF is a cross-target only. Preferred cross-host = GNU/Linux.
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
@@ -19791,7 +19839,7 @@
;;
uts4*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
soname_spec='${libname}${release}${shared_ext}$major'
shlibpath_var=LD_LIBRARY_PATH
@@ -19930,6 +19978,8 @@
+
+
ac_config_commands="$ac_config_commands libtool"
@@ -45782,6 +45832,8 @@
$as_echo "$ac_cv_lib_xosd_xosd_set_horizontal_offset" >&6; }
if test "x$ac_cv_lib_xosd_xosd_set_horizontal_offset" = xyes; then :
+ if test "${no_x}" != "yes"; then :
+
PLUGINS="${PLUGINS} xosd"
@@ -45791,11 +45843,23 @@
- eval "LIBS_xosd="'"'"-lxosd "'$'"{LIBS_xosd}"'"'
+ eval "LIBS_xosd="'"'"-lxosd ${X_LIBS} ${X_PRE_LIBS} -lX11 "'$'"{LIBS_xosd}"'"'
am_modules_with_libs="${am_modules_with_libs} xosd"
+
+ eval "CFLAGS_xosd="'"$'"{CFLAGS_xosd} ${X_CFLAGS}"'"'
+ am_modules_with_cflags="${am_modules_with_cflags} xosd"
+
+
+
+else
+
+ as_fn_error $? "Xlib is required with xosd." "$LINENO" 5
+
+fi
+
fi
@@ -50153,7 +50217,7 @@
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
-This file was extended by vlc $as_me 1.1.12, which was
+This file was extended by vlc $as_me 1.1.13, which was
generated by GNU Autoconf 2.68. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -50219,7 +50283,7 @@
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
ac_cs_version="\\
-vlc config.status 1.1.12
+vlc config.status 1.1.13
configured by $0, generated by GNU Autoconf 2.68,
with options \\"\$ac_cs_config\\"
@@ -50359,6 +50423,7 @@
enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`'
SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`'
ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`'
+PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`'
host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`'
host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`'
host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`'
@@ -50439,7 +50504,6 @@
allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`'
no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`'
hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`'
-hardcode_libdir_flag_spec_ld='`$ECHO "$hardcode_libdir_flag_spec_ld" | $SED "$delay_single_quote_subst"`'
hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`'
hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`'
hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`'
@@ -50511,7 +50575,6 @@
allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`'
no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`'
hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`'
-hardcode_libdir_flag_spec_ld_CXX='`$ECHO "$hardcode_libdir_flag_spec_ld_CXX" | $SED "$delay_single_quote_subst"`'
hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`'
hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`'
hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`'
@@ -50553,6 +50616,7 @@
OBJDUMP \
SHELL \
ECHO \
+PATH_SEPARATOR \
SED \
GREP \
EGREP \
@@ -50601,7 +50665,6 @@
allow_undefined_flag \
no_undefined_flag \
hardcode_libdir_flag_spec \
-hardcode_libdir_flag_spec_ld \
hardcode_libdir_separator \
exclude_expsyms \
include_expsyms \
@@ -50635,7 +50698,6 @@
allow_undefined_flag_CXX \
no_undefined_flag_CXX \
hardcode_libdir_flag_spec_CXX \
-hardcode_libdir_flag_spec_ld_CXX \
hardcode_libdir_separator_CXX \
exclude_expsyms_CXX \
include_expsyms_CXX \
@@ -51553,8 +51615,8 @@
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
#
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-# 2006, 2007, 2008, 2009, 2010 Free Software Foundation,
-# Inc.
+# 2006, 2007, 2008, 2009, 2010, 2011 Free Software
+# Foundation, Inc.
# Written by Gordon Matzigkeit, 1996
#
# This file is part of GNU Libtool.
@@ -51617,6 +51679,9 @@
# An echo program that protects backslashes.
ECHO=$lt_ECHO
+# The PATH separator for the build system.
+PATH_SEPARATOR=$lt_PATH_SEPARATOR
+
# The host system.
host_alias=$host_alias
host=$host
@@ -51912,10 +51977,6 @@
# This must work even if \$libdir does not exist
hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec
-# If ld is used when linking, flag to hardcode \$libdir into a binary
-# during linking. This must work even if \$libdir does not exist.
-hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld
-
# Whether we need a single "-rpath" flag with a separated argument.
hardcode_libdir_separator=$lt_hardcode_libdir_separator
@@ -52258,10 +52319,6 @@
# This must work even if \$libdir does not exist
hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX
-# If ld is used when linking, flag to hardcode \$libdir into a binary
-# during linking. This must work even if \$libdir does not exist.
-hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX
-
# Whether we need a single "-rpath" flag with a separated argument.
hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/configure.ac
^
|
@@ -2,10 +2,10 @@
AC_COPYRIGHT([Copyright 2002-2011 the VideoLAN team])
-AC_INIT(vlc, 1.1.12)
+AC_INIT(vlc, 1.1.13)
VERSION_MAJOR="1"
VERSION_MINOR="1"
-VERSION_REVISION="12"
+VERSION_REVISION="13"
VERSION_EXTRA="-git"
PKGDIR="vlc"
AC_SUBST(PKGDIR)
@@ -4160,8 +4160,13 @@
then
AC_CHECK_HEADERS(xosd.h,
AC_CHECK_LIB(xosd, xosd_set_horizontal_offset, [
- VLC_ADD_PLUGIN([xosd])
- VLC_ADD_LIBS([xosd],[-lxosd])
+ AS_IF([test "${no_x}" != "yes"], [
+ VLC_ADD_PLUGIN([xosd])
+ VLC_ADD_LIBS([xosd],[-lxosd ${X_LIBS} ${X_PRE_LIBS} -lX11])
+ VLC_ADD_CFLAGS([xosd],[${X_CFLAGS}])
+ ],[
+ AC_MSG_ERROR([Xlib is required with xosd.])
+ ])
])
)
fi
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/doc/ChangeLog-2004
^
|
@@ -22557,3 +22557,9 @@
* Updated german and french translations
* Updated version number and Changelog
+
+commit 05f98788679813a111a48589f12699043e461313
+Author: Rocky Bernstein <rocky@videolan.org>
+Date: Thu Jan 1 15:56:56 2004 +0000
+
+ RenderRV16 handles scaling. But seems to slow to render subtitles.
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/doc/ChangeLog-2005
^
|
@@ -22709,3 +22709,16 @@
Date: Sat Jan 1 17:54:05 2005 +0000
* build libiconv without i18n-support, so it can be compiled without gettext -- gettext will be compiled afterwards, so it can take advantage of libiconv
+
+commit 5fc224c4aadc7f7eb1085a207341105838231ca9
+Author: Felix Paul Kühne <fkuehne@videolan.org>
+Date: Sat Jan 1 16:29:51 2005 +0000
+
+ * make sure gettext is built before libiconv, since it is needed for its compilation
+
+commit 3d673c28f04c970a29f2d67d2329a3ee31940cd7
+Author: Felix Paul Kühne <fkuehne@videolan.org>
+Date: Sat Jan 1 15:41:08 2005 +0000
+
+ * use "heanet.dl.sourceforge.net" for downloading FreeType, since www.freetype.org does not respond
+ * use "ftp.heanet.ie" instead of "ftp.gnu.org" as GNU mirror, since the main-server does not respond (I'll revoke this change, when the main-server is usable again)
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/doc/ChangeLog-2007
^
|
@@ -32317,3 +32317,9 @@
Date: Mon Jan 1 18:56:37 2007 +0000
Patch by Mikko Hirvonen <masse at astro dot helsinki dot fi> for Firefox-1.5.x development tools detection in configure.ac. The patch is applied with some modifications of me
+
+commit 641707d30e39c4cfa108587019817c96695cef21
+Author: Felix Paul Kühne <fkuehne@videolan.org>
+Date: Mon Jan 1 17:05:32 2007 +0000
+
+ * added out-of-the-box support for future darwin releases. right now, the following libraries are broken (due to linking issues): cdio, cddb, vcdimager and twolame. additionally, x264 doesn't compile because of a bug in makefile/config.mak.
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/doc/ChangeLog-2008
^
|
@@ -53637,3 +53637,87 @@
Date: Tue Jan 1 18:03:56 2008 +0000
Revert [23949].
+
+commit 054a2b0615657a039bd8bbf257a68df1b59ed43e
+Author: Pierre d'Herbemont <pdherbemont@videolan.org>
+Date: Tue Jan 1 17:06:40 2008 +0000
+
+ svn:keywords.
+
+commit b83ae6b44b26c3db50a9875b30479da954f4d72c
+Author: Pierre d'Herbemont <pdherbemont@videolan.org>
+Date: Tue Jan 1 16:46:55 2008 +0000
+
+ VLCExceptionHandler.m: -initialize to -load. initialize gets called to late or never.
+
+commit 8d5d2f839b28e3aebe560463cf5b3a977c6ef385
+Author: Rémi Duraffort <ivoire@videolan.org>
+Date: Tue Jan 1 16:43:09 2008 +0000
+
+ Little correction of the double-clicks detection under sdl
+
+commit bace31c80180283b84d4794e54d6521cf838e969
+Author: Pierre d'Herbemont <pdherbemont@videolan.org>
+Date: Tue Jan 1 16:23:38 2008 +0000
+
+ MacOSX/VLC_app: Add MainWindow.xib.
+
+commit 77d74ab447b6d78f765ea35e5eddf820d6e3f156
+Author: Christophe Mutricy <xtophe@videolan.org>
+Date: Tue Jan 1 16:19:50 2008 +0000
+
+ Happy new year (2)
+
+commit b6dd543eb1394707708274a7686d1b07c9c6b98c
+Author: Christophe Mutricy <xtophe@videolan.org>
+Date: Tue Jan 1 16:19:02 2008 +0000
+
+ Happy new year
+
+commit 9cd8c3cac199bb326c3e6fb84851855aa7ac4470
+Author: Antoine Cellerier <dionoea@videolan.org>
+Date: Tue Jan 1 16:17:42 2008 +0000
+
+ Fix the video controls extended panels (make extensive use of the object's name).
+
+commit 2b69849b1228b2453fcea3c9f8a19893a93a0462
+Author: Pierre d'Herbemont <pdherbemont@videolan.org>
+Date: Tue Jan 1 16:15:23 2008 +0000
+
+ Fix previous commit.
+
+commit 991f12499f32b787c23b3a77cd0279ea2bd2994d
+Author: Pierre d'Herbemont <pdherbemont@videolan.org>
+Date: Tue Jan 1 16:13:58 2008 +0000
+
+ VLC_app/VLCMainWindow.h: Fix a warning, about the wrong type of the slider outlet.
+
+commit 9b675d98d239a28d1db37486b711b2107763be56
+Author: Pierre d'Herbemont <pdherbemont@videolan.org>
+Date: Tue Jan 1 16:08:00 2008 +0000
+
+ VLCMediaList.m: Don't mess between node hierachical and hierarchical cached copy of the MediaListAspect.
+
+commit b27fff6bf62d6a4a288fd21d2da4043b3f4ddad4
+Author: Rémi Duraffort <ivoire@videolan.org>
+Date: Tue Jan 1 15:50:01 2008 +0000
+
+ Use the screen resolution in fullscreen
+
+commit a708b8621d9c196fa5ae2d9c5e6ad4d066bc4c80
+Author: Pierre d'Herbemont <pdherbemont@videolan.org>
+Date: Tue Jan 1 15:34:28 2008 +0000
+
+ MacOSX/VLC_app: Initial import. Big playlist still causes memory and cpu high load. Interface is ugly. Miss many functionality. But code is light. Supports multiple player. Fullscreen a-la frontrow interface (yet a bit ugly).
+
+commit 7ea9b1c2adb8b6faf76143c0f4f8795df8eeb1b0
+Author: Pierre d'Herbemont <pdherbemont@videolan.org>
+Date: Tue Jan 1 15:29:05 2008 +0000
+
+ MacOSX/Framework: Support event collapsing, and save the media list thats own the media list aspect.
+
+commit 18e91eef2c923effb5d0365cc3f28d80962c91ad
+Author: Pierre d'Herbemont <pdherbemont@videolan.org>
+Date: Tue Jan 1 15:26:55 2008 +0000
+
+ VLCMedia.m: Don't flood the event manager with unused meta change notification. Remove uneeded willChangeValueForKey: notification, as per Julien Robert suggestion.
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/doc/ChangeLog-2011
^
|
@@ -1,3 +1,278 @@
+commit 37a290923afe5158684bcb3cb5141b03ec36b926
+Author: Rémi Denis-Courmont <remi@remlab.net>
+Date: Tue Dec 20 17:57:57 2011 +0200
+
+ Sync translation tables for 1.1.13
+
+commit 0a547a5dccdb25b179d5cd5c50eadcad6138ed38
+Author: Rémi Denis-Courmont <remi@remlab.net>
+Date: Tue Dec 20 17:57:44 2011 +0200
+
+ Update news
+
+commit 208b290a50178a505212abcc71b27f80244869a0
+Author: Clement Lecigne <clecigne@google.com>
+Date: Tue Dec 20 17:44:10 2011 +0200
+
+ TiVo: fix double free
+
+ Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
+ (cherry picked from commit 7d282fac1cc455b5a5eca2bb56375efcbf879b06)
+
+commit 1b81952e57ac1d732597ffceaa7b2d877c281d4c
+Author: Rémi Denis-Courmont <remi@remlab.net>
+Date: Tue Dec 20 17:21:18 2011 +0200
+
+ News for 1.1.13
+
+commit 52fc7c4031db4db938ba96ee28d3ac29eaffe949
+Author: Rémi Denis-Courmont <remi@remlab.net>
+Date: Tue Dec 20 17:21:33 2011 +0200
+
+ Bump version to 1.1.13
+
+commit 199e3d8adf2878354472c10de219bf00371e22ad
+Author: Francois Cartegnie <fcvlcdev@free.fr>
+Date: Tue Dec 6 16:38:07 2011 +0100
+
+ vaapi: fix profiles detection.
+
+ The selected profile wasn't checked against card's ones.
+ (ex: resulting in sending MPEG2 to a VC1/h264 only card)
+
+ Signed-off-by: Jean-Paul Saman <jpsaman@videolan.org>
+ (cherry picked from commit b1ae79cc89d54aa36556d46f71bd1becab6c1645)
+
+ Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
+
+commit 62b976e3e1b2e0fc3e69ee0e8f8cacf46f26f606
+Author: Jean-Baptiste Kempf <jb@videolan.org>
+Date: Tue Dec 20 00:30:59 2011 +0100
+
+ Version should be 1.1.13-git
+
+ If anyone needs a build from HEAD, fix the version for them.
+
+commit 5125f8d5297be3e9dbb248ca345b642a33947a24
+Author: Alexis Ballier <aballier@gentoo.org>
+Date: Fri Dec 9 16:10:10 2011 -0300
+
+ xosd: require and link against Xlib.
+
+ Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
+ (cherry picked from commit 3254502d3b2995908a06387a397f14c89e76621d)
+
+commit 248d1f533acb4144f361db7ceb32b637f28f7cd7
+Author: Alexis Ballier <aballier@gentoo.org>
+Date: Thu Dec 8 19:37:15 2011 -0300
+
+ xosd: call vlc_xlib_init first
+
+ See: https://bugs.gentoo.org/show_bug.cgi?id=393439
+
+ Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
+ (cherry picked from commit 9b40c48c8aa69e71abb0263b1814ede7a370f7c9)
+
+commit 82e23c96e700b6cbf344028a3f57c00d76c745e0
+Author: Pierre Ynard <linkfanel@yahoo.fr>
+Date: Sat Nov 26 03:43:29 2011 +0100
+
+ rtp: fix crash on initialization error
+
+ Due to an uninitialized variable. Untested.
+
+commit d1fa49f6659d0fa38f3f953bc46a2eabdcbc1cf2
+Author: Rémi Denis-Courmont <remi@remlab.net>
+Date: Tue Nov 22 22:29:07 2011 +0200
+
+ XDG needs <signal.h>
+
+ Reported-by: Joseph Atkinson <jsa@freebsd.org>
+ (cherry picked from commit ad81f3760bba308ba33f52eb12abbdb43ebc296e)
+
+commit e3c16907daedfe675c08fc55740e6516bb4cbf0e
+Author: Rémi Denis-Courmont <remi@remlab.net>
+Date: Tue Nov 1 20:39:48 2011 +0200
+
+ Protect AJAX files like the HTML ones
+
+commit 059ec20607227190f1e2a91ab98b4f13046bebe7
+Author: Rémi Denis-Courmont <remi@remlab.net>
+Date: Tue Nov 1 19:22:36 2011 +0200
+
+ XCB/XVideo: fix memory leak
+
+ This was fixed VLC 1.2 in 8fdf5c8af8693274c03f1453b6be14ce0d5d1237.
+
+commit f446b78142ba85b20f5f7ce515ae4459e4640423
+Author: Rémi Denis-Courmont <remi@remlab.net>
+Date: Tue Nov 1 18:11:45 2011 +0200
+
+ Qt4: correct v4l2-standard values (fix #5500)
+
+commit fe2492499859ea31dd386163a1508ecef21de1fd
+Author: Rémi Denis-Courmont <remi@remlab.net>
+Date: Mon Oct 31 22:21:23 2011 +0200
+
+ XCB/XVideo: allow mixed endian format if 8 or 4 bits per component
+
+ Mixed endianess is only an issue if the component values are not
+ aligned inside octets. This fixes Debian #604687.
+ (cherry picked from commit aa1d564909d15463bab3f737269633fb39820fab)
+
+ Conflicts:
+
+ modules/video_output/xcb/xvideo.c
+
+commit 200e74d795028aec579f16013648a36a78279325
+Author: Jean-Paul Saman <jean-paul.saman@m2x.nl>
+Date: Sat Oct 29 10:41:51 2011 +0200
+
+ mux/asf.c: Workaround for playback of WMV in WMP12 and Silverlight.
+
+ The maximum bitrate of the file is not allowed to become zero. If it
+ is then playback in WMP12 and Silverlight does not work. The actual
+ value for maximum bitrate does not really matter in these cases as
+ long as it is not 0.
+
+commit 60388e2fd92b267486e1fb356d78c06a28416348
+Author: Jean-Paul Saman <jean-paul.saman@m2x.nl>
+Date: Sat Oct 29 10:23:04 2011 +0200
+
+ mux/asf.c: typo
+
+commit 73af767572dfeff67345589ec07f848134c20fee
+Author: Rafaël Carré <rafael.carre@gmail.com>
+Date: Fri Jul 15 21:41:49 2011 -0400
+
+ fix vlclua_var_toggle_or_set
+
+ argument is a string ("on" or "off") not a bool
+ (cherry picked from commit e292947855ae11068c34a1e27dbf919e3abc85c6)
+
+ Signed-off-by: Pierre Ynard <linkfanel@yahoo.fr>
+
+commit 49b302c5c858d77f78f25806eea9d1ff3b539a53
+Author: Rémi Duraffort <ivoire@videolan.org>
+Date: Tue Nov 2 17:27:59 2010 +0100
+
+ lua: use var_ToggleBool.
+ (cherry picked from commit a50d13ab0ce72363e9ca37ca305fadf171729b64)
+
+ Signed-off-by: Pierre Ynard <linkfanel@yahoo.fr>
+
+commit 58a5a56e4becca62fed8fb211da229609e73b060
+Author: Pierre Ynard <linkfanel@yahoo.fr>
+Date: Tue Oct 25 01:11:39 2011 +0200
+
+ lua: remove tautology
+
+commit 70940f34b62c7d5c7f5558f4974ba34f4342824c
+Author: Rémi Denis-Courmont <remi@remlab.net>
+Date: Tue Oct 18 18:55:16 2011 +0300
+
+ Flush PulseAudio stream on overflow (fix #5464)
+
+ (cherry picked from commit 836d970806b986949b9b2f847d16cf73f8bdadca)
+
+ Conflicts:
+
+ modules/audio_output/pulse.c
+
+commit c809cde7ec0ce8ae21f6d4d8addb49a2b046204a
+Author: Jean-Baptiste Kempf <jb@videolan.org>
+Date: Thu Oct 13 23:53:27 2011 +0200
+
+ Avcodec: deactivate DR for Camtasia
+
+ Close #4166
+ (cherry picked from commit 066e381ff4047e994ad2335d55e5cce33c5c90a1)
+
+ Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
+
+commit 7f8fdffe5b9cf3bf04c95d356ee0d39e2153d678
+Author: Jean-Baptiste Kempf <jb@videolan.org>
+Date: Thu Oct 13 23:05:35 2011 +0200
+
+ Qt: fill NULL-deref in jumping forward
+
+ Close #5446
+ (cherry picked from commit 4f921a591453707451bbbf6c2a14f58d3264e2a6)
+
+ Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
+
+commit 15a821886296a8efe5f8b9015b6e9c5ae5e3ae79
+Author: Rémi Denis-Courmont <remi@remlab.net>
+Date: Tue Oct 11 19:19:21 2011 +0300
+
+ Set channel map when using PulseAudio 1.0
+
+ (cherry picked from commit ca2cb5f01340252a85ad5bed877e84407f092b21)
+
+commit fae6303598131ae6e1ca1987e07c83f77760b4ef
+Author: Mario Siegmann <Mario_Siegmann@web.de>
+Date: Sun Oct 9 20:51:45 2011 +0100
+
+ l10n: German update
+
+ Signed-off-by: Christophe Mutricy <xtophe@chewa.net>
+
+commit e3b5535b5903152eb3b3fdacb1e4a4d47482e2d0
+Author: Mihkel Kirjutas <turakas@gmail.com>
+Date: Sun Oct 9 20:50:50 2011 +0100
+
+ l10n: Fix previous Estonian update
+
+ Signed-off-by: Christophe Mutricy <xtophe@chewa.net>
+
+commit 4aed8dbe26619badc5310c51e4a664d0605e6987
+Author: Mihkel Kirjutas <turakas@gmail.com>
+Date: Sun Oct 9 17:09:23 2011 +0100
+
+ l10n: Estonian update
+
+ Signed-off-by: Christophe Mutricy <xtophe@chewa.net>
+
+commit da320692ffdb340c589a9b8de80879732519b57e
+Author: Dean Lee <xslidian@gmail.com>
+Date: Sun Oct 9 15:36:00 2011 +0100
+
+ l10n: Simplified Chinese update
+
+ Signed-off-by: Christophe Mutricy <xtophe@chewa.net>
+
+commit 7074c7a75f7a62fad687a1f0ad015fa21cc08156
+Author: Michał Trzebiatowski <hippie_1968@hotmail.com>
+Date: Sun Oct 9 15:31:40 2011 +0100
+
+ l10n: Polish update
+
+ Signed-off-by: Christophe Mutricy <xtophe@chewa.net>
+
+commit 18b259d44300c4a090fa96fb3cfee1fca7d68c6f
+Author: Rémi Denis-Courmont <remi@remlab.net>
+Date: Fri Oct 7 20:47:26 2011 +0300
+
+ Turn on XVideo color key automatic painting (fix #4643)
+
+ (cherry picked from commit 136b09ae7215ae28098c91c76b04486c5498c5b1)
+
+commit fb5ab4523ef9fed3a7576cee5df1970e0e1412c0
+Author: Benjamin Drung <bdrung@debian.org>
+Date: Fri Oct 7 00:31:51 2011 +0200
+
+ Build osdmenu plugin again (fix #5111).
+
+ Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
+
+commit e026ed8f26885234716bd201ddedbb0e26b5bf7b
+Author: Benjamin Drung <bdrung@debian.org>
+Date: Fri Oct 7 00:31:50 2011 +0200
+
+ Fix typo in vlc.desktop: Name[nn] -> GenericName[nn].
+
+ Signed-off-by: Rémi Denis-Courmont <remi@remlab.net>
+
commit 63a4ce20d8cb94efa4bebd66106a2961eb300b50
Author: Rémi Denis-Courmont <remi@remlab.net>
Date: Thu Oct 6 21:03:40 2011 +0300
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/m4/libtool.m4
^
|
@@ -1,8 +1,8 @@
# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
#
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-# 2006, 2007, 2008, 2009, 2010 Free Software Foundation,
-# Inc.
+# 2006, 2007, 2008, 2009, 2010, 2011 Free Software
+# Foundation, Inc.
# Written by Gordon Matzigkeit, 1996
#
# This file is free software; the Free Software Foundation gives
@@ -11,8 +11,8 @@
m4_define([_LT_COPYING], [dnl
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
-# 2006, 2007, 2008, 2009, 2010 Free Software Foundation,
-# Inc.
+# 2006, 2007, 2008, 2009, 2010, 2011 Free Software
+# Foundation, Inc.
# Written by Gordon Matzigkeit, 1996
#
# This file is part of GNU Libtool.
@@ -146,6 +146,8 @@
AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl
AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl
+_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl
+dnl
_LT_DECL([], [host_alias], [0], [The host system])dnl
_LT_DECL([], [host], [0])dnl
_LT_DECL([], [host_os], [0])dnl
@@ -637,7 +639,7 @@
m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
configured by $[0], generated by m4_PACKAGE_STRING.
-Copyright (C) 2010 Free Software Foundation, Inc.
+Copyright (C) 2011 Free Software Foundation, Inc.
This config.lt script is free software; the Free Software Foundation
gives unlimited permision to copy, distribute and modify it."
@@ -801,6 +803,7 @@
m4_case([$1],
[C], [_LT_LANG(C)],
[C++], [_LT_LANG(CXX)],
+ [Go], [_LT_LANG(GO)],
[Java], [_LT_LANG(GCJ)],
[Fortran 77], [_LT_LANG(F77)],
[Fortran], [_LT_LANG(FC)],
@@ -822,6 +825,31 @@
])# _LT_LANG
+m4_ifndef([AC_PROG_GO], [
+############################################################
+# NOTE: This macro has been submitted for inclusion into #
+# GNU Autoconf as AC_PROG_GO. When it is available in #
+# a released version of Autoconf we should remove this #
+# macro and use it instead. #
+############################################################
+m4_defun([AC_PROG_GO],
+[AC_LANG_PUSH(Go)dnl
+AC_ARG_VAR([GOC], [Go compiler command])dnl
+AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl
+_AC_ARG_VAR_LDFLAGS()dnl
+AC_CHECK_TOOL(GOC, gccgo)
+if test -z "$GOC"; then
+ if test -n "$ac_tool_prefix"; then
+ AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo])
+ fi
+fi
+if test -z "$GOC"; then
+ AC_CHECK_PROG(GOC, gccgo, gccgo, false)
+fi
+])#m4_defun
+])#m4_ifndef
+
+
# _LT_LANG_DEFAULT_CONFIG
# -----------------------
m4_defun([_LT_LANG_DEFAULT_CONFIG],
@@ -852,6 +880,10 @@
m4_ifdef([LT_PROG_GCJ],
[m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])])
+AC_PROVIDE_IFELSE([AC_PROG_GO],
+ [LT_LANG(GO)],
+ [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])])
+
AC_PROVIDE_IFELSE([LT_PROG_RC],
[LT_LANG(RC)],
[m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])])
@@ -954,7 +986,13 @@
$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
-dynamiclib -Wl,-single_module conftest.c 2>conftest.err
_lt_result=$?
- if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then
+ # If there is a non-empty error log, and "single_module"
+ # appears in it, assume the flag caused a linker warning
+ if test -s conftest.err && $GREP single_module conftest.err; then
+ cat conftest.err >&AS_MESSAGE_LOG_FD
+ # Otherwise, if the output was created with a 0 exit code from
+ # the compiler, it worked.
+ elif test -f libconftest.dylib && test $_lt_result -eq 0; then
lt_cv_apple_cc_single_mod=yes
else
cat conftest.err >&AS_MESSAGE_LOG_FD
@@ -962,6 +1000,7 @@
rm -rf libconftest.dylib*
rm -f conftest.*
fi])
+
AC_CACHE_CHECK([for -exported_symbols_list linker flag],
[lt_cv_ld_exported_symbols_list],
[lt_cv_ld_exported_symbols_list=no
@@ -973,6 +1012,7 @@
[lt_cv_ld_exported_symbols_list=no])
LDFLAGS="$save_LDFLAGS"
])
+
AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load],
[lt_cv_ld_force_load=no
cat > conftest.c << _LT_EOF
@@ -990,7 +1030,9 @@
echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD
$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err
_lt_result=$?
- if test -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; then
+ if test -s conftest.err && $GREP force_load conftest.err; then
+ cat conftest.err >&AS_MESSAGE_LOG_FD
+ elif test -f conftest && test $_lt_result -eq 0 && $GREP forced_load conftest >/dev/null 2>&1 ; then
lt_cv_ld_force_load=yes
else
cat conftest.err >&AS_MESSAGE_LOG_FD
@@ -1035,8 +1077,8 @@
])
-# _LT_DARWIN_LINKER_FEATURES
-# --------------------------
+# _LT_DARWIN_LINKER_FEATURES([TAG])
+# ---------------------------------
# Checks for linker and compiler features on darwin
m4_defun([_LT_DARWIN_LINKER_FEATURES],
[
@@ -1047,6 +1089,8 @@
_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
if test "$lt_cv_ld_force_load" = "yes"; then
_LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
+ m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes],
+ [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes])
else
_LT_TAGVAR(whole_archive_flag_spec, $1)=''
fi
@@ -1330,14 +1374,27 @@
CFLAGS="$SAVE_CFLAGS"
fi
;;
-sparc*-*solaris*)
+*-*solaris*)
# Find out which ABI we are using.
echo 'int i;' > conftest.$ac_ext
if AC_TRY_EVAL(ac_compile); then
case `/usr/bin/file conftest.o` in
*64-bit*)
case $lt_cv_prog_gnu_ld in
- yes*) LD="${LD-ld} -m elf64_sparc" ;;
+ yes*)
+ case $host in
+ i?86-*-solaris*)
+ LD="${LD-ld} -m elf_x86_64"
+ ;;
+ sparc*-*-solaris*)
+ LD="${LD-ld} -m elf64_sparc"
+ ;;
+ esac
+ # GNU ld 2.21 introduced _sol2 emulations. Use them if available.
+ if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then
+ LD="${LD-ld}_sol2"
+ fi
+ ;;
*)
if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then
LD="${LD-ld} -64"
@@ -1414,13 +1471,13 @@
if test -n "$RANLIB"; then
case $host_os in
openbsd*)
- old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib"
+ old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib"
;;
*)
- old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib"
+ old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib"
;;
esac
- old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
+ old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib"
fi
case $host_os in
@@ -1600,6 +1657,11 @@
lt_cv_sys_max_cmd_len=196608
;;
+ os2*)
+ # The test takes a long time on OS/2.
+ lt_cv_sys_max_cmd_len=8192
+ ;;
+
osf*)
# Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
# due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
@@ -1639,7 +1701,7 @@
# If test is not a shell built-in, we'll probably end up computing a
# maximum length that is only half of the actual maximum length, but
# we can't tell.
- while { test "X"`func_fallback_echo "$teststring$teststring" 2>/dev/null` \
+ while { test "X"`env echo "$teststring$teststring" 2>/dev/null` \
= "X$teststring$teststring"; } >/dev/null 2>&1 &&
test $i != 17 # 1/2 MB should be enough
do
@@ -2185,7 +2247,7 @@
case $host_os in
aix3*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
shlibpath_var=LIBPATH
@@ -2194,7 +2256,7 @@
;;
aix[[4-9]]*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
hardcode_into_libs=yes
@@ -2259,7 +2321,7 @@
;;
bsdi[[45]]*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
soname_spec='${libname}${release}${shared_ext}$major'
@@ -2398,7 +2460,7 @@
;;
dgux*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
@@ -2406,10 +2468,6 @@
shlibpath_var=LD_LIBRARY_PATH
;;
-freebsd1*)
- dynamic_linker=no
- ;;
-
freebsd* | dragonfly*)
# DragonFly does not have aout. When/if they implement a new
# versioning mechanism, adjust this.
@@ -2417,7 +2475,7 @@
objformat=`/usr/bin/objformat`
else
case $host_os in
- freebsd[[123]]*) objformat=aout ;;
+ freebsd[[23]].*) objformat=aout ;;
*) objformat=elf ;;
esac
fi
@@ -2435,7 +2493,7 @@
esac
shlibpath_var=LD_LIBRARY_PATH
case $host_os in
- freebsd2*)
+ freebsd2.*)
shlibpath_overrides_runpath=yes
;;
freebsd3.[[01]]* | freebsdelf3.[[01]]*)
@@ -2455,7 +2513,7 @@
;;
gnu*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
@@ -2466,7 +2524,7 @@
;;
haiku*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
dynamic_linker="$host_os runtime_loader"
@@ -2527,7 +2585,7 @@
;;
interix[[3-9]]*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
@@ -2543,7 +2601,7 @@
nonstopux*) version_type=nonstopux ;;
*)
if test "$lt_cv_prog_gnu_ld" = yes; then
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
else
version_type=irix
fi ;;
@@ -2580,9 +2638,9 @@
dynamic_linker=no
;;
-# This must be Linux ELF.
+# This must be glibc/ELF.
linux* | k*bsd*-gnu | kopensolaris*-gnu)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
@@ -2657,7 +2715,7 @@
;;
newsos6)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
shlibpath_var=LD_LIBRARY_PATH
shlibpath_overrides_runpath=yes
@@ -2726,7 +2784,7 @@
;;
solaris*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
@@ -2751,7 +2809,7 @@
;;
sysv4 | sysv4.3*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
soname_spec='${libname}${release}${shared_ext}$major'
shlibpath_var=LD_LIBRARY_PATH
@@ -2775,7 +2833,7 @@
sysv4*MP*)
if test -d /usr/nec ;then
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
soname_spec='$libname${shared_ext}.$major'
shlibpath_var=LD_LIBRARY_PATH
@@ -2806,7 +2864,7 @@
tpf*)
# TPF is a cross-target only. Preferred cross-host = GNU/Linux.
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
need_lib_prefix=no
need_version=no
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
@@ -2816,7 +2874,7 @@
;;
uts4*)
- version_type=linux
+ version_type=linux # correct to gnu/linux during the next big refactor
library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
soname_spec='${libname}${release}${shared_ext}$major'
shlibpath_var=LD_LIBRARY_PATH
@@ -3238,7 +3296,7 @@
lt_cv_deplibs_check_method=pass_all
;;
-# This must be Linux ELF.
+# This must be glibc/ELF.
linux* | k*bsd*-gnu | kopensolaris*-gnu)
lt_cv_deplibs_check_method=pass_all
;;
@@ -3658,6 +3716,7 @@
# which start with @ or ?.
lt_cv_sys_global_symbol_pipe="$AWK ['"\
" {last_section=section; section=\$ 3};"\
+" /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\
" /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\
" \$ 0!~/External *\|/{next};"\
" / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\
@@ -4242,7 +4301,9 @@
case $cc_basename in
nvcc*) # Cuda Compiler Driver 2.2
_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker '
- _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Xcompiler -fPIC'
+ if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then
+ _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)"
+ fi
;;
esac
else
@@ -4334,18 +4395,33 @@
;;
*)
case `$CC -V 2>&1 | sed 5q` in
- *Sun\ F* | *Sun*Fortran*)
+ *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*)
# Sun Fortran 8.3 passes all unrecognized flags to the linker
_LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
_LT_TAGVAR(lt_prog_compiler_wl, $1)=''
;;
+ *Sun\ F* | *Sun*Fortran*)
+ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
+ _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
+ ;;
*Sun\ C*)
# Sun C 5.9
_LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
;;
+ *Intel*\ [[CF]]*Compiler*)
+ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
+ _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
+ ;;
+ *Portland\ Group*)
+ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
+ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
+ _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
+ ;;
esac
;;
esac
@@ -4505,7 +4581,9 @@
;;
cygwin* | mingw* | cegcc*)
case $cc_basename in
- cl*) ;;
+ cl*)
+ _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
+ ;;
*)
_LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols'
_LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']
@@ -4533,7 +4611,6 @@
_LT_TAGVAR(hardcode_direct, $1)=no
_LT_TAGVAR(hardcode_direct_absolute, $1)=no
_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
- _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
_LT_TAGVAR(hardcode_libdir_separator, $1)=
_LT_TAGVAR(hardcode_minus_L, $1)=no
_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
@@ -4787,8 +4864,7 @@
xlf* | bgf* | bgxlf* | mpixlf*)
# IBM XL Fortran 10.1 on PPC cannot create shared libs itself
_LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive'
- _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
- _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir'
+ _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
_LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'
if test "x$supports_anon_versioning" = xyes; then
_LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
@@ -5084,6 +5160,7 @@
# The linker will not automatically build a static lib if we build a DLL.
# _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
+ _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
_LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols'
# Don't use ranlib
_LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'
@@ -5130,10 +5207,6 @@
_LT_TAGVAR(hardcode_shlibpath_var, $1)=no
;;
- freebsd1*)
- _LT_TAGVAR(ld_shlibs, $1)=no
- ;;
-
# FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
# support. Future versions do this automatically, but an explicit c++rt0.o
# does not break anything, and helps significantly (at the cost of a little
@@ -5146,7 +5219,7 @@
;;
# Unfortunately, older versions of FreeBSD 2 do not have this feature.
- freebsd2*)
+ freebsd2.*)
_LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
_LT_TAGVAR(hardcode_direct, $1)=yes
_LT_TAGVAR(hardcode_minus_L, $1)=yes
@@ -5185,7 +5258,6 @@
fi
if test "$with_gnu_ld" = no; then
_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
- _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir'
_LT_TAGVAR(hardcode_libdir_separator, $1)=:
_LT_TAGVAR(hardcode_direct, $1)=yes
_LT_TAGVAR(hardcode_direct_absolute, $1)=yes
@@ -5627,9 +5699,6 @@
_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1],
[Flag to hardcode $libdir into a binary during linking.
This must work even if $libdir does not exist])
-_LT_TAGDECL([], [hardcode_libdir_flag_spec_ld], [1],
- [[If ld is used when linking, flag to hardcode $libdir into a binary
- during linking. This must work even if $libdir does not exist]])
_LT_TAGDECL([], [hardcode_libdir_separator], [1],
[Whether we need a single "-rpath" flag with a separated argument])
_LT_TAGDECL([], [hardcode_direct], [0],
@@ -5787,7 +5856,6 @@
_LT_TAGVAR(hardcode_direct, $1)=no
_LT_TAGVAR(hardcode_direct_absolute, $1)=no
_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
-_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
_LT_TAGVAR(hardcode_libdir_separator, $1)=
_LT_TAGVAR(hardcode_minus_L, $1)=no
_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
@@ -6157,7 +6225,7 @@
esac
;;
- freebsd[[12]]*)
+ freebsd2.*)
# C++ shared libraries reported to be fairly broken before
# switch to ELF
_LT_TAGVAR(ld_shlibs, $1)=no
@@ -6918,12 +6986,18 @@
}
};
_LT_EOF
+], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF
+package foo
+func foo() {
+}
+_LT_EOF
])
_lt_libdeps_save_CFLAGS=$CFLAGS
case "$CC $CFLAGS " in #(
*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;;
*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;;
+*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;;
esac
dnl Parse the compiler output and extract the necessary
@@ -7120,7 +7194,6 @@
_LT_TAGVAR(hardcode_direct, $1)=no
_LT_TAGVAR(hardcode_direct_absolute, $1)=no
_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
-_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
_LT_TAGVAR(hardcode_libdir_separator, $1)=
_LT_TAGVAR(hardcode_minus_L, $1)=no
_LT_TAGVAR(hardcode_automatic, $1)=no
@@ -7253,7 +7326,6 @@
_LT_TAGVAR(hardcode_direct, $1)=no
_LT_TAGVAR(hardcode_direct_absolute, $1)=no
_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
-_LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
_LT_TAGVAR(hardcode_libdir_separator, $1)=
_LT_TAGVAR(hardcode_minus_L, $1)=no
_LT_TAGVAR(hardcode_automatic, $1)=no
@@ -7440,6 +7512,77 @@
])# _LT_LANG_GCJ_CONFIG
+# _LT_LANG_GO_CONFIG([TAG])
+# --------------------------
+# Ensure that the configuration variables for the GNU Go compiler
+# are suitably defined. These variables are subsequently used by _LT_CONFIG
+# to write the compiler configuration to `libtool'.
+m4_defun([_LT_LANG_GO_CONFIG],
+[AC_REQUIRE([LT_PROG_GO])dnl
+AC_LANG_SAVE
+
+# Source file extension for Go test sources.
+ac_ext=go
+
+# Object file extension for compiled Go test sources.
+objext=o
+_LT_TAGVAR(objext, $1)=$objext
+
+# Code to be used in simple compile tests
+lt_simple_compile_test_code="package main; func main() { }"
+
+# Code to be used in simple link tests
+lt_simple_link_test_code='package main; func main() { }'
+
+# ltmain only uses $CC for tagged configurations so make sure $CC is set.
+_LT_TAG_COMPILER
+
+# save warnings/boilerplate of simple test code
+_LT_COMPILER_BOILERPLATE
+_LT_LINKER_BOILERPLATE
+
+# Allow CC to be a program name with arguments.
+lt_save_CC=$CC
+lt_save_CFLAGS=$CFLAGS
+lt_save_GCC=$GCC
+GCC=yes
+CC=${GOC-"gccgo"}
+CFLAGS=$GOFLAGS
+compiler=$CC
+_LT_TAGVAR(compiler, $1)=$CC
+_LT_TAGVAR(LD, $1)="$LD"
+_LT_CC_BASENAME([$compiler])
+
+# Go did not exist at the time GCC didn't implicitly link libc in.
+_LT_TAGVAR(archive_cmds_need_lc, $1)=no
+
+_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
+_LT_TAGVAR(reload_flag, $1)=$reload_flag
+_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
+
+## CAVEAT EMPTOR:
+## There is no encapsulation within the following macros, do not change
+## the running order or otherwise move them around unless you know exactly
+## what you are doing...
+if test -n "$compiler"; then
+ _LT_COMPILER_NO_RTTI($1)
+ _LT_COMPILER_PIC($1)
+ _LT_COMPILER_C_O($1)
+ _LT_COMPILER_FILE_LOCKS($1)
+ _LT_LINKER_SHLIBS($1)
+ _LT_LINKER_HARDCODE_LIBPATH($1)
+
+ _LT_CONFIG($1)
+fi
+
+AC_LANG_RESTORE
+
+GCC=$lt_save_GCC
+CC=$lt_save_CC
+CFLAGS=$lt_save_CFLAGS
+])# _LT_LANG_GO_CONFIG
+
+
# _LT_LANG_RC_CONFIG([TAG])
# -------------------------
# Ensure that the configuration variables for the Windows resource compiler
@@ -7509,6 +7652,13 @@
dnl AC_DEFUN([LT_AC_PROG_GCJ], [])
+# LT_PROG_GO
+# ----------
+AC_DEFUN([LT_PROG_GO],
+[AC_CHECK_TOOL(GOC, gccgo,)
+])
+
+
# LT_PROG_RC
# ----------
AC_DEFUN([LT_PROG_RC],
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/m4/ltoptions.m4
^
|
@@ -326,9 +326,24 @@
# MODE is either `yes' or `no'. If omitted, it defaults to `both'.
m4_define([_LT_WITH_PIC],
[AC_ARG_WITH([pic],
- [AS_HELP_STRING([--with-pic],
+ [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@],
[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
- [pic_mode="$withval"],
+ [lt_p=${PACKAGE-default}
+ case $withval in
+ yes|no) pic_mode=$withval ;;
+ *)
+ pic_mode=default
+ # Look at the argument we got. We use all the common list separators.
+ lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
+ for lt_pkg in $withval; do
+ IFS="$lt_save_ifs"
+ if test "X$lt_pkg" = "X$lt_p"; then
+ pic_mode=yes
+ fi
+ done
+ IFS="$lt_save_ifs"
+ ;;
+ esac],
[pic_mode=default])
test -z "$pic_mode" && pic_mode=m4_default([$1], [default])
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/m4/ltversion.m4
^
|
@@ -9,15 +9,15 @@
# @configure_input@
-# serial 3293 ltversion.m4
+# serial 3337 ltversion.m4
# This file is part of GNU Libtool
-m4_define([LT_PACKAGE_VERSION], [2.4])
-m4_define([LT_PACKAGE_REVISION], [1.3293])
+m4_define([LT_PACKAGE_VERSION], [2.4.2])
+m4_define([LT_PACKAGE_REVISION], [1.3337])
AC_DEFUN([LTVERSION_VERSION],
-[macro_version='2.4'
-macro_revision='1.3293'
+[macro_version='2.4.2'
+macro_revision='1.3337'
_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
_LT_DECL(, macro_revision, 0)
])
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/modules/access/rtp/rtp.c
^
|
@@ -265,6 +265,7 @@
p_sys->max_dropout = var_CreateGetInteger (obj, "rtp-max-dropout");
p_sys->max_misorder = var_CreateGetInteger (obj, "rtp-max-misorder");
p_sys->framed_rtp = (tp == IPPROTO_TCP);
+ p_sys->thread_ready = false;
demux->pf_demux = NULL;
demux->pf_control = Control;
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/modules/audio_output/pulse.c
^
|
@@ -313,9 +313,13 @@
static void stream_overflow_cb(pa_stream *s, void *userdata)
{
aout_instance_t *aout = userdata;
+ pa_operation *op;
- msg_Err(aout, "overflow");
- (void) s;
+ msg_Err(aout, "overflow, flushing");
+ op = pa_stream_flush(s, NULL, NULL);
+ if (likely(op != NULL))
+ pa_operation_unref(op);
+ stream_reset_sync(s, aout);
}
static void stream_started_cb(pa_stream *s, void *userdata)
@@ -640,6 +644,7 @@
formatv[formatc]->encoding = encoding;
pa_format_info_set_rate(formatv[formatc], ss.rate);
pa_format_info_set_channels(formatv[formatc], ss.channels);
+ pa_format_info_set_channel_map(formatv[formatc], &map);
formatc++;
}
@@ -649,6 +654,7 @@
pa_format_info_set_sample_format(formatv[formatc], ss.format);
pa_format_info_set_rate(formatv[formatc], ss.rate);
pa_format_info_set_channels(formatv[formatc], ss.channels);
+ pa_format_info_set_channel_map(formatv[formatc], &map);
formatc++;
/* Create a playback stream */
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/modules/codec/avcodec/vaapi.c
^
|
@@ -2,7 +2,7 @@
* vaapi.c: VAAPI helpers for the ffmpeg decoder
*****************************************************************************
* Copyright (C) 2009 Laurent Aimar
- * $Id: 8b56967afc3f9ccfc9ea4731c76826de22e15133 $
+ * $Id: a684c9814f8a5a971a20eeac5ca4a6c7fb2fea2d $
*
* Authors: Laurent Aimar <fenrir_AT_ videolan _DOT_ org>
*
@@ -95,7 +95,9 @@
/* */
static int Open( vlc_va_vaapi_t *p_va, int i_codec_id )
{
- VAProfile i_profile;
+ VAProfile i_profile, *p_profiles_list;
+ bool b_supported_profile = false;
+ int i_profiles_nb = 0;
int i_surface_count;
/* */
@@ -144,6 +146,28 @@
if( vaInitialize( p_va->p_display, &p_va->i_version_major, &p_va->i_version_minor ) )
goto error;
+ /* Check if the selected profile is supported */
+ i_profiles_nb = vaMaxNumProfiles( p_va->p_display );
+ p_profiles_list = calloc( i_profiles_nb, sizeof( VAProfile ) );
+ if ( !p_profiles_list )
+ goto error;
+
+ VAStatus i_status = vaQueryConfigProfiles( p_va->p_display, p_profiles_list, &i_profiles_nb );
+ if ( i_status == VA_STATUS_SUCCESS )
+ {
+ for( int i = 0; i < i_profiles_nb; i++ )
+ {
+ if ( p_profiles_list[i] == i_profile )
+ {
+ b_supported_profile = true;
+ break;
+ }
+ }
+ }
+ free( p_profiles_list );
+ if ( !b_supported_profile )
+ goto error;
+
/* Create a VA configuration */
VAConfigAttrib attrib;
memset( &attrib, 0, sizeof(attrib) );
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/modules/codec/avcodec/video.c
^
|
@@ -2,7 +2,7 @@
* video.c: video decoder using the ffmpeg library
*****************************************************************************
* Copyright (C) 1999-2001 the VideoLAN team
- * $Id: d0b90c9bb85f625528513a218d1f8f941bde51a4 $
+ * $Id: e34e25c2bc251b061148346d3e702cf0bc1b4ca0 $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@videolan.org>
@@ -299,7 +299,7 @@
if( var_CreateGetBool( p_dec, "ffmpeg-dr" ) &&
(p_sys->p_codec->capabilities & CODEC_CAP_DR1) &&
/* No idea why ... but this fixes flickering on some TSCC streams */
- p_sys->i_codec_id != CODEC_ID_TSCC &&
+ p_sys->i_codec_id != CODEC_ID_TSCC && p_sys->i_codec_id != CODEC_ID_CSCD &&
#if (LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 52, 68, 2 ) ) && (LIBAVCODEC_VERSION_INT < AV_VERSION_INT( 52, 100, 1 ) )
/* avcodec native vp8 decode doesn't handle EMU_EDGE flag, and I
don't have idea howto implement fallback to libvpx decoder */
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/modules/demux/ty.c
^
|
@@ -6,7 +6,7 @@
* based on code by Christopher Wingert for tivo-mplayer
* tivo(at)wingert.org, February 2003
*
- * $Id: b2375928c3146fa8ca32c88c7aa5f5dd176603a2 $
+ * $Id: 627ca94e4c0c4a9c348fe712b330c77fadd7cbcc $
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -1894,6 +1894,7 @@
/*msg_Dbg( p_demux, "chunk has %d records", i_num_recs );*/
free(p_sys->rec_hdrs);
+ p_sys->rec_hdrs = NULL;
/* skip past the 4 bytes we "peeked" earlier */
stream_Read( p_demux->s, NULL, 4 );
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/modules/gui/qt4/components/open_panels.cpp
^
|
@@ -1140,7 +1140,8 @@
case V4L2_DEVICE:
fileList << "v4l2://" + v4l2VideoDevice->text();
mrl += " :input-slave=alsa://" + v4l2AudioDevice->text();
- mrl += " :v4l2-standard=" + QString::number( v4l2StdBox->currentIndex() );
+ mrl += " :v4l2-standard=" + QString::number( v4l2StdBox->itemData(
+ v4l2StdBox->currentIndex() ).toInt() );
break;
case JACK_DEVICE:
mrl = "jack://";
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/modules/gui/qt4/input_manager.cpp
^
|
@@ -2,7 +2,7 @@
* input_manager.cpp : Manage an input and interact with its GUI elements
****************************************************************************
* Copyright (C) 2006-2008 the VideoLAN team
- * $Id: 7961729f7b8e8aa954bac3615add3616df00934e $
+ * $Id: a464a4e5e43771b5b1e3445c038559ed6d00a703 $
*
* Authors: Clément Stenac <zorglub@videolan.org>
* Ilkka Ollakka <ileoo@videolan.org>
@@ -862,7 +862,7 @@
void InputManager::jumpFwd()
{
int i_interval = var_InheritInteger( p_input, "short-jump-size" );
- if( i_interval > 0 )
+ if( i_interval > 0 && hasInput() )
{
mtime_t val = (mtime_t)(i_interval) * 1000000L;
var_SetTime( p_input, "time-offset", val );
@@ -872,7 +872,7 @@
void InputManager::jumpBwd()
{
int i_interval = var_InheritInteger( p_input, "short-jump-size" );
- if( i_interval > 0 )
+ if( i_interval > 0 && hasInput() )
{
mtime_t val = -1 *(mtime_t)(i_interval) * 1000000L;
var_SetTime( p_input, "time-offset", val );
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/modules/misc/inhibit/xdg.c
^
|
@@ -26,6 +26,7 @@
#include <vlc_plugin.h>
#include <vlc_inhibit.h>
#include <assert.h>
+#include <signal.h>
#include <spawn.h>
#include <sys/wait.h>
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/modules/misc/lua/libs/variables.c
^
|
@@ -2,7 +2,7 @@
* variables.c: Generic lua<->vlc variables interface
*****************************************************************************
* Copyright (C) 2007-2008 the VideoLAN team
- * $Id: 4373f37995c5856051633ab983d15e9de0ba0164 $
+ * $Id: 9254ec87533ab99b54f5f1f7edccaa026b0e5a75 $
*
* Authors: Antoine Cellerier <dionoea at videolan tod org>
*
@@ -256,16 +256,29 @@
if( lua_gettop( L ) > 1 ) return vlclua_error( L );
if( lua_gettop( L ) == 0 )
- b_bool = !var_GetBool( p_obj, psz_name );
- else /* lua_gettop( L ) == 1 */
{
- b_bool = luaL_checkboolean( L, -1 )?true:false;
- lua_pop( L, 1 );
+ b_bool = var_ToggleBool( p_obj, psz_name );
+ goto end;
+ }
+
+ /* lua_gettop( L ) == 1 */
+ const char *s = luaL_checkstring( L, -1 );
+ lua_pop( L, 1 );
+
+ if( s && !strcmp(s, "on") )
+ b_bool = true;
+ else if( s && !strcmp(s, "off") )
+ b_bool = false;
+ else
+ {
+ b_bool = var_GetBool( p_obj, psz_name );
+ goto end;
}
if( b_bool != var_GetBool( p_obj, psz_name ) )
var_SetBool( p_obj, psz_name, b_bool );
+end:
lua_pushboolean( L, b_bool );
return 1;
}
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/modules/misc/notify/xosd.c
^
|
@@ -2,7 +2,7 @@
* xosd.c : X On Screen Display interface
*****************************************************************************
* Copyright (C) 2001 the VideoLAN team
- * $Id: 2cea9331817b45745388df5723b5d70869dda7a4 $
+ * $Id: 5241036b7b9243c0aae9d770140633d35cbcaa59 $
*
* Authors: Loïc Minier <lool@videolan.org>
*
@@ -34,6 +34,7 @@
#include <vlc_playlist.h>
#include <vlc_input.h>
#include <vlc_interface.h>
+#include <vlc_xlib.h>
#include <xosd.h>
@@ -110,6 +111,9 @@
xosd *p_osd;
char *psz_font, *psz_colour;
+ if (!vlc_xlib_init(p_this))
+ return VLC_EGENERIC;
+
if( getenv( "DISPLAY" ) == NULL )
{
msg_Err( p_intf, "no display, please set the DISPLAY variable" );
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/modules/mux/asf.c
^
|
@@ -2,7 +2,7 @@
* asf.c: asf muxer module for vlc
*****************************************************************************
* Copyright (C) 2003-2004, 2006 the VideoLAN team
- * $Id: c790104ecbefb65f2b449fa062db06164508914b $
+ * $Id: 6dfb5d691d29c8383d86c90449a5ab5c15a786d5 $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@videolan.org>
@@ -641,7 +641,7 @@
*****************************************************************************/
static int DelStream( sout_mux_t *p_mux, sout_input_t *p_input )
{
- /* if bitrate ain't defined in commanline, reduce it when tracks are deleted
+ /* if bitrate ain't defined in commandline, reduce it when tracks are deleted
*/
sout_mux_sys_t *p_sys = p_mux->p_sys;
asf_track_t *tk = p_input->p_sys;
@@ -982,7 +982,10 @@
bo_addle_u32( &bo, b_broadcast ? 0x01 : 0x02 /* seekable */ ); /* flags */
bo_addle_u32( &bo, p_sys->i_packet_size ); /* packet size min */
bo_addle_u32( &bo, p_sys->i_packet_size ); /* packet size max */
- bo_addle_u32( &bo, p_sys->i_bitrate ); /* maxbitrate */
+ /* NOTE: According to p6-9 of the ASF specification the bitrate cannot be 0,
+ * therefor apply this workaround to make sure it is not 0. If the bitrate is
+ * 0 the file will play in WMP11, but not in Sliverlight and WMP12 */
+ bo_addle_u32( &bo, p_sys->i_bitrate > 0 ? p_sys->i_bitrate : 1 ); /* maxbitrate */
/* header extension */
bo_add_guid ( &bo, &asf_object_header_extension_guid );
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/modules/video_filter/Makefile.in
^
|
@@ -1327,7 +1327,7 @@
libvlc_LTLIBRARIES = $(LTLIBatmo) $(LTLIBopencv_example) \
$(LTLIBopencv_wrapper) $(LTLIBpanoramix) $(LTLIBpostproc) \
$(LTLIBremoteosd) $(LTLIBswscale) $(LTLIBswscale_omap) \
- libadjust_plugin.la libalphamask_plugin.la \
+ $(LTLIBosdmenu) libadjust_plugin.la libalphamask_plugin.la \
libaudiobargraph_v_plugin.la libball_plugin.la \
libblend_plugin.la libblendbench_plugin.la \
libbluescreen_plugin.la libcanvas_plugin.la libchain_plugin.la \
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/modules/video_filter/Modules.am
^
|
@@ -24,6 +24,7 @@
libosdmenu_plugin_la_LIBADD = $(AM_LIBADD)
libosdmenu_plugin_la_DEPENDENCIES =
EXTRA_LTLIBRARIES += libosdmenu_plugin.la
+libvlc_LTLIBRARIES += $(LTLIBosdmenu)
SOURCES_remoteosd = remoteosd.c remoteosd_rfbproto.h
SOURCES_magnify = magnify.c
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/modules/video_output/xcb/xvideo.c
^
|
@@ -134,9 +134,6 @@
static vlc_fourcc_t ParseFormat (vout_display_t *vd,
const xcb_xv_image_format_info_t *restrict f)
{
- if (f->byte_order != ORDER && f->bpp != 8)
- return 0; /* Argh! */
-
switch (f->type)
{
case XCB_XV_IMAGE_FORMAT_INFO_TYPE_RGB:
@@ -156,6 +153,8 @@
return VLC_CODEC_RGB24;
break;
case 16:
+ if (f->byte_order != ORDER)
+ return 0; /* Mixed endian! */
if (f->depth == 16)
return VLC_CODEC_RGB16;
if (f->depth == 15)
@@ -399,6 +398,7 @@
continue; /* OMAP framebuffer sucks at YUV 4:2:0 */
}
+ free (p_sys->att);
xfmt = FindFormat (vd, chroma, &fmt, a->base_id, r, &p_sys->att);
if (xfmt != NULL)
{
@@ -415,6 +415,8 @@
}
break;
}
+ else
+ p_sys->att = NULL;
}
free (r);
if (xfmt == NULL) /* No acceptable image formats */
@@ -509,7 +511,7 @@
msg_Err (vd, "no available XVideo adaptor");
goto error;
}
- else
+ /* Compute video (window) placement within the parent window */
{
xcb_map_window (conn, p_sys->window);
@@ -535,6 +537,15 @@
xcb_create_gc (conn, p_sys->gc, p_sys->window, 0, NULL);
msg_Dbg (vd, "using X11 graphic context 0x%08"PRIx32, p_sys->gc);
+ /* Disable color keying if applicable */
+ {
+ xcb_intern_atom_reply_t *r =
+ xcb_intern_atom_reply (conn,
+ xcb_intern_atom (conn, 1, 21, "XV_AUTOPAINT_COLORKEY"), NULL);
+ if (r != NULL && r->atom != 0)
+ xcb_xv_set_port_attribute(conn, p_sys->port, r->atom, 1);
+ }
+
/* Create cursor */
p_sys->cursor = CreateBlankCursor (conn, screen);
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/POTFILES.in
^
|
@@ -1172,21 +1172,21 @@
# Qt4 .ui files
# uncomment (and prepend $builddir} if you want to generate a proper vlc.pot
-#modules/gui/qt4/ui/equalizer.h
-#modules/gui/qt4/ui/open.h
-#modules/gui/qt4/ui/open_capture.h
-#modules/gui/qt4/ui/open_disk.h
-#modules/gui/qt4/ui/open_file.h
-#modules/gui/qt4/ui/open_net.h
-#modules/gui/qt4/ui/podcast_configuration.h
-#modules/gui/qt4/ui/profiles.h
-#modules/gui/qt4/ui/sout.h
-#modules/gui/qt4/ui/sprefs_audio.h
-#modules/gui/qt4/ui/sprefs_input.h
-#modules/gui/qt4/ui/sprefs_interface.h
-#modules/gui/qt4/ui/sprefs_subtitles.h
-#modules/gui/qt4/ui/sprefs_video.h
-#modules/gui/qt4/ui/streampanel.h
-#modules/gui/qt4/ui/v4l2.h
-#modules/gui/qt4/ui/video_effects.h
-#modules/gui/qt4/ui/vlm.h
+modules/gui/qt4/ui/equalizer.h
+modules/gui/qt4/ui/open.h
+modules/gui/qt4/ui/open_capture.h
+modules/gui/qt4/ui/open_disk.h
+modules/gui/qt4/ui/open_file.h
+modules/gui/qt4/ui/open_net.h
+modules/gui/qt4/ui/podcast_configuration.h
+modules/gui/qt4/ui/profiles.h
+modules/gui/qt4/ui/sout.h
+modules/gui/qt4/ui/sprefs_audio.h
+modules/gui/qt4/ui/sprefs_input.h
+modules/gui/qt4/ui/sprefs_interface.h
+modules/gui/qt4/ui/sprefs_subtitles.h
+modules/gui/qt4/ui/sprefs_video.h
+modules/gui/qt4/ui/streampanel.h
+modules/gui/qt4/ui/v4l2.h
+modules/gui/qt4/ui/video_effects.h
+modules/gui/qt4/ui/vlm.h
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ach.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ach.po
^
|
@@ -4,7 +4,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-02-04 19:14+0200\n"
"Last-Translator: Alfred John <agwanta2004@yahoo.co.uk>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3605,7 +3605,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Cung"
@@ -4541,7 +4541,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7548,7 +7548,7 @@
msgstr "Mamako gi kiyo video"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12364,7 +12364,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Cung manok"
@@ -14170,7 +14170,7 @@
msgstr "Nying Fail pi fail me cal me tic ikom keto iwi i citowa me nyig cal."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14261,7 +14261,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17138,7 +17138,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Yore madito"
@@ -19392,11 +19392,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19644,43 +19644,43 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "Cukuru kabedo me wie maditu"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
#, fuzzy
msgid "XOSD interface"
msgstr "Qt kaneno"
@@ -24485,12 +24485,12 @@
msgid "XVideo output (XCB)"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Yik pi ginanena pe gigwoko"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/af.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/af.po
^
|
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-02-12 23:51+0200\n"
"Last-Translator: F Wolff <friedel@translate.org.za>\n"
"Language-Team: translate-discuss-af@lists.sourceforge.net\n"
@@ -3588,7 +3588,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Stop"
@@ -4520,7 +4520,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7534,7 +7534,7 @@
msgstr "Aangaande die videof"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12369,7 +12369,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Laat wag"
@@ -14181,7 +14181,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14273,7 +14273,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17276,7 +17276,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Gevorderde keuses"
@@ -19573,11 +19573,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19827,45 +19827,45 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "Draai om vertikaal"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
#, fuzzy
msgid "Vertical offset"
msgstr "Vertikale sinchr"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
#, fuzzy
msgid "Shadow offset"
msgstr "Lukraak af"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
#, fuzzy
msgid "XOSD interface"
msgstr "Wys koppelvlak"
@@ -24667,12 +24667,12 @@
msgid "XVideo output (XCB)"
msgstr "Video verstellings"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Video verstellings"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/am.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/am.po
^
|
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-04-06 00:53+0200\n"
"Last-Translator: Solomon Gizaw <solohavi@yahoo.com>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3602,7 +3602,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "አቁም "
@@ -4537,7 +4537,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7543,7 +7543,7 @@
msgstr "ስለ ቪድዮ ማጣሪያዎች "
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12357,7 +12357,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "ፋታ"
@@ -14162,7 +14162,7 @@
msgstr "በተሸፈነው የንዑስ ክፈፍ ቋት ላይ ለመጠቀም የምስል ፋይል ፋይል ስም። "
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14252,7 +14252,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17126,7 +17126,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "የላቁ ምርጫዎች "
@@ -19379,11 +19379,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19631,43 +19631,43 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "የጽሁፋዊ ትርጉም አቀማመጥን አስገድድ "
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
#, fuzzy
msgid "XOSD interface"
msgstr "ኪውቲ በይነገጽ "
@@ -24470,12 +24470,12 @@
msgid "XVideo output (XCB)"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "የቪድዮ ቅንብሮች አልተቀመጡም "
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ar.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ar.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2009-09-15 17:57+0300\n"
"Last-Translator: Osama Khalid <osamak.wfm@gmail.com>\n"
"Language-Team: Arabic <>\n"
@@ -3786,7 +3786,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "أوقف"
@@ -4663,7 +4663,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7693,7 +7693,7 @@
msgstr ".شكل الصورة"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12673,7 +12673,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "ألبِث"
@@ -14612,7 +14612,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14704,7 +14704,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17795,7 +17795,7 @@
msgid " f/s"
msgstr "ممر 2 "
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "خيارت متقدمة"
@@ -20170,12 +20170,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "تعطيل حافظة الشاشة"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
#, fuzzy
msgid "XDG screen saver inhibition"
msgstr " الشاشه المدخر س ديسابلير "
@@ -20444,19 +20444,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr " نقرة موقع العمودي "
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "في اسفل الشاشه بدلا من القمة XOSD عرض ناتج"
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "تعديل عمودي"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20464,24 +20464,24 @@
" إزاحة عمودية بين الحدود من الشاشه ومكان إظهر النص (بالبكسل ،تقصيراً البكسل "
"30)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "تعديل الظّل"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "إزاحة بين النص وظلال (بالبكسل ،تقصيراً البكسل 2)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "خط يستخدم لعرض النص في XOSD الانتاج."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "لانتاج. XOSD الون يستخدم لعرض النص في"
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "واجهة XOSD "
@@ -25428,12 +25428,12 @@
msgid "XVideo output (XCB)"
msgstr "دبوس خرج للفديو"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "لم تُحفظ إعدادات الفيديو"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ast.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ast.po
^
|
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-10-14 22:34+0100\n"
"Last-Translator: Xuacu Saturio <xuacusk8@gmail.com>\n"
"Language-Team: Asturian <ast@li.org>\n"
@@ -3434,7 +3434,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr ""
@@ -4291,7 +4291,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7161,7 +7161,7 @@
msgstr ""
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11748,7 +11748,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr ""
@@ -13470,7 +13470,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13560,7 +13560,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16396,7 +16396,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr ""
@@ -18610,11 +18610,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -18847,42 +18847,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr ""
@@ -23379,11 +23379,11 @@
msgid "XVideo output (XCB)"
msgstr "Salida XVideo (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/be.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/be.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc 1.0.6-git\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-02-11 14:27+0300\n"
"Last-Translator: Siarhei Dar'ichau <charnabog@rambler.ru>\n"
"Language-Team: Belarusian\n"
@@ -3499,7 +3499,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr ""
@@ -4357,7 +4357,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7243,7 +7243,7 @@
msgstr ""
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11837,7 +11837,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr ""
@@ -13564,7 +13564,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13654,7 +13654,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16506,7 +16506,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr ""
@@ -18739,11 +18739,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -18980,42 +18980,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr ""
@@ -23547,11 +23547,11 @@
msgid "XVideo output (XCB)"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/bg.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/bg.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc 1.1.0\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-05-24 21:35+0200\n"
"Last-Translator: Ivo Ivanov <bestran@mail.bg>\n"
"Language-Team: Bulgarian <bestran@mail.bg>\n"
@@ -3823,7 +3823,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Спиране"
@@ -4704,7 +4704,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7744,7 +7744,7 @@
msgstr "Нюанс на входящото видео."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12765,7 +12765,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Пауза"
@@ -14580,7 +14580,7 @@
"фреймбуфера."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14669,7 +14669,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17688,7 +17688,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Разширени настройки"
@@ -20016,11 +20016,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG-скрийнсейвър"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "XDG изключвател на скрийнсейвър"
@@ -20273,19 +20273,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Обръщане във вертикална позиция"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Показване изхода на XOSD отдолу на екрана вместо отгоре."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Вертикално изместване"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20293,25 +20293,25 @@
"Вертикално изместване между края на екрана и показвания текст (в пиксели, по "
"подразбиране 30 пиксела)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Изместване на сянка"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"Изместване между текста и сянката (в пиксели, по подразбиране 2 пиксела)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Шрифт, който да се използва за показване на текста в изхода на XOSD."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Цвят, който да се използва за показване на текста в изхода на XOSD."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Интерфейс XOSD"
@@ -25191,11 +25191,11 @@
msgid "XVideo output (XCB)"
msgstr "XVideo извеждане (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Видео ускорителя не е наличен"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/bn.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/bn.po
^
|
@@ -15,7 +15,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-04-04 12:45+0600\n"
"Last-Translator: israt <israt@ankur.org.bd>\n"
"Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
@@ -3842,7 +3842,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "বন্ধ করা হবে"
@@ -4711,7 +4711,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7719,7 +7719,7 @@
msgstr "ভিডিও ইনপুটের হিউ।"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12721,7 +12721,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "বিরতি"
@@ -14539,7 +14539,7 @@
msgstr "সব রেন্ডার করা চিত্র এবং লেখ ওভারলে ফ্রেমবাফারে প্রদর্শিত হবে।"
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14631,7 +14631,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17651,7 +17651,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "উন্নত অপশনসমূহ"
@@ -19981,11 +19981,11 @@
msgid "OSSO screen unblanking"
msgstr "OSSO পর্দা আনব্ল্যাঙ্কিং"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG-স্ক্রীণসেভার"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "XDG স্ক্রীণ সেভার ইনহিবিশন"
@@ -20238,19 +20238,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "\"বাজানো হচ্ছে\" টেলিপ্যাথি করা হবে (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "উল্লম্ব অবস্থান উল্টান"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "উপরের পরিবর্তে নিচে XOSD আউটপুট প্রদর্শন করা হবে।"
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "উল্লম্ব অফসেট"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20258,24 +20258,24 @@
"পর্দার সীমানা এবং প্রদর্শিত লেখের মধ্যবর্তী উল্লম্ব অফসেট (পিক্সেলে, পূর্বনির্ধারিত মান "
"৩০ পিক্সেলে)।"
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "ছায়া অফসেট"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "লেখ এবং ছায়ার মধ্যবর্তী অফসেট (পিক্সেলে, পূর্বনির্ধারিত মান ২ পিক্সেল)।"
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "XOSD আউটপুটে লেখ প্রদর্শনের জন্য ব্যবহৃত ফন্ট।"
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "XOSD আউটপুটে লেখ প্রদর্শনের জন্য ব্যবহৃত রং।"
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD ইন্টারফেস"
@@ -25113,11 +25113,11 @@
msgid "XVideo output (XCB)"
msgstr "XVideo আউটপুট (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "ভিডিও এক্সিলারেশন নেই"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/br.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/br.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: VideoLAN\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-09-29 13:52+0100\n"
"Last-Translator: Denis ARNAUD <denisarnuad@yahoo.fr>\n"
"Language-Team: Drouizig <drouizg@drouizig.org>\n"
@@ -3426,7 +3426,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Paouez"
@@ -4285,7 +4285,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7170,7 +7170,7 @@
msgstr "Hue an enankad video."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11770,7 +11770,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Ehan"
@@ -13501,7 +13501,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13590,7 +13590,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16432,7 +16432,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Dibarzhioù kempleshoc'h"
@@ -18653,11 +18653,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -18893,42 +18893,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Ketal XOSD"
@@ -23434,11 +23434,11 @@
msgid "XVideo output (XCB)"
msgstr "Ec'hankad XVideo (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ca.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ca.po
^
|
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: vlc 0.9.3-svn\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2009-06-08 19:50+0100\n"
"Last-Translator: Xenia Alba <xenia.alba@gmail.com>\n"
"Language-Team: Catalan <xenia_alba@hotmail.com>\n"
@@ -3920,7 +3920,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Atura"
@@ -4817,7 +4817,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7905,7 +7905,7 @@
msgstr "Especifica el matís de l'entrada de vídeo."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12876,7 +12876,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pausa"
@@ -14837,7 +14837,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14928,7 +14928,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -18121,7 +18121,7 @@
msgid " f/s"
msgstr "FPS"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
#, fuzzy
msgid "Advanced Options"
msgstr "Opcions avançades..."
@@ -20578,12 +20578,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "Inhabilita el protector de pantalla"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
#, fuzzy
msgid "XDG screen saver inhibition"
msgstr "Inhabilitador del protector de pantalla X"
@@ -20850,47 +20850,47 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Inverteix la posició vertical"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
#, fuzzy
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
"Mostra la sortida xosd al part inferior de la pantalla en comptes de la part "
"superior"
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Desplaçament vertical"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Desplaçament de l'ombra"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
#, fuzzy
msgid "Font used to display text in the XOSD output."
msgstr "Font utilitzada per visualitzar el text a la sortida xosd"
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
#, fuzzy
msgid "Color used to display text in the XOSD output."
msgstr "Font utilitzada per visualitzar el text a la sortida xosd"
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Interfície XOSD"
@@ -26070,12 +26070,12 @@
msgid "XVideo output (XCB)"
msgstr "Lloc per a la sortida de vídeo"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "No s'ha pogut carregar l'estat desat:"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/cgg.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/cgg.po
^
|
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-04-18 13:01+0200\n"
"Last-Translator: Florence Tushabe <tushabe@cit.mak.ac.ug>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3577,7 +3577,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Yemereza"
@@ -4504,7 +4504,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7487,7 +7487,7 @@
msgstr "Ahari ebiragyegyena filimu"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12259,7 +12259,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Yemerezaho kakye"
@@ -14057,7 +14057,7 @@
msgstr "Eiziina ryekishushani ekyokukozesa aha kukingiriza ekirakuma furemu."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14147,7 +14147,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17037,7 +17037,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Ebyokutooranamu ebyahaiguru"
@@ -19288,11 +19288,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19537,43 +19537,43 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "Gyemaho omwanya gwomutwe"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
#, fuzzy
msgid "XOSD interface"
msgstr "Ahu orikureebeera omu Mac"
@@ -24318,12 +24318,12 @@
msgid "XVideo output (XCB)"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Entekateeka zasinema tiizabiikwa"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ckb.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ckb.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc 1.0\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2009-06-07 18:52+0300\n"
"Last-Translator: Ara Qadir <arastein@gmail.com>\n"
"Language-Team: Kurdish (Sorani) <arastein@gmail.com>\n"
@@ -3477,7 +3477,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "وەستاندن"
@@ -4346,7 +4346,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7256,7 +7256,7 @@
msgstr ""
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11868,7 +11868,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "ڕاگرتن"
@@ -13611,7 +13611,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13701,7 +13701,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16564,7 +16564,7 @@
msgid " f/s"
msgstr "%u کب/چ"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "هەڵبژاردنە پەرەسەندووەکان"
@@ -18863,11 +18863,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19104,42 +19104,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr ""
@@ -23722,12 +23722,12 @@
msgid "XVideo output (XCB)"
msgstr "دەرەنجامی ڤیدیۆی X11"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "ڕێکخستنەکانی ڤیدیۆ پاشەکەوت نەکراوە"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/co.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/co.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2006-04-06 07:27+0000\n"
"Last-Translator: ghjuvan pasquinu <jpasquin.castellani@libertysurf.fr>\n"
"Language-Team: Corsican <co@li.org>\n"
@@ -3434,7 +3434,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr ""
@@ -4297,7 +4297,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7190,7 +7190,7 @@
msgstr ""
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11810,7 +11810,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr ""
@@ -13545,7 +13545,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13634,7 +13634,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16513,7 +16513,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr ""
@@ -18787,11 +18787,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19025,42 +19025,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr ""
@@ -23610,12 +23610,12 @@
msgid "XVideo output (XCB)"
msgstr "Audio"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Generale"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/cs.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/cs.po
^
|
@@ -12,7 +12,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-01-04 11:52Stedn\n"
"Last-Translator: Tomáš Chvátal <scarabeus@gentoo.org>\n"
"Language-Team: Czech <kde-czech-apps@lists.sourceforge.net>\n"
@@ -3713,7 +3713,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Zastavit"
@@ -4579,7 +4579,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7627,7 +7627,7 @@
msgstr "Odstín video vstupu."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12588,7 +12588,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pozastavit"
@@ -14519,7 +14519,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14609,7 +14609,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17559,7 +17559,7 @@
msgid " f/s"
msgstr " fps"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Pokročilá nastavení"
@@ -19938,12 +19938,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "Vypnout šetřič obrazovky"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
#, fuzzy
msgid "XDG screen saver inhibition"
msgstr "Spustit šetřič obrazovky"
@@ -20203,42 +20203,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"Nyní se přehrává\" pomocí MissionControl"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Převrátit vertikální pozici"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Svislé posunutí"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Posunutí stínu"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD rozhraní"
@@ -25175,12 +25175,12 @@
msgid "XVideo output (XCB)"
msgstr "Šířka video výstupu."
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Nastavení videa nebyla uložena"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/da.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/da.po
^
|
@@ -18,7 +18,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-01-20 17:42+0100\n"
"Last-Translator: Niels Fanøe <niels.f@noee.dk>\n"
"Language-Team: Danish <da@li.org>\n"
@@ -3934,7 +3934,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Stop"
@@ -4824,7 +4824,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7908,7 +7908,7 @@
msgstr "Indstil farve for video inddata"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12951,7 +12951,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pause"
@@ -14904,7 +14904,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14996,7 +14996,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17965,7 +17965,7 @@
msgid " f/s"
msgstr " fps"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Avancerede indstillinger"
@@ -20287,12 +20287,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "Slå skærmbeskytter fra"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
#, fuzzy
msgid "XDG screen saver inhibition"
msgstr "X-pauseskærm deaktiveret"
@@ -20540,45 +20540,45 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Vend lodret position"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
#, fuzzy
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Vis xosd i bunden af skærmen i stedet for i toppen"
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Lodret forskydning"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Skyggeforskydning"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
#, fuzzy
msgid "Font used to display text in the XOSD output."
msgstr "Skrifttype brugt til at vise tekst i xosd"
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
#, fuzzy
msgid "Color used to display text in the XOSD output."
msgstr "Skrifttype brugt til at vise tekst i xosd"
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD-grænseflade"
@@ -25561,12 +25561,12 @@
msgid "XVideo output (XCB)"
msgstr "Video udgangs modul"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Videoindstillinger ikke gemt"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/de.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/de.po
^
|
@@ -1,5 +1,5 @@
# German translation of VLC
-# (c) 2002-2010 the VideoLAN team
+# (c) 2002-2011 the VideoLAN team
# $Id$
#
# Thanks to Thomas Graf <tgr at reeler.org> for starting a translation in 2002.
@@ -16,8 +16,8 @@
msgstr ""
"Project-Id-Version: VLC 1.1.x\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
-"PO-Revision-Date: 2011-05-20 22:29+0100\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
+"PO-Revision-Date: 2011-10-06 21:25+0100\n"
"Last-Translator: Mario Siegmann <mario_siegmann@web.de>\n"
"Language-Team: German\n"
"Language: \n"
@@ -3941,7 +3941,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Stopp"
@@ -4815,7 +4815,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7882,7 +7882,7 @@
msgstr "Farbton des Video-Inputs."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12960,7 +12960,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pause"
@@ -14800,7 +14800,7 @@
"angezeigt."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14889,7 +14889,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -15495,17 +15495,19 @@
#: modules/gui/macosx/intf.m:2857
msgid "Relaunch required"
-msgstr ""
+msgstr "Neustart erforderlich"
#: modules/gui/macosx/intf.m:2858
msgid ""
"To make sure that VLC no longer listens to your media key events, it needs "
"to be restarted."
msgstr ""
+"Um sicher zu gehen, dass der VLC nicht länger auf Ereignisse der "
+"Medientasten wartet, ist ein Neustart notwendig."
#: modules/gui/macosx/intf.m:2859
msgid "Relaunch VLC"
-msgstr ""
+msgstr "VLC Neustarten"
#: modules/gui/macosx/macosx.m:53
msgid "Video device"
@@ -16370,8 +16372,7 @@
#: modules/gui/macosx/simple_prefs.m:275
msgid "Enable Growl notifications (on playlist item change)"
-msgstr ""
-"Growl-Benachrichtigungen aktivieren (nach Wechsel des Wiedergabeobjekts)"
+msgstr "Growl-Nachrichten aktivieren (nach Wechsel des Wiedergabeobjekts)"
#: modules/gui/macosx/simple_prefs.m:278
msgid "Default Encoding"
@@ -17941,7 +17942,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Erweiterte Optionen"
@@ -20295,11 +20296,11 @@
msgid "OSSO screen unblanking"
msgstr "OSSO-Bildschirm unblanking"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG-Bildschirmschoner"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "XDG-Bildschirmschoner sperren"
@@ -20555,19 +20556,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"Spielt gerade\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Vertikale Position vertauschen"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Die XOSD-Ausgabe auf dem Bildschirm unten statt oben anzeigen."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Vertikaler Versatz"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20575,27 +20576,27 @@
"Vertikaler Versatz zwischen dem Bildschirmrand und dem angezeigten Text (in "
"Pixeln, Standardwert: 30 Pixel)"
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Schattenversatz"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"Versatz zwischen Text und dessen Schatten (in Pixel, Standard ist 2 Pixel)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
"Die Schrift, die zur Anzeige des Textes in der XOSD-Ausgabe benutzt wird."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
"Die Farbe, die zur Anzeige des Textes in der XOSD-Ausgabe benutzt wird."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD-Interface"
@@ -25594,11 +25595,11 @@
msgid "XVideo output (XCB)"
msgstr "XVideoausgabe (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Videobeschleunigung nicht verfügbar"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
@@ -25632,9 +25633,9 @@
"requires YV12/I420 fourcc. By default vlc writes the fourcc of the picture "
"frame into the output destination."
msgstr ""
-"Der YUV4MPEG2 Header ist kompatibel mit der mplayer yuv Video Ausgabe und "
-"benötigt YV12/I420 fourcc. Standardmäßig schreibt VLC den fourcc des Picture "
-"Frames in das Ausgabeziel. "
+"Der YUV4MPEG2-Header ist kompatibel mit der mplayer yuv Video-Ausgabe und "
+"benötigt YV12/I420 fourcc. Standardmäßig schreibt VLC den fourcc des Picture-"
+"Frames in das Ausgabeziel."
#: modules/video_output/yuv.c:59
msgid "YUV output"
|
|
Changed |
vlc-1.1.13.tar.bz2/po/el.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/el.po
^
|
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-10-29 18:24+0200\n"
"Last-Translator: Manolis Stefanis <mstefanis@hotmail.com>\n"
"Language-Team: Greek <nls@tux.hellug.gr>\n"
@@ -3877,7 +3877,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Διακοπή"
@@ -4769,7 +4769,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7786,7 +7786,7 @@
msgstr "Χροιά της εισόδου βίντεο."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12507,7 +12507,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Παύση"
@@ -14291,7 +14291,7 @@
# #-#-#-#-# screem-el.po (screem 1.0) #-#-#-#-#
#
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14415,7 +14415,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17456,7 +17456,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Επιλογές για Προχωρημένους"
@@ -19809,11 +19809,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "Προφύλαξη οθόνης XDG"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "Παρεμπόδιση προφύλαξης οθόνης XDG"
@@ -20049,19 +20049,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Υπηρεσία Telepathy \"Αναπαράγεται Τώρα\" (Έλεγχος Αποστολής)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Αναστροφή κατακόρυφης θέσης"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Εμφάνιση εξόδου XOSD στο κάτω μέρος της οθόνης, αντί στο επάνω."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Κάθετη απόκλιση"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20069,26 +20069,26 @@
"Κάθετη απόκλιση μεταξύ του ορίου της οθόνης και του εμφανιζόμενου κειμένου "
"(σε pixel, προεπιλογή είναι τα 30 pixel)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Απόκλιση σκιάς"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"Απόκλιση μεταξύ του κειμένου και της σκιάς (σε pixel, προεπιλογή είναι τα 2 "
"pixel)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Διεπαφή XOSD"
@@ -24706,11 +24706,11 @@
msgid "XVideo output (XCB)"
msgstr "Έξοδος XVideo (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Η επιτάχυνση του βίντεο δεν είναι διαθέσιμη."
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/en_GB.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/en_GB.po
^
|
@@ -20,7 +20,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2002-04-22 09:56+0200\n"
"Last-Translator: Sam Hocevar <sam@zoy.org>\n"
"Language-Team: \n"
@@ -3913,7 +3913,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr ""
@@ -4858,7 +4858,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
#, fuzzy
@@ -8054,7 +8054,7 @@
msgstr "colour ASCII art video output"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -13140,7 +13140,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
#, fuzzy
msgid "Pause"
msgstr "Date"
@@ -15035,7 +15035,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -15129,7 +15129,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -18335,7 +18335,7 @@
msgid " f/s"
msgstr " "
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
#, fuzzy
msgid "Advanced Options"
msgstr "Advanced options"
@@ -20854,11 +20854,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -21112,44 +21112,44 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "Options"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
#, fuzzy
msgid "Shadow offset"
msgstr "Random Off"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD interface"
@@ -26197,12 +26197,12 @@
msgid "XVideo output (XCB)"
msgstr "Video output URL"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Video settings"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/es.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/es.po
^
|
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-01-14 19:36+0100\n"
"Last-Translator: pico.dev <pico.dev@gmail.com>\n"
"Language-Team: \n"
@@ -3903,7 +3903,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Detener"
@@ -4776,7 +4776,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7788,7 +7788,7 @@
msgstr "Matiz de la entrada de vídeo."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12820,7 +12820,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pausa"
@@ -14652,7 +14652,7 @@
"envoltorio."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14742,7 +14742,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17767,7 +17767,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Opciones avanzadas"
@@ -20092,11 +20092,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "Salvapantallas XDG"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "Inhibidor de salvapantallas XDG"
@@ -20353,19 +20353,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy «Reproduciendo ahora» (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Voltear posición vertical"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Mostrar salida XOSD abajo en la pantalla en vez de arriba."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Desplazamiento vertical"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20373,26 +20373,26 @@
"Ajuste vertical entre el borde de la pantalla y el texto mostrado (en "
"píxeles, por defecto a 30 píxeles)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Desplazamiento de sombra"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"Desplazamiento entre el texto y la sombra (en píxeles, por defecto a 2 "
"píxeles)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Fuente usada para mostrar texto en la salida XOSD."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Color usado para mostrar texto en la salida XOSD."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Interfaz XOSD"
@@ -25307,11 +25307,11 @@
msgid "XVideo output (XCB)"
msgstr "Salida XVideo (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Aceleración de vídeo no disponible"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/et.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/et.po
^
|
@@ -5,15 +5,15 @@
# This file is distributed under the same license as the VLC package.
#
# Eero <eerove gmail com> 2009.
-# Mihkel <turakas gmail com> 2010 - 2011
+# Mihkel <turakas gmail com> 2010 - 2011.
# Mattias Põldaru <mahfiaz gmail com> 2010.
#
msgid ""
msgstr ""
-"Project-Id-Version: vlc 1.1.10\n"
+"Project-Id-Version: vlc 1.1.12\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
-"PO-Revision-Date: 2011-05-20 13:40+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
+"PO-Revision-Date: 2011-10-09 20:32+0300\n"
"Last-Translator: mihkel <turakas gmail com>\n"
"Language-Team: Estonian\n"
"Language: et\n"
@@ -3832,7 +3832,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Peata"
@@ -4699,7 +4699,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7675,7 +7675,7 @@
msgstr "Videosisendi värvitoon"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -8161,7 +8161,7 @@
#: modules/access/vcdx/info.c:65
msgid "Preparer"
-msgstr "Preparer"
+msgstr ""
#: modules/access/vcdx/info.c:66
msgid "Vol #"
@@ -9687,7 +9687,7 @@
"on quality. However it provides a big speedup for high definition streams."
msgstr ""
"Kordustefiltri vahelejätmisel (aka deblokkimisel) on kahjulik efekt "
-"kvaliteedile. Kuigi kõrge eraldusvõimega voogudel on tuntav kiirusevõit."
+"kvaliteedile. Kuigi kõrge eraldusvõimega voogudel on kiirusevõit tuntav."
#: modules/codec/avcodec/avcodec.h:138
msgid "Hardware decoding"
@@ -12085,11 +12085,11 @@
#: modules/codec/x264.c:377
msgid "Access unit delimiters"
-msgstr ""
+msgstr "Ligipääs ühiku eraldajatele"
#: modules/codec/x264.c:378
msgid "Generate access unit delimiter NAL units."
-msgstr ""
+msgstr "Genereeri ligipääsu ühiku eraldaja NAL ühikud"
#: modules/codec/x264.c:380
msgid "Framecount to use on frametype lookahead"
@@ -12486,17 +12486,17 @@
#: modules/control/motion.c:78
msgid "motion"
-msgstr "Liikumine"
+msgstr "liikumine"
#: modules/control/motion.c:81
msgid "motion control interface"
-msgstr "Liikumise kontrollliides"
+msgstr "liikumise kontrolli liides"
#: modules/control/motion.c:82
msgid ""
"Use HDAPS, AMS, APPLESMC or UNIMOTION motion sensors to rotate the video"
msgstr ""
-"Kasuta HDAPS, AMS, APPLESMC või UNIMOTION liikumise sensoreid video "
+"Kasuta HDAPS, AMS, APPLESMC või UNIMOTION liikumise seonsoreid video "
"pööramiseks"
#: modules/control/netsync.c:57
@@ -12594,7 +12594,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pausi"
@@ -14383,7 +14383,7 @@
msgstr "Kõik renderdatud pildid a tekst kuvatakse ülekatte kaadripuhvris."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14404,7 +14404,7 @@
#: modules/gui/macosx/about.m:103
msgid "Compiled by %@ with %@"
-msgstr "Kompileeris %@ võtmetega %@"
+msgstr "Kompileerinud %@, võtmetega %@"
#: modules/gui/macosx/about.m:111
msgid "VLC was brought to you by:"
@@ -14472,7 +14472,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -15068,7 +15068,7 @@
#: modules/gui/macosx/intf.m:2857
msgid "Relaunch required"
-msgstr ""
+msgstr "Vajalik taaskäivtus"
#: modules/gui/macosx/intf.m:2858
msgid ""
@@ -15078,7 +15078,7 @@
#: modules/gui/macosx/intf.m:2859
msgid "Relaunch VLC"
-msgstr ""
+msgstr "Taaskäivita VLC"
#: modules/gui/macosx/macosx.m:53
msgid "Video device"
@@ -15928,7 +15928,7 @@
#: modules/gui/macosx/simple_prefs.m:275
msgid "Enable Growl notifications (on playlist item change)"
-msgstr "Võimallda Growl teated (esitusloendi kirje muutmisel)"
+msgstr "Võimalda Growl teated (esitusloendi kirje muutmisel)"
#: modules/gui/macosx/simple_prefs.m:278
msgid "Default Encoding"
@@ -16594,8 +16594,7 @@
"Enter either a valid path or use the \"Choose...\" button to select a "
"location."
msgstr ""
-"Sisesta kas korrektne asukoht või kasuta \"Vali...\" nuppu asukoha "
-"määramiseks."
+"Sisesta kas õige asukoht või kasuta \"Valimine...\" nuppu asukoha valimiseks."
#: modules/gui/macosx/wizard.m:1125
msgid "No file selected"
@@ -16608,8 +16607,7 @@
#: modules/gui/macosx/wizard.m:1129
msgid ""
"Enter either a valid path or use the \"Choose\" button to select a location."
-msgstr ""
-"Sisesta kas korrektne asukoht või kasuta \"Vali\" nuppu asukoha määramiseks."
+msgstr "Sisesta kas õige asukoht või kasuta \"Vali\" nuppu asukoha valimiseks."
#: modules/gui/macosx/wizard.m:1334
msgid "Finish"
@@ -16684,11 +16682,6 @@
"Note that this requires much more CPU power than simple transcoding or "
"streaming."
msgstr ""
-"Kui see valik on võimaldatud, siis voogu esitatakse ja transkodeeritakse/"
-"voogedastatakse.\n"
-"\n"
-"Märkus. See nõuab palju rohkem CPU võimsust, kui lihtne transkodeerimine või "
-"voogedastamine."
#: modules/gui/macosx_dialog_provider/dialogProvider.m:85
msgid "Hide no user action dialogs"
@@ -17455,7 +17448,7 @@
msgid " f/s"
msgstr " k/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Täpsemad valikud"
@@ -19126,7 +19119,7 @@
#: modules/gui/skins2/src/skin_main.cpp:550
msgid "Display video in a skinned window if any"
-msgstr "Võimalusel kuva video rüüga aknas"
+msgstr "Kuva video võimalusel rüüga aknas"
#: modules/gui/skins2/src/skin_main.cpp:552
msgid ""
@@ -19690,8 +19683,8 @@
"This renders the font using \"paletized YUV\". This option is only needed if "
"you want to encode into DVB subtitles"
msgstr ""
-"See renderdab fonte kasutades \"paletitud YUV-d\". Seda valikut kasutatakse "
-"ainult siis, kui soovid kodeerida DVB subtiitritesse"
+"See renderdab fonte kasutades \\\"paletitud YUV-d\\\". Seda valikut "
+"kasutatakse ainult siis, kui soovid kodeerida DVB subtiitritesse"
#: modules/misc/freetype.c:135
msgid "Font Effect"
@@ -19773,11 +19766,11 @@
msgid "OSSO screen unblanking"
msgstr "OSSO ekraani tühjendamise keelaja"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG-ekraanisäästja"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "XDG ekraanisäästja tõkestamine"
@@ -20030,19 +20023,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"Hetkel mängib\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Peegelda vertikaalne positsioon"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Kuva XOSD väljund ekraani all servas, mitte üleval."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Vertikaalne nihe"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20050,24 +20043,24 @@
"Vertikaalne nihe ekraani ääre ja kuvatud teksti vahel pikslites. Vaikimisi "
"30 pikslit."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Varju nihe"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "Nihe teksti ja varju vahel (pikslites, vaikimisi 2 pikslit)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "XOSD väljundil kasutatav teksti font."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "XOSD väljundil kasutatav teksti värv."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD liides"
@@ -20097,7 +20090,7 @@
#: modules/misc/quartztext.c:81
msgid "Name for the font you want to use"
-msgstr "Soovitud fondi nimi"
+msgstr "Fondi nimi, mida soovid kasutada"
#: modules/misc/quartztext.c:107
msgid "Text renderer for Mac"
@@ -20382,8 +20375,8 @@
"Assign a program number to each PMT. This requires \"Set PID to ID of ES\" "
"to be enabled."
msgstr ""
-"Omista programmi number igale PMT-le. Nõuab, et \"Määra ES-i PID ID-le\" "
-"oleks võimaldatud."
+"Määra igale PMT-le programmi number. See nõuab, et \"Määra ES-i ID-le PID\" "
+"oleks lubatud."
#: modules/mux/mpeg/ts.c:116
msgid "Mux PMT (requires --sout-ts-es-id-pid)"
@@ -20394,8 +20387,8 @@
"Define the pids to add to each pmt. This requires \"Set PID to ID of ES\" to "
"be enabled."
msgstr ""
-"Määra pid-id, mida lisada igale pmt-le. Nõuab, et \"Määra ES-i PID ID-le\" "
-"oleks võimaldatud."
+"Defineeri pid-id lisamaks igale pmt-le. See nõuab, et \"Määra ES-i ID-le PID"
+"\" oleks lubatud."
#: modules/mux/mpeg/ts.c:120
msgid "SDT Descriptors (requires --sout-ts-es-id-pid)"
@@ -20411,7 +20404,7 @@
#: modules/mux/mpeg/ts.c:124
msgid "Set PID to ID of ES"
-msgstr "Määra ES-i PID ID-le"
+msgstr "Määra ES-i ID-le PID"
#: modules/mux/mpeg/ts.c:125
msgid ""
@@ -20433,7 +20426,7 @@
#: modules/mux/mpeg/ts.c:133
msgid "Shaping delay (ms)"
-msgstr ""
+msgstr "Vormimise viivitus (ms)"
#: modules/mux/mpeg/ts.c:134
msgid ""
@@ -22371,11 +22364,11 @@
#: modules/video_filter/atmo/atmo.cpp:498
msgid "Settings for the built-in Live Video Processor only"
-msgstr "Seaded ainnult sisseehitatud Live Video Protsessorile"
+msgstr "Seaded ainult sisseehitatud Live Video Protsessorile"
#: modules/video_filter/atmo/atmo.cpp:535
msgid "Change channel assignment (fixes wrong wiring)"
-msgstr "Muuda kanali määratlust (paranda valet kaabeldust)"
+msgstr "Muuda kanali määratlust (paranda vale kaabelduse)"
#: modules/video_filter/atmo/atmo.cpp:568
msgid "Adjust the white light to your LED stripes"
@@ -22394,7 +22387,7 @@
"Value of the audio level of each channels between 0 and 1Each level should "
"be separated with ':'."
msgstr ""
-"Iga audioi kanali helinivoo väärtus vahemikus 0 ja 1. Iga nivoo peaks olema "
+"Iga audio kanali helinivoo väärtus vahemikus 0 ja 1. Iga nivoo peaks olema "
"eraldatud ':'."
#: modules/video_filter/audiobargraph_v.c:52
@@ -22512,15 +22505,15 @@
#: modules/video_filter/blend.c:44
msgid "Video pictures blending"
-msgstr "Videopiltide sulandamine"
+msgstr "Videopiltide sulamine"
#: modules/video_filter/blendbench.c:51
msgid "Number of time to blend"
-msgstr "Mitu korda sulandada"
+msgstr "Mitu korda sulada"
#: modules/video_filter/blendbench.c:52
msgid "The number of time the blend will be performed"
-msgstr "Mitu korda sulandamist teostatakse"
+msgstr "Mitu korda sulamist teostatakse"
#: modules/video_filter/blendbench.c:54
msgid "Alpha of the blended image"
@@ -22536,7 +22529,7 @@
#: modules/video_filter/blendbench.c:58
msgid "The image which will be used to blend onto"
-msgstr "Pilt, mida kastatakse sisse sulandumiseks"
+msgstr "Pilt, mida kasutatakse sisse sulandumiseks"
#: modules/video_filter/blendbench.c:60
msgid "Chroma for the base image"
@@ -22775,7 +22768,7 @@
#: modules/video_filter/crop.c:82
msgid "Ratio max (x 1000)"
-msgstr ""
+msgstr "Maksimaalne külgedesuhe (x 1000)"
#: modules/video_filter/crop.c:83
msgid ""
@@ -22850,7 +22843,7 @@
#: modules/video_filter/crop.c:380 modules/video_filter/crop.c:471
msgid "VLC could not open the video output module."
-msgstr "VLC ei suutnud avada videoväljuni moodulit."
+msgstr "VLC ei suuda avada videoväljundi moodulit."
#: modules/video_filter/croppadd.c:46
msgid "Pixels to crop from top"
@@ -22870,7 +22863,7 @@
#: modules/video_filter/croppadd.c:52
msgid "Pixels to crop from left"
-msgstr "Vasakult kärbitatavate pikslite arv"
+msgstr "Vasakult kärbitavate pikslite arv"
#: modules/video_filter/croppadd.c:54
msgid "Number of pixels to crop from the left of the image."
@@ -22959,7 +22952,7 @@
#: modules/video_filter/dynamicoverlay/dynamicoverlay.c:64
msgid "FIFO which will be written to for responses"
-msgstr "FIFO, mida kirjutatakse vastu"
+msgstr "FIFO, mida kirjutatakse vastustes"
#: modules/video_filter/dynamicoverlay/dynamicoverlay.c:67
msgid "Dynamic video overlay"
@@ -23044,7 +23037,7 @@
#: modules/video_filter/gradient.c:65
msgid "Gradient image type"
-msgstr "Ülemineku pildi tüüp"
+msgstr "Gradiendi pildi tüüp"
#: modules/video_filter/gradient.c:66
msgid ""
@@ -23059,7 +23052,7 @@
#: modules/video_filter/gradient.c:70
msgid "Apply cartoon effect. It is only used by \"gradient\" and \"edge\"."
-msgstr "Rakenda multika efekt. Seda kasutavad ainult \"üleminek\" ja \"serv\"."
+msgstr "Rakenda multika efekt. Seda kasutavad ainult \"gradient\" ja \"edge\"."
#: modules/video_filter/gradient.c:73
msgid "Apply color gradient or edge detection effects"
@@ -24755,11 +24748,11 @@
msgid "XVideo output (XCB)"
msgstr "XVideo väljund (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Videokiirendus pole saadaval"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
@@ -24792,7 +24785,7 @@
"requires YV12/I420 fourcc. By default vlc writes the fourcc of the picture "
"frame into the output destination."
msgstr ""
-"YUV4MPEG2 päis on mplayer-i yuv video väljundiga ühildus ja nõuab YV12/I420 "
+"YUV4MPEG2 päis on mplayer-i yuv video väljundiga ühilduv ja nõuab YV12/I420 "
"fourcc-d. Vaikimisi kirjutab vlc pildikaadri fourcc määratud väljundisse."
#: modules/video_output/yuv.c:59
@@ -25936,6 +25929,14 @@
msgid "Media Manager List"
msgstr "Meediahalduri loend"
+#, fuzzy
+#~ msgid ""
+#~ "This is the relative default size of the fonts that will be rendered on "
+#~ "the video. If absolute font size is set, relative size will be overriden."
+#~ msgstr ""
+#~ "See on videol rendertatava teksti fondi suhteline suurus. Kui absoluutne "
+#~ "fondi suurus on määratud, siis suhteline suurus tühistatakse."
+
#~ msgid "Automate picture coding mode"
#~ msgstr "Automatiseeri pildi kodeerimise režiimi"
@@ -25943,19 +25944,12 @@
#~ "Use the input picture to determine how to code it - interlaced or "
#~ "progressive"
#~ msgstr ""
-#~ "Kasuta sisndpilti otsustamaks, kuidas teda kodeerida - ülerealaotus või "
-#~ "progressiivne"
+#~ "Kasuta sisendpilti otsustamaks, kuidas teda kodeerida - ülerea või "
+#~ "progressivselt"
#~ msgid "Dirac video encoder using libschroedinger"
#~ msgstr "Dirac video enkooder kasutades libschroedinger teeki"
-#~ msgid ""
-#~ "This is the relative default size of the fonts that will be rendered on "
-#~ "the video. If absolute font size is set, relative size will be overriden."
-#~ msgstr ""
-#~ "See on videol rendetatava teksti fondi suhteline suurus. Kui absoluutne "
-#~ "fondi suurus on määraud, siis suhteline suurus tühistatakse."
-
#~ msgid "Use media key control when VLC is in background"
#~ msgstr "Kasuta meedia juhtklahve, kui VLC on taustal"
|
|
Changed |
vlc-1.1.13.tar.bz2/po/eu.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/eu.po
^
|
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: VLC 1.1.10 (Basque Translation)\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-09-28 18:58+0100\n"
"Last-Translator: Xabier Aramendi <azpidatziak@gmail.com>\n"
"Language-Team: (EUS_Xabier Aramendi) <azpidatziak@gmail.com>\n"
@@ -3891,7 +3891,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Gelditu"
@@ -4762,7 +4762,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7803,7 +7803,7 @@
msgstr "Bideo sarrera nabardura."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12844,7 +12844,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pausatu"
@@ -14665,7 +14665,7 @@
"dira."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14754,7 +14754,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17786,7 +17786,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Aukera Aurreratuak"
@@ -20123,11 +20123,11 @@
msgid "OSSO screen unblanking"
msgstr "OSSO leihoa ezhusten"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG-leihobabeslea"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "XDG leihobabesle eragozpena"
@@ -20382,19 +20382,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"Orain Irakurtzen\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Itzulikatu zutikako kokapena"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Erakutsi XOSD irteera leihoaren beheren gorenen ordez."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Zutikako zehazpena"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20402,25 +20402,25 @@
"Zutikako zehazpena leiho hertzaren eta erakutsitako idazkiaren artean "
"(pixeletan, berezkoa 30 pixel)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Itzal zehazpena"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"Zehaztapena idazkiaren eta itzalaren artean (pixeletan, berezkoa 2 pixel)"
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "XOSD irteeran idazkia erakusteko erabilitako hizkia"
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "XOSD irteeran idazkia erakusteko erabilitako margoa."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD interfazea"
@@ -25324,11 +25324,11 @@
msgid "XVideo output (XCB)"
msgstr "XBideo irteera (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Bideo bizkorpena ez dago eskuragarri"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/fa.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/fa.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc 0.8.6b1\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2008-12-08 12:41+0330\n"
"Last-Translator: SalarSoft <salarsoftwares@gmail.com>\n"
"Language-Team: Persian\n"
@@ -3740,7 +3740,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "توقف"
@@ -4616,7 +4616,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7698,7 +7698,7 @@
msgstr "فام ورودی ویدئو."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12647,7 +12647,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "مکث"
@@ -14518,7 +14518,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14611,7 +14611,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17705,7 +17705,7 @@
msgid " f/s"
msgstr "%Id کیلوبیت بر ثانیه"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
#, fuzzy
msgid "Advanced Options"
msgstr "گزینههای پیشرفته"
@@ -20172,12 +20172,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "از کار انداختن محافظ صفخهٔ نمایش"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -20427,44 +20427,44 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "پشت و رو کردن عمودی"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
#, fuzzy
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "پنجرهٔ ویدئو همیشه روی دیگر پنجرهها قرار بگیرد."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "فاصلهٔ عمودی"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "فاصلهٔ سایه"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
#, fuzzy
msgid "XOSD interface"
msgstr "نمایش واسط"
@@ -25432,12 +25432,12 @@
msgid "XVideo output (XCB)"
msgstr "نشانی خروجی ویدئو"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "تنظیمات ویدئو"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ff.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ff.po
^
|
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-04-30 15:26+0200\n"
"Last-Translator: Ibrahima SARR <ibrahima.sarr@pulaagu.com>\n"
"Language-Team: FULA LOCALIZATION\n"
@@ -3602,7 +3602,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Dartin"
@@ -4537,7 +4537,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7543,7 +7543,7 @@
msgstr "Baɗte ceɗe widewoo ɗee"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12357,7 +12357,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Sabbo"
@@ -14164,7 +14164,7 @@
msgstr "Innde fiilde natal kuutorteengal e pawtorol wuufre kaarewol."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14254,7 +14254,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17134,7 +17134,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Cuɓe Oeeɓtore"
@@ -19389,11 +19389,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19641,43 +19641,43 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "Forsu dartorde lestiite"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
#, fuzzy
msgid "XOSD interface"
msgstr "Daartorde Qt"
@@ -24484,12 +24484,12 @@
msgid "XVideo output (XCB)"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Teelte Widewoo ndanndaaka"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/fi.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/fi.po
^
|
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: vlc 1.0.0\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-01-23 21:42+0200\n"
"Last-Translator: Juha Jeronen <juha.jeronen@jyu.fi>\n"
"Language-Team: Finnish <fi@li.org>\n"
@@ -3944,7 +3944,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Pysäytä"
@@ -4826,7 +4826,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7853,7 +7853,7 @@
msgstr "Videotulon värisävy (hue)."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12979,7 +12979,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Tauko"
@@ -14844,7 +14844,7 @@
"Kaikki renderöidyt kuvat ja tekstit näytetään ylipiirron framebufferissa."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14934,7 +14934,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17982,7 +17982,7 @@
msgid " f/s"
msgstr " fps"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Lisäasetukset"
@@ -20327,11 +20327,11 @@
msgid "OSSO screen unblanking"
msgstr "OSSO -näytöntyhjennyksenestin"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG-näytönsäästäjä"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "XDG-näytönsäästäjän esto"
@@ -20589,19 +20589,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"Nyt soimassa\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Käännä pystysijainti"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Näytä XOSD näytön alareunassa yläreunan sijaan."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Pystysuunnan siirtymä"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20609,25 +20609,25 @@
"Pystysiirtymä näytön reunan ja näytettävän tekstin välillä (pikseleinä, "
"oletusarvoisesti 30 pikseliä)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Varjon siirtymä"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"Siirtymä tekstin ja varjon välillä (pikseleinä, oletusarvoisesti 2 pikseliä)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Fontti, jota XOSD käyttää tekstin näyttämiseen."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "XOSD:n tekstin väri."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD-käyttöliittymä"
@@ -25595,11 +25595,11 @@
msgid "XVideo output (XCB)"
msgstr "XVideo-lähtö (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Videokiihdytystä ei saatavilla"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/fr.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/fr.po
^
|
@@ -13,7 +13,7 @@
msgstr ""
"Project-Id-Version: fr\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-06-07 18:46+0100\n"
"Last-Translator: Éric Lassauge <lassauge {AT} users {dot} sourceforge {dot} "
"net>\n"
@@ -3909,7 +3909,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Stop"
@@ -4831,7 +4831,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7838,7 +7838,7 @@
msgstr "Teinte de l'image."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12845,7 +12845,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pause"
@@ -14668,7 +14668,7 @@
"être affichés."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14757,7 +14757,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17791,7 +17791,7 @@
msgid " f/s"
msgstr " ips"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Options avancées"
@@ -20131,11 +20131,11 @@
msgid "OSSO screen unblanking"
msgstr "Économiseur d'écran OSSO"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "Économiseur d'écran XDG"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "Inhiber l'économiseur d'écran XDG"
@@ -20388,19 +20388,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Inverser la position verticale"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Affiche la sortie xosd au bas de l'écran plutôt qu'en haut."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Décalage vertical"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20408,26 +20408,26 @@
"Décalage verticale entre la bordure de l'écran et le texte, en pixels. La "
"valeur par défaut est de 30 pixels."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Décalage de l'ombre"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"Décalage entre le texte et l'ombre, en pixels. La valeur par défaut est de 2 "
"pixels."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Police utilisée pour afficher le texte dans la sortie xosd."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Couleur utilisée pour afficher le texte dans la sortie xosd."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Interface XOSD"
@@ -25252,11 +25252,11 @@
msgid "XVideo output (XCB)"
msgstr "Sortie vidéo « Xvideo (XCB) »"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "L'accélération vidéo n'est pas disponible"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/fur.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/fur.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2006-10-22 20:42+0000\n"
"Last-Translator: A. Decorte <klenje@adriacom.it>\n"
"Language-Team: Friulian <fur@li.org>\n"
@@ -3563,7 +3563,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Ferme"
@@ -4435,7 +4435,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7484,7 +7484,7 @@
msgstr "Filtris audio"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12422,7 +12422,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pause"
@@ -14268,7 +14268,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14360,7 +14360,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17489,7 +17489,7 @@
msgid " f/s"
msgstr "fps"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
#, fuzzy
msgid "Advanced Options"
msgstr "Opzions avanzadis"
@@ -19978,12 +19978,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "Disative il salve-visôr"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
#, fuzzy
msgid "XDG screen saver inhibition"
msgstr "Disativatôr salve visôr X"
@@ -20242,46 +20242,46 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "Posizion dal test"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
#, fuzzy
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Met simpri il barcon dal video parsore di chei altris barcons."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
#, fuzzy
msgid "Vertical offset"
msgstr "Verticâl"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
#, fuzzy
msgid "Shadow offset"
msgstr "Casuâl no atîf"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Caratar doprât pal test mostrât intal output XOSD."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Colôr doprât pal test mostrât intal output XOSD."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Interface XOSD"
@@ -25227,12 +25227,12 @@
msgid "XVideo output (XCB)"
msgstr "Tai dal video"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Impostanzions pal video"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ga.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ga.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc 1.1.1\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-05-23 03:13-0000\n"
"Last-Translator: Seanán Ó Coistín <seananoc@gmail.com>\n"
"Language-Team: Irish\n"
@@ -3484,7 +3484,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Stad"
@@ -4344,7 +4344,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7221,7 +7221,7 @@
msgstr "Fordhath an ionchuir fhíseáin."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11816,7 +11816,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Cuir ar sos"
@@ -13550,7 +13550,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13639,7 +13639,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16516,7 +16516,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Ardroghanna"
@@ -18746,11 +18746,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -18984,42 +18984,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Smeach an suíomh ingearach"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Seach-chur ingearach"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Comhéadan XOSD"
@@ -23516,11 +23516,11 @@
msgid "XVideo output (XCB)"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/gl.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/gl.po
^
|
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: vlc 1.1.10\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-05-25 21:26+0200\n"
"Last-Translator: Gonçalo Cordeiro <gzcordeiro@gmail.com>\n"
"Language-Team: Galician\n"
@@ -3934,7 +3934,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Deter"
@@ -4812,7 +4812,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7874,7 +7874,7 @@
msgstr "Matiz da saída de vídeo."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -13006,7 +13006,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "En pausa"
@@ -14856,7 +14856,7 @@
"superposición."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14945,7 +14945,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17979,7 +17979,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Opcións avanzadas"
@@ -20320,11 +20320,11 @@
msgid "OSSO screen unblanking"
msgstr "Volver da pantalla en branco OSSO"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "Protector de pantalla XDG"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "Inhibición do protector de pantalla XDG"
@@ -20581,20 +20581,20 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "«Reproducindo agora» de Telepathy (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Dar a volta en posición vertical"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
"Mostrar a saída XOSD na parte inferior da pantalla en vez de na superior."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Desprazamento vertical"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20602,26 +20602,26 @@
"Desprazamento vertical entre o bordo da pantalla e o texto que se mostra (en "
"píxeles, a opción predeterminada é 30 píxeles)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Desprazamento da sombra"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"Desprazamento entre o texto e a sombra (en píxeles, a opción predeterminada "
"é 2 píxeles)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Tipo de letra usado para mostrar o texto na saída XOSD."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Cor usada para mostrar o texto na saída XOSD."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Interface XOSD"
@@ -25584,11 +25584,11 @@
msgid "XVideo output (XCB)"
msgstr " Saída XVideo (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "A aceleración de vídeo non está dispoñíbel"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/he.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/he.po
^
|
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-08-14 18:20+0200\n"
"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n"
"Language-Team: Hebrew <he@li.org>\n"
@@ -3551,7 +3551,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "עצור"
@@ -4415,7 +4415,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7407,7 +7407,7 @@
msgstr "קבע את גוון קלט הוידאו"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12309,7 +12309,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "השהה"
@@ -14152,7 +14152,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14245,7 +14245,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17207,7 +17207,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "אפשרויות מתקדמות"
@@ -19484,12 +19484,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "מנע שומר מסך"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19742,45 +19742,45 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "הפוך אנכית"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
#, fuzzy
msgid "Vertical offset"
msgstr "מטאל"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
#, fuzzy
msgid "Shadow offset"
msgstr "לא אקראי"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
#, fuzzy
msgid "XOSD interface"
msgstr "הצג ממשק"
@@ -24619,12 +24619,12 @@
msgid "XVideo output (XCB)"
msgstr "מודול פלט הוידאו"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "הגדרות וידאו"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/hi.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/hi.po
^
|
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2006-02-24 06:09+0000\n"
"Last-Translator: viyyer <viyyer@sarai.net>\n"
"Language-Team: Hindi\n"
@@ -3497,7 +3497,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "रोकें"
@@ -4363,7 +4363,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7350,7 +7350,7 @@
msgstr "ऑडियो फिल्टेर"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12150,7 +12150,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
#, fuzzy
msgid "Pause"
msgstr "तारीख़"
@@ -13964,7 +13964,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14058,7 +14058,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17141,7 +17141,7 @@
msgid " f/s"
msgstr " "
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
#, fuzzy
msgid "Advanced Options"
msgstr "ऑडियो फिल्टेर"
@@ -19597,11 +19597,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19848,43 +19848,43 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "साफ्टवेयर के बारेे में..."
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
#, fuzzy
msgid "XOSD interface"
msgstr "इंटरफ़ेस"
@@ -24668,14 +24668,14 @@
"वीडियो\n"
"वीडियो सेट्टिं्ग"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr ""
"वीडियो\n"
"वीडियो सेट्टिं्ग"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/hr.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/hr.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc 1.0.0\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2009-09-19 16:53+0100\n"
"Last-Translator: Dominko Aždajić <domazd@mail.ru>\n"
"Language-Team: Croatian\n"
@@ -3972,7 +3972,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Zaustaviti"
@@ -4854,7 +4854,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7979,7 +7979,7 @@
msgstr "Ton boje ulaznog sadržaja video slike."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -13043,7 +13043,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Stanka"
@@ -14898,7 +14898,7 @@
"međuspremnika."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14988,7 +14988,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -18048,7 +18048,7 @@
msgid " f/s"
msgstr " fps"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Napredne mogućnosti"
@@ -20433,12 +20433,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "Isključiti zaslonskog čuvara"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
#, fuzzy
msgid "XDG screen saver inhibition"
msgstr "Isključivač čuvara zaslona X"
@@ -20703,19 +20703,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"trenutno izvodi\" (Nadzor planiranih zadaća)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Okomito zamijeniti položaj"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Izlazni sadržaj XOSD prikazati pri dnu zaslona umjesto na vrhu."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Odstup okomito"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20723,25 +20723,25 @@
"Okomito odstupanje između rubova zaslona i prikazanog teksta (u pixelima, "
"polazno je na 30 pixela)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Odstup sjenke"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"Odstupanje između teksta i sjenke (u pixelima, polazno je na 2 pixela)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Font koji se koristi za prikaz teksta u izlazu XOSD-a."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Boja koja se koristi za prikaz teksta u izlazu XOSD-a."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Sučelje XOSD"
@@ -25789,12 +25789,12 @@
msgid "XVideo output (XCB)"
msgstr "Spona izlaza slike"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Postavke video slike nisu pohranjene"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/hu.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/hu.po
^
|
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: vlc 1.1.6\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-01-21 01:55+0100\n"
"Last-Translator: Gabor Kelemen <kelemeng at gnome dot hu>\n"
"Language-Team: Hungarian <gnome at fsf dot hu>\n"
@@ -3898,7 +3898,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Állj"
@@ -4793,7 +4793,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7858,7 +7858,7 @@
msgstr "A videobemenet színárnyalata."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12946,7 +12946,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Szünet"
@@ -14782,7 +14782,7 @@
"Minden megjelenített kép és szöveg az átfedési framebufferen jelenik meg."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14872,7 +14872,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17907,7 +17907,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Speciális beállítások"
@@ -20234,11 +20234,11 @@
msgid "OSSO screen unblanking"
msgstr "OSSO képernyő feltöltése"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG-képernyővédő"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "XDG-képernyővédő letiltása"
@@ -20493,19 +20493,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy „Most játszott” (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Függőleges pozíció megfordítása"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "XOSD kimenet megjelenítése a képernyő tetején az alja helyett."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Függőleges eltolás"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20513,26 +20513,26 @@
"Függőleges eltolás a képernyő széle és a megjelenített szöveg között "
"(képpontban, az alapértelmezés 30 képpont)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Árnyék eltolása"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"A szöveg és az árnyék közti eltolás (képpontban, az alapértelmezés 2 "
"képpont)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Az XOSD kimenetben szöveg megjelenítésére használt betűkészlet."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Az XOSD kimenetben szöveg megjelenítésére használt szín."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD felület"
@@ -25470,11 +25470,11 @@
msgid "XVideo output (XCB)"
msgstr "XVideo kimenet (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "A videogyorsítás nem érhető el"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/hy.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/hy.po
^
|
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-09-21 15:58+0400\n"
"Last-Translator: Eduard Babayan <edo248@gmail.com>\n"
"Language-Team: VLC Armenian <edo248@gmail.com>\n"
@@ -4283,7 +4283,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Կանգնեցնել"
@@ -5239,7 +5239,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -8594,7 +8594,7 @@
msgstr "հալածում է վիդեո մուտքագրման\"."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -14320,7 +14320,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Ընդմիջել"
@@ -16448,7 +16448,7 @@
"\"."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -16539,7 +16539,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -19773,7 +19773,7 @@
msgid " f/s"
msgstr " կադր/վ"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Ընդլայնված Ընտարնքներ"
@@ -22219,11 +22219,11 @@
msgid "OSSO screen unblanking"
msgstr "OSSO էկրան unblanking"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG-Էկրանապահ"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "XDG էկրանապահիչի զսպելը"
@@ -22525,21 +22525,21 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \" Այժմ խաղում են \"(MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Շրջել ուղղահայաց դիրքում"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
#, fuzzy
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Ցույց տալ XOSD թողարկման ներքեւում էկրանի փոխարեն վերեւում\"."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
#, fuzzy
msgid "Vertical offset"
msgstr "Ուղղահայաց շեղում"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
#, fuzzy
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
@@ -22548,27 +22548,27 @@
"Ուղղահայաց շեղում միջեւ սահմանը, էկրանի եւ ցուցադրվում տեքստը (in պիքսել, "
"Նախնականը մինչեւ 30 պիքսել)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
#, fuzzy
msgid "Shadow offset"
msgstr "ստվերում շեղում"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
#, fuzzy
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "շեղում միջեւ տեքստը եւ ստվերային (in պիքսել, Նախնականը 2 պիքսել)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Տառատեսակի, օգտագործվող ցուցադրել XOSD տեքստի մեջ"
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
#, fuzzy
msgid "Color used to display text in the XOSD output."
msgstr "Գույն, որն օգտագործվում է Արտածիր է XOSD արտադրանք\"."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD ինտերֆեյս"
@@ -28226,12 +28226,12 @@
msgid "XVideo output (XCB)"
msgstr "XVideo ելքը (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Վիդեո արագացման չկան"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, fuzzy, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/id.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/id.po
^
|
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-12-13 07:45+0700\n"
"Last-Translator: Luqman Hakim <ovdl@rocketmail.com>\n"
"Language-Team: Indonesia <id@li.org>\n"
@@ -3798,7 +3798,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Henti"
@@ -4669,7 +4669,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7651,7 +7651,7 @@
msgstr "Hue input video."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12533,7 +12533,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Rehat"
@@ -14334,7 +14334,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14424,7 +14424,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17429,7 +17429,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Pilihan Lanjutan"
@@ -19713,11 +19713,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19959,19 +19959,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Jentik posisi menegak"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Tampilkan output XOSD pada layar bawah menggantikan yang atas."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Offset vertikal"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -19979,24 +19979,24 @@
"Offset vertikal antara batas layar dan teks yang ditampilkan (dalam piksel, "
"default 30 piksel)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Offset bayangan"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "Offset antara teks dan bayangan (dalam piksel, default ke 2 piksel)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Font yang digunakan untuk menampilkan teks dalam output XOSD."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Warna yang digunakan untuk menampilkan teks dalam output XOSD."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Antarmuka XOSD"
@@ -24730,11 +24730,11 @@
msgid "XVideo output (XCB)"
msgstr "Output XVideo (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Akselerasi video tidak tersedia"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/is.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/is.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: VLC\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-03-01 15:26+0100\n"
"Last-Translator: Andri Pálsson <palsson.andri@gmail.com>\n"
"Language-Team: Andri Pálsson <palsson.andri@gmail.com>\n"
@@ -3439,7 +3439,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Stoppa"
@@ -4298,7 +4298,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7188,7 +7188,7 @@
msgstr ""
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11780,7 +11780,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Hlé"
@@ -13512,7 +13512,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13602,7 +13602,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16443,7 +16443,7 @@
msgid " f/s"
msgstr "rammar/sek"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr ""
@@ -18684,11 +18684,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -18923,42 +18923,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr ""
@@ -23462,11 +23462,11 @@
msgid "XVideo output (XCB)"
msgstr "XVideo úttak (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Myndbandahröðun er ekki í boði"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/it.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/it.po
^
|
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-11-11 22:48+0100\n"
"Last-Translator: Vincenzo Reale <smart2128@baslug.org>\n"
"Language-Team: Italian <kde-i18n-it@kde.org>\n"
@@ -3872,7 +3872,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Interrompi"
@@ -4752,7 +4752,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7780,7 +7780,7 @@
msgstr "Tonalità dell'ingresso video."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12644,7 +12644,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pausa"
@@ -14448,7 +14448,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14539,7 +14539,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17513,7 +17513,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Opzioni avanzate"
@@ -19827,11 +19827,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "Salvaschermo XDG"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "Disabilita salvaschermo XDG"
@@ -20078,20 +20078,20 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"In riproduzione\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Capovolgi posizione verticale"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
"Visualizza l'uscita XOSD nella parte bassa dello schermo anziché in alto."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Scostamento verticale"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20099,24 +20099,24 @@
"Scostamento verticale tra il bordo dello schermo e il testo visualizzato (in "
"pixel, predefinito a 30 pixel)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Scostamento ombra"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "Scostamento tra il testo e l'ombra (in pixel, predefinito a 2 pixel)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Carattere utilizzato per visualizzare il testo nell'uscita XOSD."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Colore utilizzato per visualizzare il testo nell'uscita XOSD."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Interfaccia XOSD"
@@ -24928,11 +24928,11 @@
msgid "XVideo output (XCB)"
msgstr "Uscita video (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Accelerazione video non disponibile"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ja.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ja.po
^
|
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: vlc 1.1.0\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-07-19 18:42+0900\n"
"Last-Translator: Fumio Nakayama <fumio.n6a@gmail.com>\n"
"Language-Team: VideoLAN's Translators <translators@videolan.org>\n"
@@ -3841,7 +3841,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "停止"
@@ -4704,7 +4704,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7700,7 +7700,7 @@
msgstr "ビデオ入力の色相を指定します。"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12699,7 +12699,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "一時停止"
@@ -14523,7 +14523,7 @@
"オーバーレイフレームバッファー上にすべての画像とテキストが表示されます。"
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14612,7 +14612,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17630,7 +17630,7 @@
msgid " f/s"
msgstr "フレーム/秒"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "拡張オプション"
@@ -19966,11 +19966,11 @@
msgid "OSSO screen unblanking"
msgstr "OSSOスクリーンの非ブランク化"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDGスクリーンセーバー"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "XDGスクリーンセーバーの抑止"
@@ -20224,19 +20224,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"再生中\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "垂直方向の位置を反転"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "XOSDの出力を上部ではなく、スクリーンの下部にします。"
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "垂直方向オフセット"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20244,25 +20244,25 @@
"スクリーンの枠と表示されるテキスト間の垂直方向のオフセットをピクセルで指定し"
"ます。(デフォルトは30ピクセル)"
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "陰のオフセット"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"テキストに対する影のオフセットをピクセルで指定します。(デフォルトは2ピクセル)"
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "XOSD出力中のテキスト表示に使用されるフォントを指定します。"
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "XOSD出力中のテキスト表示に使用される色を指定します。"
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSDインターフェース"
@@ -25131,11 +25131,11 @@
msgid "XVideo output (XCB)"
msgstr "XVideo出力(XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "ビデオアクセラレーションは有効ではありません"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ka.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ka.po
^
|
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2008-08-23 18:31+0200\n"
"Last-Translator: Alexander Didebulidze <didebuli@in.tum.de>\n"
"Language-Team: Georgian <geognome@googlegroups.com>\n"
@@ -3540,7 +3540,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "შეჩერება"
@@ -4425,7 +4425,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7523,7 +7523,7 @@
msgstr "კონტრასტი ის ვიდეო."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12465,7 +12465,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "პაუზა"
@@ -14401,7 +14401,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14495,7 +14495,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17611,7 +17611,7 @@
msgid " f/s"
msgstr "%d kb/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "დამატებითი ოფციები"
@@ -20126,12 +20126,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "ეკრანდამცავის გამორთვა"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
#, fuzzy
msgid "XDG screen saver inhibition"
msgstr "X ეკრანმზოგის გამმორთველი"
@@ -20383,47 +20383,47 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "ტექსტის ადგილმდებარეობა"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
#, fuzzy
msgid "Vertical offset"
msgstr "ვერტიკალური"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
#, fuzzy
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr "ის და ტექსტი დუიმი პიქსელი -სკენ პიქსელი."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
#, fuzzy
msgid "Shadow offset"
msgstr "შემთხვევითი გათიშ."
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
#, fuzzy
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "წანაცვლება ტექსტი და დუიმი პიქსელი -სკენ პიქსელი."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD ინტერფეისი"
@@ -25490,12 +25490,12 @@
msgid "XVideo output (XCB)"
msgstr "ვიდეო გასავალის URL"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "ვიდეო პარამეტრები"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/kk.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/kk.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc 1.0.1\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2009-08-23 19:45+0500\n"
"Last-Translator: Kypchak <kazak.tarjime@gmail.com>\n"
"Language-Team: Kazakh\n"
@@ -3532,7 +3532,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Тоқтату"
@@ -4411,7 +4411,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7345,7 +7345,7 @@
msgstr "Бейнелік кіресін реңкі."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11985,7 +11985,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Аялдату"
@@ -13794,7 +13794,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13884,7 +13884,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16770,7 +16770,7 @@
msgid " f/s"
msgstr " кадр/с"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Қосымша параметрлер"
@@ -19052,12 +19052,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "Бейнебет қорғауышты доғару"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
#, fuzzy
msgid "XDG screen saver inhibition"
msgstr "X бейнебет қорғауышты доғарушы"
@@ -19301,42 +19301,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"Қазір ойнатылуда\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Жайғасымын төңкеру"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Тігінен ығысу"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Көлеңке ығысуы"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD тілдесуі"
@@ -23972,12 +23972,12 @@
msgid "XVideo output (XCB)"
msgstr "Бейнелік шығасынының түйіспесі"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Бейнелік теңшелімдер сақталмады"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/km.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/km.po
^
|
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-04-07 09:04+0700\n"
"Last-Translator: Khoem Sokhem <khoemsokhem@khmeros.info>\n"
"Language-Team: Khmer <support@khmeros.info>\n"
@@ -3722,7 +3722,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "បញ្ឈប់"
@@ -4584,7 +4584,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7566,7 +7566,7 @@
msgstr "ភាពលាំៗនៃពណ៌របស់ព័ត៌មានបញ្ចូលវីដេអូ ។"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12442,7 +12442,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "ផ្អាក"
@@ -14237,7 +14237,7 @@
msgstr "រូបភាព និងអត្ថបទដែលបានបង្ហាញនឹងត្រូវបានបង្ហាញណោលើសតិបណ្ដោះអាសន្នស៊ុមត្រួតគ្នា ។"
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14327,7 +14327,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17281,7 +17281,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "ជម្រើសកម្រិតខ្ពស់"
@@ -19583,11 +19583,11 @@
msgid "OSSO screen unblanking"
msgstr "អេក្រង់ OSSO ដែលមិនលោតភ្លឹបភ្លែត"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "ធាតុរក្សាអេក្រង់ XDG"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "ការហាមឃាត់ធាតុរក្សាអេក្រង់ XDG"
@@ -19841,19 +19841,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"ចាក់ឥឡូវ\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "ទីតាំងបញ្ឈរត្រឡប់"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "បង្ហាញលទ្ធផល XOSD នៅបាតរបស់អេក្រង់ជំនួសកំពូល ។"
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "អុហ្វសិតបញ្ឈរ"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -19861,24 +19861,24 @@
"អុហ្វសិតបញ្ឈររវាងរវាងស៊ុមរបស់អេក្រង់ និងអត្ថបទដែលបានបង្ហាញ (គិតជាភីកសែល, កំណត់លំនាំដើមទៅ ៣០ "
"ភីកសែល) ។"
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "អុហ្វសិតស្រមោល"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "អុហ្វសិតរវាងអត្ថបទ និងស្រមោល (គិតជាភីកសែល កំណត់លំនាំដើមទៅ ២ ភីកសែល) ។"
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "ពុម្ពអក្សរដែលបានប្រើដើម្បីបង្ហាញអត្ថបទនៅក្នុងការបង្ហាញ XOSD ។"
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "ពណ៌ដែលបានប្រើដើម្បីបង្ហាញអត្ថបទនៅក្នុងលទ្ធផល XOSD ។"
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "ចំណុចប្រទាក់ XOSD"
@@ -24650,11 +24650,11 @@
msgid "XVideo output (XCB)"
msgstr "លទ្ធផល XVideo (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "ការបង្កើនល្បឿនវីដេអូមិនអាចប្រើបាន"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ko.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ko.po
^
|
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-03-03 09:03+0900\n"
"Last-Translator: airplanez <airplanez@gmail.com>\n"
"Language-Team: airplanez <airplanez@gmail.com>\n"
@@ -3729,7 +3729,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "정지"
@@ -4597,7 +4597,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7572,7 +7572,7 @@
msgstr "비디오 입력의 색조."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12302,7 +12302,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "일시정지"
@@ -14079,7 +14079,7 @@
msgstr "모든 렌더링된 이미지 및 문자는 중첩 프레임버퍼에 표시 됩니다."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14169,7 +14169,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17107,7 +17107,7 @@
msgid " f/s"
msgstr "fps"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "고급 옵션"
@@ -19407,12 +19407,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "화면 보호기 끄기"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
#, fuzzy
msgid "XDG screen saver inhibition"
msgstr "X 화면 보호기 끔"
@@ -19668,42 +19668,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "텔레파시 \"지금 재생중\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "수직 위치 뒤집기"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "XOSD 출력을 화면의 상단이 아닌 하단에 표시."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "수직 오프셋"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "섀도우 오프셋"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "XOSD 출력에 텍스트를 표시할 글꼴"
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "XOSD 출력에 텍스트를 표시할 색상"
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD 인터페이스"
@@ -24381,12 +24381,12 @@
msgid "XVideo output (XCB)"
msgstr "영상 출력 핀"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "비디오 설정이 저정되지 않음"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/lg.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/lg.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc 1.1.8\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-05-02 18:38+0200\n"
"Last-Translator: James Olweny <sjolweny85@yahoo.co.uk>\n"
"Language-Team: Ganda\n"
@@ -3603,7 +3603,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Nyimirira"
@@ -4538,7 +4538,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7544,7 +7544,7 @@
msgstr "Ebikwata ku esengejja ya vidiyo"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12358,7 +12358,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Nyimirira"
@@ -14165,7 +14165,7 @@
msgstr "Erinnya lya fayiro kulwe kifananyi kukozesa ne awatereka fulemu."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14255,7 +14255,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17139,7 +17139,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Byawagulu ebirimu"
@@ -19398,11 +19398,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19650,43 +19650,43 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "Kaaka ekifo kyo mutwe gwo kubiri"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
#, fuzzy
msgid "XOSD interface"
msgstr "Qt enkolagano"
@@ -24491,12 +24491,12 @@
msgid "XVideo output (XCB)"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Entegeka ya Maloboozi tteterese"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/lt.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/lt.po
^
|
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-05-29 08:09+0200\n"
"Last-Translator: Mindaugas Baranauskas <embar@users.berlios.de>\n"
"Language-Team: Lithuanian <embar@users.berlios.de>\n"
@@ -3842,7 +3842,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Stabdyti"
@@ -4711,7 +4711,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7683,7 +7683,7 @@
msgstr "Vaizdo įvesties atspalvis."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12374,7 +12374,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pristabdyti"
@@ -14133,7 +14133,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14223,7 +14223,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17138,7 +17138,7 @@
msgid " f/s"
msgstr " k/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Sudėtingesnės nuostatos"
@@ -19433,11 +19433,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG ekrano užsklanda"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "XDG ekrano užsklandos sustabdymas"
@@ -19688,19 +19688,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Apvertimo vertikaliai padėtis"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "XOSD išvestį rodyti ekrano apačioje, o ne viršuje."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Vertikalus nuotolis"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -19708,24 +19708,24 @@
"Nuotolis vertikalioje ašyje nuo ekrano iki rodomo teksto (pikseliais, "
"numatytas 30 pikselių)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Šešėlio poslinkis"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "Šešėlio poslinkis nuo teksto (pikseliais, numatytas 2 pikseliai)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD sąsaja"
@@ -24360,11 +24360,11 @@
msgid "XVideo output (XCB)"
msgstr "XVideo išvestis (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Vaizdo spartinimas negalimas"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/lv.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/lv.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2006-08-26 15:56+0000\n"
"Last-Translator: jogijs <e.blumbergs@gmail.com>\n"
"Language-Team: Latvian <lv@li.org>\n"
@@ -3547,7 +3547,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr ""
@@ -4412,7 +4412,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7392,7 +7392,7 @@
msgstr "Piekļuves filtri"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12182,7 +12182,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
#, fuzzy
msgid "Pause"
msgstr "Datums"
@@ -14003,7 +14003,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14097,7 +14097,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17160,7 +17160,7 @@
msgid " f/s"
msgstr "%d kb/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
#, fuzzy
msgid "Advanced Options"
msgstr "Papildu iestatījumi"
@@ -19583,11 +19583,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19832,42 +19832,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
#, fuzzy
msgid "XOSD interface"
msgstr "Saskarnes"
@@ -24609,12 +24609,12 @@
msgid "XVideo output (XCB)"
msgstr "Video iestatījumi"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Video iestatījumi"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/mk.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/mk.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc 1.0.2-git\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2009-09-14 22:55+0100\n"
"Last-Translator: Goce Manevski <Goce92@live.com>\n"
"Language-Team: Macedonian\n"
@@ -3443,7 +3443,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr ""
@@ -4301,7 +4301,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7173,7 +7173,7 @@
msgstr ""
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11767,7 +11767,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr ""
@@ -13490,7 +13490,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13579,7 +13579,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16421,7 +16421,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr ""
@@ -18644,11 +18644,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -18882,42 +18882,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr ""
@@ -23434,11 +23434,11 @@
msgid "XVideo output (XCB)"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ml.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ml.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc 1.0.2-git\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-01-10 00:07+0530\n"
"Last-Translator: Sreejith.P <sreejithpro@gmail.com>\n"
"Language-Team: Malayalam\n"
@@ -3447,7 +3447,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr ""
@@ -4305,7 +4305,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7178,7 +7178,7 @@
msgstr ""
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11772,7 +11772,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr ""
@@ -13495,7 +13495,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13584,7 +13584,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16427,7 +16427,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr ""
@@ -18650,11 +18650,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -18888,42 +18888,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr ""
@@ -23436,11 +23436,11 @@
msgid "XVideo output (XCB)"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/mn.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/mn.po
^
|
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: vlc 0.9.9\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2009-06-19 21:17+0800\n"
"Last-Translator: Bayarsaikhan Enkhtaivan <shonhor@chinggis.com>\n"
"Language-Team: Mongolian\n"
@@ -3459,7 +3459,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Зогс"
@@ -4323,7 +4323,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7241,7 +7241,7 @@
msgstr "Видео оролтын өнгө"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11846,7 +11846,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Завсарлах"
@@ -13583,7 +13583,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13673,7 +13673,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16535,7 +16535,7 @@
msgid " f/s"
msgstr "кбит/с"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Өргөтгөсөн сонголтууд"
@@ -18793,12 +18793,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "Дэлгэцгамнагчийг хорих"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19035,42 +19035,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr ""
@@ -23672,12 +23672,12 @@
msgid "XVideo output (XCB)"
msgstr "X11 дүрс гаргалт"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Дүрсний тохиргоо хадгалагдаагүй"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ms.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ms.po
^
|
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2009-05-24 22:14+0730\n"
"Last-Translator: Mahrazi Mohd Kamal <mahrazi@gmail.com>\n"
"Language-Team: Malay <ms@li.org>\n"
@@ -3819,7 +3819,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Henti"
@@ -4692,7 +4692,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7745,7 +7745,7 @@
msgstr "Hue input video."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12710,7 +12710,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Rehat"
@@ -14568,7 +14568,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14660,7 +14660,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17787,7 +17787,7 @@
msgid " f/s"
msgstr " fps"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
#, fuzzy
msgid "Advanced Options"
msgstr "Pilihan lanjutan..."
@@ -20194,12 +20194,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "Lumpuhkan penjimat skrin"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
#, fuzzy
msgid "XDG screen saver inhibition"
msgstr "Pelumpuh X Screensaver"
@@ -20471,19 +20471,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Jentik posisi menegak"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Papar output XOSD pada bawak skrin menggantikan yang atas."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Offset menegak"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20491,24 +20491,24 @@
"Offset ufuk antara sempadan skrin dan teks dipapar (dalam piksel, lalai "
"kepada 30 piksel)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Offset bayang"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "Offset antara teks dan bayang (dalam piksel, lalai kepada 2 piksel)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Font diguna untuk paparkan teks dalam output XOSD."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Warna diguna untuk paparkan teks dalam output XOSD."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Antaramuka XOSD"
@@ -25414,12 +25414,12 @@
msgid "XVideo output (XCB)"
msgstr "Pin output video"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Tetapan video"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/my.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/my.po
^
|
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2005-02-01 14:24+0000\n"
"Last-Translator: Khin Mi Mi Aung <kmma@myanmarlug.org>\n"
"Language-Team: Burmese\n"
@@ -3492,7 +3492,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr ""
@@ -4363,7 +4363,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7326,7 +7326,7 @@
msgstr "_ံအဋအ,္တ"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12070,7 +12070,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr ""
@@ -13860,7 +13860,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13953,7 +13953,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16986,7 +16986,7 @@
msgid " f/s"
msgstr " "
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
#, fuzzy
msgid "Advanced Options"
msgstr "_ဒဗိဩဂိ၇ာိ"
@@ -19383,11 +19383,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19629,43 +19629,43 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "_ံအဋအ,္တ"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr ""
@@ -24392,12 +24392,12 @@
msgid "XVideo output (XCB)"
msgstr "_ဒဗိဩဂိ၇ာိ"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "_ဒဗိဩဂိ၇ာိ"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/nb.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/nb.po
^
|
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-05-12 04:01+0200\n"
"Last-Translator: Olav Dahlum <odahlum@gmail.com>\n"
"Language-Team: Norwegian Bokmål <i18n-nb@lists.ping.uio.no>\n"
@@ -3755,7 +3755,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Stopp"
@@ -4632,7 +4632,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7704,7 +7704,7 @@
msgstr "Åpne spilleliste-vinduet"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12666,7 +12666,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pause"
@@ -14491,7 +14491,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14581,7 +14581,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17572,7 +17572,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Avanserte valg"
@@ -19917,11 +19917,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG-skjermsparer"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "Hindring av XDG-skjermsparer"
@@ -20179,48 +20179,48 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "rotér vertikal posisjon"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
#, fuzzy
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Vis xosd-eksporten på bunnen av skjermen i stedet for på toppen"
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
#, fuzzy
msgid "Vertical offset"
msgstr "Loddrett forskyvning"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
#, fuzzy
msgid "Shadow offset"
msgstr "Forskyvning av skygge"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
#, fuzzy
msgid "Font used to display text in the XOSD output."
msgstr "Valgt skrifttype for visning av tekst i xosd-eksport"
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
#, fuzzy
msgid "Color used to display text in the XOSD output."
msgstr "Valgt skrifttype for visning av tekst i xosd-eksport"
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
#, fuzzy
msgid "XOSD interface"
msgstr "_Gjem grensesnitt"
@@ -25180,11 +25180,11 @@
msgid "XVideo output (XCB)"
msgstr "Videofremvisningsmodul"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Videoakselerasjon er ikke tilgjengelig"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ne.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ne.po
^
|
@@ -2,7 +2,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: Animesh Swar <animesh_swar@hotmail.co.uk>\n"
"Language-Team: \n"
@@ -3876,7 +3876,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "रोक्नुहोस्"
@@ -4755,7 +4755,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7821,7 +7821,7 @@
msgstr "भिडियो आगतको ह्यु"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12819,7 +12819,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "पज गर्नुहोस्"
@@ -14756,7 +14756,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14849,7 +14849,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17989,7 +17989,7 @@
msgid " f/s"
msgstr " "
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
#, fuzzy
msgid "Advanced Options"
msgstr "उन्नत विकल्प"
@@ -20495,12 +20495,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "स्क्रिनसेभर अक्षम पार्नुहोस्"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
#, fuzzy
msgid "XDG screen saver inhibition"
msgstr "X स्क्रिनसेभर अक्षम पार्ने"
@@ -20765,19 +20765,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "ठाडो स्थान फ्लिप गर्नुहोस्"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "माथि तिर भन्दा स्क्रिनको तलतिर XOSD निर्गत प्रर्दशन गर्नुहोस्"
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "ठाडो अफसेट"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20785,24 +20785,24 @@
"प्रर्दशित पाठ र स्क्रिनको किनारा बिचमा ठाडो अफसेट (पिक्सेलमा, ३० पिक्सेलमा "
"पूर्वनिर्धारित)"
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "छाँया अफसेट"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "छायाँ र पाठ बिचको अफसेट (पिक्सेलमा, २ पिक्सेलमा पूर्वनिर्धारित)"
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "XOSD निर्गतमा पाठ प्रर्दशन गर्न प्रयोग गरिने फन्ट"
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "XOSD निर्गतमा पाठ प्रर्दशन गर्न रङ प्रयोग गरिन्छ ।"
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD इन्टरफेस"
@@ -25799,12 +25799,12 @@
msgid "XVideo output (XCB)"
msgstr "भिडियो निर्गत पिन"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "भिडियो सेटिङ"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/nl.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/nl.po
^
|
@@ -12,7 +12,7 @@
msgstr ""
"Project-Id-Version: VLC Media Player\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-05-20 17:35+0100\n"
"Last-Translator: Thomas De Rocker <thomasderocker.at.h0tmail.d0t.c0m>\n"
"Language-Team: Dutch\n"
@@ -3903,7 +3903,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Stop"
@@ -4779,7 +4779,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7835,7 +7835,7 @@
msgstr "Tint van de video-invoer."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12905,7 +12905,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pauze"
@@ -14740,7 +14740,7 @@
"beeldbuffer."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14829,7 +14829,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17870,7 +17870,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Geavanceerde opties"
@@ -20210,11 +20210,11 @@
msgid "OSSO screen unblanking"
msgstr "OSSO schermactivatie"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG-schermbeveiliging"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "XDG schermbeveiliging onderdrukking"
@@ -20470,19 +20470,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"Nu speelt\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Verticale positie spiegelen"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Geef XOSD uitvoer beneden in het scherm weer in plaats van bovenaan."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Verticale uitlijning"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20490,26 +20490,26 @@
"Verticale uitlijning tussen de rand van het scherm en de weergegeven tekst "
"(in pixels, standaard naar 30 pixels)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Schaduw offset"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"Uitlijning tussen de tekst en de schaduw (in pixels, standaard naar 2 "
"pixels)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Gebruik dit lettertype voor tekst in de XOSD-uitvoer."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Gebruik deze kleur voor tekst in xosd uitvoer."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD interface"
@@ -25478,11 +25478,11 @@
msgid "XVideo output (XCB)"
msgstr "XVideo-uitvoer (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Videoversnelling niet beschikbaar."
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/nn.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/nn.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-01-27 19:06+0100\n"
"Last-Translator: Eirik U. Birkeland <eirbir@gmail.com>\n"
"Language-Team: Norwegian Nynorsk <i18n-nn@lister.ping.uio.no>\n"
@@ -3998,7 +3998,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Stopp"
@@ -4881,7 +4881,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -8073,7 +8073,7 @@
msgstr "Åpne spilleliste-vinduet"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -13304,7 +13304,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pause"
@@ -15263,7 +15263,7 @@
msgstr "Alle på."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -15362,7 +15362,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -18502,7 +18502,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Avanserte innstillingar"
@@ -20879,12 +20879,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "Slå av pauseskjerm"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
#, fuzzy
msgid "XDG screen saver inhibition"
msgstr "Standard grensesnitt: "
@@ -21153,48 +21153,48 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "rotér vertikal posisjon"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
#, fuzzy
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Vis xosd-eksporten på bunnen av skjermen i stedet for på toppen"
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
#, fuzzy
msgid "Vertical offset"
msgstr "Loddrett forskyvning"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
#, fuzzy
msgid "Shadow offset"
msgstr "Forskyvning av skygge"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
#, fuzzy
msgid "Font used to display text in the XOSD output."
msgstr "Valgt skrifttype for visning av tekst i xosd-eksport"
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
#, fuzzy
msgid "Color used to display text in the XOSD output."
msgstr "Valgt skrifttype for visning av tekst i xosd-eksport"
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
#, fuzzy
msgid "XOSD interface"
msgstr "_Gjem grensesnitt"
@@ -26331,12 +26331,12 @@
msgid "XVideo output (XCB)"
msgstr "Videofremvisningsmodul"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Standard grensesnitt: "
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/oc.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/oc.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: Tòni Galhard <tony.gaillard@supinfo.com>\n"
"Language-Team: \n"
@@ -3757,7 +3757,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Arrestar"
@@ -4633,7 +4633,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7580,7 +7580,7 @@
msgstr "Tencha de l'intrada vidèo."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12224,7 +12224,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pausa"
@@ -13970,7 +13970,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14060,7 +14060,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16931,7 +16931,7 @@
msgid " f/s"
msgstr "%u kb/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Opcions avançadas"
@@ -19229,12 +19229,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "Desactivar lo screensaver*"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19473,42 +19473,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Interfàcia XOSD"
@@ -24122,12 +24122,12 @@
msgid "XVideo output (XCB)"
msgstr "Sortida vidèo pin"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Los paramètres vidèo son pas salvats"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/pa.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/pa.po
^
|
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-06-20 18:46+0530\n"
"Last-Translator: A S Alam <aalam@users.sf.net>\n"
"Language-Team: Punjabi/Panjabi <punjabi-users@lists.sf.net>\n"
@@ -3460,7 +3460,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "ਰੋਕੋ"
@@ -4319,7 +4319,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7190,7 +7190,7 @@
msgstr "ਵਿਡੀਓ ਇੰਪੁੱਟ ਲਈ ਆਭਾ।"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11799,7 +11799,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "ਵਿਰਾਮ"
@@ -13534,7 +13534,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13624,7 +13624,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16467,7 +16467,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "ਮਾਹਰ ਚੋਣਾਂ"
@@ -18705,11 +18705,11 @@
msgid "OSSO screen unblanking"
msgstr "OSSO ਸਕਰੀਨ ਨਾ-ਝਪਕਣ"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG-ਸਕਰੀਨਸੇਵਰ"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -18943,42 +18943,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "ਵਰਟਕੀਲ ਸਥਿਤੀ ਝਟਕੋ"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "ਵਰਟੀਕਲ ਆਫਸੈੱਟ"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "ਸ਼ੈਡੋ ਆਫਸੈੱਟ"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD ਇੰਟਰਫੇਸ"
@@ -23495,11 +23495,11 @@
msgid "XVideo output (XCB)"
msgstr "Xਵਿਡੀਓ ਆਉਟਪੁੱਟ (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "ਵਿਡੀਓ ਐਕਸਲੇਸ਼ਨ ਉਪਲੱਬਧ ਨਹੀਂ ਹੈ"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/pl.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/pl.po
^
|
@@ -8,8 +8,8 @@
msgstr ""
"Project-Id-Version: vlc 1.1.x\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
-"PO-Revision-Date: 2011-05-20 17:17+0100\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
+"PO-Revision-Date: 2011-10-08 16:33+0100\n"
"Last-Translator: Michał Trzebiatowski <hippie_1968@hotmail.com>\n"
"Language-Team: Polish\n"
"Language: pl\n"
@@ -3870,7 +3870,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Zatrzymaj"
@@ -4739,7 +4739,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7767,7 +7767,7 @@
msgstr "Barwa wyjścia obrazu."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12828,7 +12828,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Wstrzymaj"
@@ -14659,7 +14659,7 @@
"klatek."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14748,7 +14748,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -15346,17 +15346,19 @@
#: modules/gui/macosx/intf.m:2857
msgid "Relaunch required"
-msgstr ""
+msgstr "Wymagane ponowne uruchomienie"
#: modules/gui/macosx/intf.m:2858
msgid ""
"To make sure that VLC no longer listens to your media key events, it needs "
"to be restarted."
msgstr ""
+"Aby upewnić się, że VLC nie wykrywa kluczowych wydarzeń medialnych, musi "
+"zostać ponownie uruchomiony."
#: modules/gui/macosx/intf.m:2859
msgid "Relaunch VLC"
-msgstr ""
+msgstr "Ponowne uruchomienie VLC"
#: modules/gui/macosx/macosx.m:53
msgid "Video device"
@@ -17772,7 +17774,7 @@
msgid " f/s"
msgstr " klatek na sekundę"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Zaawansowane opcje"
@@ -20113,11 +20115,11 @@
msgid "OSSO screen unblanking"
msgstr "Wyświetlanie ekranu OSSO"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "Wygaszacz ekranu XDG"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "Blokowanie wygaszacza ekranu XDG"
@@ -20371,19 +20373,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Moduł Telepathy \"Teraz odtwarzane\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Zmiana pozycji w pionie"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Wyświetl wyjście XOSD na dole ekranu zamiast na górze."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Przesunięcie w pionie"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20391,26 +20393,26 @@
"Przesunięcie w pionie pomiędzy krawędzią ekranu i wyświetlanym tekstem (w "
"pikselach, domyślnie to 30 pikseli)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Przesunięcie cienia"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"Przesunięcie pomiędzy tekstem i cieniem (w pikselach, domyślnie to 2 "
"piksele)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Czcionka używana do wyświetlenia tektu wyjścia XOSD."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Kolor używany do wyświetlenia tektu wyjścia XOSD."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Interfejs XOSD"
@@ -25328,11 +25330,11 @@
msgid "XVideo output (XCB)"
msgstr "Wyjście XVideo (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Przyspieszenie obrazu jest nie dostępne"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ps.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ps.po
^
|
@@ -11,7 +11,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2009-04-12 10:26-0800\n"
"Last-Translator: Zabeeh Khan <zabeehkhan @ gmail.com>\n"
"Language-Team: Pashto\n"
@@ -3439,7 +3439,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "تمول"
@@ -4300,7 +4300,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7193,7 +7193,7 @@
msgstr ""
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11799,7 +11799,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "ځنډول"
@@ -13537,7 +13537,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13626,7 +13626,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16483,7 +16483,7 @@
msgid " f/s"
msgstr " س"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "بريونلي غوراوي"
@@ -18761,12 +18761,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "پرده ساتونکی ناتوانول"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19002,42 +19002,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "برسېر XOSD"
@@ -23621,12 +23621,12 @@
msgid "XVideo output (XCB)"
msgstr "URL د ويډيو د وتۍ"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "د ويډيو امستنې ونه ساتل شوې"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/pt_BR.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/pt_BR.po
^
|
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-07-03 13:58-0300\n"
"Last-Translator: Sidney Doria <ssdoria@gmail.com>\n"
"Language-Team: Brazilian Portuguese\n"
@@ -3894,7 +3894,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Parar"
@@ -4771,7 +4771,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7825,7 +7825,7 @@
msgstr "Tom de cor da entrada de vídeo."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12893,7 +12893,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pausar"
@@ -14732,7 +14732,7 @@
"sobreposição."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14821,7 +14821,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17849,7 +17849,7 @@
msgid " f/s"
msgstr "qps"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Opções Avançadas"
@@ -20184,11 +20184,11 @@
msgid "OSSO screen unblanking"
msgstr "Preenchimento de tela OSSO"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "Proteção de tela XDG"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "Bloqueador da proteção de tela XDG"
@@ -20444,19 +20444,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "\"Reproduzindo\" Telepathy (Controle de Missão)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Girar posição vertical"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Exibir a saída XOSD na base da tela em vez de no topo."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Compensação de vertical"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20464,24 +20464,24 @@
"Deslocamento vertical entre a borda da tela e o texto exibido (em pixels. "
"Padrão de 30 pixels)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Compensação de sombra"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "Deslocamento entre o texto e a sombra (em pixels. Padrão de 2 pixels)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Fonte usada para exibir o texto na saída XOSD."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Cor usada para exibir o texto na saída XOSD."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Interface XOSD"
@@ -25416,11 +25416,11 @@
msgid "XVideo output (XCB)"
msgstr "Saída de vídeo XVideo (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "A aceleração de vídeo não está disponível"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/pt_PT.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/pt_PT.po
^
|
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2008-06-08 23:35+0100\n"
"Last-Translator: Bruno Queirós <brunoqueiros@portugalmail.com>\n"
"Language-Team: Portuguese <traduz@debian.pt>\n"
@@ -3714,7 +3714,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Parar"
@@ -4591,7 +4591,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7643,7 +7643,7 @@
msgstr "Matiz da entrada de vídeo."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12461,7 +12461,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pausa"
@@ -14277,7 +14277,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14367,7 +14367,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17456,7 +17456,7 @@
msgid " f/s"
msgstr "2 passos"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
#, fuzzy
msgid "Advanced Options"
msgstr "Opções avançadas"
@@ -19888,12 +19888,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "Desactivar protector de écran"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -20141,46 +20141,46 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "Posição do texto"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
#, fuzzy
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Colocar sempre a janela de vídeo sobre outras janelas."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
#, fuzzy
msgid "Vertical offset"
msgstr "Vocal"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
#, fuzzy
msgid "Shadow offset"
msgstr "Aleatório"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Fonte utilizada para mostrar texto na saída XOSD."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Cor utilizada para mostrar texto na saída XOSD."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Interface XOSD"
@@ -25054,12 +25054,12 @@
msgid "XVideo output (XCB)"
msgstr "Pin de saída vídeo"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Definições de vídeo"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ro.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ro.po
^
|
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-05-29 12:18+0200\n"
"Last-Translator: Cristian Secară <cristi AT secarica DOT ro>\n"
"Language-Team: Gnome Romanian Team <gnomero-list@lists.sourceforge.net>\n"
@@ -3980,7 +3980,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Stop"
@@ -4865,7 +4865,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7954,7 +7954,7 @@
msgstr "Nuanța semnanului de intrare video."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12849,7 +12849,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pauză"
@@ -14676,7 +14676,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14766,7 +14766,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17685,7 +17685,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Opțiuni avansate"
@@ -20002,11 +20002,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "Screensaver XDG"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -20247,21 +20247,21 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Inversează poziția pe verticală"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
"Afișează ieșirea XOSD în partea de jos a ecranului în loc de în partea de "
"sus."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Decalaj vertical"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20269,24 +20269,24 @@
"Decalaj vertical între marginea ecranului și textul afișat (în pixeli, "
"implicit este 30 de pixeli)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Decalaj de umbră"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "Decalaj între text și umbră (în pixeli, implicit este 2 pixeli)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Font folosit pentru afișarea textului în ieșirea XOSD."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Culoare folosită pentru afișarea textului în ieșirea XOSD."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Interfață XOSD"
@@ -25055,11 +25055,11 @@
msgid "XVideo output (XCB)"
msgstr "Ieșire XVideo (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ru.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ru.po
^
|
@@ -14,7 +14,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-06-02 22:42+0300\n"
"Last-Translator: Alexander LAW <exclusion@gmail.com>\n"
"Language-Team: Russian <translators@videolan.org>\n"
@@ -3885,7 +3885,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Останов"
@@ -4759,7 +4759,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7769,7 +7769,7 @@
msgstr "Оттенок входящего видео."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12822,7 +12822,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Пауза"
@@ -14663,7 +14663,7 @@
"буфере наложения."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14752,7 +14752,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17761,7 +17761,7 @@
msgid " f/s"
msgstr " к/с"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Расширенные параметры"
@@ -20081,11 +20081,11 @@
msgid "OSSO screen unblanking"
msgstr "Пробуждение экрана OSSO"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "Хранитель экрана XDG"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "Отключение хранителя экрана XDG"
@@ -20340,19 +20340,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "\"Телепатия\" \"Сейчас играет\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Перевернуть позицию по вертикали"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Показывать вывод XOSD внизу, а не вверху экрана."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Смещение по вертикали"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20360,24 +20360,24 @@
"Смещение по вертикали между краем экрана и текстом (в пикселах, по умолчанию "
"30)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Смещение тени"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "Смещение между текстом и тенью (в пикселах, по умолчанию 2)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Шрифт, используемый для показа текста XOSD."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Цвет, используемый для показа текста XOSD."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Интерфейс XOSD"
@@ -25256,11 +25256,11 @@
msgid "XVideo output (XCB)"
msgstr "Вывод через XVideo (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Ускорение видео не поддерживается"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/si.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/si.po
^
|
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: vlc 1.1.11\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-09-26 17:52+0530\n"
"Last-Translator: Ajith Manjula (Uthmax - Kurunegala) <uthmax.sms@gmail.com>\n"
"Language-Team: Sinhala <uthmax.sms@gmail.com>\n"
@@ -3530,7 +3530,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "නවතන්න"
@@ -4389,7 +4389,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7293,7 +7293,7 @@
msgstr "වීඩියෝ ආදානයේ පැහැය. (Hue)"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11951,7 +11951,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
#, fuzzy
msgid "Pause"
msgstr "ධාවනය/විරාමය"
@@ -13780,7 +13780,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13873,7 +13873,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16997,7 +16997,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
#, fuzzy
msgid "Advanced Options"
msgstr "සංකිර්ණ සැකසීම්"
@@ -19419,12 +19419,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "තිරසුරැකුම අක්රිය කරන්න"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19674,46 +19674,46 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "උපසිරැසි ස්ථානය බලාත්මක කරන්න"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
#, fuzzy
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "වීඩියෝවෙහි මාතෘකාව චිත්රපටියේ මතුපිටින් දර්ශනය කරන්න."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
#, fuzzy
msgid "Vertical offset"
msgstr "සිරස්"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
#, fuzzy
msgid "Shadow offset"
msgstr "සෙවනැලි"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
#, fuzzy
msgid "XOSD interface"
msgstr "අතුරුමුහුණත පෙන්වන්න"
@@ -24570,11 +24570,11 @@
msgid "XVideo output (XCB)"
msgstr "වීඩියෝ ප්රතිදාන මොඩියුලය"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "වීඩියෝ ත්වරණය ලබාගත නොහැකියි"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/sk.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/sk.po
^
|
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-06-05 13:25+0100\n"
"Last-Translator: Marian Hikanik <mhikanik@users.sourceforge.net>\n"
"Language-Team: Marián Hikaník\n"
@@ -3943,7 +3943,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Stop"
@@ -4842,7 +4842,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7918,7 +7918,7 @@
msgstr "Farebný odtieň na vstupe videa."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -13040,7 +13040,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Pozastaviť"
@@ -14897,7 +14897,7 @@
"pre prekrývanie."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14988,7 +14988,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -18046,7 +18046,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Pokročilé nastavenia"
@@ -20395,11 +20395,11 @@
msgid "OSSO screen unblanking"
msgstr "Aktivovanie (rozsvietenie) obrazovky OSSO"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "Šetrič obrazovky XDG"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "Blokovanie šetriča obrazovky X"
@@ -20656,19 +20656,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"Práve sa prehráva\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Preklopiť vertikálnu pozíciu"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Zobraziť výstup XOSD v dolnej časti obrazovky, nie v hornej."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Vertikálny offset"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20676,25 +20676,25 @@
"Vertikálny offset medzi okrajmi obrazovky a zobrazeným textom (v pixeloch, "
"predvolená je hodnota 30 pixelov)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Offset tieňa"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"Offset medzi textom a tieňom (v pixeloch, predvolená hodnota = 2 pixely)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Písmo používané pri zobrazovaní textu vo výstupe XOSD."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Farba textu zobrazovaného vo výstupe XOSD."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Rozhranie XOSD"
@@ -25703,11 +25703,11 @@
msgid "XVideo output (XCB)"
msgstr "Výstup XVideo (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Akcelerácia videa nie je dostupná"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/sl.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/sl.po
^
|
@@ -5,7 +5,7 @@
msgstr ""
"Project-Id-Version: vlc 1.0\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-01-23 20:55+0100\n"
"Last-Translator: Matej Urbančič <mateju@svn.gnome.org>\n"
"Language-Team: Slovenian <sl@li.org>\n"
@@ -3890,7 +3890,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Zaustavi"
@@ -4763,7 +4763,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7834,7 +7834,7 @@
msgstr "Odtenek posnetka."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12830,7 +12830,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Premor"
@@ -14664,7 +14664,7 @@
"medpomnilniku."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14754,7 +14754,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17762,7 +17762,7 @@
msgid " f/s"
msgstr " fps"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Napredne možnosti"
@@ -20134,12 +20134,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "Onemogoči ohranjevalnik zaslona"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
#, fuzzy
msgid "XDG screen saver inhibition"
msgstr "Onemogočanje ohranjevalnika"
@@ -20406,19 +20406,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"trenutno predvaja\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Zrcali navpično"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Prikaz XOSD odvoda na dnu zaslona namesto na vrhu."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Navpični odmik"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20426,24 +20426,24 @@
"Navpični odmik med robom zaslona in prikazanim besedilom. (v točkah, "
"privzeto 30 točk)"
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Odmik sence"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "Odmik med besedilom in njegovo senco. (v točkah, privzeto 2 točki)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Pisava za prikaz besedila XOSD odvoda."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Barva za prikaz besedila XOSD odvoda."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD vmesnik"
@@ -25427,12 +25427,12 @@
msgid "XVideo output (XCB)"
msgstr "Spona odvoda slike"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Nastavitve slike niso shranjene"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/sq.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/sq.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2005-12-12 16:05+0000\n"
"Last-Translator: Kola <eltonkola@gmail.com>\n"
"Language-Team: Albanian <sq@li.org>\n"
@@ -3469,7 +3469,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr ""
@@ -4334,7 +4334,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7261,7 +7261,7 @@
msgstr "Fitltri i treguesit"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11984,7 +11984,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr ""
@@ -13768,7 +13768,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13858,7 +13858,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16862,7 +16862,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
#, fuzzy
msgid "Advanced Options"
msgstr "Fitltri i treguesit"
@@ -19226,11 +19226,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19472,42 +19472,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
#, fuzzy
msgid "XOSD interface"
msgstr "Pamja grafike"
@@ -24163,12 +24163,12 @@
msgid "XVideo output (XCB)"
msgstr "Opcionet video"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Opcionet video"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/sr.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/sr.po
^
|
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-06-16 22:25+0100\n"
"Last-Translator: Predrag <predragljubenovic@gmail.com>\n"
"Language-Team: \n"
@@ -3933,7 +3933,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Заустави"
@@ -4817,7 +4817,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7923,7 +7923,7 @@
msgstr "Нијанса видео улаза."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12972,7 +12972,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Пауза"
@@ -14923,7 +14923,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -15015,7 +15015,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -18129,7 +18129,7 @@
msgid " f/s"
msgstr "2 Корак"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Напредне опције"
@@ -20507,12 +20507,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "Онемогући чувара екрана"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
#, fuzzy
msgid "XDG screen saver inhibition"
msgstr "Онемогућује X Чувара екрана"
@@ -20778,19 +20778,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Обрни вертикалну позицију"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Прикажи XOSD излаз на дну екрана уместо на врху."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Вертикални офсет"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20798,25 +20798,25 @@
"Вертикални офсет измежу екрана и приказаног текста (у пикселима, "
"подразумевано до 30 пиксела)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Офсет Сенке"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
#, fuzzy
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "Кашњење између текста и сенке (у пикселима, подразумевано 2 пиксела)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Фонт којим се приказује тескт у XOSD излазу."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Боја којом се приказује текст у XOSD излазу."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Интерфејс XOSD-а"
@@ -25836,12 +25836,12 @@
msgid "XVideo output (XCB)"
msgstr "Видео излазни пин"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Видео подешавања"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/sv.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/sv.po
^
|
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-01-14 01:04+0100\n"
"Last-Translator: Daniel Nylander <po@danielnylander.se>\n"
"Language-Team: Swedish <tp-sv@listor.tp-sv.se>\n"
@@ -3804,7 +3804,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Stoppa"
@@ -4682,7 +4682,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7707,7 +7707,7 @@
msgstr "Färgton för videoinmatningen."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12469,7 +12469,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Gör paus"
@@ -14265,7 +14265,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14356,7 +14356,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17318,7 +17318,7 @@
msgid " f/s"
msgstr " bilder/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Avancerade alternativ"
@@ -19603,11 +19603,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG-skärmsläckare"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19863,43 +19863,43 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"Spelar nu\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Vertikal position"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Skuggposition"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"Offset mellan text och skugga (i bildpunkter, standard är 2 bildpunkter)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD-gränssnitt"
@@ -24633,12 +24633,12 @@
msgid "XVideo output (XCB)"
msgstr "Videoinställningar"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Videoinställningar inte sparade"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/ta.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/ta.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc 1.1.0-git\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: Abdul Fousan S <abdulfousan@gmail.com>\n"
"Language-Team: VLC Tamil <abdulfousan@gmail.com>\n"
@@ -3420,7 +3420,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "நில்"
@@ -4279,7 +4279,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7177,7 +7177,7 @@
msgstr ""
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11769,7 +11769,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "நிறுத்து"
@@ -13500,7 +13500,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13590,7 +13590,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16426,7 +16426,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "மேம்பட்ட அமைப்புகள்"
@@ -18644,11 +18644,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -18883,42 +18883,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD முகப்பு"
@@ -23436,11 +23436,11 @@
msgid "XVideo output (XCB)"
msgstr "Xநிகழ்பட வெளிப்போத்து (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/tet.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/tet.po
^
|
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2005-02-01 14:16+0000\n"
"Last-Translator: Elizabeth Da Conceicao Baptista <elizabeth@tonle.net>\n"
"Language-Team: Tetum\n"
@@ -3490,7 +3490,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr ""
@@ -4361,7 +4361,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7324,7 +7324,7 @@
msgstr "_Video"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12068,7 +12068,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr ""
@@ -13858,7 +13858,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13951,7 +13951,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16984,7 +16984,7 @@
msgid " f/s"
msgstr " "
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
#, fuzzy
msgid "Advanced Options"
msgstr "_Formas"
@@ -19381,11 +19381,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19627,43 +19627,43 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "Kona ba applikação ida ne'e"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr ""
@@ -24390,12 +24390,12 @@
msgid "XVideo output (XCB)"
msgstr "_Formas"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "_Formas"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/th.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/th.po
^
|
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: vlc 1.1.0-rc4\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-04-06 14:38+0700\n"
"Last-Translator: T. Chomphuming <jernghan@gmail.com>\n"
"Language-Team: Thai <thailang@buraphalinux.org>\n"
@@ -3427,7 +3427,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "หยุด"
@@ -4286,7 +4286,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7154,7 +7154,7 @@
msgstr ""
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11748,7 +11748,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "พัก"
@@ -13473,7 +13473,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13563,7 +13563,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16400,7 +16400,7 @@
msgid " f/s"
msgstr "เฟรม/วินาที"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr ""
@@ -18618,11 +18618,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -18855,42 +18855,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr ""
@@ -23387,11 +23387,11 @@
msgid "XVideo output (XCB)"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/tl.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/tl.po
^
|
@@ -10,7 +10,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2005-02-01 14:25+0000\n"
"Last-Translator: Adi Nugroho <adi@internux.co.id>\n"
"Language-Team: Tagalog\n"
@@ -3490,7 +3490,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr ""
@@ -4361,7 +4361,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7324,7 +7324,7 @@
msgstr "_Makit-an"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12068,7 +12068,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr ""
@@ -13858,7 +13858,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13951,7 +13951,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16984,7 +16984,7 @@
msgid " f/s"
msgstr " "
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
#, fuzzy
msgid "Advanced Options"
msgstr "_Set-ap"
@@ -19381,11 +19381,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19627,43 +19627,43 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "Mahitungod sa Aplikasyon"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr ""
@@ -24390,12 +24390,12 @@
msgid "XVideo output (XCB)"
msgstr "_Set-ap"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "_Set-ap"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/tr.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/tr.po
^
|
@@ -8,7 +8,7 @@
msgstr ""
"Project-Id-Version: vlc 0.9.0\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-10-23 20:07+0200\n"
"Last-Translator: Kaya Zeren <kaya.zeren@zeron.net>\n"
"Language-Team: Turkish\n"
@@ -3876,7 +3876,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Durdur"
@@ -4761,7 +4761,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7744,7 +7744,7 @@
msgstr "Görüntü girişi renk tonu."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12775,7 +12775,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Duraklat"
@@ -14595,7 +14595,7 @@
"Bindirme kare arabelleğindeki tüm görüntülenmiş resim ve metinler gösterilir."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14685,7 +14685,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17705,7 +17705,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Gelişmiş Ayarlar"
@@ -20029,11 +20029,11 @@
msgid "OSSO screen unblanking"
msgstr "OSSO ekran kararmasını önleyici"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG ekran koruyucu"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "XDG ekran koruyucu engelleme"
@@ -20286,19 +20286,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"Şimdi Çalan\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Dikey yansıtma konumu"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "XOSD çıkışını ekranın üstü yerine altında göster."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Dikey kayıklık"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20306,26 +20306,26 @@
"Piksel olarak, gösterilen metin ile ekranın sınırı arasındaki dikey kayıklık "
"(varsayılan değer 30 piksel)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Gölge kayıklığı"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
"Piksel olarak metin ile gölge arasındaki kayıklık (varsayılan değer 2 "
"piksel)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "XOSD çıkışındaki metinin yazı tipi."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "XOSD çıkışındaki metinin rengi."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XEÜG arayüzü"
@@ -25215,11 +25215,11 @@
msgid "XVideo output (XCB)"
msgstr "XVideo çıkışı (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Görüntü hızlandırması geçerli değil"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/uk.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/uk.po
^
|
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: vlc 1.1.0\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-11-07 19:50+0200\n"
"Last-Translator: Oleksandr Natalenko <pfactum@gmail.com>\n"
"Language-Team: Ukrainian <kde-i18n-doc@kde.org>\n"
@@ -3868,7 +3868,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Зупинити"
@@ -4739,7 +4739,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7724,7 +7724,7 @@
msgstr "Відтінок джерела відео."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12766,7 +12766,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Призупинити"
@@ -14597,7 +14597,7 @@
"фреймбуфера."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14687,7 +14687,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17702,7 +17702,7 @@
msgid " f/s"
msgstr " ф/с"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Додаткові параметри"
@@ -20023,11 +20023,11 @@
msgid "OSSO screen unblanking"
msgstr "Негасіння екрану OSSO"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "Зберігач екрану XDG"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "Пригнічувач зберігача екрану XDG"
@@ -20283,19 +20283,19 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "«Зараз відтворюється» Telepathy (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Відобразити позицію по вертикалі"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "Показувати виведення XOSD знизу, а не зверху екрана."
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Зсув по вертикалі"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
@@ -20303,24 +20303,24 @@
"Зсув по вертикалі між краєм екрану і текстом (у пікселях, за змовчуванням "
"30)."
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Зсув тіні"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "Зсув між текстом і тінню (у пікселях, за змовчуванням 2)."
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Шрифт, використовуваний для показу тексту XOSD."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Колір, використовуваний для показу тексту XOSD."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Інтерфейс XOSD"
@@ -25199,11 +25199,11 @@
msgid "XVideo output (XCB)"
msgstr "Вивід XVideo (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Прискорення відео недоступне"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/vi.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/vi.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc 1.0\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2009-06-29 15:23+0700\n"
"Last-Translator: anh phan <ppanhh@gmail.com>\n"
"Language-Team: iamphananh.blogspot.com <ppanhh@gmail.com>\n"
@@ -3596,7 +3596,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Dừng lại"
@@ -4465,7 +4465,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7395,7 +7395,7 @@
msgstr ""
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12022,7 +12022,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Tạm dừng"
@@ -13784,7 +13784,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13874,7 +13874,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16820,7 +16820,7 @@
msgid " f/s"
msgstr "giây"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Tùy chọn nâng cao"
@@ -19192,12 +19192,12 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
#, fuzzy
msgid "XDG-screensaver"
msgstr "Tắt Screensaver"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19435,42 +19435,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr ""
@@ -24182,12 +24182,12 @@
msgid "XVideo output (XCB)"
msgstr "Xuất dữ liệu X11 video"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Thiết lập Video chưa được lưu"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/vlc.pot
^
|
@@ -6,9 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: vlc 1.1.12\n"
+"Project-Id-Version: vlc 1.1.13\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -3419,7 +3419,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr ""
@@ -4276,7 +4276,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7139,7 +7139,7 @@
msgstr ""
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -11726,7 +11726,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr ""
@@ -13448,7 +13448,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13537,7 +13537,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16373,7 +16373,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr ""
@@ -18584,11 +18584,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -18821,42 +18821,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr ""
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr ""
@@ -23353,11 +23353,11 @@
msgid "XVideo output (XCB)"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/wa.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/wa.po
^
|
@@ -7,7 +7,7 @@
msgstr ""
"Project-Id-Version: vlc 1.1.3\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2010-10-01 11:18+0100\n"
"Last-Translator: Rousseaux Gaetan\n"
"Language-Team: Walloon\n"
@@ -3573,7 +3573,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Arester"
@@ -4440,7 +4440,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7398,7 +7398,7 @@
msgstr "Tinte del intrêye videyo."
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12019,7 +12019,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Djoker"
@@ -13770,7 +13770,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13860,7 +13860,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16721,7 +16721,7 @@
msgid " f/s"
msgstr " c/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Sipepieusès Tchuzes"
@@ -18968,11 +18968,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "Sipårgneu di waitroûle-XDG"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19217,42 +19217,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "Discandjî l' pôzucion d' astampé"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "Ofset d' astampé"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "Ofset ombion"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "Fonte eployêye po håyner l' tecse dins l' rexhowe XOSD."
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "Coleur eployêye po håyner l' tecse dins l' rexhowe XOSD."
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "Eterface XOSD"
@@ -23766,11 +23766,11 @@
msgid "XVideo output (XCB)"
msgstr "Rexhowe XVideyo (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "Acceleråcion del Videyo nén disponibe"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/zh_CN.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/zh_CN.po
^
|
@@ -1,16 +1,16 @@
# Translation to Simplified Chinese.
-# Copyright (C) 2008-2010 the VideoLAN team
+# Copyright (C) 2008-2011 the VideoLAN team
# This file is distributed under the same license as the VLC package.
#
# Yoyo <admin@wisestudio.org>, 2008.
# Wei Mingzhi <whistler@openoffice.org>, 2009.
-# Dean Lee <xslidian@gmail.com>, 2010.
+# Dean Lee <xslidian@gmail.com>, 2010-2011.
#
msgid ""
msgstr ""
"Project-Id-Version: vlc 1.1.x\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: Dean Lee <xslidian@gmail.com>\n"
"Language-Team: Simplified Chinese <xslidian+vlc@gmail.com>\n"
@@ -3624,7 +3624,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "停止"
@@ -4486,7 +4486,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7398,7 +7398,7 @@
msgstr "视频输入的色调。"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12201,7 +12201,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "暂停"
@@ -13961,7 +13961,7 @@
msgstr "所有已渲染的图像和文本将会在覆盖缓冲上显示。"
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14050,7 +14050,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -14639,17 +14639,17 @@
#: modules/gui/macosx/intf.m:2857
msgid "Relaunch required"
-msgstr ""
+msgstr "需要重启"
#: modules/gui/macosx/intf.m:2858
msgid ""
"To make sure that VLC no longer listens to your media key events, it needs "
"to be restarted."
-msgstr ""
+msgstr "要确保 VLC 不再监听您的媒体键事件,需要重新启动 VLC。"
#: modules/gui/macosx/intf.m:2859
msgid "Relaunch VLC"
-msgstr ""
+msgstr "重新启动 VLC"
#: modules/gui/macosx/macosx.m:53
msgid "Video device"
@@ -16974,7 +16974,7 @@
msgid " f/s"
msgstr " 帧/秒"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "高级选项"
@@ -19253,11 +19253,11 @@
msgid "OSSO screen unblanking"
msgstr "OSSO 屏幕增辉"
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG-屏幕保护"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr "XDG 屏幕保护禁止器"
@@ -19504,42 +19504,42 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr "Telepathy \"现在播放\" (MissionControl)"
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
msgid "Flip vertical position"
msgstr "倒转垂直位置"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "在屏幕底部显示 XOSD 输出代替在顶部显示。"
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "垂直偏移"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr "在屏幕边框和显示文本之间的垂直偏移 (以像素为单位,默认为 30 像素)。"
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "阴影偏移"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr "在文本和阴影之间的偏移 (以像素为单位,默认为 2 像素)。"
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr "在 OSD 输出中使用显示文本的字体。"
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr "在 XOSD 中用于显示文本的颜色。"
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD 界面"
@@ -24188,11 +24188,11 @@
msgid "XVideo output (XCB)"
msgstr "XVideo 输出 (XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
msgid "Video acceleration not available"
msgstr "无可用视频加速"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/zh_TW.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/zh_TW.po
^
|
@@ -9,7 +9,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2008-08-20 20:18+0800\n"
"Last-Translator: Frank Chao <frank0624@gmail.com>\n"
"Language-Team: zh_TW\n"
@@ -3500,7 +3500,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "停止"
@@ -4392,7 +4392,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7351,7 +7351,7 @@
msgstr "視訊輸入色調"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12108,7 +12108,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "暫停"
@@ -13900,7 +13900,7 @@
msgstr ""
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -13990,7 +13990,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -16923,7 +16923,7 @@
msgid " f/s"
msgstr " f/s"
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "進階選項"
@@ -19189,11 +19189,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr "XDG-螢幕保護程式"
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19434,44 +19434,44 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "垂直翻轉"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
#, fuzzy
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr "永遠讓視訊視窗顯示在其他視窗之上"
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr "垂直補償"
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr "陰影補償"
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
msgid "XOSD interface"
msgstr "XOSD介面"
@@ -24253,12 +24253,12 @@
msgid "XVideo output (XCB)"
msgstr "XVideo輸出(XCB)"
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "視訊設定未被儲存"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
|
Changed |
vlc-1.1.13.tar.bz2/po/zu.gmo
^
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/po/zu.po
^
|
@@ -6,7 +6,7 @@
msgstr ""
"Project-Id-Version: vlc\n"
"Report-Msgid-Bugs-To: vlc-devel@videolan.org\n"
-"POT-Creation-Date: 2011-10-06 20:33+0300\n"
+"POT-Creation-Date: 2011-12-20 17:56+0200\n"
"PO-Revision-Date: 2011-03-09 11:32+0200\n"
"Last-Translator: sipho <sipho@translate.org.za>\n"
"Language-Team: SIpho\n"
@@ -3603,7 +3603,7 @@
#: modules/gui/macosx/embeddedwindow.m:72 modules/gui/macosx/intf.m:608
#: modules/gui/macosx/intf.m:653 modules/gui/macosx/intf.m:745
#: modules/gui/macosx/intf.m:752 modules/gui/qt4/components/controller.hpp:104
-#: modules/misc/notify/xosd.c:231 modules/gui/qt4/ui/streampanel.h:181
+#: modules/misc/notify/xosd.c:235 modules/gui/qt4/ui/streampanel.h:181
msgid "Stop"
msgstr "Ima"
@@ -4538,7 +4538,7 @@
#: modules/gui/macosx/prefs.m:225 modules/gui/macosx/simple_prefs.m:244
#: modules/gui/macosx/simple_prefs.m:308 modules/gui/macosx/simple_prefs.m:715
#: modules/gui/macosx/wizard.m:318
-#: modules/gui/qt4/components/open_panels.cpp:1309
+#: modules/gui/qt4/components/open_panels.cpp:1310
#: modules/gui/qt4/components/preferences_widgets.cpp:1427
#: modules/gui/qt4/components/sout/profile_selector.cpp:253
msgid "Cancel"
@@ -7544,7 +7544,7 @@
msgstr "Mayelana nokuhlungwa kwevidiyo"
#: modules/access/v4l.c:114 modules/gui/fbosd.c:141
-#: modules/misc/notify/xosd.c:82 modules/video_filter/colorthres.c:54
+#: modules/misc/notify/xosd.c:83 modules/video_filter/colorthres.c:54
#: modules/video_filter/marq.c:123 modules/video_filter/rss.c:155
#: modules/gui/qt4/ui/video_effects.h:1132
#: modules/gui/qt4/ui/video_effects.h:1138
@@ -12358,7 +12358,7 @@
#: modules/control/rc.c:73 modules/gui/macosx/embeddedwindow.m:194
#: modules/gui/macosx/intf.m:2028 modules/gui/macosx/intf.m:2029
#: modules/gui/macosx/intf.m:2030 modules/gui/macosx/intf.m:2031
-#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:235
+#: modules/gui/qt4/menus.cpp:793 modules/misc/notify/xosd.c:239
msgid "Pause"
msgstr "Misa kancane"
@@ -14172,7 +14172,7 @@
"framebuffer."
#: modules/gui/fbosd.c:203 modules/gui/macosx/simple_prefs.m:283
-#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:80
+#: modules/misc/freetype.c:102 modules/misc/notify/xosd.c:81
#: modules/misc/quartztext.c:80 modules/misc/win32text.c:58
#: modules/video_filter/marq.c:164 modules/video_filter/rss.c:207
#: modules/gui/qt4/ui/sprefs_subtitles.h:211
@@ -14262,7 +14262,7 @@
#: modules/gui/macosx/wizard.m:1126 modules/gui/macosx/wizard.m:1652
#: modules/gui/macosx/wizard.m:1660 modules/gui/macosx/wizard.m:1841
#: modules/gui/macosx/wizard.m:1852 modules/gui/macosx/wizard.m:1865
-#: modules/gui/qt4/components/open_panels.cpp:1308
+#: modules/gui/qt4/components/open_panels.cpp:1309
#: modules/gui/qt4/components/preferences_widgets.cpp:1426
#: modules/gui/qt4/dialogs/firstrun.cpp:100
msgid "OK"
@@ -17155,7 +17155,7 @@
msgid " f/s"
msgstr ""
-#: modules/gui/qt4/components/open_panels.cpp:1281
+#: modules/gui/qt4/components/open_panels.cpp:1282
msgid "Advanced Options"
msgstr "Izinketho ezithuthukile"
@@ -19414,11 +19414,11 @@
msgid "OSSO screen unblanking"
msgstr ""
-#: modules/misc/inhibit/xdg.c:36
+#: modules/misc/inhibit/xdg.c:37
msgid "XDG-screensaver"
msgstr ""
-#: modules/misc/inhibit/xdg.c:37
+#: modules/misc/inhibit/xdg.c:38
msgid "XDG screen saver inhibition"
msgstr ""
@@ -19666,43 +19666,43 @@
msgid "Telepathy \"Now Playing\" (MissionControl)"
msgstr ""
-#: modules/misc/notify/xosd.c:67
+#: modules/misc/notify/xosd.c:68
#, fuzzy
msgid "Flip vertical position"
msgstr "Phoqelela indawo yesihlokwana"
-#: modules/misc/notify/xosd.c:68
+#: modules/misc/notify/xosd.c:69
msgid "Display XOSD output at the bottom of the screen instead of the top."
msgstr ""
-#: modules/misc/notify/xosd.c:71
+#: modules/misc/notify/xosd.c:72
msgid "Vertical offset"
msgstr ""
-#: modules/misc/notify/xosd.c:72
+#: modules/misc/notify/xosd.c:73
msgid ""
"Vertical offset between the border of the screen and the displayed text (in "
"pixels, defaults to 30 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:76
+#: modules/misc/notify/xosd.c:77
msgid "Shadow offset"
msgstr ""
-#: modules/misc/notify/xosd.c:77
+#: modules/misc/notify/xosd.c:78
msgid ""
"Offset between the text and the shadow (in pixels, defaults to 2 pixels)."
msgstr ""
-#: modules/misc/notify/xosd.c:81
+#: modules/misc/notify/xosd.c:82
msgid "Font used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:83
+#: modules/misc/notify/xosd.c:84
msgid "Color used to display text in the XOSD output."
msgstr ""
-#: modules/misc/notify/xosd.c:88
+#: modules/misc/notify/xosd.c:89
#, fuzzy
msgid "XOSD interface"
msgstr "Isibonisi se-Qt"
@@ -24507,12 +24507,12 @@
msgid "XVideo output (XCB)"
msgstr ""
-#: modules/video_output/xcb/xvideo.c:274
+#: modules/video_output/xcb/xvideo.c:273
#, fuzzy
msgid "Video acceleration not available"
msgstr "Izilungiselelo zevidiyo kazigciniwe"
-#: modules/video_output/xcb/xvideo.c:275
+#: modules/video_output/xcb/xvideo.c:274
#, c-format
msgid ""
"Your video output acceleration driver does not support the required "
|
[-]
[+]
|
Changed |
vlc-1.1.13.tar.bz2/share/vlc.desktop
^
|
@@ -38,7 +38,7 @@
GenericName[nl]=Mediaspeler
Comment[nl]=Uw multimediastreams afspelen, opnemen en uitzenden
Name[nn]=VLC mediespelar
-Name[nn]=Mediespelar
+GenericName[nn]=Mediespelar
Comment[nn]=Spel av, ta opp og send ut multimedia
Name[pa]=VLC ਮੀਡਿਆ ਪਲੇਅਰ
Comment[pa]=ਆਪਣੀ ਮਲਟੀਮੀਡਿਆ ਸਟਰੀਮ ਪੜ੍ਹੋ, ਕੈਪਚਰ ਤੇ ਬਰਾਡਕਾਸਟ ਕਰੋ
|